@ourskyai/platform-api 1.3.2078 → 1.3.2229

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/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.2078
7
+ * The version of the OpenAPI document: 1.3.2229
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.2078
5
+ * The version of the OpenAPI document: 1.3.2229
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -421,6 +421,61 @@ export interface V1CreateNodeDiagnosticsRequest {
421
421
  */
422
422
  'diagnostics': Array<V1CreateNodeDiagnostic>;
423
423
  }
424
+ /**
425
+ * Create Node
426
+ * @export
427
+ * @interface V1CreateNodeRequest
428
+ */
429
+ export interface V1CreateNodeRequest {
430
+ /**
431
+ *
432
+ * @type {string}
433
+ * @memberof V1CreateNodeRequest
434
+ */
435
+ 'name': string;
436
+ /**
437
+ *
438
+ * @type {string}
439
+ * @memberof V1CreateNodeRequest
440
+ */
441
+ 'observatoryId'?: string;
442
+ /**
443
+ *
444
+ * @type {string}
445
+ * @memberof V1CreateNodeRequest
446
+ */
447
+ 'cameraId': string;
448
+ /**
449
+ *
450
+ * @type {string}
451
+ * @memberof V1CreateNodeRequest
452
+ */
453
+ 'opticalTubeId': string;
454
+ /**
455
+ *
456
+ * @type {string}
457
+ * @memberof V1CreateNodeRequest
458
+ */
459
+ 'mountId': string;
460
+ /**
461
+ *
462
+ * @type {string}
463
+ * @memberof V1CreateNodeRequest
464
+ */
465
+ 'filterWheelId'?: string;
466
+ /**
467
+ *
468
+ * @type {number}
469
+ * @memberof V1CreateNodeRequest
470
+ */
471
+ 'maxAltitude': number;
472
+ /**
473
+ *
474
+ * @type {Location}
475
+ * @memberof V1CreateNodeRequest
476
+ */
477
+ 'location': Location;
478
+ }
424
479
  /**
425
480
  *
426
481
  * @export
@@ -452,6 +507,31 @@ export interface V1CreateOpticalTubeRequest {
452
507
  */
453
508
  'type'?: OpticalTubeType;
454
509
  }
510
+ /**
511
+ * Elevation Mask Point
512
+ * @export
513
+ * @interface V1ElevationMaskPoint
514
+ */
515
+ export interface V1ElevationMaskPoint {
516
+ /**
517
+ *
518
+ * @type {number}
519
+ * @memberof V1ElevationMaskPoint
520
+ */
521
+ 'azimuthDegrees': number;
522
+ /**
523
+ *
524
+ * @type {number}
525
+ * @memberof V1ElevationMaskPoint
526
+ */
527
+ 'minAltitudeDegrees': number;
528
+ /**
529
+ *
530
+ * @type {number}
531
+ * @memberof V1ElevationMaskPoint
532
+ */
533
+ 'maxAltitudeDegrees': number;
534
+ }
455
535
  /**
456
536
  * Gain Curve
457
537
  * @export
@@ -880,6 +960,12 @@ export interface V1ImageSetImage {
880
960
  * @memberof V1ImageSetImage
881
961
  */
882
962
  'imageUrl': string;
963
+ /**
964
+ *
965
+ * @type {string}
966
+ * @memberof V1ImageSetImage
967
+ */
968
+ 'fullJpgUrl'?: string;
883
969
  /**
884
970
  *
885
971
  * @type {string}
@@ -1111,6 +1197,12 @@ export interface V1Node {
1111
1197
  * @memberof V1Node
1112
1198
  */
1113
1199
  'minAltitude': number;
1200
+ /**
1201
+ *
1202
+ * @type {Array<V1ElevationMaskPoint>}
1203
+ * @memberof V1Node
1204
+ */
1205
+ 'elevationMask'?: Array<V1ElevationMaskPoint>;
1114
1206
  /**
1115
1207
  *
1116
1208
  * @type {string}
@@ -1165,6 +1257,7 @@ export declare const V1NodeDiagnosticType: {
1165
1257
  readonly CAMERA_CHECKED: "CAMERA_CHECKED";
1166
1258
  readonly MOUNT_CHECKED: "MOUNT_CHECKED";
1167
1259
  readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
1260
+ readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
1168
1261
  };
1169
1262
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1170
1263
  /**
@@ -1548,6 +1641,79 @@ export interface V1UpdateNodeMetricsRequest {
1548
1641
  */
1549
1642
  'measuredAt': string;
1550
1643
  }
