@ourskyai/platform-api 1.3.5218 → 1.3.5335

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/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.5218
5
+ * The version of the OpenAPI document: 1.3.5335
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.5218
8
+ * The version of the OpenAPI document: 1.3.5335
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.5218
5
+ * The version of the OpenAPI document: 1.3.5335
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.5218
8
+ * The version of the OpenAPI document: 1.3.5335
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.5218
5
+ * The version of the OpenAPI document: 1.3.5335
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.5218
8
+ * The version of the OpenAPI document: 1.3.5335
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.5218
5
+ * The version of the OpenAPI document: 1.3.5335
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1858,6 +1858,31 @@ export declare const V1NodeComponentType: {
1858
1858
  readonly NODE: "NODE";
1859
1859
  };
1860
1860
  export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
1861
+ /**
1862
+ *
1863
+ * @export
1864
+ * @interface V1NodeController
1865
+ */
1866
+ export interface V1NodeController {
1867
+ /**
1868
+ *
1869
+ * @type {string}
1870
+ * @memberof V1NodeController
1871
+ */
1872
+ 'id': string;
1873
+ /**
1874
+ *
1875
+ * @type {string}
1876
+ * @memberof V1NodeController
1877
+ */
1878
+ 'lineageId': string;
1879
+ /**
1880
+ *
1881
+ * @type {V1NodeControllerStatus}
1882
+ * @memberof V1NodeController
1883
+ */
1884
+ 'status': V1NodeControllerStatus;
1885
+ }
1861
1886
  /**
1862
1887
  *
1863
1888
  * @export
@@ -1871,6 +1896,73 @@ export interface V1NodeControllerArtifact {
1871
1896
  */
1872
1897
  'url': string;
1873
1898
  }
1899
+ /**
1900
+ *
1901
+ * @export
1902
+ * @interface V1NodeControllerBootstrapRequest
1903
+ */
1904
+ export interface V1NodeControllerBootstrapRequest {
1905
+ /**
1906
+ *
1907
+ * @type {number}
1908
+ * @memberof V1NodeControllerBootstrapRequest
1909
+ */
1910
+ 'chipSerialNumber': number;
1911
+ }
1912
+ /**
1913
+ *
1914
+ * @export
1915
+ * @interface V1NodeControllerIssueCertificateResponse
1916
+ */
1917
+ export interface V1NodeControllerIssueCertificateResponse {
1918
+ /**
1919
+ * Certificate authority chain
1920
+ * @type {string}
1921
+ * @memberof V1NodeControllerIssueCertificateResponse
1922
+ */
1923
+ 'caChain': string;
1924
+ /**
1925
+ * Node\'s signed certificate
1926
+ * @type {string}
1927
+ * @memberof V1NodeControllerIssueCertificateResponse
1928
+ */
1929
+ 'certificate': string;
1930
+ /**
1931
+ * Issuing certificate authority
1932
+ * @type {string}
1933
+ * @memberof V1NodeControllerIssueCertificateResponse
1934
+ */
1935
+ 'issuingCa': string;
1936
+ /**
1937
+ * Private key associated with the certificate
1938
+ * @type {string}
1939
+ * @memberof V1NodeControllerIssueCertificateResponse
1940
+ */
1941
+ 'privateKey': string;
1942
+ /**
1943
+ * Serial number of the certificate
1944
+ * @type {string}
1945
+ * @memberof V1NodeControllerIssueCertificateResponse
1946
+ */
1947
+ 'serialNumber': string;
1948
+ /**
1949
+ * Type of the private key, e.g., RSA, ECC
1950
+ * @type {string}
1951
+ * @memberof V1NodeControllerIssueCertificateResponse
1952
+ */
1953
+ 'privateKeyType': string;
1954
+ }
1955
+ /**
1956
+ * The status of the bootstrapping process.
1957
+ * @export
1958
+ * @enum {string}
1959
+ */
1960
+ export declare const V1NodeControllerStatus: {
1961
+ readonly PENDING_APPROVAL: "pending_approval";
1962
+ readonly APPROVED: "approved";
1963
+ readonly FINISHED: "finished";
1964
+ };
1965
+ export type V1NodeControllerStatus = typeof V1NodeControllerStatus[keyof typeof V1NodeControllerStatus];
1874
1966
  /**
1875
1967
  *
1876
1968
  * @export
@@ -1912,6 +2004,7 @@ export declare const V1NodeDiagnosticType: {
1912
2004
  readonly ASCOM_SECONDARY_REVERSED: "ASCOM_SECONDARY_REVERSED";
1913
2005
  readonly ASCOM_CAN_TRACK_LEO: "ASCOM_CAN_TRACK_LEO";
1914
2006
  readonly FOCUSER_RANGE: "FOCUSER_RANGE";
2007
+ readonly SKY_FLATS_TAKEN: "SKY_FLATS_TAKEN";
1915
2008
  };
1916
2009
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1917
2010
  /**
@@ -2378,6 +2471,19 @@ export interface V1ReadNoisePoint {
2378
2471
  */
2379
2472
  'eRMS': number;
2380
2473
  }
2474
+ /**
2475
+ *
2476
+ * @export
2477
+ * @interface V1RegisterNodeControllerRequest
2478
+ */
2479
+ export interface V1RegisterNodeControllerRequest {
2480
+ /**
2481
+ *
2482
+ * @type {number}
2483
+ * @memberof V1RegisterNodeControllerRequest
2484
+ */
2485
+ 'chipSerialNumber': number;
2486
+ }
2381
2487
  /**
2382
2488
  * Node Controller Release
2383
2489
  * @export
@@ -2928,6 +3034,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2928
3034
  * @throws {RequiredError}
2929
3035
  */
2930
3036
  v1CameraMatch: (model?: string, pixelSizeMicrons?: number, pixelsX?: number, pixelsY?: number, megapixels?: number, chilled?: boolean, adcBitDepth?: number, isColor?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3037
+ /**
3038
+ * CompleteBootstrap
3039
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3040
+ * @param {*} [options] Override http request option.
3041
+ * @throws {RequiredError}
3042
+ */
3043
+ v1CompleteBootstrap: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2931
3044
  /**
2932
3045
  * Complete an observation.
2933
3046
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3181,6 +3294,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3181
3294
  * @throws {RequiredError}
3182
3295
  */
3183
3296
  v1GetPlateSolveCatalogDiff: (v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3297
+ /**
3298
+ * issueCertificate
3299
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3300
+ * @param {*} [options] Override http request option.
3301
+ * @throws {RequiredError}
3302
+ */
3303
+ v1IssueCertificate: (v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3184
3304
  /**
3185
3305
  * Match mount.
3186
3306
  * @param {string} [model]
@@ -3197,6 +3317,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3197
3317
  * @throws {RequiredError}
3198
3318
  */
3199
3319
  v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3320
+ /**
3321
+ * RegisterNodeController
3322
+ * @param {V1RegisterNodeControllerRequest} v1RegisterNodeControllerRequest
3323
+ * @param {*} [options] Override http request option.
3324
+ * @throws {RequiredError}
3325
+ */
3326
+ v1RegisterNodeController: (v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3200
3327
  /**
3201
3328
  * Update a node.
3202
3329
  * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
@@ -3244,6 +3371,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3244
3371
  * @throws {RequiredError}
3245
3372
  */
3246
3373
  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
+ /**
3375
+ * CompleteBootstrap
3376
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3377
+ * @param {*} [options] Override http request option.
3378
+ * @throws {RequiredError}
3379
+ */
3380
+ v1CompleteBootstrap(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3247
3381
  /**
3248
3382
  * Complete an observation.
3249
3383
  * @param {V1CompleteObservationRequest} v1CompleteObservationRequest
@@ -3497,6 +3631,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3497
3631
  * @throws {RequiredError}
3498
3632
  */
3499
3633
  v1GetPlateSolveCatalogDiff(v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>>;
3634
+ /**
3635
+ * issueCertificate
3636
+ * @param {V1NodeControllerBootstrapRequest} v1NodeControllerBootstrapRequest
3637
+ * @param {*} [options] Override http request option.
3638
+ * @throws {RequiredError}
3639
+ */
3640
+ v1IssueCertificate(v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeControllerIssueCertificateResponse>>;
3500
3641
  /**
3501
3642
  * Match mount.
3502
3643
  * @param {string} [model]
@@ -3513,6 +3654,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3513
3654
  * @throws {RequiredError}
3514
3655
  */
3515
3656
  v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
3657
+ /**
3658
+ * RegisterNodeController
3659
+ * @param {V1RegisterNodeControllerRequest} v1RegisterNodeControllerRequest
3660
+ * @param {*} [options] Override http request option.
3661
+ * @throws {RequiredError}
3662
+ */
3663
+ v1RegisterNodeController(v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1NodeController>>;
3516
3664
  /**
3517
3665
  * Update a node.
3518
3666
  * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
@@ -3553,6 +3701,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3553
3701
  * @throws {RequiredError}
3554
3702
  */
3555
3703
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1Camera>>;
3704
+ /**
3705
+ * CompleteBootstrap
3706
+ * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
3707
+ * @param {*} [options] Override http request option.
3708
+ * @throws {RequiredError}
3709
+ */
3710
+ v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3556
3711
  /**
3557
3712
  * Complete an observation.
3558
3713
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -3803,6 +3958,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3803
3958
  * @throws {RequiredError}
3804
3959
  */
3805
3960
  v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1PlateSolveCatalogFileDownload>>;
3961
+ /**
3962
+ * issueCertificate
3963
+ * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
3964
+ * @param {*} [options] Override http request option.
3965
+ * @throws {RequiredError}
3966
+ */
3967
+ v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeControllerIssueCertificateResponse>;
3806
3968
  /**
3807
3969
  * Match mount.
3808
3970
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
@@ -3817,6 +3979,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3817
3979
  * @throws {RequiredError}
3818
3980
  */
3819
3981
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
3982
+ /**
3983
+ * RegisterNodeController
3984
+ * @param {DefaultApiV1RegisterNodeControllerRequest} requestParameters Request parameters.
3985
+ * @param {*} [options] Override http request option.
3986
+ * @throws {RequiredError}
3987
+ */
3988
+ v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): AxiosPromise<V1NodeController>;
3820
3989
  /**
3821
3990
  * Update a node.
3822
3991
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
@@ -3894,6 +4063,19 @@ export interface DefaultApiV1CameraMatchRequest {
3894
4063
  */
3895
4064
  readonly isColor?: boolean;
3896
4065
  }
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
+ }
3897
4079
  /**
3898
4080
  * Request parameters for v1CompleteObservation operation in DefaultApi.
3899
4081
  * @export
@@ -4354,6 +4536,19 @@ export interface DefaultApiV1GetPlateSolveCatalogDiffRequest {
4354
4536
  */
4355
4537
  readonly v1GetPlateSolveCatalogDiffRequest: V1GetPlateSolveCatalogDiffRequest;
4356
4538
  }
4539
+ /**
4540
+ * Request parameters for v1IssueCertificate operation in DefaultApi.
4541
+ * @export
4542
+ * @interface DefaultApiV1IssueCertificateRequest
4543
+ */
4544
+ export interface DefaultApiV1IssueCertificateRequest {
4545
+ /**
4546
+ *
4547
+ * @type {V1NodeControllerBootstrapRequest}
4548
+ * @memberof DefaultApiV1IssueCertificate
4549
+ */
4550
+ readonly v1NodeControllerBootstrapRequest: V1NodeControllerBootstrapRequest;
4551
+ }
4357
4552
  /**
4358
4553
  * Request parameters for v1MountMatch operation in DefaultApi.
4359
4554
  * @export
@@ -4392,6 +4587,19 @@ export interface DefaultApiV1OpticalTubeMatchRequest {
4392
4587
  */
4393
4588
  readonly apertureMm?: number;
4394
4589
  }
4590
+ /**
4591
+ * Request parameters for v1RegisterNodeController operation in DefaultApi.
4592
+ * @export
4593
+ * @interface DefaultApiV1RegisterNodeControllerRequest
4594
+ */
4595
+ export interface DefaultApiV1RegisterNodeControllerRequest {
4596
+ /**
4597
+ *
4598
+ * @type {V1RegisterNodeControllerRequest}
4599
+ * @memberof DefaultApiV1RegisterNodeController
4600
+ */
4601
+ readonly v1RegisterNodeControllerRequest: V1RegisterNodeControllerRequest;
4602
+ }
4395
4603
  /**
4396
4604
  * Request parameters for v1UpdateNode operation in DefaultApi.
4397
4605
  * @export
@@ -4453,6 +4661,14 @@ export declare class DefaultApi extends BaseAPI {
4453
4661
  * @memberof DefaultApi
4454
4662
  */
4455
4663
  v1CameraMatch(requestParameters?: DefaultApiV1CameraMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1Camera[], any>>;
4664
+ /**
4665
+ * CompleteBootstrap
4666
+ * @param {DefaultApiV1CompleteBootstrapRequest} requestParameters Request parameters.
4667
+ * @param {*} [options] Override http request option.
4668
+ * @throws {RequiredError}
4669
+ * @memberof DefaultApi
4670
+ */
4671
+ v1CompleteBootstrap(requestParameters: DefaultApiV1CompleteBootstrapRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4456
4672
  /**
4457
4673
  * Complete an observation.
4458
4674
  * @param {DefaultApiV1CompleteObservationRequest} requestParameters Request parameters.
@@ -4739,6 +4955,14 @@ export declare class DefaultApi extends BaseAPI {
4739
4955
  * @memberof DefaultApi
4740
4956
  */
4741
4957
  v1GetPlateSolveCatalogDiff(requestParameters: DefaultApiV1GetPlateSolveCatalogDiffRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1PlateSolveCatalogFileDownload[], any>>;
4958
+ /**
4959
+ * issueCertificate
4960
+ * @param {DefaultApiV1IssueCertificateRequest} requestParameters Request parameters.
4961
+ * @param {*} [options] Override http request option.
4962
+ * @throws {RequiredError}
4963
+ * @memberof DefaultApi
4964
+ */
4965
+ v1IssueCertificate(requestParameters: DefaultApiV1IssueCertificateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeControllerIssueCertificateResponse, any>>;
4742
4966
  /**
4743
4967
  * Match mount.
4744
4968
  * @param {DefaultApiV1MountMatchRequest} requestParameters Request parameters.
@@ -4755,6 +4979,14 @@ export declare class DefaultApi extends BaseAPI {
4755
4979
  * @memberof DefaultApi
4756
4980
  */
4757
4981
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
4982
+ /**
4983
+ * RegisterNodeController
4984
+ * @param {DefaultApiV1RegisterNodeControllerRequest} requestParameters Request parameters.
4985
+ * @param {*} [options] Override http request option.
4986
+ * @throws {RequiredError}
4987
+ * @memberof DefaultApi
4988
+ */
4989
+ v1RegisterNodeController(requestParameters: DefaultApiV1RegisterNodeControllerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1NodeController, any>>;
4758
4990
  /**
4759
4991
  * Update a node.
4760
4992
  * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.