@ourskyai/sda-api 1.3.3603 → 1.3.3644

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.3603
1
+ ## @ourskyai/sda-api@1.3.3644
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.3603 --save
39
+ npm install @ourskyai/sda-api@1.3.3644 --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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -109,6 +109,25 @@ export const FilterType = {
109
109
  export type FilterType = typeof FilterType[keyof typeof FilterType];
110
110
 
111
111
 
112
+ /**
113
+ *
114
+ * @export
115
+ * @interface FitsHeader
116
+ */
117
+ export interface FitsHeader {
118
+ /**
119
+ *
120
+ * @type {string}
121
+ * @memberof FitsHeader
122
+ */
123
+ 'key': string;
124
+ /**
125
+ *
126
+ * @type {string}
127
+ * @memberof FitsHeader
128
+ */
129
+ 'value': string;
130
+ }
112
131
  /**
113
132
  * Location
114
133
  * @export
@@ -883,6 +902,12 @@ export interface V1ImageSetImage {
883
902
  * @memberof V1ImageSetImage
884
903
  */
885
904
  'exposureLength': number;
905
+ /**
906
+ *
907
+ * @type {Array<FitsHeader>}
908
+ * @memberof V1ImageSetImage
909
+ */
910
+ 'fitsHeaders': Array<FitsHeader>;
886
911
  }
887
912
  /**
888
913
  * Observation Feature
@@ -1396,17 +1421,35 @@ export interface V1TargetCorrelation {
1396
1421
  */
1397
1422
  'targetId': string;
1398
1423
  /**
1399
- *
1424
+ * The predicted (propagated) center of the targetId in Right Ascension in degrees
1400
1425
  * @type {number}
1401
1426
  * @memberof V1TargetCorrelation
1402
1427
  */
1403
1428
  'ra': number;
1404
1429
  /**
1405
- *
1430
+ * The predicted (propagated) center of the streak in Declination in degrees
1406
1431
  * @type {number}
1407
1432
  * @memberof V1TargetCorrelation
1408
1433
  */
1409
1434
  'dec': number;
1435
+ /**
1436
+ * The predicted (propagated) length of the target streak in degrees
1437
+ * @type {number}
1438
+ * @memberof V1TargetCorrelation
1439
+ */
1440
+ 'streakLength'?: number;
1441
+ /**
1442
+ * The distance between the predicted and actual center of the streak in degrees
1443
+ * @type {number}
1444
+ * @memberof V1TargetCorrelation
1445
+ */
1446
+ 'distanceFromStreak'?: number;
1447
+ /**
1448
+ * The angle between the predicted and actual angle-to-celestial-north for the streak in degrees
1449
+ * @type {number}
1450
+ * @memberof V1TargetCorrelation
1451
+ */
1452
+ 'angleFromStreak'?: number;
1410
1453
  }
1411
1454
  /**
1412
1455
  * TDM
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -95,6 +95,25 @@ 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
+ *
100
+ * @export
101
+ * @interface FitsHeader
102
+ */
103
+ export interface FitsHeader {
104
+ /**
105
+ *
106
+ * @type {string}
107
+ * @memberof FitsHeader
108
+ */
109
+ 'key': string;
110
+ /**
111
+ *
112
+ * @type {string}
113
+ * @memberof FitsHeader
114
+ */
115
+ 'value': string;
116
+ }
98
117
  /**
99
118
  * Location
100
119
  * @export
@@ -837,6 +856,12 @@ export interface V1ImageSetImage {
837
856
  * @memberof V1ImageSetImage
838
857
  */
839
858
  'exposureLength': number;
859
+ /**
860
+ *
861
+ * @type {Array<FitsHeader>}
862
+ * @memberof V1ImageSetImage
863
+ */
864
+ 'fitsHeaders': Array<FitsHeader>;
840
865
  }
841
866
  /**
842
867
  * Observation Feature
@@ -1342,17 +1367,35 @@ export interface V1TargetCorrelation {
1342
1367
  */
1343
1368
  'targetId': string;
1344
1369
  /**
1345
- *
1370
+ * The predicted (propagated) center of the targetId in Right Ascension in degrees
1346
1371
  * @type {number}
1347
1372
  * @memberof V1TargetCorrelation
1348
1373
  */
1349
1374
  'ra': number;
1350
1375
  /**
1351
- *
1376
+ * The predicted (propagated) center of the streak in Declination in degrees
1352
1377
  * @type {number}
1353
1378
  * @memberof V1TargetCorrelation
1354
1379
  */
1355
1380
  'dec': number;
1381
+ /**
1382
+ * The predicted (propagated) length of the target streak in degrees
1383
+ * @type {number}
1384
+ * @memberof V1TargetCorrelation
1385
+ */
1386
+ 'streakLength'?: number;
1387
+ /**
1388
+ * The distance between the predicted and actual center of the streak in degrees
1389
+ * @type {number}
1390
+ * @memberof V1TargetCorrelation
1391
+ */
1392
+ 'distanceFromStreak'?: number;
1393
+ /**
1394
+ * The angle between the predicted and actual angle-to-celestial-north for the streak in degrees
1395
+ * @type {number}
1396
+ * @memberof V1TargetCorrelation
1397
+ */
1398
+ 'angleFromStreak'?: number;
1356
1399
  }
1357
1400
  /**
1358
1401
  * TDM
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.3603
8
+ * The version of the OpenAPI document: 1.3.3644
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky 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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
8
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
8
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
8
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -95,6 +95,25 @@ 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
+ *
100
+ * @export
101
+ * @interface FitsHeader
102
+ */
103
+ export interface FitsHeader {
104
+ /**
105
+ *
106
+ * @type {string}
107
+ * @memberof FitsHeader
108
+ */
109
+ 'key': string;
110
+ /**
111
+ *
112
+ * @type {string}
113
+ * @memberof FitsHeader
114
+ */
115
+ 'value': string;
116
+ }
98
117
  /**
99
118
  * Location
100
119
  * @export
@@ -837,6 +856,12 @@ export interface V1ImageSetImage {
837
856
  * @memberof V1ImageSetImage
838
857
  */
839
858
  'exposureLength': number;
859
+ /**
860
+ *
861
+ * @type {Array<FitsHeader>}
862
+ * @memberof V1ImageSetImage
863
+ */
864
+ 'fitsHeaders': Array<FitsHeader>;
840
865
  }
841
866
  /**
842
867
  * Observation Feature
@@ -1342,17 +1367,35 @@ export interface V1TargetCorrelation {
1342
1367
  */
1343
1368
  'targetId': string;
1344
1369
  /**
1345
- *
1370
+ * The predicted (propagated) center of the targetId in Right Ascension in degrees
1346
1371
  * @type {number}
1347
1372
  * @memberof V1TargetCorrelation
1348
1373
  */
1349
1374
  'ra': number;
1350
1375
  /**
1351
- *
1376
+ * The predicted (propagated) center of the streak in Declination in degrees
1352
1377
  * @type {number}
1353
1378
  * @memberof V1TargetCorrelation
1354
1379
  */
1355
1380
  'dec': number;
1381
+ /**
1382
+ * The predicted (propagated) length of the target streak in degrees
1383
+ * @type {number}
1384
+ * @memberof V1TargetCorrelation
1385
+ */
1386
+ 'streakLength'?: number;
1387
+ /**
1388
+ * The distance between the predicted and actual center of the streak in degrees
1389
+ * @type {number}
1390
+ * @memberof V1TargetCorrelation
1391
+ */
1392
+ 'distanceFromStreak'?: number;
1393
+ /**
1394
+ * The angle between the predicted and actual angle-to-celestial-north for the streak in degrees
1395
+ * @type {number}
1396
+ * @memberof V1TargetCorrelation
1397
+ */
1398
+ 'angleFromStreak'?: number;
1356
1399
  }
1357
1400
  /**
1358
1401
  * TDM
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603
5
+ * The version of the OpenAPI document: 1.3.3644
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.3603
8
+ * The version of the OpenAPI document: 1.3.3644
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.3603
7
+ * The version of the OpenAPI document: 1.3.3644
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.3603",
3
+ "version": "1.3.3644",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {