@ourskyai/sda-api 1.3.4081 → 1.3.4154
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 +2 -2
- package/api.ts +66 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +65 -4
- package/dist/api.js +3 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +65 -4
- package/dist/esm/api.js +3 -2
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/sda-api@1.3.
|
|
1
|
+
## @ourskyai/sda-api@1.3.4154
|
|
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.
|
|
39
|
+
npm install @ourskyai/sda-api@1.3.4154 --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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -330,7 +330,8 @@ export const ObservationState = {
|
|
|
330
330
|
PENDING: 'PENDING',
|
|
331
331
|
UNDERWAY: 'UNDERWAY',
|
|
332
332
|
COMPLETED: 'COMPLETED',
|
|
333
|
-
FAILED: 'FAILED'
|
|
333
|
+
FAILED: 'FAILED',
|
|
334
|
+
EXPIRED: 'EXPIRED'
|
|
334
335
|
} as const;
|
|
335
336
|
|
|
336
337
|
export type ObservationState = typeof ObservationState[keyof typeof ObservationState];
|
|
@@ -530,19 +531,43 @@ export interface V1CreateSatelliteTargetRequest {
|
|
|
530
531
|
* @type {string}
|
|
531
532
|
* @memberof V1CreateSatelliteTargetRequest
|
|
532
533
|
*/
|
|
533
|
-
'tleName'
|
|
534
|
+
'tleName'?: string;
|
|
534
535
|
/**
|
|
535
536
|
*
|
|
536
537
|
* @type {string}
|
|
537
538
|
* @memberof V1CreateSatelliteTargetRequest
|
|
538
539
|
*/
|
|
539
|
-
'tleLine1'
|
|
540
|
+
'tleLine1'?: string;
|
|
540
541
|
/**
|
|
541
542
|
*
|
|
542
543
|
* @type {string}
|
|
543
544
|
* @memberof V1CreateSatelliteTargetRequest
|
|
544
545
|
*/
|
|
545
|
-
'tleLine2'
|
|
546
|
+
'tleLine2'?: string;
|
|
547
|
+
/**
|
|
548
|
+
* The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target
|
|
549
|
+
* @type {string}
|
|
550
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
551
|
+
*/
|
|
552
|
+
'linkedSatelliteTargetId'?: string;
|
|
553
|
+
/**
|
|
554
|
+
* mass in kilograms
|
|
555
|
+
* @type {number}
|
|
556
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
557
|
+
*/
|
|
558
|
+
'mass'?: number;
|
|
559
|
+
/**
|
|
560
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure
|
|
561
|
+
* @type {number}
|
|
562
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
563
|
+
*/
|
|
564
|
+
'coefficientOfReflection'?: number;
|
|
565
|
+
/**
|
|
566
|
+
* cross sectional area in meters^2
|
|
567
|
+
* @type {number}
|
|
568
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
569
|
+
*/
|
|
570
|
+
'crossSection'?: number;
|
|
546
571
|
}
|
|
547
572
|
/**
|
|
548
573
|
*
|
|
@@ -995,6 +1020,18 @@ export interface V1ObservationSequenceResult {
|
|
|
995
1020
|
* @memberof V1ObservationSequenceResult
|
|
996
1021
|
*/
|
|
997
1022
|
'noradId'?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* Resulting line 1 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
1025
|
+
* @type {string}
|
|
1026
|
+
* @memberof V1ObservationSequenceResult
|
|
1027
|
+
*/
|
|
1028
|
+
'generatedTleLine1'?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
* Resulting line 2 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
1031
|
+
* @type {string}
|
|
1032
|
+
* @memberof V1ObservationSequenceResult
|
|
1033
|
+
*/
|
|
1034
|
+
'generatedTleLine2'?: string;
|
|
998
1035
|
/**
|
|
999
1036
|
*
|
|
1000
1037
|
* @type {Array<V1ObservationSequenceResultImageSetsInner>}
|
|
@@ -1688,6 +1725,30 @@ export interface V1UpdateSatelliteTargetRequest {
|
|
|
1688
1725
|
* @memberof V1UpdateSatelliteTargetRequest
|
|
1689
1726
|
*/
|
|
1690
1727
|
'tleLine2': string;
|
|
1728
|
+
/**
|
|
1729
|
+
* -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
|
|
1730
|
+
* @type {string}
|
|
1731
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1732
|
+
*/
|
|
1733
|
+
'linkedSatelliteTargetId'?: string;
|
|
1734
|
+
/**
|
|
1735
|
+
* mass in kilograms. Caution, setting this to null well set the satellite target mass to null
|
|
1736
|
+
* @type {number}
|
|
1737
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1738
|
+
*/
|
|
1739
|
+
'mass'?: number;
|
|
1740
|
+
/**
|
|
1741
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure. Caution, setting this value to null will set the satellite target Cr value to null.
|
|
1742
|
+
* @type {number}
|
|
1743
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1744
|
+
*/
|
|
1745
|
+
'coefficientOfReflection'?: number;
|
|
1746
|
+
/**
|
|
1747
|
+
* cross sectional area in meters^2. Caution, setting this value to null will set the crossSection to null
|
|
1748
|
+
* @type {number}
|
|
1749
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1750
|
+
*/
|
|
1751
|
+
'crossSection'?: number;
|
|
1691
1752
|
}
|
|
1692
1753
|
/**
|
|
1693
1754
|
*
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -312,6 +312,7 @@ export declare const ObservationState: {
|
|
|
312
312
|
readonly UNDERWAY: "UNDERWAY";
|
|
313
313
|
readonly COMPLETED: "COMPLETED";
|
|
314
314
|
readonly FAILED: "FAILED";
|
|
315
|
+
readonly EXPIRED: "EXPIRED";
|
|
315
316
|
};
|
|
316
317
|
export type ObservationState = typeof ObservationState[keyof typeof ObservationState];
|
|
317
318
|
/**
|
|
@@ -490,19 +491,43 @@ export interface V1CreateSatelliteTargetRequest {
|
|
|
490
491
|
* @type {string}
|
|
491
492
|
* @memberof V1CreateSatelliteTargetRequest
|
|
492
493
|
*/
|
|
493
|
-
'tleName'
|
|
494
|
+
'tleName'?: string;
|
|
494
495
|
/**
|
|
495
496
|
*
|
|
496
497
|
* @type {string}
|
|
497
498
|
* @memberof V1CreateSatelliteTargetRequest
|
|
498
499
|
*/
|
|
499
|
-
'tleLine1'
|
|
500
|
+
'tleLine1'?: string;
|
|
500
501
|
/**
|
|
501
502
|
*
|
|
502
503
|
* @type {string}
|
|
503
504
|
* @memberof V1CreateSatelliteTargetRequest
|
|
504
505
|
*/
|
|
505
|
-
'tleLine2'
|
|
506
|
+
'tleLine2'?: string;
|
|
507
|
+
/**
|
|
508
|
+
* The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target
|
|
509
|
+
* @type {string}
|
|
510
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
511
|
+
*/
|
|
512
|
+
'linkedSatelliteTargetId'?: string;
|
|
513
|
+
/**
|
|
514
|
+
* mass in kilograms
|
|
515
|
+
* @type {number}
|
|
516
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
517
|
+
*/
|
|
518
|
+
'mass'?: number;
|
|
519
|
+
/**
|
|
520
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure
|
|
521
|
+
* @type {number}
|
|
522
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
523
|
+
*/
|
|
524
|
+
'coefficientOfReflection'?: number;
|
|
525
|
+
/**
|
|
526
|
+
* cross sectional area in meters^2
|
|
527
|
+
* @type {number}
|
|
528
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
529
|
+
*/
|
|
530
|
+
'crossSection'?: number;
|
|
506
531
|
}
|
|
507
532
|
/**
|
|
508
533
|
*
|
|
@@ -949,6 +974,18 @@ export interface V1ObservationSequenceResult {
|
|
|
949
974
|
* @memberof V1ObservationSequenceResult
|
|
950
975
|
*/
|
|
951
976
|
'noradId'?: string;
|
|
977
|
+
/**
|
|
978
|
+
* Resulting line 1 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
979
|
+
* @type {string}
|
|
980
|
+
* @memberof V1ObservationSequenceResult
|
|
981
|
+
*/
|
|
982
|
+
'generatedTleLine1'?: string;
|
|
983
|
+
/**
|
|
984
|
+
* Resulting line 2 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
985
|
+
* @type {string}
|
|
986
|
+
* @memberof V1ObservationSequenceResult
|
|
987
|
+
*/
|
|
988
|
+
'generatedTleLine2'?: string;
|
|
952
989
|
/**
|
|
953
990
|
*
|
|
954
991
|
* @type {Array<V1ObservationSequenceResultImageSetsInner>}
|
|
@@ -1634,6 +1671,30 @@ export interface V1UpdateSatelliteTargetRequest {
|
|
|
1634
1671
|
* @memberof V1UpdateSatelliteTargetRequest
|
|
1635
1672
|
*/
|
|
1636
1673
|
'tleLine2': string;
|
|
1674
|
+
/**
|
|
1675
|
+
* -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
|
|
1676
|
+
* @type {string}
|
|
1677
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1678
|
+
*/
|
|
1679
|
+
'linkedSatelliteTargetId'?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
* mass in kilograms. Caution, setting this to null well set the satellite target mass to null
|
|
1682
|
+
* @type {number}
|
|
1683
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1684
|
+
*/
|
|
1685
|
+
'mass'?: number;
|
|
1686
|
+
/**
|
|
1687
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure. Caution, setting this value to null will set the satellite target Cr value to null.
|
|
1688
|
+
* @type {number}
|
|
1689
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1690
|
+
*/
|
|
1691
|
+
'coefficientOfReflection'?: number;
|
|
1692
|
+
/**
|
|
1693
|
+
* cross sectional area in meters^2. Caution, setting this value to null will set the crossSection to null
|
|
1694
|
+
* @type {number}
|
|
1695
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1696
|
+
*/
|
|
1697
|
+
'crossSection'?: number;
|
|
1637
1698
|
}
|
|
1638
1699
|
/**
|
|
1639
1700
|
*
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -72,7 +72,8 @@ exports.ObservationState = {
|
|
|
72
72
|
PENDING: 'PENDING',
|
|
73
73
|
UNDERWAY: 'UNDERWAY',
|
|
74
74
|
COMPLETED: 'COMPLETED',
|
|
75
|
-
FAILED: 'FAILED'
|
|
75
|
+
FAILED: 'FAILED',
|
|
76
|
+
EXPIRED: 'EXPIRED'
|
|
76
77
|
};
|
|
77
78
|
/**
|
|
78
79
|
*
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -312,6 +312,7 @@ export declare const ObservationState: {
|
|
|
312
312
|
readonly UNDERWAY: "UNDERWAY";
|
|
313
313
|
readonly COMPLETED: "COMPLETED";
|
|
314
314
|
readonly FAILED: "FAILED";
|
|
315
|
+
readonly EXPIRED: "EXPIRED";
|
|
315
316
|
};
|
|
316
317
|
export type ObservationState = typeof ObservationState[keyof typeof ObservationState];
|
|
317
318
|
/**
|
|
@@ -490,19 +491,43 @@ export interface V1CreateSatelliteTargetRequest {
|
|
|
490
491
|
* @type {string}
|
|
491
492
|
* @memberof V1CreateSatelliteTargetRequest
|
|
492
493
|
*/
|
|
493
|
-
'tleName'
|
|
494
|
+
'tleName'?: string;
|
|
494
495
|
/**
|
|
495
496
|
*
|
|
496
497
|
* @type {string}
|
|
497
498
|
* @memberof V1CreateSatelliteTargetRequest
|
|
498
499
|
*/
|
|
499
|
-
'tleLine1'
|
|
500
|
+
'tleLine1'?: string;
|
|
500
501
|
/**
|
|
501
502
|
*
|
|
502
503
|
* @type {string}
|
|
503
504
|
* @memberof V1CreateSatelliteTargetRequest
|
|
504
505
|
*/
|
|
505
|
-
'tleLine2'
|
|
506
|
+
'tleLine2'?: string;
|
|
507
|
+
/**
|
|
508
|
+
* The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target
|
|
509
|
+
* @type {string}
|
|
510
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
511
|
+
*/
|
|
512
|
+
'linkedSatelliteTargetId'?: string;
|
|
513
|
+
/**
|
|
514
|
+
* mass in kilograms
|
|
515
|
+
* @type {number}
|
|
516
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
517
|
+
*/
|
|
518
|
+
'mass'?: number;
|
|
519
|
+
/**
|
|
520
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure
|
|
521
|
+
* @type {number}
|
|
522
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
523
|
+
*/
|
|
524
|
+
'coefficientOfReflection'?: number;
|
|
525
|
+
/**
|
|
526
|
+
* cross sectional area in meters^2
|
|
527
|
+
* @type {number}
|
|
528
|
+
* @memberof V1CreateSatelliteTargetRequest
|
|
529
|
+
*/
|
|
530
|
+
'crossSection'?: number;
|
|
506
531
|
}
|
|
507
532
|
/**
|
|
508
533
|
*
|
|
@@ -949,6 +974,18 @@ export interface V1ObservationSequenceResult {
|
|
|
949
974
|
* @memberof V1ObservationSequenceResult
|
|
950
975
|
*/
|
|
951
976
|
'noradId'?: string;
|
|
977
|
+
/**
|
|
978
|
+
* Resulting line 1 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
979
|
+
* @type {string}
|
|
980
|
+
* @memberof V1ObservationSequenceResult
|
|
981
|
+
*/
|
|
982
|
+
'generatedTleLine1'?: string;
|
|
983
|
+
/**
|
|
984
|
+
* Resulting line 2 of TLE generated from Batch Least Squares fit of orbit from recently extracted streaks
|
|
985
|
+
* @type {string}
|
|
986
|
+
* @memberof V1ObservationSequenceResult
|
|
987
|
+
*/
|
|
988
|
+
'generatedTleLine2'?: string;
|
|
952
989
|
/**
|
|
953
990
|
*
|
|
954
991
|
* @type {Array<V1ObservationSequenceResultImageSetsInner>}
|
|
@@ -1634,6 +1671,30 @@ export interface V1UpdateSatelliteTargetRequest {
|
|
|
1634
1671
|
* @memberof V1UpdateSatelliteTargetRequest
|
|
1635
1672
|
*/
|
|
1636
1673
|
'tleLine2': string;
|
|
1674
|
+
/**
|
|
1675
|
+
* -| The OurSky Satellite Target. When this is specified OurSky will automatically choose the TLE to use based on which target has the newest TLE. The private target or the upstream target. Caution, setting this to null will unlink the target
|
|
1676
|
+
* @type {string}
|
|
1677
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1678
|
+
*/
|
|
1679
|
+
'linkedSatelliteTargetId'?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
* mass in kilograms. Caution, setting this to null well set the satellite target mass to null
|
|
1682
|
+
* @type {number}
|
|
1683
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1684
|
+
*/
|
|
1685
|
+
'mass'?: number;
|
|
1686
|
+
/**
|
|
1687
|
+
* The Cr value used to calculate acceleration due to solar radiation pressure. Caution, setting this value to null will set the satellite target Cr value to null.
|
|
1688
|
+
* @type {number}
|
|
1689
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1690
|
+
*/
|
|
1691
|
+
'coefficientOfReflection'?: number;
|
|
1692
|
+
/**
|
|
1693
|
+
* cross sectional area in meters^2. Caution, setting this value to null will set the crossSection to null
|
|
1694
|
+
* @type {number}
|
|
1695
|
+
* @memberof V1UpdateSatelliteTargetRequest
|
|
1696
|
+
*/
|
|
1697
|
+
'crossSection'?: number;
|
|
1637
1698
|
}
|
|
1638
1699
|
/**
|
|
1639
1700
|
*
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -69,7 +69,8 @@ export const ObservationState = {
|
|
|
69
69
|
PENDING: 'PENDING',
|
|
70
70
|
UNDERWAY: 'UNDERWAY',
|
|
71
71
|
COMPLETED: 'COMPLETED',
|
|
72
|
-
FAILED: 'FAILED'
|
|
72
|
+
FAILED: 'FAILED',
|
|
73
|
+
EXPIRED: 'EXPIRED'
|
|
73
74
|
};
|
|
74
75
|
/**
|
|
75
76
|
*
|
package/dist/esm/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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.3.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.3.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
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](https://api.prod.oursky.ai/docs/sda#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](https://api.prod.oursky.ai/docs/sda#tag/organization-targets/get/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](https://api.prod.oursky.ai/docs/sda#tag/webhooks/post/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](https://api.prod.oursky.ai/docs/sda#tag/tdms/get/v1/tdms) endpoint to poll for TDMs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.3.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.4154
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|