@ourskyai/platform-api 1.3.5064 → 1.3.5184

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/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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -228,7 +228,8 @@ export const V1NodeDiagnosticType = {
228
228
  ASCOM_SECONDARY_SIGN_EAST: 'ASCOM_SECONDARY_SIGN_EAST',
229
229
  ASCOM_PRIMARY_REVERSED: 'ASCOM_PRIMARY_REVERSED',
230
230
  ASCOM_SECONDARY_REVERSED: 'ASCOM_SECONDARY_REVERSED',
231
- ASCOM_CAN_TRACK_LEO: 'ASCOM_CAN_TRACK_LEO'
231
+ ASCOM_CAN_TRACK_LEO: 'ASCOM_CAN_TRACK_LEO',
232
+ FOCUSER_RANGE: 'FOCUSER_RANGE'
232
233
  };
233
234
  /**
234
235
  *
@@ -410,6 +411,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
410
411
  options: localVarRequestOptions,
411
412
  };
412
413
  }),
414
+ /**
415
+ * Create an focuser.
416
+ * @param {V1CreateFocuserRequest} v1CreateFocuserRequest
417
+ * @param {*} [options] Override http request option.
418
+ * @throws {RequiredError}
419
+ */
420
+ v1CreateFocuser: (v1CreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
421
+ // verify required parameter 'v1CreateFocuserRequest' is not null or undefined
422
+ assertParamExists('v1CreateFocuser', 'v1CreateFocuserRequest', v1CreateFocuserRequest);
423
+ const localVarPath = `/v1/focuser`;
424
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
425
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
426
+ let baseOptions;
427
+ if (configuration) {
428
+ baseOptions = configuration.baseOptions;
429
+ }
430
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
431
+ const localVarHeaderParameter = {};
432
+ const localVarQueryParameter = {};
433
+ // authentication Roles required
434
+ // authentication BearerToken required
435
+ // http bearer authentication required
436
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
437
+ localVarHeaderParameter['Content-Type'] = 'application/json';
438
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
439
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
440
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
441
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateFocuserRequest, localVarRequestOptions, configuration);
442
+ return {
443
+ url: toPathString(localVarUrlObj),
444
+ options: localVarRequestOptions,
445
+ };
446
+ }),
413
447
  /**
414
448
  * Create an image set.
415
449
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -809,6 +843,42 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
809
843
  options: localVarRequestOptions,
810
844
  };
811
845
  }),
846
+ /**
847
+ * Match focuser.
848
+ * @param {string} [model]
849
+ * @param {number} [travelDistanceMm]
850
+ * @param {*} [options] Override http request option.
851
+ * @throws {RequiredError}
852
+ */
853
+ v1FocuserMatch: (model, travelDistanceMm, options = {}) => __awaiter(this, void 0, void 0, function* () {
854
+ const localVarPath = `/v1/focuser-match`;
855
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
856
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
857
+ let baseOptions;
858
+ if (configuration) {
859
+ baseOptions = configuration.baseOptions;
860
+ }
861
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
862
+ const localVarHeaderParameter = {};
863
+ const localVarQueryParameter = {};
864
+ // authentication Roles required
865
+ // authentication BearerToken required
866
+ // http bearer authentication required
867
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
868
+ if (model !== undefined) {
869
+ localVarQueryParameter['model'] = model;
870
+ }
871
+ if (travelDistanceMm !== undefined) {
872
+ localVarQueryParameter['travelDistanceMm'] = travelDistanceMm;
873
+ }
874
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
875
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
876
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
877
+ return {
878
+ url: toPathString(localVarUrlObj),
879
+ options: localVarRequestOptions,
880
+ };
881
+ }),
812
882
  /**
813
883
  * Get cameras.
814
884
  * @param {*} [options] Override http request option.
@@ -837,6 +907,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
837
907
  options: localVarRequestOptions,
838
908
  };
839
909
  }),
910
+ /**
911
+ * Get a focuser.
912
+ * @param {string} id
913
+ * @param {*} [options] Override http request option.
914
+ * @throws {RequiredError}
915
+ */
916
+ v1GetFocuser: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
917
+ // verify required parameter 'id' is not null or undefined
918
+ assertParamExists('v1GetFocuser', 'id', id);
919
+ const localVarPath = `/v1/focuser`;
920
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
921
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
922
+ let baseOptions;
923
+ if (configuration) {
924
+ baseOptions = configuration.baseOptions;
925
+ }
926
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
927
+ const localVarHeaderParameter = {};
928
+ const localVarQueryParameter = {};
929
+ // authentication Roles required
930
+ // authentication BearerToken required
931
+ // http bearer authentication required
932
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
933
+ if (id !== undefined) {
934
+ localVarQueryParameter['id'] = id;
935
+ }
936
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
937
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
938
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
939
+ return {
940
+ url: toPathString(localVarUrlObj),
941
+ options: localVarRequestOptions,
942
+ };
943
+ }),
840
944
  /**
841
945
  * Get an image set.
842
946
  * @param {string} id
@@ -1317,6 +1421,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1317
1421
  options: localVarRequestOptions,
1318
1422
  };
1319
1423
  }),
1424
+ /**
1425
+ * Get or create focuser.
1426
+ * @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
1427
+ * @param {*} [options] Override http request option.
1428
+ * @throws {RequiredError}
1429
+ */
1430
+ v1GetOrCreateFocuser: (v1GetOrCreateFocuserRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
1431
+ // verify required parameter 'v1GetOrCreateFocuserRequest' is not null or undefined
1432
+ assertParamExists('v1GetOrCreateFocuser', 'v1GetOrCreateFocuserRequest', v1GetOrCreateFocuserRequest);
1433
+ const localVarPath = `/v1/focuser-match`;
1434
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1435
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1436
+ let baseOptions;
1437
+ if (configuration) {
1438
+ baseOptions = configuration.baseOptions;
1439
+ }
1440
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
1441
+ const localVarHeaderParameter = {};
1442
+ const localVarQueryParameter = {};
1443
+ // authentication Roles required
1444
+ // authentication BearerToken required
1445
+ // http bearer authentication required
1446
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1447
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1448
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1449
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1450
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1451
+ localVarRequestOptions.data = serializeDataIfNeeded(v1GetOrCreateFocuserRequest, localVarRequestOptions, configuration);
1452
+ return {
1453
+ url: toPathString(localVarUrlObj),
1454
+ options: localVarRequestOptions,
1455
+ };
1456
+ }),
1320
1457
  /**
1321
1458
  * Get or create mount.
1322
1459
  * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
@@ -1650,6 +1787,18 @@ export const DefaultApiFp = function (configuration) {
1650
1787
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1651
1788
  });
1652
1789
  },
1790
+ /**
1791
+ * Create an focuser.
1792
+ * @param {V1CreateFocuserRequest} v1CreateFocuserRequest
1793
+ * @param {*} [options] Override http request option.
1794
+ * @throws {RequiredError}
1795
+ */
1796
+ v1CreateFocuser(v1CreateFocuserRequest, options) {
1797
+ return __awaiter(this, void 0, void 0, function* () {
1798
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateFocuser(v1CreateFocuserRequest, options);
1799
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1800
+ });
1801
+ },
1653
1802
  /**
1654
1803
  * Create an image set.
1655
1804
  * @param {V1CreateImageSetRequest} v1CreateImageSetRequest
@@ -1794,6 +1943,19 @@ export const DefaultApiFp = function (configuration) {
1794
1943
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1795
1944
  });
1796
1945
  },
1946
+ /**
1947
+ * Match focuser.
1948
+ * @param {string} [model]
1949
+ * @param {number} [travelDistanceMm]
1950
+ * @param {*} [options] Override http request option.
1951
+ * @throws {RequiredError}
1952
+ */
1953
+ v1FocuserMatch(model, travelDistanceMm, options) {
1954
+ return __awaiter(this, void 0, void 0, function* () {
1955
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1FocuserMatch(model, travelDistanceMm, options);
1956
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1957
+ });
1958
+ },
1797
1959
  /**
1798
1960
  * Get cameras.
1799
1961
  * @param {*} [options] Override http request option.
@@ -1805,6 +1967,18 @@ export const DefaultApiFp = function (configuration) {
1805
1967
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1806
1968
  });
1807
1969
  },
1970
+ /**
1971
+ * Get a focuser.
1972
+ * @param {string} id
1973
+ * @param {*} [options] Override http request option.
1974
+ * @throws {RequiredError}
1975
+ */
1976
+ v1GetFocuser(id, options) {
1977
+ return __awaiter(this, void 0, void 0, function* () {
1978
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetFocuser(id, options);
1979
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1980
+ });
1981
+ },
1808
1982
  /**
1809
1983
  * Get an image set.
1810
1984
  * @param {string} id
@@ -1974,6 +2148,18 @@ export const DefaultApiFp = function (configuration) {
1974
2148
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1975
2149
  });
1976
2150
  },
2151
+ /**
2152
+ * Get or create focuser.
2153
+ * @param {V1GetOrCreateFocuserRequest} v1GetOrCreateFocuserRequest
2154
+ * @param {*} [options] Override http request option.
2155
+ * @throws {RequiredError}
2156
+ */
2157
+ v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options) {
2158
+ return __awaiter(this, void 0, void 0, function* () {
2159
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetOrCreateFocuser(v1GetOrCreateFocuserRequest, options);
2160
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2161
+ });
2162
+ },
1977
2163
  /**
1978
2164
  * Get or create mount.
1979
2165
  * @param {V1GetOrCreateMountRequest} v1GetOrCreateMountRequest
@@ -2116,6 +2302,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2116
2302
  v1CreateAutofocusResult(requestParameters, options) {
2117
2303
  return localVarFp.v1CreateAutofocusResult(requestParameters.v1CreateAutofocusResultRequest, options).then((request) => request(axios, basePath));
2118
2304
  },
2305
+ /**
2306
+ * Create an focuser.
2307
+ * @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
2308
+ * @param {*} [options] Override http request option.
2309
+ * @throws {RequiredError}
2310
+ */
2311
+ v1CreateFocuser(requestParameters, options) {
2312
+ return localVarFp.v1CreateFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(axios, basePath));
2313
+ },
2119
2314
  /**
2120
2315
  * Create an image set.
2121
2316
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -2224,6 +2419,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2224
2419
  v1DeleteNodeCommand(requestParameters, options) {
2225
2420
  return localVarFp.v1DeleteNodeCommand(requestParameters.id, options).then((request) => request(axios, basePath));
2226
2421
  },
2422
+ /**
2423
+ * Match focuser.
2424
+ * @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
2425
+ * @param {*} [options] Override http request option.
2426
+ * @throws {RequiredError}
2427
+ */
2428
+ v1FocuserMatch(requestParameters = {}, options) {
2429
+ return localVarFp.v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(axios, basePath));
2430
+ },
2227
2431
  /**
2228
2432
  * Get cameras.
2229
2433
  * @param {*} [options] Override http request option.
@@ -2232,6 +2436,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2232
2436
  v1GetCameras(options) {
2233
2437
  return localVarFp.v1GetCameras(options).then((request) => request(axios, basePath));
2234
2438
  },
2439
+ /**
2440
+ * Get a focuser.
2441
+ * @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
2442
+ * @param {*} [options] Override http request option.
2443
+ * @throws {RequiredError}
2444
+ */
2445
+ v1GetFocuser(requestParameters, options) {
2446
+ return localVarFp.v1GetFocuser(requestParameters.id, options).then((request) => request(axios, basePath));
2447
+ },
2235
2448
  /**
2236
2449
  * Get an image set.
2237
2450
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
@@ -2357,6 +2570,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2357
2570
  v1GetOrCreateCamera(requestParameters, options) {
2358
2571
  return localVarFp.v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(axios, basePath));
2359
2572
  },
2573
+ /**
2574
+ * Get or create focuser.
2575
+ * @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
2576
+ * @param {*} [options] Override http request option.
2577
+ * @throws {RequiredError}
2578
+ */
2579
+ v1GetOrCreateFocuser(requestParameters, options) {
2580
+ return localVarFp.v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(axios, basePath));
2581
+ },
2360
2582
  /**
2361
2583
  * Get or create mount.
2362
2584
  * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
@@ -2477,6 +2699,16 @@ export class DefaultApi extends BaseAPI {
2477
2699
  v1CreateAutofocusResult(requestParameters, options) {
2478
2700
  return DefaultApiFp(this.configuration).v1CreateAutofocusResult(requestParameters.v1CreateAutofocusResultRequest, options).then((request) => request(this.axios, this.basePath));
2479
2701
  }
2702
+ /**
2703
+ * Create an focuser.
2704
+ * @param {DefaultApiV1CreateFocuserRequest} requestParameters Request parameters.
2705
+ * @param {*} [options] Override http request option.
2706
+ * @throws {RequiredError}
2707
+ * @memberof DefaultApi
2708
+ */
2709
+ v1CreateFocuser(requestParameters, options) {
2710
+ return DefaultApiFp(this.configuration).v1CreateFocuser(requestParameters.v1CreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
2711
+ }
2480
2712
  /**
2481
2713
  * Create an image set.
2482
2714
  * @param {DefaultApiV1CreateImageSetRequest} requestParameters Request parameters.
@@ -2597,6 +2829,16 @@ export class DefaultApi extends BaseAPI {
2597
2829
  v1DeleteNodeCommand(requestParameters, options) {
2598
2830
  return DefaultApiFp(this.configuration).v1DeleteNodeCommand(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2599
2831
  }
2832
+ /**
2833
+ * Match focuser.
2834
+ * @param {DefaultApiV1FocuserMatchRequest} requestParameters Request parameters.
2835
+ * @param {*} [options] Override http request option.
2836
+ * @throws {RequiredError}
2837
+ * @memberof DefaultApi
2838
+ */
2839
+ v1FocuserMatch(requestParameters = {}, options) {
2840
+ return DefaultApiFp(this.configuration).v1FocuserMatch(requestParameters.model, requestParameters.travelDistanceMm, options).then((request) => request(this.axios, this.basePath));
2841
+ }
2600
2842
  /**
2601
2843
  * Get cameras.
2602
2844
  * @param {*} [options] Override http request option.
@@ -2606,6 +2848,16 @@ export class DefaultApi extends BaseAPI {
2606
2848
  v1GetCameras(options) {
2607
2849
  return DefaultApiFp(this.configuration).v1GetCameras(options).then((request) => request(this.axios, this.basePath));
2608
2850
  }
2851
+ /**
2852
+ * Get a focuser.
2853
+ * @param {DefaultApiV1GetFocuserRequest} requestParameters Request parameters.
2854
+ * @param {*} [options] Override http request option.
2855
+ * @throws {RequiredError}
2856
+ * @memberof DefaultApi
2857
+ */
2858
+ v1GetFocuser(requestParameters, options) {
2859
+ return DefaultApiFp(this.configuration).v1GetFocuser(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2860
+ }
2609
2861
  /**
2610
2862
  * Get an image set.
2611
2863
  * @param {DefaultApiV1GetImageSetRequest} requestParameters Request parameters.
@@ -2745,6 +2997,16 @@ export class DefaultApi extends BaseAPI {
2745
2997
  v1GetOrCreateCamera(requestParameters, options) {
2746
2998
  return DefaultApiFp(this.configuration).v1GetOrCreateCamera(requestParameters.v1GetOrCreateCameraRequest, options).then((request) => request(this.axios, this.basePath));
2747
2999
  }
3000
+ /**
3001
+ * Get or create focuser.
3002
+ * @param {DefaultApiV1GetOrCreateFocuserRequest} requestParameters Request parameters.
3003
+ * @param {*} [options] Override http request option.
3004
+ * @throws {RequiredError}
3005
+ * @memberof DefaultApi
3006
+ */
3007
+ v1GetOrCreateFocuser(requestParameters, options) {
3008
+ return DefaultApiFp(this.configuration).v1GetOrCreateFocuser(requestParameters.v1GetOrCreateFocuserRequest, options).then((request) => request(this.axios, this.basePath));
3009
+ }
2748
3010
  /**
2749
3011
  * Get or create mount.
2750
3012
  * @param {DefaultApiV1GetOrCreateMountRequest} requestParameters Request parameters.
@@ -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.5064
5
+ * The version of the OpenAPI document: 1.3.5184
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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
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.5064
5
+ * The version of the OpenAPI document: 1.3.5184
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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
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.5064
5
+ * The version of the OpenAPI document: 1.3.5184
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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
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.5064
5
+ * The version of the OpenAPI document: 1.3.5184
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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
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.5064
5
+ * The version of the OpenAPI document: 1.3.5184
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.5064
8
+ * The version of the OpenAPI document: 1.3.5184
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.5064
7
+ * The version of the OpenAPI document: 1.3.5184
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.5064",
3
+ "version": "1.3.5184",
4
4
  "description": "OpenAPI client for @ourskyai/platform-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {