@ourskyai/platform-api 1.3.8106 → 1.3.8639
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 +2 -2
- package/api.ts +768 -46
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +475 -22
- package/dist/api.js +416 -18
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +475 -22
- package/dist/esm/api.js +415 -17
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -271,6 +271,17 @@ export const V1ImageRejectionReason = {
|
|
|
271
271
|
MISSING_IMG_WIDTH_HEADER: 'MISSING_IMG_WIDTH_HEADER',
|
|
272
272
|
UNKNOWN_ERROR: 'UNKNOWN_ERROR'
|
|
273
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
*
|
|
276
|
+
* @export
|
|
277
|
+
* @enum {string}
|
|
278
|
+
*/
|
|
279
|
+
export const V1JobStatus = {
|
|
280
|
+
PENDING: 'PENDING',
|
|
281
|
+
RUNNING: 'RUNNING',
|
|
282
|
+
SUCCEEDED: 'SUCCEEDED',
|
|
283
|
+
FAILED: 'FAILED'
|
|
284
|
+
};
|
|
274
285
|
/**
|
|
275
286
|
*
|
|
276
287
|
* @export
|
|
@@ -406,6 +417,82 @@ export const V1TimeWindowedAssetType = {
|
|
|
406
417
|
*/
|
|
407
418
|
export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
408
419
|
return {
|
|
420
|
+
/**
|
|
421
|
+
* Get edge controller crash report details
|
|
422
|
+
* @param {string} id
|
|
423
|
+
* @param {*} [options] Override http request option.
|
|
424
|
+
* @throws {RequiredError}
|
|
425
|
+
*/
|
|
426
|
+
adminV1GetNodeControllerCrashReport: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
427
|
+
// verify required parameter 'id' is not null or undefined
|
|
428
|
+
assertParamExists('adminV1GetNodeControllerCrashReport', 'id', id);
|
|
429
|
+
const localVarPath = `/v1/node-controller/crash-report`;
|
|
430
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
431
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
432
|
+
let baseOptions;
|
|
433
|
+
if (configuration) {
|
|
434
|
+
baseOptions = configuration.baseOptions;
|
|
435
|
+
}
|
|
436
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
437
|
+
const localVarHeaderParameter = {};
|
|
438
|
+
const localVarQueryParameter = {};
|
|
439
|
+
// authentication Roles required
|
|
440
|
+
// authentication BearerToken required
|
|
441
|
+
// http bearer authentication required
|
|
442
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
443
|
+
if (id !== undefined) {
|
|
444
|
+
localVarQueryParameter['id'] = id;
|
|
445
|
+
}
|
|
446
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
447
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
448
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
449
|
+
return {
|
|
450
|
+
url: toPathString(localVarUrlObj),
|
|
451
|
+
options: localVarRequestOptions,
|
|
452
|
+
};
|
|
453
|
+
}),
|
|
454
|
+
/**
|
|
455
|
+
* Get edge controller crash reports around a specific timeframe
|
|
456
|
+
* @param {string} lineageId
|
|
457
|
+
* @param {string} time
|
|
458
|
+
* @param {*} [options] Override http request option.
|
|
459
|
+
* @throws {RequiredError}
|
|
460
|
+
*/
|
|
461
|
+
adminV1GetNodeControllerCrashReportsAtTime: (lineageId, time, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
462
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
463
|
+
assertParamExists('adminV1GetNodeControllerCrashReportsAtTime', 'lineageId', lineageId);
|
|
464
|
+
// verify required parameter 'time' is not null or undefined
|
|
465
|
+
assertParamExists('adminV1GetNodeControllerCrashReportsAtTime', 'time', time);
|
|
466
|
+
const localVarPath = `/v1/node-controller/crash-reports-at-time`;
|
|
467
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
468
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
469
|
+
let baseOptions;
|
|
470
|
+
if (configuration) {
|
|
471
|
+
baseOptions = configuration.baseOptions;
|
|
472
|
+
}
|
|
473
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
474
|
+
const localVarHeaderParameter = {};
|
|
475
|
+
const localVarQueryParameter = {};
|
|
476
|
+
// authentication Roles required
|
|
477
|
+
// authentication BearerToken required
|
|
478
|
+
// http bearer authentication required
|
|
479
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
480
|
+
if (lineageId !== undefined) {
|
|
481
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
482
|
+
}
|
|
483
|
+
if (time !== undefined) {
|
|
484
|
+
localVarQueryParameter['time'] = (time instanceof Date) ?
|
|
485
|
+
time.toISOString() :
|
|
486
|
+
time;
|
|
487
|
+
}
|
|
488
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
489
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
490
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
491
|
+
return {
|
|
492
|
+
url: toPathString(localVarUrlObj),
|
|
493
|
+
options: localVarRequestOptions,
|
|
494
|
+
};
|
|
495
|
+
}),
|
|
409
496
|
/**
|
|
410
497
|
* Get images for a node for display in a camera roll format
|
|
411
498
|
* @param {string} [nodeId]
|
|
@@ -568,6 +655,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
568
655
|
options: localVarRequestOptions,
|
|
569
656
|
};
|
|
570
657
|
}),
|
|
658
|
+
/**
|
|
659
|
+
* Complete a crash report.
|
|
660
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
661
|
+
* @param {*} [options] Override http request option.
|
|
662
|
+
* @throws {RequiredError}
|
|
663
|
+
*/
|
|
664
|
+
v1CompleteNodeControllerCrashReport: (v1CompleteNodeControllerCrashReportRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
665
|
+
// verify required parameter 'v1CompleteNodeControllerCrashReportRequest' is not null or undefined
|
|
666
|
+
assertParamExists('v1CompleteNodeControllerCrashReport', 'v1CompleteNodeControllerCrashReportRequest', v1CompleteNodeControllerCrashReportRequest);
|
|
667
|
+
const localVarPath = `/v1/node-controller/complete-crash-report`;
|
|
668
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
669
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
670
|
+
let baseOptions;
|
|
671
|
+
if (configuration) {
|
|
672
|
+
baseOptions = configuration.baseOptions;
|
|
673
|
+
}
|
|
674
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
675
|
+
const localVarHeaderParameter = {};
|
|
676
|
+
const localVarQueryParameter = {};
|
|
677
|
+
// authentication Roles required
|
|
678
|
+
// authentication BearerToken required
|
|
679
|
+
// http bearer authentication required
|
|
680
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
681
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
682
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
683
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
684
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
685
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CompleteNodeControllerCrashReportRequest, localVarRequestOptions, configuration);
|
|
686
|
+
return {
|
|
687
|
+
url: toPathString(localVarUrlObj),
|
|
688
|
+
options: localVarRequestOptions,
|
|
689
|
+
};
|
|
690
|
+
}),
|
|
571
691
|
/**
|
|
572
692
|
* Complete a node flare.
|
|
573
693
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -993,6 +1113,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
993
1113
|
options: localVarRequestOptions,
|
|
994
1114
|
};
|
|
995
1115
|
}),
|
|
1116
|
+
/**
|
|
1117
|
+
* create a crash report record
|
|
1118
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
1119
|
+
* @param {*} [options] Override http request option.
|
|
1120
|
+
* @throws {RequiredError}
|
|
1121
|
+
*/
|
|
1122
|
+
v1CreateNodeControllerCrashReport: (v1CreateNodeControllerCrashReportRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1123
|
+
// verify required parameter 'v1CreateNodeControllerCrashReportRequest' is not null or undefined
|
|
1124
|
+
assertParamExists('v1CreateNodeControllerCrashReport', 'v1CreateNodeControllerCrashReportRequest', v1CreateNodeControllerCrashReportRequest);
|
|
1125
|
+
const localVarPath = `/v1/node-controller/crash-report`;
|
|
1126
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1127
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1128
|
+
let baseOptions;
|
|
1129
|
+
if (configuration) {
|
|
1130
|
+
baseOptions = configuration.baseOptions;
|
|
1131
|
+
}
|
|
1132
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1133
|
+
const localVarHeaderParameter = {};
|
|
1134
|
+
const localVarQueryParameter = {};
|
|
1135
|
+
// authentication Roles required
|
|
1136
|
+
// authentication BearerToken required
|
|
1137
|
+
// http bearer authentication required
|
|
1138
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1139
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1140
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1141
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1142
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1143
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeControllerCrashReportRequest, localVarRequestOptions, configuration);
|
|
1144
|
+
return {
|
|
1145
|
+
url: toPathString(localVarUrlObj),
|
|
1146
|
+
options: localVarRequestOptions,
|
|
1147
|
+
};
|
|
1148
|
+
}),
|
|
996
1149
|
/**
|
|
997
1150
|
* Create node diagnostics.
|
|
998
1151
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -2032,6 +2185,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2032
2185
|
options: localVarRequestOptions,
|
|
2033
2186
|
};
|
|
2034
2187
|
}),
|
|
2188
|
+
/**
|
|
2189
|
+
* Get OTA encryption result
|
|
2190
|
+
* @param {string} id
|
|
2191
|
+
* @param {*} [options] Override http request option.
|
|
2192
|
+
* @throws {RequiredError}
|
|
2193
|
+
*/
|
|
2194
|
+
v1GetOTAEncryption: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2195
|
+
// verify required parameter 'id' is not null or undefined
|
|
2196
|
+
assertParamExists('v1GetOTAEncryption', 'id', id);
|
|
2197
|
+
const localVarPath = `/v1/encrypt-ota`;
|
|
2198
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2199
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2200
|
+
let baseOptions;
|
|
2201
|
+
if (configuration) {
|
|
2202
|
+
baseOptions = configuration.baseOptions;
|
|
2203
|
+
}
|
|
2204
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2205
|
+
const localVarHeaderParameter = {};
|
|
2206
|
+
const localVarQueryParameter = {};
|
|
2207
|
+
// authentication Roles required
|
|
2208
|
+
// authentication BearerToken required
|
|
2209
|
+
// http bearer authentication required
|
|
2210
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2211
|
+
if (id !== undefined) {
|
|
2212
|
+
localVarQueryParameter['id'] = id;
|
|
2213
|
+
}
|
|
2214
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2215
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2216
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2217
|
+
return {
|
|
2218
|
+
url: toPathString(localVarUrlObj),
|
|
2219
|
+
options: localVarRequestOptions,
|
|
2220
|
+
};
|
|
2221
|
+
}),
|
|
2035
2222
|
/**
|
|
2036
2223
|
* Get an optical tube.
|
|
2037
2224
|
* @param {string} id
|
|
@@ -2261,13 +2448,10 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2261
2448
|
}),
|
|
2262
2449
|
/**
|
|
2263
2450
|
* Get the target QCOM OTA software release for a node
|
|
2264
|
-
* @param {string} lineageId lineage id
|
|
2265
2451
|
* @param {*} [options] Override http request option.
|
|
2266
2452
|
* @throws {RequiredError}
|
|
2267
2453
|
*/
|
|
2268
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode: (
|
|
2269
|
-
// verify required parameter 'lineageId' is not null or undefined
|
|
2270
|
-
assertParamExists('v1GetTargetQCOMOTASoftwareReleaseForNode', 'lineageId', lineageId);
|
|
2454
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2271
2455
|
const localVarPath = `/v1/node-controller-releases`;
|
|
2272
2456
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2273
2457
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2282,9 +2466,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2282
2466
|
// authentication BearerToken required
|
|
2283
2467
|
// http bearer authentication required
|
|
2284
2468
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2285
|
-
if (lineageId !== undefined) {
|
|
2286
|
-
localVarQueryParameter['lineageId'] = lineageId;
|
|
2287
|
-
}
|
|
2288
2469
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2289
2470
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2290
2471
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -2687,6 +2868,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2687
2868
|
options: localVarRequestOptions,
|
|
2688
2869
|
};
|
|
2689
2870
|
}),
|
|
2871
|
+
/**
|
|
2872
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
2873
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
2874
|
+
* @param {*} [options] Override http request option.
|
|
2875
|
+
* @throws {RequiredError}
|
|
2876
|
+
*/
|
|
2877
|
+
v1StartOTAEncryptionLatest: (v1OTAEncryptionRequestLatest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2878
|
+
// verify required parameter 'v1OTAEncryptionRequestLatest' is not null or undefined
|
|
2879
|
+
assertParamExists('v1StartOTAEncryptionLatest', 'v1OTAEncryptionRequestLatest', v1OTAEncryptionRequestLatest);
|
|
2880
|
+
const localVarPath = `/v1/encrypt-ota`;
|
|
2881
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2882
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2883
|
+
let baseOptions;
|
|
2884
|
+
if (configuration) {
|
|
2885
|
+
baseOptions = configuration.baseOptions;
|
|
2886
|
+
}
|
|
2887
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
2888
|
+
const localVarHeaderParameter = {};
|
|
2889
|
+
const localVarQueryParameter = {};
|
|
2890
|
+
// authentication Roles required
|
|
2891
|
+
// authentication BearerToken required
|
|
2892
|
+
// http bearer authentication required
|
|
2893
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2894
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2895
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2896
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2897
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2898
|
+
localVarRequestOptions.data = serializeDataIfNeeded(v1OTAEncryptionRequestLatest, localVarRequestOptions, configuration);
|
|
2899
|
+
return {
|
|
2900
|
+
url: toPathString(localVarUrlObj),
|
|
2901
|
+
options: localVarRequestOptions,
|
|
2902
|
+
};
|
|
2903
|
+
}),
|
|
2690
2904
|
/**
|
|
2691
2905
|
* Update a mount.
|
|
2692
2906
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -2890,6 +3104,31 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2890
3104
|
export const DefaultApiFp = function (configuration) {
|
|
2891
3105
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration);
|
|
2892
3106
|
return {
|
|
3107
|
+
/**
|
|
3108
|
+
* Get edge controller crash report details
|
|
3109
|
+
* @param {string} id
|
|
3110
|
+
* @param {*} [options] Override http request option.
|
|
3111
|
+
* @throws {RequiredError}
|
|
3112
|
+
*/
|
|
3113
|
+
adminV1GetNodeControllerCrashReport(id, options) {
|
|
3114
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3115
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1GetNodeControllerCrashReport(id, options);
|
|
3116
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3117
|
+
});
|
|
3118
|
+
},
|
|
3119
|
+
/**
|
|
3120
|
+
* Get edge controller crash reports around a specific timeframe
|
|
3121
|
+
* @param {string} lineageId
|
|
3122
|
+
* @param {string} time
|
|
3123
|
+
* @param {*} [options] Override http request option.
|
|
3124
|
+
* @throws {RequiredError}
|
|
3125
|
+
*/
|
|
3126
|
+
adminV1GetNodeControllerCrashReportsAtTime(lineageId, time, options) {
|
|
3127
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3128
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1GetNodeControllerCrashReportsAtTime(lineageId, time, options);
|
|
3129
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3130
|
+
});
|
|
3131
|
+
},
|
|
2893
3132
|
/**
|
|
2894
3133
|
* Get images for a node for display in a camera roll format
|
|
2895
3134
|
* @param {string} [nodeId]
|
|
@@ -2946,6 +3185,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
2946
3185
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2947
3186
|
});
|
|
2948
3187
|
},
|
|
3188
|
+
/**
|
|
3189
|
+
* Complete a crash report.
|
|
3190
|
+
* @param {V1CompleteNodeControllerCrashReportRequest} v1CompleteNodeControllerCrashReportRequest
|
|
3191
|
+
* @param {*} [options] Override http request option.
|
|
3192
|
+
* @throws {RequiredError}
|
|
3193
|
+
*/
|
|
3194
|
+
v1CompleteNodeControllerCrashReport(v1CompleteNodeControllerCrashReportRequest, options) {
|
|
3195
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3196
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CompleteNodeControllerCrashReport(v1CompleteNodeControllerCrashReportRequest, options);
|
|
3197
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3198
|
+
});
|
|
3199
|
+
},
|
|
2949
3200
|
/**
|
|
2950
3201
|
* Complete a node flare.
|
|
2951
3202
|
* @param {V1CompleteNodeFlareRequest} v1CompleteNodeFlareRequest
|
|
@@ -3102,6 +3353,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
3102
3353
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3103
3354
|
});
|
|
3104
3355
|
},
|
|
3356
|
+
/**
|
|
3357
|
+
* create a crash report record
|
|
3358
|
+
* @param {V1CreateNodeControllerCrashReportRequest} v1CreateNodeControllerCrashReportRequest
|
|
3359
|
+
* @param {*} [options] Override http request option.
|
|
3360
|
+
* @throws {RequiredError}
|
|
3361
|
+
*/
|
|
3362
|
+
v1CreateNodeControllerCrashReport(v1CreateNodeControllerCrashReportRequest, options) {
|
|
3363
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3364
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeControllerCrashReport(v1CreateNodeControllerCrashReportRequest, options);
|
|
3365
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3366
|
+
});
|
|
3367
|
+
},
|
|
3105
3368
|
/**
|
|
3106
3369
|
* Create node diagnostics.
|
|
3107
3370
|
* @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
|
|
@@ -3469,6 +3732,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
3469
3732
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3470
3733
|
});
|
|
3471
3734
|
},
|
|
3735
|
+
/**
|
|
3736
|
+
* Get OTA encryption result
|
|
3737
|
+
* @param {string} id
|
|
3738
|
+
* @param {*} [options] Override http request option.
|
|
3739
|
+
* @throws {RequiredError}
|
|
3740
|
+
*/
|
|
3741
|
+
v1GetOTAEncryption(id, options) {
|
|
3742
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3743
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOTAEncryption(id, options);
|
|
3744
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3745
|
+
});
|
|
3746
|
+
},
|
|
3472
3747
|
/**
|
|
3473
3748
|
* Get an optical tube.
|
|
3474
3749
|
* @param {string} id
|
|
@@ -3554,13 +3829,12 @@ export const DefaultApiFp = function (configuration) {
|
|
|
3554
3829
|
},
|
|
3555
3830
|
/**
|
|
3556
3831
|
* Get the target QCOM OTA software release for a node
|
|
3557
|
-
* @param {string} lineageId lineage id
|
|
3558
3832
|
* @param {*} [options] Override http request option.
|
|
3559
3833
|
* @throws {RequiredError}
|
|
3560
3834
|
*/
|
|
3561
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
3835
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options) {
|
|
3562
3836
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3563
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
3837
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetTargetQCOMOTASoftwareReleaseForNode(options);
|
|
3564
3838
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3565
3839
|
});
|
|
3566
3840
|
},
|
|
@@ -3713,6 +3987,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
3713
3987
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3714
3988
|
});
|
|
3715
3989
|
},
|
|
3990
|
+
/**
|
|
3991
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
3992
|
+
* @param {V1OTAEncryptionRequestLatest} v1OTAEncryptionRequestLatest
|
|
3993
|
+
* @param {*} [options] Override http request option.
|
|
3994
|
+
* @throws {RequiredError}
|
|
3995
|
+
*/
|
|
3996
|
+
v1StartOTAEncryptionLatest(v1OTAEncryptionRequestLatest, options) {
|
|
3997
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3998
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1StartOTAEncryptionLatest(v1OTAEncryptionRequestLatest, options);
|
|
3999
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4000
|
+
});
|
|
4001
|
+
},
|
|
3716
4002
|
/**
|
|
3717
4003
|
* Update a mount.
|
|
3718
4004
|
* @param {V1UpdateMountRequest} v1UpdateMountRequest
|
|
@@ -3794,6 +4080,24 @@ export const DefaultApiFp = function (configuration) {
|
|
|
3794
4080
|
export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
3795
4081
|
const localVarFp = DefaultApiFp(configuration);
|
|
3796
4082
|
return {
|
|
4083
|
+
/**
|
|
4084
|
+
* Get edge controller crash report details
|
|
4085
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
4086
|
+
* @param {*} [options] Override http request option.
|
|
4087
|
+
* @throws {RequiredError}
|
|
4088
|
+
*/
|
|
4089
|
+
adminV1GetNodeControllerCrashReport(requestParameters, options) {
|
|
4090
|
+
return localVarFp.adminV1GetNodeControllerCrashReport(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4091
|
+
},
|
|
4092
|
+
/**
|
|
4093
|
+
* Get edge controller crash reports around a specific timeframe
|
|
4094
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
4095
|
+
* @param {*} [options] Override http request option.
|
|
4096
|
+
* @throws {RequiredError}
|
|
4097
|
+
*/
|
|
4098
|
+
adminV1GetNodeControllerCrashReportsAtTime(requestParameters, options) {
|
|
4099
|
+
return localVarFp.adminV1GetNodeControllerCrashReportsAtTime(requestParameters.lineageId, requestParameters.time, options).then((request) => request(axios, basePath));
|
|
4100
|
+
},
|
|
3797
4101
|
/**
|
|
3798
4102
|
* Get images for a node for display in a camera roll format
|
|
3799
4103
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -3828,6 +4132,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3828
4132
|
v1CompleteBootstrap(options) {
|
|
3829
4133
|
return localVarFp.v1CompleteBootstrap(options).then((request) => request(axios, basePath));
|
|
3830
4134
|
},
|
|
4135
|
+
/**
|
|
4136
|
+
* Complete a crash report.
|
|
4137
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
4138
|
+
* @param {*} [options] Override http request option.
|
|
4139
|
+
* @throws {RequiredError}
|
|
4140
|
+
*/
|
|
4141
|
+
v1CompleteNodeControllerCrashReport(requestParameters, options) {
|
|
4142
|
+
return localVarFp.v1CompleteNodeControllerCrashReport(requestParameters.v1CompleteNodeControllerCrashReportRequest, options).then((request) => request(axios, basePath));
|
|
4143
|
+
},
|
|
3831
4144
|
/**
|
|
3832
4145
|
* Complete a node flare.
|
|
3833
4146
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -3945,6 +4258,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3945
4258
|
v1CreateNodeControllerArtifact(requestParameters, options) {
|
|
3946
4259
|
return localVarFp.v1CreateNodeControllerArtifact(requestParameters.v1CreateNodeControllerArtifactRequest, options).then((request) => request(axios, basePath));
|
|
3947
4260
|
},
|
|
4261
|
+
/**
|
|
4262
|
+
* create a crash report record
|
|
4263
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
4264
|
+
* @param {*} [options] Override http request option.
|
|
4265
|
+
* @throws {RequiredError}
|
|
4266
|
+
*/
|
|
4267
|
+
v1CreateNodeControllerCrashReport(requestParameters, options) {
|
|
4268
|
+
return localVarFp.v1CreateNodeControllerCrashReport(requestParameters.v1CreateNodeControllerCrashReportRequest, options).then((request) => request(axios, basePath));
|
|
4269
|
+
},
|
|
3948
4270
|
/**
|
|
3949
4271
|
* Create node diagnostics.
|
|
3950
4272
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -4213,6 +4535,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
4213
4535
|
v1GetNodes(options) {
|
|
4214
4536
|
return localVarFp.v1GetNodes(options).then((request) => request(axios, basePath));
|
|
4215
4537
|
},
|
|
4538
|
+
/**
|
|
4539
|
+
* Get OTA encryption result
|
|
4540
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
4541
|
+
* @param {*} [options] Override http request option.
|
|
4542
|
+
* @throws {RequiredError}
|
|
4543
|
+
*/
|
|
4544
|
+
v1GetOTAEncryption(requestParameters, options) {
|
|
4545
|
+
return localVarFp.v1GetOTAEncryption(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4546
|
+
},
|
|
4216
4547
|
/**
|
|
4217
4548
|
* Get an optical tube.
|
|
4218
4549
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -4277,12 +4608,11 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
4277
4608
|
},
|
|
4278
4609
|
/**
|
|
4279
4610
|
* Get the target QCOM OTA software release for a node
|
|
4280
|
-
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
4281
4611
|
* @param {*} [options] Override http request option.
|
|
4282
4612
|
* @throws {RequiredError}
|
|
4283
4613
|
*/
|
|
4284
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
4285
|
-
return localVarFp.v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
4614
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options) {
|
|
4615
|
+
return localVarFp.v1GetTargetQCOMOTASoftwareReleaseForNode(options).then((request) => request(axios, basePath));
|
|
4286
4616
|
},
|
|
4287
4617
|
/**
|
|
4288
4618
|
* Get the target software releases for a node
|
|
@@ -4395,6 +4725,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
4395
4725
|
v1RequestMacAddresses(requestParameters, options) {
|
|
4396
4726
|
return localVarFp.v1RequestMacAddresses(requestParameters.v1RequestMacAddressesRequest, options).then((request) => request(axios, basePath));
|
|
4397
4727
|
},
|
|
4728
|
+
/**
|
|
4729
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
4730
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
4731
|
+
* @param {*} [options] Override http request option.
|
|
4732
|
+
* @throws {RequiredError}
|
|
4733
|
+
*/
|
|
4734
|
+
v1StartOTAEncryptionLatest(requestParameters, options) {
|
|
4735
|
+
return localVarFp.v1StartOTAEncryptionLatest(requestParameters.v1OTAEncryptionRequestLatest, options).then((request) => request(axios, basePath));
|
|
4736
|
+
},
|
|
4398
4737
|
/**
|
|
4399
4738
|
* Update a mount.
|
|
4400
4739
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
|
@@ -4458,6 +4797,26 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
4458
4797
|
* @extends {BaseAPI}
|
|
4459
4798
|
*/
|
|
4460
4799
|
export class DefaultApi extends BaseAPI {
|
|
4800
|
+
/**
|
|
4801
|
+
* Get edge controller crash report details
|
|
4802
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
4803
|
+
* @param {*} [options] Override http request option.
|
|
4804
|
+
* @throws {RequiredError}
|
|
4805
|
+
* @memberof DefaultApi
|
|
4806
|
+
*/
|
|
4807
|
+
adminV1GetNodeControllerCrashReport(requestParameters, options) {
|
|
4808
|
+
return DefaultApiFp(this.configuration).adminV1GetNodeControllerCrashReport(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
4809
|
+
}
|
|
4810
|
+
/**
|
|
4811
|
+
* Get edge controller crash reports around a specific timeframe
|
|
4812
|
+
* @param {DefaultApiAdminV1GetNodeControllerCrashReportsAtTimeRequest} requestParameters Request parameters.
|
|
4813
|
+
* @param {*} [options] Override http request option.
|
|
4814
|
+
* @throws {RequiredError}
|
|
4815
|
+
* @memberof DefaultApi
|
|
4816
|
+
*/
|
|
4817
|
+
adminV1GetNodeControllerCrashReportsAtTime(requestParameters, options) {
|
|
4818
|
+
return DefaultApiFp(this.configuration).adminV1GetNodeControllerCrashReportsAtTime(requestParameters.lineageId, requestParameters.time, options).then((request) => request(this.axios, this.basePath));
|
|
4819
|
+
}
|
|
4461
4820
|
/**
|
|
4462
4821
|
* Get images for a node for display in a camera roll format
|
|
4463
4822
|
* @param {DefaultApiGetCameraRollRequest} requestParameters Request parameters.
|
|
@@ -4496,6 +4855,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
4496
4855
|
v1CompleteBootstrap(options) {
|
|
4497
4856
|
return DefaultApiFp(this.configuration).v1CompleteBootstrap(options).then((request) => request(this.axios, this.basePath));
|
|
4498
4857
|
}
|
|
4858
|
+
/**
|
|
4859
|
+
* Complete a crash report.
|
|
4860
|
+
* @param {DefaultApiV1CompleteNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
4861
|
+
* @param {*} [options] Override http request option.
|
|
4862
|
+
* @throws {RequiredError}
|
|
4863
|
+
* @memberof DefaultApi
|
|
4864
|
+
*/
|
|
4865
|
+
v1CompleteNodeControllerCrashReport(requestParameters, options) {
|
|
4866
|
+
return DefaultApiFp(this.configuration).v1CompleteNodeControllerCrashReport(requestParameters.v1CompleteNodeControllerCrashReportRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4867
|
+
}
|
|
4499
4868
|
/**
|
|
4500
4869
|
* Complete a node flare.
|
|
4501
4870
|
* @param {DefaultApiV1CompleteNodeFlareRequest} requestParameters Request parameters.
|
|
@@ -4626,6 +4995,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
4626
4995
|
v1CreateNodeControllerArtifact(requestParameters, options) {
|
|
4627
4996
|
return DefaultApiFp(this.configuration).v1CreateNodeControllerArtifact(requestParameters.v1CreateNodeControllerArtifactRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4628
4997
|
}
|
|
4998
|
+
/**
|
|
4999
|
+
* create a crash report record
|
|
5000
|
+
* @param {DefaultApiV1CreateNodeControllerCrashReportRequest} requestParameters Request parameters.
|
|
5001
|
+
* @param {*} [options] Override http request option.
|
|
5002
|
+
* @throws {RequiredError}
|
|
5003
|
+
* @memberof DefaultApi
|
|
5004
|
+
*/
|
|
5005
|
+
v1CreateNodeControllerCrashReport(requestParameters, options) {
|
|
5006
|
+
return DefaultApiFp(this.configuration).v1CreateNodeControllerCrashReport(requestParameters.v1CreateNodeControllerCrashReportRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5007
|
+
}
|
|
4629
5008
|
/**
|
|
4630
5009
|
* Create node diagnostics.
|
|
4631
5010
|
* @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
|
|
@@ -4924,6 +5303,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
4924
5303
|
v1GetNodes(options) {
|
|
4925
5304
|
return DefaultApiFp(this.configuration).v1GetNodes(options).then((request) => request(this.axios, this.basePath));
|
|
4926
5305
|
}
|
|
5306
|
+
/**
|
|
5307
|
+
* Get OTA encryption result
|
|
5308
|
+
* @param {DefaultApiV1GetOTAEncryptionRequest} requestParameters Request parameters.
|
|
5309
|
+
* @param {*} [options] Override http request option.
|
|
5310
|
+
* @throws {RequiredError}
|
|
5311
|
+
* @memberof DefaultApi
|
|
5312
|
+
*/
|
|
5313
|
+
v1GetOTAEncryption(requestParameters, options) {
|
|
5314
|
+
return DefaultApiFp(this.configuration).v1GetOTAEncryption(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5315
|
+
}
|
|
4927
5316
|
/**
|
|
4928
5317
|
* Get an optical tube.
|
|
4929
5318
|
* @param {DefaultApiV1GetOpticalTubeRequest} requestParameters Request parameters.
|
|
@@ -4995,13 +5384,12 @@ export class DefaultApi extends BaseAPI {
|
|
|
4995
5384
|
}
|
|
4996
5385
|
/**
|
|
4997
5386
|
* Get the target QCOM OTA software release for a node
|
|
4998
|
-
* @param {DefaultApiV1GetTargetQCOMOTASoftwareReleaseForNodeRequest} requestParameters Request parameters.
|
|
4999
5387
|
* @param {*} [options] Override http request option.
|
|
5000
5388
|
* @throws {RequiredError}
|
|
5001
5389
|
* @memberof DefaultApi
|
|
5002
5390
|
*/
|
|
5003
|
-
v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
5004
|
-
return DefaultApiFp(this.configuration).v1GetTargetQCOMOTASoftwareReleaseForNode(
|
|
5391
|
+
v1GetTargetQCOMOTASoftwareReleaseForNode(options) {
|
|
5392
|
+
return DefaultApiFp(this.configuration).v1GetTargetQCOMOTASoftwareReleaseForNode(options).then((request) => request(this.axios, this.basePath));
|
|
5005
5393
|
}
|
|
5006
5394
|
/**
|
|
5007
5395
|
* Get the target software releases for a node
|
|
@@ -5126,6 +5514,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
5126
5514
|
v1RequestMacAddresses(requestParameters, options) {
|
|
5127
5515
|
return DefaultApiFp(this.configuration).v1RequestMacAddresses(requestParameters.v1RequestMacAddressesRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5128
5516
|
}
|
|
5517
|
+
/**
|
|
5518
|
+
* Start OTA encryption of latest software release for the specified edge controller
|
|
5519
|
+
* @param {DefaultApiV1StartOTAEncryptionLatestRequest} requestParameters Request parameters.
|
|
5520
|
+
* @param {*} [options] Override http request option.
|
|
5521
|
+
* @throws {RequiredError}
|
|
5522
|
+
* @memberof DefaultApi
|
|
5523
|
+
*/
|
|
5524
|
+
v1StartOTAEncryptionLatest(requestParameters, options) {
|
|
5525
|
+
return DefaultApiFp(this.configuration).v1StartOTAEncryptionLatest(requestParameters.v1OTAEncryptionRequestLatest, options).then((request) => request(this.axios, this.basePath));
|
|
5526
|
+
}
|
|
5129
5527
|
/**
|
|
5130
5528
|
* Update a mount.
|
|
5131
5529
|
* @param {DefaultApiV1UpdateMountRequest} requestParameters Request parameters.
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.8639
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|