@ourskyai/platform-api 1.3.4931 → 1.3.5002
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 +4 -53
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +4 -52
- package/dist/api.js +2 -1
- 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 +4 -52
- package/dist/esm/api.js +2 -1
- 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.5002
|
|
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.5002 --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.5002
|
|
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
|
|
|
@@ -689,10 +683,10 @@ export interface V1CreateNodeEvent {
|
|
|
689
683
|
'type': V1NodeEventType;
|
|
690
684
|
/**
|
|
691
685
|
*
|
|
692
|
-
* @type {
|
|
686
|
+
* @type {object}
|
|
693
687
|
* @memberof V1CreateNodeEvent
|
|
694
688
|
*/
|
|
695
|
-
'body':
|
|
689
|
+
'body': object;
|
|
696
690
|
/**
|
|
697
691
|
*
|
|
698
692
|
* @type {string}
|
|
@@ -702,12 +696,6 @@ export interface V1CreateNodeEvent {
|
|
|
702
696
|
}
|
|
703
697
|
|
|
704
698
|
|
|
705
|
-
/**
|
|
706
|
-
* @type V1CreateNodeEventBody
|
|
707
|
-
* @export
|
|
708
|
-
*/
|
|
709
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
710
|
-
|
|
711
699
|
/**
|
|
712
700
|
*
|
|
713
701
|
* @export
|
|
@@ -1140,12 +1128,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1140
1128
|
* @memberof V1GetOrCreateMountRequest
|
|
1141
1129
|
*/
|
|
1142
1130
|
'type'?: MountType;
|
|
1143
|
-
/**
|
|
1144
|
-
*
|
|
1145
|
-
* @type {number}
|
|
1146
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1147
|
-
*/
|
|
1148
|
-
'slewRate'?: number;
|
|
1149
1131
|
}
|
|
1150
1132
|
|
|
1151
1133
|
|
|
@@ -1597,19 +1579,6 @@ export interface V1LatestHfrResponse {
|
|
|
1597
1579
|
*/
|
|
1598
1580
|
'timestamp'?: string;
|
|
1599
1581
|
}
|
|
1600
|
-
/**
|
|
1601
|
-
*
|
|
1602
|
-
* @export
|
|
1603
|
-
* @interface V1LogRecorded
|
|
1604
|
-
*/
|
|
1605
|
-
export interface V1LogRecorded {
|
|
1606
|
-
/**
|
|
1607
|
-
*
|
|
1608
|
-
* @type {string}
|
|
1609
|
-
* @memberof V1LogRecorded
|
|
1610
|
-
*/
|
|
1611
|
-
'log': string;
|
|
1612
|
-
}
|
|
1613
1582
|
/**
|
|
1614
1583
|
*
|
|
1615
1584
|
* @export
|
|
@@ -1859,6 +1828,7 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1859
1828
|
export const V1NodeEventType = {
|
|
1860
1829
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
1861
1830
|
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
1831
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
1862
1832
|
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
1863
1833
|
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
1864
1834
|
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
@@ -2361,19 +2331,6 @@ export interface V1Release {
|
|
|
2361
2331
|
}
|
|
2362
2332
|
|
|
2363
2333
|
|
|
2364
|
-
/**
|
|
2365
|
-
*
|
|
2366
|
-
* @export
|
|
2367
|
-
* @interface V1SafetyStatusUpdated
|
|
2368
|
-
*/
|
|
2369
|
-
export interface V1SafetyStatusUpdated {
|
|
2370
|
-
/**
|
|
2371
|
-
*
|
|
2372
|
-
* @type {boolean}
|
|
2373
|
-
* @memberof V1SafetyStatusUpdated
|
|
2374
|
-
*/
|
|
2375
|
-
'isSafe': boolean;
|
|
2376
|
-
}
|
|
2377
2334
|
/**
|
|
2378
2335
|
* Setup Action
|
|
2379
2336
|
* @export
|
|
@@ -2621,12 +2578,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2621
2578
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2622
2579
|
*/
|
|
2623
2580
|
'type'?: MountType;
|
|
2624
|
-
/**
|
|
2625
|
-
*
|
|
2626
|
-
* @type {number}
|
|
2627
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2628
|
-
*/
|
|
2629
|
-
'slewRate'?: number;
|
|
2630
2581
|
}
|
|
2631
2582
|
|
|
2632
2583
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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
|
*
|
|
@@ -631,10 +625,10 @@ export interface V1CreateNodeEvent {
|
|
|
631
625
|
'type': V1NodeEventType;
|
|
632
626
|
/**
|
|
633
627
|
*
|
|
634
|
-
* @type {
|
|
628
|
+
* @type {object}
|
|
635
629
|
* @memberof V1CreateNodeEvent
|
|
636
630
|
*/
|
|
637
|
-
'body':
|
|
631
|
+
'body': object;
|
|
638
632
|
/**
|
|
639
633
|
*
|
|
640
634
|
* @type {string}
|
|
@@ -642,11 +636,6 @@ export interface V1CreateNodeEvent {
|
|
|
642
636
|
*/
|
|
643
637
|
'generatedAt': string;
|
|
644
638
|
}
|
|
645
|
-
/**
|
|
646
|
-
* @type V1CreateNodeEventBody
|
|
647
|
-
* @export
|
|
648
|
-
*/
|
|
649
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
650
639
|
/**
|
|
651
640
|
*
|
|
652
641
|
* @export
|
|
@@ -1069,12 +1058,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1069
1058
|
* @memberof V1GetOrCreateMountRequest
|
|
1070
1059
|
*/
|
|
1071
1060
|
'type'?: MountType;
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1076
|
-
*/
|
|
1077
|
-
'slewRate'?: number;
|
|
1078
1061
|
}
|
|
1079
1062
|
/**
|
|
1080
1063
|
*
|
|
@@ -1516,19 +1499,6 @@ export interface V1LatestHfrResponse {
|
|
|
1516
1499
|
*/
|
|
1517
1500
|
'timestamp'?: string;
|
|
1518
1501
|
}
|
|
1519
|
-
/**
|
|
1520
|
-
*
|
|
1521
|
-
* @export
|
|
1522
|
-
* @interface V1LogRecorded
|
|
1523
|
-
*/
|
|
1524
|
-
export interface V1LogRecorded {
|
|
1525
|
-
/**
|
|
1526
|
-
*
|
|
1527
|
-
* @type {string}
|
|
1528
|
-
* @memberof V1LogRecorded
|
|
1529
|
-
*/
|
|
1530
|
-
'log': string;
|
|
1531
|
-
}
|
|
1532
1502
|
/**
|
|
1533
1503
|
*
|
|
1534
1504
|
* @export
|
|
@@ -1765,6 +1735,7 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1765
1735
|
export declare const V1NodeEventType: {
|
|
1766
1736
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1767
1737
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1738
|
+
readonly V1_DURATION_MEASURED: "V1_DURATION_MEASURED";
|
|
1768
1739
|
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1769
1740
|
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1770
1741
|
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
@@ -2257,19 +2228,6 @@ export interface V1Release {
|
|
|
2257
2228
|
*/
|
|
2258
2229
|
'fileType': V1FileType;
|
|
2259
2230
|
}
|
|
2260
|
-
/**
|
|
2261
|
-
*
|
|
2262
|
-
* @export
|
|
2263
|
-
* @interface V1SafetyStatusUpdated
|
|
2264
|
-
*/
|
|
2265
|
-
export interface V1SafetyStatusUpdated {
|
|
2266
|
-
/**
|
|
2267
|
-
*
|
|
2268
|
-
* @type {boolean}
|
|
2269
|
-
* @memberof V1SafetyStatusUpdated
|
|
2270
|
-
*/
|
|
2271
|
-
'isSafe': boolean;
|
|
2272
|
-
}
|
|
2273
2231
|
/**
|
|
2274
2232
|
* Setup Action
|
|
2275
2233
|
* @export
|
|
@@ -2515,12 +2473,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2515
2473
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2516
2474
|
*/
|
|
2517
2475
|
'type'?: MountType;
|
|
2518
|
-
/**
|
|
2519
|
-
*
|
|
2520
|
-
* @type {number}
|
|
2521
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2522
|
-
*/
|
|
2523
|
-
'slewRate'?: number;
|
|
2524
2476
|
}
|
|
2525
2477
|
/**
|
|
2526
2478
|
*
|
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.5002
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -231,6 +231,7 @@ exports.V1NodeDiagnosticType = {
|
|
|
231
231
|
exports.V1NodeEventType = {
|
|
232
232
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
233
233
|
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
234
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
234
235
|
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
235
236
|
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
236
237
|
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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
|
*
|
|
@@ -631,10 +625,10 @@ export interface V1CreateNodeEvent {
|
|
|
631
625
|
'type': V1NodeEventType;
|
|
632
626
|
/**
|
|
633
627
|
*
|
|
634
|
-
* @type {
|
|
628
|
+
* @type {object}
|
|
635
629
|
* @memberof V1CreateNodeEvent
|
|
636
630
|
*/
|
|
637
|
-
'body':
|
|
631
|
+
'body': object;
|
|
638
632
|
/**
|
|
639
633
|
*
|
|
640
634
|
* @type {string}
|
|
@@ -642,11 +636,6 @@ export interface V1CreateNodeEvent {
|
|
|
642
636
|
*/
|
|
643
637
|
'generatedAt': string;
|
|
644
638
|
}
|
|
645
|
-
/**
|
|
646
|
-
* @type V1CreateNodeEventBody
|
|
647
|
-
* @export
|
|
648
|
-
*/
|
|
649
|
-
export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
|
|
650
639
|
/**
|
|
651
640
|
*
|
|
652
641
|
* @export
|
|
@@ -1069,12 +1058,6 @@ export interface V1GetOrCreateMountRequest {
|
|
|
1069
1058
|
* @memberof V1GetOrCreateMountRequest
|
|
1070
1059
|
*/
|
|
1071
1060
|
'type'?: MountType;
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {number}
|
|
1075
|
-
* @memberof V1GetOrCreateMountRequest
|
|
1076
|
-
*/
|
|
1077
|
-
'slewRate'?: number;
|
|
1078
1061
|
}
|
|
1079
1062
|
/**
|
|
1080
1063
|
*
|
|
@@ -1516,19 +1499,6 @@ export interface V1LatestHfrResponse {
|
|
|
1516
1499
|
*/
|
|
1517
1500
|
'timestamp'?: string;
|
|
1518
1501
|
}
|
|
1519
|
-
/**
|
|
1520
|
-
*
|
|
1521
|
-
* @export
|
|
1522
|
-
* @interface V1LogRecorded
|
|
1523
|
-
*/
|
|
1524
|
-
export interface V1LogRecorded {
|
|
1525
|
-
/**
|
|
1526
|
-
*
|
|
1527
|
-
* @type {string}
|
|
1528
|
-
* @memberof V1LogRecorded
|
|
1529
|
-
*/
|
|
1530
|
-
'log': string;
|
|
1531
|
-
}
|
|
1532
1502
|
/**
|
|
1533
1503
|
*
|
|
1534
1504
|
* @export
|
|
@@ -1765,6 +1735,7 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1765
1735
|
export declare const V1NodeEventType: {
|
|
1766
1736
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1767
1737
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1738
|
+
readonly V1_DURATION_MEASURED: "V1_DURATION_MEASURED";
|
|
1768
1739
|
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1769
1740
|
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1770
1741
|
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
@@ -2257,19 +2228,6 @@ export interface V1Release {
|
|
|
2257
2228
|
*/
|
|
2258
2229
|
'fileType': V1FileType;
|
|
2259
2230
|
}
|
|
2260
|
-
/**
|
|
2261
|
-
*
|
|
2262
|
-
* @export
|
|
2263
|
-
* @interface V1SafetyStatusUpdated
|
|
2264
|
-
*/
|
|
2265
|
-
export interface V1SafetyStatusUpdated {
|
|
2266
|
-
/**
|
|
2267
|
-
*
|
|
2268
|
-
* @type {boolean}
|
|
2269
|
-
* @memberof V1SafetyStatusUpdated
|
|
2270
|
-
*/
|
|
2271
|
-
'isSafe': boolean;
|
|
2272
|
-
}
|
|
2273
2231
|
/**
|
|
2274
2232
|
* Setup Action
|
|
2275
2233
|
* @export
|
|
@@ -2515,12 +2473,6 @@ export interface V1UpdateNodeComponentsRequestMount {
|
|
|
2515
2473
|
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2516
2474
|
*/
|
|
2517
2475
|
'type'?: MountType;
|
|
2518
|
-
/**
|
|
2519
|
-
*
|
|
2520
|
-
* @type {number}
|
|
2521
|
-
* @memberof V1UpdateNodeComponentsRequestMount
|
|
2522
|
-
*/
|
|
2523
|
-
'slewRate'?: number;
|
|
2524
2476
|
}
|
|
2525
2477
|
/**
|
|
2526
2478
|
*
|
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.5002
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -228,6 +228,7 @@ export const V1NodeDiagnosticType = {
|
|
|
228
228
|
export const V1NodeEventType = {
|
|
229
229
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
230
230
|
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
231
|
+
V1_DURATION_MEASURED: 'V1_DURATION_MEASURED',
|
|
231
232
|
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
232
233
|
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
233
234
|
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
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.5002
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|