@ourskyai/platform-api 1.3.3836 → 1.3.3931
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 +87 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +43 -1
- package/dist/api.js +66 -1
- 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 +43 -1
- package/dist/esm/api.js +66 -1
- 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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/platform-api@1.3.
|
|
1
|
+
## @ourskyai/platform-api@1.3.3931
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/platform-api@1.3.
|
|
39
|
+
npm install @ourskyai/platform-api@1.3.3931 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3239,6 +3239,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3239
3239
|
|
|
3240
3240
|
|
|
3241
3241
|
|
|
3242
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3243
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3244
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3245
|
+
|
|
3246
|
+
return {
|
|
3247
|
+
url: toPathString(localVarUrlObj),
|
|
3248
|
+
options: localVarRequestOptions,
|
|
3249
|
+
};
|
|
3250
|
+
},
|
|
3251
|
+
/**
|
|
3252
|
+
* Get node by lineage id.
|
|
3253
|
+
* @param {string} lineageId
|
|
3254
|
+
* @param {*} [options] Override http request option.
|
|
3255
|
+
* @throws {RequiredError}
|
|
3256
|
+
*/
|
|
3257
|
+
v1GetNode: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3258
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
3259
|
+
assertParamExists('v1GetNode', 'lineageId', lineageId)
|
|
3260
|
+
const localVarPath = `/v1/node`;
|
|
3261
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3262
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3263
|
+
let baseOptions;
|
|
3264
|
+
if (configuration) {
|
|
3265
|
+
baseOptions = configuration.baseOptions;
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3269
|
+
const localVarHeaderParameter = {} as any;
|
|
3270
|
+
const localVarQueryParameter = {} as any;
|
|
3271
|
+
|
|
3272
|
+
// authentication Roles required
|
|
3273
|
+
|
|
3274
|
+
// authentication BearerToken required
|
|
3275
|
+
// http bearer authentication required
|
|
3276
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3277
|
+
|
|
3278
|
+
if (lineageId !== undefined) {
|
|
3279
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
|
|
3283
|
+
|
|
3242
3284
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3243
3285
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3244
3286
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -4048,6 +4090,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
4048
4090
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetMount(id, options);
|
|
4049
4091
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4050
4092
|
},
|
|
4093
|
+
/**
|
|
4094
|
+
* Get node by lineage id.
|
|
4095
|
+
* @param {string} lineageId
|
|
4096
|
+
* @param {*} [options] Override http request option.
|
|
4097
|
+
* @throws {RequiredError}
|
|
4098
|
+
*/
|
|
4099
|
+
async v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
|
|
4100
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNode(lineageId, options);
|
|
4101
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4102
|
+
},
|
|
4051
4103
|
/**
|
|
4052
4104
|
* returns the current release for the node
|
|
4053
4105
|
* @param {string} lineageId lineage id
|
|
@@ -4378,6 +4430,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
4378
4430
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount> {
|
|
4379
4431
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
4380
4432
|
},
|
|
4433
|
+
/**
|
|
4434
|
+
* Get node by lineage id.
|
|
4435
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
4436
|
+
* @param {*} [options] Override http request option.
|
|
4437
|
+
* @throws {RequiredError}
|
|
4438
|
+
*/
|
|
4439
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
|
|
4440
|
+
return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
4441
|
+
},
|
|
4381
4442
|
/**
|
|
4382
4443
|
* returns the current release for the node
|
|
4383
4444
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
@@ -4807,6 +4868,20 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
4807
4868
|
readonly id: string
|
|
4808
4869
|
}
|
|
4809
4870
|
|
|
4871
|
+
/**
|
|
4872
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
4873
|
+
* @export
|
|
4874
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
4875
|
+
*/
|
|
4876
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
4877
|
+
/**
|
|
4878
|
+
*
|
|
4879
|
+
* @type {string}
|
|
4880
|
+
* @memberof DefaultApiV1GetNode
|
|
4881
|
+
*/
|
|
4882
|
+
readonly lineageId: string
|
|
4883
|
+
}
|
|
4884
|
+
|
|
4810
4885
|
/**
|
|
4811
4886
|
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
4812
4887
|
* @export
|
|
@@ -5235,6 +5310,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
5235
5310
|
return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
5236
5311
|
}
|
|
5237
5312
|
|
|
5313
|
+
/**
|
|
5314
|
+
* Get node by lineage id.
|
|
5315
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
5316
|
+
* @param {*} [options] Override http request option.
|
|
5317
|
+
* @throws {RequiredError}
|
|
5318
|
+
* @memberof DefaultApi
|
|
5319
|
+
*/
|
|
5320
|
+
public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig) {
|
|
5321
|
+
return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
5322
|
+
}
|
|
5323
|
+
|
|
5238
5324
|
/**
|
|
5239
5325
|
* returns the current release for the node
|
|
5240
5326
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
package/base.ts
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2449,6 +2449,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2449
2449
|
* @throws {RequiredError}
|
|
2450
2450
|
*/
|
|
2451
2451
|
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2452
|
+
/**
|
|
2453
|
+
* Get node by lineage id.
|
|
2454
|
+
* @param {string} lineageId
|
|
2455
|
+
* @param {*} [options] Override http request option.
|
|
2456
|
+
* @throws {RequiredError}
|
|
2457
|
+
*/
|
|
2458
|
+
v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2452
2459
|
/**
|
|
2453
2460
|
* returns the current release for the node
|
|
2454
2461
|
* @param {string} lineageId lineage id
|
|
@@ -2700,6 +2707,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2700
2707
|
* @throws {RequiredError}
|
|
2701
2708
|
*/
|
|
2702
2709
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
2710
|
+
/**
|
|
2711
|
+
* Get node by lineage id.
|
|
2712
|
+
* @param {string} lineageId
|
|
2713
|
+
* @param {*} [options] Override http request option.
|
|
2714
|
+
* @throws {RequiredError}
|
|
2715
|
+
*/
|
|
2716
|
+
v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
2703
2717
|
/**
|
|
2704
2718
|
* returns the current release for the node
|
|
2705
2719
|
* @param {string} lineageId lineage id
|
|
@@ -2944,6 +2958,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2944
2958
|
* @throws {RequiredError}
|
|
2945
2959
|
*/
|
|
2946
2960
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
2961
|
+
/**
|
|
2962
|
+
* Get node by lineage id.
|
|
2963
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2964
|
+
* @param {*} [options] Override http request option.
|
|
2965
|
+
* @throws {RequiredError}
|
|
2966
|
+
*/
|
|
2967
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
2947
2968
|
/**
|
|
2948
2969
|
* returns the current release for the node
|
|
2949
2970
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
@@ -3318,6 +3339,19 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
3318
3339
|
*/
|
|
3319
3340
|
readonly id: string;
|
|
3320
3341
|
}
|
|
3342
|
+
/**
|
|
3343
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
3344
|
+
* @export
|
|
3345
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
3346
|
+
*/
|
|
3347
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
3348
|
+
/**
|
|
3349
|
+
*
|
|
3350
|
+
* @type {string}
|
|
3351
|
+
* @memberof DefaultApiV1GetNode
|
|
3352
|
+
*/
|
|
3353
|
+
readonly lineageId: string;
|
|
3354
|
+
}
|
|
3321
3355
|
/**
|
|
3322
3356
|
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
3323
3357
|
* @export
|
|
@@ -3670,6 +3704,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3670
3704
|
* @memberof DefaultApi
|
|
3671
3705
|
*/
|
|
3672
3706
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
3707
|
+
/**
|
|
3708
|
+
* Get node by lineage id.
|
|
3709
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
3710
|
+
* @param {*} [options] Override http request option.
|
|
3711
|
+
* @throws {RequiredError}
|
|
3712
|
+
* @memberof DefaultApi
|
|
3713
|
+
*/
|
|
3714
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
3673
3715
|
/**
|
|
3674
3716
|
* returns the current release for the node
|
|
3675
3717
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -864,6 +864,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
864
864
|
options: localVarRequestOptions,
|
|
865
865
|
};
|
|
866
866
|
}),
|
|
867
|
+
/**
|
|
868
|
+
* Get node by lineage id.
|
|
869
|
+
* @param {string} lineageId
|
|
870
|
+
* @param {*} [options] Override http request option.
|
|
871
|
+
* @throws {RequiredError}
|
|
872
|
+
*/
|
|
873
|
+
v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
874
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
875
|
+
(0, common_1.assertParamExists)('v1GetNode', 'lineageId', lineageId);
|
|
876
|
+
const localVarPath = `/v1/node`;
|
|
877
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
878
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
879
|
+
let baseOptions;
|
|
880
|
+
if (configuration) {
|
|
881
|
+
baseOptions = configuration.baseOptions;
|
|
882
|
+
}
|
|
883
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
884
|
+
const localVarHeaderParameter = {};
|
|
885
|
+
const localVarQueryParameter = {};
|
|
886
|
+
// authentication Roles required
|
|
887
|
+
// authentication BearerToken required
|
|
888
|
+
// http bearer authentication required
|
|
889
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
890
|
+
if (lineageId !== undefined) {
|
|
891
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
892
|
+
}
|
|
893
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
894
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
895
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
896
|
+
return {
|
|
897
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
898
|
+
options: localVarRequestOptions,
|
|
899
|
+
};
|
|
900
|
+
}),
|
|
867
901
|
/**
|
|
868
902
|
* returns the current release for the node
|
|
869
903
|
* @param {string} lineageId lineage id
|
|
@@ -1590,6 +1624,18 @@ const DefaultApiFp = function (configuration) {
|
|
|
1590
1624
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1591
1625
|
});
|
|
1592
1626
|
},
|
|
1627
|
+
/**
|
|
1628
|
+
* Get node by lineage id.
|
|
1629
|
+
* @param {string} lineageId
|
|
1630
|
+
* @param {*} [options] Override http request option.
|
|
1631
|
+
* @throws {RequiredError}
|
|
1632
|
+
*/
|
|
1633
|
+
v1GetNode(lineageId, options) {
|
|
1634
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1635
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
|
|
1636
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1637
|
+
});
|
|
1638
|
+
},
|
|
1593
1639
|
/**
|
|
1594
1640
|
* returns the current release for the node
|
|
1595
1641
|
* @param {string} lineageId lineage id
|
|
@@ -1948,6 +1994,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1948
1994
|
v1GetMount(requestParameters, options) {
|
|
1949
1995
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1950
1996
|
},
|
|
1997
|
+
/**
|
|
1998
|
+
* Get node by lineage id.
|
|
1999
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2000
|
+
* @param {*} [options] Override http request option.
|
|
2001
|
+
* @throws {RequiredError}
|
|
2002
|
+
*/
|
|
2003
|
+
v1GetNode(requestParameters, options) {
|
|
2004
|
+
return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
2005
|
+
},
|
|
1951
2006
|
/**
|
|
1952
2007
|
* returns the current release for the node
|
|
1953
2008
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
@@ -2281,6 +2336,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2281
2336
|
v1GetMount(requestParameters, options) {
|
|
2282
2337
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2283
2338
|
}
|
|
2339
|
+
/**
|
|
2340
|
+
* Get node by lineage id.
|
|
2341
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2342
|
+
* @param {*} [options] Override http request option.
|
|
2343
|
+
* @throws {RequiredError}
|
|
2344
|
+
* @memberof DefaultApi
|
|
2345
|
+
*/
|
|
2346
|
+
v1GetNode(requestParameters, options) {
|
|
2347
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
2348
|
+
}
|
|
2284
2349
|
/**
|
|
2285
2350
|
* returns the current release for the node
|
|
2286
2351
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
package/dist/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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2449,6 +2449,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2449
2449
|
* @throws {RequiredError}
|
|
2450
2450
|
*/
|
|
2451
2451
|
v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2452
|
+
/**
|
|
2453
|
+
* Get node by lineage id.
|
|
2454
|
+
* @param {string} lineageId
|
|
2455
|
+
* @param {*} [options] Override http request option.
|
|
2456
|
+
* @throws {RequiredError}
|
|
2457
|
+
*/
|
|
2458
|
+
v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2452
2459
|
/**
|
|
2453
2460
|
* returns the current release for the node
|
|
2454
2461
|
* @param {string} lineageId lineage id
|
|
@@ -2700,6 +2707,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2700
2707
|
* @throws {RequiredError}
|
|
2701
2708
|
*/
|
|
2702
2709
|
v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
|
|
2710
|
+
/**
|
|
2711
|
+
* Get node by lineage id.
|
|
2712
|
+
* @param {string} lineageId
|
|
2713
|
+
* @param {*} [options] Override http request option.
|
|
2714
|
+
* @throws {RequiredError}
|
|
2715
|
+
*/
|
|
2716
|
+
v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
|
|
2703
2717
|
/**
|
|
2704
2718
|
* returns the current release for the node
|
|
2705
2719
|
* @param {string} lineageId lineage id
|
|
@@ -2944,6 +2958,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2944
2958
|
* @throws {RequiredError}
|
|
2945
2959
|
*/
|
|
2946
2960
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
|
|
2961
|
+
/**
|
|
2962
|
+
* Get node by lineage id.
|
|
2963
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2964
|
+
* @param {*} [options] Override http request option.
|
|
2965
|
+
* @throws {RequiredError}
|
|
2966
|
+
*/
|
|
2967
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
|
|
2947
2968
|
/**
|
|
2948
2969
|
* returns the current release for the node
|
|
2949
2970
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
@@ -3318,6 +3339,19 @@ export interface DefaultApiV1GetMountRequest {
|
|
|
3318
3339
|
*/
|
|
3319
3340
|
readonly id: string;
|
|
3320
3341
|
}
|
|
3342
|
+
/**
|
|
3343
|
+
* Request parameters for v1GetNode operation in DefaultApi.
|
|
3344
|
+
* @export
|
|
3345
|
+
* @interface DefaultApiV1GetNodeRequest
|
|
3346
|
+
*/
|
|
3347
|
+
export interface DefaultApiV1GetNodeRequest {
|
|
3348
|
+
/**
|
|
3349
|
+
*
|
|
3350
|
+
* @type {string}
|
|
3351
|
+
* @memberof DefaultApiV1GetNode
|
|
3352
|
+
*/
|
|
3353
|
+
readonly lineageId: string;
|
|
3354
|
+
}
|
|
3321
3355
|
/**
|
|
3322
3356
|
* Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
|
|
3323
3357
|
* @export
|
|
@@ -3670,6 +3704,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3670
3704
|
* @memberof DefaultApi
|
|
3671
3705
|
*/
|
|
3672
3706
|
v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
|
|
3707
|
+
/**
|
|
3708
|
+
* Get node by lineage id.
|
|
3709
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
3710
|
+
* @param {*} [options] Override http request option.
|
|
3711
|
+
* @throws {RequiredError}
|
|
3712
|
+
* @memberof DefaultApi
|
|
3713
|
+
*/
|
|
3714
|
+
v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
|
|
3673
3715
|
/**
|
|
3674
3716
|
* returns the current release for the node
|
|
3675
3717
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -861,6 +861,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
861
861
|
options: localVarRequestOptions,
|
|
862
862
|
};
|
|
863
863
|
}),
|
|
864
|
+
/**
|
|
865
|
+
* Get node by lineage id.
|
|
866
|
+
* @param {string} lineageId
|
|
867
|
+
* @param {*} [options] Override http request option.
|
|
868
|
+
* @throws {RequiredError}
|
|
869
|
+
*/
|
|
870
|
+
v1GetNode: (lineageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
871
|
+
// verify required parameter 'lineageId' is not null or undefined
|
|
872
|
+
assertParamExists('v1GetNode', 'lineageId', lineageId);
|
|
873
|
+
const localVarPath = `/v1/node`;
|
|
874
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
875
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
876
|
+
let baseOptions;
|
|
877
|
+
if (configuration) {
|
|
878
|
+
baseOptions = configuration.baseOptions;
|
|
879
|
+
}
|
|
880
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
881
|
+
const localVarHeaderParameter = {};
|
|
882
|
+
const localVarQueryParameter = {};
|
|
883
|
+
// authentication Roles required
|
|
884
|
+
// authentication BearerToken required
|
|
885
|
+
// http bearer authentication required
|
|
886
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
887
|
+
if (lineageId !== undefined) {
|
|
888
|
+
localVarQueryParameter['lineageId'] = lineageId;
|
|
889
|
+
}
|
|
890
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
891
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
892
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
893
|
+
return {
|
|
894
|
+
url: toPathString(localVarUrlObj),
|
|
895
|
+
options: localVarRequestOptions,
|
|
896
|
+
};
|
|
897
|
+
}),
|
|
864
898
|
/**
|
|
865
899
|
* returns the current release for the node
|
|
866
900
|
* @param {string} lineageId lineage id
|
|
@@ -1586,6 +1620,18 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1586
1620
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1587
1621
|
});
|
|
1588
1622
|
},
|
|
1623
|
+
/**
|
|
1624
|
+
* Get node by lineage id.
|
|
1625
|
+
* @param {string} lineageId
|
|
1626
|
+
* @param {*} [options] Override http request option.
|
|
1627
|
+
* @throws {RequiredError}
|
|
1628
|
+
*/
|
|
1629
|
+
v1GetNode(lineageId, options) {
|
|
1630
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1631
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNode(lineageId, options);
|
|
1632
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1633
|
+
});
|
|
1634
|
+
},
|
|
1589
1635
|
/**
|
|
1590
1636
|
* returns the current release for the node
|
|
1591
1637
|
* @param {string} lineageId lineage id
|
|
@@ -1943,6 +1989,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1943
1989
|
v1GetMount(requestParameters, options) {
|
|
1944
1990
|
return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
1945
1991
|
},
|
|
1992
|
+
/**
|
|
1993
|
+
* Get node by lineage id.
|
|
1994
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
1995
|
+
* @param {*} [options] Override http request option.
|
|
1996
|
+
* @throws {RequiredError}
|
|
1997
|
+
*/
|
|
1998
|
+
v1GetNode(requestParameters, options) {
|
|
1999
|
+
return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
|
|
2000
|
+
},
|
|
1946
2001
|
/**
|
|
1947
2002
|
* returns the current release for the node
|
|
1948
2003
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
|
|
@@ -2275,6 +2330,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2275
2330
|
v1GetMount(requestParameters, options) {
|
|
2276
2331
|
return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
2277
2332
|
}
|
|
2333
|
+
/**
|
|
2334
|
+
* Get node by lineage id.
|
|
2335
|
+
* @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
|
|
2336
|
+
* @param {*} [options] Override http request option.
|
|
2337
|
+
* @throws {RequiredError}
|
|
2338
|
+
* @memberof DefaultApi
|
|
2339
|
+
*/
|
|
2340
|
+
v1GetNode(requestParameters, options) {
|
|
2341
|
+
return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
|
|
2342
|
+
}
|
|
2278
2343
|
/**
|
|
2279
2344
|
* returns the current release for the node
|
|
2280
2345
|
* @param {DefaultApiV1GetNodeControllerReleaseRequest} 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.3931
|
|
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.3931
|
|
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.3931
|
|
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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.3931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
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.3931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|