@ourskyai/platform-api 1.3.5354 → 1.3.5391

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.5354
1
+ ## @ourskyai/platform-api@1.3.5391
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.5354 --save
39
+ npm install @ourskyai/platform-api@1.3.5391 --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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1971,6 +1971,12 @@ export interface V1NodeController {
1971
1971
  * @memberof V1NodeController
1972
1972
  */
1973
1973
  'lineageId': string;
1974
+ /**
1975
+ *
1976
+ * @type {number}
1977
+ * @memberof V1NodeController
1978
+ */
1979
+ 'chipSerialNumber'?: number;
1974
1980
  /**
1975
1981
  *
1976
1982
  * @type {V1NodeControllerStatus}
@@ -3252,13 +3258,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3252
3258
  },
3253
3259
  /**
3254
3260
  * CompleteBootstrap
3255
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3256
3261
  * @param {*} [options] Override http request option.
3257
3262
  * @throws {RequiredError}
3258
3263
  */
3259
- v1CompleteBootstrap: async (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3260
- // verify required parameter 'v1NodeControllerBootstrapRequest' is not null or undefined
3261
- assertParamExists('v1CompleteBootstrap', 'v1NodeControllerBootstrapRequest', v1NodeControllerBootstrapRequest)
3264
+ v1CompleteBootstrap: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3262
3265
  const localVarPath = `/v1/node-controller/completeBootstrap`;
3263
3266
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3264
3267
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -3279,12 +3282,9 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3279
3282
 
3280
3283
 
3281
3284
 
3282
- localVarHeaderParameter['Content-Type'] = 'application/json';
3283
-
3284
3285
  setSearchParams(localVarUrlObj, localVarQueryParameter);
3285
3286
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3286
3287
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3287
- localVarRequestOptions.data = serializeDataIfNeeded(v1NodeControllerBootstrapRequest, localVarRequestOptions, configuration)
3288
3288
 
3289
3289
  return {
3290
3290
  url: toPathString(localVarUrlObj),
@@ -4809,12 +4809,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4809
4809
  const localVarHeaderParameter = {} as any;
4810
4810
  const localVarQueryParameter = {} as any;
4811
4811
 
4812
- // authentication Roles required
4813
-
4814
- // authentication BearerToken required
4815
- // http bearer authentication required
4816
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
4817
-
4818
4812
 
4819
4813
 
4820
4814
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -4940,12 +4934,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4940
4934
  const localVarHeaderParameter = {} as any;
4941
4935
  const localVarQueryParameter = {} as any;
4942
4936
 
4943
- // authentication Roles required
4944
-
4945
- // authentication BearerToken required
4946
- // http bearer authentication required
4947
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
4948
-
4949
4937
 
4950
4938
 
4951
4939
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -5121,12 +5109,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5121
5109
  },
5122
5110
  /**
5123
5111
  * CompleteBootstrap
5124
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
5125
5112
  * @param {*} [options] Override http request option.
5126
5113
  * @throws {RequiredError}
5127
5114
  */
5128
- async v1CompleteBootstrap(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
5129
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1CompleteBootstrap(v1NodeControllerBootstrapRequest, options);
5115
+ async v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
5116
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CompleteBootstrap(options);
5130
5117
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5131
5118
  },
5132
5119
  /**
@@ -5591,12 +5578,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5591
5578
  },
5592
5579
  /**
5593
5580
  * CompleteBootstrap
5594
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
5595
5581
  * @param {*} [options] Override http request option.
5596
5582
  * @throws {RequiredError}
5597
5583
  */
5598
- v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
5599
- return localVarFp.v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(axios, basePath));
5584
+ v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
5585
+ return localVarFp.v1CompleteBootstrap(options).then((request) => request(axios, basePath));
5600
5586
  },
5601
5587
  /**
5602
5588
  * Complete an observation.
@@ -6049,20 +6035,6 @@ export interface DefaultApiV1CameraMatchRequest {
6049
6035
  readonly isColor?: boolean
6050
6036
  }
6051
6037
 
6052
- /**
6053
- * Request parameters for v1CompleteBootstrap operation in DefaultApi.
6054
- * @export
6055
- * @interface DefaultApiV1CompleteBootstrapRequest
6056
- */
6057
- export interface DefaultApiV1CompleteBootstrapRequest {
6058
- /**
6059
- *
6060
- * @type {V1NodeControllerBootstrapRequest}
6061
- * @memberof DefaultApiV1CompleteBootstrap
6062
- */
6063
- readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest
6064
- }
6065
-
6066
6038
  /**
6067
6039
  * Request parameters for v1CompleteObservation operation in DefaultApi.
6068
6040
  * @export
@@ -6702,13 +6674,12 @@ export class DefaultApi extends BaseAPI {
6702
6674
 
6703
6675
  /**
6704
6676
  * CompleteBootstrap
6705
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
6706
6677
  * @param {*} [options] Override http request option.
6707
6678
  * @throws {RequiredError}
6708
6679
  * @memberof DefaultApi
6709
6680
  */
6710
- public v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig) {
6711
- return DefaultApiFp(this.configuration).v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(this.axios, this.basePath));
6681
+ public v1CompleteBootstrap(options?: AxiosRequestConfig) {
6682
+ return DefaultApiFp(this.configuration).v1CompleteBootstrap(options).then((request) => request(this.axios, this.basePath));
6712
6683
  }
6713
6684
 
6714
6685
  /**
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1876,6 +1876,12 @@ export interface V1NodeController {
1876
1876
  * @memberof V1NodeController
1877
1877
  */
1878
1878
  'lineageId': string;
1879
+ /**
1880
+ *
1881
+ * @type {number}
1882
+ * @memberof V1NodeController
1883
+ */
1884
+ 'chipSerialNumber'?: number;
1879
1885
  /**
1880
1886
  *
1881
1887
  * @type {V1NodeControllerStatus}
@@ -3036,11 +3042,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3036
3042
  v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3037
3043
  /**
3038
3044
  * CompleteBootstrap
3039
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3040
3045
  * @param {*} [options] Override http request option.
3041
3046
  * @throws {RequiredError}
3042
3047
  */
3043
- v1CompleteBootstrap: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3048
+ v1CompleteBootstrap: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3044
3049
  /**
3045
3050
  * Complete an observation.
3046
3051
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3373,11 +3378,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3373
3378
  v1CameraMatch(model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
3374
3379
  /**
3375
3380
  * CompleteBootstrap
3376
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3377
3381
  * @param {*} [options] Override http request option.
3378
3382
  * @throws {RequiredError}
3379
3383
  */
3380
- v1CompleteBootstrap(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3384
+ v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3381
3385
  /**
3382
3386
  * Complete an observation.
3383
3387
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3703,11 +3707,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3703
3707
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
3704
3708
  /**
3705
3709
  * CompleteBootstrap
3706
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
3707
3710
  * @param {*} [options] Override http request option.
3708
3711
  * @throws {RequiredError}
3709
3712
  */
3710
- v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3713
+ v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3711
3714
  /**
3712
3715
  * Complete an observation.
3713
3716
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -4063,19 +4066,6 @@ export interface DefaultApiV1CameraMatchRequest {
4063
4066
  */
4064
4067
  readonly isColor?: boolean;
4065
4068
  }
4066
- /**
4067
- * Request parameters for v1CompleteBootstrap operation in DefaultApi.
4068
- * @export
4069
- * @interface DefaultApiV1CompleteBootstrapRequest
4070
- */
4071
- export interface DefaultApiV1CompleteBootstrapRequest {
4072
- /**
4073
- *
4074
- * @type {V1NodeControllerBootstrapRequest}
4075
- * @memberof DefaultApiV1CompleteBootstrap
4076
- */
4077
- readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
4078
- }
4079
4069
  /**
4080
4070
  * Request parameters for v1CompleteObservation operation in DefaultApi.
4081
4071
  * @export
@@ -4663,12 +4653,11 @@ export declare class DefaultApi extends BaseAPI {
4663
4653
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
4664
4654
  /**
4665
4655
  * CompleteBootstrap
4666
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
4667
4656
  * @param {*} [options] Override http request option.
4668
4657
  * @throws {RequiredError}
4669
4658
  * @memberof DefaultApi
4670
4659
  */
4671
- v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4660
+ v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4672
4661
  /**
4673
4662
  * Complete an observation.
4674
4663
  * @param {DefaultApiV1CompleteObservationRequest} 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.5354
8
+ * The version of the OpenAPI document: 1.3.5391
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -361,13 +361,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
361
361
  }),
362
362
  /**
363
363
  * CompleteBootstrap
364
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
365
364
  * @param {*} [options] Override http request option.
366
365
  * @throws {RequiredError}
367
366
  */
368
- v1CompleteBootstrap: (v1NodeControllerBootstrapRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
369
- // verify required parameter 'v1NodeControllerBootstrapRequest' is not null or undefined
370
- (0, common_1.assertParamExists)('v1CompleteBootstrap', 'v1NodeControllerBootstrapRequest', v1NodeControllerBootstrapRequest);
367
+ v1CompleteBootstrap: (options = {}) => __awaiter(this, void 0, void 0, function* () {
371
368
  const localVarPath = `/v1/node-controller/completeBootstrap`;
372
369
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
373
370
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -382,11 +379,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
382
379
  // authentication BearerToken required
383
380
  // http bearer authentication required
384
381
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
385
- localVarHeaderParameter['Content-Type'] = 'application/json';
386
382
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
387
383
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
388
384
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
389
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1NodeControllerBootstrapRequest, localVarRequestOptions, configuration);
390
385
  return {
391
386
  url: (0, common_1.toPathString)(localVarUrlObj),
392
387
  options: localVarRequestOptions,
@@ -1619,10 +1614,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1619
1614
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1620
1615
  const localVarHeaderParameter = {};
1621
1616
  const localVarQueryParameter = {};
1622
- // authentication Roles required
1623
- // authentication BearerToken required
1624
- // http bearer authentication required
1625
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1626
1617
  localVarHeaderParameter['Content-Type'] = 'application/json';
1627
1618
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1628
1619
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1724,10 +1715,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1724
1715
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1725
1716
  const localVarHeaderParameter = {};
1726
1717
  const localVarQueryParameter = {};
1727
- // authentication Roles required
1728
- // authentication BearerToken required
1729
- // http bearer authentication required
1730
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1731
1718
  localVarHeaderParameter['Content-Type'] = 'application/json';
1732
1719
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1733
1720
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1879,13 +1866,12 @@ const DefaultApiFp = function (configuration) {
1879
1866
  },
1880
1867
  /**
1881
1868
  * CompleteBootstrap
1882
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
1883
1869
  * @param {*} [options] Override http request option.
1884
1870
  * @throws {RequiredError}
1885
1871
  */
1886
- v1CompleteBootstrap(v1NodeControllerBootstrapRequest, options) {
1872
+ v1CompleteBootstrap(options) {
1887
1873
  return __awaiter(this, void 0, void 0, function* () {
1888
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CompleteBootstrap(v1NodeControllerBootstrapRequest, options);
1874
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CompleteBootstrap(options);
1889
1875
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1890
1876
  });
1891
1877
  },
@@ -2437,12 +2423,11 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2437
2423
  },
2438
2424
  /**
2439
2425
  * CompleteBootstrap
2440
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
2441
2426
  * @param {*} [options] Override http request option.
2442
2427
  * @throws {RequiredError}
2443
2428
  */
2444
- v1CompleteBootstrap(requestParameters, options) {
2445
- return localVarFp.v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(axios, basePath));
2429
+ v1CompleteBootstrap(options) {
2430
+ return localVarFp.v1CompleteBootstrap(options).then((request) => request(axios, basePath));
2446
2431
  },
2447
2432
  /**
2448
2433
  * Complete an observation.
@@ -2860,13 +2845,12 @@ class DefaultApi extends base_1.BaseAPI {
2860
2845
  }
2861
2846
  /**
2862
2847
  * CompleteBootstrap
2863
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
2864
2848
  * @param {*} [options] Override http request option.
2865
2849
  * @throws {RequiredError}
2866
2850
  * @memberof DefaultApi
2867
2851
  */
2868
- v1CompleteBootstrap(requestParameters, options) {
2869
- return (0, exports.DefaultApiFp)(this.configuration).v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(this.axios, this.basePath));
2852
+ v1CompleteBootstrap(options) {
2853
+ return (0, exports.DefaultApiFp)(this.configuration).v1CompleteBootstrap(options).then((request) => request(this.axios, this.basePath));
2870
2854
  }
2871
2855
  /**
2872
2856
  * Complete an observation.
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
8
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
8
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
8
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1876,6 +1876,12 @@ export interface V1NodeController {
1876
1876
  * @memberof V1NodeController
1877
1877
  */
1878
1878
  'lineageId': string;
1879
+ /**
1880
+ *
1881
+ * @type {number}
1882
+ * @memberof V1NodeController
1883
+ */
1884
+ 'chipSerialNumber'?: number;
1879
1885
  /**
1880
1886
  *
1881
1887
  * @type {V1NodeControllerStatus}
@@ -3036,11 +3042,10 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3036
3042
  v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3037
3043
  /**
3038
3044
  * CompleteBootstrap
3039
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3040
3045
  * @param {*} [options] Override http request option.
3041
3046
  * @throws {RequiredError}
3042
3047
  */
3043
- v1CompleteBootstrap: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3048
+ v1CompleteBootstrap: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3044
3049
  /**
3045
3050
  * Complete an observation.
3046
3051
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3373,11 +3378,10 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3373
3378
  v1CameraMatch(model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1Camera>>>;
3374
3379
  /**
3375
3380
  * CompleteBootstrap
3376
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3377
3381
  * @param {*} [options] Override http request option.
3378
3382
  * @throws {RequiredError}
3379
3383
  */
3380
- v1CompleteBootstrap(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3384
+ v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3381
3385
  /**
3382
3386
  * Complete an observation.
3383
3387
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3703,11 +3707,10 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3703
3707
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
3704
3708
  /**
3705
3709
  * CompleteBootstrap
3706
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
3707
3710
  * @param {*} [options] Override http request option.
3708
3711
  * @throws {RequiredError}
3709
3712
  */
3710
- v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3713
+ v1CompleteBootstrap(options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3711
3714
  /**
3712
3715
  * Complete an observation.
3713
3716
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -4063,19 +4066,6 @@ export interface DefaultApiV1CameraMatchRequest {
4063
4066
  */
4064
4067
  readonly isColor?: boolean;
4065
4068
  }
4066
- /**
4067
- * Request parameters for v1CompleteBootstrap operation in DefaultApi.
4068
- * @export
4069
- * @interface DefaultApiV1CompleteBootstrapRequest
4070
- */
4071
- export interface DefaultApiV1CompleteBootstrapRequest {
4072
- /**
4073
- *
4074
- * @type {V1NodeControllerBootstrapRequest}
4075
- * @memberof DefaultApiV1CompleteBootstrap
4076
- */
4077
- readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
4078
- }
4079
4069
  /**
4080
4070
  * Request parameters for v1CompleteObservation operation in DefaultApi.
4081
4071
  * @export
@@ -4663,12 +4653,11 @@ export declare class DefaultApi extends BaseAPI {
4663
4653
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
4664
4654
  /**
4665
4655
  * CompleteBootstrap
4666
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
4667
4656
  * @param {*} [options] Override http request option.
4668
4657
  * @throws {RequiredError}
4669
4658
  * @memberof DefaultApi
4670
4659
  */
4671
- v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4660
+ v1CompleteBootstrap(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4672
4661
  /**
4673
4662
  * Complete an observation.
4674
4663
  * @param {DefaultApiV1CompleteObservationRequest} 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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -358,13 +358,10 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
358
358
  }),
359
359
  /**
360
360
  * CompleteBootstrap
361
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
362
361
  * @param {*} [options] Override http request option.
363
362
  * @throws {RequiredError}
364
363
  */
365
- v1CompleteBootstrap: (v1NodeControllerBootstrapRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
366
- // verify required parameter 'v1NodeControllerBootstrapRequest' is not null or undefined
367
- assertParamExists('v1CompleteBootstrap', 'v1NodeControllerBootstrapRequest', v1NodeControllerBootstrapRequest);
364
+ v1CompleteBootstrap: (options = {}) => __awaiter(this, void 0, void 0, function* () {
368
365
  const localVarPath = `/v1/node-controller/completeBootstrap`;
369
366
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
370
367
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -379,11 +376,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
379
376
  // authentication BearerToken required
380
377
  // http bearer authentication required
381
378
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
382
- localVarHeaderParameter['Content-Type'] = 'application/json';
383
379
  setSearchParams(localVarUrlObj, localVarQueryParameter);
384
380
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
385
381
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
386
- localVarRequestOptions.data = serializeDataIfNeeded(v1NodeControllerBootstrapRequest, localVarRequestOptions, configuration);
387
382
  return {
388
383
  url: toPathString(localVarUrlObj),
389
384
  options: localVarRequestOptions,
@@ -1616,10 +1611,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1616
1611
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1617
1612
  const localVarHeaderParameter = {};
1618
1613
  const localVarQueryParameter = {};
1619
- // authentication Roles required
1620
- // authentication BearerToken required
1621
- // http bearer authentication required
1622
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1623
1614
  localVarHeaderParameter['Content-Type'] = 'application/json';
1624
1615
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1625
1616
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1721,10 +1712,6 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1721
1712
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1722
1713
  const localVarHeaderParameter = {};
1723
1714
  const localVarQueryParameter = {};
1724
- // authentication Roles required
1725
- // authentication BearerToken required
1726
- // http bearer authentication required
1727
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1728
1715
  localVarHeaderParameter['Content-Type'] = 'application/json';
1729
1716
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1730
1717
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1875,13 +1862,12 @@ export const DefaultApiFp = function (configuration) {
1875
1862
  },
1876
1863
  /**
1877
1864
  * CompleteBootstrap
1878
- * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
1879
1865
  * @param {*} [options] Override http request option.
1880
1866
  * @throws {RequiredError}
1881
1867
  */
1882
- v1CompleteBootstrap(v1NodeControllerBootstrapRequest, options) {
1868
+ v1CompleteBootstrap(options) {
1883
1869
  return __awaiter(this, void 0, void 0, function* () {
1884
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CompleteBootstrap(v1NodeControllerBootstrapRequest, options);
1870
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CompleteBootstrap(options);
1885
1871
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1886
1872
  });
1887
1873
  },
@@ -2432,12 +2418,11 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2432
2418
  },
2433
2419
  /**
2434
2420
  * CompleteBootstrap
2435
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
2436
2421
  * @param {*} [options] Override http request option.
2437
2422
  * @throws {RequiredError}
2438
2423
  */
2439
- v1CompleteBootstrap(requestParameters, options) {
2440
- return localVarFp.v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(axios, basePath));
2424
+ v1CompleteBootstrap(options) {
2425
+ return localVarFp.v1CompleteBootstrap(options).then((request) => request(axios, basePath));
2441
2426
  },
2442
2427
  /**
2443
2428
  * Complete an observation.
@@ -2854,13 +2839,12 @@ export class DefaultApi extends BaseAPI {
2854
2839
  }
2855
2840
  /**
2856
2841
  * CompleteBootstrap
2857
- * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
2858
2842
  * @param {*} [options] Override http request option.
2859
2843
  * @throws {RequiredError}
2860
2844
  * @memberof DefaultApi
2861
2845
  */
2862
- v1CompleteBootstrap(requestParameters, options) {
2863
- return DefaultApiFp(this.configuration).v1CompleteBootstrap(requestParameters.v1NodeControllerBootstrapRequest, options).then((request) => request(this.axios, this.basePath));
2846
+ v1CompleteBootstrap(options) {
2847
+ return DefaultApiFp(this.configuration).v1CompleteBootstrap(options).then((request) => request(this.axios, this.basePath));
2864
2848
  }
2865
2849
  /**
2866
2850
  * Complete an observation.
@@ -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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354
5
+ * The version of the OpenAPI document: 1.3.5391
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.5354
8
+ * The version of the OpenAPI document: 1.3.5391
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.5354
7
+ * The version of the OpenAPI document: 1.3.5391
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.5354",
3
+ "version": "1.3.5391",
4
4
  "description": "OpenAPI client for @ourskyai/platform-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {