@ourskyai/platform-api 1.3.2229 → 1.3.2295
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 +7 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +5 -1
- package/dist/api.js +7 -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 +5 -1
- package/dist/esm/api.js +7 -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.2295
|
|
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.2295 --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.2295
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1303,7 +1303,8 @@ export interface V1Node {
|
|
|
1303
1303
|
export const V1NodeComponentType = {
|
|
1304
1304
|
CAMERA: 'CAMERA',
|
|
1305
1305
|
MOUNT: 'MOUNT',
|
|
1306
|
-
OPTICAL_TUBE: 'OPTICAL_TUBE'
|
|
1306
|
+
OPTICAL_TUBE: 'OPTICAL_TUBE',
|
|
1307
|
+
COMPUTER: 'COMPUTER'
|
|
1307
1308
|
} as const;
|
|
1308
1309
|
|
|
1309
1310
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
@@ -1328,7 +1329,10 @@ export const V1NodeDiagnosticType = {
|
|
|
1328
1329
|
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
1329
1330
|
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
1330
1331
|
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED',
|
|
1331
|
-
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED'
|
|
1332
|
+
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED',
|
|
1333
|
+
AVAILABLE_DISK_BYTES: 'AVAILABLE_DISK_BYTES',
|
|
1334
|
+
AVAILABLE_MEMORY_BYTES: 'AVAILABLE_MEMORY_BYTES',
|
|
1335
|
+
NTP_TIME_DRIFT_MS: 'NTP_TIME_DRIFT_MS'
|
|
1332
1336
|
} as const;
|
|
1333
1337
|
|
|
1334
1338
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1237,6 +1237,7 @@ export declare const V1NodeComponentType: {
|
|
|
1237
1237
|
readonly CAMERA: "CAMERA";
|
|
1238
1238
|
readonly MOUNT: "MOUNT";
|
|
1239
1239
|
readonly OPTICAL_TUBE: "OPTICAL_TUBE";
|
|
1240
|
+
readonly COMPUTER: "COMPUTER";
|
|
1240
1241
|
};
|
|
1241
1242
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
1242
1243
|
/**
|
|
@@ -1258,6 +1259,9 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1258
1259
|
readonly MOUNT_CHECKED: "MOUNT_CHECKED";
|
|
1259
1260
|
readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
|
|
1260
1261
|
readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
|
|
1262
|
+
readonly AVAILABLE_DISK_BYTES: "AVAILABLE_DISK_BYTES";
|
|
1263
|
+
readonly AVAILABLE_MEMORY_BYTES: "AVAILABLE_MEMORY_BYTES";
|
|
1264
|
+
readonly NTP_TIME_DRIFT_MS: "NTP_TIME_DRIFT_MS";
|
|
1261
1265
|
};
|
|
1262
1266
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
1263
1267
|
/**
|
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.2295
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -132,7 +132,8 @@ exports.TrackingType = {
|
|
|
132
132
|
exports.V1NodeComponentType = {
|
|
133
133
|
CAMERA: 'CAMERA',
|
|
134
134
|
MOUNT: 'MOUNT',
|
|
135
|
-
OPTICAL_TUBE: 'OPTICAL_TUBE'
|
|
135
|
+
OPTICAL_TUBE: 'OPTICAL_TUBE',
|
|
136
|
+
COMPUTER: 'COMPUTER'
|
|
136
137
|
};
|
|
137
138
|
/**
|
|
138
139
|
*
|
|
@@ -152,7 +153,10 @@ exports.V1NodeDiagnosticType = {
|
|
|
152
153
|
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
153
154
|
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
154
155
|
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED',
|
|
155
|
-
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED'
|
|
156
|
+
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED',
|
|
157
|
+
AVAILABLE_DISK_BYTES: 'AVAILABLE_DISK_BYTES',
|
|
158
|
+
AVAILABLE_MEMORY_BYTES: 'AVAILABLE_MEMORY_BYTES',
|
|
159
|
+
NTP_TIME_DRIFT_MS: 'NTP_TIME_DRIFT_MS'
|
|
156
160
|
};
|
|
157
161
|
/**
|
|
158
162
|
* DefaultApi - axios parameter creator
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1237,6 +1237,7 @@ export declare const V1NodeComponentType: {
|
|
|
1237
1237
|
readonly CAMERA: "CAMERA";
|
|
1238
1238
|
readonly MOUNT: "MOUNT";
|
|
1239
1239
|
readonly OPTICAL_TUBE: "OPTICAL_TUBE";
|
|
1240
|
+
readonly COMPUTER: "COMPUTER";
|
|
1240
1241
|
};
|
|
1241
1242
|
export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
|
|
1242
1243
|
/**
|
|
@@ -1258,6 +1259,9 @@ export declare const V1NodeDiagnosticType: {
|
|
|
1258
1259
|
readonly MOUNT_CHECKED: "MOUNT_CHECKED";
|
|
1259
1260
|
readonly OPTICAL_TUBE_CHECKED: "OPTICAL_TUBE_CHECKED";
|
|
1260
1261
|
readonly ELEVATION_MASK_CHECKED: "ELEVATION_MASK_CHECKED";
|
|
1262
|
+
readonly AVAILABLE_DISK_BYTES: "AVAILABLE_DISK_BYTES";
|
|
1263
|
+
readonly AVAILABLE_MEMORY_BYTES: "AVAILABLE_MEMORY_BYTES";
|
|
1264
|
+
readonly NTP_TIME_DRIFT_MS: "NTP_TIME_DRIFT_MS";
|
|
1261
1265
|
};
|
|
1262
1266
|
export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
|
|
1263
1267
|
/**
|
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.2295
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -129,7 +129,8 @@ export const TrackingType = {
|
|
|
129
129
|
export const V1NodeComponentType = {
|
|
130
130
|
CAMERA: 'CAMERA',
|
|
131
131
|
MOUNT: 'MOUNT',
|
|
132
|
-
OPTICAL_TUBE: 'OPTICAL_TUBE'
|
|
132
|
+
OPTICAL_TUBE: 'OPTICAL_TUBE',
|
|
133
|
+
COMPUTER: 'COMPUTER'
|
|
133
134
|
};
|
|
134
135
|
/**
|
|
135
136
|
*
|
|
@@ -149,7 +150,10 @@ export const V1NodeDiagnosticType = {
|
|
|
149
150
|
CAMERA_CHECKED: 'CAMERA_CHECKED',
|
|
150
151
|
MOUNT_CHECKED: 'MOUNT_CHECKED',
|
|
151
152
|
OPTICAL_TUBE_CHECKED: 'OPTICAL_TUBE_CHECKED',
|
|
152
|
-
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED'
|
|
153
|
+
ELEVATION_MASK_CHECKED: 'ELEVATION_MASK_CHECKED',
|
|
154
|
+
AVAILABLE_DISK_BYTES: 'AVAILABLE_DISK_BYTES',
|
|
155
|
+
AVAILABLE_MEMORY_BYTES: 'AVAILABLE_MEMORY_BYTES',
|
|
156
|
+
NTP_TIME_DRIFT_MS: 'NTP_TIME_DRIFT_MS'
|
|
153
157
|
};
|
|
154
158
|
/**
|
|
155
159
|
* DefaultApi - axios parameter creator
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
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.2295
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|