@ourskyai/astro-api 1.3.5391 → 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/astro-api@1.3.
|
|
1
|
+
## @ourskyai/astro-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/astro-api@1.3.
|
|
39
|
+
npm install @ourskyai/astro-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 Astro
|
|
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).
|
|
@@ -308,6 +308,19 @@ export interface FitsHeader {
|
|
|
308
308
|
*/
|
|
309
309
|
'value': string;
|
|
310
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @export
|
|
314
|
+
* @enum {string}
|
|
315
|
+
*/
|
|
316
|
+
|
|
317
|
+
export const ImageSetType = {
|
|
318
|
+
ALL_SKY: 'ALL_SKY'
|
|
319
|
+
} as const;
|
|
320
|
+
|
|
321
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
322
|
+
|
|
323
|
+
|
|
311
324
|
/**
|
|
312
325
|
* Location
|
|
313
326
|
* @export
|
|
@@ -418,7 +431,8 @@ export interface SuccessfulCreate {
|
|
|
418
431
|
|
|
419
432
|
export const TrackingType = {
|
|
420
433
|
SIDEREAL: 'SIDEREAL',
|
|
421
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
434
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
435
|
+
NONE: 'NONE'
|
|
422
436
|
} as const;
|
|
423
437
|
|
|
424
438
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
@@ -1354,19 +1368,19 @@ export interface V1CreateImageSetRequest {
|
|
|
1354
1368
|
* @type {string}
|
|
1355
1369
|
* @memberof V1CreateImageSetRequest
|
|
1356
1370
|
*/
|
|
1357
|
-
'
|
|
1371
|
+
'nodeId': string;
|
|
1358
1372
|
/**
|
|
1359
1373
|
*
|
|
1360
1374
|
* @type {string}
|
|
1361
1375
|
* @memberof V1CreateImageSetRequest
|
|
1362
1376
|
*/
|
|
1363
|
-
'
|
|
1377
|
+
'observationId'?: string;
|
|
1364
1378
|
/**
|
|
1365
1379
|
*
|
|
1366
|
-
* @type {
|
|
1380
|
+
* @type {ImageSetType}
|
|
1367
1381
|
* @memberof V1CreateImageSetRequest
|
|
1368
1382
|
*/
|
|
1369
|
-
'
|
|
1383
|
+
'type': ImageSetType;
|
|
1370
1384
|
/**
|
|
1371
1385
|
*
|
|
1372
1386
|
* @type {TrackingType}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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).
|
|
@@ -282,6 +282,15 @@ export interface FitsHeader {
|
|
|
282
282
|
*/
|
|
283
283
|
'value': string;
|
|
284
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @export
|
|
288
|
+
* @enum {string}
|
|
289
|
+
*/
|
|
290
|
+
export declare const ImageSetType: {
|
|
291
|
+
readonly ALL_SKY: "ALL_SKY";
|
|
292
|
+
};
|
|
293
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
285
294
|
/**
|
|
286
295
|
* Location
|
|
287
296
|
* @export
|
|
@@ -376,6 +385,7 @@ export interface SuccessfulCreate {
|
|
|
376
385
|
export declare const TrackingType: {
|
|
377
386
|
readonly SIDEREAL: "SIDEREAL";
|
|
378
387
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
388
|
+
readonly NONE: "NONE";
|
|
379
389
|
};
|
|
380
390
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
381
391
|
/**
|
|
@@ -1292,19 +1302,19 @@ export interface V1CreateImageSetRequest {
|
|
|
1292
1302
|
* @type {string}
|
|
1293
1303
|
* @memberof V1CreateImageSetRequest
|
|
1294
1304
|
*/
|
|
1295
|
-
'
|
|
1305
|
+
'nodeId': string;
|
|
1296
1306
|
/**
|
|
1297
1307
|
*
|
|
1298
1308
|
* @type {string}
|
|
1299
1309
|
* @memberof V1CreateImageSetRequest
|
|
1300
1310
|
*/
|
|
1301
|
-
'
|
|
1311
|
+
'observationId'?: string;
|
|
1302
1312
|
/**
|
|
1303
1313
|
*
|
|
1304
|
-
* @type {
|
|
1314
|
+
* @type {ImageSetType}
|
|
1305
1315
|
* @memberof V1CreateImageSetRequest
|
|
1306
1316
|
*/
|
|
1307
|
-
'
|
|
1317
|
+
'type': ImageSetType;
|
|
1308
1318
|
/**
|
|
1309
1319
|
*
|
|
1310
1320
|
* @type {TrackingType}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky Astro
|
|
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.V1PlatformCreditUnit = exports.V1PlatformCreditType = exports.V1PlatformCreditSource = exports.V1JobStatus = exports.V1JobKind = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.FilterType = exports.CalibrationMasterType = exports.AssetType = exports.AssetFileType = void 0;
|
|
25
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlatformCreditUnit = exports.V1PlatformCreditType = exports.V1PlatformCreditSource = exports.V1JobStatus = exports.V1JobKind = exports.TrackingType = exports.ShutterType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.ImageSetType = exports.FilterType = exports.CalibrationMasterType = exports.AssetType = exports.AssetFileType = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -89,6 +89,14 @@ exports.FilterType = {
|
|
|
89
89
|
PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
|
|
90
90
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
91
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @export
|
|
95
|
+
* @enum {string}
|
|
96
|
+
*/
|
|
97
|
+
exports.ImageSetType = {
|
|
98
|
+
ALL_SKY: 'ALL_SKY'
|
|
99
|
+
};
|
|
92
100
|
/**
|
|
93
101
|
*
|
|
94
102
|
* @export
|
|
@@ -140,7 +148,8 @@ exports.ShutterType = {
|
|
|
140
148
|
*/
|
|
141
149
|
exports.TrackingType = {
|
|
142
150
|
SIDEREAL: 'SIDEREAL',
|
|
143
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
151
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
152
|
+
NONE: 'NONE'
|
|
144
153
|
};
|
|
145
154
|
/**
|
|
146
155
|
*
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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).
|
|
@@ -282,6 +282,15 @@ export interface FitsHeader {
|
|
|
282
282
|
*/
|
|
283
283
|
'value': string;
|
|
284
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @export
|
|
288
|
+
* @enum {string}
|
|
289
|
+
*/
|
|
290
|
+
export declare const ImageSetType: {
|
|
291
|
+
readonly ALL_SKY: "ALL_SKY";
|
|
292
|
+
};
|
|
293
|
+
export type ImageSetType = typeof ImageSetType[keyof typeof ImageSetType];
|
|
285
294
|
/**
|
|
286
295
|
* Location
|
|
287
296
|
* @export
|
|
@@ -376,6 +385,7 @@ export interface SuccessfulCreate {
|
|
|
376
385
|
export declare const TrackingType: {
|
|
377
386
|
readonly SIDEREAL: "SIDEREAL";
|
|
378
387
|
readonly TARGET_RATE: "TARGET_RATE";
|
|
388
|
+
readonly NONE: "NONE";
|
|
379
389
|
};
|
|
380
390
|
export type TrackingType = typeof TrackingType[keyof typeof TrackingType];
|
|
381
391
|
/**
|
|
@@ -1292,19 +1302,19 @@ export interface V1CreateImageSetRequest {
|
|
|
1292
1302
|
* @type {string}
|
|
1293
1303
|
* @memberof V1CreateImageSetRequest
|
|
1294
1304
|
*/
|
|
1295
|
-
'
|
|
1305
|
+
'nodeId': string;
|
|
1296
1306
|
/**
|
|
1297
1307
|
*
|
|
1298
1308
|
* @type {string}
|
|
1299
1309
|
* @memberof V1CreateImageSetRequest
|
|
1300
1310
|
*/
|
|
1301
|
-
'
|
|
1311
|
+
'observationId'?: string;
|
|
1302
1312
|
/**
|
|
1303
1313
|
*
|
|
1304
|
-
* @type {
|
|
1314
|
+
* @type {ImageSetType}
|
|
1305
1315
|
* @memberof V1CreateImageSetRequest
|
|
1306
1316
|
*/
|
|
1307
|
-
'
|
|
1317
|
+
'type': ImageSetType;
|
|
1308
1318
|
/**
|
|
1309
1319
|
*
|
|
1310
1320
|
* @type {TrackingType}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky Astro
|
|
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).
|
|
@@ -86,6 +86,14 @@ export const FilterType = {
|
|
|
86
86
|
PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
|
|
87
87
|
PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
|
|
88
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @export
|
|
92
|
+
* @enum {string}
|
|
93
|
+
*/
|
|
94
|
+
export const ImageSetType = {
|
|
95
|
+
ALL_SKY: 'ALL_SKY'
|
|
96
|
+
};
|
|
89
97
|
/**
|
|
90
98
|
*
|
|
91
99
|
* @export
|
|
@@ -137,7 +145,8 @@ export const ShutterType = {
|
|
|
137
145
|
*/
|
|
138
146
|
export const TrackingType = {
|
|
139
147
|
SIDEREAL: 'SIDEREAL',
|
|
140
|
-
TARGET_RATE: 'TARGET_RATE'
|
|
148
|
+
TARGET_RATE: 'TARGET_RATE',
|
|
149
|
+
NONE: 'NONE'
|
|
141
150
|
};
|
|
142
151
|
/**
|
|
143
152
|
*
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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 Astro
|
|
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).
|