@ourskyai/sda-api 1.3.3770 → 1.3.3787
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 +169 -2
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +115 -2
- package/dist/api.js +77 -2
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +115 -2
- package/dist/esm/api.js +77 -2
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +2 -2
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +2 -2
- package/dist/esm/configuration.d.ts +2 -2
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/index.ts +2 -2
- 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.3787
|
|
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.3787 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1607,6 +1607,18 @@ export interface V1WebhookConfiguration {
|
|
|
1607
1607
|
* @memberof V1WebhookConfiguration
|
|
1608
1608
|
*/
|
|
1609
1609
|
'url': string;
|
|
1610
|
+
/**
|
|
1611
|
+
*
|
|
1612
|
+
* @type {number}
|
|
1613
|
+
* @memberof V1WebhookConfiguration
|
|
1614
|
+
*/
|
|
1615
|
+
'failureCount': number;
|
|
1616
|
+
/**
|
|
1617
|
+
*
|
|
1618
|
+
* @type {string}
|
|
1619
|
+
* @memberof V1WebhookConfiguration
|
|
1620
|
+
*/
|
|
1621
|
+
'lastFailureAt'?: string;
|
|
1610
1622
|
/**
|
|
1611
1623
|
*
|
|
1612
1624
|
* @type {Array<WebhookEvent>}
|
|
@@ -1626,6 +1638,49 @@ export interface V1WebhookConfiguration {
|
|
|
1626
1638
|
*/
|
|
1627
1639
|
'createdAt': string;
|
|
1628
1640
|
}
|
|
1641
|
+
/**
|
|
1642
|
+
*
|
|
1643
|
+
* @export
|
|
1644
|
+
* @interface V1WebhookLog
|
|
1645
|
+
*/
|
|
1646
|
+
export interface V1WebhookLog {
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @type {string}
|
|
1650
|
+
* @memberof V1WebhookLog
|
|
1651
|
+
*/
|
|
1652
|
+
'id': string;
|
|
1653
|
+
/**
|
|
1654
|
+
*
|
|
1655
|
+
* @type {string}
|
|
1656
|
+
* @memberof V1WebhookLog
|
|
1657
|
+
*/
|
|
1658
|
+
'webhookId': string;
|
|
1659
|
+
/**
|
|
1660
|
+
*
|
|
1661
|
+
* @type {string}
|
|
1662
|
+
* @memberof V1WebhookLog
|
|
1663
|
+
*/
|
|
1664
|
+
'status': string;
|
|
1665
|
+
/**
|
|
1666
|
+
*
|
|
1667
|
+
* @type {number}
|
|
1668
|
+
* @memberof V1WebhookLog
|
|
1669
|
+
*/
|
|
1670
|
+
'statusCode'?: number;
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @type {string}
|
|
1674
|
+
* @memberof V1WebhookLog
|
|
1675
|
+
*/
|
|
1676
|
+
'createdAt': string;
|
|
1677
|
+
/**
|
|
1678
|
+
* The full log message
|
|
1679
|
+
* @type {string}
|
|
1680
|
+
* @memberof V1WebhookLog
|
|
1681
|
+
*/
|
|
1682
|
+
'log'?: string;
|
|
1683
|
+
}
|
|
1629
1684
|
/**
|
|
1630
1685
|
*
|
|
1631
1686
|
* @export
|
|
@@ -3000,6 +3055,58 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3000
3055
|
|
|
3001
3056
|
|
|
3002
3057
|
|
|
3058
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3059
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3060
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3061
|
+
|
|
3062
|
+
return {
|
|
3063
|
+
url: toPathString(localVarUrlObj),
|
|
3064
|
+
options: localVarRequestOptions,
|
|
3065
|
+
};
|
|
3066
|
+
},
|
|
3067
|
+
/**
|
|
3068
|
+
* Get webhook logs.
|
|
3069
|
+
* @param {string} webhookId
|
|
3070
|
+
* @param {number} [limit]
|
|
3071
|
+
* @param {number} [offset]
|
|
3072
|
+
* @param {*} [options] Override http request option.
|
|
3073
|
+
* @throws {RequiredError}
|
|
3074
|
+
*/
|
|
3075
|
+
v1GetWebhookLogs: async (webhookId: string, limit?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3076
|
+
// verify required parameter 'webhookId' is not null or undefined
|
|
3077
|
+
assertParamExists('v1GetWebhookLogs', 'webhookId', webhookId)
|
|
3078
|
+
const localVarPath = `/v1/communications/webhook-logs`;
|
|
3079
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3080
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3081
|
+
let baseOptions;
|
|
3082
|
+
if (configuration) {
|
|
3083
|
+
baseOptions = configuration.baseOptions;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3087
|
+
const localVarHeaderParameter = {} as any;
|
|
3088
|
+
const localVarQueryParameter = {} as any;
|
|
3089
|
+
|
|
3090
|
+
// authentication Roles required
|
|
3091
|
+
|
|
3092
|
+
// authentication BearerToken required
|
|
3093
|
+
// http bearer authentication required
|
|
3094
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3095
|
+
|
|
3096
|
+
if (webhookId !== undefined) {
|
|
3097
|
+
localVarQueryParameter['webhookId'] = webhookId;
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3100
|
+
if (limit !== undefined) {
|
|
3101
|
+
localVarQueryParameter['limit'] = limit;
|
|
3102
|
+
}
|
|
3103
|
+
|
|
3104
|
+
if (offset !== undefined) {
|
|
3105
|
+
localVarQueryParameter['offset'] = offset;
|
|
3106
|
+
}
|
|
3107
|
+
|
|
3108
|
+
|
|
3109
|
+
|
|
3003
3110
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3004
3111
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3005
3112
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3417,6 +3524,18 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3417
3524
|
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetWebhookConfigurations(options);
|
|
3418
3525
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3419
3526
|
},
|
|
3527
|
+
/**
|
|
3528
|
+
* Get webhook logs.
|
|
3529
|
+
* @param {string} webhookId
|
|
3530
|
+
* @param {number} [limit]
|
|
3531
|
+
* @param {number} [offset]
|
|
3532
|
+
* @param {*} [options] Override http request option.
|
|
3533
|
+
* @throws {RequiredError}
|
|
3534
|
+
*/
|
|
3535
|
+
async v1GetWebhookLogs(webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookLog>>> {
|
|
3536
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetWebhookLogs(webhookId, limit, offset, options);
|
|
3537
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3538
|
+
},
|
|
3420
3539
|
/**
|
|
3421
3540
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
3422
3541
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -3723,6 +3842,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3723
3842
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookConfiguration>> {
|
|
3724
3843
|
return localVarFp.v1GetWebhookConfigurations(options).then((request) => request(axios, basePath));
|
|
3725
3844
|
},
|
|
3845
|
+
/**
|
|
3846
|
+
* Get webhook logs.
|
|
3847
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
3848
|
+
* @param {*} [options] Override http request option.
|
|
3849
|
+
* @throws {RequiredError}
|
|
3850
|
+
*/
|
|
3851
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>> {
|
|
3852
|
+
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
3853
|
+
},
|
|
3726
3854
|
/**
|
|
3727
3855
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
3728
3856
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -4199,6 +4327,34 @@ export interface DefaultApiV1GetTdmsRequest {
|
|
|
4199
4327
|
readonly after?: string
|
|
4200
4328
|
}
|
|
4201
4329
|
|
|
4330
|
+
/**
|
|
4331
|
+
* Request parameters for v1GetWebhookLogs operation in DefaultApi.
|
|
4332
|
+
* @export
|
|
4333
|
+
* @interface DefaultApiV1GetWebhookLogsRequest
|
|
4334
|
+
*/
|
|
4335
|
+
export interface DefaultApiV1GetWebhookLogsRequest {
|
|
4336
|
+
/**
|
|
4337
|
+
*
|
|
4338
|
+
* @type {string}
|
|
4339
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
4340
|
+
*/
|
|
4341
|
+
readonly webhookId: string
|
|
4342
|
+
|
|
4343
|
+
/**
|
|
4344
|
+
*
|
|
4345
|
+
* @type {number}
|
|
4346
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
4347
|
+
*/
|
|
4348
|
+
readonly limit?: number
|
|
4349
|
+
|
|
4350
|
+
/**
|
|
4351
|
+
*
|
|
4352
|
+
* @type {number}
|
|
4353
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
4354
|
+
*/
|
|
4355
|
+
readonly offset?: number
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4202
4358
|
/**
|
|
4203
4359
|
* Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
|
|
4204
4360
|
* @export
|
|
@@ -4572,6 +4728,17 @@ export class DefaultApi extends BaseAPI {
|
|
|
4572
4728
|
return DefaultApiFp(this.configuration).v1GetWebhookConfigurations(options).then((request) => request(this.axios, this.basePath));
|
|
4573
4729
|
}
|
|
4574
4730
|
|
|
4731
|
+
/**
|
|
4732
|
+
* Get webhook logs.
|
|
4733
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
4734
|
+
* @param {*} [options] Override http request option.
|
|
4735
|
+
* @throws {RequiredError}
|
|
4736
|
+
* @memberof DefaultApi
|
|
4737
|
+
*/
|
|
4738
|
+
public v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig) {
|
|
4739
|
+
return DefaultApiFp(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
|
|
4740
|
+
}
|
|
4741
|
+
|
|
4575
4742
|
/**
|
|
4576
4743
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
4577
4744
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
package/base.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1551,6 +1551,18 @@ export interface V1WebhookConfiguration {
|
|
|
1551
1551
|
* @memberof V1WebhookConfiguration
|
|
1552
1552
|
*/
|
|
1553
1553
|
'url': string;
|
|
1554
|
+
/**
|
|
1555
|
+
*
|
|
1556
|
+
* @type {number}
|
|
1557
|
+
* @memberof V1WebhookConfiguration
|
|
1558
|
+
*/
|
|
1559
|
+
'failureCount': number;
|
|
1560
|
+
/**
|
|
1561
|
+
*
|
|
1562
|
+
* @type {string}
|
|
1563
|
+
* @memberof V1WebhookConfiguration
|
|
1564
|
+
*/
|
|
1565
|
+
'lastFailureAt'?: string;
|
|
1554
1566
|
/**
|
|
1555
1567
|
*
|
|
1556
1568
|
* @type {Array<WebhookEvent>}
|
|
@@ -1570,6 +1582,49 @@ export interface V1WebhookConfiguration {
|
|
|
1570
1582
|
*/
|
|
1571
1583
|
'createdAt': string;
|
|
1572
1584
|
}
|
|
1585
|
+
/**
|
|
1586
|
+
*
|
|
1587
|
+
* @export
|
|
1588
|
+
* @interface V1WebhookLog
|
|
1589
|
+
*/
|
|
1590
|
+
export interface V1WebhookLog {
|
|
1591
|
+
/**
|
|
1592
|
+
*
|
|
1593
|
+
* @type {string}
|
|
1594
|
+
* @memberof V1WebhookLog
|
|
1595
|
+
*/
|
|
1596
|
+
'id': string;
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @type {string}
|
|
1600
|
+
* @memberof V1WebhookLog
|
|
1601
|
+
*/
|
|
1602
|
+
'webhookId': string;
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @memberof V1WebhookLog
|
|
1607
|
+
*/
|
|
1608
|
+
'status': string;
|
|
1609
|
+
/**
|
|
1610
|
+
*
|
|
1611
|
+
* @type {number}
|
|
1612
|
+
* @memberof V1WebhookLog
|
|
1613
|
+
*/
|
|
1614
|
+
'statusCode'?: number;
|
|
1615
|
+
/**
|
|
1616
|
+
*
|
|
1617
|
+
* @type {string}
|
|
1618
|
+
* @memberof V1WebhookLog
|
|
1619
|
+
*/
|
|
1620
|
+
'createdAt': string;
|
|
1621
|
+
/**
|
|
1622
|
+
* The full log message
|
|
1623
|
+
* @type {string}
|
|
1624
|
+
* @memberof V1WebhookLog
|
|
1625
|
+
*/
|
|
1626
|
+
'log'?: string;
|
|
1627
|
+
}
|
|
1573
1628
|
/**
|
|
1574
1629
|
*
|
|
1575
1630
|
* @export
|
|
@@ -1839,6 +1894,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1839
1894
|
* @throws {RequiredError}
|
|
1840
1895
|
*/
|
|
1841
1896
|
v1GetWebhookConfigurations: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1897
|
+
/**
|
|
1898
|
+
* Get webhook logs.
|
|
1899
|
+
* @param {string} webhookId
|
|
1900
|
+
* @param {number} [limit]
|
|
1901
|
+
* @param {number} [offset]
|
|
1902
|
+
* @param {*} [options] Override http request option.
|
|
1903
|
+
* @throws {RequiredError}
|
|
1904
|
+
*/
|
|
1905
|
+
v1GetWebhookLogs: (webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1842
1906
|
/**
|
|
1843
1907
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1844
1908
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2082,6 +2146,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2082
2146
|
* @throws {RequiredError}
|
|
2083
2147
|
*/
|
|
2084
2148
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookConfiguration>>>;
|
|
2149
|
+
/**
|
|
2150
|
+
* Get webhook logs.
|
|
2151
|
+
* @param {string} webhookId
|
|
2152
|
+
* @param {number} [limit]
|
|
2153
|
+
* @param {number} [offset]
|
|
2154
|
+
* @param {*} [options] Override http request option.
|
|
2155
|
+
* @throws {RequiredError}
|
|
2156
|
+
*/
|
|
2157
|
+
v1GetWebhookLogs(webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookLog>>>;
|
|
2085
2158
|
/**
|
|
2086
2159
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2087
2160
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2316,6 +2389,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2316
2389
|
* @throws {RequiredError}
|
|
2317
2390
|
*/
|
|
2318
2391
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookConfiguration>>;
|
|
2392
|
+
/**
|
|
2393
|
+
* Get webhook logs.
|
|
2394
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2395
|
+
* @param {*} [options] Override http request option.
|
|
2396
|
+
* @throws {RequiredError}
|
|
2397
|
+
*/
|
|
2398
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>>;
|
|
2319
2399
|
/**
|
|
2320
2400
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2321
2401
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2749,6 +2829,31 @@ export interface DefaultApiV1GetTdmsRequest {
|
|
|
2749
2829
|
*/
|
|
2750
2830
|
readonly after?: string;
|
|
2751
2831
|
}
|
|
2832
|
+
/**
|
|
2833
|
+
* Request parameters for v1GetWebhookLogs operation in DefaultApi.
|
|
2834
|
+
* @export
|
|
2835
|
+
* @interface DefaultApiV1GetWebhookLogsRequest
|
|
2836
|
+
*/
|
|
2837
|
+
export interface DefaultApiV1GetWebhookLogsRequest {
|
|
2838
|
+
/**
|
|
2839
|
+
*
|
|
2840
|
+
* @type {string}
|
|
2841
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2842
|
+
*/
|
|
2843
|
+
readonly webhookId: string;
|
|
2844
|
+
/**
|
|
2845
|
+
*
|
|
2846
|
+
* @type {number}
|
|
2847
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2848
|
+
*/
|
|
2849
|
+
readonly limit?: number;
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @type {number}
|
|
2853
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2854
|
+
*/
|
|
2855
|
+
readonly offset?: number;
|
|
2856
|
+
}
|
|
2752
2857
|
/**
|
|
2753
2858
|
* Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
|
|
2754
2859
|
* @export
|
|
@@ -3027,6 +3132,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3027
3132
|
* @memberof DefaultApi
|
|
3028
3133
|
*/
|
|
3029
3134
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookConfiguration[], any>>;
|
|
3135
|
+
/**
|
|
3136
|
+
* Get webhook logs.
|
|
3137
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
3138
|
+
* @param {*} [options] Override http request option.
|
|
3139
|
+
* @throws {RequiredError}
|
|
3140
|
+
* @memberof DefaultApi
|
|
3141
|
+
*/
|
|
3142
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookLog[], any>>;
|
|
3030
3143
|
/**
|
|
3031
3144
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
3032
3145
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
package/dist/api.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1240,6 +1240,48 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1240
1240
|
options: localVarRequestOptions,
|
|
1241
1241
|
};
|
|
1242
1242
|
}),
|
|
1243
|
+
/**
|
|
1244
|
+
* Get webhook logs.
|
|
1245
|
+
* @param {string} webhookId
|
|
1246
|
+
* @param {number} [limit]
|
|
1247
|
+
* @param {number} [offset]
|
|
1248
|
+
* @param {*} [options] Override http request option.
|
|
1249
|
+
* @throws {RequiredError}
|
|
1250
|
+
*/
|
|
1251
|
+
v1GetWebhookLogs: (webhookId, limit, offset, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1252
|
+
// verify required parameter 'webhookId' is not null or undefined
|
|
1253
|
+
(0, common_1.assertParamExists)('v1GetWebhookLogs', 'webhookId', webhookId);
|
|
1254
|
+
const localVarPath = `/v1/communications/webhook-logs`;
|
|
1255
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1256
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1257
|
+
let baseOptions;
|
|
1258
|
+
if (configuration) {
|
|
1259
|
+
baseOptions = configuration.baseOptions;
|
|
1260
|
+
}
|
|
1261
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1262
|
+
const localVarHeaderParameter = {};
|
|
1263
|
+
const localVarQueryParameter = {};
|
|
1264
|
+
// authentication Roles required
|
|
1265
|
+
// authentication BearerToken required
|
|
1266
|
+
// http bearer authentication required
|
|
1267
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1268
|
+
if (webhookId !== undefined) {
|
|
1269
|
+
localVarQueryParameter['webhookId'] = webhookId;
|
|
1270
|
+
}
|
|
1271
|
+
if (limit !== undefined) {
|
|
1272
|
+
localVarQueryParameter['limit'] = limit;
|
|
1273
|
+
}
|
|
1274
|
+
if (offset !== undefined) {
|
|
1275
|
+
localVarQueryParameter['offset'] = offset;
|
|
1276
|
+
}
|
|
1277
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1278
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1279
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1280
|
+
return {
|
|
1281
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1282
|
+
options: localVarRequestOptions,
|
|
1283
|
+
};
|
|
1284
|
+
}),
|
|
1243
1285
|
/**
|
|
1244
1286
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1245
1287
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -1694,6 +1736,20 @@ const DefaultApiFp = function (configuration) {
|
|
|
1694
1736
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1695
1737
|
});
|
|
1696
1738
|
},
|
|
1739
|
+
/**
|
|
1740
|
+
* Get webhook logs.
|
|
1741
|
+
* @param {string} webhookId
|
|
1742
|
+
* @param {number} [limit]
|
|
1743
|
+
* @param {number} [offset]
|
|
1744
|
+
* @param {*} [options] Override http request option.
|
|
1745
|
+
* @throws {RequiredError}
|
|
1746
|
+
*/
|
|
1747
|
+
v1GetWebhookLogs(webhookId, limit, offset, options) {
|
|
1748
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1749
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetWebhookLogs(webhookId, limit, offset, options);
|
|
1750
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1751
|
+
});
|
|
1752
|
+
},
|
|
1697
1753
|
/**
|
|
1698
1754
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1699
1755
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2004,6 +2060,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2004
2060
|
v1GetWebhookConfigurations(options) {
|
|
2005
2061
|
return localVarFp.v1GetWebhookConfigurations(options).then((request) => request(axios, basePath));
|
|
2006
2062
|
},
|
|
2063
|
+
/**
|
|
2064
|
+
* Get webhook logs.
|
|
2065
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2066
|
+
* @param {*} [options] Override http request option.
|
|
2067
|
+
* @throws {RequiredError}
|
|
2068
|
+
*/
|
|
2069
|
+
v1GetWebhookLogs(requestParameters, options) {
|
|
2070
|
+
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
2071
|
+
},
|
|
2007
2072
|
/**
|
|
2008
2073
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2009
2074
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2339,6 +2404,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
2339
2404
|
v1GetWebhookConfigurations(options) {
|
|
2340
2405
|
return (0, exports.DefaultApiFp)(this.configuration).v1GetWebhookConfigurations(options).then((request) => request(this.axios, this.basePath));
|
|
2341
2406
|
}
|
|
2407
|
+
/**
|
|
2408
|
+
* Get webhook logs.
|
|
2409
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2410
|
+
* @param {*} [options] Override http request option.
|
|
2411
|
+
* @throws {RequiredError}
|
|
2412
|
+
* @memberof DefaultApi
|
|
2413
|
+
*/
|
|
2414
|
+
v1GetWebhookLogs(requestParameters, options) {
|
|
2415
|
+
return (0, exports.DefaultApiFp)(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
|
|
2416
|
+
}
|
|
2342
2417
|
/**
|
|
2343
2418
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2344
2419
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
package/dist/base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1551,6 +1551,18 @@ export interface V1WebhookConfiguration {
|
|
|
1551
1551
|
* @memberof V1WebhookConfiguration
|
|
1552
1552
|
*/
|
|
1553
1553
|
'url': string;
|
|
1554
|
+
/**
|
|
1555
|
+
*
|
|
1556
|
+
* @type {number}
|
|
1557
|
+
* @memberof V1WebhookConfiguration
|
|
1558
|
+
*/
|
|
1559
|
+
'failureCount': number;
|
|
1560
|
+
/**
|
|
1561
|
+
*
|
|
1562
|
+
* @type {string}
|
|
1563
|
+
* @memberof V1WebhookConfiguration
|
|
1564
|
+
*/
|
|
1565
|
+
'lastFailureAt'?: string;
|
|
1554
1566
|
/**
|
|
1555
1567
|
*
|
|
1556
1568
|
* @type {Array<WebhookEvent>}
|
|
@@ -1570,6 +1582,49 @@ export interface V1WebhookConfiguration {
|
|
|
1570
1582
|
*/
|
|
1571
1583
|
'createdAt': string;
|
|
1572
1584
|
}
|
|
1585
|
+
/**
|
|
1586
|
+
*
|
|
1587
|
+
* @export
|
|
1588
|
+
* @interface V1WebhookLog
|
|
1589
|
+
*/
|
|
1590
|
+
export interface V1WebhookLog {
|
|
1591
|
+
/**
|
|
1592
|
+
*
|
|
1593
|
+
* @type {string}
|
|
1594
|
+
* @memberof V1WebhookLog
|
|
1595
|
+
*/
|
|
1596
|
+
'id': string;
|
|
1597
|
+
/**
|
|
1598
|
+
*
|
|
1599
|
+
* @type {string}
|
|
1600
|
+
* @memberof V1WebhookLog
|
|
1601
|
+
*/
|
|
1602
|
+
'webhookId': string;
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @memberof V1WebhookLog
|
|
1607
|
+
*/
|
|
1608
|
+
'status': string;
|
|
1609
|
+
/**
|
|
1610
|
+
*
|
|
1611
|
+
* @type {number}
|
|
1612
|
+
* @memberof V1WebhookLog
|
|
1613
|
+
*/
|
|
1614
|
+
'statusCode'?: number;
|
|
1615
|
+
/**
|
|
1616
|
+
*
|
|
1617
|
+
* @type {string}
|
|
1618
|
+
* @memberof V1WebhookLog
|
|
1619
|
+
*/
|
|
1620
|
+
'createdAt': string;
|
|
1621
|
+
/**
|
|
1622
|
+
* The full log message
|
|
1623
|
+
* @type {string}
|
|
1624
|
+
* @memberof V1WebhookLog
|
|
1625
|
+
*/
|
|
1626
|
+
'log'?: string;
|
|
1627
|
+
}
|
|
1573
1628
|
/**
|
|
1574
1629
|
*
|
|
1575
1630
|
* @export
|
|
@@ -1839,6 +1894,15 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
1839
1894
|
* @throws {RequiredError}
|
|
1840
1895
|
*/
|
|
1841
1896
|
v1GetWebhookConfigurations: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1897
|
+
/**
|
|
1898
|
+
* Get webhook logs.
|
|
1899
|
+
* @param {string} webhookId
|
|
1900
|
+
* @param {number} [limit]
|
|
1901
|
+
* @param {number} [offset]
|
|
1902
|
+
* @param {*} [options] Override http request option.
|
|
1903
|
+
* @throws {RequiredError}
|
|
1904
|
+
*/
|
|
1905
|
+
v1GetWebhookLogs: (webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1842
1906
|
/**
|
|
1843
1907
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1844
1908
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2082,6 +2146,15 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2082
2146
|
* @throws {RequiredError}
|
|
2083
2147
|
*/
|
|
2084
2148
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookConfiguration>>>;
|
|
2149
|
+
/**
|
|
2150
|
+
* Get webhook logs.
|
|
2151
|
+
* @param {string} webhookId
|
|
2152
|
+
* @param {number} [limit]
|
|
2153
|
+
* @param {number} [offset]
|
|
2154
|
+
* @param {*} [options] Override http request option.
|
|
2155
|
+
* @throws {RequiredError}
|
|
2156
|
+
*/
|
|
2157
|
+
v1GetWebhookLogs(webhookId: string, limit?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1WebhookLog>>>;
|
|
2085
2158
|
/**
|
|
2086
2159
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2087
2160
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -2316,6 +2389,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2316
2389
|
* @throws {RequiredError}
|
|
2317
2390
|
*/
|
|
2318
2391
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookConfiguration>>;
|
|
2392
|
+
/**
|
|
2393
|
+
* Get webhook logs.
|
|
2394
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2395
|
+
* @param {*} [options] Override http request option.
|
|
2396
|
+
* @throws {RequiredError}
|
|
2397
|
+
*/
|
|
2398
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1WebhookLog>>;
|
|
2319
2399
|
/**
|
|
2320
2400
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2321
2401
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2749,6 +2829,31 @@ export interface DefaultApiV1GetTdmsRequest {
|
|
|
2749
2829
|
*/
|
|
2750
2830
|
readonly after?: string;
|
|
2751
2831
|
}
|
|
2832
|
+
/**
|
|
2833
|
+
* Request parameters for v1GetWebhookLogs operation in DefaultApi.
|
|
2834
|
+
* @export
|
|
2835
|
+
* @interface DefaultApiV1GetWebhookLogsRequest
|
|
2836
|
+
*/
|
|
2837
|
+
export interface DefaultApiV1GetWebhookLogsRequest {
|
|
2838
|
+
/**
|
|
2839
|
+
*
|
|
2840
|
+
* @type {string}
|
|
2841
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2842
|
+
*/
|
|
2843
|
+
readonly webhookId: string;
|
|
2844
|
+
/**
|
|
2845
|
+
*
|
|
2846
|
+
* @type {number}
|
|
2847
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2848
|
+
*/
|
|
2849
|
+
readonly limit?: number;
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @type {number}
|
|
2853
|
+
* @memberof DefaultApiV1GetWebhookLogs
|
|
2854
|
+
*/
|
|
2855
|
+
readonly offset?: number;
|
|
2856
|
+
}
|
|
2752
2857
|
/**
|
|
2753
2858
|
* Request parameters for v1UpdateEmailConfiguration operation in DefaultApi.
|
|
2754
2859
|
* @export
|
|
@@ -3027,6 +3132,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3027
3132
|
* @memberof DefaultApi
|
|
3028
3133
|
*/
|
|
3029
3134
|
v1GetWebhookConfigurations(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookConfiguration[], any>>;
|
|
3135
|
+
/**
|
|
3136
|
+
* Get webhook logs.
|
|
3137
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
3138
|
+
* @param {*} [options] Override http request option.
|
|
3139
|
+
* @throws {RequiredError}
|
|
3140
|
+
* @memberof DefaultApi
|
|
3141
|
+
*/
|
|
3142
|
+
v1GetWebhookLogs(requestParameters: DefaultApiV1GetWebhookLogsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1WebhookLog[], any>>;
|
|
3030
3143
|
/**
|
|
3031
3144
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
3032
3145
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
package/dist/esm/api.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1237,6 +1237,48 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1237
1237
|
options: localVarRequestOptions,
|
|
1238
1238
|
};
|
|
1239
1239
|
}),
|
|
1240
|
+
/**
|
|
1241
|
+
* Get webhook logs.
|
|
1242
|
+
* @param {string} webhookId
|
|
1243
|
+
* @param {number} [limit]
|
|
1244
|
+
* @param {number} [offset]
|
|
1245
|
+
* @param {*} [options] Override http request option.
|
|
1246
|
+
* @throws {RequiredError}
|
|
1247
|
+
*/
|
|
1248
|
+
v1GetWebhookLogs: (webhookId, limit, offset, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1249
|
+
// verify required parameter 'webhookId' is not null or undefined
|
|
1250
|
+
assertParamExists('v1GetWebhookLogs', 'webhookId', webhookId);
|
|
1251
|
+
const localVarPath = `/v1/communications/webhook-logs`;
|
|
1252
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1253
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1254
|
+
let baseOptions;
|
|
1255
|
+
if (configuration) {
|
|
1256
|
+
baseOptions = configuration.baseOptions;
|
|
1257
|
+
}
|
|
1258
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1259
|
+
const localVarHeaderParameter = {};
|
|
1260
|
+
const localVarQueryParameter = {};
|
|
1261
|
+
// authentication Roles required
|
|
1262
|
+
// authentication BearerToken required
|
|
1263
|
+
// http bearer authentication required
|
|
1264
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1265
|
+
if (webhookId !== undefined) {
|
|
1266
|
+
localVarQueryParameter['webhookId'] = webhookId;
|
|
1267
|
+
}
|
|
1268
|
+
if (limit !== undefined) {
|
|
1269
|
+
localVarQueryParameter['limit'] = limit;
|
|
1270
|
+
}
|
|
1271
|
+
if (offset !== undefined) {
|
|
1272
|
+
localVarQueryParameter['offset'] = offset;
|
|
1273
|
+
}
|
|
1274
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1275
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1276
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1277
|
+
return {
|
|
1278
|
+
url: toPathString(localVarUrlObj),
|
|
1279
|
+
options: localVarRequestOptions,
|
|
1280
|
+
};
|
|
1281
|
+
}),
|
|
1240
1282
|
/**
|
|
1241
1283
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1242
1284
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -1690,6 +1732,20 @@ export const DefaultApiFp = function (configuration) {
|
|
|
1690
1732
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1691
1733
|
});
|
|
1692
1734
|
},
|
|
1735
|
+
/**
|
|
1736
|
+
* Get webhook logs.
|
|
1737
|
+
* @param {string} webhookId
|
|
1738
|
+
* @param {number} [limit]
|
|
1739
|
+
* @param {number} [offset]
|
|
1740
|
+
* @param {*} [options] Override http request option.
|
|
1741
|
+
* @throws {RequiredError}
|
|
1742
|
+
*/
|
|
1743
|
+
v1GetWebhookLogs(webhookId, limit, offset, options) {
|
|
1744
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1745
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetWebhookLogs(webhookId, limit, offset, options);
|
|
1746
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1747
|
+
});
|
|
1748
|
+
},
|
|
1693
1749
|
/**
|
|
1694
1750
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
1695
1751
|
* @param {V1UpdateEmailConfigurationRequest} v1UpdateEmailConfigurationRequest
|
|
@@ -1999,6 +2055,15 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1999
2055
|
v1GetWebhookConfigurations(options) {
|
|
2000
2056
|
return localVarFp.v1GetWebhookConfigurations(options).then((request) => request(axios, basePath));
|
|
2001
2057
|
},
|
|
2058
|
+
/**
|
|
2059
|
+
* Get webhook logs.
|
|
2060
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2061
|
+
* @param {*} [options] Override http request option.
|
|
2062
|
+
* @throws {RequiredError}
|
|
2063
|
+
*/
|
|
2064
|
+
v1GetWebhookLogs(requestParameters, options) {
|
|
2065
|
+
return localVarFp.v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(axios, basePath));
|
|
2066
|
+
},
|
|
2002
2067
|
/**
|
|
2003
2068
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2004
2069
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
|
@@ -2333,6 +2398,16 @@ export class DefaultApi extends BaseAPI {
|
|
|
2333
2398
|
v1GetWebhookConfigurations(options) {
|
|
2334
2399
|
return DefaultApiFp(this.configuration).v1GetWebhookConfigurations(options).then((request) => request(this.axios, this.basePath));
|
|
2335
2400
|
}
|
|
2401
|
+
/**
|
|
2402
|
+
* Get webhook logs.
|
|
2403
|
+
* @param {DefaultApiV1GetWebhookLogsRequest} requestParameters Request parameters.
|
|
2404
|
+
* @param {*} [options] Override http request option.
|
|
2405
|
+
* @throws {RequiredError}
|
|
2406
|
+
* @memberof DefaultApi
|
|
2407
|
+
*/
|
|
2408
|
+
v1GetWebhookLogs(requestParameters, options) {
|
|
2409
|
+
return DefaultApiFp(this.configuration).v1GetWebhookLogs(requestParameters.webhookId, requestParameters.limit, requestParameters.offset, options).then((request) => request(this.axios, this.basePath));
|
|
2410
|
+
}
|
|
2336
2411
|
/**
|
|
2337
2412
|
* Update your organization email communication preferences. This will overwrite any existing preferences. This communication preference is meant as an audit log, it is a fire hose of all events. The schemas are not considered stable and may change at any time. If you are looking for machine to machine communication, please use webhooks.
|
|
2338
2413
|
* @param {DefaultApiV1UpdateEmailConfigurationRequest} requestParameters Request parameters.
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
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
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OurSky SDA
|
|
3
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* OurSky SDA
|
|
6
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* OurSky SDA
|
|
5
|
-
* The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/
|
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.3.3787
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|