green_link_api 0.49.7 → 0.55.0

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.
Files changed (103) hide show
  1. package/README.md +33 -36
  2. package/dist/ApiClient.js +3 -6
  3. package/dist/api/BlockchainApi.js +283 -0
  4. package/dist/api/EnergyAssetsApi.js +32 -30
  5. package/dist/api/EnergyDataApi.js +139 -40
  6. package/dist/api/HealthCheckApi.js +2 -2
  7. package/dist/api/LicensedProductionSitesOnEpiasApi.js +2 -2
  8. package/dist/api/LocationsApi.js +9 -9
  9. package/dist/api/MaintenanceCheckApi.js +2 -2
  10. package/dist/api/OrganizationprofilesApi.js +7 -7
  11. package/dist/api/OrganizationsApi.js +31 -31
  12. package/dist/api/SchemaApi.js +2 -2
  13. package/dist/api/SentryDebugApi.js +2 -2
  14. package/dist/api/UploadedfilesApi.js +226 -0
  15. package/dist/api/UsersApi.js +13 -230
  16. package/dist/index.js +105 -41
  17. package/dist/model/BlockchainTransaction.js +172 -0
  18. package/dist/model/Consumer.js +1 -1
  19. package/dist/model/ConsumptionDataFileList.js +1 -1
  20. package/dist/model/ConsumptionDataFromRetailer.js +1 -1
  21. package/dist/model/ConsumptionDataPointCreate.js +11 -11
  22. package/dist/model/ConsumptionDataPointListOrDetail.js +20 -13
  23. package/dist/model/ConsumptionDataPointUpdate.js +11 -11
  24. package/dist/model/ConsumptionSite.js +1 -1
  25. package/dist/model/ConsumptionSiteCreate.js +195 -0
  26. package/dist/model/ConsumptionSiteFileUpload.js +1 -1
  27. package/dist/model/ConsumptionSiteFromRetailer.js +1 -1
  28. package/dist/model/ConsumptionSiteListOrDetail.js +1 -1
  29. package/dist/model/ConsumptionSiteMany.js +1 -1
  30. package/dist/model/ContentTypeEnum.js +54 -0
  31. package/dist/model/EmissionFactor.js +1 -1
  32. package/dist/model/EnergySourcePreference.js +1 -1
  33. package/dist/model/GetFromEpias.js +1 -1
  34. package/dist/model/GridOperator.js +1 -1
  35. package/dist/model/Issuer.js +1 -1
  36. package/dist/model/Location.js +1 -1
  37. package/dist/model/Login.js +1 -1
  38. package/dist/model/MatchRequest.js +1 -1
  39. package/dist/model/MatchedEnergyDataPoint.js +12 -13
  40. package/dist/model/MatchingConsumerRequest.js +1 -1
  41. package/dist/model/MatchingSiteRequest.js +1 -1
  42. package/dist/model/PaginatedConsumerList.js +1 -1
  43. package/dist/model/PaginatedConsumptionDataPointListOrDetailList.js +1 -1
  44. package/dist/model/PaginatedConsumptionSiteListOrDetailList.js +1 -1
  45. package/dist/model/PaginatedEmissionFactorList.js +1 -1
  46. package/dist/model/PaginatedEnergySourcePreferenceList.js +1 -1
  47. package/dist/model/PaginatedGridOperatorList.js +1 -1
  48. package/dist/model/PaginatedIssuerList.js +1 -1
  49. package/dist/model/PaginatedLocationList.js +1 -1
  50. package/dist/model/PaginatedMatchRequestList.js +1 -1
  51. package/dist/model/PaginatedMatchedEnergyDataPointList.js +1 -1
  52. package/dist/model/PaginatedProducerList.js +1 -1
  53. package/dist/model/PaginatedProductionDataFromEpiasRequestList.js +104 -0
  54. package/dist/model/PaginatedProductionDataPointListOrDetailList.js +1 -1
  55. package/dist/model/PaginatedProductionSiteListOrDetailList.js +1 -1
  56. package/dist/model/PaginatedRetailerList.js +1 -1
  57. package/dist/model/PaginatedSmartContractList.js +104 -0
  58. package/dist/model/PaginatedUnprocessedRowList.js +104 -0
  59. package/dist/model/PaginatedUploadedFileList.js +104 -0
  60. package/dist/model/PaginatedUserList.js +1 -1
  61. package/dist/model/PatchedConsumer.js +1 -1
  62. package/dist/model/PatchedConsumptionDataPointUpdate.js +11 -11
  63. package/dist/model/PatchedConsumptionSite.js +1 -1
  64. package/dist/model/PatchedEmissionFactor.js +1 -1
  65. package/dist/model/PatchedEnergySourcePreference.js +1 -1
  66. package/dist/model/PatchedGridOperator.js +1 -1
  67. package/dist/model/PatchedIssuer.js +1 -1
  68. package/dist/model/PatchedLocation.js +1 -1
  69. package/dist/model/PatchedProducer.js +1 -1
  70. package/dist/model/PatchedProductionDataPointUpdate.js +12 -12
  71. package/dist/model/PatchedProductionSiteUpdate.js +2 -1
  72. package/dist/model/PatchedRetailer.js +1 -1
  73. package/dist/model/PatchedSmartContract.js +132 -0
  74. package/dist/model/PatchedUser.js +3 -1
  75. package/dist/model/PatchedUserDetail.js +3 -1
  76. package/dist/model/PriorityEnum.js +6 -0
  77. package/dist/model/Producer.js +1 -1
  78. package/dist/model/ProductionDataFileList.js +1 -1
  79. package/dist/model/ProductionDataFromEpiasRequest.js +167 -0
  80. package/dist/model/ProductionDataPointCreate.js +12 -12
  81. package/dist/model/ProductionDataPointListOrDetail.js +21 -14
  82. package/dist/model/ProductionDataPointUpdate.js +12 -12
  83. package/dist/model/ProductionSite.js +5 -6
  84. package/dist/model/ProductionSiteFileUpload.js +1 -1
  85. package/dist/model/ProductionSiteListOrDetail.js +1 -1
  86. package/dist/model/ProductionSiteUpdate.js +5 -6
  87. package/dist/model/Register.js +8 -5
  88. package/dist/model/Retailer.js +1 -1
  89. package/dist/model/SmartContract.js +137 -0
  90. package/dist/model/{VerifyEmail.js → Token.js} +18 -17
  91. package/dist/model/TypeEnum.js +52 -0
  92. package/dist/model/UnprocessedRow.js +140 -0
  93. package/dist/model/UploadedFile.js +166 -0
  94. package/dist/model/User.js +3 -1
  95. package/dist/model/UserDetail.js +3 -1
  96. package/package.json +1 -1
  97. package/dist/model/JWT.js +0 -103
  98. package/dist/model/PasswordChange.js +0 -100
  99. package/dist/model/PasswordReset.js +0 -79
  100. package/dist/model/PasswordResetConfirm.js +0 -112
  101. package/dist/model/RestAuthDetail.js +0 -75
  102. package/dist/model/TokenRefresh.js +0 -87
  103. package/dist/model/TokenVerify.js +0 -78
@@ -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.49.7
23
+ * @version 0.55.0
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.49.7
23
+ * @version 0.55.0
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.49.7
21
+ * @version 0.55.0
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.49.7
23
+ * @version 0.55.0
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.49.7
23
+ * @version 0.55.0
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('production_tx_hash')) {
102
- obj['production_tx_hash'] = _ApiClient["default"].convertToType(data['production_tx_hash'], 'String');
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('token_contract_address')) {
110
- obj['token_contract_address'] = _ApiClient["default"].convertToType(data['token_contract_address'], 'String');
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 consumption is fully matched. Default False.
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
- * Hash of blockchain transaction.
190
- * @member {String} production_tx_hash
191
+ * @member {String} tx
191
192
  */
192
193
 
193
- PatchedProductionDataPointUpdate.prototype['production_tx_hash'] = undefined;
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
- * Token contract address of the minter.
202
- * @member {String} token_contract_address
202
+ * @member {module:model/SmartContract} minter_contract
203
203
  */
204
204
 
205
- PatchedProductionDataPointUpdate.prototype['token_contract_address'] = undefined;
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.49.7
23
+ * @version 0.55.0
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.49.7
23
+ * @version 0.55.0
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.55.0
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.49.7
23
+ * @version 0.55.0
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.49.7
23
+ * @version 0.55.0
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, [{
@@ -20,7 +20,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
20
20
  /**
21
21
  * The Producer model module.
22
22
  * @module model/Producer
23
- * @version 0.49.7
23
+ * @version 0.55.0
24
24
  */
25
25
  var Producer = /*#__PURE__*/function () {
26
26
  /**
@@ -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.49.7
21
+ * @version 0.55.0
22
22
  */
23
23
  var ProductionDataFileList = /*#__PURE__*/function () {
24
24
  /**
@@ -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.55.0
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.49.7
23
+ * @version 0.55.0
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('production_tx_hash')) {
109
- obj['production_tx_hash'] = _ApiClient["default"].convertToType(data['production_tx_hash'], 'String');
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('token_contract_address')) {
117
- obj['token_contract_address'] = _ApiClient["default"].convertToType(data['token_contract_address'], 'String');
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 consumption is fully matched. Default False.
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
- * Hash of blockchain transaction.
197
- * @member {String} production_tx_hash
198
+ * @member {String} tx
198
199
  */
199
200
 
200
- ProductionDataPointCreate.prototype['production_tx_hash'] = undefined;
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
- * Token contract address of the minter.
209
- * @member {String} token_contract_address
209
+ * @member {module:model/SmartContract} minter_contract
210
210
  */
211
211
 
212
- ProductionDataPointCreate.prototype['token_contract_address'] = undefined;
212
+ ProductionDataPointCreate.prototype['minter_contract'] = undefined;
213
213
  /**
214
214
  * @member {Date} created_at
215
215
  */