@ourskyai/sda-api 1.3.2584 → 1.3.2816

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/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2584
8
+ * The version of the OpenAPI document: 1.3.2816
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.TrackingType = exports.ShutterType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.MountType = exports.FilterType = void 0;
25
+ exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.WebhookEvent = exports.WebhookAuthType = exports.TrackingType = exports.ShutterType = exports.SatelliteTargetTrackingStatus = exports.OrbitType = exports.MountType = exports.FilterType = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -107,7 +107,17 @@ exports.TrackingType = {
107
107
  TARGET_RATE: 'TARGET_RATE'
108
108
  };
109
109
  /**
110
- *
110
+ * Authorization mechanism required for webhook endpoint, if any. Use `NONE` if not required.
111
+ * @export
112
+ * @enum {string}
113
+ */
114
+ exports.WebhookAuthType = {
115
+ NONE: 'NONE',
116
+ BASIC: 'BASIC',
117
+ BEARER: 'BEARER'
118
+ };
119
+ /**
120
+ * Webhook events that can be subscribed to. For `EO_OBSERVATION` events, please refer to the Unified Data Library for the full schema.
111
121
  * @export
112
122
  * @enum {string}
113
123
  */
@@ -117,7 +127,8 @@ exports.WebhookEvent = {
117
127
  V1_OBSERVATION_CREATED: 'V1_OBSERVATION_CREATED',
118
128
  V1_IMAGE_CREATED: 'V1_IMAGE_CREATED',
119
129
  V1_STREAK_CREATED: 'V1_STREAK_CREATED',
120
- V1_SATELLITE_TARGET_TRACKING_DEACTIVATED: 'V1_SATELLITE_TARGET_TRACKING_DEACTIVATED'
130
+ V1_SATELLITE_TARGET_TRACKING_DEACTIVATED: 'V1_SATELLITE_TARGET_TRACKING_DEACTIVATED',
131
+ V1_EO_OBSERVATION_CREATED: 'V1_EO_OBSERVATION_CREATED'
121
132
  };
122
133
  /**
123
134
  * DefaultApi - axios parameter creator
@@ -291,7 +302,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
291
302
  };
292
303
  }),
293
304
  /**
294
- * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
305
+ * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
295
306
  * @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
296
307
  * @param {*} [options] Override http request option.
297
308
  * @throws {RequiredError}
@@ -623,6 +634,40 @@ const DefaultApiAxiosParamCreator = function (configuration) {
623
634
  options: localVarRequestOptions,
624
635
  };
625
636
  }),
637
+ /**
638
+ * Get observation features.
639
+ * @param {string} imageId
640
+ * @param {*} [options] Override http request option.
641
+ * @throws {RequiredError}
642
+ */
643
+ v1GetObservationFeatures: (imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
644
+ // verify required parameter 'imageId' is not null or undefined
645
+ (0, common_1.assertParamExists)('v1GetObservationFeatures', 'imageId', imageId);
646
+ const localVarPath = `/v1/observation-features`;
647
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
648
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
649
+ let baseOptions;
650
+ if (configuration) {
651
+ baseOptions = configuration.baseOptions;
652
+ }
653
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
654
+ const localVarHeaderParameter = {};
655
+ const localVarQueryParameter = {};
656
+ // authentication Roles required
657
+ // authentication BearerToken required
658
+ // http bearer authentication required
659
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
660
+ if (imageId !== undefined) {
661
+ localVarQueryParameter['imageId'] = imageId;
662
+ }
663
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
664
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
665
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
666
+ return {
667
+ url: (0, common_1.toPathString)(localVarUrlObj),
668
+ options: localVarRequestOptions,
669
+ };
670
+ }),
626
671
  /**
627
672
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
628
673
  * @param {string} [targetId]
@@ -661,6 +706,48 @@ const DefaultApiAxiosParamCreator = function (configuration) {
661
706
  options: localVarRequestOptions,
662
707
  };
663
708
  }),
709
+ /**
710
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
711
+ * @param {string} [targetId]
712
+ * @param {string} [before]
713
+ * @param {string} [searchInstructionId]
714
+ * @param {*} [options] Override http request option.
715
+ * @throws {RequiredError}
716
+ */
717
+ v1GetObservationStatuses: (targetId, before, searchInstructionId, options = {}) => __awaiter(this, void 0, void 0, function* () {
718
+ const localVarPath = `/v1/observation-statuses`;
719
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
720
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
721
+ let baseOptions;
722
+ if (configuration) {
723
+ baseOptions = configuration.baseOptions;
724
+ }
725
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
726
+ const localVarHeaderParameter = {};
727
+ const localVarQueryParameter = {};
728
+ // authentication Roles required
729
+ // authentication BearerToken required
730
+ // http bearer authentication required
731
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
732
+ if (targetId !== undefined) {
733
+ localVarQueryParameter['targetId'] = targetId;
734
+ }
735
+ if (before !== undefined) {
736
+ localVarQueryParameter['before'] = (before instanceof Date) ?
737
+ before.toISOString() :
738
+ before;
739
+ }
740
+ if (searchInstructionId !== undefined) {
741
+ localVarQueryParameter['searchInstructionId'] = searchInstructionId;
742
+ }
743
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
744
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
745
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
746
+ return {
747
+ url: (0, common_1.toPathString)(localVarUrlObj),
748
+ options: localVarRequestOptions,
749
+ };
750
+ }),
664
751
  /**
665
752
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
666
753
  * @param {*} [options] Override http request option.
@@ -1004,7 +1091,7 @@ const DefaultApiFp = function (configuration) {
1004
1091
  });
1005
1092
  },
1006
1093
  /**
1007
- * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
1094
+ * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
1008
1095
  * @param {V1UpdateWebhookConfigurationRequest} v1UpdateWebhookConfigurationRequest
1009
1096
  * @param {*} [options] Override http request option.
1010
1097
  * @throws {RequiredError}
@@ -1122,6 +1209,18 @@ const DefaultApiFp = function (configuration) {
1122
1209
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1123
1210
  });
1124
1211
  },
1212
+ /**
1213
+ * Get observation features.
1214
+ * @param {string} imageId
1215
+ * @param {*} [options] Override http request option.
1216
+ * @throws {RequiredError}
1217
+ */
1218
+ v1GetObservationFeatures(imageId, options) {
1219
+ return __awaiter(this, void 0, void 0, function* () {
1220
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationFeatures(imageId, options);
1221
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1222
+ });
1223
+ },
1125
1224
  /**
1126
1225
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1127
1226
  * @param {string} [targetId]
@@ -1135,6 +1234,20 @@ const DefaultApiFp = function (configuration) {
1135
1234
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1136
1235
  });
1137
1236
  },
1237
+ /**
1238
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1239
+ * @param {string} [targetId]
1240
+ * @param {string} [before]
1241
+ * @param {string} [searchInstructionId]
1242
+ * @param {*} [options] Override http request option.
1243
+ * @throws {RequiredError}
1244
+ */
1245
+ v1GetObservationStatuses(targetId, before, searchInstructionId, options) {
1246
+ return __awaiter(this, void 0, void 0, function* () {
1247
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, options);
1248
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1249
+ });
1250
+ },
1138
1251
  /**
1139
1252
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1140
1253
  * @param {*} [options] Override http request option.
@@ -1288,7 +1401,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1288
1401
  return localVarFp.v1CreateSearchTask(requestParameters.v1CreateSearchTaskRequest, options).then((request) => request(axios, basePath));
1289
1402
  },
1290
1403
  /**
1291
- * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
1404
+ * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
1292
1405
  * @param {DefaultApiV1CreateWebhookConfigurationRequest} requestParameters Request parameters.
1293
1406
  * @param {*} [options] Override http request option.
1294
1407
  * @throws {RequiredError}
@@ -1376,6 +1489,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1376
1489
  v1GetNodeProperties(requestParameters, options) {
1377
1490
  return localVarFp.v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(axios, basePath));
1378
1491
  },
1492
+ /**
1493
+ * Get observation features.
1494
+ * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
1495
+ * @param {*} [options] Override http request option.
1496
+ * @throws {RequiredError}
1497
+ */
1498
+ v1GetObservationFeatures(requestParameters, options) {
1499
+ return localVarFp.v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(axios, basePath));
1500
+ },
1379
1501
  /**
1380
1502
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1381
1503
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1385,6 +1507,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1385
1507
  v1GetObservationSequenceResults(requestParameters = {}, options) {
1386
1508
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
1387
1509
  },
1510
+ /**
1511
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1512
+ * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
1513
+ * @param {*} [options] Override http request option.
1514
+ * @throws {RequiredError}
1515
+ */
1516
+ v1GetObservationStatuses(requestParameters = {}, options) {
1517
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, options).then((request) => request(axios, basePath));
1518
+ },
1388
1519
  /**
1389
1520
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1390
1521
  * @param {*} [options] Override http request option.
@@ -1516,7 +1647,7 @@ class DefaultApi extends base_1.BaseAPI {
1516
1647
  return (0, exports.DefaultApiFp)(this.configuration).v1CreateSearchTask(requestParameters.v1CreateSearchTaskRequest, options).then((request) => request(this.axios, this.basePath));
1517
1648
  }
1518
1649
  /**
1519
- * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> GET /v1/tdm?id={id} The payload sent to the webhook endpoint will include a header field \"X-OurSky-Signature\" which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded.
1650
+ * Create an organization webhook. Organization webhooks are used to send specific events to a remote http endpoint. A webhook can be configured for a list of event type. Please see the webhook event types for the currently supported types. The schemas are considered stable and will match their corresponding GET response schema. \"V1_TDM_CREATED\" -> `GET /v1/tdm?id={id}` For the `V1_EO_OBSERVATION_CREATED` event, please refer to the UDL API schema reference found at https://unifieddatalibrary.com The payload sent to the webhook endpoint will include a header field `\"X-OurSky-Signature\"` which is an HMAC-SHA256 using the secret as the key and the payload as the message. The payload is the byte stream of the entire JSON payload The signature is base64 encoded. If your webhook endpoint requires authorization, use the `authType` and `authorization` parameters to ensure we can reach your servers. Basic authorizations headers should already be base64 encoded.
1520
1651
  * @param {DefaultApiV1CreateWebhookConfigurationRequest} requestParameters Request parameters.
1521
1652
  * @param {*} [options] Override http request option.
1522
1653
  * @throws {RequiredError}
@@ -1614,6 +1745,16 @@ class DefaultApi extends base_1.BaseAPI {
1614
1745
  v1GetNodeProperties(requestParameters, options) {
1615
1746
  return (0, exports.DefaultApiFp)(this.configuration).v1GetNodeProperties(requestParameters.nodeId, options).then((request) => request(this.axios, this.basePath));
1616
1747
  }
1748
+ /**
1749
+ * Get observation features.
1750
+ * @param {DefaultApiV1GetObservationFeaturesRequest} requestParameters Request parameters.
1751
+ * @param {*} [options] Override http request option.
1752
+ * @throws {RequiredError}
1753
+ * @memberof DefaultApi
1754
+ */
1755
+ v1GetObservationFeatures(requestParameters, options) {
1756
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationFeatures(requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
1757
+ }
1617
1758
  /**
1618
1759
  * Get all observation sequence results for a specific target or all for an organization. This response is paginated. It will only return at most 5 at a time. To get the next page, pass in the `created_at` timestamp of the last observation sequence in the current page as the `after` query parameter. Omitting this field uses the current time as the `after` timestamp.
1619
1760
  * @param {DefaultApiV1GetObservationSequenceResultsRequest} requestParameters Request parameters.
@@ -1624,6 +1765,16 @@ class DefaultApi extends base_1.BaseAPI {
1624
1765
  v1GetObservationSequenceResults(requestParameters = {}, options) {
1625
1766
  return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
1626
1767
  }
1768
+ /**
1769
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId` or by a specific `searchInstructionId`. By default `before` is set to the current time and returns 20 results with `observationTime` less than `before`. To paginate through responses, pass the earliest timestamp in the previous response as the `before` parameter. When searching by `searchInstructionId`, a `before` timestamp is not required.
1770
+ * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
1771
+ * @param {*} [options] Override http request option.
1772
+ * @throws {RequiredError}
1773
+ * @memberof DefaultApi
1774
+ */
1775
+ v1GetObservationStatuses(requestParameters = {}, options) {
1776
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, options).then((request) => request(this.axios, this.basePath));
1777
+ }
1627
1778
  /**
1628
1779
  * Get organization targets see the [create](#operation/v1CreateOrganizationTarget) endpoint for more details.
1629
1780
  * @param {*} [options] Override http request option.
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2584
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2584
8
+ * The version of the OpenAPI document: 1.3.2816
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2584
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2584
8
+ * The version of the OpenAPI document: 1.3.2816
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.2584
5
+ * The version of the OpenAPI document: 1.3.2816
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/[get]/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/[get]/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/[post]/v1/communications/webhook) endpoint to receive TDMs automatically (preferred) or use the [tdms](#tag/tdms/[get]/v1/tdms) endpoint to poll for TDMs.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.2584
8
+ * The version of the OpenAPI document: 1.3.2816
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).