@ourskyai/sda-api 1.3.2388 → 1.3.2407

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/sda-api@1.3.2388
1
+ ## @ourskyai/sda-api@1.3.2407
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/sda-api@1.3.2388 --save
39
+ npm install @ourskyai/sda-api@1.3.2407 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -109,6 +109,45 @@ export const FilterType = {
109
109
  export type FilterType = typeof FilterType[keyof typeof FilterType];
110
110
 
111
111
 
112
+ /**
113
+ * Location
114
+ * @export
115
+ * @interface Location
116
+ */
117
+ export interface Location {
118
+ /**
119
+ *
120
+ * @type {number}
121
+ * @memberof Location
122
+ */
123
+ 'latitude': number;
124
+ /**
125
+ *
126
+ * @type {number}
127
+ * @memberof Location
128
+ */
129
+ 'longitude': number;
130
+ /**
131
+ *
132
+ * @type {number}
133
+ * @memberof Location
134
+ */
135
+ 'altitude': number;
136
+ }
137
+ /**
138
+ *
139
+ * @export
140
+ * @enum {string}
141
+ */
142
+
143
+ export const MountType = {
144
+ ALT_AZ: 'ALT_AZ',
145
+ EQUITORIAL: 'EQUITORIAL'
146
+ } as const;
147
+
148
+ export type MountType = typeof MountType[keyof typeof MountType];
149
+
150
+
112
151
  /**
113
152
  *
114
153
  * @export
@@ -236,6 +275,20 @@ export const SatelliteTargetTrackingStatus = {
236
275
  export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
237
276
 
238
277
 
278
+ /**
279
+ *
280
+ * @export
281
+ * @enum {string}
282
+ */
283
+
284
+ export const ShutterType = {
285
+ ROLLING: 'ROLLING',
286
+ GLOBAL: 'GLOBAL'
287
+ } as const;
288
+
289
+ export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
290
+
291
+
239
292
  /**
240
293
  *
241
294
  * @export
@@ -360,6 +413,87 @@ export interface V1GetSatelliteTargetsResponse {
360
413
  */
361
414
  'targets': Array<V1SatelliteTarget>;
362
415
  }
416
+ /**
417
+ *
418
+ * @export
419
+ * @interface V1GroundStationParticipant
420
+ */
421
+ export interface V1GroundStationParticipant {
422
+ /**
423
+ *
424
+ * @type {string}
425
+ * @memberof V1GroundStationParticipant
426
+ */
427
+ 'nodeId': string;
428
+ /**
429
+ *
430
+ * @type {Location}
431
+ * @memberof V1GroundStationParticipant
432
+ */
433
+ 'location': Location;
434
+ /**
435
+ *
436
+ * @type {number}
437
+ * @memberof V1GroundStationParticipant
438
+ */
439
+ 'megapixels': number;
440
+ /**
441
+ *
442
+ * @type {ShutterType}
443
+ * @memberof V1GroundStationParticipant
444
+ */
445
+ 'shutterType': ShutterType;
446
+ /**
447
+ *
448
+ * @type {number}
449
+ * @memberof V1GroundStationParticipant
450
+ */
451
+ 'pixelSizeMicrons': number;
452
+ /**
453
+ *
454
+ * @type {boolean}
455
+ * @memberof V1GroundStationParticipant
456
+ */
457
+ 'gpsTimestamps': boolean;
458
+ /**
459
+ *
460
+ * @type {number}
461
+ * @memberof V1GroundStationParticipant
462
+ */
463
+ 'otaFocalLengthMm': number;
464
+ /**
465
+ *
466
+ * @type {number}
467
+ * @memberof V1GroundStationParticipant
468
+ */
469
+ 'otaApertureMm': number;
470
+ /**
471
+ *
472
+ * @type {MountType}
473
+ * @memberof V1GroundStationParticipant
474
+ */
475
+ 'mountType': MountType;
476
+ /**
477
+ *
478
+ * @type {string}
479
+ * @memberof V1GroundStationParticipant
480
+ */
481
+ 'masterFlat'?: string;
482
+ /**
483
+ *
484
+ * @type {string}
485
+ * @memberof V1GroundStationParticipant
486
+ */
487
+ 'masterDark'?: string;
488
+ /**
489
+ *
490
+ * @type {string}
491
+ * @memberof V1GroundStationParticipant
492
+ */
493
+ 'masterBias'?: string;
494
+ }
495
+
496
+
363
497
  /**
364
498
  * An image set represents a contiguous set of observations of the same target captured by the same node.
365
499
  * @export
@@ -1426,6 +1560,48 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
1426
1560
 
1427
1561
 
1428
1562
 
1563
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1564
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1565
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1566
+
1567
+ return {
1568
+ url: toPathString(localVarUrlObj),
1569
+ options: localVarRequestOptions,
1570
+ };
1571
+ },
1572
+ /**
1573
+ * Get node properties.
1574
+ * @param {string} nodeId
1575
+ * @param {*} [options] Override http request option.
1576
+ * @throws {RequiredError}
1577
+ */
1578
+ v1GetNodeProperties: async (nodeId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1579
+ // verify required parameter 'nodeId' is not null or undefined
1580
+ assertParamExists('v1GetNodeProperties', 'nodeId', nodeId)
1581
+ const localVarPath = `/v1/node-properties`;
1582
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1583
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1584
+ let baseOptions;
1585
+ if (configuration) {
1586
+ baseOptions = configuration.baseOptions;
1587
+ }
1588
+
1589
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1590
+ const localVarHeaderParameter = {} as any;
1591
+ const localVarQueryParameter = {} as any;
1592
+
1593
+ // authentication Roles required
1594
+
1595
+ // authentication BearerToken required
1596
+ // http bearer authentication required
1597
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
1598
+
1599
+ if (nodeId !== undefined) {
1600
+ localVarQueryParameter['nodeId'] = nodeId;
1601
+ }
1602
+
1603
+
1604
+
1429
1605
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1430
1606
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1431
1607
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1907,6 +2083,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
1907
2083
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetImageSets(options);
1908
2084
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1909
2085
  },
2086
+ /**
2087
+ * Get node properties.
2088
+ * @param {string} nodeId
2089
+ * @param {*} [options] Override http request option.
2090
+ * @throws {RequiredError}
2091
+ */
2092
+ async v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GroundStationParticipant>> {
2093
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
2094
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2095
+ },
1910
2096
  /**
1911
2097
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1912
2098
  * @param {string} [targetId]
@@ -2106,6 +2292,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
2106
2292
  v1GetImageSets(options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSet>> {
2107
2293
  return localVarFp.v1GetImageSets(options).then((request) => request(axios, basePath));
2108
2294
  },
2295
+ /**
2296
+ * Get node properties.
2297
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
2298
+ * @param {*} [options] Override http request option.
2299
+ * @throws {RequiredError}
2300
+ */
2301
+ v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant> {
2302
+ return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
2303
+ },
2109
2304
  /**
2110
2305
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
2111
2306
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -2333,6 +2528,20 @@ export interface DefaultApiV1GetImageSetImagesRequest {
2333
2528
  readonly imageSets: Array<string>
2334
2529
  }
2335
2530
 
2531
+ /**
2532
+ * Request parameters for v1GetNodeProperties operation in DefaultApi.
2533
+ * @export
2534
+ * @interface DefaultApiV1GetNodePropertiesRequest
2535
+ */
2536
+ export interface DefaultApiV1GetNodePropertiesRequest {
2537
+ /**
2538
+ *
2539
+ * @type {string}
2540
+ * @memberof DefaultApiV1GetNodeProperties
2541
+ */
2542
+ readonly nodeId: string
2543
+ }
2544
+
2336
2545
  /**
2337
2546
  * Request parameters for v1GetObservationSequenceResults operation in DefaultApi.
2338
2547
  * @export
@@ -2583,6 +2792,17 @@ export class DefaultApi extends BaseAPI {
2583
2792
  return DefaultApiFp(this.configuration).v1GetImageSets(options).then((request) => request(this.axios, this.basePath));
2584
2793
  }
2585
2794
 
2795
+ /**
2796
+ * Get node properties.
2797
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
2798
+ * @param {*} [options] Override http request option.
2799
+ * @throws {RequiredError}
2800
+ * @memberof DefaultApi
2801
+ */
2802
+ public v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig) {
2803
+ return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
2804
+ }
2805
+
2586
2806
  /**
2587
2807
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
2588
2808
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -95,6 +95,41 @@ export declare const FilterType: {
95
95
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
96
96
  };
97
97
  export type FilterType = typeof FilterType[keyof typeof FilterType];
98
+ /**
99
+ * Location
100
+ * @export
101
+ * @interface Location
102
+ */
103
+ export interface Location {
104
+ /**
105
+ *
106
+ * @type {number}
107
+ * @memberof Location
108
+ */
109
+ 'latitude': number;
110
+ /**
111
+ *
112
+ * @type {number}
113
+ * @memberof Location
114
+ */
115
+ 'longitude': number;
116
+ /**
117
+ *
118
+ * @type {number}
119
+ * @memberof Location
120
+ */
121
+ 'altitude': number;
122
+ }
123
+ /**
124
+ *
125
+ * @export
126
+ * @enum {string}
127
+ */
128
+ export declare const MountType: {
129
+ readonly ALT_AZ: "ALT_AZ";
130
+ readonly EQUITORIAL: "EQUITORIAL";
131
+ };
132
+ export type MountType = typeof MountType[keyof typeof MountType];
98
133
  /**
99
134
  *
100
135
  * @export
@@ -214,6 +249,16 @@ export declare const SatelliteTargetTrackingStatus: {
214
249
  readonly DEORBITED: "DEORBITED";
215
250
  };
216
251
  export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
252
+ /**
253
+ *
254
+ * @export
255
+ * @enum {string}
256
+ */
257
+ export declare const ShutterType: {
258
+ readonly ROLLING: "ROLLING";
259
+ readonly GLOBAL: "GLOBAL";
260
+ };
261
+ export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
217
262
  /**
218
263
  *
219
264
  * @export
@@ -332,6 +377,85 @@ export interface V1GetSatelliteTargetsResponse {
332
377
  */
333
378
  'targets': Array<V1SatelliteTarget>;
334
379
  }
380
+ /**
381
+ *
382
+ * @export
383
+ * @interface V1GroundStationParticipant
384
+ */
385
+ export interface V1GroundStationParticipant {
386
+ /**
387
+ *
388
+ * @type {string}
389
+ * @memberof V1GroundStationParticipant
390
+ */
391
+ 'nodeId': string;
392
+ /**
393
+ *
394
+ * @type {Location}
395
+ * @memberof V1GroundStationParticipant
396
+ */
397
+ 'location': Location;
398
+ /**
399
+ *
400
+ * @type {number}
401
+ * @memberof V1GroundStationParticipant
402
+ */
403
+ 'megapixels': number;
404
+ /**
405
+ *
406
+ * @type {ShutterType}
407
+ * @memberof V1GroundStationParticipant
408
+ */
409
+ 'shutterType': ShutterType;
410
+ /**
411
+ *
412
+ * @type {number}
413
+ * @memberof V1GroundStationParticipant
414
+ */
415
+ 'pixelSizeMicrons': number;
416
+ /**
417
+ *
418
+ * @type {boolean}
419
+ * @memberof V1GroundStationParticipant
420
+ */
421
+ 'gpsTimestamps': boolean;
422
+ /**
423
+ *
424
+ * @type {number}
425
+ * @memberof V1GroundStationParticipant
426
+ */
427
+ 'otaFocalLengthMm': number;
428
+ /**
429
+ *
430
+ * @type {number}
431
+ * @memberof V1GroundStationParticipant
432
+ */
433
+ 'otaApertureMm': number;
434
+ /**
435
+ *
436
+ * @type {MountType}
437
+ * @memberof V1GroundStationParticipant
438
+ */
439
+ 'mountType': MountType;
440
+ /**
441
+ *
442
+ * @type {string}
443
+ * @memberof V1GroundStationParticipant
444
+ */
445
+ 'masterFlat'?: string;
446
+ /**
447
+ *
448
+ * @type {string}
449
+ * @memberof V1GroundStationParticipant
450
+ */
451
+ 'masterDark'?: string;
452
+ /**
453
+ *
454
+ * @type {string}
455
+ * @memberof V1GroundStationParticipant
456
+ */
457
+ 'masterBias'?: string;
458
+ }
335
459
  /**
336
460
  * An image set represents a contiguous set of observations of the same target captured by the same node.
337
461
  * @export
@@ -985,6 +1109,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
985
1109
  * @throws {RequiredError}
986
1110
  */
987
1111
  v1GetImageSets: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1112
+ /**
1113
+ * Get node properties.
1114
+ * @param {string} nodeId
1115
+ * @param {*} [options] Override http request option.
1116
+ * @throws {RequiredError}
1117
+ */
1118
+ v1GetNodeProperties: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
988
1119
  /**
989
1120
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
990
1121
  * @param {string} [targetId]
@@ -1132,6 +1263,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1132
1263
  * @throws {RequiredError}
1133
1264
  */
1134
1265
  v1GetImageSets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSet>>>;
1266
+ /**
1267
+ * Get node properties.
1268
+ * @param {string} nodeId
1269
+ * @param {*} [options] Override http request option.
1270
+ * @throws {RequiredError}
1271
+ */
1272
+ v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GroundStationParticipant>>;
1135
1273
  /**
1136
1274
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1137
1275
  * @param {string} [targetId]
@@ -1279,6 +1417,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1279
1417
  * @throws {RequiredError}
1280
1418
  */
1281
1419
  v1GetImageSets(options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSet>>;
1420
+ /**
1421
+ * Get node properties.
1422
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1423
+ * @param {*} [options] Override http request option.
1424
+ * @throws {RequiredError}
1425
+ */
1426
+ v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant>;
1282
1427
  /**
1283
1428
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1284
1429
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1477,6 +1622,19 @@ export interface DefaultApiV1GetImageSetImagesRequest {
1477
1622
  */
1478
1623
  readonly imageSets: Array<string>;
1479
1624
  }
1625
+ /**
1626
+ * Request parameters for v1GetNodeProperties operation in DefaultApi.
1627
+ * @export
1628
+ * @interface DefaultApiV1GetNodePropertiesRequest
1629
+ */
1630
+ export interface DefaultApiV1GetNodePropertiesRequest {
1631
+ /**
1632
+ *
1633
+ * @type {string}
1634
+ * @memberof DefaultApiV1GetNodeProperties
1635
+ */
1636
+ readonly nodeId: string;
1637
+ }
1480
1638
  /**
1481
1639
  * Request parameters for v1GetObservationSequenceResults operation in DefaultApi.
1482
1640
  * @export
@@ -1681,6 +1839,14 @@ export declare class DefaultApi extends BaseAPI {
1681
1839
  * @memberof DefaultApi
1682
1840
  */
1683
1841
  v1GetImageSets(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet[], any>>;
1842
+ /**
1843
+ * Get node properties.
1844
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1845
+ * @param {*} [options] Override http request option.
1846
+ * @throws {RequiredError}
1847
+ * @memberof DefaultApi
1848
+ */
1849
+ v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GroundStationParticipant, any>>;
1684
1850
  /**
1685
1851
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1686
1852
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2388
8
+ * The version of the OpenAPI document: 1.3.2407
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.WebhookEvent = exports.TrackingType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.FilterType = void 0;
25
+ exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.TrackingType = exports.ShutterType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.MountType = exports.FilterType = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -54,6 +54,15 @@ exports.FilterType = {
54
54
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
55
55
  PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
56
56
  };
57
+ /**
58
+ *
59
+ * @export
60
+ * @enum {string}
61
+ */
62
+ exports.MountType = {
63
+ ALT_AZ: 'ALT_AZ',
64
+ EQUITORIAL: 'EQUITORIAL'
65
+ };
57
66
  /**
58
67
  *
59
68
  * @export
@@ -79,6 +88,15 @@ exports.SatelliteTargetTrackingStatus = {
79
88
  INACTIVE: 'INACTIVE',
80
89
  DEORBITED: 'DEORBITED'
81
90
  };
91
+ /**
92
+ *
93
+ * @export
94
+ * @enum {string}
95
+ */
96
+ exports.ShutterType = {
97
+ ROLLING: 'ROLLING',
98
+ GLOBAL: 'GLOBAL'
99
+ };
82
100
  /**
83
101
  *
84
102
  * @export
@@ -505,6 +523,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
505
523
  options: localVarRequestOptions,
506
524
  };
507
525
  }),
526
+ /**
527
+ * Get node properties.
528
+ * @param {string} nodeId
529
+ * @param {*} [options] Override http request option.
530
+ * @throws {RequiredError}
531
+ */
532
+ v1GetNodeProperties: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
533
+ // verify required parameter 'nodeId' is not null or undefined
534
+ (0, common_1.assertParamExists)('v1GetNodeProperties', 'nodeId', nodeId);
535
+ const localVarPath = `/v1/node-properties`;
536
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
537
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
538
+ let baseOptions;
539
+ if (configuration) {
540
+ baseOptions = configuration.baseOptions;
541
+ }
542
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
543
+ const localVarHeaderParameter = {};
544
+ const localVarQueryParameter = {};
545
+ // authentication Roles required
546
+ // authentication BearerToken required
547
+ // http bearer authentication required
548
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
549
+ if (nodeId !== undefined) {
550
+ localVarQueryParameter['nodeId'] = nodeId;
551
+ }
552
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
553
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
554
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
555
+ return {
556
+ url: (0, common_1.toPathString)(localVarUrlObj),
557
+ options: localVarRequestOptions,
558
+ };
559
+ }),
508
560
  /**
509
561
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
510
562
  * @param {string} [targetId]
@@ -935,6 +987,18 @@ const DefaultApiFp = function (configuration) {
935
987
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
936
988
  });
937
989
  },
990
+ /**
991
+ * Get node properties.
992
+ * @param {string} nodeId
993
+ * @param {*} [options] Override http request option.
994
+ * @throws {RequiredError}
995
+ */
996
+ v1GetNodeProperties(nodeId, options) {
997
+ return __awaiter(this, void 0, void 0, function* () {
998
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
999
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1000
+ });
1001
+ },
938
1002
  /**
939
1003
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
940
1004
  * @param {string} [targetId]
@@ -1150,6 +1214,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1150
1214
  v1GetImageSets(options) {
1151
1215
  return localVarFp.v1GetImageSets(options).then((request) => request(axios, basePath));
1152
1216
  },
1217
+ /**
1218
+ * Get node properties.
1219
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1220
+ * @param {*} [options] Override http request option.
1221
+ * @throws {RequiredError}
1222
+ */
1223
+ v1GetNodeProperties(requestParameters, options) {
1224
+ return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
1225
+ },
1153
1226
  /**
1154
1227
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1155
1228
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1349,6 +1422,16 @@ class DefaultApi extends base_1.BaseAPI {
1349
1422
  v1GetImageSets(options) {
1350
1423
  return (0, exports.DefaultApiFp)(this.configuration).v1GetImageSets(options).then((request) => request(this.axios, this.basePath));
1351
1424
  }
1425
+ /**
1426
+ * Get node properties.
1427
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1428
+ * @param {*} [options] Override http request option.
1429
+ * @throws {RequiredError}
1430
+ * @memberof DefaultApi
1431
+ */
1432
+ v1GetNodeProperties(requestParameters, options) {
1433
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
1434
+ }
1352
1435
  /**
1353
1436
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1354
1437
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2388
8
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2388
8
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2388
8
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -95,6 +95,41 @@ export declare const FilterType: {
95
95
  readonly PHOTO_COUSINS_I: "PHOTO_COUSINS_I";
96
96
  };
97
97
  export type FilterType = typeof FilterType[keyof typeof FilterType];
98
+ /**
99
+ * Location
100
+ * @export
101
+ * @interface Location
102
+ */
103
+ export interface Location {
104
+ /**
105
+ *
106
+ * @type {number}
107
+ * @memberof Location
108
+ */
109
+ 'latitude': number;
110
+ /**
111
+ *
112
+ * @type {number}
113
+ * @memberof Location
114
+ */
115
+ 'longitude': number;
116
+ /**
117
+ *
118
+ * @type {number}
119
+ * @memberof Location
120
+ */
121
+ 'altitude': number;
122
+ }
123
+ /**
124
+ *
125
+ * @export
126
+ * @enum {string}
127
+ */
128
+ export declare const MountType: {
129
+ readonly ALT_AZ: "ALT_AZ";
130
+ readonly EQUITORIAL: "EQUITORIAL";
131
+ };
132
+ export type MountType = typeof MountType[keyof typeof MountType];
98
133
  /**
99
134
  *
100
135
  * @export
@@ -214,6 +249,16 @@ export declare const SatelliteTargetTrackingStatus: {
214
249
  readonly DEORBITED: "DEORBITED";
215
250
  };
216
251
  export type SatelliteTargetTrackingStatus = typeof SatelliteTargetTrackingStatus[keyof typeof SatelliteTargetTrackingStatus];
252
+ /**
253
+ *
254
+ * @export
255
+ * @enum {string}
256
+ */
257
+ export declare const ShutterType: {
258
+ readonly ROLLING: "ROLLING";
259
+ readonly GLOBAL: "GLOBAL";
260
+ };
261
+ export type ShutterType = typeof ShutterType[keyof typeof ShutterType];
217
262
  /**
218
263
  *
219
264
  * @export
@@ -332,6 +377,85 @@ export interface V1GetSatelliteTargetsResponse {
332
377
  */
333
378
  'targets': Array<V1SatelliteTarget>;
334
379
  }
380
+ /**
381
+ *
382
+ * @export
383
+ * @interface V1GroundStationParticipant
384
+ */
385
+ export interface V1GroundStationParticipant {
386
+ /**
387
+ *
388
+ * @type {string}
389
+ * @memberof V1GroundStationParticipant
390
+ */
391
+ 'nodeId': string;
392
+ /**
393
+ *
394
+ * @type {Location}
395
+ * @memberof V1GroundStationParticipant
396
+ */
397
+ 'location': Location;
398
+ /**
399
+ *
400
+ * @type {number}
401
+ * @memberof V1GroundStationParticipant
402
+ */
403
+ 'megapixels': number;
404
+ /**
405
+ *
406
+ * @type {ShutterType}
407
+ * @memberof V1GroundStationParticipant
408
+ */
409
+ 'shutterType': ShutterType;
410
+ /**
411
+ *
412
+ * @type {number}
413
+ * @memberof V1GroundStationParticipant
414
+ */
415
+ 'pixelSizeMicrons': number;
416
+ /**
417
+ *
418
+ * @type {boolean}
419
+ * @memberof V1GroundStationParticipant
420
+ */
421
+ 'gpsTimestamps': boolean;
422
+ /**
423
+ *
424
+ * @type {number}
425
+ * @memberof V1GroundStationParticipant
426
+ */
427
+ 'otaFocalLengthMm': number;
428
+ /**
429
+ *
430
+ * @type {number}
431
+ * @memberof V1GroundStationParticipant
432
+ */
433
+ 'otaApertureMm': number;
434
+ /**
435
+ *
436
+ * @type {MountType}
437
+ * @memberof V1GroundStationParticipant
438
+ */
439
+ 'mountType': MountType;
440
+ /**
441
+ *
442
+ * @type {string}
443
+ * @memberof V1GroundStationParticipant
444
+ */
445
+ 'masterFlat'?: string;
446
+ /**
447
+ *
448
+ * @type {string}
449
+ * @memberof V1GroundStationParticipant
450
+ */
451
+ 'masterDark'?: string;
452
+ /**
453
+ *
454
+ * @type {string}
455
+ * @memberof V1GroundStationParticipant
456
+ */
457
+ 'masterBias'?: string;
458
+ }
335
459
  /**
336
460
  * An image set represents a contiguous set of observations of the same target captured by the same node.
337
461
  * @export
@@ -985,6 +1109,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
985
1109
  * @throws {RequiredError}
986
1110
  */
987
1111
  v1GetImageSets: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
1112
+ /**
1113
+ * Get node properties.
1114
+ * @param {string} nodeId
1115
+ * @param {*} [options] Override http request option.
1116
+ * @throws {RequiredError}
1117
+ */
1118
+ v1GetNodeProperties: (nodeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
988
1119
  /**
989
1120
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
990
1121
  * @param {string} [targetId]
@@ -1132,6 +1263,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1132
1263
  * @throws {RequiredError}
1133
1264
  */
1134
1265
  v1GetImageSets(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ImageSet>>>;
1266
+ /**
1267
+ * Get node properties.
1268
+ * @param {string} nodeId
1269
+ * @param {*} [options] Override http request option.
1270
+ * @throws {RequiredError}
1271
+ */
1272
+ v1GetNodeProperties(nodeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V1GroundStationParticipant>>;
1135
1273
  /**
1136
1274
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1137
1275
  * @param {string} [targetId]
@@ -1279,6 +1417,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
1279
1417
  * @throws {RequiredError}
1280
1418
  */
1281
1419
  v1GetImageSets(options?: AxiosRequestConfig): AxiosPromise<Array<V1ImageSet>>;
1420
+ /**
1421
+ * Get node properties.
1422
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1423
+ * @param {*} [options] Override http request option.
1424
+ * @throws {RequiredError}
1425
+ */
1426
+ v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): AxiosPromise<V1GroundStationParticipant>;
1282
1427
  /**
1283
1428
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1284
1429
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1477,6 +1622,19 @@ export interface DefaultApiV1GetImageSetImagesRequest {
1477
1622
  */
1478
1623
  readonly imageSets: Array<string>;
1479
1624
  }
1625
+ /**
1626
+ * Request parameters for v1GetNodeProperties operation in DefaultApi.
1627
+ * @export
1628
+ * @interface DefaultApiV1GetNodePropertiesRequest
1629
+ */
1630
+ export interface DefaultApiV1GetNodePropertiesRequest {
1631
+ /**
1632
+ *
1633
+ * @type {string}
1634
+ * @memberof DefaultApiV1GetNodeProperties
1635
+ */
1636
+ readonly nodeId: string;
1637
+ }
1480
1638
  /**
1481
1639
  * Request parameters for v1GetObservationSequenceResults operation in DefaultApi.
1482
1640
  * @export
@@ -1681,6 +1839,14 @@ export declare class DefaultApi extends BaseAPI {
1681
1839
  * @memberof DefaultApi
1682
1840
  */
1683
1841
  v1GetImageSets(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ImageSet[], any>>;
1842
+ /**
1843
+ * Get node properties.
1844
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1845
+ * @param {*} [options] Override http request option.
1846
+ * @throws {RequiredError}
1847
+ * @memberof DefaultApi
1848
+ */
1849
+ v1GetNodeProperties(requestParameters: DefaultApiV1GetNodePropertiesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1GroundStationParticipant, any>>;
1684
1850
  /**
1685
1851
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1686
1852
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -51,6 +51,15 @@ export const FilterType = {
51
51
  PHOTO_COUSINS_R: 'PHOTO_COUSINS_R',
52
52
  PHOTO_COUSINS_I: 'PHOTO_COUSINS_I'
53
53
  };
54
+ /**
55
+ *
56
+ * @export
57
+ * @enum {string}
58
+ */
59
+ export const MountType = {
60
+ ALT_AZ: 'ALT_AZ',
61
+ EQUITORIAL: 'EQUITORIAL'
62
+ };
54
63
  /**
55
64
  *
56
65
  * @export
@@ -76,6 +85,15 @@ export const SatelliteTargetTrackingStatus = {
76
85
  INACTIVE: 'INACTIVE',
77
86
  DEORBITED: 'DEORBITED'
78
87
  };
88
+ /**
89
+ *
90
+ * @export
91
+ * @enum {string}
92
+ */
93
+ export const ShutterType = {
94
+ ROLLING: 'ROLLING',
95
+ GLOBAL: 'GLOBAL'
96
+ };
79
97
  /**
80
98
  *
81
99
  * @export
@@ -502,6 +520,40 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
502
520
  options: localVarRequestOptions,
503
521
  };
504
522
  }),
523
+ /**
524
+ * Get node properties.
525
+ * @param {string} nodeId
526
+ * @param {*} [options] Override http request option.
527
+ * @throws {RequiredError}
528
+ */
529
+ v1GetNodeProperties: (nodeId, options = {}) => __awaiter(this, void 0, void 0, function* () {
530
+ // verify required parameter 'nodeId' is not null or undefined
531
+ assertParamExists('v1GetNodeProperties', 'nodeId', nodeId);
532
+ const localVarPath = `/v1/node-properties`;
533
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
534
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
535
+ let baseOptions;
536
+ if (configuration) {
537
+ baseOptions = configuration.baseOptions;
538
+ }
539
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
540
+ const localVarHeaderParameter = {};
541
+ const localVarQueryParameter = {};
542
+ // authentication Roles required
543
+ // authentication BearerToken required
544
+ // http bearer authentication required
545
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
546
+ if (nodeId !== undefined) {
547
+ localVarQueryParameter['nodeId'] = nodeId;
548
+ }
549
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
550
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
551
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
552
+ return {
553
+ url: toPathString(localVarUrlObj),
554
+ options: localVarRequestOptions,
555
+ };
556
+ }),
505
557
  /**
506
558
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
507
559
  * @param {string} [targetId]
@@ -931,6 +983,18 @@ export const DefaultApiFp = function (configuration) {
931
983
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
932
984
  });
933
985
  },
986
+ /**
987
+ * Get node properties.
988
+ * @param {string} nodeId
989
+ * @param {*} [options] Override http request option.
990
+ * @throws {RequiredError}
991
+ */
992
+ v1GetNodeProperties(nodeId, options) {
993
+ return __awaiter(this, void 0, void 0, function* () {
994
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetNodeProperties(nodeId, options);
995
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
996
+ });
997
+ },
934
998
  /**
935
999
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
936
1000
  * @param {string} [targetId]
@@ -1145,6 +1209,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
1145
1209
  v1GetImageSets(options) {
1146
1210
  return localVarFp.v1GetImageSets(options).then((request) => request(axios, basePath));
1147
1211
  },
1212
+ /**
1213
+ * Get node properties.
1214
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1215
+ * @param {*} [options] Override http request option.
1216
+ * @throws {RequiredError}
1217
+ */
1218
+ v1GetNodeProperties(requestParameters, options) {
1219
+ return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
1220
+ },
1148
1221
  /**
1149
1222
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1150
1223
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1343,6 +1416,16 @@ export class DefaultApi extends BaseAPI {
1343
1416
  v1GetImageSets(options) {
1344
1417
  return DefaultApiFp(this.configuration).v1GetImageSets(options).then((request) => request(this.axios, this.basePath));
1345
1418
  }
1419
+ /**
1420
+ * Get node properties.
1421
+ * @param {DefaultApiV1GetNodePropertiesRequest} requestParameters Request parameters.
1422
+ * @param {*} [options] Override http request option.
1423
+ * @throws {RequiredError}
1424
+ * @memberof DefaultApi
1425
+ */
1426
+ v1GetNodeProperties(requestParameters, options) {
1427
+ return DefaultApiFp(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
1428
+ }
1346
1429
  /**
1347
1430
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1348
1431
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2388
5
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2388
8
+ * The version of the OpenAPI document: 1.3.2407
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 SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.2388
7
+ * The version of the OpenAPI document: 1.3.2407
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/sda-api",
3
- "version": "1.3.2388",
3
+ "version": "1.3.2407",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {