@ourskyai/platform-api 1.3.4907 → 1.3.4971
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 +34 -21
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +33 -20
- package/dist/api.js +8 -2
- 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 +33 -20
- package/dist/esm/api.js +8 -2
- 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.4971
|
|
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.4971 --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.4971
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -595,12 +595,6 @@ export interface V1CreateMountRequest {
|
|
|
595
595
|
* @memberof V1CreateMountRequest
|
|
596
596
|
*/
|
|
597
597
|
'mountType': MountType;
|
|
598
|
-
/**
|
|
599
|
-
*
|
|
600
|
-
* @type {number}
|
|
601
|
-
* @memberof V1CreateMountRequest
|
|
602
|
-
*/
|
|
603
|
-
'slewRate': number;
|
|
604
598
|
}
|
|
605
599
|
|
|
606
600
|
|
|
@@ -706,7 +700,7 @@ export interface V1CreateNodeEvent {
|
|
|
706
700
|
* @type V1CreateNodeEventBody
|
|
707
701
|
* @export
|
|
708
702
|
*/
|
|
709
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
703
|
+
export type V1CreateNodeEventBody = V1DurationMeasured | V1LogRecorded | V1SafetyStatusUpdated;
|
|
710
704
|
|
|
711
705
|
/**
|
|
712
706
|
*
|
|
@@ -830,6 +824,31 @@ export interface V1DiagnosticInstruction {
|
|
|
830
824
|
}
|
|
831
825
|
|
|
832
826
|
|
|
827
|
+
/**
|
|
828
|
+
*
|
|
829
|
+
* @export
|
|
830
|
+
* @interface V1DurationMeasured
|
|
831
|
+
*/
|
|
832
|
+
export interface V1DurationMeasured {
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @type {string}
|
|
836
|
+
* @memberof V1DurationMeasured
|
|
837
|
+
*/
|
|
838
|
+
'name': string;
|
|
839
|
+
/**
|
|
840
|
+
*
|
|
841
|
+
* @type {string}
|
|
842
|
+
* @memberof V1DurationMeasured
|
|
843
|
+
*/
|
|
844
|
+
'startedAt': string;
|
|
845
|
+
/**
|
|
846
|
+
*
|
|
847
|
+
* @type {string}
|
|
848
|
+
* @memberof V1DurationMeasured
|
|
849
|
+
*/
|
|
850
|
+
'endedAt': string;
|
|
851
|
+
}
|
|
833
852
|
/**
|
|
834
853
|
* Elevation Mask Point
|
|
835
854
|
* @export
|
|
@@ -1140,12 +1159,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1140
1159
|
* @memberof V1GetOrCreateMountRequest
|
|
1141
1160
|
*/
|
|
1142
1161
|
'type'?: MountType;
|
|
1143
|
-
/**
|
|
1144
|
-
*
|
|
1145
|
-
* @type {number}
|
|
1146
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1147
|
-
*/
|
|
1148
|
-
'slewRate'?: number;
|
|
1149
1162
|
}
|
|
1150
1163
|
|
|
1151
1164
|
|
|
@@ -1858,7 +1871,13 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1858
1871
|
|
|
1859
1872
|
export const V1NodeEventType = {
|
|
1860
1873
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
1861
|
-
V1_LOG_RECORDED: 'V1_LOG_RECORDED'
|
|
1874
|
+
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
1875
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
1876
|
+
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
1877
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
1878
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
1879
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
1880
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
1862
1881
|
} as const;
|
|
1863
1882
|
|
|
1864
1883
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
@@ -2616,12 +2635,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2616
2635
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2617
2636
|
*/
|
|
2618
2637
|
'type'?: MountType;
|
|
2619
|
-
/**
|
|
2620
|
-
*
|
|
2621
|
-
* @type {number}
|
|
2622
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2623
|
-
*/
|
|
2624
|
-
'slewRate'?: number;
|
|
2625
2638
|
}
|
|
2626
2639
|
|
|
2627
2640
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -541,12 +541,6 @@ export interface V1CreateMountRequest {
|
|
|
541
541
|
* @memberof V1CreateMountRequest
|
|
542
542
|
*/
|
|
543
543
|
'mountType': MountType;
|
|
544
|
-
/**
|
|
545
|
-
*
|
|
546
|
-
* @type {number}
|
|
547
|
-
* @memberof V1CreateMountRequest
|
|
548
|
-
*/
|
|
549
|
-
'slewRate': number;
|
|
550
544
|
}
|
|
551
545
|
/**
|
|
552
546
|
*
|
|
@@ -646,7 +640,7 @@ export interface V1CreateNodeEvent {
|
|
|
646
640
|
* @type V1CreateNodeEventBody
|
|
647
641
|
* @export
|
|
648
642
|
*/
|
|
649
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
643
|
+
export type V1CreateNodeEventBody = V1DurationMeasured | V1LogRecorded | V1SafetyStatusUpdated;
|
|
650
644
|
/**
|
|
651
645
|
*
|
|
652
646
|
* @export
|
|
@@ -765,6 +759,31 @@ export interface V1DiagnosticInstruction {
|
|
|
765
759
|
*/
|
|
766
760
|
'diagnosticType': V1NodeDiagnosticType;
|
|
767
761
|
}
|
|
762
|
+
/**
|
|
763
|
+
*
|
|
764
|
+
* @export
|
|
765
|
+
* @interface V1DurationMeasured
|
|
766
|
+
*/
|
|
767
|
+
export interface V1DurationMeasured {
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* @type {string}
|
|
771
|
+
* @memberof V1DurationMeasured
|
|
772
|
+
*/
|
|
773
|
+
'name': string;
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {string}
|
|
777
|
+
* @memberof V1DurationMeasured
|
|
778
|
+
*/
|
|
779
|
+
'startedAt': string;
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof V1DurationMeasured
|
|
784
|
+
*/
|
|
785
|
+
'endedAt': string;
|
|
786
|
+
}
|
|
768
787
|
/**
|
|
769
788
|
* Elevation Mask Point
|
|
770
789
|
* @export
|
|
@@ -1069,12 +1088,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1069
1088
|
* @memberof V1GetOrCreateMountRequest
|
|
1070
1089
|
*/
|
|
1071
1090
|
'type'?: MountType;
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1076
|
-
*/
|
|
1077
|
-
'slewRate'?: number;
|
|
1078
1091
|
}
|
|
1079
1092
|
/**
|
|
1080
1093
|
*
|
|
@@ -1765,6 +1778,12 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1765
1778
|
export declare const V1NodeEventType: {
|
|
1766
1779
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1767
1780
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1781
|
+
readonly V1_DURATION_MEASURED: "V1_DURATION_MEASURED";
|
|
1782
|
+
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1783
|
+
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1784
|
+
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
1785
|
+
readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
|
|
1786
|
+
readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
|
|
1768
1787
|
};
|
|
1769
1788
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
1770
1789
|
/**
|
|
@@ -2510,12 +2529,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2510
2529
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2511
2530
|
*/
|
|
2512
2531
|
'type'?: MountType;
|
|
2513
|
-
/**
|
|
2514
|
-
*
|
|
2515
|
-
* @type {number}
|
|
2516
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2517
|
-
*/
|
|
2518
|
-
'slewRate'?: number;
|
|
2519
2532
|
}
|
|
2520
2533
|
/**
|
|
2521
2534
|
*
|
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.4971
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -230,7 +230,13 @@ exports.V1NodeDiagnosticType = {
|
|
|
230
230
|
*/
|
|
231
231
|
exports.V1NodeEventType = {
|
|
232
232
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
233
|
-
V1_LOG_RECORDED: 'V1_LOG_RECORDED'
|
|
233
|
+
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
234
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
235
|
+
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
236
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
237
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
238
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
239
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
234
240
|
};
|
|
235
241
|
exports.V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
236
242
|
DOWNLOAD: 'DOWNLOAD',
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -541,12 +541,6 @@ export interface V1CreateMountRequest {
|
|
|
541
541
|
* @memberof V1CreateMountRequest
|
|
542
542
|
*/
|
|
543
543
|
'mountType': MountType;
|
|
544
|
-
/**
|
|
545
|
-
*
|
|
546
|
-
* @type {number}
|
|
547
|
-
* @memberof V1CreateMountRequest
|
|
548
|
-
*/
|
|
549
|
-
'slewRate': number;
|
|
550
544
|
}
|
|
551
545
|
/**
|
|
552
546
|
*
|
|
@@ -646,7 +640,7 @@ export interface V1CreateNodeEvent {
|
|
|
646
640
|
* @type V1CreateNodeEventBody
|
|
647
641
|
* @export
|
|
648
642
|
*/
|
|
649
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
643
|
+
export type V1CreateNodeEventBody = V1DurationMeasured | V1LogRecorded | V1SafetyStatusUpdated;
|
|
650
644
|
/**
|
|
651
645
|
*
|
|
652
646
|
* @export
|
|
@@ -765,6 +759,31 @@ export interface V1DiagnosticInstruction {
|
|
|
765
759
|
*/
|
|
766
760
|
'diagnosticType': V1NodeDiagnosticType;
|
|
767
761
|
}
|
|
762
|
+
/**
|
|
763
|
+
*
|
|
764
|
+
* @export
|
|
765
|
+
* @interface V1DurationMeasured
|
|
766
|
+
*/
|
|
767
|
+
export interface V1DurationMeasured {
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* @type {string}
|
|
771
|
+
* @memberof V1DurationMeasured
|
|
772
|
+
*/
|
|
773
|
+
'name': string;
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {string}
|
|
777
|
+
* @memberof V1DurationMeasured
|
|
778
|
+
*/
|
|
779
|
+
'startedAt': string;
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof V1DurationMeasured
|
|
784
|
+
*/
|
|
785
|
+
'endedAt': string;
|
|
786
|
+
}
|
|
768
787
|
/**
|
|
769
788
|
* Elevation Mask Point
|
|
770
789
|
* @export
|
|
@@ -1069,12 +1088,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1069
1088
|
* @memberof V1GetOrCreateMountRequest
|
|
1070
1089
|
*/
|
|
1071
1090
|
'type'?: MountType;
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1076
|
-
*/
|
|
1077
|
-
'slewRate'?: number;
|
|
1078
1091
|
}
|
|
1079
1092
|
/**
|
|
1080
1093
|
*
|
|
@@ -1765,6 +1778,12 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1765
1778
|
export declare const V1NodeEventType: {
|
|
1766
1779
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1767
1780
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1781
|
+
readonly V1_DURATION_MEASURED: "V1_DURATION_MEASURED";
|
|
1782
|
+
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1783
|
+
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1784
|
+
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
1785
|
+
readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
|
|
1786
|
+
readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
|
|
1768
1787
|
};
|
|
1769
1788
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
1770
1789
|
/**
|
|
@@ -2510,12 +2529,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2510
2529
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2511
2530
|
*/
|
|
2512
2531
|
'type'?: MountType;
|
|
2513
|
-
/**
|
|
2514
|
-
*
|
|
2515
|
-
* @type {number}
|
|
2516
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2517
|
-
*/
|
|
2518
|
-
'slewRate'?: number;
|
|
2519
2532
|
}
|
|
2520
2533
|
/**
|
|
2521
2534
|
*
|
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.4971
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -227,7 +227,13 @@ export const V1NodeDiagnosticType = {
|
|
|
227
227
|
*/
|
|
228
228
|
export const V1NodeEventType = {
|
|
229
229
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
230
|
-
V1_LOG_RECORDED: 'V1_LOG_RECORDED'
|
|
230
|
+
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
231
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
232
|
+
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
233
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
234
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
235
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
236
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
231
237
|
};
|
|
232
238
|
export const V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
233
239
|
DOWNLOAD: 'DOWNLOAD',
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
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.4971
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|