green_link_api 0.51.3 → 0.54.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -5
- package/dist/ApiClient.js +2 -2
- package/dist/api/BlockchainApi.js +283 -0
- package/dist/api/EnergyAssetsApi.js +1 -1
- package/dist/api/EnergyDataApi.js +110 -11
- package/dist/api/HealthCheckApi.js +1 -1
- package/dist/api/LicensedProductionSitesOnEpiasApi.js +1 -1
- package/dist/api/LocationsApi.js +1 -1
- package/dist/api/MaintenanceCheckApi.js +1 -1
- package/dist/api/OrganizationprofilesApi.js +1 -1
- package/dist/api/OrganizationsApi.js +1 -1
- package/dist/api/SchemaApi.js +1 -1
- package/dist/api/SentryDebugApi.js +1 -1
- package/dist/api/UploadedfilesApi.js +226 -0
- package/dist/api/UsersApi.js +1 -1
- package/dist/index.js +112 -0
- package/dist/model/BlockchainTransaction.js +172 -0
- package/dist/model/Consumer.js +1 -1
- package/dist/model/ConsumptionDataFileList.js +1 -1
- package/dist/model/ConsumptionDataFromRetailer.js +1 -1
- package/dist/model/ConsumptionDataPointCreate.js +11 -11
- package/dist/model/ConsumptionDataPointListOrDetail.js +20 -13
- package/dist/model/ConsumptionDataPointUpdate.js +11 -11
- package/dist/model/ConsumptionSite.js +1 -1
- package/dist/model/ConsumptionSiteFileUpload.js +1 -1
- package/dist/model/ConsumptionSiteFromRetailer.js +1 -1
- package/dist/model/ConsumptionSiteListOrDetail.js +1 -1
- package/dist/model/ConsumptionSiteMany.js +1 -1
- package/dist/model/ContentTypeEnum.js +54 -0
- package/dist/model/EmissionFactor.js +1 -1
- package/dist/model/EnergySourcePreference.js +1 -1
- package/dist/model/GetFromEpias.js +1 -1
- package/dist/model/GridOperator.js +1 -1
- package/dist/model/Issuer.js +1 -1
- package/dist/model/Location.js +1 -1
- package/dist/model/Login.js +1 -1
- package/dist/model/MatchRequest.js +1 -1
- package/dist/model/MatchedEnergyDataPoint.js +12 -13
- package/dist/model/MatchingConsumerRequest.js +1 -1
- package/dist/model/MatchingSiteRequest.js +1 -1
- package/dist/model/PaginatedConsumerList.js +1 -1
- package/dist/model/PaginatedConsumptionDataPointListOrDetailList.js +1 -1
- package/dist/model/PaginatedConsumptionSiteListOrDetailList.js +1 -1
- package/dist/model/PaginatedEmissionFactorList.js +1 -1
- package/dist/model/PaginatedEnergySourcePreferenceList.js +1 -1
- package/dist/model/PaginatedGridOperatorList.js +1 -1
- package/dist/model/PaginatedIssuerList.js +1 -1
- package/dist/model/PaginatedLocationList.js +1 -1
- package/dist/model/PaginatedMatchRequestList.js +1 -1
- package/dist/model/PaginatedMatchedEnergyDataPointList.js +1 -1
- package/dist/model/PaginatedProducerList.js +1 -1
- package/dist/model/PaginatedProductionDataFromEpiasRequestList.js +104 -0
- package/dist/model/PaginatedProductionDataPointListOrDetailList.js +1 -1
- package/dist/model/PaginatedProductionSiteListOrDetailList.js +1 -1
- package/dist/model/PaginatedRetailerList.js +1 -1
- package/dist/model/PaginatedSmartContractList.js +104 -0
- package/dist/model/PaginatedUnprocessedRowList.js +104 -0
- package/dist/model/PaginatedUploadedFileList.js +104 -0
- package/dist/model/PaginatedUserList.js +1 -1
- package/dist/model/PatchedConsumer.js +1 -1
- package/dist/model/PatchedConsumptionDataPointUpdate.js +11 -11
- package/dist/model/PatchedConsumptionSite.js +1 -1
- package/dist/model/PatchedEmissionFactor.js +1 -1
- package/dist/model/PatchedEnergySourcePreference.js +1 -1
- package/dist/model/PatchedGridOperator.js +1 -1
- package/dist/model/PatchedIssuer.js +1 -1
- package/dist/model/PatchedLocation.js +1 -1
- package/dist/model/PatchedProducer.js +1 -1
- package/dist/model/PatchedProductionDataPointUpdate.js +12 -12
- package/dist/model/PatchedProductionSiteUpdate.js +2 -1
- package/dist/model/PatchedRetailer.js +1 -1
- package/dist/model/PatchedSmartContract.js +132 -0
- package/dist/model/PatchedUser.js +1 -1
- package/dist/model/PatchedUserDetail.js +1 -1
- package/dist/model/PriorityEnum.js +6 -0
- package/dist/model/Producer.js +1 -1
- package/dist/model/ProductionDataFileList.js +1 -1
- package/dist/model/ProductionDataFromEpiasRequest.js +167 -0
- package/dist/model/ProductionDataPointCreate.js +12 -12
- package/dist/model/ProductionDataPointListOrDetail.js +21 -14
- package/dist/model/ProductionDataPointUpdate.js +12 -12
- package/dist/model/ProductionSite.js +5 -6
- package/dist/model/ProductionSiteFileUpload.js +1 -1
- package/dist/model/ProductionSiteListOrDetail.js +1 -1
- package/dist/model/ProductionSiteUpdate.js +5 -6
- package/dist/model/Register.js +1 -1
- package/dist/model/Retailer.js +1 -1
- package/dist/model/SmartContract.js +137 -0
- package/dist/model/Token.js +1 -1
- package/dist/model/TypeEnum.js +52 -0
- package/dist/model/UnprocessedRow.js +140 -0
- package/dist/model/UploadedFile.js +166 -0
- package/dist/model/User.js +1 -1
- package/dist/model/UserDetail.js +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The ConsumptionSiteFileUpload model module.
|
|
20
20
|
* @module model/ConsumptionSiteFileUpload
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var ConsumptionSiteFileUpload = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The ConsumptionSiteFromRetailer model module.
|
|
20
20
|
* @module model/ConsumptionSiteFromRetailer
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var ConsumptionSiteFromRetailer = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -24,7 +24,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
24
24
|
/**
|
|
25
25
|
* The ConsumptionSiteListOrDetail model module.
|
|
26
26
|
* @module model/ConsumptionSiteListOrDetail
|
|
27
|
-
* @version 0.
|
|
27
|
+
* @version 0.54.4
|
|
28
28
|
*/
|
|
29
29
|
var ConsumptionSiteListOrDetail = /*#__PURE__*/function () {
|
|
30
30
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The ConsumptionSiteMany model module.
|
|
22
22
|
* @module model/ConsumptionSiteMany
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var ConsumptionSiteMany = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
|
|
14
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
15
|
+
|
|
16
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17
|
+
|
|
18
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Enum class ContentTypeEnum.
|
|
22
|
+
* @enum {}
|
|
23
|
+
* @readonly
|
|
24
|
+
*/
|
|
25
|
+
var ContentTypeEnum = /*#__PURE__*/function () {
|
|
26
|
+
function ContentTypeEnum() {
|
|
27
|
+
_classCallCheck(this, ContentTypeEnum);
|
|
28
|
+
|
|
29
|
+
_defineProperty(this, "Consumption sites", "Consumption sites");
|
|
30
|
+
|
|
31
|
+
_defineProperty(this, "Consumption data points", "Consumption data points");
|
|
32
|
+
|
|
33
|
+
_defineProperty(this, "Production sites", "Production sites");
|
|
34
|
+
|
|
35
|
+
_defineProperty(this, "Production data points", "Production data points");
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
_createClass(ContentTypeEnum, null, [{
|
|
39
|
+
key: "constructFromObject",
|
|
40
|
+
value:
|
|
41
|
+
/**
|
|
42
|
+
* Returns a <code>ContentTypeEnum</code> enum value from a Javascript object name.
|
|
43
|
+
* @param {Object} data The plain JavaScript object containing the name of the enum value.
|
|
44
|
+
* @return {module:model/ContentTypeEnum} The enum <code>ContentTypeEnum</code> value.
|
|
45
|
+
*/
|
|
46
|
+
function constructFromObject(object) {
|
|
47
|
+
return object;
|
|
48
|
+
}
|
|
49
|
+
}]);
|
|
50
|
+
|
|
51
|
+
return ContentTypeEnum;
|
|
52
|
+
}();
|
|
53
|
+
|
|
54
|
+
exports["default"] = ContentTypeEnum;
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The EmissionFactor model module.
|
|
20
20
|
* @module model/EmissionFactor
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var EmissionFactor = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -22,7 +22,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
22
22
|
/**
|
|
23
23
|
* The EnergySourcePreference model module.
|
|
24
24
|
* @module model/EnergySourcePreference
|
|
25
|
-
* @version 0.
|
|
25
|
+
* @version 0.54.4
|
|
26
26
|
*/
|
|
27
27
|
var EnergySourcePreference = /*#__PURE__*/function () {
|
|
28
28
|
/**
|
package/dist/model/Issuer.js
CHANGED
package/dist/model/Location.js
CHANGED
package/dist/model/Login.js
CHANGED
|
@@ -7,6 +7,8 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
+
var _BlockchainTransaction = _interopRequireDefault(require("./BlockchainTransaction"));
|
|
11
|
+
|
|
10
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
13
|
|
|
12
14
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -18,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
20
|
/**
|
|
19
21
|
* The MatchedEnergyDataPoint model module.
|
|
20
22
|
* @module model/MatchedEnergyDataPoint
|
|
21
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
22
24
|
*/
|
|
23
25
|
var MatchedEnergyDataPoint = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -28,13 +30,12 @@ var MatchedEnergyDataPoint = /*#__PURE__*/function () {
|
|
|
28
30
|
* @param productionData {Number} This ID is also the token ID in the smart contract.
|
|
29
31
|
* @param consumer {String}
|
|
30
32
|
* @param producer {String}
|
|
31
|
-
* @param
|
|
32
|
-
* @param consumptionSite {String}
|
|
33
|
+
* @param tx {module:model/BlockchainTransaction}
|
|
33
34
|
*/
|
|
34
|
-
function MatchedEnergyDataPoint(consumptionData, productionData, consumer, producer,
|
|
35
|
+
function MatchedEnergyDataPoint(consumptionData, productionData, consumer, producer, tx) {
|
|
35
36
|
_classCallCheck(this, MatchedEnergyDataPoint);
|
|
36
37
|
|
|
37
|
-
MatchedEnergyDataPoint.initialize(this, consumptionData, productionData, consumer, producer,
|
|
38
|
+
MatchedEnergyDataPoint.initialize(this, consumptionData, productionData, consumer, producer, tx);
|
|
38
39
|
}
|
|
39
40
|
/**
|
|
40
41
|
* Initializes the fields of this object.
|
|
@@ -45,13 +46,12 @@ var MatchedEnergyDataPoint = /*#__PURE__*/function () {
|
|
|
45
46
|
|
|
46
47
|
_createClass(MatchedEnergyDataPoint, null, [{
|
|
47
48
|
key: "initialize",
|
|
48
|
-
value: function initialize(obj, consumptionData, productionData, consumer, producer,
|
|
49
|
+
value: function initialize(obj, consumptionData, productionData, consumer, producer, tx) {
|
|
49
50
|
obj['consumption_data'] = consumptionData;
|
|
50
51
|
obj['production_data'] = productionData;
|
|
51
52
|
obj['consumer'] = consumer;
|
|
52
53
|
obj['producer'] = producer;
|
|
53
|
-
obj['
|
|
54
|
-
obj['consumption_site'] = consumptionSite;
|
|
54
|
+
obj['tx'] = tx;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
57
|
* Constructs a <code>MatchedEnergyDataPoint</code> from a plain JavaScript object, optionally creating a new instance.
|
|
@@ -103,8 +103,8 @@ var MatchedEnergyDataPoint = /*#__PURE__*/function () {
|
|
|
103
103
|
obj['amount_matched'] = _ApiClient["default"].convertToType(data['amount_matched'], 'Number');
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
if (data.hasOwnProperty('
|
|
107
|
-
obj['
|
|
106
|
+
if (data.hasOwnProperty('tx')) {
|
|
107
|
+
obj['tx'] = _BlockchainTransaction["default"].constructFromObject(data['tx']);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -172,11 +172,10 @@ MatchedEnergyDataPoint.prototype['consumption_site'] = undefined;
|
|
|
172
172
|
|
|
173
173
|
MatchedEnergyDataPoint.prototype['amount_matched'] = undefined;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
176
|
-
* @member {String} matched_tx_hash
|
|
175
|
+
* @member {module:model/BlockchainTransaction} tx
|
|
177
176
|
*/
|
|
178
177
|
|
|
179
|
-
MatchedEnergyDataPoint.prototype['
|
|
178
|
+
MatchedEnergyDataPoint.prototype['tx'] = undefined;
|
|
180
179
|
/**
|
|
181
180
|
* @member {Date} created_at
|
|
182
181
|
*/
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The MatchingConsumerRequest model module.
|
|
20
20
|
* @module model/MatchingConsumerRequest
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var MatchingConsumerRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The MatchingSiteRequest model module.
|
|
20
20
|
* @module model/MatchingSiteRequest
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var MatchingSiteRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedConsumerList model module.
|
|
22
22
|
* @module model/PaginatedConsumerList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedConsumerList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedConsumptionDataPointListOrDetailList model module.
|
|
22
22
|
* @module model/PaginatedConsumptionDataPointListOrDetailList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedConsumptionDataPointListOrDetailList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedConsumptionSiteListOrDetailList model module.
|
|
22
22
|
* @module model/PaginatedConsumptionSiteListOrDetailList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedConsumptionSiteListOrDetailList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedEmissionFactorList model module.
|
|
22
22
|
* @module model/PaginatedEmissionFactorList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedEmissionFactorList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedEnergySourcePreferenceList model module.
|
|
22
22
|
* @module model/PaginatedEnergySourcePreferenceList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedEnergySourcePreferenceList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedGridOperatorList model module.
|
|
22
22
|
* @module model/PaginatedGridOperatorList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedGridOperatorList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedIssuerList model module.
|
|
22
22
|
* @module model/PaginatedIssuerList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedIssuerList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedLocationList model module.
|
|
22
22
|
* @module model/PaginatedLocationList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedLocationList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedMatchRequestList model module.
|
|
22
22
|
* @module model/PaginatedMatchRequestList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedMatchRequestList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedMatchedEnergyDataPointList model module.
|
|
22
22
|
* @module model/PaginatedMatchedEnergyDataPointList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedMatchedEnergyDataPointList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedProducerList model module.
|
|
22
22
|
* @module model/PaginatedProducerList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedProducerList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
var _ProductionDataFromEpiasRequest = _interopRequireDefault(require("./ProductionDataFromEpiasRequest"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
|
|
16
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
+
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The PaginatedProductionDataFromEpiasRequestList model module.
|
|
22
|
+
* @module model/PaginatedProductionDataFromEpiasRequestList
|
|
23
|
+
* @version 0.54.4
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedProductionDataFromEpiasRequestList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedProductionDataFromEpiasRequestList</code>.
|
|
28
|
+
* @alias module:model/PaginatedProductionDataFromEpiasRequestList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedProductionDataFromEpiasRequestList() {
|
|
31
|
+
_classCallCheck(this, PaginatedProductionDataFromEpiasRequestList);
|
|
32
|
+
|
|
33
|
+
PaginatedProductionDataFromEpiasRequestList.initialize(this);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Initializes the fields of this object.
|
|
37
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
|
+
* Only for internal use.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
_createClass(PaginatedProductionDataFromEpiasRequestList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedProductionDataFromEpiasRequestList</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
48
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
49
|
+
* @param {module:model/PaginatedProductionDataFromEpiasRequestList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedProductionDataFromEpiasRequestList} The populated <code>PaginatedProductionDataFromEpiasRequestList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedProductionDataFromEpiasRequestList();
|
|
58
|
+
|
|
59
|
+
if (data.hasOwnProperty('count')) {
|
|
60
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (data.hasOwnProperty('next')) {
|
|
64
|
+
obj['next'] = _ApiClient["default"].convertToType(data['next'], 'String');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (data.hasOwnProperty('previous')) {
|
|
68
|
+
obj['previous'] = _ApiClient["default"].convertToType(data['previous'], 'String');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (data.hasOwnProperty('results')) {
|
|
72
|
+
obj['results'] = _ApiClient["default"].convertToType(data['results'], [_ProductionDataFromEpiasRequest["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedProductionDataFromEpiasRequestList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedProductionDataFromEpiasRequestList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedProductionDataFromEpiasRequestList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedProductionDataFromEpiasRequestList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/ProductionDataFromEpiasRequest>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedProductionDataFromEpiasRequestList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedProductionDataFromEpiasRequestList;
|
|
104
|
+
exports["default"] = _default;
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedProductionDataPointListOrDetailList model module.
|
|
22
22
|
* @module model/PaginatedProductionDataPointListOrDetailList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedProductionDataPointListOrDetailList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedProductionSiteListOrDetailList model module.
|
|
22
22
|
* @module model/PaginatedProductionSiteListOrDetailList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedProductionSiteListOrDetailList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedRetailerList model module.
|
|
22
22
|
* @module model/PaginatedRetailerList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedRetailerList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
|
|
8
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
|
+
|
|
10
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
|
|
16
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
17
|
+
|
|
18
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The PaginatedSmartContractList model module.
|
|
22
|
+
* @module model/PaginatedSmartContractList
|
|
23
|
+
* @version 0.54.4
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedSmartContractList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedSmartContractList</code>.
|
|
28
|
+
* @alias module:model/PaginatedSmartContractList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedSmartContractList() {
|
|
31
|
+
_classCallCheck(this, PaginatedSmartContractList);
|
|
32
|
+
|
|
33
|
+
PaginatedSmartContractList.initialize(this);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Initializes the fields of this object.
|
|
37
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
38
|
+
* Only for internal use.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
_createClass(PaginatedSmartContractList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedSmartContractList</code> from a plain JavaScript object, optionally creating a new instance.
|
|
47
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
48
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
49
|
+
* @param {module:model/PaginatedSmartContractList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedSmartContractList} The populated <code>PaginatedSmartContractList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedSmartContractList();
|
|
58
|
+
|
|
59
|
+
if (data.hasOwnProperty('count')) {
|
|
60
|
+
obj['count'] = _ApiClient["default"].convertToType(data['count'], 'Number');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (data.hasOwnProperty('next')) {
|
|
64
|
+
obj['next'] = _ApiClient["default"].convertToType(data['next'], 'String');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (data.hasOwnProperty('previous')) {
|
|
68
|
+
obj['previous'] = _ApiClient["default"].convertToType(data['previous'], 'String');
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (data.hasOwnProperty('results')) {
|
|
72
|
+
obj['results'] = _ApiClient["default"].convertToType(data['results'], [_SmartContract["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedSmartContractList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedSmartContractList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedSmartContractList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedSmartContractList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/SmartContract>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedSmartContractList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedSmartContractList;
|
|
104
|
+
exports["default"] = _default;
|