@ourskyai/platform-api 1.3.5447 → 1.3.5667

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/platform-api@1.3.5447
1
+ ## @ourskyai/platform-api@1.3.5667
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.5447 --save
39
+ npm install @ourskyai/platform-api@1.3.5667 --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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1932,7 +1932,7 @@ export interface V1NodeCommand {
1932
1932
  * @type V1NodeCommandBody
1933
1933
  * @export
1934
1934
  */
1935
- export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1935
+ export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1936
1936
 
1937
1937
  /**
1938
1938
  *
@@ -1943,7 +1943,9 @@ export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1Sto
1943
1943
  export const V1NodeCommandType = {
1944
1944
  V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
1945
1945
  V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
1946
- V1_HALT: 'V1_HALT'
1946
+ V1_HALT: 'V1_HALT',
1947
+ V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
1948
+ V1_RESTART_ADB: 'V1_RESTART_ADB'
1947
1949
  } as const;
1948
1950
 
1949
1951
  export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
@@ -1961,7 +1963,10 @@ export const V1NodeComponentType = {
1961
1963
  OPTICAL_TUBE: 'OPTICAL_TUBE',
1962
1964
  COMPUTER: 'COMPUTER',
1963
1965
  SAFETY_MONITOR: 'SAFETY_MONITOR',
1964
- NODE: 'NODE'
1966
+ NODE: 'NODE',
1967
+ FOCUSER: 'FOCUSER',
1968
+ FILTER_WHEEL: 'FILTER_WHEEL',
1969
+ WEATHER_STATION: 'WEATHER_STATION'
1965
1970
  } as const;
1966
1971
 
1967
1972
  export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
@@ -2146,7 +2151,8 @@ export const V1NodeEventType = {
2146
2151
  V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
2147
2152
  V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
2148
2153
  V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
2149
- V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
2154
+ V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED',
2155
+ V1_PROPAGATION_TARGET_SELECTED: 'V1_PROPAGATION_TARGET_SELECTED'
2150
2156
  } as const;
2151
2157
 
2152
2158
  export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
@@ -2605,6 +2611,19 @@ export interface V1ReadNoisePoint {
2605
2611
  */
2606
2612
  'eRMS': number;
2607
2613
  }
2614
+ /**
2615
+ *
2616
+ * @export
2617
+ * @interface V1RebootSystem
2618
+ */
2619
+ export interface V1RebootSystem {
2620
+ /**
2621
+ *
2622
+ * @type {boolean}
2623
+ * @memberof V1RebootSystem
2624
+ */
2625
+ 'placeholder'?: boolean;
2626
+ }
2608
2627
  /**
2609
2628
  *
2610
2629
  * @export
@@ -2657,6 +2676,19 @@ export interface V1Release {
2657
2676
  }
2658
2677
 
2659
2678
 
2679
+ /**
2680
+ *
2681
+ * @export
2682
+ * @interface V1RestartAdb
2683
+ */
2684
+ export interface V1RestartAdb {
2685
+ /**
2686
+ *
2687
+ * @type {boolean}
2688
+ * @memberof V1RestartAdb
2689
+ */
2690
+ 'placeholder'?: boolean;
2691
+ }
2660
2692
  /**
2661
2693
  *
2662
2694
  * @export
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1842,7 +1842,7 @@ export interface V1NodeCommand {
1842
1842
  * @type V1NodeCommandBody
1843
1843
  * @export
1844
1844
  */
1845
- export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1845
+ export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1846
1846
  /**
1847
1847
  *
1848
1848
  * @export
@@ -1852,6 +1852,8 @@ export declare const V1NodeCommandType: {
1852
1852
  readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
1853
1853
  readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
1854
1854
  readonly V1_HALT: "V1_HALT";
1855
+ readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
1856
+ readonly V1_RESTART_ADB: "V1_RESTART_ADB";
1855
1857
  };
1856
1858
  export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
1857
1859
  /**
@@ -1866,6 +1868,9 @@ export declare const V1NodeComponentType: {
1866
1868
  readonly COMPUTER: "COMPUTER";
1867
1869
  readonly SAFETY_MONITOR: "SAFETY_MONITOR";
1868
1870
  readonly NODE: "NODE";
1871
+ readonly FOCUSER: "FOCUSER";
1872
+ readonly FILTER_WHEEL: "FILTER_WHEEL";
1873
+ readonly WEATHER_STATION: "WEATHER_STATION";
1869
1874
  };
1870
1875
  export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
1871
1876
  /**
@@ -2037,6 +2042,7 @@ export declare const V1NodeEventType: {
2037
2042
  readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
2038
2043
  readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
2039
2044
  readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
2045
+ readonly V1_PROPAGATION_TARGET_SELECTED: "V1_PROPAGATION_TARGET_SELECTED";
2040
2046
  };
2041
2047
  export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
2042
2048
  /**
@@ -2487,6 +2493,19 @@ export interface V1ReadNoisePoint {
2487
2493
  */
2488
2494
  'eRMS': number;
2489
2495
  }
2496
+ /**
2497
+ *
2498
+ * @export
2499
+ * @interface V1RebootSystem
2500
+ */
2501
+ export interface V1RebootSystem {
2502
+ /**
2503
+ *
2504
+ * @type {boolean}
2505
+ * @memberof V1RebootSystem
2506
+ */
2507
+ 'placeholder'?: boolean;
2508
+ }
2490
2509
  /**
2491
2510
  *
2492
2511
  * @export
@@ -2537,6 +2556,19 @@ export interface V1Release {
2537
2556
  */
2538
2557
  'fileType': V1FileType;
2539
2558
  }
2559
+ /**
2560
+ *
2561
+ * @export
2562
+ * @interface V1RestartAdb
2563
+ */
2564
+ export interface V1RestartAdb {
2565
+ /**
2566
+ *
2567
+ * @type {boolean}
2568
+ * @memberof V1RestartAdb
2569
+ */
2570
+ 'placeholder'?: boolean;
2571
+ }
2540
2572
  /**
2541
2573
  *
2542
2574
  * @export
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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -186,7 +186,9 @@ exports.V1FileType = {
186
186
  exports.V1NodeCommandType = {
187
187
  V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
188
188
  V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
189
- V1_HALT: 'V1_HALT'
189
+ V1_HALT: 'V1_HALT',
190
+ V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
191
+ V1_RESTART_ADB: 'V1_RESTART_ADB'
190
192
  };
191
193
  /**
192
194
  *
@@ -199,7 +201,10 @@ exports.V1NodeComponentType = {
199
201
  OPTICAL_TUBE: 'OPTICAL_TUBE',
200
202
  COMPUTER: 'COMPUTER',
201
203
  SAFETY_MONITOR: 'SAFETY_MONITOR',
202
- NODE: 'NODE'
204
+ NODE: 'NODE',
205
+ FOCUSER: 'FOCUSER',
206
+ FILTER_WHEEL: 'FILTER_WHEEL',
207
+ WEATHER_STATION: 'WEATHER_STATION'
203
208
  };
204
209
  /**
205
210
  * The status of the bootstrapping process.
@@ -267,7 +272,8 @@ exports.V1NodeEventType = {
267
272
  V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
268
273
  V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
269
274
  V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
270
- V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
275
+ V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED',
276
+ V1_PROPAGATION_TARGET_SELECTED: 'V1_PROPAGATION_TARGET_SELECTED'
271
277
  };
272
278
  exports.V1PlateSolveCatalogFileDownloadActionEnum = {
273
279
  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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
9
9
  *
10
10
  *
11
11
  * 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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1842,7 +1842,7 @@ export interface V1NodeCommand {
1842
1842
  * @type V1NodeCommandBody
1843
1843
  * @export
1844
1844
  */
1845
- export type V1NodeCommandBody = V1Halt | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1845
+ export type V1NodeCommandBody = V1Halt | V1RebootSystem | V1RestartAdb | V1StartPerpetualInstructionLoop | V1StopPerpetualInstructionLoop;
1846
1846
  /**
1847
1847
  *
1848
1848
  * @export
@@ -1852,6 +1852,8 @@ export declare const V1NodeCommandType: {
1852
1852
  readonly V1_START_PERPETUAL_INSTRUCTION_LOOP: "V1_START_PERPETUAL_INSTRUCTION_LOOP";
1853
1853
  readonly V1_STOP_PERPETUAL_INSTRUCTION_LOOP: "V1_STOP_PERPETUAL_INSTRUCTION_LOOP";
1854
1854
  readonly V1_HALT: "V1_HALT";
1855
+ readonly V1_REBOOT_SYSTEM: "V1_REBOOT_SYSTEM";
1856
+ readonly V1_RESTART_ADB: "V1_RESTART_ADB";
1855
1857
  };
1856
1858
  export type V1NodeCommandType = typeof V1NodeCommandType[keyof typeof V1NodeCommandType];
1857
1859
  /**
@@ -1866,6 +1868,9 @@ export declare const V1NodeComponentType: {
1866
1868
  readonly COMPUTER: "COMPUTER";
1867
1869
  readonly SAFETY_MONITOR: "SAFETY_MONITOR";
1868
1870
  readonly NODE: "NODE";
1871
+ readonly FOCUSER: "FOCUSER";
1872
+ readonly FILTER_WHEEL: "FILTER_WHEEL";
1873
+ readonly WEATHER_STATION: "WEATHER_STATION";
1869
1874
  };
1870
1875
  export type V1NodeComponentType = typeof V1NodeComponentType[keyof typeof V1NodeComponentType];
1871
1876
  /**
@@ -2037,6 +2042,7 @@ export declare const V1NodeEventType: {
2037
2042
  readonly V1_SEARCH_INSTRUCTION_TASKED: "V1_SEARCH_INSTRUCTION_TASKED";
2038
2043
  readonly V1_SURVEY_INSTRUCTION_TASKED: "V1_SURVEY_INSTRUCTION_TASKED";
2039
2044
  readonly V1_OBSERVATION_INSTRUCTION_TASKED: "V1_OBSERVATION_INSTRUCTION_TASKED";
2045
+ readonly V1_PROPAGATION_TARGET_SELECTED: "V1_PROPAGATION_TARGET_SELECTED";
2040
2046
  };
2041
2047
  export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
2042
2048
  /**
@@ -2487,6 +2493,19 @@ export interface V1ReadNoisePoint {
2487
2493
  */
2488
2494
  'eRMS': number;
2489
2495
  }
2496
+ /**
2497
+ *
2498
+ * @export
2499
+ * @interface V1RebootSystem
2500
+ */
2501
+ export interface V1RebootSystem {
2502
+ /**
2503
+ *
2504
+ * @type {boolean}
2505
+ * @memberof V1RebootSystem
2506
+ */
2507
+ 'placeholder'?: boolean;
2508
+ }
2490
2509
  /**
2491
2510
  *
2492
2511
  * @export
@@ -2537,6 +2556,19 @@ export interface V1Release {
2537
2556
  */
2538
2557
  'fileType': V1FileType;
2539
2558
  }
2559
+ /**
2560
+ *
2561
+ * @export
2562
+ * @interface V1RestartAdb
2563
+ */
2564
+ export interface V1RestartAdb {
2565
+ /**
2566
+ *
2567
+ * @type {boolean}
2568
+ * @memberof V1RestartAdb
2569
+ */
2570
+ 'placeholder'?: boolean;
2571
+ }
2540
2572
  /**
2541
2573
  *
2542
2574
  * @export
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -183,7 +183,9 @@ export const V1FileType = {
183
183
  export const V1NodeCommandType = {
184
184
  V1_START_PERPETUAL_INSTRUCTION_LOOP: 'V1_START_PERPETUAL_INSTRUCTION_LOOP',
185
185
  V1_STOP_PERPETUAL_INSTRUCTION_LOOP: 'V1_STOP_PERPETUAL_INSTRUCTION_LOOP',
186
- V1_HALT: 'V1_HALT'
186
+ V1_HALT: 'V1_HALT',
187
+ V1_REBOOT_SYSTEM: 'V1_REBOOT_SYSTEM',
188
+ V1_RESTART_ADB: 'V1_RESTART_ADB'
187
189
  };
188
190
  /**
189
191
  *
@@ -196,7 +198,10 @@ export const V1NodeComponentType = {
196
198
  OPTICAL_TUBE: 'OPTICAL_TUBE',
197
199
  COMPUTER: 'COMPUTER',
198
200
  SAFETY_MONITOR: 'SAFETY_MONITOR',
199
- NODE: 'NODE'
201
+ NODE: 'NODE',
202
+ FOCUSER: 'FOCUSER',
203
+ FILTER_WHEEL: 'FILTER_WHEEL',
204
+ WEATHER_STATION: 'WEATHER_STATION'
200
205
  };
201
206
  /**
202
207
  * The status of the bootstrapping process.
@@ -264,7 +269,8 @@ export const V1NodeEventType = {
264
269
  V1_DIAGNOSTIC_INSTRUCTION_TASKED: 'V1_DIAGNOSTIC_INSTRUCTION_TASKED',
265
270
  V1_SEARCH_INSTRUCTION_TASKED: 'V1_SEARCH_INSTRUCTION_TASKED',
266
271
  V1_SURVEY_INSTRUCTION_TASKED: 'V1_SURVEY_INSTRUCTION_TASKED',
267
- V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED'
272
+ V1_OBSERVATION_INSTRUCTION_TASKED: 'V1_OBSERVATION_INSTRUCTION_TASKED',
273
+ V1_PROPAGATION_TARGET_SELECTED: 'V1_PROPAGATION_TARGET_SELECTED'
268
274
  };
269
275
  export const V1PlateSolveCatalogFileDownloadActionEnum = {
270
276
  DOWNLOAD: 'DOWNLOAD',
@@ -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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
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.5447
5
+ * The version of the OpenAPI document: 1.3.5667
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.5447
8
+ * The version of the OpenAPI document: 1.3.5667
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.5447
7
+ * The version of the OpenAPI document: 1.3.5667
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/platform-api",
3
- "version": "1.3.5447",
3
+ "version": "1.3.5667",
4
4
  "description": "OpenAPI client for @ourskyai/platform-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {