@ourskyai/platform-api 1.3.5447 → 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 +31 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +30 -2
- package/dist/api.js +4 -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 +30 -2
- package/dist/esm/api.js +4 -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.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).
|
|
@@ -1932,7 +1932,7 @@ export interface V1NodeCommand {
|
|
|
1932
1932
|
* @type V1NodeCommandBody
|
|
1933
1933
|
* @export
|
|
1934
1934
|
*/
|
|
1935
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1935
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1936
1936
|
|
|
1937
1937
|
/**
|
|
1938
1938
|
*
|
|
@@ -1943,7 +1943,9 @@ export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1Sto
|
|
|
1943
1943
|
export const V1NodeCommandType = {
|
|
1944
1944
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
1945
1945
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
1946
|
-
V1_HALT: 'V1_HALT'
|
|
1946
|
+
V1_HALT: 'V1_HALT',
|
|
1947
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
1948
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
1947
1949
|
} as const;
|
|
1948
1950
|
|
|
1949
1951
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
@@ -2605,6 +2607,19 @@ export interface V1ReadNoisePoint {
|
|
|
2605
2607
|
*/
|
|
2606
2608
|
'eRMS': number;
|
|
2607
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
|
+
}
|
|
2608
2623
|
/**
|
|
2609
2624
|
*
|
|
2610
2625
|
* @export
|
|
@@ -2657,6 +2672,19 @@ export interface V1Release {
|
|
|
2657
2672
|
}
|
|
2658
2673
|
|
|
2659
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
|
+
}
|
|
2660
2688
|
/**
|
|
2661
2689
|
*
|
|
2662
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).
|
|
@@ -1842,7 +1842,7 @@ export interface V1NodeCommand {
|
|
|
1842
1842
|
* @type V1NodeCommandBody
|
|
1843
1843
|
* @export
|
|
1844
1844
|
*/
|
|
1845
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1845
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1846
1846
|
/**
|
|
1847
1847
|
*
|
|
1848
1848
|
* @export
|
|
@@ -1852,6 +1852,8 @@ export declare const V1NodeCommandType: {
|
|
|
1852
1852
|
readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
|
|
1853
1853
|
readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
|
|
1854
1854
|
readonly V1_HALT: "V1_HALT";
|
|
1855
|
+
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
1856
|
+
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
1855
1857
|
};
|
|
1856
1858
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
1857
1859
|
/**
|
|
@@ -2487,6 +2489,19 @@ export interface V1ReadNoisePoint {
|
|
|
2487
2489
|
*/
|
|
2488
2490
|
'eRMS': number;
|
|
2489
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
|
+
}
|
|
2490
2505
|
/**
|
|
2491
2506
|
*
|
|
2492
2507
|
* @export
|
|
@@ -2537,6 +2552,19 @@ export interface V1Release {
|
|
|
2537
2552
|
*/
|
|
2538
2553
|
'fileType': V1FileType;
|
|
2539
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
|
+
}
|
|
2540
2568
|
/**
|
|
2541
2569
|
*
|
|
2542
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).
|
|
@@ -186,7 +186,9 @@ exports.V1FileType = {
|
|
|
186
186
|
exports.V1NodeCommandType = {
|
|
187
187
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
188
188
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
189
|
-
V1_HALT: 'V1_HALT'
|
|
189
|
+
V1_HALT: 'V1_HALT',
|
|
190
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
191
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
190
192
|
};
|
|
191
193
|
/**
|
|
192
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).
|
|
@@ -1842,7 +1842,7 @@ export interface V1NodeCommand {
|
|
|
1842
1842
|
* @type V1NodeCommandBody
|
|
1843
1843
|
* @export
|
|
1844
1844
|
*/
|
|
1845
|
-
export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1845
|
+
export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
|
|
1846
1846
|
/**
|
|
1847
1847
|
*
|
|
1848
1848
|
* @export
|
|
@@ -1852,6 +1852,8 @@ export declare const V1NodeCommandType: {
|
|
|
1852
1852
|
readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
|
|
1853
1853
|
readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
|
|
1854
1854
|
readonly V1_HALT: "V1_HALT";
|
|
1855
|
+
readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
|
|
1856
|
+
readonly V1_RESTART_ADB: "V1_RESTART_ADB";
|
|
1855
1857
|
};
|
|
1856
1858
|
export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
|
|
1857
1859
|
/**
|
|
@@ -2487,6 +2489,19 @@ export interface V1ReadNoisePoint {
|
|
|
2487
2489
|
*/
|
|
2488
2490
|
'eRMS': number;
|
|
2489
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
|
+
}
|
|
2490
2505
|
/**
|
|
2491
2506
|
*
|
|
2492
2507
|
* @export
|
|
@@ -2537,6 +2552,19 @@ export interface V1Release {
|
|
|
2537
2552
|
*/
|
|
2538
2553
|
'fileType': V1FileType;
|
|
2539
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
|
+
}
|
|
2540
2568
|
/**
|
|
2541
2569
|
*
|
|
2542
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).
|
|
@@ -183,7 +183,9 @@ export const V1FileType = {
|
|
|
183
183
|
export const V1NodeCommandType = {
|
|
184
184
|
V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
|
|
185
185
|
V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
|
|
186
|
-
V1_HALT: 'V1_HALT'
|
|
186
|
+
V1_HALT: 'V1_HALT',
|
|
187
|
+
V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
|
|
188
|
+
V1_RESTART_ADB: 'V1_RESTART_ADB'
|
|
187
189
|
};
|
|
188
190
|
/**
|
|
189
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).
|