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,167 @@
|
|
|
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 _Producer = _interopRequireDefault(require("./Producer"));
|
|
11
|
+
|
|
12
|
+
var _ProductionSite = _interopRequireDefault(require("./ProductionSite"));
|
|
13
|
+
|
|
14
|
+
var _Retailer = _interopRequireDefault(require("./Retailer"));
|
|
15
|
+
|
|
16
|
+
var _StatusEnum = _interopRequireDefault(require("./StatusEnum"));
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
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); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* The ProductionDataFromEpiasRequest model module.
|
|
28
|
+
* @module model/ProductionDataFromEpiasRequest
|
|
29
|
+
* @version 0.54.4
|
|
30
|
+
*/
|
|
31
|
+
var ProductionDataFromEpiasRequest = /*#__PURE__*/function () {
|
|
32
|
+
/**
|
|
33
|
+
* Constructs a new <code>ProductionDataFromEpiasRequest</code>.
|
|
34
|
+
* @alias module:model/ProductionDataFromEpiasRequest
|
|
35
|
+
* @param producer {module:model/Producer}
|
|
36
|
+
* @param retailer {module:model/Retailer}
|
|
37
|
+
* @param productionSite {module:model/ProductionSite}
|
|
38
|
+
* @param startTime {Date}
|
|
39
|
+
* @param endTime {Date}
|
|
40
|
+
*/
|
|
41
|
+
function ProductionDataFromEpiasRequest(producer, retailer, productionSite, startTime, endTime) {
|
|
42
|
+
_classCallCheck(this, ProductionDataFromEpiasRequest);
|
|
43
|
+
|
|
44
|
+
ProductionDataFromEpiasRequest.initialize(this, producer, retailer, productionSite, startTime, endTime);
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Initializes the fields of this object.
|
|
48
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
49
|
+
* Only for internal use.
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
_createClass(ProductionDataFromEpiasRequest, null, [{
|
|
54
|
+
key: "initialize",
|
|
55
|
+
value: function initialize(obj, producer, retailer, productionSite, startTime, endTime) {
|
|
56
|
+
obj['producer'] = producer;
|
|
57
|
+
obj['retailer'] = retailer;
|
|
58
|
+
obj['production_site'] = productionSite;
|
|
59
|
+
obj['start_time'] = startTime;
|
|
60
|
+
obj['end_time'] = endTime;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Constructs a <code>ProductionDataFromEpiasRequest</code> from a plain JavaScript object, optionally creating a new instance.
|
|
64
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
65
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
66
|
+
* @param {module:model/ProductionDataFromEpiasRequest} obj Optional instance to populate.
|
|
67
|
+
* @return {module:model/ProductionDataFromEpiasRequest} The populated <code>ProductionDataFromEpiasRequest</code> instance.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
}, {
|
|
71
|
+
key: "constructFromObject",
|
|
72
|
+
value: function constructFromObject(data, obj) {
|
|
73
|
+
if (data) {
|
|
74
|
+
obj = obj || new ProductionDataFromEpiasRequest();
|
|
75
|
+
|
|
76
|
+
if (data.hasOwnProperty('id')) {
|
|
77
|
+
obj['id'] = _ApiClient["default"].convertToType(data['id'], 'String');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (data.hasOwnProperty('producer')) {
|
|
81
|
+
obj['producer'] = _Producer["default"].constructFromObject(data['producer']);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (data.hasOwnProperty('retailer')) {
|
|
85
|
+
obj['retailer'] = _Retailer["default"].constructFromObject(data['retailer']);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (data.hasOwnProperty('production_site')) {
|
|
89
|
+
obj['production_site'] = _ProductionSite["default"].constructFromObject(data['production_site']);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if (data.hasOwnProperty('status')) {
|
|
93
|
+
obj['status'] = _ApiClient["default"].convertToType(data['status'], _StatusEnum["default"]);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if (data.hasOwnProperty('start_time')) {
|
|
97
|
+
obj['start_time'] = _ApiClient["default"].convertToType(data['start_time'], 'Date');
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (data.hasOwnProperty('end_time')) {
|
|
101
|
+
obj['end_time'] = _ApiClient["default"].convertToType(data['end_time'], 'Date');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (data.hasOwnProperty('created_at')) {
|
|
105
|
+
obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'Date');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if (data.hasOwnProperty('updated_at')) {
|
|
109
|
+
obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'Date');
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
return obj;
|
|
114
|
+
}
|
|
115
|
+
}]);
|
|
116
|
+
|
|
117
|
+
return ProductionDataFromEpiasRequest;
|
|
118
|
+
}();
|
|
119
|
+
/**
|
|
120
|
+
* @member {String} id
|
|
121
|
+
*/
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
ProductionDataFromEpiasRequest.prototype['id'] = undefined;
|
|
125
|
+
/**
|
|
126
|
+
* @member {module:model/Producer} producer
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
ProductionDataFromEpiasRequest.prototype['producer'] = undefined;
|
|
130
|
+
/**
|
|
131
|
+
* @member {module:model/Retailer} retailer
|
|
132
|
+
*/
|
|
133
|
+
|
|
134
|
+
ProductionDataFromEpiasRequest.prototype['retailer'] = undefined;
|
|
135
|
+
/**
|
|
136
|
+
* @member {module:model/ProductionSite} production_site
|
|
137
|
+
*/
|
|
138
|
+
|
|
139
|
+
ProductionDataFromEpiasRequest.prototype['production_site'] = undefined;
|
|
140
|
+
/**
|
|
141
|
+
* Status is set to `started` or `finished` if at least one or all consumption datapoints have been matched. Default `unstarted`.
|
|
142
|
+
* @member {module:model/StatusEnum} status
|
|
143
|
+
*/
|
|
144
|
+
|
|
145
|
+
ProductionDataFromEpiasRequest.prototype['status'] = undefined;
|
|
146
|
+
/**
|
|
147
|
+
* @member {Date} start_time
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
ProductionDataFromEpiasRequest.prototype['start_time'] = undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @member {Date} end_time
|
|
153
|
+
*/
|
|
154
|
+
|
|
155
|
+
ProductionDataFromEpiasRequest.prototype['end_time'] = undefined;
|
|
156
|
+
/**
|
|
157
|
+
* @member {Date} created_at
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
ProductionDataFromEpiasRequest.prototype['created_at'] = undefined;
|
|
161
|
+
/**
|
|
162
|
+
* @member {Date} updated_at
|
|
163
|
+
*/
|
|
164
|
+
|
|
165
|
+
ProductionDataFromEpiasRequest.prototype['updated_at'] = undefined;
|
|
166
|
+
var _default = ProductionDataFromEpiasRequest;
|
|
167
|
+
exports["default"] = _default;
|
|
@@ -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 ProductionDataPointCreate model module.
|
|
20
22
|
* @module model/ProductionDataPointCreate
|
|
21
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
22
24
|
*/
|
|
23
25
|
var ProductionDataPointCreate = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -105,16 +107,16 @@ var ProductionDataPointCreate = /*#__PURE__*/function () {
|
|
|
105
107
|
obj['is_fully_matched'] = _ApiClient["default"].convertToType(data['is_fully_matched'], 'Boolean');
|
|
106
108
|
}
|
|
107
109
|
|
|
108
|
-
if (data.hasOwnProperty('
|
|
109
|
-
obj['
|
|
110
|
+
if (data.hasOwnProperty('tx')) {
|
|
111
|
+
obj['tx'] = _ApiClient["default"].convertToType(data['tx'], 'String');
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
if (data.hasOwnProperty('is_settlement_data')) {
|
|
113
115
|
obj['is_settlement_data'] = _ApiClient["default"].convertToType(data['is_settlement_data'], 'Boolean');
|
|
114
116
|
}
|
|
115
117
|
|
|
116
|
-
if (data.hasOwnProperty('
|
|
117
|
-
obj['
|
|
118
|
+
if (data.hasOwnProperty('minter_contract')) {
|
|
119
|
+
obj['minter_contract'] = _ApiClient["default"].convertToType(data['minter_contract'], _SmartContract["default"]);
|
|
118
120
|
}
|
|
119
121
|
|
|
120
122
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -187,17 +189,16 @@ ProductionDataPointCreate.prototype['amount_produced'] = undefined;
|
|
|
187
189
|
|
|
188
190
|
ProductionDataPointCreate.prototype['amount_matched'] = undefined;
|
|
189
191
|
/**
|
|
190
|
-
* True if
|
|
192
|
+
* True if fully matched. Default False.
|
|
191
193
|
* @member {Boolean} is_fully_matched
|
|
192
194
|
*/
|
|
193
195
|
|
|
194
196
|
ProductionDataPointCreate.prototype['is_fully_matched'] = undefined;
|
|
195
197
|
/**
|
|
196
|
-
*
|
|
197
|
-
* @member {String} production_tx_hash
|
|
198
|
+
* @member {String} tx
|
|
198
199
|
*/
|
|
199
200
|
|
|
200
|
-
ProductionDataPointCreate.prototype['
|
|
201
|
+
ProductionDataPointCreate.prototype['tx'] = undefined;
|
|
201
202
|
/**
|
|
202
203
|
* True if settlement data. Default False.
|
|
203
204
|
* @member {Boolean} is_settlement_data
|
|
@@ -205,11 +206,10 @@ ProductionDataPointCreate.prototype['production_tx_hash'] = undefined;
|
|
|
205
206
|
|
|
206
207
|
ProductionDataPointCreate.prototype['is_settlement_data'] = undefined;
|
|
207
208
|
/**
|
|
208
|
-
*
|
|
209
|
-
* @member {String} token_contract_address
|
|
209
|
+
* @member {module:model/SmartContract} minter_contract
|
|
210
210
|
*/
|
|
211
211
|
|
|
212
|
-
ProductionDataPointCreate.prototype['
|
|
212
|
+
ProductionDataPointCreate.prototype['minter_contract'] = undefined;
|
|
213
213
|
/**
|
|
214
214
|
* @member {Date} created_at
|
|
215
215
|
*/
|
|
@@ -7,12 +7,16 @@ exports["default"] = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
9
9
|
|
|
10
|
+
var _BlockchainTransaction = _interopRequireDefault(require("./BlockchainTransaction"));
|
|
11
|
+
|
|
10
12
|
var _ConsumptionSite = _interopRequireDefault(require("./ConsumptionSite"));
|
|
11
13
|
|
|
12
14
|
var _Producer = _interopRequireDefault(require("./Producer"));
|
|
13
15
|
|
|
14
16
|
var _ProductionSite = _interopRequireDefault(require("./ProductionSite"));
|
|
15
17
|
|
|
18
|
+
var _SmartContract = _interopRequireDefault(require("./SmartContract"));
|
|
19
|
+
|
|
16
20
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
17
21
|
|
|
18
22
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -24,7 +28,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
24
28
|
/**
|
|
25
29
|
* The ProductionDataPointListOrDetail model module.
|
|
26
30
|
* @module model/ProductionDataPointListOrDetail
|
|
27
|
-
* @version 0.
|
|
31
|
+
* @version 0.54.4
|
|
28
32
|
*/
|
|
29
33
|
var ProductionDataPointListOrDetail = /*#__PURE__*/function () {
|
|
30
34
|
/**
|
|
@@ -34,11 +38,13 @@ var ProductionDataPointListOrDetail = /*#__PURE__*/function () {
|
|
|
34
38
|
* @param producer {module:model/Producer}
|
|
35
39
|
* @param productionStart {Date}
|
|
36
40
|
* @param productionEnd {Date}
|
|
41
|
+
* @param tx {module:model/BlockchainTransaction}
|
|
42
|
+
* @param minterContract {module:model/SmartContract}
|
|
37
43
|
*/
|
|
38
|
-
function ProductionDataPointListOrDetail(productionSite, producer, productionStart, productionEnd) {
|
|
44
|
+
function ProductionDataPointListOrDetail(productionSite, producer, productionStart, productionEnd, tx, minterContract) {
|
|
39
45
|
_classCallCheck(this, ProductionDataPointListOrDetail);
|
|
40
46
|
|
|
41
|
-
ProductionDataPointListOrDetail.initialize(this, productionSite, producer, productionStart, productionEnd);
|
|
47
|
+
ProductionDataPointListOrDetail.initialize(this, productionSite, producer, productionStart, productionEnd, tx, minterContract);
|
|
42
48
|
}
|
|
43
49
|
/**
|
|
44
50
|
* Initializes the fields of this object.
|
|
@@ -49,11 +55,13 @@ var ProductionDataPointListOrDetail = /*#__PURE__*/function () {
|
|
|
49
55
|
|
|
50
56
|
_createClass(ProductionDataPointListOrDetail, null, [{
|
|
51
57
|
key: "initialize",
|
|
52
|
-
value: function initialize(obj, productionSite, producer, productionStart, productionEnd) {
|
|
58
|
+
value: function initialize(obj, productionSite, producer, productionStart, productionEnd, tx, minterContract) {
|
|
53
59
|
obj['production_site'] = productionSite;
|
|
54
60
|
obj['producer'] = producer;
|
|
55
61
|
obj['production_start'] = productionStart;
|
|
56
62
|
obj['production_end'] = productionEnd;
|
|
63
|
+
obj['tx'] = tx;
|
|
64
|
+
obj['minter_contract'] = minterContract;
|
|
57
65
|
}
|
|
58
66
|
/**
|
|
59
67
|
* Constructs a <code>ProductionDataPointListOrDetail</code> from a plain JavaScript object, optionally creating a new instance.
|
|
@@ -113,8 +121,8 @@ var ProductionDataPointListOrDetail = /*#__PURE__*/function () {
|
|
|
113
121
|
obj['is_fully_matched'] = _ApiClient["default"].convertToType(data['is_fully_matched'], 'Boolean');
|
|
114
122
|
}
|
|
115
123
|
|
|
116
|
-
if (data.hasOwnProperty('
|
|
117
|
-
obj['
|
|
124
|
+
if (data.hasOwnProperty('tx')) {
|
|
125
|
+
obj['tx'] = _BlockchainTransaction["default"].constructFromObject(data['tx']);
|
|
118
126
|
}
|
|
119
127
|
|
|
120
128
|
if (data.hasOwnProperty('consumption_sites_matched')) {
|
|
@@ -125,8 +133,8 @@ var ProductionDataPointListOrDetail = /*#__PURE__*/function () {
|
|
|
125
133
|
obj['is_settlement_data'] = _ApiClient["default"].convertToType(data['is_settlement_data'], 'Boolean');
|
|
126
134
|
}
|
|
127
135
|
|
|
128
|
-
if (data.hasOwnProperty('
|
|
129
|
-
obj['
|
|
136
|
+
if (data.hasOwnProperty('minter_contract')) {
|
|
137
|
+
obj['minter_contract'] = _SmartContract["default"].constructFromObject(data['minter_contract']);
|
|
130
138
|
}
|
|
131
139
|
|
|
132
140
|
if (data.hasOwnProperty('created_at')) {
|
|
@@ -199,17 +207,16 @@ ProductionDataPointListOrDetail.prototype['amount_produced'] = undefined;
|
|
|
199
207
|
|
|
200
208
|
ProductionDataPointListOrDetail.prototype['amount_matched'] = undefined;
|
|
201
209
|
/**
|
|
202
|
-
* True if
|
|
210
|
+
* True if fully matched. Default False.
|
|
203
211
|
* @member {Boolean} is_fully_matched
|
|
204
212
|
*/
|
|
205
213
|
|
|
206
214
|
ProductionDataPointListOrDetail.prototype['is_fully_matched'] = undefined;
|
|
207
215
|
/**
|
|
208
|
-
*
|
|
209
|
-
* @member {String} production_tx_hash
|
|
216
|
+
* @member {module:model/BlockchainTransaction} tx
|
|
210
217
|
*/
|
|
211
218
|
|
|
212
|
-
ProductionDataPointListOrDetail.prototype['
|
|
219
|
+
ProductionDataPointListOrDetail.prototype['tx'] = undefined;
|
|
213
220
|
/**
|
|
214
221
|
* @member {Array.<module:model/ConsumptionSite>} consumption_sites_matched
|
|
215
222
|
*/
|
|
@@ -222,10 +229,10 @@ ProductionDataPointListOrDetail.prototype['consumption_sites_matched'] = undefin
|
|
|
222
229
|
|
|
223
230
|
ProductionDataPointListOrDetail.prototype['is_settlement_data'] = undefined;
|
|
224
231
|
/**
|
|
225
|
-
* @member {
|
|
232
|
+
* @member {module:model/SmartContract} minter_contract
|
|
226
233
|
*/
|
|
227
234
|
|
|
228
|
-
ProductionDataPointListOrDetail.prototype['
|
|
235
|
+
ProductionDataPointListOrDetail.prototype['minter_contract'] = undefined;
|
|
229
236
|
/**
|
|
230
237
|
* @member {Date} created_at
|
|
231
238
|
*/
|
|
@@ -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 ProductionDataPointUpdate model module.
|
|
20
22
|
* @module model/ProductionDataPointUpdate
|
|
21
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
22
24
|
*/
|
|
23
25
|
var ProductionDataPointUpdate = /*#__PURE__*/function () {
|
|
24
26
|
/**
|
|
@@ -98,16 +100,16 @@ var ProductionDataPointUpdate = /*#__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 @@ ProductionDataPointUpdate.prototype['amount_produced'] = undefined;
|
|
|
180
182
|
|
|
181
183
|
ProductionDataPointUpdate.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
|
ProductionDataPointUpdate.prototype['is_fully_matched'] = undefined;
|
|
188
190
|
/**
|
|
189
|
-
*
|
|
190
|
-
* @member {String} production_tx_hash
|
|
191
|
+
* @member {String} tx
|
|
191
192
|
*/
|
|
192
193
|
|
|
193
|
-
ProductionDataPointUpdate.prototype['
|
|
194
|
+
ProductionDataPointUpdate.prototype['tx'] = undefined;
|
|
194
195
|
/**
|
|
195
196
|
* True if settlement data. Default False.
|
|
196
197
|
* @member {Boolean} is_settlement_data
|
|
@@ -198,11 +199,10 @@ ProductionDataPointUpdate.prototype['production_tx_hash'] = undefined;
|
|
|
198
199
|
|
|
199
200
|
ProductionDataPointUpdate.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
|
-
ProductionDataPointUpdate.prototype['
|
|
205
|
+
ProductionDataPointUpdate.prototype['minter_contract'] = undefined;
|
|
206
206
|
/**
|
|
207
207
|
* @member {Date} created_at
|
|
208
208
|
*/
|
|
@@ -20,23 +20,22 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The ProductionSite model module.
|
|
22
22
|
* @module model/ProductionSite
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var ProductionSite = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
27
27
|
* Constructs a new <code>ProductionSite</code>.
|
|
28
28
|
* @alias module:model/ProductionSite
|
|
29
|
-
* @param producer {String}
|
|
30
29
|
* @param location {module:model/Location}
|
|
31
30
|
* @param name {String} Required. 150 characters or fewer.
|
|
32
31
|
* @param energySource {String}
|
|
33
32
|
* @param technologyOrFuelType {String}
|
|
34
33
|
* @param eic {String} Required. 30 characters or fewer.
|
|
35
34
|
*/
|
|
36
|
-
function ProductionSite(
|
|
35
|
+
function ProductionSite(location, name, energySource, technologyOrFuelType, eic) {
|
|
37
36
|
_classCallCheck(this, ProductionSite);
|
|
38
37
|
|
|
39
|
-
ProductionSite.initialize(this,
|
|
38
|
+
ProductionSite.initialize(this, location, name, energySource, technologyOrFuelType, eic);
|
|
40
39
|
}
|
|
41
40
|
/**
|
|
42
41
|
* Initializes the fields of this object.
|
|
@@ -47,8 +46,7 @@ var ProductionSite = /*#__PURE__*/function () {
|
|
|
47
46
|
|
|
48
47
|
_createClass(ProductionSite, null, [{
|
|
49
48
|
key: "initialize",
|
|
50
|
-
value: function initialize(obj,
|
|
51
|
-
obj['producer'] = producer;
|
|
49
|
+
value: function initialize(obj, location, name, energySource, technologyOrFuelType, eic) {
|
|
52
50
|
obj['location'] = location;
|
|
53
51
|
obj['name'] = name;
|
|
54
52
|
obj['energy_source'] = energySource;
|
|
@@ -191,6 +189,7 @@ ProductionSite.prototype['name'] = undefined;
|
|
|
191
189
|
|
|
192
190
|
ProductionSite.prototype['site_logo'] = undefined;
|
|
193
191
|
/**
|
|
192
|
+
* (Optional) Value should be in KWh.
|
|
194
193
|
* @member {Number} capacity
|
|
195
194
|
*/
|
|
196
195
|
|
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The ProductionSiteFileUpload model module.
|
|
20
20
|
* @module model/ProductionSiteFileUpload
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var ProductionSiteFileUpload = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -22,7 +22,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
22
22
|
/**
|
|
23
23
|
* The ProductionSiteListOrDetail model module.
|
|
24
24
|
* @module model/ProductionSiteListOrDetail
|
|
25
|
-
* @version 0.
|
|
25
|
+
* @version 0.54.4
|
|
26
26
|
*/
|
|
27
27
|
var ProductionSiteListOrDetail = /*#__PURE__*/function () {
|
|
28
28
|
/**
|
|
@@ -20,22 +20,21 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
20
20
|
/**
|
|
21
21
|
* The ProductionSiteUpdate model module.
|
|
22
22
|
* @module model/ProductionSiteUpdate
|
|
23
|
-
* @version 0.
|
|
23
|
+
* @version 0.54.4
|
|
24
24
|
*/
|
|
25
25
|
var ProductionSiteUpdate = /*#__PURE__*/function () {
|
|
26
26
|
/**
|
|
27
27
|
* Constructs a new <code>ProductionSiteUpdate</code>.
|
|
28
28
|
* @alias module:model/ProductionSiteUpdate
|
|
29
|
-
* @param producer {String}
|
|
30
29
|
* @param location {module:model/Location}
|
|
31
30
|
* @param name {String} Required. 150 characters or fewer.
|
|
32
31
|
* @param energySource {String}
|
|
33
32
|
* @param technologyOrFuelType {String}
|
|
34
33
|
*/
|
|
35
|
-
function ProductionSiteUpdate(
|
|
34
|
+
function ProductionSiteUpdate(location, name, energySource, technologyOrFuelType) {
|
|
36
35
|
_classCallCheck(this, ProductionSiteUpdate);
|
|
37
36
|
|
|
38
|
-
ProductionSiteUpdate.initialize(this,
|
|
37
|
+
ProductionSiteUpdate.initialize(this, location, name, energySource, technologyOrFuelType);
|
|
39
38
|
}
|
|
40
39
|
/**
|
|
41
40
|
* Initializes the fields of this object.
|
|
@@ -46,8 +45,7 @@ var ProductionSiteUpdate = /*#__PURE__*/function () {
|
|
|
46
45
|
|
|
47
46
|
_createClass(ProductionSiteUpdate, null, [{
|
|
48
47
|
key: "initialize",
|
|
49
|
-
value: function initialize(obj,
|
|
50
|
-
obj['producer'] = producer;
|
|
48
|
+
value: function initialize(obj, location, name, energySource, technologyOrFuelType) {
|
|
51
49
|
obj['location'] = location;
|
|
52
50
|
obj['name'] = name;
|
|
53
51
|
obj['energy_source'] = energySource;
|
|
@@ -189,6 +187,7 @@ ProductionSiteUpdate.prototype['name'] = undefined;
|
|
|
189
187
|
|
|
190
188
|
ProductionSiteUpdate.prototype['site_logo'] = undefined;
|
|
191
189
|
/**
|
|
190
|
+
* (Optional) Value should be in KWh.
|
|
192
191
|
* @member {Number} capacity
|
|
193
192
|
*/
|
|
194
193
|
|
package/dist/model/Register.js
CHANGED
|
@@ -18,7 +18,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
18
18
|
/**
|
|
19
19
|
* The Register model module.
|
|
20
20
|
* @module model/Register
|
|
21
|
-
* @version 0.
|
|
21
|
+
* @version 0.54.4
|
|
22
22
|
*/
|
|
23
23
|
var Register = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -26,13 +26,14 @@ var Register = /*#__PURE__*/function () {
|
|
|
26
26
|
* @alias module:model/Register
|
|
27
27
|
* @param firstName {String} Required. 150 characters or fewer.
|
|
28
28
|
* @param lastName {String} Required. 150 characters or fewer.
|
|
29
|
+
* @param email {String} Required.
|
|
29
30
|
* @param password1 {String}
|
|
30
31
|
* @param password2 {String}
|
|
31
32
|
*/
|
|
32
|
-
function Register(firstName, lastName, password1, password2) {
|
|
33
|
+
function Register(firstName, lastName, email, password1, password2) {
|
|
33
34
|
_classCallCheck(this, Register);
|
|
34
35
|
|
|
35
|
-
Register.initialize(this, firstName, lastName, password1, password2);
|
|
36
|
+
Register.initialize(this, firstName, lastName, email, password1, password2);
|
|
36
37
|
}
|
|
37
38
|
/**
|
|
38
39
|
* Initializes the fields of this object.
|
|
@@ -43,9 +44,10 @@ var Register = /*#__PURE__*/function () {
|
|
|
43
44
|
|
|
44
45
|
_createClass(Register, null, [{
|
|
45
46
|
key: "initialize",
|
|
46
|
-
value: function initialize(obj, firstName, lastName, password1, password2) {
|
|
47
|
+
value: function initialize(obj, firstName, lastName, email, password1, password2) {
|
|
47
48
|
obj['first_name'] = firstName;
|
|
48
49
|
obj['last_name'] = lastName;
|
|
50
|
+
obj['email'] = email;
|
|
49
51
|
obj['password1'] = password1;
|
|
50
52
|
obj['password2'] = password2;
|
|
51
53
|
}
|
|
@@ -132,12 +134,13 @@ Register.prototype['first_name'] = undefined;
|
|
|
132
134
|
|
|
133
135
|
Register.prototype['last_name'] = undefined;
|
|
134
136
|
/**
|
|
135
|
-
*
|
|
137
|
+
* Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. Default is the user's email.
|
|
136
138
|
* @member {String} username
|
|
137
139
|
*/
|
|
138
140
|
|
|
139
141
|
Register.prototype['username'] = undefined;
|
|
140
142
|
/**
|
|
143
|
+
* Required.
|
|
141
144
|
* @member {String} email
|
|
142
145
|
*/
|
|
143
146
|
|
package/dist/model/Retailer.js
CHANGED