@ourskyai/astro-api 1.3.2816 → 1.3.3194
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 +64 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +64 -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 +64 -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.3194
|
|
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.3194 --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.3194
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -790,8 +790,15 @@ export interface V1CreateCalibrationMasterRequest {
|
|
|
790
790
|
*
|
|
791
791
|
* @type {boolean}
|
|
792
792
|
* @memberof V1CreateCalibrationMasterRequest
|
|
793
|
+
* @deprecated
|
|
793
794
|
*/
|
|
794
795
|
'overwrite'?: boolean;
|
|
796
|
+
/**
|
|
797
|
+
*
|
|
798
|
+
* @type {string}
|
|
799
|
+
* @memberof V1CreateCalibrationMasterRequest
|
|
800
|
+
*/
|
|
801
|
+
'capturedAt'?: string;
|
|
795
802
|
}
|
|
796
803
|
|
|
797
804
|
|
|
@@ -1818,6 +1825,12 @@ export interface V1Node {
|
|
|
1818
1825
|
* @memberof V1Node
|
|
1819
1826
|
*/
|
|
1820
1827
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
1828
|
+
/**
|
|
1829
|
+
*
|
|
1830
|
+
* @type {V1SlewTiming}
|
|
1831
|
+
* @memberof V1Node
|
|
1832
|
+
*/
|
|
1833
|
+
'slewTiming'?: V1SlewTiming;
|
|
1821
1834
|
/**
|
|
1822
1835
|
*
|
|
1823
1836
|
* @type {string}
|
|
@@ -2051,6 +2064,50 @@ export interface V1SetupAction {
|
|
|
2051
2064
|
*/
|
|
2052
2065
|
'arguments'?: Array<string>;
|
|
2053
2066
|
}
|
|
2067
|
+
/**
|
|
2068
|
+
* Slew Timing
|
|
2069
|
+
* @export
|
|
2070
|
+
* @interface V1SlewTiming
|
|
2071
|
+
*/
|
|
2072
|
+
export interface V1SlewTiming {
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
2076
|
+
* @memberof V1SlewTiming
|
|
2077
|
+
*/
|
|
2078
|
+
'azimuth': Array<V1SlewTimingInterval>;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
2082
|
+
* @memberof V1SlewTiming
|
|
2083
|
+
*/
|
|
2084
|
+
'altitude': Array<V1SlewTimingInterval>;
|
|
2085
|
+
}
|
|
2086
|
+
/**
|
|
2087
|
+
* Slew Timing Interval
|
|
2088
|
+
* @export
|
|
2089
|
+
* @interface V1SlewTimingInterval
|
|
2090
|
+
*/
|
|
2091
|
+
export interface V1SlewTimingInterval {
|
|
2092
|
+
/**
|
|
2093
|
+
*
|
|
2094
|
+
* @type {number}
|
|
2095
|
+
* @memberof V1SlewTimingInterval
|
|
2096
|
+
*/
|
|
2097
|
+
'startDegree': number;
|
|
2098
|
+
/**
|
|
2099
|
+
*
|
|
2100
|
+
* @type {number}
|
|
2101
|
+
* @memberof V1SlewTimingInterval
|
|
2102
|
+
*/
|
|
2103
|
+
'endDegree': number;
|
|
2104
|
+
/**
|
|
2105
|
+
*
|
|
2106
|
+
* @type {number}
|
|
2107
|
+
* @memberof V1SlewTimingInterval
|
|
2108
|
+
*/
|
|
2109
|
+
'durationMs': number;
|
|
2110
|
+
}
|
|
2054
2111
|
/**
|
|
2055
2112
|
* Update Node
|
|
2056
2113
|
* @export
|
|
@@ -2111,6 +2168,12 @@ export interface V1UpdateNodeRequest {
|
|
|
2111
2168
|
* @memberof V1UpdateNodeRequest
|
|
2112
2169
|
*/
|
|
2113
2170
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
2171
|
+
/**
|
|
2172
|
+
*
|
|
2173
|
+
* @type {V1SlewTiming}
|
|
2174
|
+
* @memberof V1UpdateNodeRequest
|
|
2175
|
+
*/
|
|
2176
|
+
'slewTiming'?: V1SlewTiming;
|
|
2114
2177
|
/**
|
|
2115
2178
|
*
|
|
2116
2179
|
* @type {Location}
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -734,8 +734,15 @@ export interface V1CreateCalibrationMasterRequest {
|
|
|
734
734
|
*
|
|
735
735
|
* @type {boolean}
|
|
736
736
|
* @memberof V1CreateCalibrationMasterRequest
|
|
737
|
+
* @deprecated
|
|
737
738
|
*/
|
|
738
739
|
'overwrite'?: boolean;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof V1CreateCalibrationMasterRequest
|
|
744
|
+
*/
|
|
745
|
+
'capturedAt'?: string;
|
|
739
746
|
}
|
|
740
747
|
/**
|
|
741
748
|
*
|
|
@@ -1734,6 +1741,12 @@ export interface V1Node {
|
|
|
1734
1741
|
* @memberof V1Node
|
|
1735
1742
|
*/
|
|
1736
1743
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
1744
|
+
/**
|
|
1745
|
+
*
|
|
1746
|
+
* @type {V1SlewTiming}
|
|
1747
|
+
* @memberof V1Node
|
|
1748
|
+
*/
|
|
1749
|
+
'slewTiming'?: V1SlewTiming;
|
|
1737
1750
|
/**
|
|
1738
1751
|
*
|
|
1739
1752
|
* @type {string}
|
|
@@ -1951,6 +1964,50 @@ export interface V1SetupAction {
|
|
|
1951
1964
|
*/
|
|
1952
1965
|
'arguments'?: Array<string>;
|
|
1953
1966
|
}
|
|
1967
|
+
/**
|
|
1968
|
+
* Slew Timing
|
|
1969
|
+
* @export
|
|
1970
|
+
* @interface V1SlewTiming
|
|
1971
|
+
*/
|
|
1972
|
+
export interface V1SlewTiming {
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
1976
|
+
* @memberof V1SlewTiming
|
|
1977
|
+
*/
|
|
1978
|
+
'azimuth': Array<V1SlewTimingInterval>;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
1982
|
+
* @memberof V1SlewTiming
|
|
1983
|
+
*/
|
|
1984
|
+
'altitude': Array<V1SlewTimingInterval>;
|
|
1985
|
+
}
|
|
1986
|
+
/**
|
|
1987
|
+
* Slew Timing Interval
|
|
1988
|
+
* @export
|
|
1989
|
+
* @interface V1SlewTimingInterval
|
|
1990
|
+
*/
|
|
1991
|
+
export interface V1SlewTimingInterval {
|
|
1992
|
+
/**
|
|
1993
|
+
*
|
|
1994
|
+
* @type {number}
|
|
1995
|
+
* @memberof V1SlewTimingInterval
|
|
1996
|
+
*/
|
|
1997
|
+
'startDegree': number;
|
|
1998
|
+
/**
|
|
1999
|
+
*
|
|
2000
|
+
* @type {number}
|
|
2001
|
+
* @memberof V1SlewTimingInterval
|
|
2002
|
+
*/
|
|
2003
|
+
'endDegree': number;
|
|
2004
|
+
/**
|
|
2005
|
+
*
|
|
2006
|
+
* @type {number}
|
|
2007
|
+
* @memberof V1SlewTimingInterval
|
|
2008
|
+
*/
|
|
2009
|
+
'durationMs': number;
|
|
2010
|
+
}
|
|
1954
2011
|
/**
|
|
1955
2012
|
* Update Node
|
|
1956
2013
|
* @export
|
|
@@ -2011,6 +2068,12 @@ export interface V1UpdateNodeRequest {
|
|
|
2011
2068
|
* @memberof V1UpdateNodeRequest
|
|
2012
2069
|
*/
|
|
2013
2070
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
2071
|
+
/**
|
|
2072
|
+
*
|
|
2073
|
+
* @type {V1SlewTiming}
|
|
2074
|
+
* @memberof V1UpdateNodeRequest
|
|
2075
|
+
*/
|
|
2076
|
+
'slewTiming'?: V1SlewTiming;
|
|
2014
2077
|
/**
|
|
2015
2078
|
*
|
|
2016
2079
|
* @type {Location}
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -734,8 +734,15 @@ export interface V1CreateCalibrationMasterRequest {
|
|
|
734
734
|
*
|
|
735
735
|
* @type {boolean}
|
|
736
736
|
* @memberof V1CreateCalibrationMasterRequest
|
|
737
|
+
* @deprecated
|
|
737
738
|
*/
|
|
738
739
|
'overwrite'?: boolean;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof V1CreateCalibrationMasterRequest
|
|
744
|
+
*/
|
|
745
|
+
'capturedAt'?: string;
|
|
739
746
|
}
|
|
740
747
|
/**
|
|
741
748
|
*
|
|
@@ -1734,6 +1741,12 @@ export interface V1Node {
|
|
|
1734
1741
|
* @memberof V1Node
|
|
1735
1742
|
*/
|
|
1736
1743
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
1744
|
+
/**
|
|
1745
|
+
*
|
|
1746
|
+
* @type {V1SlewTiming}
|
|
1747
|
+
* @memberof V1Node
|
|
1748
|
+
*/
|
|
1749
|
+
'slewTiming'?: V1SlewTiming;
|
|
1737
1750
|
/**
|
|
1738
1751
|
*
|
|
1739
1752
|
* @type {string}
|
|
@@ -1951,6 +1964,50 @@ export interface V1SetupAction {
|
|
|
1951
1964
|
*/
|
|
1952
1965
|
'arguments'?: Array<string>;
|
|
1953
1966
|
}
|
|
1967
|
+
/**
|
|
1968
|
+
* Slew Timing
|
|
1969
|
+
* @export
|
|
1970
|
+
* @interface V1SlewTiming
|
|
1971
|
+
*/
|
|
1972
|
+
export interface V1SlewTiming {
|
|
1973
|
+
/**
|
|
1974
|
+
*
|
|
1975
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
1976
|
+
* @memberof V1SlewTiming
|
|
1977
|
+
*/
|
|
1978
|
+
'azimuth': Array<V1SlewTimingInterval>;
|
|
1979
|
+
/**
|
|
1980
|
+
*
|
|
1981
|
+
* @type {Array<V1SlewTimingInterval>}
|
|
1982
|
+
* @memberof V1SlewTiming
|
|
1983
|
+
*/
|
|
1984
|
+
'altitude': Array<V1SlewTimingInterval>;
|
|
1985
|
+
}
|
|
1986
|
+
/**
|
|
1987
|
+
* Slew Timing Interval
|
|
1988
|
+
* @export
|
|
1989
|
+
* @interface V1SlewTimingInterval
|
|
1990
|
+
*/
|
|
1991
|
+
export interface V1SlewTimingInterval {
|
|
1992
|
+
/**
|
|
1993
|
+
*
|
|
1994
|
+
* @type {number}
|
|
1995
|
+
* @memberof V1SlewTimingInterval
|
|
1996
|
+
*/
|
|
1997
|
+
'startDegree': number;
|
|
1998
|
+
/**
|
|
1999
|
+
*
|
|
2000
|
+
* @type {number}
|
|
2001
|
+
* @memberof V1SlewTimingInterval
|
|
2002
|
+
*/
|
|
2003
|
+
'endDegree': number;
|
|
2004
|
+
/**
|
|
2005
|
+
*
|
|
2006
|
+
* @type {number}
|
|
2007
|
+
* @memberof V1SlewTimingInterval
|
|
2008
|
+
*/
|
|
2009
|
+
'durationMs': number;
|
|
2010
|
+
}
|
|
1954
2011
|
/**
|
|
1955
2012
|
* Update Node
|
|
1956
2013
|
* @export
|
|
@@ -2011,6 +2068,12 @@ export interface V1UpdateNodeRequest {
|
|
|
2011
2068
|
* @memberof V1UpdateNodeRequest
|
|
2012
2069
|
*/
|
|
2013
2070
|
'elevationMask'?: Array<V1ElevationMaskPoint>;
|
|
2071
|
+
/**
|
|
2072
|
+
*
|
|
2073
|
+
* @type {V1SlewTiming}
|
|
2074
|
+
* @memberof V1UpdateNodeRequest
|
|
2075
|
+
*/
|
|
2076
|
+
'slewTiming'?: V1SlewTiming;
|
|
2014
2077
|
/**
|
|
2015
2078
|
*
|
|
2016
2079
|
* @type {Location}
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
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.3194
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|