@ourskyai/platform-api 1.3.3836 → 1.3.3942

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/platform-api@1.3.3836
1
+ ## @ourskyai/platform-api@1.3.3942
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.3836 --save
39
+ npm install @ourskyai/platform-api@1.3.3942 --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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1603,6 +1603,12 @@ export interface V1Node {
1603
1603
  * @memberof V1Node
1604
1604
  */
1605
1605
  'id': string;
1606
+ /**
1607
+ *
1608
+ * @type {Location}
1609
+ * @memberof V1Node
1610
+ */
1611
+ 'location': Location;
1606
1612
  }
1607
1613
 
1608
1614
 
@@ -3239,6 +3245,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3239
3245
 
3240
3246
 
3241
3247
 
3248
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3249
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3250
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3251
+
3252
+ return {
3253
+ url: toPathString(localVarUrlObj),
3254
+ options: localVarRequestOptions,
3255
+ };
3256
+ },
3257
+ /**
3258
+ * Get node by lineage id.
3259
+ * @param {string} lineageId
3260
+ * @param {*} [options] Override http request option.
3261
+ * @throws {RequiredError}
3262
+ */
3263
+ v1GetNode: async (lineageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3264
+ // verify required parameter 'lineageId' is not null or undefined
3265
+ assertParamExists('v1GetNode', 'lineageId', lineageId)
3266
+ const localVarPath = `/v1/node`;
3267
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3268
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3269
+ let baseOptions;
3270
+ if (configuration) {
3271
+ baseOptions = configuration.baseOptions;
3272
+ }
3273
+
3274
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
3275
+ const localVarHeaderParameter = {} as any;
3276
+ const localVarQueryParameter = {} as any;
3277
+
3278
+ // authentication Roles required
3279
+
3280
+ // authentication BearerToken required
3281
+ // http bearer authentication required
3282
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
3283
+
3284
+ if (lineageId !== undefined) {
3285
+ localVarQueryParameter['lineageId'] = lineageId;
3286
+ }
3287
+
3288
+
3289
+
3242
3290
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3243
3291
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3244
3292
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -4048,6 +4096,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
4048
4096
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetMount(id, options);
4049
4097
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4050
4098
  },
4099
+ /**
4100
+ * Get node by lineage id.
4101
+ * @param {string} lineageId
4102
+ * @param {*} [options] Override http request option.
4103
+ * @throws {RequiredError}
4104
+ */
4105
+ async v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>> {
4106
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNode(lineageId, options);
4107
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4108
+ },
4051
4109
  /**
4052
4110
  * returns the current release for the node
4053
4111
  * @param {string} lineageId lineage id
@@ -4378,6 +4436,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4378
4436
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount> {
4379
4437
  return localVarFp.v1GetMount(requestParameters.id, options).then((request) => request(axios, basePath));
4380
4438
  },
4439
+ /**
4440
+ * Get node by lineage id.
4441
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
4442
+ * @param {*} [options] Override http request option.
4443
+ * @throws {RequiredError}
4444
+ */
4445
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node> {
4446
+ return localVarFp.v1GetNode(requestParameters.lineageId, options).then((request) => request(axios, basePath));
4447
+ },
4381
4448
  /**
4382
4449
  * returns the current release for the node
4383
4450
  * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
@@ -4807,6 +4874,20 @@ export interface DefaultApiV1GetMountRequest {
4807
4874
  readonly id: string
4808
4875
  }
4809
4876
 
4877
+ /**
4878
+ * Request parameters for v1GetNode operation in DefaultApi.
4879
+ * @export
4880
+ * @interface DefaultApiV1GetNodeRequest
4881
+ */
4882
+ export interface DefaultApiV1GetNodeRequest {
4883
+ /**
4884
+ *
4885
+ * @type {string}
4886
+ * @memberof DefaultApiV1GetNode
4887
+ */
4888
+ readonly lineageId: string
4889
+ }
4890
+
4810
4891
  /**
4811
4892
  * Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
4812
4893
  * @export
@@ -5235,6 +5316,17 @@ export class DefaultApi extends BaseAPI {
5235
5316
  return DefaultApiFp(this.configuration).v1GetMount(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
5236
5317
  }
5237
5318
 
5319
+ /**
5320
+ * Get node by lineage id.
5321
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
5322
+ * @param {*} [options] Override http request option.
5323
+ * @throws {RequiredError}
5324
+ * @memberof DefaultApi
5325
+ */
5326
+ public v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig) {
5327
+ return DefaultApiFp(this.configuration).v1GetNode(requestParameters.lineageId, options).then((request) => request(this.axios, this.basePath));
5328
+ }
5329
+
5238
5330
  /**
5239
5331
  * returns the current release for the node
5240
5332
  * @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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1533,6 +1533,12 @@ export interface V1Node {
1533
1533
  * @memberof V1Node
1534
1534
  */
1535
1535
  'id': string;
1536
+ /**
1537
+ *
1538
+ * @type {Location}
1539
+ * @memberof V1Node
1540
+ */
1541
+ 'location': Location;
1536
1542
  }
1537
1543
  /**
1538
1544
  *
@@ -2449,6 +2455,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2449
2455
  * @throws {RequiredError}
2450
2456
  */
2451
2457
  v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2458
+ /**
2459
+ * Get node by lineage id.
2460
+ * @param {string} lineageId
2461
+ * @param {*} [options] Override http request option.
2462
+ * @throws {RequiredError}
2463
+ */
2464
+ v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2452
2465
  /**
2453
2466
  * returns the current release for the node
2454
2467
  * @param {string} lineageId lineage id
@@ -2700,6 +2713,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2700
2713
  * @throws {RequiredError}
2701
2714
  */
2702
2715
  v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2716
+ /**
2717
+ * Get node by lineage id.
2718
+ * @param {string} lineageId
2719
+ * @param {*} [options] Override http request option.
2720
+ * @throws {RequiredError}
2721
+ */
2722
+ v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
2703
2723
  /**
2704
2724
  * returns the current release for the node
2705
2725
  * @param {string} lineageId lineage id
@@ -2944,6 +2964,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2944
2964
  * @throws {RequiredError}
2945
2965
  */
2946
2966
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2967
+ /**
2968
+ * Get node by lineage id.
2969
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2970
+ * @param {*} [options] Override http request option.
2971
+ * @throws {RequiredError}
2972
+ */
2973
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
2947
2974
  /**
2948
2975
  * returns the current release for the node
2949
2976
  * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
@@ -3318,6 +3345,19 @@ export interface DefaultApiV1GetMountRequest {
3318
3345
  */
3319
3346
  readonly id: string;
3320
3347
  }
3348
+ /**
3349
+ * Request parameters for v1GetNode operation in DefaultApi.
3350
+ * @export
3351
+ * @interface DefaultApiV1GetNodeRequest
3352
+ */
3353
+ export interface DefaultApiV1GetNodeRequest {
3354
+ /**
3355
+ *
3356
+ * @type {string}
3357
+ * @memberof DefaultApiV1GetNode
3358
+ */
3359
+ readonly lineageId: string;
3360
+ }
3321
3361
  /**
3322
3362
  * Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
3323
3363
  * @export
@@ -3670,6 +3710,14 @@ export declare class DefaultApi extends BaseAPI {
3670
3710
  * @memberof DefaultApi
3671
3711
  */
3672
3712
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
3713
+ /**
3714
+ * Get node by lineage id.
3715
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3716
+ * @param {*} [options] Override http request option.
3717
+ * @throws {RequiredError}
3718
+ * @memberof DefaultApi
3719
+ */
3720
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
3673
3721
  /**
3674
3722
  * returns the current release for the node
3675
3723
  * @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.3836
8
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
8
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
8
+ * The version of the OpenAPI document: 1.3.3942
9
9
  *
10
10
  *
11
11
  * 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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.3836
8
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1533,6 +1533,12 @@ export interface V1Node {
1533
1533
  * @memberof V1Node
1534
1534
  */
1535
1535
  'id': string;
1536
+ /**
1537
+ *
1538
+ * @type {Location}
1539
+ * @memberof V1Node
1540
+ */
1541
+ 'location': Location;
1536
1542
  }
1537
1543
  /**
1538
1544
  *
@@ -2449,6 +2455,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2449
2455
  * @throws {RequiredError}
2450
2456
  */
2451
2457
  v1GetMount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2458
+ /**
2459
+ * Get node by lineage id.
2460
+ * @param {string} lineageId
2461
+ * @param {*} [options] Override http request option.
2462
+ * @throws {RequiredError}
2463
+ */
2464
+ v1GetNode: (lineageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2452
2465
  /**
2453
2466
  * returns the current release for the node
2454
2467
  * @param {string} lineageId lineage id
@@ -2700,6 +2713,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2700
2713
  * @throws {RequiredError}
2701
2714
  */
2702
2715
  v1GetMount(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Mount>>;
2716
+ /**
2717
+ * Get node by lineage id.
2718
+ * @param {string} lineageId
2719
+ * @param {*} [options] Override http request option.
2720
+ * @throws {RequiredError}
2721
+ */
2722
+ v1GetNode(lineageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1Node>>;
2703
2723
  /**
2704
2724
  * returns the current release for the node
2705
2725
  * @param {string} lineageId lineage id
@@ -2944,6 +2964,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2944
2964
  * @throws {RequiredError}
2945
2965
  */
2946
2966
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): AxiosPromise<V1Mount>;
2967
+ /**
2968
+ * Get node by lineage id.
2969
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
2970
+ * @param {*} [options] Override http request option.
2971
+ * @throws {RequiredError}
2972
+ */
2973
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): AxiosPromise<V1Node>;
2947
2974
  /**
2948
2975
  * returns the current release for the node
2949
2976
  * @param {DefaultApiV1GetNodeControllerReleaseRequest} requestParameters Request parameters.
@@ -3318,6 +3345,19 @@ export interface DefaultApiV1GetMountRequest {
3318
3345
  */
3319
3346
  readonly id: string;
3320
3347
  }
3348
+ /**
3349
+ * Request parameters for v1GetNode operation in DefaultApi.
3350
+ * @export
3351
+ * @interface DefaultApiV1GetNodeRequest
3352
+ */
3353
+ export interface DefaultApiV1GetNodeRequest {
3354
+ /**
3355
+ *
3356
+ * @type {string}
3357
+ * @memberof DefaultApiV1GetNode
3358
+ */
3359
+ readonly lineageId: string;
3360
+ }
3321
3361
  /**
3322
3362
  * Request parameters for v1GetNodeControllerRelease operation in DefaultApi.
3323
3363
  * @export
@@ -3670,6 +3710,14 @@ export declare class DefaultApi extends BaseAPI {
3670
3710
  * @memberof DefaultApi
3671
3711
  */
3672
3712
  v1GetMount(requestParameters: DefaultApiV1GetMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Mount, any>>;
3713
+ /**
3714
+ * Get node by lineage id.
3715
+ * @param {DefaultApiV1GetNodeRequest} requestParameters Request parameters.
3716
+ * @param {*} [options] Override http request option.
3717
+ * @throws {RequiredError}
3718
+ * @memberof DefaultApi
3719
+ */
3720
+ v1GetNode(requestParameters: DefaultApiV1GetNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Node, any>>;
3673
3721
  /**
3674
3722
  * returns the current release for the node
3675
3723
  * @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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.
@@ -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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
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.3836
5
+ * The version of the OpenAPI document: 1.3.3942
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.3836
8
+ * The version of the OpenAPI document: 1.3.3942
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.3836
7
+ * The version of the OpenAPI document: 1.3.3942
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/platform-api",
3
- "version": "1.3.3836",
3
+ "version": "1.3.3942",
4
4
  "description": "OpenAPI client for @ourskyai/platform-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {