@ourskyai/astro-api 1.3.1945 → 1.3.2078
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 +56 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +56 -1
- package/dist/api.js +1 -1
- 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 +56 -1
- package/dist/esm/api.js +1 -1
- 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.2078
|
|
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.2078 --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.2078
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -619,6 +619,12 @@ export interface V1Camera {
|
|
|
619
619
|
* @memberof V1Camera
|
|
620
620
|
*/
|
|
621
621
|
'isColor': boolean;
|
|
622
|
+
/**
|
|
623
|
+
*
|
|
624
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
625
|
+
* @memberof V1Camera
|
|
626
|
+
*/
|
|
627
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
622
628
|
}
|
|
623
629
|
|
|
624
630
|
|
|
@@ -939,6 +945,12 @@ export interface V1CreateCameraRequest {
|
|
|
939
945
|
* @memberof V1CreateCameraRequest
|
|
940
946
|
*/
|
|
941
947
|
'isColor': boolean;
|
|
948
|
+
/**
|
|
949
|
+
*
|
|
950
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
951
|
+
* @memberof V1CreateCameraRequest
|
|
952
|
+
*/
|
|
953
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
942
954
|
}
|
|
943
955
|
|
|
944
956
|
|
|
@@ -1330,6 +1342,12 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
1330
1342
|
* @memberof V1GetOrCreateCameraRequest
|
|
1331
1343
|
*/
|
|
1332
1344
|
'isColor'?: boolean;
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
1348
|
+
* @memberof V1GetOrCreateCameraRequest
|
|
1349
|
+
*/
|
|
1350
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
1333
1351
|
}
|
|
1334
1352
|
|
|
1335
1353
|
|
|
@@ -2064,6 +2082,43 @@ export interface V1UpdateNodeRequest {
|
|
|
2064
2082
|
}
|
|
2065
2083
|
|
|
2066
2084
|
|
|
2085
|
+
/**
|
|
2086
|
+
*
|
|
2087
|
+
* @export
|
|
2088
|
+
* @interface V1VideoModeFramerateProperty
|
|
2089
|
+
*/
|
|
2090
|
+
export interface V1VideoModeFramerateProperty {
|
|
2091
|
+
/**
|
|
2092
|
+
*
|
|
2093
|
+
* @type {number}
|
|
2094
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2095
|
+
*/
|
|
2096
|
+
'roiXPixels': number;
|
|
2097
|
+
/**
|
|
2098
|
+
*
|
|
2099
|
+
* @type {number}
|
|
2100
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2101
|
+
*/
|
|
2102
|
+
'roiYPixels': number;
|
|
2103
|
+
/**
|
|
2104
|
+
*
|
|
2105
|
+
* @type {number}
|
|
2106
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2107
|
+
*/
|
|
2108
|
+
'adcBitDepth': number;
|
|
2109
|
+
/**
|
|
2110
|
+
*
|
|
2111
|
+
* @type {number}
|
|
2112
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2113
|
+
*/
|
|
2114
|
+
'fps': number;
|
|
2115
|
+
/**
|
|
2116
|
+
*
|
|
2117
|
+
* @type {number}
|
|
2118
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2119
|
+
*/
|
|
2120
|
+
'binning': number;
|
|
2121
|
+
}
|
|
2067
2122
|
|
|
2068
2123
|
/**
|
|
2069
2124
|
* DefaultApi - axios parameter creator
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -569,6 +569,12 @@ export interface V1Camera {
|
|
|
569
569
|
* @memberof V1Camera
|
|
570
570
|
*/
|
|
571
571
|
'isColor': boolean;
|
|
572
|
+
/**
|
|
573
|
+
*
|
|
574
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
575
|
+
* @memberof V1Camera
|
|
576
|
+
*/
|
|
577
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
572
578
|
}
|
|
573
579
|
/**
|
|
574
580
|
*
|
|
@@ -881,6 +887,12 @@ export interface V1CreateCameraRequest {
|
|
|
881
887
|
* @memberof V1CreateCameraRequest
|
|
882
888
|
*/
|
|
883
889
|
'isColor': boolean;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
893
|
+
* @memberof V1CreateCameraRequest
|
|
894
|
+
*/
|
|
895
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
884
896
|
}
|
|
885
897
|
/**
|
|
886
898
|
*
|
|
@@ -1264,6 +1276,12 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
1264
1276
|
* @memberof V1GetOrCreateCameraRequest
|
|
1265
1277
|
*/
|
|
1266
1278
|
'isColor'?: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
1282
|
+
* @memberof V1GetOrCreateCameraRequest
|
|
1283
|
+
*/
|
|
1284
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
1267
1285
|
}
|
|
1268
1286
|
/**
|
|
1269
1287
|
*
|
|
@@ -1962,6 +1980,43 @@ export interface V1UpdateNodeRequest {
|
|
|
1962
1980
|
*/
|
|
1963
1981
|
'state'?: NodeState;
|
|
1964
1982
|
}
|
|
1983
|
+
/**
|
|
1984
|
+
*
|
|
1985
|
+
* @export
|
|
1986
|
+
* @interface V1VideoModeFramerateProperty
|
|
1987
|
+
*/
|
|
1988
|
+
export interface V1VideoModeFramerateProperty {
|
|
1989
|
+
/**
|
|
1990
|
+
*
|
|
1991
|
+
* @type {number}
|
|
1992
|
+
* @memberof V1VideoModeFramerateProperty
|
|
1993
|
+
*/
|
|
1994
|
+
'roiXPixels': number;
|
|
1995
|
+
/**
|
|
1996
|
+
*
|
|
1997
|
+
* @type {number}
|
|
1998
|
+
* @memberof V1VideoModeFramerateProperty
|
|
1999
|
+
*/
|
|
2000
|
+
'roiYPixels': number;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {number}
|
|
2004
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2005
|
+
*/
|
|
2006
|
+
'adcBitDepth': number;
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @type {number}
|
|
2010
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2011
|
+
*/
|
|
2012
|
+
'fps': number;
|
|
2013
|
+
/**
|
|
2014
|
+
*
|
|
2015
|
+
* @type {number}
|
|
2016
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2017
|
+
*/
|
|
2018
|
+
'binning': number;
|
|
2019
|
+
}
|
|
1965
2020
|
/**
|
|
1966
2021
|
* DefaultApi - axios parameter creator
|
|
1967
2022
|
* @export
|
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.2078
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -569,6 +569,12 @@ export interface V1Camera {
|
|
|
569
569
|
* @memberof V1Camera
|
|
570
570
|
*/
|
|
571
571
|
'isColor': boolean;
|
|
572
|
+
/**
|
|
573
|
+
*
|
|
574
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
575
|
+
* @memberof V1Camera
|
|
576
|
+
*/
|
|
577
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
572
578
|
}
|
|
573
579
|
/**
|
|
574
580
|
*
|
|
@@ -881,6 +887,12 @@ export interface V1CreateCameraRequest {
|
|
|
881
887
|
* @memberof V1CreateCameraRequest
|
|
882
888
|
*/
|
|
883
889
|
'isColor': boolean;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
893
|
+
* @memberof V1CreateCameraRequest
|
|
894
|
+
*/
|
|
895
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
884
896
|
}
|
|
885
897
|
/**
|
|
886
898
|
*
|
|
@@ -1264,6 +1276,12 @@ export interface V1GetOrCreateCameraRequest {
|
|
|
1264
1276
|
* @memberof V1GetOrCreateCameraRequest
|
|
1265
1277
|
*/
|
|
1266
1278
|
'isColor'?: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* @type {Array<V1VideoModeFramerateProperty>}
|
|
1282
|
+
* @memberof V1GetOrCreateCameraRequest
|
|
1283
|
+
*/
|
|
1284
|
+
'videoModeFramerateProperties'?: Array<V1VideoModeFramerateProperty>;
|
|
1267
1285
|
}
|
|
1268
1286
|
/**
|
|
1269
1287
|
*
|
|
@@ -1962,6 +1980,43 @@ export interface V1UpdateNodeRequest {
|
|
|
1962
1980
|
*/
|
|
1963
1981
|
'state'?: NodeState;
|
|
1964
1982
|
}
|
|
1983
|
+
/**
|
|
1984
|
+
*
|
|
1985
|
+
* @export
|
|
1986
|
+
* @interface V1VideoModeFramerateProperty
|
|
1987
|
+
*/
|
|
1988
|
+
export interface V1VideoModeFramerateProperty {
|
|
1989
|
+
/**
|
|
1990
|
+
*
|
|
1991
|
+
* @type {number}
|
|
1992
|
+
* @memberof V1VideoModeFramerateProperty
|
|
1993
|
+
*/
|
|
1994
|
+
'roiXPixels': number;
|
|
1995
|
+
/**
|
|
1996
|
+
*
|
|
1997
|
+
* @type {number}
|
|
1998
|
+
* @memberof V1VideoModeFramerateProperty
|
|
1999
|
+
*/
|
|
2000
|
+
'roiYPixels': number;
|
|
2001
|
+
/**
|
|
2002
|
+
*
|
|
2003
|
+
* @type {number}
|
|
2004
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2005
|
+
*/
|
|
2006
|
+
'adcBitDepth': number;
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @type {number}
|
|
2010
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2011
|
+
*/
|
|
2012
|
+
'fps': number;
|
|
2013
|
+
/**
|
|
2014
|
+
*
|
|
2015
|
+
* @type {number}
|
|
2016
|
+
* @memberof V1VideoModeFramerateProperty
|
|
2017
|
+
*/
|
|
2018
|
+
'binning': number;
|
|
2019
|
+
}
|
|
1965
2020
|
/**
|
|
1966
2021
|
* DefaultApi - axios parameter creator
|
|
1967
2022
|
* @export
|
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.2078
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
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.2078
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|