@ourskyai/platform-api 1.3.5409 → 1.3.5602
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +50 -8
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +44 -6
- package/dist/api.js +15 -4
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +44 -6
- package/dist/esm/api.js +14 -3
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/platform-api@1.3.
|
|
1
|
+
## @ourskyai/platform-api@1.3.5602
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/platform-api@1.3.
|
|
39
|
+
npm install @ourskyai/platform-api@1.3.5602 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -99,6 +99,19 @@ export interface FitsHeader {
|
|
|
99
99
|
*/
|
|
100
100
|
'value': string;
|
|
101
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @export
|
|
105
|
+
* @enum {string}
|
|
106
|
+
*/
|
|
107
|
+
|
|
108
|
+
export const ImageSetType = {
|
|
109
|
+
ALL_SKY: 'ALL_SKY'
|
|
110
|
+
} as const;
|
|
111
|
+
|
|
112
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
113
|
+
|
|
114
|
+
|
|
102
115
|
/**
|
|
103
116
|
* Location
|
|
104
117
|
* @export
|
|
@@ -286,7 +299,8 @@ export interface SuccessfulCreate {
|
|
|
286
299
|
|
|
287
300
|
export const TrackingType = {
|
|
288
301
|
SIDEREAL: 'SIDEREAL',
|
|
289
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
302
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
303
|
+
NONE: 'NONE'
|
|
290
304
|
} as const;
|
|
291
305
|
|
|
292
306
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
@@ -568,19 +582,19 @@ export interface V1CreateImageSetRequest {
|
|
|
568
582
|
* @type {string}
|
|
569
583
|
* @memberof V1CreateImageSetRequest
|
|
570
584
|
*/
|
|
571
|
-
'
|
|
585
|
+
'nodeId': string;
|
|
572
586
|
/**
|
|
573
587
|
*
|
|
574
588
|
* @type {string}
|
|
575
589
|
* @memberof V1CreateImageSetRequest
|
|
576
590
|
*/
|
|
577
|
-
'
|
|
591
|
+
'observationId'?: string;
|
|
578
592
|
/**
|
|
579
593
|
*
|
|
580
|
-
* @type {
|
|
594
|
+
* @type {ImageSetType}
|
|
581
595
|
* @memberof V1CreateImageSetRequest
|
|
582
596
|
*/
|
|
583
|
-
'
|
|
597
|
+
'type': ImageSetType;
|
|
584
598
|
/**
|
|
585
599
|
*
|
|
586
600
|
* @type {TrackingType}
|
|
@@ -1918,7 +1932,7 @@ export interface V1NodeCommand {
|
|
|
1918
1932
|
* @type V1NodeCommandBody
|
|
1919
1933
|
* @export
|
|
1920
1934
|
*/
|
|
1921
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1935
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1922
1936
|
|
|
1923
1937
|
/**
|
|
1924
1938
|
*
|
|
@@ -1929,7 +1943,9 @@ export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1Sto
|
|
|
1929
1943
|
export const V1NodeCommandType = {
|
|
1930
1944
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
1931
1945
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
1932
|
-
V1_HALT: 'V1_HALT'
|
|
1946
|
+
V1_HALT: 'V1_HALT',
|
|
1947
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
1948
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
1933
1949
|
} as const;
|
|
1934
1950
|
|
|
1935
1951
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
@@ -2591,6 +2607,19 @@ export interface V1ReadNoisePoint {
|
|
|
2591
2607
|
*/
|
|
2592
2608
|
'eRMS': number;
|
|
2593
2609
|
}
|
|
2610
|
+
/**
|
|
2611
|
+
*
|
|
2612
|
+
* @export
|
|
2613
|
+
* @interface V1RebootSystem
|
|
2614
|
+
*/
|
|
2615
|
+
export interface V1RebootSystem {
|
|
2616
|
+
/**
|
|
2617
|
+
*
|
|
2618
|
+
* @type {boolean}
|
|
2619
|
+
* @memberof V1RebootSystem
|
|
2620
|
+
*/
|
|
2621
|
+
'placeholder'?: boolean;
|
|
2622
|
+
}
|
|
2594
2623
|
/**
|
|
2595
2624
|
*
|
|
2596
2625
|
* @export
|
|
@@ -2643,6 +2672,19 @@ export interface V1Release {
|
|
|
2643
2672
|
}
|
|
2644
2673
|
|
|
2645
2674
|
|
|
2675
|
+
/**
|
|
2676
|
+
*
|
|
2677
|
+
* @export
|
|
2678
|
+
* @interface V1RestartAdb
|
|
2679
|
+
*/
|
|
2680
|
+
export interface V1RestartAdb {
|
|
2681
|
+
/**
|
|
2682
|
+
*
|
|
2683
|
+
* @type {boolean}
|
|
2684
|
+
* @memberof V1RestartAdb
|
|
2685
|
+
*/
|
|
2686
|
+
'placeholder'?: boolean;
|
|
2687
|
+
}
|
|
2646
2688
|
/**
|
|
2647
2689
|
*
|
|
2648
2690
|
* @export
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -81,6 +81,15 @@ export interface FitsHeader {
|
|
|
81
81
|
*/
|
|
82
82
|
'value': string;
|
|
83
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @export
|
|
87
|
+
* @enum {string}
|
|
88
|
+
*/
|
|
89
|
+
export declare const ImageSetType: {
|
|
90
|
+
readonly ALL_SKY: "ALL_SKY";
|
|
91
|
+
};
|
|
92
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
84
93
|
/**
|
|
85
94
|
* Location
|
|
86
95
|
* @export
|
|
@@ -244,6 +253,7 @@ export interface SuccessfulCreate {
|
|
|
244
253
|
export declare const TrackingType: {
|
|
245
254
|
readonly SIDEREAL: "SIDEREAL";
|
|
246
255
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
256
|
+
readonly NONE: "NONE";
|
|
247
257
|
};
|
|
248
258
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
249
259
|
/**
|
|
@@ -516,19 +526,19 @@ export interface V1CreateImageSetRequest {
|
|
|
516
526
|
* @type {string}
|
|
517
527
|
* @memberof V1CreateImageSetRequest
|
|
518
528
|
*/
|
|
519
|
-
'
|
|
529
|
+
'nodeId': string;
|
|
520
530
|
/**
|
|
521
531
|
*
|
|
522
532
|
* @type {string}
|
|
523
533
|
* @memberof V1CreateImageSetRequest
|
|
524
534
|
*/
|
|
525
|
-
'
|
|
535
|
+
'observationId'?: string;
|
|
526
536
|
/**
|
|
527
537
|
*
|
|
528
|
-
* @type {
|
|
538
|
+
* @type {ImageSetType}
|
|
529
539
|
* @memberof V1CreateImageSetRequest
|
|
530
540
|
*/
|
|
531
|
-
'
|
|
541
|
+
'type': ImageSetType;
|
|
532
542
|
/**
|
|
533
543
|
*
|
|
534
544
|
* @type {TrackingType}
|
|
@@ -1832,7 +1842,7 @@ export interface V1NodeCommand {
|
|
|
1832
1842
|
* @type V1NodeCommandBody
|
|
1833
1843
|
* @export
|
|
1834
1844
|
*/
|
|
1835
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1845
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1836
1846
|
/**
|
|
1837
1847
|
*
|
|
1838
1848
|
* @export
|
|
@@ -1842,6 +1852,8 @@ export declare const V1NodeCommandType: {
|
|
|
1842
1852
|
readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
|
|
1843
1853
|
readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
|
|
1844
1854
|
readonly V1_HALT: "V1_HALT";
|
|
1855
|
+
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
1856
|
+
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
1845
1857
|
};
|
|
1846
1858
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
1847
1859
|
/**
|
|
@@ -2477,6 +2489,19 @@ export interface V1ReadNoisePoint {
|
|
|
2477
2489
|
*/
|
|
2478
2490
|
'eRMS': number;
|
|
2479
2491
|
}
|
|
2492
|
+
/**
|
|
2493
|
+
*
|
|
2494
|
+
* @export
|
|
2495
|
+
* @interface V1RebootSystem
|
|
2496
|
+
*/
|
|
2497
|
+
export interface V1RebootSystem {
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {boolean}
|
|
2501
|
+
* @memberof V1RebootSystem
|
|
2502
|
+
*/
|
|
2503
|
+
'placeholder'?: boolean;
|
|
2504
|
+
}
|
|
2480
2505
|
/**
|
|
2481
2506
|
*
|
|
2482
2507
|
* @export
|
|
@@ -2527,6 +2552,19 @@ export interface V1Release {
|
|
|
2527
2552
|
*/
|
|
2528
2553
|
'fileType': V1FileType;
|
|
2529
2554
|
}
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
* @export
|
|
2558
|
+
* @interface V1RestartAdb
|
|
2559
|
+
*/
|
|
2560
|
+
export interface V1RestartAdb {
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @type {boolean}
|
|
2564
|
+
* @memberof V1RestartAdb
|
|
2565
|
+
*/
|
|
2566
|
+
'placeholder'?: boolean;
|
|
2567
|
+
}
|
|
2530
2568
|
/**
|
|
2531
2569
|
*
|
|
2532
2570
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeEventType = exports.V1NodeDiagnosticType = exports.V1NodeControllerStatus = exports.V1NodeComponentType = exports.V1NodeCommandType = exports.V1FileType = exports.UploadPriority = exports.TrackingType = exports.ShutterType = exports.OrbitType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeEventType = exports.V1NodeDiagnosticType = exports.V1NodeControllerStatus = exports.V1NodeComponentType = exports.V1NodeCommandType = exports.V1FileType = exports.UploadPriority = exports.TrackingType = exports.ShutterType = exports.OrbitType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.ImageSetType = exports.FilterType = exports.CameraMode = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -63,6 +63,14 @@ exports.FilterType = {
|
|
|
63
63
|
PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
|
|
64
64
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
65
65
|
};
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @export
|
|
69
|
+
* @enum {string}
|
|
70
|
+
*/
|
|
71
|
+
exports.ImageSetType = {
|
|
72
|
+
ALL_SKY: 'ALL_SKY'
|
|
73
|
+
};
|
|
66
74
|
/**
|
|
67
75
|
*
|
|
68
76
|
* @export
|
|
@@ -150,7 +158,8 @@ exports.ShutterType = {
|
|
|
150
158
|
*/
|
|
151
159
|
exports.TrackingType = {
|
|
152
160
|
SIDEREAL: 'SIDEREAL',
|
|
153
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
161
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
162
|
+
NONE: 'NONE'
|
|
154
163
|
};
|
|
155
164
|
/**
|
|
156
165
|
*
|
|
@@ -177,7 +186,9 @@ exports.V1FileType = {
|
|
|
177
186
|
exports.V1NodeCommandType = {
|
|
178
187
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
179
188
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
180
|
-
V1_HALT: 'V1_HALT'
|
|
189
|
+
V1_HALT: 'V1_HALT',
|
|
190
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
191
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
181
192
|
};
|
|
182
193
|
/**
|
|
183
194
|
*
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -81,6 +81,15 @@ export interface FitsHeader {
|
|
|
81
81
|
*/
|
|
82
82
|
'value': string;
|
|
83
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @export
|
|
87
|
+
* @enum {string}
|
|
88
|
+
*/
|
|
89
|
+
export declare const ImageSetType: {
|
|
90
|
+
readonly ALL_SKY: "ALL_SKY";
|
|
91
|
+
};
|
|
92
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
84
93
|
/**
|
|
85
94
|
* Location
|
|
86
95
|
* @export
|
|
@@ -244,6 +253,7 @@ export interface SuccessfulCreate {
|
|
|
244
253
|
export declare const TrackingType: {
|
|
245
254
|
readonly SIDEREAL: "SIDEREAL";
|
|
246
255
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
256
|
+
readonly NONE: "NONE";
|
|
247
257
|
};
|
|
248
258
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
249
259
|
/**
|
|
@@ -516,19 +526,19 @@ export interface V1CreateImageSetRequest {
|
|
|
516
526
|
* @type {string}
|
|
517
527
|
* @memberof V1CreateImageSetRequest
|
|
518
528
|
*/
|
|
519
|
-
'
|
|
529
|
+
'nodeId': string;
|
|
520
530
|
/**
|
|
521
531
|
*
|
|
522
532
|
* @type {string}
|
|
523
533
|
* @memberof V1CreateImageSetRequest
|
|
524
534
|
*/
|
|
525
|
-
'
|
|
535
|
+
'observationId'?: string;
|
|
526
536
|
/**
|
|
527
537
|
*
|
|
528
|
-
* @type {
|
|
538
|
+
* @type {ImageSetType}
|
|
529
539
|
* @memberof V1CreateImageSetRequest
|
|
530
540
|
*/
|
|
531
|
-
'
|
|
541
|
+
'type': ImageSetType;
|
|
532
542
|
/**
|
|
533
543
|
*
|
|
534
544
|
* @type {TrackingType}
|
|
@@ -1832,7 +1842,7 @@ export interface V1NodeCommand {
|
|
|
1832
1842
|
* @type V1NodeCommandBody
|
|
1833
1843
|
* @export
|
|
1834
1844
|
*/
|
|
1835
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1845
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1836
1846
|
/**
|
|
1837
1847
|
*
|
|
1838
1848
|
* @export
|
|
@@ -1842,6 +1852,8 @@ export declare const V1NodeCommandType: {
|
|
|
1842
1852
|
readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
|
|
1843
1853
|
readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
|
|
1844
1854
|
readonly V1_HALT: "V1_HALT";
|
|
1855
|
+
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
1856
|
+
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
1845
1857
|
};
|
|
1846
1858
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
1847
1859
|
/**
|
|
@@ -2477,6 +2489,19 @@ export interface V1ReadNoisePoint {
|
|
|
2477
2489
|
*/
|
|
2478
2490
|
'eRMS': number;
|
|
2479
2491
|
}
|
|
2492
|
+
/**
|
|
2493
|
+
*
|
|
2494
|
+
* @export
|
|
2495
|
+
* @interface V1RebootSystem
|
|
2496
|
+
*/
|
|
2497
|
+
export interface V1RebootSystem {
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {boolean}
|
|
2501
|
+
* @memberof V1RebootSystem
|
|
2502
|
+
*/
|
|
2503
|
+
'placeholder'?: boolean;
|
|
2504
|
+
}
|
|
2480
2505
|
/**
|
|
2481
2506
|
*
|
|
2482
2507
|
* @export
|
|
@@ -2527,6 +2552,19 @@ export interface V1Release {
|
|
|
2527
2552
|
*/
|
|
2528
2553
|
'fileType': V1FileType;
|
|
2529
2554
|
}
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
* @export
|
|
2558
|
+
* @interface V1RestartAdb
|
|
2559
|
+
*/
|
|
2560
|
+
export interface V1RestartAdb {
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @type {boolean}
|
|
2564
|
+
* @memberof V1RestartAdb
|
|
2565
|
+
*/
|
|
2566
|
+
'placeholder'?: boolean;
|
|
2567
|
+
}
|
|
2530
2568
|
/**
|
|
2531
2569
|
*
|
|
2532
2570
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -60,6 +60,14 @@ export const FilterType = {
|
|
|
60
60
|
PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
|
|
61
61
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
62
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @export
|
|
66
|
+
* @enum {string}
|
|
67
|
+
*/
|
|
68
|
+
export const ImageSetType = {
|
|
69
|
+
ALL_SKY: 'ALL_SKY'
|
|
70
|
+
};
|
|
63
71
|
/**
|
|
64
72
|
*
|
|
65
73
|
* @export
|
|
@@ -147,7 +155,8 @@ export const ShutterType = {
|
|
|
147
155
|
*/
|
|
148
156
|
export const TrackingType = {
|
|
149
157
|
SIDEREAL: 'SIDEREAL',
|
|
150
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
158
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
159
|
+
NONE: 'NONE'
|
|
151
160
|
};
|
|
152
161
|
/**
|
|
153
162
|
*
|
|
@@ -174,7 +183,9 @@ export const V1FileType = {
|
|
|
174
183
|
export const V1NodeCommandType = {
|
|
175
184
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
176
185
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
177
|
-
V1_HALT: 'V1_HALT'
|
|
186
|
+
V1_HALT: 'V1_HALT',
|
|
187
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
188
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
178
189
|
};
|
|
179
190
|
/**
|
|
180
191
|
*
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Platform
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Platform
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Platform
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.5602
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|