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
|
@@ -11,8 +11,12 @@ var _ConsumptionSite = _interopRequireDefault(require("../model/ConsumptionSite"
|
|
|
11
11
|
|
|
12
12
|
var _ConsumptionSiteFileUpload = _interopRequireDefault(require("../model/ConsumptionSiteFileUpload"));
|
|
13
13
|
|
|
14
|
+
var _ConsumptionSiteFromRetailer = _interopRequireDefault(require("../model/ConsumptionSiteFromRetailer"));
|
|
15
|
+
|
|
14
16
|
var _ConsumptionSiteListOrDetail = _interopRequireDefault(require("../model/ConsumptionSiteListOrDetail"));
|
|
15
17
|
|
|
18
|
+
var _ConsumptionSiteMany = _interopRequireDefault(require("../model/ConsumptionSiteMany"));
|
|
19
|
+
|
|
16
20
|
var _PaginatedConsumptionSiteListOrDetailList = _interopRequireDefault(require("../model/PaginatedConsumptionSiteListOrDetailList"));
|
|
17
21
|
|
|
18
22
|
var _PaginatedProductionSiteListOrDetailList = _interopRequireDefault(require("../model/PaginatedProductionSiteListOrDetailList"));
|
|
@@ -40,7 +44,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
40
44
|
/**
|
|
41
45
|
* EnergyAssets service.
|
|
42
46
|
* @module api/EnergyAssetsApi
|
|
43
|
-
* @version 0.
|
|
47
|
+
* @version 0.54.4
|
|
44
48
|
*/
|
|
45
49
|
var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
46
50
|
/**
|
|
@@ -84,7 +88,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
84
88
|
var queryParams = {};
|
|
85
89
|
var headerParams = {};
|
|
86
90
|
var formParams = {};
|
|
87
|
-
var authNames = ['
|
|
91
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
88
92
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
89
93
|
var accepts = ['application/json'];
|
|
90
94
|
var returnType = _ConsumptionSite["default"];
|
|
@@ -99,7 +103,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
99
103
|
*/
|
|
100
104
|
|
|
101
105
|
/**
|
|
102
|
-
* **Delete a specific consumption site.** User should be *authenticated* and have an *active* (is_active=True) account. **Note:**
|
|
106
|
+
* **Delete a specific consumption site.** User should be *authenticated* and have an *active* (is_active=True) account. **Note:** Consumption sites should be associated to a consumer managed by the user's organization. **Roles required**: Admin **User employed by an active allowed organization**: Retailer
|
|
103
107
|
* @param {String} id A UUID string identifying this consumption site.
|
|
104
108
|
* @param {module:api/EnergyAssetsApi~energyAssetsConsumptionSitesDestroyCallback} callback The callback function, accepting three arguments: error, data, response
|
|
105
109
|
*/
|
|
@@ -119,12 +123,45 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
119
123
|
var queryParams = {};
|
|
120
124
|
var headerParams = {};
|
|
121
125
|
var formParams = {};
|
|
122
|
-
var authNames = ['
|
|
126
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
123
127
|
var contentTypes = [];
|
|
124
128
|
var accepts = [];
|
|
125
129
|
var returnType = null;
|
|
126
130
|
return this.apiClient.callApi('/energy-assets/consumption-sites/{id}/', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
127
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* Callback function to receive the result of the energyAssetsConsumptionSitesImportDataCreate operation.
|
|
134
|
+
* @callback module:api/EnergyAssetsApi~energyAssetsConsumptionSitesImportDataCreateCallback
|
|
135
|
+
* @param {String} error Error message, if any.
|
|
136
|
+
* @param data This operation does not return a value.
|
|
137
|
+
* @param {String} response The complete HTTP response.
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* **Get Consumption Sites from retailer** User should be *authenticated* and have an *active* (is_active=True) account. **Roles required**: Staff and/or Admin **User employed by an active allowed organization**: Retailer
|
|
142
|
+
* @param {module:model/ConsumptionSiteFromRetailer} consumptionSiteFromRetailer
|
|
143
|
+
* @param {module:api/EnergyAssetsApi~energyAssetsConsumptionSitesImportDataCreateCallback} callback The callback function, accepting three arguments: error, data, response
|
|
144
|
+
*/
|
|
145
|
+
|
|
146
|
+
}, {
|
|
147
|
+
key: "energyAssetsConsumptionSitesImportDataCreate",
|
|
148
|
+
value: function energyAssetsConsumptionSitesImportDataCreate(consumptionSiteFromRetailer, callback) {
|
|
149
|
+
var postBody = consumptionSiteFromRetailer; // verify the required parameter 'consumptionSiteFromRetailer' is set
|
|
150
|
+
|
|
151
|
+
if (consumptionSiteFromRetailer === undefined || consumptionSiteFromRetailer === null) {
|
|
152
|
+
throw new Error("Missing the required parameter 'consumptionSiteFromRetailer' when calling energyAssetsConsumptionSitesImportDataCreate");
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
var pathParams = {};
|
|
156
|
+
var queryParams = {};
|
|
157
|
+
var headerParams = {};
|
|
158
|
+
var formParams = {};
|
|
159
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
160
|
+
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
161
|
+
var accepts = [];
|
|
162
|
+
var returnType = null;
|
|
163
|
+
return this.apiClient.callApi('/energy-assets/consumption-sites/import-data/', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
164
|
+
}
|
|
128
165
|
/**
|
|
129
166
|
* Callback function to receive the result of the energyAssetsConsumptionSitesList operation.
|
|
130
167
|
* @callback module:api/EnergyAssetsApi~energyAssetsConsumptionSitesListCallback
|
|
@@ -178,12 +215,45 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
178
215
|
};
|
|
179
216
|
var headerParams = {};
|
|
180
217
|
var formParams = {};
|
|
181
|
-
var authNames = ['
|
|
218
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
182
219
|
var contentTypes = [];
|
|
183
220
|
var accepts = ['application/json'];
|
|
184
221
|
var returnType = _PaginatedConsumptionSiteListOrDetailList["default"];
|
|
185
222
|
return this.apiClient.callApi('/energy-assets/consumption-sites/', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
186
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* Callback function to receive the result of the energyAssetsConsumptionSitesManyCreate operation.
|
|
226
|
+
* @callback module:api/EnergyAssetsApi~energyAssetsConsumptionSitesManyCreateCallback
|
|
227
|
+
* @param {String} error Error message, if any.
|
|
228
|
+
* @param data This operation does not return a value.
|
|
229
|
+
* @param {String} response The complete HTTP response.
|
|
230
|
+
*/
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* **Add multiple consumption sites** User should be *authenticated* and have an *active* (is_active=True) account. **Note:** Consumption sites should be added to a consumer managed by the user's organization. **Roles required**: Staff and/or Admin **User employed by an active allowed organization**: Retailer
|
|
234
|
+
* @param {Array.<module:model/ConsumptionSiteMany>} consumptionSiteMany
|
|
235
|
+
* @param {module:api/EnergyAssetsApi~energyAssetsConsumptionSitesManyCreateCallback} callback The callback function, accepting three arguments: error, data, response
|
|
236
|
+
*/
|
|
237
|
+
|
|
238
|
+
}, {
|
|
239
|
+
key: "energyAssetsConsumptionSitesManyCreate",
|
|
240
|
+
value: function energyAssetsConsumptionSitesManyCreate(consumptionSiteMany, callback) {
|
|
241
|
+
var postBody = consumptionSiteMany; // verify the required parameter 'consumptionSiteMany' is set
|
|
242
|
+
|
|
243
|
+
if (consumptionSiteMany === undefined || consumptionSiteMany === null) {
|
|
244
|
+
throw new Error("Missing the required parameter 'consumptionSiteMany' when calling energyAssetsConsumptionSitesManyCreate");
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
var pathParams = {};
|
|
248
|
+
var queryParams = {};
|
|
249
|
+
var headerParams = {};
|
|
250
|
+
var formParams = {};
|
|
251
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
252
|
+
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
253
|
+
var accepts = [];
|
|
254
|
+
var returnType = null;
|
|
255
|
+
return this.apiClient.callApi('/energy-assets/consumption-sites/many/', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
256
|
+
}
|
|
187
257
|
/**
|
|
188
258
|
* Callback function to receive the result of the energyAssetsConsumptionSitesPartialUpdate operation.
|
|
189
259
|
* @callback module:api/EnergyAssetsApi~energyAssetsConsumptionSitesPartialUpdateCallback
|
|
@@ -217,7 +287,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
217
287
|
var queryParams = {};
|
|
218
288
|
var headerParams = {};
|
|
219
289
|
var formParams = {};
|
|
220
|
-
var authNames = ['
|
|
290
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
221
291
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
222
292
|
var accepts = ['application/json'];
|
|
223
293
|
var returnType = _ConsumptionSite["default"];
|
|
@@ -253,7 +323,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
253
323
|
var queryParams = {};
|
|
254
324
|
var headerParams = {};
|
|
255
325
|
var formParams = {};
|
|
256
|
-
var authNames = ['
|
|
326
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
257
327
|
var contentTypes = [];
|
|
258
328
|
var accepts = ['application/json'];
|
|
259
329
|
var returnType = _ConsumptionSiteListOrDetail["default"];
|
|
@@ -295,7 +365,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
295
365
|
var queryParams = {};
|
|
296
366
|
var headerParams = {};
|
|
297
367
|
var formParams = {};
|
|
298
|
-
var authNames = ['
|
|
368
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
299
369
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
300
370
|
var accepts = ['application/json'];
|
|
301
371
|
var returnType = _ConsumptionSite["default"];
|
|
@@ -310,7 +380,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
310
380
|
*/
|
|
311
381
|
|
|
312
382
|
/**
|
|
313
|
-
* **Add consumption sites by uploading an Excel file .** User should be *authenticated* and have an *active* (is_active=True) account. **Note:**
|
|
383
|
+
* **Add consumption sites by uploading an Excel file .** User should be *authenticated* and have an *active* (is_active=True) account. **Note:** Consumption sites should be associated to a consumer managed by the user's organization. **Roles required**: Staff and/or Admin **User employed by an active allowed organization**: Retailer
|
|
314
384
|
* @param {module:model/ConsumptionSiteFileUpload} consumptionSiteFileUpload
|
|
315
385
|
* @param {module:api/EnergyAssetsApi~energyAssetsConsumptionSitesUploadFileCreateCallback} callback The callback function, accepting three arguments: error, data, response
|
|
316
386
|
* data is of type: {@link module:model/ConsumptionSite}
|
|
@@ -329,7 +399,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
329
399
|
var queryParams = {};
|
|
330
400
|
var headerParams = {};
|
|
331
401
|
var formParams = {};
|
|
332
|
-
var authNames = ['
|
|
402
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
333
403
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
334
404
|
var accepts = ['application/json'];
|
|
335
405
|
var returnType = _ConsumptionSite["default"];
|
|
@@ -363,7 +433,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
363
433
|
var queryParams = {};
|
|
364
434
|
var headerParams = {};
|
|
365
435
|
var formParams = {};
|
|
366
|
-
var authNames = ['
|
|
436
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
367
437
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
368
438
|
var accepts = ['application/json'];
|
|
369
439
|
var returnType = _ProductionSite["default"];
|
|
@@ -378,7 +448,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
378
448
|
*/
|
|
379
449
|
|
|
380
450
|
/**
|
|
381
|
-
* **Delete a specific production site.** User should be *authenticated* and have an *active* (is_active=True) account. **Note:**
|
|
451
|
+
* **Delete a specific production site.** User should be *authenticated* and have an *active* (is_active=True) account. **Note:** Production sites should be associated to a producer managed by the user's organization. **Roles required**: Admin **User employed by an active allowed organization**: Grid Operator
|
|
382
452
|
* @param {String} id A UUID string identifying this production site.
|
|
383
453
|
* @param {module:api/EnergyAssetsApi~energyAssetsProductionSitesDestroyCallback} callback The callback function, accepting three arguments: error, data, response
|
|
384
454
|
*/
|
|
@@ -398,7 +468,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
398
468
|
var queryParams = {};
|
|
399
469
|
var headerParams = {};
|
|
400
470
|
var formParams = {};
|
|
401
|
-
var authNames = ['
|
|
471
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
402
472
|
var contentTypes = [];
|
|
403
473
|
var accepts = [];
|
|
404
474
|
var returnType = null;
|
|
@@ -467,7 +537,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
467
537
|
};
|
|
468
538
|
var headerParams = {};
|
|
469
539
|
var formParams = {};
|
|
470
|
-
var authNames = ['
|
|
540
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
471
541
|
var contentTypes = [];
|
|
472
542
|
var accepts = ['application/json'];
|
|
473
543
|
var returnType = _PaginatedProductionSiteListOrDetailList["default"];
|
|
@@ -506,7 +576,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
506
576
|
var queryParams = {};
|
|
507
577
|
var headerParams = {};
|
|
508
578
|
var formParams = {};
|
|
509
|
-
var authNames = ['
|
|
579
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
510
580
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
511
581
|
var accepts = ['application/json'];
|
|
512
582
|
var returnType = _ProductionSiteUpdate["default"];
|
|
@@ -542,7 +612,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
542
612
|
var queryParams = {};
|
|
543
613
|
var headerParams = {};
|
|
544
614
|
var formParams = {};
|
|
545
|
-
var authNames = ['
|
|
615
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
546
616
|
var contentTypes = [];
|
|
547
617
|
var accepts = ['application/json'];
|
|
548
618
|
var returnType = _ProductionSiteListOrDetail["default"];
|
|
@@ -557,7 +627,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
557
627
|
*/
|
|
558
628
|
|
|
559
629
|
/**
|
|
560
|
-
* **Upsert a specific production site.** User should be *authenticated* and have an *active* (is_active=True) account. Note
|
|
630
|
+
* **Upsert a specific production site.** User should be *authenticated* and have an *active* (is_active=True) account. **Note:** Production sites should be associated to a producer managed by the user's organization. **Roles required**: Staff and/or Admin **User employed by an active allowed organization**: Grid Operator
|
|
561
631
|
* @param {String} id A UUID string identifying this production site.
|
|
562
632
|
* @param {module:model/ProductionSiteUpdate} productionSiteUpdate
|
|
563
633
|
* @param {module:api/EnergyAssetsApi~energyAssetsProductionSitesUpdateCallback} callback The callback function, accepting three arguments: error, data, response
|
|
@@ -584,7 +654,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
584
654
|
var queryParams = {};
|
|
585
655
|
var headerParams = {};
|
|
586
656
|
var formParams = {};
|
|
587
|
-
var authNames = ['
|
|
657
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
588
658
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
589
659
|
var accepts = ['application/json'];
|
|
590
660
|
var returnType = _ProductionSiteUpdate["default"];
|
|
@@ -618,7 +688,7 @@ var EnergyAssetsApi = /*#__PURE__*/function () {
|
|
|
618
688
|
var queryParams = {};
|
|
619
689
|
var headerParams = {};
|
|
620
690
|
var formParams = {};
|
|
621
|
-
var authNames = ['
|
|
691
|
+
var authNames = ['jwtAuth', 'tokenAuth'];
|
|
622
692
|
var contentTypes = ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'];
|
|
623
693
|
var accepts = ['application/json'];
|
|
624
694
|
var returnType = _ProductionSite["default"];
|