@ourskyai/platform-api 1.3.5409 → 1.3.5447
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 +20 -6
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +15 -5
- package/dist/api.js +12 -3
- 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 +15 -5
- package/dist/esm/api.js +11 -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.5447
|
|
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.5447 --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.5447
|
|
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}
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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}
|
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.5447
|
|
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
|
*
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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}
|
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.5447
|
|
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
|
*
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
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.5447
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|