@aws-sdk/client-groundstation 3.540.0 → 3.549.0
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-cjs/index.js +6 -2
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +2 -0
- package/dist-types/commands/ListContactsCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +46 -4
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -1135,7 +1135,9 @@ var de_DescribeContactCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1135
1135
|
region: import_smithy_client.expectString,
|
|
1136
1136
|
satelliteArn: import_smithy_client.expectString,
|
|
1137
1137
|
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1138
|
-
tags: import_smithy_client._json
|
|
1138
|
+
tags: import_smithy_client._json,
|
|
1139
|
+
visibilityEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1140
|
+
visibilityStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1139
1141
|
});
|
|
1140
1142
|
Object.assign(contents, doc);
|
|
1141
1143
|
return contents;
|
|
@@ -1755,7 +1757,9 @@ var de_ContactData = /* @__PURE__ */ __name((output, context) => {
|
|
|
1755
1757
|
region: import_smithy_client.expectString,
|
|
1756
1758
|
satelliteArn: import_smithy_client.expectString,
|
|
1757
1759
|
startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1758
|
-
tags: import_smithy_client._json
|
|
1760
|
+
tags: import_smithy_client._json,
|
|
1761
|
+
visibilityEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1762
|
+
visibilityStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1759
1763
|
});
|
|
1760
1764
|
}, "de_ContactData");
|
|
1761
1765
|
var de_ContactList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -592,6 +592,8 @@ export const de_DescribeContactCommand = async (output, context) => {
|
|
|
592
592
|
satelliteArn: __expectString,
|
|
593
593
|
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
594
594
|
tags: _json,
|
|
595
|
+
visibilityEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
596
|
+
visibilityStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
595
597
|
});
|
|
596
598
|
Object.assign(contents, doc);
|
|
597
599
|
return contents;
|
|
@@ -1211,6 +1213,8 @@ const de_ContactData = (output, context) => {
|
|
|
1211
1213
|
satelliteArn: __expectString,
|
|
1212
1214
|
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1213
1215
|
tags: _json,
|
|
1216
|
+
visibilityEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1217
|
+
visibilityStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1214
1218
|
});
|
|
1215
1219
|
};
|
|
1216
1220
|
const de_ContactList = (output, context) => {
|
|
@@ -1516,6 +1516,26 @@ export interface DescribeContactResponse {
|
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
1518
|
dataflowList?: DataflowDetail[];
|
|
1519
|
+
/**
|
|
1520
|
+
* <p>
|
|
1521
|
+
* Projected time in UTC your satellite will rise above the
|
|
1522
|
+
* <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
|
|
1523
|
+
* This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
|
|
1524
|
+
* active during contact execution for completed contacts.
|
|
1525
|
+
* </p>
|
|
1526
|
+
* @public
|
|
1527
|
+
*/
|
|
1528
|
+
visibilityStartTime?: Date;
|
|
1529
|
+
/**
|
|
1530
|
+
* <p>
|
|
1531
|
+
* Projected time in UTC your satellite will set below the
|
|
1532
|
+
* <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
|
|
1533
|
+
* This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
|
|
1534
|
+
* active during contact execution for completed contacts.
|
|
1535
|
+
* </p>
|
|
1536
|
+
* @public
|
|
1537
|
+
*/
|
|
1538
|
+
visibilityEndTime?: Date;
|
|
1519
1539
|
}
|
|
1520
1540
|
/**
|
|
1521
1541
|
* <p/>
|
|
@@ -1633,6 +1653,28 @@ export interface ContactData {
|
|
|
1633
1653
|
* @public
|
|
1634
1654
|
*/
|
|
1635
1655
|
tags?: Record<string, string>;
|
|
1656
|
+
/**
|
|
1657
|
+
* <p>
|
|
1658
|
+
* Projected time in UTC your satellite will rise above the
|
|
1659
|
+
* <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
|
|
1660
|
+
* This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
|
|
1661
|
+
* active during contact execution for completed contacts.
|
|
1662
|
+
* <i>This field is not present for contacts with a <code>SCHEDULING</code> or <code>SCHEDULED</code> status.</i>
|
|
1663
|
+
* </p>
|
|
1664
|
+
* @public
|
|
1665
|
+
*/
|
|
1666
|
+
visibilityStartTime?: Date;
|
|
1667
|
+
/**
|
|
1668
|
+
* <p>
|
|
1669
|
+
* Projected time in UTC your satellite will set below the
|
|
1670
|
+
* <a href="https://docs.aws.amazon.com/ground-station/latest/ug/site-masks.html">receive mask</a>.
|
|
1671
|
+
* This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was
|
|
1672
|
+
* active during contact execution for completed contacts.
|
|
1673
|
+
* <i>This field is not present for contacts with a <code>SCHEDULING</code> or <code>SCHEDULED</code> status.</i>
|
|
1674
|
+
* </p>
|
|
1675
|
+
* @public
|
|
1676
|
+
*/
|
|
1677
|
+
visibilityEndTime?: Date;
|
|
1636
1678
|
}
|
|
1637
1679
|
/**
|
|
1638
1680
|
* <p/>
|
|
@@ -1980,12 +2022,12 @@ export interface CreateMissionProfileRequest {
|
|
|
1980
2022
|
*/
|
|
1981
2023
|
name: string | undefined;
|
|
1982
2024
|
/**
|
|
1983
|
-
* <p>Amount of time prior to contact start you’d like to receive a
|
|
2025
|
+
* <p>Amount of time prior to contact start you’d like to receive a Ground Station Contact State Change event indicating an upcoming pass.</p>
|
|
1984
2026
|
* @public
|
|
1985
2027
|
*/
|
|
1986
2028
|
contactPrePassDurationSeconds?: number;
|
|
1987
2029
|
/**
|
|
1988
|
-
* <p>Amount of time after a contact ends that you’d like to receive a
|
|
2030
|
+
* <p>Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
1989
2031
|
* @public
|
|
1990
2032
|
*/
|
|
1991
2033
|
contactPostPassDurationSeconds?: number;
|
|
@@ -2814,12 +2856,12 @@ export interface UpdateMissionProfileRequest {
|
|
|
2814
2856
|
*/
|
|
2815
2857
|
name?: string;
|
|
2816
2858
|
/**
|
|
2817
|
-
* <p>Amount of time after a contact ends that you’d like to receive a
|
|
2859
|
+
* <p>Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
2818
2860
|
* @public
|
|
2819
2861
|
*/
|
|
2820
2862
|
contactPrePassDurationSeconds?: number;
|
|
2821
2863
|
/**
|
|
2822
|
-
* <p>Amount of time after a contact ends that you’d like to receive a
|
|
2864
|
+
* <p>Amount of time after a contact ends that you’d like to receive a Ground Station Contact State Change event indicating the pass has finished.</p>
|
|
2823
2865
|
* @public
|
|
2824
2866
|
*/
|
|
2825
2867
|
contactPostPassDurationSeconds?: number;
|
|
@@ -525,6 +525,8 @@ export interface DescribeContactResponse {
|
|
|
525
525
|
tags?: Record<string, string>;
|
|
526
526
|
region?: string;
|
|
527
527
|
dataflowList?: DataflowDetail[];
|
|
528
|
+
visibilityStartTime?: Date;
|
|
529
|
+
visibilityEndTime?: Date;
|
|
528
530
|
}
|
|
529
531
|
export interface ListContactsRequest {
|
|
530
532
|
maxResults?: number;
|
|
@@ -550,6 +552,8 @@ export interface ContactData {
|
|
|
550
552
|
maximumElevation?: Elevation;
|
|
551
553
|
region?: string;
|
|
552
554
|
tags?: Record<string, string>;
|
|
555
|
+
visibilityStartTime?: Date;
|
|
556
|
+
visibilityEndTime?: Date;
|
|
553
557
|
}
|
|
554
558
|
export interface ListContactsResponse {
|
|
555
559
|
nextToken?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-groundstation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.549.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-groundstation",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.549.0",
|
|
24
|
+
"@aws-sdk/core": "3.549.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.549.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
-
"@smithy/core": "^1.4.
|
|
36
|
+
"@smithy/core": "^1.4.1",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
38
|
"@smithy/hash-node": "^2.2.0",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
41
|
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
42
|
+
"@smithy/middleware-retry": "^2.3.0",
|
|
43
43
|
"@smithy/middleware-serde": "^2.3.0",
|
|
44
44
|
"@smithy/middleware-stack": "^2.2.0",
|
|
45
45
|
"@smithy/node-config-provider": "^2.3.0",
|