green_link_api 0.49.6 → 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 +39 -37
- package/dist/ApiClient.js +3 -6
- package/dist/api/BlockchainApi.js +283 -0
- package/dist/api/EnergyAssetsApi.js +89 -19
- package/dist/api/EnergyDataApi.js +173 -39
- package/dist/api/HealthCheckApi.js +2 -2
- package/dist/api/LicensedProductionSitesOnEpiasApi.js +2 -2
- package/dist/api/LocationsApi.js +9 -9
- package/dist/api/MaintenanceCheckApi.js +2 -2
- package/dist/api/OrganizationprofilesApi.js +7 -7
- package/dist/api/OrganizationsApi.js +31 -31
- package/dist/api/SchemaApi.js +2 -2
- package/dist/api/SentryDebugApi.js +2 -2
- package/dist/api/UploadedfilesApi.js +226 -0
- package/dist/api/UsersApi.js +13 -230
- package/dist/index.js +121 -41
- 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 +101 -0
- 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/{TokenRefresh.js → ConsumptionSiteFromRetailer.js} +24 -32
- package/dist/model/ConsumptionSiteListOrDetail.js +1 -1
- package/dist/model/ConsumptionSiteMany.js +195 -0
- 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 +3 -1
- package/dist/model/PatchedUserDetail.js +3 -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 +8 -5
- package/dist/model/Retailer.js +1 -1
- package/dist/model/SmartContract.js +137 -0
- package/dist/model/{VerifyEmail.js → Token.js} +18 -17
- 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 +3 -1
- package/dist/model/UserDetail.js +3 -1
- package/package.json +1 -1
- package/dist/model/JWT.js +0 -103
- package/dist/model/PasswordChange.js +0 -100
- package/dist/model/PasswordReset.js +0 -79
- package/dist/model/PasswordResetConfirm.js +0 -112
- package/dist/model/RestAuthDetail.js +0 -75
- package/dist/model/TokenVerify.js +0 -78
|
@@ -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 _UploadedFile = _interopRequireDefault(require("./UploadedFile"));
|
|
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 PaginatedUploadedFileList model module.
|
|
22
|
+
* @module model/PaginatedUploadedFileList
|
|
23
|
+
* @version 0.54.4
|
|
24
|
+
*/
|
|
25
|
+
var PaginatedUploadedFileList = /*#__PURE__*/function () {
|
|
26
|
+
/**
|
|
27
|
+
* Constructs a new <code>PaginatedUploadedFileList</code>.
|
|
28
|
+
* @alias module:model/PaginatedUploadedFileList
|
|
29
|
+
*/
|
|
30
|
+
function PaginatedUploadedFileList() {
|
|
31
|
+
_classCallCheck(this, PaginatedUploadedFileList);
|
|
32
|
+
|
|
33
|
+
PaginatedUploadedFileList.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(PaginatedUploadedFileList, null, [{
|
|
43
|
+
key: "initialize",
|
|
44
|
+
value: function initialize(obj) {}
|
|
45
|
+
/**
|
|
46
|
+
* Constructs a <code>PaginatedUploadedFileList</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/PaginatedUploadedFileList} obj Optional instance to populate.
|
|
50
|
+
* @return {module:model/PaginatedUploadedFileList} The populated <code>PaginatedUploadedFileList</code> instance.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
}, {
|
|
54
|
+
key: "constructFromObject",
|
|
55
|
+
value: function constructFromObject(data, obj) {
|
|
56
|
+
if (data) {
|
|
57
|
+
obj = obj || new PaginatedUploadedFileList();
|
|
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'], [_UploadedFile["default"]]);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
return obj;
|
|
77
|
+
}
|
|
78
|
+
}]);
|
|
79
|
+
|
|
80
|
+
return PaginatedUploadedFileList;
|
|
81
|
+
}();
|
|
82
|
+
/**
|
|
83
|
+
* @member {Number} count
|
|
84
|
+
*/
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
PaginatedUploadedFileList.prototype['count'] = undefined;
|
|
88
|
+
/**
|
|
89
|
+
* @member {String} next
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
PaginatedUploadedFileList.prototype['next'] = undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @member {String} previous
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
PaginatedUploadedFileList.prototype['previous'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* @member {Array.<module:model/UploadedFile>} results
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
PaginatedUploadedFileList.prototype['results'] = undefined;
|
|
103
|
+
var _default = PaginatedUploadedFileList;
|
|
104
|
+
exports["default"] = _default;
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PaginatedUserList model module.
|
|
22
22
|
* @module model/PaginatedUserList
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PaginatedUserList = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedConsumer model module.
|
|
22
22
|
* @module model/PatchedConsumer
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedConsumer = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -7,6 +7,8 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
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 PatchedConsumptionDataPointUpdate model module.
|
|
20
22
|
* @module model/PatchedConsumptionDataPointUpdate
|
|
21
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
22
24
|
*/
|
|
23
25
|
var PatchedConsumptionDataPointUpdate = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -122,16 +124,16 @@ var PatchedConsumptionDataPointUpdate = /*#__PURE__*/function () {
|
|
|
122
124
|
obj['amount_consumed'] = _ApiClient["default"].convertToType(data['amount_consumed'], 'Number');
|
|
123
125
|
}
|
|
124
126
|
|
|
125
|
-
if (data.hasOwnProperty('
|
|
126
|
-
obj['
|
|
127
|
+
if (data.hasOwnProperty('tx')) {
|
|
128
|
+
obj['tx'] = _ApiClient["default"].convertToType(data['tx'], 'String');
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
if (data.hasOwnProperty('is_settlement_data')) {
|
|
130
132
|
obj['is_settlement_data'] = _ApiClient["default"].convertToType(data['is_settlement_data'], 'Boolean');
|
|
131
133
|
}
|
|
132
134
|
|
|
133
|
-
if (data.hasOwnProperty('
|
|
134
|
-
obj['
|
|
135
|
+
if (data.hasOwnProperty('minter_contract')) {
|
|
136
|
+
obj['minter_contract'] = _ApiClient["default"].convertToType(data['minter_contract'], _SmartContract["default"]);
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -247,11 +249,10 @@ PatchedConsumptionDataPointUpdate.prototype['consumption_end'] = undefined;
|
|
|
247
249
|
|
|
248
250
|
PatchedConsumptionDataPointUpdate.prototype['amount_consumed'] = undefined;
|
|
249
251
|
/**
|
|
250
|
-
*
|
|
251
|
-
* @member {String} consumption_tx_hash
|
|
252
|
+
* @member {String} tx
|
|
252
253
|
*/
|
|
253
254
|
|
|
254
|
-
PatchedConsumptionDataPointUpdate.prototype['
|
|
255
|
+
PatchedConsumptionDataPointUpdate.prototype['tx'] = undefined;
|
|
255
256
|
/**
|
|
256
257
|
* True if settlement data. Default False.
|
|
257
258
|
* @member {Boolean} is_settlement_data
|
|
@@ -259,11 +260,10 @@ PatchedConsumptionDataPointUpdate.prototype['consumption_tx_hash'] = undefined;
|
|
|
259
260
|
|
|
260
261
|
PatchedConsumptionDataPointUpdate.prototype['is_settlement_data'] = undefined;
|
|
261
262
|
/**
|
|
262
|
-
*
|
|
263
|
-
* @member {String} token_contract_address
|
|
263
|
+
* @member {module:model/SmartContract} minter_contract
|
|
264
264
|
*/
|
|
265
265
|
|
|
266
|
-
PatchedConsumptionDataPointUpdate.prototype['
|
|
266
|
+
PatchedConsumptionDataPointUpdate.prototype['minter_contract'] = undefined;
|
|
267
267
|
/**
|
|
268
268
|
* @member {Date} created_at
|
|
269
269
|
*/
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedConsumptionSite model module.
|
|
22
22
|
* @module model/PatchedConsumptionSite
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedConsumptionSite = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The PatchedEmissionFactor model module.
|
|
20
20
|
* @module model/PatchedEmissionFactor
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var PatchedEmissionFactor = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -22,7 +22,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
22
22
|
/**
|
|
23
23
|
* The PatchedEnergySourcePreference model module.
|
|
24
24
|
* @module model/PatchedEnergySourcePreference
|
|
25
|
-
* @version 0.
|
|
25
|
+
* @version 0.54.4
|
|
26
26
|
*/
|
|
27
27
|
var PatchedEnergySourcePreference = /*#__PURE__*/function () {
|
|
28
28
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedGridOperator model module.
|
|
22
22
|
* @module model/PatchedGridOperator
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedGridOperator = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedIssuer model module.
|
|
22
22
|
* @module model/PatchedIssuer
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedIssuer = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The PatchedLocation model module.
|
|
20
20
|
* @module model/PatchedLocation
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var PatchedLocation = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedProducer model module.
|
|
22
22
|
* @module model/PatchedProducer
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedProducer = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -7,6 +7,8 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
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 PatchedProductionDataPointUpdate model module.
|
|
20
22
|
* @module model/PatchedProductionDataPointUpdate
|
|
21
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
22
24
|
*/
|
|
23
25
|
var PatchedProductionDataPointUpdate = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -98,16 +100,16 @@ var PatchedProductionDataPointUpdate = /*#__PURE__*/function () {
|
|
|
98
100
|
obj['is_fully_matched'] = _ApiClient["default"].convertToType(data['is_fully_matched'], 'Boolean');
|
|
99
101
|
}
|
|
100
102
|
|
|
101
|
-
if (data.hasOwnProperty('
|
|
102
|
-
obj['
|
|
103
|
+
if (data.hasOwnProperty('tx')) {
|
|
104
|
+
obj['tx'] = _ApiClient["default"].convertToType(data['tx'], 'String');
|
|
103
105
|
}
|
|
104
106
|
|
|
105
107
|
if (data.hasOwnProperty('is_settlement_data')) {
|
|
106
108
|
obj['is_settlement_data'] = _ApiClient["default"].convertToType(data['is_settlement_data'], 'Boolean');
|
|
107
109
|
}
|
|
108
110
|
|
|
109
|
-
if (data.hasOwnProperty('
|
|
110
|
-
obj['
|
|
111
|
+
if (data.hasOwnProperty('minter_contract')) {
|
|
112
|
+
obj['minter_contract'] = _ApiClient["default"].convertToType(data['minter_contract'], _SmartContract["default"]);
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -180,17 +182,16 @@ PatchedProductionDataPointUpdate.prototype['amount_produced'] = undefined;
|
|
|
180
182
|
|
|
181
183
|
PatchedProductionDataPointUpdate.prototype['amount_matched'] = undefined;
|
|
182
184
|
/**
|
|
183
|
-
* True if
|
|
185
|
+
* True if fully matched. Default False.
|
|
184
186
|
* @member {Boolean} is_fully_matched
|
|
185
187
|
*/
|
|
186
188
|
|
|
187
189
|
PatchedProductionDataPointUpdate.prototype['is_fully_matched'] = undefined;
|
|
188
190
|
/**
|
|
189
|
-
*
|
|
190
|
-
* @member {String} production_tx_hash
|
|
191
|
+
* @member {String} tx
|
|
191
192
|
*/
|
|
192
193
|
|
|
193
|
-
PatchedProductionDataPointUpdate.prototype['
|
|
194
|
+
PatchedProductionDataPointUpdate.prototype['tx'] = undefined;
|
|
194
195
|
/**
|
|
195
196
|
* True if settlement data. Default False.
|
|
196
197
|
* @member {Boolean} is_settlement_data
|
|
@@ -198,11 +199,10 @@ PatchedProductionDataPointUpdate.prototype['production_tx_hash'] = undefined;
|
|
|
198
199
|
|
|
199
200
|
PatchedProductionDataPointUpdate.prototype['is_settlement_data'] = undefined;
|
|
200
201
|
/**
|
|
201
|
-
*
|
|
202
|
-
* @member {String} token_contract_address
|
|
202
|
+
* @member {module:model/SmartContract} minter_contract
|
|
203
203
|
*/
|
|
204
204
|
|
|
205
|
-
PatchedProductionDataPointUpdate.prototype['
|
|
205
|
+
PatchedProductionDataPointUpdate.prototype['minter_contract'] = undefined;
|
|
206
206
|
/**
|
|
207
207
|
* @member {Date} created_at
|
|
208
208
|
*/
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedProductionSiteUpdate model module.
|
|
22
22
|
* @module model/PatchedProductionSiteUpdate
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedProductionSiteUpdate = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -178,6 +178,7 @@ PatchedProductionSiteUpdate.prototype['name'] = undefined;
|
|
|
178
178
|
|
|
179
179
|
PatchedProductionSiteUpdate.prototype['site_logo'] = undefined;
|
|
180
180
|
/**
|
|
181
|
+
* (Optional) Value should be in KWh.
|
|
181
182
|
* @member {Number} capacity
|
|
182
183
|
*/
|
|
183
184
|
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedRetailer model module.
|
|
22
22
|
* @module model/PatchedRetailer
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedRetailer = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -0,0 +1,132 @@
|
|
|
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
|
+
/**
|
|
19
|
+
* The PatchedSmartContract model module.
|
|
20
|
+
* @module model/PatchedSmartContract
|
|
21
|
+
* @version 0.54.4
|
|
22
|
+
*/
|
|
23
|
+
var PatchedSmartContract = /*#__PURE__*/function () {
|
|
24
|
+
/**
|
|
25
|
+
* Constructs a new <code>PatchedSmartContract</code>.
|
|
26
|
+
* @alias module:model/PatchedSmartContract
|
|
27
|
+
*/
|
|
28
|
+
function PatchedSmartContract() {
|
|
29
|
+
_classCallCheck(this, PatchedSmartContract);
|
|
30
|
+
|
|
31
|
+
PatchedSmartContract.initialize(this);
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Initializes the fields of this object.
|
|
35
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
36
|
+
* Only for internal use.
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
_createClass(PatchedSmartContract, null, [{
|
|
41
|
+
key: "initialize",
|
|
42
|
+
value: function initialize(obj) {}
|
|
43
|
+
/**
|
|
44
|
+
* Constructs a <code>PatchedSmartContract</code> from a plain JavaScript object, optionally creating a new instance.
|
|
45
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
46
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
47
|
+
* @param {module:model/PatchedSmartContract} obj Optional instance to populate.
|
|
48
|
+
* @return {module:model/PatchedSmartContract} The populated <code>PatchedSmartContract</code> instance.
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
}, {
|
|
52
|
+
key: "constructFromObject",
|
|
53
|
+
value: function constructFromObject(data, obj) {
|
|
54
|
+
if (data) {
|
|
55
|
+
obj = obj || new PatchedSmartContract();
|
|
56
|
+
|
|
57
|
+
if (data.hasOwnProperty('id')) {
|
|
58
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
if (data.hasOwnProperty('name')) {
|
|
62
|
+
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (data.hasOwnProperty('blockchain_account_address')) {
|
|
66
|
+
obj['blockchain_account_address'] = _ApiClient["default"].convertToType(data['blockchain_account_address'], 'String');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (data.hasOwnProperty('abi')) {
|
|
70
|
+
obj['abi'] = _ApiClient["default"].convertToType(data['abi'], 'String');
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (data.hasOwnProperty('is_active')) {
|
|
74
|
+
obj['is_active'] = _ApiClient["default"].convertToType(data['is_active'], 'Boolean');
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (data.hasOwnProperty('created_at')) {
|
|
78
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'Date');
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (data.hasOwnProperty('updated_at')) {
|
|
82
|
+
obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'Date');
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
return obj;
|
|
87
|
+
}
|
|
88
|
+
}]);
|
|
89
|
+
|
|
90
|
+
return PatchedSmartContract;
|
|
91
|
+
}();
|
|
92
|
+
/**
|
|
93
|
+
* @member {String} id
|
|
94
|
+
*/
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
PatchedSmartContract.prototype['id'] = undefined;
|
|
98
|
+
/**
|
|
99
|
+
* Required. 150 characters or fewer.
|
|
100
|
+
* @member {String} name
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
PatchedSmartContract.prototype['name'] = undefined;
|
|
104
|
+
/**
|
|
105
|
+
* Production site's blockchain account address.
|
|
106
|
+
* @member {String} blockchain_account_address
|
|
107
|
+
*/
|
|
108
|
+
|
|
109
|
+
PatchedSmartContract.prototype['blockchain_account_address'] = undefined;
|
|
110
|
+
/**
|
|
111
|
+
* @member {String} abi
|
|
112
|
+
*/
|
|
113
|
+
|
|
114
|
+
PatchedSmartContract.prototype['abi'] = undefined;
|
|
115
|
+
/**
|
|
116
|
+
* True if contract is active. Default True.
|
|
117
|
+
* @member {Boolean} is_active
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
PatchedSmartContract.prototype['is_active'] = undefined;
|
|
121
|
+
/**
|
|
122
|
+
* @member {Date} created_at
|
|
123
|
+
*/
|
|
124
|
+
|
|
125
|
+
PatchedSmartContract.prototype['created_at'] = undefined;
|
|
126
|
+
/**
|
|
127
|
+
* @member {Date} updated_at
|
|
128
|
+
*/
|
|
129
|
+
|
|
130
|
+
PatchedSmartContract.prototype['updated_at'] = undefined;
|
|
131
|
+
var _default = PatchedSmartContract;
|
|
132
|
+
exports["default"] = _default;
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedUser model module.
|
|
22
22
|
* @module model/PatchedUser
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedUser = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -147,11 +147,13 @@ PatchedUser.prototype['first_name'] = undefined;
|
|
|
147
147
|
|
|
148
148
|
PatchedUser.prototype['last_name'] = undefined;
|
|
149
149
|
/**
|
|
150
|
+
* Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. Default is the user's email.
|
|
150
151
|
* @member {String} username
|
|
151
152
|
*/
|
|
152
153
|
|
|
153
154
|
PatchedUser.prototype['username'] = undefined;
|
|
154
155
|
/**
|
|
156
|
+
* Required.
|
|
155
157
|
* @member {String} email
|
|
156
158
|
*/
|
|
157
159
|
|
|
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The PatchedUserDetail model module.
|
|
22
22
|
* @module model/PatchedUserDetail
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var PatchedUserDetail = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
@@ -147,11 +147,13 @@ PatchedUserDetail.prototype['first_name'] = undefined;
|
|
|
147
147
|
|
|
148
148
|
PatchedUserDetail.prototype['last_name'] = undefined;
|
|
149
149
|
/**
|
|
150
|
+
* Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. Default is the user's email.
|
|
150
151
|
* @member {String} username
|
|
151
152
|
*/
|
|
152
153
|
|
|
153
154
|
PatchedUserDetail.prototype['username'] = undefined;
|
|
154
155
|
/**
|
|
156
|
+
* Required.
|
|
155
157
|
* @member {String} email
|
|
156
158
|
*/
|
|
157
159
|
|
|
@@ -35,6 +35,12 @@ var PriorityEnum = /*#__PURE__*/function () {
|
|
|
35
35
|
_defineProperty(this, "4", 4);
|
|
36
36
|
|
|
37
37
|
_defineProperty(this, "5", 5);
|
|
38
|
+
|
|
39
|
+
_defineProperty(this, "6", 6);
|
|
40
|
+
|
|
41
|
+
_defineProperty(this, "7", 7);
|
|
42
|
+
|
|
43
|
+
_defineProperty(this, "8", 8);
|
|
38
44
|
}
|
|
39
45
|
|
|
40
46
|
_createClass(PriorityEnum, null, [{
|
package/dist/model/Producer.js
CHANGED
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The ProductionDataFileList model module.
|
|
20
20
|
* @module model/ProductionDataFileList
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var ProductionDataFileList = /*#__PURE__*/function () {
|
|
24
24
|
/**
|