@aws-sdk/client-gamelift 3.1000.0 → 3.1002.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/README.md +7 -0
- package/dist-cjs/index.js +30 -0
- package/dist-cjs/schemas/schemas_0.js +75 -24
- package/dist-es/GameLift.js +2 -0
- package/dist-es/commands/GetPlayerConnectionDetailsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +69 -18
- package/dist-types/GameLift.d.ts +7 -0
- package/dist-types/GameLiftClient.d.ts +3 -2
- package/dist-types/commands/CreateContainerFleetCommand.d.ts +3 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +9 -0
- package/dist-types/commands/CreateFleetLocationsCommand.d.ts +1 -0
- package/dist-types/commands/CreateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFleetLocationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContainerFleetCommand.d.ts +2 -0
- package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +5 -1
- package/dist-types/commands/DescribeFleetLocationAttributesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGameSessionPlacementCommand.d.ts +4 -1
- package/dist-types/commands/DescribeGameSessionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMatchmakingCommand.d.ts +1 -0
- package/dist-types/commands/GetPlayerConnectionDetailsCommand.d.ts +126 -0
- package/dist-types/commands/ListContainerFleetsCommand.d.ts +2 -0
- package/dist-types/commands/SearchGameSessionsCommand.d.ts +9 -1
- package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +1 -0
- package/dist-types/commands/StartMatchBackfillCommand.d.ts +1 -0
- package/dist-types/commands/StartMatchmakingCommand.d.ts +1 -0
- package/dist-types/commands/StopGameSessionPlacementCommand.d.ts +1 -0
- package/dist-types/commands/TerminateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateContainerFleetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFleetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateGameSessionCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +37 -0
- package/dist-types/models/models_0.d.ts +293 -173
- package/dist-types/models/models_1.d.ts +182 -3
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/GameLift.d.ts +17 -0
- package/dist-types/ts3.4/GameLiftClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetPlayerConnectionDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFleetAttributesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFleetCapacityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -32
- package/dist-types/ts3.4/models/models_1.d.ts +36 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-gamelift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1002.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-gamelift",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.17",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.16",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.17",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
33
33
|
"@aws-sdk/types": "^3.973.4",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.2",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.9",
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
+
"@smithy/core": "^3.23.7",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.3.12",
|
|
40
40
|
"@smithy/hash-node": "^4.2.10",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.10",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.10",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.21",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.38",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.11",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.10",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.10",
|
|
48
|
-
"@smithy/node-http-handler": "^4.4.
|
|
48
|
+
"@smithy/node-http-handler": "^4.4.13",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.10",
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
50
|
+
"@smithy/smithy-client": "^4.12.1",
|
|
51
51
|
"@smithy/types": "^4.13.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.10",
|
|
53
53
|
"@smithy/util-base64": "^4.3.1",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.1",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.2",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.37",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.40",
|
|
58
58
|
"@smithy/util-endpoints": "^3.3.1",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.10",
|
|
60
60
|
"@smithy/util-retry": "^4.2.10",
|