1644
+ /**
1645
+ * Update Node
1646
+ * @export
1647
+ * @interface V1UpdateNodeRequest
1648
+ */
1649
+ export interface V1UpdateNodeRequest {
1650
+ /**
1651
+ *
1652
+ * @type {string}
1653
+ * @memberof V1UpdateNodeRequest
1654
+ */
1655
+ 'nodeId': string;
1656
+ /**
1657
+ *
1658
+ * @type {string}
1659
+ * @memberof V1UpdateNodeRequest
1660
+ */
1661
+ 'name'?: string;
1662
+ /**
1663
+ *
1664
+ * @type {string}
1665
+ * @memberof V1UpdateNodeRequest
1666
+ */
1667
+ 'observatoryId'?: string;
1668
+ /**
1669
+ *
1670
+ * @type {string}
1671
+ * @memberof V1UpdateNodeRequest
1672
+ */
1673
+ 'cameraId'?: string;
1674
+ /**
1675
+ *
1676
+ * @type {string}
1677
+ * @memberof V1UpdateNodeRequest
1678
+ */
1679
+ 'opticalTubeId'?: string;
1680
+ /**
1681
+ *
1682
+ * @type {string}
1683
+ * @memberof V1UpdateNodeRequest
1684
+ */
1685
+ 'mountId'?: string;
1686
+ /**
1687
+ *
1688
+ * @type {string}
1689
+ * @memberof V1UpdateNodeRequest
1690
+ */
1691
+ 'filterWheelId'?: string;
1692
+ /**
1693
+ *
1694
+ * @type {number}
1695
+ * @memberof V1UpdateNodeRequest
1696
+ */
1697
+ 'maxAltitude'?: number;
1698
+ /**
1699
+ *
1700
+ * @type {Array<V1ElevationMaskPoint>}
1701
+ * @memberof V1UpdateNodeRequest
1702
+ */
1703
+ 'elevationMask'?: Array<V1ElevationMaskPoint>;
1704
+ /**
1705
+ *
1706
+ * @type {Location}
1707
+ * @memberof V1UpdateNodeRequest
1708
+ */
1709
+ 'location'?: Location;
1710
+ /**
1711
+ *
1712
+ * @type {NodeState}
1713
+ * @memberof V1UpdateNodeRequest
1714
+ */
1715
+ 'state'?: NodeState;
1716
+ }
1551
1717
  /**
1552
1718
  *
1553
1719
  * @export
@@ -1767,6 +1933,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1767
1933
  * @throws {RequiredError}
1768
1934
  */
1769
1935
  v1CreateMount: (v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1936
+ /**
1937
+ * Create a node.
1938
+ * @param {V1CreateNodeRequest} v1CreateNodeRequest
1939
+ * @param {*} [options] Override http request option.
1940
+ * @throws {RequiredError}
1941
+ */
1942
+ v1CreateNode: (v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1770
1943
  /**
1771
1944
  * Create node diagnostics.
1772
1945
  * @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
@@ -1781,6 +1954,20 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1781
1954
  * @throws {RequiredError}
1782
1955
  */
1783
1956
  v1CreateOpticalTube: (v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1957
+ /**
1958
+ * Delete an image set.
1959
+ * @param {string} id
1960
+ * @param {*} [options] Override http request option.
1961
+ * @throws {RequiredError}
1962
+ */
1963
+ v1DeleteImageSet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1964
+ /**
1965
+ * Delete an image.
1966
+ * @param {string} imageId
1967
+ * @param {*} [options] Override http request option.
1968
+ * @throws {RequiredError}
1969
+ */
1970
+ v1DeleteImageSetImage: (imageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1784
1971
  /**
1785
1972
  * Get cameras.
1786
1973
  * @param {*} [options] Override http request option.
@@ -1872,6 +2059,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1872
2059
  * @throws {RequiredError}
1873
2060
  */
1874
2061
  v1OpticalTubeMatch: (model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2062
+ /**
2063
+ * Update a node.
2064
+ * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
2065
+ * @param {*} [options] Override http request option.
2066
+ * @throws {RequiredError}
2067
+ */
2068
+ v1UpdateNode: (v1UpdateNodeRequest: V1UpdateNodeRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1875
2069
  /**
1876
2070
  * Update node components.
1877
2071
  * @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
@@ -1955,6 +2149,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1955
2149
  * @throws {RequiredError}
1956
2150
  */
1957
2151
  v1CreateMount(v1CreateMountRequest: V1CreateMountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2152
+ /**
2153
+ * Create a node.
2154
+ * @param {V1CreateNodeRequest} v1CreateNodeRequest
2155
+ * @param {*} [options] Override http request option.
2156
+ * @throws {RequiredError}
2157
+ */
2158
+ v1CreateNode(v1CreateNodeRequest: V1CreateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
1958
2159
  /**
1959
2160
  * Create node diagnostics.
1960
2161
  * @param {V1CreateNodeDiagnosticsRequest} v1CreateNodeDiagnosticsRequest
@@ -1969,6 +2170,20 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1969
2170
  * @throws {RequiredError}
1970
2171
  */
1971
2172
  v1CreateOpticalTube(v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessfulCreate>>;
2173
+ /**
2174
+ * Delete an image set.
2175
+ * @param {string} id
2176
+ * @param {*} [options] Override http request option.
2177
+ * @throws {RequiredError}
2178
+ */
2179
+ v1DeleteImageSet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2180
+ /**
2181
+ * Delete an image.
2182
+ * @param {string} imageId
2183
+ * @param {*} [options] Override http request option.
2184
+ * @throws {RequiredError}
2185
+ */
2186
+ v1DeleteImageSetImage(imageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
1972
2187
  /**
1973
2188
  * Get cameras.
1974
2189
  * @param {*} [options] Override http request option.
@@ -2060,6 +2275,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2060
2275
  * @throws {RequiredError}
2061
2276
  */
2062
2277
  v1OpticalTubeMatch(model?: string, focalLengthMm?: number, apertureMm?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1OpticalTube>>>;
2278
+ /**
2279
+ * Update a node.
2280
+ * @param {V1UpdateNodeRequest} v1UpdateNodeRequest
2281
+ * @param {*} [options] Override http request option.
2282
+ * @throws {RequiredError}
2283
+ */
2284
+ v1UpdateNode(v1UpdateNodeRequest: V1UpdateNodeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2063
2285
  /**
2064
2286
  * Update node components.
2065
2287
  * @param {V1UpdateNodeComponentsRequest} v1UpdateNodeComponentsRequest
@@ -2136,6 +2358,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2136
2358
  * @throws {RequiredError}
2137
2359
  */
2138
2360
  v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2361
+ /**
2362
+ * Create a node.
2363
+ * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2364
+ * @param {*} [options] Override http request option.
2365
+ * @throws {RequiredError}
2366
+ */
2367
+ v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2139
2368
  /**
2140
2369
  * Create node diagnostics.
2141
2370
  * @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
@@ -2150,6 +2379,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2150
2379
  * @throws {RequiredError}
2151
2380
  */
2152
2381
  v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): AxiosPromise<SuccessfulCreate>;
2382
+ /**
2383
+ * Delete an image set.
2384
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
2385
+ * @param {*} [options] Override http request option.
2386
+ * @throws {RequiredError}
2387
+ */
2388
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2389
+ /**
2390
+ * Delete an image.
2391
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
2392
+ * @param {*} [options] Override http request option.
2393
+ * @throws {RequiredError}
2394
+ */
2395
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2153
2396
  /**
2154
2397
  * Get cameras.
2155
2398
  * @param {*} [options] Override http request option.
@@ -2239,6 +2482,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2239
2482
  * @throws {RequiredError}
2240
2483
  */
2241
2484
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1OpticalTube>>;
2485
+ /**
2486
+ * Update a node.
2487
+ * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
2488
+ * @param {*} [options] Override http request option.
2489
+ * @throws {RequiredError}
2490
+ */
2491
+ v1UpdateNode(requestParameters: DefaultApiV1UpdateNodeRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
2242
2492
  /**
2243
2493
  * Update node components.
2244
2494
  * @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.
@@ -2388,6 +2638,19 @@ export interface DefaultApiV1CreateMountRequest {
2388
2638
  */
2389
2639
  readonly v1CreateMountRequest: V1CreateMountRequest;
2390
2640
  }
2641
+ /**
2642
+ * Request parameters for v1CreateNode operation in DefaultApi.
2643
+ * @export
2644
+ * @interface DefaultApiV1CreateNodeRequest
2645
+ */
2646
+ export interface DefaultApiV1CreateNodeRequest {
2647
+ /**
2648
+ *
2649
+ * @type {V1CreateNodeRequest}
2650
+ * @memberof DefaultApiV1CreateNode
2651
+ */
2652
+ readonly v1CreateNodeRequest: V1CreateNodeRequest;
2653
+ }
2391
2654
  /**
2392
2655
  * Request parameters for v1CreateNodeDiagnostics operation in DefaultApi.
2393
2656
  * @export
@@ -2414,6 +2677,32 @@ export interface DefaultApiV1CreateOpticalTubeRequest {
2414
2677
  */
2415
2678
  readonly v1CreateOpticalTubeRequest: V1CreateOpticalTubeRequest;
2416
2679
  }
2680
+ /**
2681
+ * Request parameters for v1DeleteImageSet operation in DefaultApi.
2682
+ * @export
2683
+ * @interface DefaultApiV1DeleteImageSetRequest
2684
+ */
2685
+ export interface DefaultApiV1DeleteImageSetRequest {
2686
+ /**
2687
+ *
2688
+ * @type {string}
2689
+ * @memberof DefaultApiV1DeleteImageSet
2690
+ */
2691
+ readonly id: string;
2692
+ }
2693
+ /**
2694
+ * Request parameters for v1DeleteImageSetImage operation in DefaultApi.
2695
+ * @export
2696
+ * @interface DefaultApiV1DeleteImageSetImageRequest
2697
+ */
2698
+ export interface DefaultApiV1DeleteImageSetImageRequest {
2699
+ /**
2700
+ *
2701
+ * @type {string}
2702
+ * @memberof DefaultApiV1DeleteImageSetImage
2703
+ */
2704
+ readonly imageId: string;
2705
+ }
2417
2706
  /**
2418
2707
  * Request parameters for v1GetImageSet operation in DefaultApi.
2419
2708
  * @export
@@ -2569,6 +2858,19 @@ export interface DefaultApiV1OpticalTubeMatchRequest {
2569
2858
  */
2570
2859
  readonly apertureMm?: number;
2571
2860
  }
2861
+ /**
2862
+ * Request parameters for v1UpdateNode operation in DefaultApi.
2863
+ * @export
2864
+ * @interface DefaultApiV1UpdateNodeRequest
2865
+ */
2866
+ export interface DefaultApiV1UpdateNodeRequest {
2867
+ /**
2868
+ *
2869
+ * @type {V1UpdateNodeRequest}
2870
+ * @memberof DefaultApiV1UpdateNode
2871
+ */
2872
+ readonly v1UpdateNodeRequest: V1UpdateNodeRequest;
2873
+ }
2572
2874
  /**
2573
2875
  * Request parameters for v1UpdateNodeComponents operation in DefaultApi.
2574
2876
  * @export
@@ -2676,6 +2978,14 @@ export declare class DefaultApi extends BaseAPI {
2676
2978
  * @memberof DefaultApi
2677
2979
  */
2678
2980
  v1CreateMount(requestParameters: DefaultApiV1CreateMountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2981
+ /**
2982
+ * Create a node.
2983
+ * @param {DefaultApiV1CreateNodeRequest} requestParameters Request parameters.
2984
+ * @param {*} [options] Override http request option.
2985
+ * @throws {RequiredError}
2986
+ * @memberof DefaultApi
2987
+ */
2988
+ v1CreateNode(requestParameters: DefaultApiV1CreateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
2679
2989
  /**
2680
2990
  * Create node diagnostics.
2681
2991
  * @param {DefaultApiV1CreateNodeDiagnosticsRequest} requestParameters Request parameters.
@@ -2692,6 +3002,22 @@ export declare class DefaultApi extends BaseAPI {
2692
3002
  * @memberof DefaultApi
2693
3003
  */
2694
3004
  v1CreateOpticalTube(requestParameters: DefaultApiV1CreateOpticalTubeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SuccessfulCreate, any>>;
3005
+ /**
3006
+ * Delete an image set.
3007
+ * @param {DefaultApiV1DeleteImageSetRequest} requestParameters Request parameters.
3008
+ * @param {*} [options] Override http request option.
3009
+ * @throws {RequiredError}
3010
+ * @memberof DefaultApi
3011
+ */
3012
+ v1DeleteImageSet(requestParameters: DefaultApiV1DeleteImageSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3013
+ /**
3014
+ * Delete an image.
3015
+ * @param {DefaultApiV1DeleteImageSetImageRequest} requestParameters Request parameters.
3016
+ * @param {*} [options] Override http request option.
3017
+ * @throws {RequiredError}
3018
+ * @memberof DefaultApi
3019
+ */
3020
+ v1DeleteImageSetImage(requestParameters: DefaultApiV1DeleteImageSetImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
2695
3021
  /**
2696
3022
  * Get cameras.
2697
3023
  * @param {*} [options] Override http request option.
@@ -2794,6 +3120,14 @@ export declare class DefaultApi extends BaseAPI {
2794
3120
  * @memberof DefaultApi
2795
3121
  */
2796
3122
  v1OpticalTubeMatch(requestParameters?: DefaultApiV1OpticalTubeMatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1OpticalTube[], any>>;
3123
+ /**
3124
+ * Update a node.
3125
+ * @param {DefaultApiV1UpdateNodeRequest} requestParameters Request parameters.
3126
+ * @param {*} [options] Override http request option.
3127
+ * @throws {RequiredError}
3128
+ * @memberof DefaultApi
3129
+ */
3130
+ v1UpdateNode(requestParameters: DefaultApiV1UpdateNodeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
2797
3131
  /**
2798
3132
  * Update node components.
2799
3133
  * @param {DefaultApiV1UpdateNodeComponentsRequest} requestParameters Request parameters.