@ourskyai/platform-api 1.3.4890 → 1.3.4931
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 +8 -9
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +7 -8
- package/dist/api.js +7 -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 +7 -8
- package/dist/esm/api.js +7 -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.4931
|
|
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.4931 --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.4931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -403,7 +403,7 @@ export interface V1Camera {
|
|
|
403
403
|
* @type {boolean}
|
|
404
404
|
* @memberof V1Camera
|
|
405
405
|
*/
|
|
406
|
-
'gpsTimestamps'
|
|
406
|
+
'gpsTimestamps'?: boolean;
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
409
409
|
* @type {ShutterType}
|
|
@@ -1041,12 +1041,6 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
1041
1041
|
* @memberof V1GetOrCreateCameraRequest
|
|
1042
1042
|
*/
|
|
1043
1043
|
'shutterType'?: ShutterType;
|
|
1044
|
-
/**
|
|
1045
|
-
*
|
|
1046
|
-
* @type {boolean}
|
|
1047
|
-
* @memberof V1GetOrCreateCameraRequest
|
|
1048
|
-
*/
|
|
1049
|
-
'gpsTimestamps'?: boolean;
|
|
1050
1044
|
/**
|
|
1051
1045
|
*
|
|
1052
1046
|
* @type {number}
|
|
@@ -1864,7 +1858,12 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1864
1858
|
|
|
1865
1859
|
export const V1NodeEventType = {
|
|
1866
1860
|
V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED',
|
|
1867
|
-
V1_LOG_RECORDED: 'V1_LOG_RECORDED'
|
|
1861
|
+
V1_LOG_RECORDED: 'V1_LOG_RECORDED',
|
|
1862
|
+
V1_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
1863
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
1864
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
1865
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
1866
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
1868
1867
|
} as const;
|
|
1869
1868
|
|
|
1870
1869
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -353,7 +353,7 @@ export interface V1Camera {
|
|
|
353
353
|
* @type {boolean}
|
|
354
354
|
* @memberof V1Camera
|
|
355
355
|
*/
|
|
356
|
-
'gpsTimestamps'
|
|
356
|
+
'gpsTimestamps'?: boolean;
|
|
357
357
|
/**
|
|
358
358
|
*
|
|
359
359
|
* @type {ShutterType}
|
|
@@ -972,12 +972,6 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
972
972
|
* @memberof V1GetOrCreateCameraRequest
|
|
973
973
|
*/
|
|
974
974
|
'shutterType'?: ShutterType;
|
|
975
|
-
/**
|
|
976
|
-
*
|
|
977
|
-
* @type {boolean}
|
|
978
|
-
* @memberof V1GetOrCreateCameraRequest
|
|
979
|
-
*/
|
|
980
|
-
'gpsTimestamps'?: boolean;
|
|
981
975
|
/**
|
|
982
976
|
*
|
|
983
977
|
* @type {number}
|
|
@@ -1771,6 +1765,11 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1771
1765
|
export declare const V1NodeEventType: {
|
|
1772
1766
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1773
1767
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1768
|
+
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1769
|
+
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1770
|
+
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
1771
|
+
readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
|
|
1772
|
+
readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
|
|
1774
1773
|
};
|
|
1775
1774
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
1776
1775
|
/**
|
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.4931
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -230,7 +230,12 @@ 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_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
235
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
236
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
237
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
238
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
234
239
|
};
|
|
235
240
|
exports.V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
236
241
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -353,7 +353,7 @@ export interface V1Camera {
|
|
|
353
353
|
* @type {boolean}
|
|
354
354
|
* @memberof V1Camera
|
|
355
355
|
*/
|
|
356
|
-
'gpsTimestamps'
|
|
356
|
+
'gpsTimestamps'?: boolean;
|
|
357
357
|
/**
|
|
358
358
|
*
|
|
359
359
|
* @type {ShutterType}
|
|
@@ -972,12 +972,6 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
972
972
|
* @memberof V1GetOrCreateCameraRequest
|
|
973
973
|
*/
|
|
974
974
|
'shutterType'?: ShutterType;
|
|
975
|
-
/**
|
|
976
|
-
*
|
|
977
|
-
* @type {boolean}
|
|
978
|
-
* @memberof V1GetOrCreateCameraRequest
|
|
979
|
-
*/
|
|
980
|
-
'gpsTimestamps'?: boolean;
|
|
981
975
|
/**
|
|
982
976
|
*
|
|
983
977
|
* @type {number}
|
|
@@ -1771,6 +1765,11 @@ export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1No
|
|
|
1771
1765
|
export declare const V1NodeEventType: {
|
|
1772
1766
|
readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
|
|
1773
1767
|
readonly V1_LOG_RECORDED: "V1_LOG_RECORDED";
|
|
1768
|
+
readonly V1_AUTOFOCUS_INSTRUCTION_TASKED: "V1_AUTOFOCUS_INSTRUCTION_TASKED";
|
|
1769
|
+
readonly V1_DIAGNOSTIC_INSTRUCTION_TASKED: "V1_DIAGNOSTIC_INSTRUCTION_TASKED";
|
|
1770
|
+
readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
|
|
1771
|
+
readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
|
|
1772
|
+
readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
|
|
1774
1773
|
};
|
|
1775
1774
|
export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
|
|
1776
1775
|
/**
|
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.4931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -227,7 +227,12 @@ 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_AUTOFOCUS_INSTRUCTION_TASKED: 'V1_AUTOFOCUS_INSTRUCTION_TASKED',
|
|
232
|
+
V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
|
|
233
|
+
V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
|
|
234
|
+
V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
|
|
235
|
+
V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
|
|
231
236
|
};
|
|
232
237
|
export const V1PlateSolveCatalogFileDownloadActionEnum = {
|
|
233
238
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
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.4931
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|