@ourskyai/sda-api 1.3.8459 → 1.3.8639

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @ourskyai/sda-api@1.3.8459
1
+ ## @ourskyai/sda-api@1.3.8639
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.8459 --save
39
+ npm install @ourskyai/sda-api@1.3.8639 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -537,11 +537,17 @@ export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeR
537
537
  */
538
538
  export interface V1CreateDirectTaskInstructionRequest {
539
539
  /**
540
- * NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
540
+ * NET time after which the instruction can be executed (expressed in UTC). If null, the instruction can be executed immediately.
541
541
  * @type {string}
542
542
  * @memberof V1CreateDirectTaskInstructionRequest
543
543
  */
544
544
  'executableAfter'?: string;
545
+ /**
546
+ * Latest time the instruction can be executed (expressed in UTC). If null, the instruction will not have an expiration.
547
+ * @type {string}
548
+ * @memberof V1CreateDirectTaskInstructionRequest
549
+ */
550
+ 'executableUntil'?: string;
545
551
  /**
546
552
  *
547
553
  * @type {string}
@@ -1590,11 +1596,11 @@ export interface V1ObservationSequenceResultImageSetsInner {
1590
1596
  */
1591
1597
  export interface V1ObservationStatus {
1592
1598
  /**
1593
- *
1599
+ * The ID of the observation, null if the observation has not happened yet
1594
1600
  * @type {string}
1595
1601
  * @memberof V1ObservationStatus
1596
1602
  */
1597
- 'id': string;
1603
+ 'observationId'?: string;
1598
1604
  /**
1599
1605
  *
1600
1606
  * @type {string}
@@ -1608,41 +1614,41 @@ export interface V1ObservationStatus {
1608
1614
  */
1609
1615
  'trackingType'?: TrackingType;
1610
1616
  /**
1611
- *
1617
+ * The expected RA at the time of the observation, null if the observation has not happened yet
1612
1618
  * @type {number}
1613
1619
  * @memberof V1ObservationStatus
1614
1620
  */
1615
- 'ra': number;
1621
+ 'ra'?: number;
1616
1622
  /**
1617
- *
1623
+ * The expected Dec at the time of the observation, null if the observation has not happened yet
1618
1624
  * @type {number}
1619
1625
  * @memberof V1ObservationStatus
1620
1626
  */
1621
- 'dec': number;
1627
+ 'dec'?: number;
1622
1628
  /**
1623
- *
1629
+ * Time the observation was executed at, null if the observation has not happened yet
1624
1630
  * @type {string}
1625
1631
  * @memberof V1ObservationStatus
1626
1632
  */
1627
- 'observationTime': string;
1633
+ 'observationTime'?: string;
1628
1634
  /**
1629
- * TLE line 1 of when the observation was tasked
1635
+ * TLE line 1 of when the observation was tasked, null if the observation has not happened yet
1630
1636
  * @type {string}
1631
1637
  * @memberof V1ObservationStatus
1632
1638
  */
1633
- 'tleLine1': string;
1639
+ 'tleLine1'?: string;
1634
1640
  /**
1635
- * TLE line 2 of when the observation was tasked
1641
+ * TLE line 2 of when the observation was tasked, null if the observation has not happened yet
1636
1642
  * @type {string}
1637
1643
  * @memberof V1ObservationStatus
1638
1644
  */
1639
- 'tleLine2': string;
1645
+ 'tleLine2'?: string;
1640
1646
  /**
1641
- *
1647
+ * TLE Epoch of when the observation was tasked, null if the observation has not happened yet
1642
1648
  * @type {string}
1643
1649
  * @memberof V1ObservationStatus
1644
1650
  */
1645
- 'tleEpoch': string;
1651
+ 'tleEpoch'?: string;
1646
1652
  /**
1647
1653
  *
1648
1654
  * @type {string}
@@ -1672,7 +1678,25 @@ export interface V1ObservationStatus {
1672
1678
  * @type {string}
1673
1679
  * @memberof V1ObservationStatus
1674
1680
  */
1681
+ 'directTaskId'?: string;
1682
+ /**
1683
+ * The time the observation was completed in our system, null if the observation has not happened yet
1684
+ * @type {string}
1685
+ * @memberof V1ObservationStatus
1686
+ */
1675
1687
  'completedAt'?: string;
1688
+ /**
1689
+ * The time the instruction was scheduled for, if applicable (direct tasked instructions only)
1690
+ * @type {string}
1691
+ * @memberof V1ObservationStatus
1692
+ */
1693
+ 'scheduledAt'?: string;
1694
+ /**
1695
+ * The time the instruction was valid until, if applicable (direct tasked instructions only)
1696
+ * @type {string}
1697
+ * @memberof V1ObservationStatus
1698
+ */
1699
+ 'validUntil'?: string;
1676
1700
  /**
1677
1701
  *
1678
1702
  * @type {ObservationState}
@@ -4478,17 +4502,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4478
4502
  };
4479
4503
  },
4480
4504
  /**
4481
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
4505
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
4482
4506
  * @param {string} [targetId]
4483
4507
  * @param {string} [before]
4484
4508
  * @param {string} [searchInstructionId]
4485
4509
  * @param {string} [surveyInstructionId]
4486
4510
  * @param {string} [resolvedImageInstructionId]
4511
+ * @param {string} [directTaskId]
4487
4512
  * @param {string} [imageId]
4488
4513
  * @param {*} [options] Override http request option.
4489
4514
  * @throws {RequiredError}
4490
4515
  */
4491
- v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4516
+ v1GetObservationStatuses: async (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4492
4517
  const localVarPath = `/v1/observation-statuses`;
4493
4518
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4494
4519
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4529,6 +4554,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4529
4554
  localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
4530
4555
  }
4531
4556
 
4557
+ if (directTaskId !== undefined) {
4558
+ localVarQueryParameter['directTaskId'] = directTaskId;
4559
+ }
4560
+
4532
4561
  if (imageId !== undefined) {
4533
4562
  localVarQueryParameter['imageId'] = imageId;
4534
4563
  }
@@ -5915,18 +5944,19 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5915
5944
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5916
5945
  },
5917
5946
  /**
5918
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
5947
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
5919
5948
  * @param {string} [targetId]
5920
5949
  * @param {string} [before]
5921
5950
  * @param {string} [searchInstructionId]
5922
5951
  * @param {string} [surveyInstructionId]
5923
5952
  * @param {string} [resolvedImageInstructionId]
5953
+ * @param {string} [directTaskId]
5924
5954
  * @param {string} [imageId]
5925
5955
  * @param {*} [options] Override http request option.
5926
5956
  * @throws {RequiredError}
5927
5957
  */
5928
- async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
5929
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
5958
+ async v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>> {
5959
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options);
5930
5960
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5931
5961
  },
5932
5962
  /**
@@ -6454,13 +6484,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6454
6484
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
6455
6485
  },
6456
6486
  /**
6457
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
6487
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
6458
6488
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
6459
6489
  * @param {*} [options] Override http request option.
6460
6490
  * @throws {RequiredError}
6461
6491
  */
6462
6492
  v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationStatus>> {
6463
- return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
6493
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(axios, basePath));
6464
6494
  },
6465
6495
  /**
6466
6496
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -7140,6 +7170,13 @@ export interface DefaultApiV1GetObservationStatusesRequest {
7140
7170
  */
7141
7171
  readonly resolvedImageInstructionId?: string
7142
7172
 
7173
+ /**
7174
+ *
7175
+ * @type {string}
7176
+ * @memberof DefaultApiV1GetObservationStatuses
7177
+ */
7178
+ readonly directTaskId?: string
7179
+
7143
7180
  /**
7144
7181
  *
7145
7182
  * @type {string}
@@ -7882,14 +7919,14 @@ export class DefaultApi extends BaseAPI {
7882
7919
  }
7883
7920
 
7884
7921
  /**
7885
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
7922
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
7886
7923
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
7887
7924
  * @param {*} [options] Override http request option.
7888
7925
  * @throws {RequiredError}
7889
7926
  * @memberof DefaultApi
7890
7927
  */
7891
7928
  public v1GetObservationStatuses(requestParameters: DefaultApiV1GetObservationStatusesRequest = {}, options?: AxiosRequestConfig) {
7892
- return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
7929
+ return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
7893
7930
  }
7894
7931
 
7895
7932
  /**
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -488,11 +488,17 @@ export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeR
488
488
  */
489
489
  export interface V1CreateDirectTaskInstructionRequest {
490
490
  /**
491
- * NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
491
+ * NET time after which the instruction can be executed (expressed in UTC). If null, the instruction can be executed immediately.
492
492
  * @type {string}
493
493
  * @memberof V1CreateDirectTaskInstructionRequest
494
494
  */
495
495
  'executableAfter'?: string;
496
+ /**
497
+ * Latest time the instruction can be executed (expressed in UTC). If null, the instruction will not have an expiration.
498
+ * @type {string}
499
+ * @memberof V1CreateDirectTaskInstructionRequest
500
+ */
501
+ 'executableUntil'?: string;
496
502
  /**
497
503
  *
498
504
  * @type {string}
@@ -1521,11 +1527,11 @@ export interface V1ObservationSequenceResultImageSetsInner {
1521
1527
  */
1522
1528
  export interface V1ObservationStatus {
1523
1529
  /**
1524
- *
1530
+ * The ID of the observation, null if the observation has not happened yet
1525
1531
  * @type {string}
1526
1532
  * @memberof V1ObservationStatus
1527
1533
  */
1528
- 'id': string;
1534
+ 'observationId'?: string;
1529
1535
  /**
1530
1536
  *
1531
1537
  * @type {string}
@@ -1539,41 +1545,41 @@ export interface V1ObservationStatus {
1539
1545
  */
1540
1546
  'trackingType'?: TrackingType;
1541
1547
  /**
1542
- *
1548
+ * The expected RA at the time of the observation, null if the observation has not happened yet
1543
1549
  * @type {number}
1544
1550
  * @memberof V1ObservationStatus
1545
1551
  */
1546
- 'ra': number;
1552
+ 'ra'?: number;
1547
1553
  /**
1548
- *
1554
+ * The expected Dec at the time of the observation, null if the observation has not happened yet
1549
1555
  * @type {number}
1550
1556
  * @memberof V1ObservationStatus
1551
1557
  */
1552
- 'dec': number;
1558
+ 'dec'?: number;
1553
1559
  /**
1554
- *
1560
+ * Time the observation was executed at, null if the observation has not happened yet
1555
1561
  * @type {string}
1556
1562
  * @memberof V1ObservationStatus
1557
1563
  */
1558
- 'observationTime': string;
1564
+ 'observationTime'?: string;
1559
1565
  /**
1560
- * TLE line 1 of when the observation was tasked
1566
+ * TLE line 1 of when the observation was tasked, null if the observation has not happened yet
1561
1567
  * @type {string}
1562
1568
  * @memberof V1ObservationStatus
1563
1569
  */
1564
- 'tleLine1': string;
1570
+ 'tleLine1'?: string;
1565
1571
  /**
1566
- * TLE line 2 of when the observation was tasked
1572
+ * TLE line 2 of when the observation was tasked, null if the observation has not happened yet
1567
1573
  * @type {string}
1568
1574
  * @memberof V1ObservationStatus
1569
1575
  */
1570
- 'tleLine2': string;
1576
+ 'tleLine2'?: string;
1571
1577
  /**
1572
- *
1578
+ * TLE Epoch of when the observation was tasked, null if the observation has not happened yet
1573
1579
  * @type {string}
1574
1580
  * @memberof V1ObservationStatus
1575
1581
  */
1576
- 'tleEpoch': string;
1582
+ 'tleEpoch'?: string;
1577
1583
  /**
1578
1584
  *
1579
1585
  * @type {string}
@@ -1603,7 +1609,25 @@ export interface V1ObservationStatus {
1603
1609
  * @type {string}
1604
1610
  * @memberof V1ObservationStatus
1605
1611
  */
1612
+ 'directTaskId'?: string;
1613
+ /**
1614
+ * The time the observation was completed in our system, null if the observation has not happened yet
1615
+ * @type {string}
1616
+ * @memberof V1ObservationStatus
1617
+ */
1606
1618
  'completedAt'?: string;
1619
+ /**
1620
+ * The time the instruction was scheduled for, if applicable (direct tasked instructions only)
1621
+ * @type {string}
1622
+ * @memberof V1ObservationStatus
1623
+ */
1624
+ 'scheduledAt'?: string;
1625
+ /**
1626
+ * The time the instruction was valid until, if applicable (direct tasked instructions only)
1627
+ * @type {string}
1628
+ * @memberof V1ObservationStatus
1629
+ */
1630
+ 'validUntil'?: string;
1607
1631
  /**
1608
1632
  *
1609
1633
  * @type {ObservationState}
@@ -3357,17 +3381,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3357
3381
  */
3358
3382
  v1GetObservationSequenceResults: (targetId?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3359
3383
  /**
3360
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3384
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3361
3385
  * @param {string} [targetId]
3362
3386
  * @param {string} [before]
3363
3387
  * @param {string} [searchInstructionId]
3364
3388
  * @param {string} [surveyInstructionId]
3365
3389
  * @param {string} [resolvedImageInstructionId]
3390
+ * @param {string} [directTaskId]
3366
3391
  * @param {string} [imageId]
3367
3392
  * @param {*} [options] Override http request option.
3368
3393
  * @throws {RequiredError}
3369
3394
  */
3370
- v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3395
+ v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3371
3396
  /**
3372
3397
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
3373
3398
  * @param {string} until
@@ -3763,17 +3788,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3763
3788
  */
3764
3789
  v1GetObservationSequenceResults(targetId?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationSequenceResult>>>;
3765
3790
  /**
3766
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3791
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3767
3792
  * @param {string} [targetId]
3768
3793
  * @param {string} [before]
3769
3794
  * @param {string} [searchInstructionId]
3770
3795
  * @param {string} [surveyInstructionId]
3771
3796
  * @param {string} [resolvedImageInstructionId]
3797
+ * @param {string} [directTaskId]
3772
3798
  * @param {string} [imageId]
3773
3799
  * @param {*} [options] Override http request option.
3774
3800
  * @throws {RequiredError}
3775
3801
  */
3776
- v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
3802
+ v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
3777
3803
  /**
3778
3804
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
3779
3805
  * @param {string} until
@@ -4165,7 +4191,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4165
4191
  */
4166
4192
  v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationSequenceResult>>;
4167
4193
  /**
4168
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
4194
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
4169
4195
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
4170
4196
  * @param {*} [options] Override http request option.
4171
4197
  * @throws {RequiredError}
@@ -4762,6 +4788,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
4762
4788
  * @memberof DefaultApiV1GetObservationStatuses
4763
4789
  */
4764
4790
  readonly resolvedImageInstructionId?: string;
4791
+ /**
4792
+ *
4793
+ * @type {string}
4794
+ * @memberof DefaultApiV1GetObservationStatuses
4795
+ */
4796
+ readonly directTaskId?: string;
4765
4797
  /**
4766
4798
  *
4767
4799
  * @type {string}
@@ -5380,7 +5412,7 @@ export declare class DefaultApi extends BaseAPI {
5380
5412
  */
5381
5413
  v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationSequenceResult[], any>>;
5382
5414
  /**
5383
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
5415
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
5384
5416
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
5385
5417
  * @param {*} [options] Override http request option.
5386
5418
  * @throws {RequiredError}
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8459
8
+ * The version of the OpenAPI document: 1.3.8639
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1238,17 +1238,18 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1238
1238
  };
1239
1239
  }),
1240
1240
  /**
1241
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
1241
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
1242
1242
  * @param {string} [targetId]
1243
1243
  * @param {string} [before]
1244
1244
  * @param {string} [searchInstructionId]
1245
1245
  * @param {string} [surveyInstructionId]
1246
1246
  * @param {string} [resolvedImageInstructionId]
1247
+ * @param {string} [directTaskId]
1247
1248
  * @param {string} [imageId]
1248
1249
  * @param {*} [options] Override http request option.
1249
1250
  * @throws {RequiredError}
1250
1251
  */
1251
- v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1252
+ v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1252
1253
  const localVarPath = `/v1/observation-statuses`;
1253
1254
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1254
1255
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1280,6 +1281,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1280
1281
  if (resolvedImageInstructionId !== undefined) {
1281
1282
  localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
1282
1283
  }
1284
+ if (directTaskId !== undefined) {
1285
+ localVarQueryParameter['directTaskId'] = directTaskId;
1286
+ }
1283
1287
  if (imageId !== undefined) {
1284
1288
  localVarQueryParameter['imageId'] = imageId;
1285
1289
  }
@@ -2516,19 +2520,20 @@ const DefaultApiFp = function (configuration) {
2516
2520
  });
2517
2521
  },
2518
2522
  /**
2519
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
2523
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
2520
2524
  * @param {string} [targetId]
2521
2525
  * @param {string} [before]
2522
2526
  * @param {string} [searchInstructionId]
2523
2527
  * @param {string} [surveyInstructionId]
2524
2528
  * @param {string} [resolvedImageInstructionId]
2529
+ * @param {string} [directTaskId]
2525
2530
  * @param {string} [imageId]
2526
2531
  * @param {*} [options] Override http request option.
2527
2532
  * @throws {RequiredError}
2528
2533
  */
2529
- v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options) {
2534
+ v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options) {
2530
2535
  return __awaiter(this, void 0, void 0, function* () {
2531
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
2536
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options);
2532
2537
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2533
2538
  });
2534
2539
  },
@@ -3105,13 +3110,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3105
3110
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
3106
3111
  },
3107
3112
  /**
3108
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3113
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3109
3114
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
3110
3115
  * @param {*} [options] Override http request option.
3111
3116
  * @throws {RequiredError}
3112
3117
  */
3113
3118
  v1GetObservationStatuses(requestParameters = {}, options) {
3114
- return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
3119
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(axios, basePath));
3115
3120
  },
3116
3121
  /**
3117
3122
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -3629,14 +3634,14 @@ class DefaultApi extends base_1.BaseAPI {
3629
3634
  return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
3630
3635
  }
3631
3636
  /**
3632
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3637
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3633
3638
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
3634
3639
  * @param {*} [options] Override http request option.
3635
3640
  * @throws {RequiredError}
3636
3641
  * @memberof DefaultApi
3637
3642
  */
3638
3643
  v1GetObservationStatuses(requestParameters = {}, options) {
3639
- return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
3644
+ return (0, exports.DefaultApiFp)(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
3640
3645
  }
3641
3646
  /**
3642
3647
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8459
8
+ * The version of the OpenAPI document: 1.3.8639
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8459
8
+ * The version of the OpenAPI document: 1.3.8639
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8459
8
+ * The version of the OpenAPI document: 1.3.8639
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -488,11 +488,17 @@ export type V1BlackoutVolumeRequestReferenceFrameEnum = typeof V1BlackoutVolumeR
488
488
  */
489
489
  export interface V1CreateDirectTaskInstructionRequest {
490
490
  /**
491
- * NET time after which the instruction can be executed. If null, the instruction can be executed immediately.
491
+ * NET time after which the instruction can be executed (expressed in UTC). If null, the instruction can be executed immediately.
492
492
  * @type {string}
493
493
  * @memberof V1CreateDirectTaskInstructionRequest
494
494
  */
495
495
  'executableAfter'?: string;
496
+ /**
497
+ * Latest time the instruction can be executed (expressed in UTC). If null, the instruction will not have an expiration.
498
+ * @type {string}
499
+ * @memberof V1CreateDirectTaskInstructionRequest
500
+ */
501
+ 'executableUntil'?: string;
496
502
  /**
497
503
  *
498
504
  * @type {string}
@@ -1521,11 +1527,11 @@ export interface V1ObservationSequenceResultImageSetsInner {
1521
1527
  */
1522
1528
  export interface V1ObservationStatus {
1523
1529
  /**
1524
- *
1530
+ * The ID of the observation, null if the observation has not happened yet
1525
1531
  * @type {string}
1526
1532
  * @memberof V1ObservationStatus
1527
1533
  */
1528
- 'id': string;
1534
+ 'observationId'?: string;
1529
1535
  /**
1530
1536
  *
1531
1537
  * @type {string}
@@ -1539,41 +1545,41 @@ export interface V1ObservationStatus {
1539
1545
  */
1540
1546
  'trackingType'?: TrackingType;
1541
1547
  /**
1542
- *
1548
+ * The expected RA at the time of the observation, null if the observation has not happened yet
1543
1549
  * @type {number}
1544
1550
  * @memberof V1ObservationStatus
1545
1551
  */
1546
- 'ra': number;
1552
+ 'ra'?: number;
1547
1553
  /**
1548
- *
1554
+ * The expected Dec at the time of the observation, null if the observation has not happened yet
1549
1555
  * @type {number}
1550
1556
  * @memberof V1ObservationStatus
1551
1557
  */
1552
- 'dec': number;
1558
+ 'dec'?: number;
1553
1559
  /**
1554
- *
1560
+ * Time the observation was executed at, null if the observation has not happened yet
1555
1561
  * @type {string}
1556
1562
  * @memberof V1ObservationStatus
1557
1563
  */
1558
- 'observationTime': string;
1564
+ 'observationTime'?: string;
1559
1565
  /**
1560
- * TLE line 1 of when the observation was tasked
1566
+ * TLE line 1 of when the observation was tasked, null if the observation has not happened yet
1561
1567
  * @type {string}
1562
1568
  * @memberof V1ObservationStatus
1563
1569
  */
1564
- 'tleLine1': string;
1570
+ 'tleLine1'?: string;
1565
1571
  /**
1566
- * TLE line 2 of when the observation was tasked
1572
+ * TLE line 2 of when the observation was tasked, null if the observation has not happened yet
1567
1573
  * @type {string}
1568
1574
  * @memberof V1ObservationStatus
1569
1575
  */
1570
- 'tleLine2': string;
1576
+ 'tleLine2'?: string;
1571
1577
  /**
1572
- *
1578
+ * TLE Epoch of when the observation was tasked, null if the observation has not happened yet
1573
1579
  * @type {string}
1574
1580
  * @memberof V1ObservationStatus
1575
1581
  */
1576
- 'tleEpoch': string;
1582
+ 'tleEpoch'?: string;
1577
1583
  /**
1578
1584
  *
1579
1585
  * @type {string}
@@ -1603,7 +1609,25 @@ export interface V1ObservationStatus {
1603
1609
  * @type {string}
1604
1610
  * @memberof V1ObservationStatus
1605
1611
  */
1612
+ 'directTaskId'?: string;
1613
+ /**
1614
+ * The time the observation was completed in our system, null if the observation has not happened yet
1615
+ * @type {string}
1616
+ * @memberof V1ObservationStatus
1617
+ */
1606
1618
  'completedAt'?: string;
1619
+ /**
1620
+ * The time the instruction was scheduled for, if applicable (direct tasked instructions only)
1621
+ * @type {string}
1622
+ * @memberof V1ObservationStatus
1623
+ */
1624
+ 'scheduledAt'?: string;
1625
+ /**
1626
+ * The time the instruction was valid until, if applicable (direct tasked instructions only)
1627
+ * @type {string}
1628
+ * @memberof V1ObservationStatus
1629
+ */
1630
+ 'validUntil'?: string;
1607
1631
  /**
1608
1632
  *
1609
1633
  * @type {ObservationState}
@@ -3357,17 +3381,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3357
3381
  */
3358
3382
  v1GetObservationSequenceResults: (targetId?: string, after?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3359
3383
  /**
3360
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3384
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3361
3385
  * @param {string} [targetId]
3362
3386
  * @param {string} [before]
3363
3387
  * @param {string} [searchInstructionId]
3364
3388
  * @param {string} [surveyInstructionId]
3365
3389
  * @param {string} [resolvedImageInstructionId]
3390
+ * @param {string} [directTaskId]
3366
3391
  * @param {string} [imageId]
3367
3392
  * @param {*} [options] Override http request option.
3368
3393
  * @throws {RequiredError}
3369
3394
  */
3370
- v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3395
+ v1GetObservationStatuses: (targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3371
3396
  /**
3372
3397
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
3373
3398
  * @param {string} until
@@ -3763,17 +3788,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3763
3788
  */
3764
3789
  v1GetObservationSequenceResults(targetId?: string, after?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationSequenceResult>>>;
3765
3790
  /**
3766
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3791
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3767
3792
  * @param {string} [targetId]
3768
3793
  * @param {string} [before]
3769
3794
  * @param {string} [searchInstructionId]
3770
3795
  * @param {string} [surveyInstructionId]
3771
3796
  * @param {string} [resolvedImageInstructionId]
3797
+ * @param {string} [directTaskId]
3772
3798
  * @param {string} [imageId]
3773
3799
  * @param {*} [options] Override http request option.
3774
3800
  * @throws {RequiredError}
3775
3801
  */
3776
- v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
3802
+ v1GetObservationStatuses(targetId?: string, before?: string, searchInstructionId?: string, surveyInstructionId?: string, resolvedImageInstructionId?: string, directTaskId?: string, imageId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V1ObservationStatus>>>;
3777
3803
  /**
3778
3804
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
3779
3805
  * @param {string} until
@@ -4165,7 +4191,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4165
4191
  */
4166
4192
  v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<V1ObservationSequenceResult>>;
4167
4193
  /**
4168
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
4194
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
4169
4195
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
4170
4196
  * @param {*} [options] Override http request option.
4171
4197
  * @throws {RequiredError}
@@ -4762,6 +4788,12 @@ export interface DefaultApiV1GetObservationStatusesRequest {
4762
4788
  * @memberof DefaultApiV1GetObservationStatuses
4763
4789
  */
4764
4790
  readonly resolvedImageInstructionId?: string;
4791
+ /**
4792
+ *
4793
+ * @type {string}
4794
+ * @memberof DefaultApiV1GetObservationStatuses
4795
+ */
4796
+ readonly directTaskId?: string;
4765
4797
  /**
4766
4798
  *
4767
4799
  * @type {string}
@@ -5380,7 +5412,7 @@ export declare class DefaultApi extends BaseAPI {
5380
5412
  */
5381
5413
  v1GetObservationSequenceResults(requestParameters?: DefaultApiV1GetObservationSequenceResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<V1ObservationSequenceResult[], any>>;
5382
5414
  /**
5383
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
5415
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
5384
5416
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
5385
5417
  * @param {*} [options] Override http request option.
5386
5418
  * @throws {RequiredError}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1235,17 +1235,18 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1235
1235
  };
1236
1236
  }),
1237
1237
  /**
1238
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
1238
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
1239
1239
  * @param {string} [targetId]
1240
1240
  * @param {string} [before]
1241
1241
  * @param {string} [searchInstructionId]
1242
1242
  * @param {string} [surveyInstructionId]
1243
1243
  * @param {string} [resolvedImageInstructionId]
1244
+ * @param {string} [directTaskId]
1244
1245
  * @param {string} [imageId]
1245
1246
  * @param {*} [options] Override http request option.
1246
1247
  * @throws {RequiredError}
1247
1248
  */
1248
- v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1249
+ v1GetObservationStatuses: (targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1249
1250
  const localVarPath = `/v1/observation-statuses`;
1250
1251
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1251
1252
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -1277,6 +1278,9 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
1277
1278
  if (resolvedImageInstructionId !== undefined) {
1278
1279
  localVarQueryParameter['resolvedImageInstructionId'] = resolvedImageInstructionId;
1279
1280
  }
1281
+ if (directTaskId !== undefined) {
1282
+ localVarQueryParameter['directTaskId'] = directTaskId;
1283
+ }
1280
1284
  if (imageId !== undefined) {
1281
1285
  localVarQueryParameter['imageId'] = imageId;
1282
1286
  }
@@ -2512,19 +2516,20 @@ export const DefaultApiFp = function (configuration) {
2512
2516
  });
2513
2517
  },
2514
2518
  /**
2515
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
2519
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
2516
2520
  * @param {string} [targetId]
2517
2521
  * @param {string} [before]
2518
2522
  * @param {string} [searchInstructionId]
2519
2523
  * @param {string} [surveyInstructionId]
2520
2524
  * @param {string} [resolvedImageInstructionId]
2525
+ * @param {string} [directTaskId]
2521
2526
  * @param {string} [imageId]
2522
2527
  * @param {*} [options] Override http request option.
2523
2528
  * @throws {RequiredError}
2524
2529
  */
2525
- v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options) {
2530
+ v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options) {
2526
2531
  return __awaiter(this, void 0, void 0, function* () {
2527
- const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, imageId, options);
2532
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1GetObservationStatuses(targetId, before, searchInstructionId, surveyInstructionId, resolvedImageInstructionId, directTaskId, imageId, options);
2528
2533
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2529
2534
  });
2530
2535
  },
@@ -3100,13 +3105,13 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
3100
3105
  return localVarFp.v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(axios, basePath));
3101
3106
  },
3102
3107
  /**
3103
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3108
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3104
3109
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
3105
3110
  * @param {*} [options] Override http request option.
3106
3111
  * @throws {RequiredError}
3107
3112
  */
3108
3113
  v1GetObservationStatuses(requestParameters = {}, options) {
3109
- return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(axios, basePath));
3114
+ return localVarFp.v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(axios, basePath));
3110
3115
  },
3111
3116
  /**
3112
3117
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -3623,14 +3628,14 @@ export class DefaultApi extends BaseAPI {
3623
3628
  return DefaultApiFp(this.configuration).v1GetObservationSequenceResults(requestParameters.targetId, requestParameters.after, options).then((request) => request(this.axios, this.basePath));
3624
3629
  }
3625
3630
  /**
3626
- * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, by `searchInstructionId`, or by `surveyInstructionId`. 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` or `surveyInstructionId`, a `before` timestamp is not required.
3631
+ * Get the status of observations tasked on our network either for an entire organization, by a specific `targetId`, `searchInstructionId`, `directTaskId`, or by `surveyInstructionId`. 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`, `directTaskId`, or `surveyInstructionId`, a `before` timestamp is not required.
3627
3632
  * @param {DefaultApiV1GetObservationStatusesRequest} requestParameters Request parameters.
3628
3633
  * @param {*} [options] Override http request option.
3629
3634
  * @throws {RequiredError}
3630
3635
  * @memberof DefaultApi
3631
3636
  */
3632
3637
  v1GetObservationStatuses(requestParameters = {}, options) {
3633
- return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
3638
+ return DefaultApiFp(this.configuration).v1GetObservationStatuses(requestParameters.targetId, requestParameters.before, requestParameters.searchInstructionId, requestParameters.surveyInstructionId, requestParameters.resolvedImageInstructionId, requestParameters.directTaskId, requestParameters.imageId, options).then((request) => request(this.axios, this.basePath));
3634
3639
  }
3635
3640
  /**
3636
3641
  * Get potential observation windows for all satellites of your organization across the network from now until the `until` datetime
@@ -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 OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * OurSky SDA
3
3
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
4
4
  *
5
- * The version of the OpenAPI document: 1.3.8459
5
+ * The version of the OpenAPI document: 1.3.8639
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * OurSky SDA
6
6
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
7
7
  *
8
- * The version of the OpenAPI document: 1.3.8459
8
+ * The version of the OpenAPI document: 1.3.8639
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * OurSky SDA
5
5
  * The basic flow for a new organization is as follows: 1. View the available satellite targets with the [satellite targets](#tag/satellite-targets/GET/v1/satellite-targets) endpoint. Copy the id of the target you want to observe. 2. Create an organization target with the [organization target](#tag/organization-targets/GET/v1/organization-targets) endpoint. Use the id copied from above. 3. Create a webhook with the [webhook](#tag/webhooks/POST/v1/communications/webhook) endpoint to receive OSRs automatically (preferred) or use the [OSRs](#tag/observation-sequence-results/GET/v1/observation-sequence-results) endpoint to poll for OSRs. Check out our [examples](https://github.com/ourskyai/oursky-examples) repository to see usage in each language.
6
6
  *
7
- * The version of the OpenAPI document: 1.3.8459
7
+ * The version of the OpenAPI document: 1.3.8639
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourskyai/sda-api",
3
- "version": "1.3.8459",
3
+ "version": "1.3.8639",
4
4
  "description": "OpenAPI client for @ourskyai/sda-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {