@ourskyai/platform-api 1.3.4784 → 1.3.4822

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.4784
1
+ ## @ourskyai/platform-api@1.3.4822
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.4784 --save
39
+ npm install @ourskyai/platform-api@1.3.4822 --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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -675,6 +675,58 @@ export interface V1CreateNodeDiagnosticsRequest {
675
675
  */
676
676
  'diagnostics': Array<V1CreateNodeDiagnostic>;
677
677
  }
678
+ /**
679
+ *
680
+ * @export
681
+ * @interface V1CreateNodeEvent
682
+ */
683
+ export interface V1CreateNodeEvent {
684
+ /**
685
+ *
686
+ * @type {V1NodeEventType}
687
+ * @memberof V1CreateNodeEvent
688
+ */
689
+ 'type': V1NodeEventType;
690
+ /**
691
+ *
692
+ * @type {V1CreateNodeEventBody}
693
+ * @memberof V1CreateNodeEvent
694
+ */
695
+ 'body': V1CreateNodeEventBody;
696
+ /**
697
+ *
698
+ * @type {string}
699
+ * @memberof V1CreateNodeEvent
700
+ */
701
+ 'generatedAt': string;
702
+ }
703
+
704
+
705
+ /**
706
+ * @type V1CreateNodeEventBody
707
+ * @export
708
+ */
709
+ export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
710
+
711
+ /**
712
+ *
713
+ * @export
714
+ * @interface V1CreateNodeEventsRequest
715
+ */
716
+ export interface V1CreateNodeEventsRequest {
717
+ /**
718
+ *
719
+ * @type {string}
720
+ * @memberof V1CreateNodeEventsRequest
721
+ */
722
+ 'nodeId': string;
723
+ /**
724
+ *
725
+ * @type {Array<V1CreateNodeEvent>}
726
+ * @memberof V1CreateNodeEventsRequest
727
+ */
728
+ 'events': Array<V1CreateNodeEvent>;
729
+ }
678
730
  /**
679
731
  * Create Node
680
732
  * @export
@@ -1551,6 +1603,19 @@ export interface V1LatestHfrResponse {
1551
1603
  */
1552
1604
  'timestamp'?: string;
1553
1605
  }
1606
+ /**
1607
+ *
1608
+ * @export
1609
+ * @interface V1LogRecorded
1610
+ */
1611
+ export interface V1LogRecorded {
1612
+ /**
1613
+ *
1614
+ * @type {string}
1615
+ * @memberof V1LogRecorded
1616
+ */
1617
+ 'log': string;
1618
+ }
1554
1619
  /**
1555
1620
  *
1556
1621
  * @export
@@ -1791,6 +1856,19 @@ export const V1NodeDiagnosticType = {
1791
1856
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1792
1857
 
1793
1858
 
1859
+ /**
1860
+ *
1861
+ * @export
1862
+ * @enum {string}
1863
+ */
1864
+
1865
+ export const V1NodeEventType = {
1866
+ V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED'
1867
+ } as const;
1868
+
1869
+ export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
1870
+
1871
+
1794
1872
  /**
1795
1873
  * Node with location
1796
1874
  * @export
@@ -2283,6 +2361,19 @@ export interface V1Release {
2283
2361
  }
2284
2362
 
2285
2363
 
2364
+ /**
2365
+ *
2366
+ * @export
2367
+ * @interface V1SafetyStatusUpdated
2368
+ */
2369
+ export interface V1SafetyStatusUpdated {
2370
+ /**
2371
+ *
2372
+ * @type {boolean}
2373
+ * @memberof V1SafetyStatusUpdated
2374
+ */
2375
+ 'isSafe': boolean;
2376
+ }
2286
2377
  /**
2287
2378
  * Setup Action
2288
2379
  * @export
@@ -3201,6 +3292,47 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3201
3292
  options: localVarRequestOptions,
3202
3293
  };
3203
3294
  },
3295
+ /**
3296
+ * Create node events
3297
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
3298
+ * @param {*} [options] Override http request option.
3299
+ * @throws {RequiredError}
3300
+ */
3301
+ v1CreateNodeEvents: async (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3302
+ // verify required parameter 'v1CreateNodeEventsRequest' is not null or undefined
3303
+ assertParamExists('v1CreateNodeEvents', 'v1CreateNodeEventsRequest', v1CreateNodeEventsRequest)
3304
+ const localVarPath = `/v1/node-events`;
3305
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3306
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3307
+ let baseOptions;
3308
+ if (configuration) {
3309
+ baseOptions = configuration.baseOptions;
3310
+ }
3311
+
3312
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
3313
+ const localVarHeaderParameter = {} as any;
3314
+ const localVarQueryParameter = {} as any;
3315
+
3316
+ // authentication Roles required
3317
+
3318
+ // authentication BearerToken required
3319
+ // http bearer authentication required
3320
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
3321
+
3322
+
3323
+
3324
+ localVarHeaderParameter['Content-Type'] = 'application/json';
3325
+
3326
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3327
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3328
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3329
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeEventsRequest, localVarRequestOptions, configuration)
3330
+
3331
+ return {
3332
+ url: toPathString(localVarUrlObj),
3333
+ options: localVarRequestOptions,
3334
+ };
3335
+ },
3204
3336
  /**
3205
3337
  * Create an optical tube.
3206
3338
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -4365,6 +4497,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
4365
4497
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest, options);
4366
4498
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4367
4499
  },
4500
+ /**
4501
+ * Create node events
4502
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
4503
+ * @param {*} [options] Override http request option.
4504
+ * @throws {RequiredError}
4505
+ */
4506
+ async v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>> {
4507
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1CreateNodeEvents(v1CreateNodeEventsRequest, options);
4508
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4509
+ },
4368
4510
  /**
4369
4511
  * Create an optical tube.
4370
4512
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -4724,6 +4866,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4724
4866
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
4725
4867
  return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
4726
4868
  },
4869
+ /**
4870
+ * Create node events
4871
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
4872
+ * @param {*} [options] Override http request option.
4873
+ * @throws {RequiredError}
4874
+ */
4875
+ v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess> {
4876
+ return localVarFp.v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(axios, basePath));
4877
+ },
4727
4878
  /**
4728
4879
  * Create an optical tube.
4729
4880
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -5139,6 +5290,20 @@ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
5139
5290
  readonly v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest
5140
5291
  }
5141
5292
 
5293
+ /**
5294
+ * Request parameters for v1CreateNodeEvents operation in DefaultApi.
5295
+ * @export
5296
+ * @interface DefaultApiV1CreateNodeEventsRequest
5297
+ */
5298
+ export interface DefaultApiV1CreateNodeEventsRequest {
5299
+ /**
5300
+ *
5301
+ * @type {V1CreateNodeEventsRequest}
5302
+ * @memberof DefaultApiV1CreateNodeEvents
5303
+ */
5304
+ readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest
5305
+ }
5306
+
5142
5307
  /**
5143
5308
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
5144
5309
  * @export
@@ -5609,6 +5774,17 @@ export class DefaultApi extends BaseAPI {
5609
5774
  return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
5610
5775
  }
5611
5776
 
5777
+ /**
5778
+ * Create node events
5779
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
5780
+ * @param {*} [options] Override http request option.
5781
+ * @throws {RequiredError}
5782
+ * @memberof DefaultApi
5783
+ */
5784
+ public v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig) {
5785
+ return DefaultApiFp(this.configuration).v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(this.axios, this.basePath));
5786
+ }
5787
+
5612
5788
  /**
5613
5789
  * Create an optical tube.
5614
5790
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -617,6 +617,55 @@ export interface V1CreateNodeDiagnosticsRequest {
617
617
  */
618
618
  'diagnostics': Array<V1CreateNodeDiagnostic>;
619
619
  }
620
+ /**
621
+ *
622
+ * @export
623
+ * @interface V1CreateNodeEvent
624
+ */
625
+ export interface V1CreateNodeEvent {
626
+ /**
627
+ *
628
+ * @type {V1NodeEventType}
629
+ * @memberof V1CreateNodeEvent
630
+ */
631
+ 'type': V1NodeEventType;
632
+ /**
633
+ *
634
+ * @type {V1CreateNodeEventBody}
635
+ * @memberof V1CreateNodeEvent
636
+ */
637
+ 'body': V1CreateNodeEventBody;
638
+ /**
639
+ *
640
+ * @type {string}
641
+ * @memberof V1CreateNodeEvent
642
+ */
643
+ 'generatedAt': string;
644
+ }
645
+ /**
646
+ * @type V1CreateNodeEventBody
647
+ * @export
648
+ */
649
+ export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
650
+ /**
651
+ *
652
+ * @export
653
+ * @interface V1CreateNodeEventsRequest
654
+ */
655
+ export interface V1CreateNodeEventsRequest {
656
+ /**
657
+ *
658
+ * @type {string}
659
+ * @memberof V1CreateNodeEventsRequest
660
+ */
661
+ 'nodeId': string;
662
+ /**
663
+ *
664
+ * @type {Array<V1CreateNodeEvent>}
665
+ * @memberof V1CreateNodeEventsRequest
666
+ */
667
+ 'events': Array<V1CreateNodeEvent>;
668
+ }
620
669
  /**
621
670
  * Create Node
622
671
  * @export
@@ -1473,6 +1522,19 @@ export interface V1LatestHfrResponse {
1473
1522
  */
1474
1523
  'timestamp'?: string;
1475
1524
  }
1525
+ /**
1526
+ *
1527
+ * @export
1528
+ * @interface V1LogRecorded
1529
+ */
1530
+ export interface V1LogRecorded {
1531
+ /**
1532
+ *
1533
+ * @type {string}
1534
+ * @memberof V1LogRecorded
1535
+ */
1536
+ 'log': string;
1537
+ }
1476
1538
  /**
1477
1539
  *
1478
1540
  * @export
@@ -1701,6 +1763,15 @@ export declare const V1NodeDiagnosticType: {
1701
1763
  readonly ASCOM_CAN_TRACK_LEO: "ASCOM_CAN_TRACK_LEO";
1702
1764
  };
1703
1765
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1766
+ /**
1767
+ *
1768
+ * @export
1769
+ * @enum {string}
1770
+ */
1771
+ export declare const V1NodeEventType: {
1772
+ readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
1773
+ };
1774
+ export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
1704
1775
  /**
1705
1776
  * Node with location
1706
1777
  * @export
@@ -2186,6 +2257,19 @@ export interface V1Release {
2186
2257
  */
2187
2258
  'fileType': V1FileType;
2188
2259
  }
2260
+ /**
2261
+ *
2262
+ * @export
2263
+ * @interface V1SafetyStatusUpdated
2264
+ */
2265
+ export interface V1SafetyStatusUpdated {
2266
+ /**
2267
+ *
2268
+ * @type {boolean}
2269
+ * @memberof V1SafetyStatusUpdated
2270
+ */
2271
+ 'isSafe': boolean;
2272
+ }
2189
2273
  /**
2190
2274
  * Setup Action
2191
2275
  * @export
@@ -2698,6 +2782,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2698
2782
  * @throws {RequiredError}
2699
2783
  */
2700
2784
  v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2785
+ /**
2786
+ * Create node events
2787
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
2788
+ * @param {*} [options] Override http request option.
2789
+ * @throws {RequiredError}
2790
+ */
2791
+ v1CreateNodeEvents: (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2701
2792
  /**
2702
2793
  * Create an optical tube.
2703
2794
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2963,6 +3054,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2963
3054
  * @throws {RequiredError}
2964
3055
  */
2965
3056
  v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3057
+ /**
3058
+ * Create node events
3059
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
3060
+ * @param {*} [options] Override http request option.
3061
+ * @throws {RequiredError}
3062
+ */
3063
+ v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2966
3064
  /**
2967
3065
  * Create an optical tube.
2968
3066
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3221,6 +3319,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3221
3319
  * @throws {RequiredError}
3222
3320
  */
3223
3321
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3322
+ /**
3323
+ * Create node events
3324
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
3325
+ * @param {*} [options] Override http request option.
3326
+ * @throws {RequiredError}
3327
+ */
3328
+ v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3224
3329
  /**
3225
3330
  * Create an optical tube.
3226
3331
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -3567,6 +3672,19 @@ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
3567
3672
  */
3568
3673
  readonly v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest;
3569
3674
  }
3675
+ /**
3676
+ * Request parameters for v1CreateNodeEvents operation in DefaultApi.
3677
+ * @export
3678
+ * @interface DefaultApiV1CreateNodeEventsRequest
3679
+ */
3680
+ export interface DefaultApiV1CreateNodeEventsRequest {
3681
+ /**
3682
+ *
3683
+ * @type {V1CreateNodeEventsRequest}
3684
+ * @memberof DefaultApiV1CreateNodeEvents
3685
+ */
3686
+ readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
3687
+ }
3570
3688
  /**
3571
3689
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
3572
3690
  * @export
@@ -3978,6 +4096,14 @@ export declare class DefaultApi extends BaseAPI {
3978
4096
  * @memberof DefaultApi
3979
4097
  */
3980
4098
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4099
+ /**
4100
+ * Create node events
4101
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
4102
+ * @param {*} [options] Override http request option.
4103
+ * @throws {RequiredError}
4104
+ * @memberof DefaultApi
4105
+ */
4106
+ v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3981
4107
  /**
3982
4108
  * Create an optical tube.
3983
4109
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
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.4784
8
+ * The version of the OpenAPI document: 1.3.4822
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.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.V1FileType = exports.UploadPriority = exports.TrackingType = exports.ShutterType = exports.OrbitType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
25
+ exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.V1PlateSolveCatalogFileDownloadActionEnum = exports.V1NodeEventType = exports.V1NodeDiagnosticType = exports.V1NodeComponentType = exports.V1FileType = exports.UploadPriority = exports.TrackingType = exports.ShutterType = exports.OrbitType = exports.OpticalTubeType = exports.NodeState = exports.MountType = exports.MetricType = exports.FilterType = exports.CameraMode = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -223,6 +223,14 @@ exports.V1NodeDiagnosticType = {
223
223
  ASCOM_SECONDARY_REVERSED: 'ASCOM_SECONDARY_REVERSED',
224
224
  ASCOM_CAN_TRACK_LEO: 'ASCOM_CAN_TRACK_LEO'
225
225
  };
226
+ /**
227
+ *
228
+ * @export
229
+ * @enum {string}
230
+ */
231
+ exports.V1NodeEventType = {
232
+ V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED'
233
+ };
226
234
  exports.V1PlateSolveCatalogFileDownloadActionEnum = {
227
235
  DOWNLOAD: 'DOWNLOAD',
228
236
  DELETE: 'DELETE',
@@ -619,6 +627,39 @@ const DefaultApiAxiosParamCreator = function (configuration) {
619
627
  options: localVarRequestOptions,
620
628
  };
621
629
  }),
630
+ /**
631
+ * Create node events
632
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
633
+ * @param {*} [options] Override http request option.
634
+ * @throws {RequiredError}
635
+ */
636
+ v1CreateNodeEvents: (v1CreateNodeEventsRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
637
+ // verify required parameter 'v1CreateNodeEventsRequest' is not null or undefined
638
+ (0, common_1.assertParamExists)('v1CreateNodeEvents', 'v1CreateNodeEventsRequest', v1CreateNodeEventsRequest);
639
+ const localVarPath = `/v1/node-events`;
640
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
641
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
642
+ let baseOptions;
643
+ if (configuration) {
644
+ baseOptions = configuration.baseOptions;
645
+ }
646
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
647
+ const localVarHeaderParameter = {};
648
+ const localVarQueryParameter = {};
649
+ // authentication Roles required
650
+ // authentication BearerToken required
651
+ // http bearer authentication required
652
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
653
+ localVarHeaderParameter['Content-Type'] = 'application/json';
654
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
655
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
656
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
657
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(v1CreateNodeEventsRequest, localVarRequestOptions, configuration);
658
+ return {
659
+ url: (0, common_1.toPathString)(localVarUrlObj),
660
+ options: localVarRequestOptions,
661
+ };
662
+ }),
622
663
  /**
623
664
  * Create an optical tube.
624
665
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -1604,6 +1645,18 @@ const DefaultApiFp = function (configuration) {
1604
1645
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1605
1646
  });
1606
1647
  },
1648
+ /**
1649
+ * Create node events
1650
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
1651
+ * @param {*} [options] Override http request option.
1652
+ * @throws {RequiredError}
1653
+ */
1654
+ v1CreateNodeEvents(v1CreateNodeEventsRequest, options) {
1655
+ return __awaiter(this, void 0, void 0, function* () {
1656
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeEvents(v1CreateNodeEventsRequest, options);
1657
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1658
+ });
1659
+ },
1607
1660
  /**
1608
1661
  * Create an optical tube.
1609
1662
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2013,6 +2066,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2013
2066
  v1CreateNodeDiagnostics(requestParameters, options) {
2014
2067
  return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
2015
2068
  },
2069
+ /**
2070
+ * Create node events
2071
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
2072
+ * @param {*} [options] Override http request option.
2073
+ * @throws {RequiredError}
2074
+ */
2075
+ v1CreateNodeEvents(requestParameters, options) {
2076
+ return localVarFp.v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(axios, basePath));
2077
+ },
2016
2078
  /**
2017
2079
  * Create an optical tube.
2018
2080
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -2355,6 +2417,16 @@ class DefaultApi extends base_1.BaseAPI {
2355
2417
  v1CreateNodeDiagnostics(requestParameters, options) {
2356
2418
  return (0, exports.DefaultApiFp)(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
2357
2419
  }
2420
+ /**
2421
+ * Create node events
2422
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
2423
+ * @param {*} [options] Override http request option.
2424
+ * @throws {RequiredError}
2425
+ * @memberof DefaultApi
2426
+ */
2427
+ v1CreateNodeEvents(requestParameters, options) {
2428
+ return (0, exports.DefaultApiFp)(this.configuration).v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(this.axios, this.basePath));
2429
+ }
2358
2430
  /**
2359
2431
  * Create an optical tube.
2360
2432
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
8
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
8
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
8
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -617,6 +617,55 @@ export interface V1CreateNodeDiagnosticsRequest {
617
617
  */
618
618
  'diagnostics': Array<V1CreateNodeDiagnostic>;
619
619
  }
620
+ /**
621
+ *
622
+ * @export
623
+ * @interface V1CreateNodeEvent
624
+ */
625
+ export interface V1CreateNodeEvent {
626
+ /**
627
+ *
628
+ * @type {V1NodeEventType}
629
+ * @memberof V1CreateNodeEvent
630
+ */
631
+ 'type': V1NodeEventType;
632
+ /**
633
+ *
634
+ * @type {V1CreateNodeEventBody}
635
+ * @memberof V1CreateNodeEvent
636
+ */
637
+ 'body': V1CreateNodeEventBody;
638
+ /**
639
+ *
640
+ * @type {string}
641
+ * @memberof V1CreateNodeEvent
642
+ */
643
+ 'generatedAt': string;
644
+ }
645
+ /**
646
+ * @type V1CreateNodeEventBody
647
+ * @export
648
+ */
649
+ export type V1CreateNodeEventBody = V1LogRecorded | V1SafetyStatusUpdated;
650
+ /**
651
+ *
652
+ * @export
653
+ * @interface V1CreateNodeEventsRequest
654
+ */
655
+ export interface V1CreateNodeEventsRequest {
656
+ /**
657
+ *
658
+ * @type {string}
659
+ * @memberof V1CreateNodeEventsRequest
660
+ */
661
+ 'nodeId': string;
662
+ /**
663
+ *
664
+ * @type {Array<V1CreateNodeEvent>}
665
+ * @memberof V1CreateNodeEventsRequest
666
+ */
667
+ 'events': Array<V1CreateNodeEvent>;
668
+ }
620
669
  /**
621
670
  * Create Node
622
671
  * @export
@@ -1473,6 +1522,19 @@ export interface V1LatestHfrResponse {
1473
1522
  */
1474
1523
  'timestamp'?: string;
1475
1524
  }
1525
+ /**
1526
+ *
1527
+ * @export
1528
+ * @interface V1LogRecorded
1529
+ */
1530
+ export interface V1LogRecorded {
1531
+ /**
1532
+ *
1533
+ * @type {string}
1534
+ * @memberof V1LogRecorded
1535
+ */
1536
+ 'log': string;
1537
+ }
1476
1538
  /**
1477
1539
  *
1478
1540
  * @export
@@ -1701,6 +1763,15 @@ export declare const V1NodeDiagnosticType: {
1701
1763
  readonly ASCOM_CAN_TRACK_LEO: "ASCOM_CAN_TRACK_LEO";
1702
1764
  };
1703
1765
  export type V1NodeDiagnosticType = typeof V1NodeDiagnosticType[keyof typeof V1NodeDiagnosticType];
1766
+ /**
1767
+ *
1768
+ * @export
1769
+ * @enum {string}
1770
+ */
1771
+ export declare const V1NodeEventType: {
1772
+ readonly V1_SAFETY_STATUS_UPDATED: "V1_SAFETY_STATUS_UPDATED";
1773
+ };
1774
+ export type V1NodeEventType = typeof V1NodeEventType[keyof typeof V1NodeEventType];
1704
1775
  /**
1705
1776
  * Node with location
1706
1777
  * @export
@@ -2186,6 +2257,19 @@ export interface V1Release {
2186
2257
  */
2187
2258
  'fileType': V1FileType;
2188
2259
  }
2260
+ /**
2261
+ *
2262
+ * @export
2263
+ * @interface V1SafetyStatusUpdated
2264
+ */
2265
+ export interface V1SafetyStatusUpdated {
2266
+ /**
2267
+ *
2268
+ * @type {boolean}
2269
+ * @memberof V1SafetyStatusUpdated
2270
+ */
2271
+ 'isSafe': boolean;
2272
+ }
2189
2273
  /**
2190
2274
  * Setup Action
2191
2275
  * @export
@@ -2698,6 +2782,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2698
2782
  * @throws {RequiredError}
2699
2783
  */
2700
2784
  v1CreateNodeDiagnostics: (v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2785
+ /**
2786
+ * Create node events
2787
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
2788
+ * @param {*} [options] Override http request option.
2789
+ * @throws {RequiredError}
2790
+ */
2791
+ v1CreateNodeEvents: (v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2701
2792
  /**
2702
2793
  * Create an optical tube.
2703
2794
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2963,6 +3054,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2963
3054
  * @throws {RequiredError}
2964
3055
  */
2965
3056
  v1CreateNodeDiagnostics(v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
3057
+ /**
3058
+ * Create node events
3059
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
3060
+ * @param {*} [options] Override http request option.
3061
+ * @throws {RequiredError}
3062
+ */
3063
+ v1CreateNodeEvents(v1CreateNodeEventsRequest: V1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmptySuccess>>;
2966
3064
  /**
2967
3065
  * Create an optical tube.
2968
3066
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -3221,6 +3319,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3221
3319
  * @throws {RequiredError}
3222
3320
  */
3223
3321
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3322
+ /**
3323
+ * Create node events
3324
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
3325
+ * @param {*} [options] Override http request option.
3326
+ * @throws {RequiredError}
3327
+ */
3328
+ v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): AxiosPromise<EmptySuccess>;
3224
3329
  /**
3225
3330
  * Create an optical tube.
3226
3331
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -3567,6 +3672,19 @@ export interface DefaultApiV1CreateNodeDiagnosticsRequest {
3567
3672
  */
3568
3673
  readonly v1CreateNodeDiagnosticsRequest: V1CreateNodeDiagnosticsRequest;
3569
3674
  }
3675
+ /**
3676
+ * Request parameters for v1CreateNodeEvents operation in DefaultApi.
3677
+ * @export
3678
+ * @interface DefaultApiV1CreateNodeEventsRequest
3679
+ */
3680
+ export interface DefaultApiV1CreateNodeEventsRequest {
3681
+ /**
3682
+ *
3683
+ * @type {V1CreateNodeEventsRequest}
3684
+ * @memberof DefaultApiV1CreateNodeEvents
3685
+ */
3686
+ readonly v1CreateNodeEventsRequest: V1CreateNodeEventsRequest;
3687
+ }
3570
3688
  /**
3571
3689
  * Request parameters for v1CreateOpticalTube operation in DefaultApi.
3572
3690
  * @export
@@ -3978,6 +4096,14 @@ export declare class DefaultApi extends BaseAPI {
3978
4096
  * @memberof DefaultApi
3979
4097
  */
3980
4098
  v1CreateNodeDiagnostics(requestParameters: DefaultApiV1CreateNodeDiagnosticsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
4099
+ /**
4100
+ * Create node events
4101
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
4102
+ * @param {*} [options] Override http request option.
4103
+ * @throws {RequiredError}
4104
+ * @memberof DefaultApi
4105
+ */
4106
+ v1CreateNodeEvents(requestParameters: DefaultApiV1CreateNodeEventsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EmptySuccess, any>>;
3981
4107
  /**
3982
4108
  * Create an optical tube.
3983
4109
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -220,6 +220,14 @@ export const V1NodeDiagnosticType = {
220
220
  ASCOM_SECONDARY_REVERSED: 'ASCOM_SECONDARY_REVERSED',
221
221
  ASCOM_CAN_TRACK_LEO: 'ASCOM_CAN_TRACK_LEO'
222
222
  };
223
+ /**
224
+ *
225
+ * @export
226
+ * @enum {string}
227
+ */
228
+ export const V1NodeEventType = {
229
+ V1_SAFETY_STATUS_UPDATED: 'V1_SAFETY_STATUS_UPDATED'
230
+ };
223
231
  export const V1PlateSolveCatalogFileDownloadActionEnum = {
224
232
  DOWNLOAD: 'DOWNLOAD',
225
233
  DELETE: 'DELETE',
@@ -616,6 +624,39 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
616
624
  options: localVarRequestOptions,
617
625
  };
618
626
  }),
627
+ /**
628
+ * Create node events
629
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
630
+ * @param {*} [options] Override http request option.
631
+ * @throws {RequiredError}
632
+ */
633
+ v1CreateNodeEvents: (v1CreateNodeEventsRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
634
+ // verify required parameter 'v1CreateNodeEventsRequest' is not null or undefined
635
+ assertParamExists('v1CreateNodeEvents', 'v1CreateNodeEventsRequest', v1CreateNodeEventsRequest);
636
+ const localVarPath = `/v1/node-events`;
637
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
638
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
639
+ let baseOptions;
640
+ if (configuration) {
641
+ baseOptions = configuration.baseOptions;
642
+ }
643
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
644
+ const localVarHeaderParameter = {};
645
+ const localVarQueryParameter = {};
646
+ // authentication Roles required
647
+ // authentication BearerToken required
648
+ // http bearer authentication required
649
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
650
+ localVarHeaderParameter['Content-Type'] = 'application/json';
651
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
652
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
653
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
654
+ localVarRequestOptions.data = serializeDataIfNeeded(v1CreateNodeEventsRequest, localVarRequestOptions, configuration);
655
+ return {
656
+ url: toPathString(localVarUrlObj),
657
+ options: localVarRequestOptions,
658
+ };
659
+ }),
619
660
  /**
620
661
  * Create an optical tube.
621
662
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -1600,6 +1641,18 @@ export const DefaultApiFp = function (configuration) {
1600
1641
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1601
1642
  });
1602
1643
  },
1644
+ /**
1645
+ * Create node events
1646
+ * @param {V1CreateNodeEventsRequest} v1CreateNodeEventsRequest
1647
+ * @param {*} [options] Override http request option.
1648
+ * @throws {RequiredError}
1649
+ */
1650
+ v1CreateNodeEvents(v1CreateNodeEventsRequest, options) {
1651
+ return __awaiter(this, void 0, void 0, function* () {
1652
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1CreateNodeEvents(v1CreateNodeEventsRequest, options);
1653
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1654
+ });
1655
+ },
1603
1656
  /**
1604
1657
  * Create an optical tube.
1605
1658
  * @param {V1CreateOpticalTubeRequest} v1CreateOpticalTubeRequest
@@ -2008,6 +2061,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
2008
2061
  v1CreateNodeDiagnostics(requestParameters, options) {
2009
2062
  return localVarFp.v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(axios, basePath));
2010
2063
  },
2064
+ /**
2065
+ * Create node events
2066
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
2067
+ * @param {*} [options] Override http request option.
2068
+ * @throws {RequiredError}
2069
+ */
2070
+ v1CreateNodeEvents(requestParameters, options) {
2071
+ return localVarFp.v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(axios, basePath));
2072
+ },
2011
2073
  /**
2012
2074
  * Create an optical tube.
2013
2075
  * @param {DefaultApiV1CreateOpticalTubeRequest} requestParameters Request parameters.
@@ -2349,6 +2411,16 @@ export class DefaultApi extends BaseAPI {
2349
2411
  v1CreateNodeDiagnostics(requestParameters, options) {
2350
2412
  return DefaultApiFp(this.configuration).v1CreateNodeDiagnostics(requestParameters.v1CreateNodeDiagnosticsRequest, options).then((request) => request(this.axios, this.basePath));
2351
2413
  }
2414
+ /**
2415
+ * Create node events
2416
+ * @param {DefaultApiV1CreateNodeEventsRequest} requestParameters Request parameters.
2417
+ * @param {*} [options] Override http request option.
2418
+ * @throws {RequiredError}
2419
+ * @memberof DefaultApi
2420
+ */
2421
+ v1CreateNodeEvents(requestParameters, options) {
2422
+ return DefaultApiFp(this.configuration).v1CreateNodeEvents(requestParameters.v1CreateNodeEventsRequest, options).then((request) => request(this.axios, this.basePath));
2423
+ }
2352
2424
  /**
2353
2425
  * Create an optical tube.
2354
2426
  * @param {DefaultApiV1CreateOpticalTubeRequest} 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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784
5
+ * The version of the OpenAPI document: 1.3.4822
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.4784
8
+ * The version of the OpenAPI document: 1.3.4822
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.4784
7
+ * The version of the OpenAPI document: 1.3.4822
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.4784",
3
+ "version": "1.3.4822",
4
4
  "description": "OpenAPI client for @ourskyai/platform-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {