Commit c7abe970 authored by Michel Roy's avatar Michel Roy Committed by Kevin Di Lallo
Browse files

metrics engine client swagger update

parent 468166d1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -5,13 +5,14 @@
  "license": "Apache 2.0",
  "main": "src/index.js",
  "scripts": {
    "test": "./node_modules/mocha/bin/mocha --recursive"
    "test": "mocha --recursive"
  },
  "browser": {
    "fs": false
  },
  "dependencies": {
    "superagent": "3.5.2"
    "superagent": "3.7.0",
    "querystring": "0.2.0"
  },
  "devDependencies": {
    "mocha": "~2.3.4",
+9 −6
Original line number Diff line number Diff line
/**
/*
 * MEEP Metrics Engine Service REST API
 * Copyright (c) 2019  InterDigital Communications, Inc Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
 *
@@ -7,7 +7,7 @@
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 *
 * Swagger Codegen version: 2.3.1
 * Swagger Codegen version: 2.4.9
 *
 * Do not edit the class manually.
 *
@@ -109,7 +109,7 @@
      return '';
    }
    if (param instanceof Date) {
      return param.toJSON();
      return param.toISOString();
    }
    return param.toString();
  };
@@ -494,12 +494,15 @@
  };

  /**
   * Parses an ISO-8601 string representation of a date value.
   * @param {String} str The date value as a string.
   * Parses a string representation of a date value.
   * @param {String} str The date value as an ISO-8601 full-date or date-time string.
   * @returns {Date} The parsed date object.
   */
  exports.parseDate = function(str) {
    return new Date(str.replace(/T/i, ' '));
    // OpenAPI 2.0 & 3.0 specs state that:
    // - date values are serialized as ISO-8601 full-date strings. 
    // - date-time values are serialized as ISO-8601 date-time strings, in which the timezone offset is mandatory. 
    return new Date(str);
  };

  /**
+2 −2
Original line number Diff line number Diff line
/**
/*
 * MEEP Metrics Engine Service REST API
 * Copyright (c) 2019  InterDigital Communications, Inc Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
 *
@@ -7,7 +7,7 @@
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 *
 * Swagger Codegen version: 2.3.1
 * Swagger Codegen version: 2.4.9
 *
 * Do not edit the class manually.
 *
+2 −2
Original line number Diff line number Diff line
/**
/*
 * MEEP Metrics Engine Service REST API
 * Copyright (c) 2019  InterDigital Communications, Inc Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
 *
@@ -7,7 +7,7 @@
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 *
 * Swagger Codegen version: 2.3.1
 * Swagger Codegen version: 2.4.9
 *
 * Do not edit the class manually.
 *
+6 −17
Original line number Diff line number Diff line
/**
/*
 * MEEP Metrics Engine Service REST API
 * Copyright (c) 2019  InterDigital Communications, Inc Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
 *
@@ -7,7 +7,7 @@
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 *
 * Swagger Codegen version: 2.3.1
 * Swagger Codegen version: 2.4.9
 *
 * Do not edit the class manually.
 *
@@ -30,9 +30,6 @@
}(this, function(ApiClient, LogResponseList) {
  'use strict';




  /**
   * The InlineResponse200 model module.
   * @module model/InlineResponse200
@@ -45,9 +42,6 @@
   * @class
   */
  var exports = function() {
    var _this = this;


  };

  /**
@@ -60,10 +54,8 @@
  exports.constructFromObject = function(data, obj) {
    if (data) {
      obj = obj || new exports();

      if (data.hasOwnProperty('logResponseList')) {
        obj['logResponseList'] = LogResponseList.constructFromObject(data['logResponseList']);
      }
      if (data.hasOwnProperty('logResponseList'))
        obj.logResponseList = LogResponseList.constructFromObject(data['logResponseList']);
    }
    return obj;
  }
@@ -71,11 +63,8 @@
  /**
   * @member {module:model/LogResponseList} logResponseList
   */
  exports.prototype['logResponseList'] = undefined;


  exports.prototype.logResponseList = undefined;

  return exports;
}));


}));
Loading