@aws-sdk/client-gamesparks
Advanced tools
Comparing version 3.409.0 to 3.410.0
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.resolveRuntimeExtensions = void 0; | ||
const protocol_http_1 = require("@smithy/protocol-http"); | ||
const smithy_client_1 = require("@smithy/smithy-client"); | ||
@@ -9,2 +10,3 @@ const asPartial = (t) => t; | ||
...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)), | ||
...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)), | ||
}; | ||
@@ -15,4 +17,5 @@ extensions.forEach((extension) => extension.configure(extensionConfiguration)); | ||
...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), | ||
...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), | ||
}; | ||
}; | ||
exports.resolveRuntimeExtensions = resolveRuntimeExtensions; |
@@ -0,1 +1,2 @@ | ||
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http"; | ||
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; | ||
@@ -6,2 +7,3 @@ const asPartial = (t) => t; | ||
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), | ||
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), | ||
}; | ||
@@ -12,3 +14,4 @@ extensions.forEach((extension) => extension.configure(extensionConfiguration)); | ||
...resolveDefaultRuntimeConfig(extensionConfiguration), | ||
...resolveHttpHandlerRuntimeConfig(extensionConfiguration), | ||
}; | ||
}; |
@@ -0,1 +1,2 @@ | ||
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; | ||
import { DefaultExtensionConfiguration } from "@smithy/types"; | ||
@@ -5,3 +6,3 @@ /** | ||
*/ | ||
export interface GameSparksExtensionConfiguration extends DefaultExtensionConfiguration { | ||
export interface GameSparksExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration { | ||
} |
@@ -14,3 +14,6 @@ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; | ||
region: string | import("@smithy/types").Provider<any>; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | RequestHandler; | ||
retryMode: string | import("@smithy/types").Provider<string>; | ||
@@ -17,0 +20,0 @@ sha256: import("@smithy/types").HashConstructor; |
@@ -14,3 +14,6 @@ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; | ||
region: string | import("@smithy/types").Provider<string>; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | RequestHandler; | ||
retryMode: string | import("@smithy/types").Provider<string>; | ||
@@ -17,0 +20,0 @@ sha256: import("@smithy/types").HashConstructor; |
@@ -8,3 +8,6 @@ import { GameSparksClientConfig } from "./GameSparksClient"; | ||
sha256: import("@smithy/types").HashConstructor; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@smithy/fetch-http-handler").FetchHttpHandler; | ||
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | import("@smithy/fetch-http-handler").FetchHttpHandler; | ||
apiVersion: string; | ||
@@ -11,0 +14,0 @@ urlParser: import("@smithy/types").UrlParser; |
@@ -6,3 +6,3 @@ import { GameSparksExtensionConfiguration } from "./extensionConfiguration"; | ||
export interface RuntimeExtension { | ||
configure(clientConfiguration: GameSparksExtensionConfiguration): void; | ||
configure(extensionConfiguration: GameSparksExtensionConfiguration): void; | ||
} | ||
@@ -9,0 +9,0 @@ /** |
@@ -0,3 +1,5 @@ | ||
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; | ||
import { DefaultExtensionConfiguration } from "@smithy/types"; | ||
export interface GameSparksExtensionConfiguration | ||
extends DefaultExtensionConfiguration {} | ||
extends HttpHandlerExtensionConfiguration, | ||
DefaultExtensionConfiguration {} |
@@ -23,3 +23,10 @@ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; | ||
> & | ||
import("@smithy/protocol-http").HttpHandler) | ||
import("@smithy/types").RequestHandler< | ||
import("@smithy/protocol-http").HttpRequest, | ||
import("@smithy/protocol-http").HttpResponse, | ||
import("@smithy/types").HttpHandlerOptions | ||
> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | ||
| RequestHandler; | ||
@@ -26,0 +33,0 @@ retryMode: string | import("@smithy/types").Provider<string>; |
@@ -23,3 +23,10 @@ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; | ||
> & | ||
import("@smithy/protocol-http").HttpHandler) | ||
import("@smithy/types").RequestHandler< | ||
import("@smithy/protocol-http").HttpRequest, | ||
import("@smithy/protocol-http").HttpResponse, | ||
import("@smithy/types").HttpHandlerOptions | ||
> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | ||
| RequestHandler; | ||
@@ -26,0 +33,0 @@ retryMode: string | import("@smithy/types").Provider<string>; |
@@ -11,3 +11,10 @@ import { GameSparksClientConfig } from "./GameSparksClient"; | ||
> & | ||
import("@smithy/protocol-http").HttpHandler) | ||
import("@smithy/types").RequestHandler< | ||
import("@smithy/protocol-http").HttpRequest, | ||
import("@smithy/protocol-http").HttpResponse, | ||
import("@smithy/types").HttpHandlerOptions | ||
> & { | ||
updateHttpClientConfig(key: never, value: never): void; | ||
httpHandlerConfigs(): {}; | ||
}) | ||
| import("@smithy/fetch-http-handler").FetchHttpHandler; | ||
@@ -14,0 +21,0 @@ apiVersion: string; |
import { GameSparksExtensionConfiguration } from "./extensionConfiguration"; | ||
export interface RuntimeExtension { | ||
configure(clientConfiguration: GameSparksExtensionConfiguration): void; | ||
configure(extensionConfiguration: GameSparksExtensionConfiguration): void; | ||
} | ||
@@ -5,0 +5,0 @@ export interface RuntimeExtensionsConfig { |
{ | ||
"name": "@aws-sdk/client-gamesparks", | ||
"description": "AWS SDK for JavaScript Gamesparks Client for Node.js, Browser and React Native", | ||
"version": "3.409.0", | ||
"version": "3.410.0", | ||
"scripts": { | ||
@@ -24,33 +24,33 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"@aws-crypto/sha256-js": "3.0.0", | ||
"@aws-sdk/client-sts": "3.409.0", | ||
"@aws-sdk/credential-provider-node": "3.409.0", | ||
"@aws-sdk/middleware-host-header": "3.408.0", | ||
"@aws-sdk/middleware-logger": "3.408.0", | ||
"@aws-sdk/middleware-recursion-detection": "3.408.0", | ||
"@aws-sdk/middleware-signing": "3.408.0", | ||
"@aws-sdk/middleware-user-agent": "3.408.0", | ||
"@aws-sdk/types": "3.408.0", | ||
"@aws-sdk/util-endpoints": "3.408.0", | ||
"@aws-sdk/util-user-agent-browser": "3.408.0", | ||
"@aws-sdk/util-user-agent-node": "3.408.0", | ||
"@smithy/config-resolver": "^2.0.5", | ||
"@smithy/fetch-http-handler": "^2.0.5", | ||
"@smithy/hash-node": "^2.0.5", | ||
"@smithy/invalid-dependency": "^2.0.5", | ||
"@smithy/middleware-content-length": "^2.0.5", | ||
"@smithy/middleware-endpoint": "^2.0.5", | ||
"@smithy/middleware-retry": "^2.0.5", | ||
"@smithy/middleware-serde": "^2.0.5", | ||
"@aws-sdk/client-sts": "3.410.0", | ||
"@aws-sdk/credential-provider-node": "3.410.0", | ||
"@aws-sdk/middleware-host-header": "3.410.0", | ||
"@aws-sdk/middleware-logger": "3.410.0", | ||
"@aws-sdk/middleware-recursion-detection": "3.410.0", | ||
"@aws-sdk/middleware-signing": "3.410.0", | ||
"@aws-sdk/middleware-user-agent": "3.410.0", | ||
"@aws-sdk/types": "3.410.0", | ||
"@aws-sdk/util-endpoints": "3.410.0", | ||
"@aws-sdk/util-user-agent-browser": "3.410.0", | ||
"@aws-sdk/util-user-agent-node": "3.410.0", | ||
"@smithy/config-resolver": "^2.0.7", | ||
"@smithy/fetch-http-handler": "^2.1.2", | ||
"@smithy/hash-node": "^2.0.6", | ||
"@smithy/invalid-dependency": "^2.0.6", | ||
"@smithy/middleware-content-length": "^2.0.8", | ||
"@smithy/middleware-endpoint": "^2.0.6", | ||
"@smithy/middleware-retry": "^2.0.9", | ||
"@smithy/middleware-serde": "^2.0.6", | ||
"@smithy/middleware-stack": "^2.0.0", | ||
"@smithy/node-config-provider": "^2.0.6", | ||
"@smithy/node-http-handler": "^2.0.5", | ||
"@smithy/protocol-http": "^2.0.5", | ||
"@smithy/smithy-client": "^2.0.5", | ||
"@smithy/types": "^2.2.2", | ||
"@smithy/url-parser": "^2.0.5", | ||
"@smithy/node-config-provider": "^2.0.9", | ||
"@smithy/node-http-handler": "^2.1.2", | ||
"@smithy/protocol-http": "^3.0.2", | ||
"@smithy/smithy-client": "^2.1.3", | ||
"@smithy/types": "^2.3.0", | ||
"@smithy/url-parser": "^2.0.6", | ||
"@smithy/util-base64": "^2.0.0", | ||
"@smithy/util-body-length-browser": "^2.0.0", | ||
"@smithy/util-body-length-node": "^2.1.0", | ||
"@smithy/util-defaults-mode-browser": "^2.0.6", | ||
"@smithy/util-defaults-mode-node": "^2.0.6", | ||
"@smithy/util-defaults-mode-browser": "^2.0.7", | ||
"@smithy/util-defaults-mode-node": "^2.0.9", | ||
"@smithy/util-retry": "^2.0.0", | ||
@@ -57,0 +57,0 @@ "@smithy/util-utf8": "^2.0.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
807555
18856
+ Added@aws-sdk/client-sso@3.410.0(transitive)
+ Added@aws-sdk/client-sts@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-env@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-ini@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-node@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-process@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-sso@3.410.0(transitive)
+ Added@aws-sdk/credential-provider-web-identity@3.410.0(transitive)
+ Added@aws-sdk/middleware-host-header@3.410.0(transitive)
+ Added@aws-sdk/middleware-logger@3.410.0(transitive)
+ Added@aws-sdk/middleware-recursion-detection@3.410.0(transitive)
+ Added@aws-sdk/middleware-sdk-sts@3.410.0(transitive)
+ Added@aws-sdk/middleware-signing@3.410.0(transitive)
+ Added@aws-sdk/middleware-user-agent@3.410.0(transitive)
+ Added@aws-sdk/token-providers@3.410.0(transitive)
+ Added@aws-sdk/types@3.410.0(transitive)
+ Added@aws-sdk/util-endpoints@3.410.0(transitive)
+ Added@aws-sdk/util-user-agent-browser@3.410.0(transitive)
+ Added@aws-sdk/util-user-agent-node@3.410.0(transitive)
- Removed@aws-sdk/client-sso@3.409.0(transitive)
- Removed@aws-sdk/client-sts@3.409.0(transitive)
- Removed@aws-sdk/credential-provider-env@3.408.0(transitive)
- Removed@aws-sdk/credential-provider-ini@3.409.0(transitive)
- Removed@aws-sdk/credential-provider-node@3.409.0(transitive)
- Removed@aws-sdk/credential-provider-process@3.408.0(transitive)
- Removed@aws-sdk/credential-provider-sso@3.409.0(transitive)
- Removed@aws-sdk/credential-provider-web-identity@3.408.0(transitive)
- Removed@aws-sdk/middleware-host-header@3.408.0(transitive)
- Removed@aws-sdk/middleware-logger@3.408.0(transitive)
- Removed@aws-sdk/middleware-recursion-detection@3.408.0(transitive)
- Removed@aws-sdk/middleware-sdk-sts@3.408.0(transitive)
- Removed@aws-sdk/middleware-signing@3.408.0(transitive)
- Removed@aws-sdk/middleware-user-agent@3.408.0(transitive)
- Removed@aws-sdk/token-providers@3.408.0(transitive)
- Removed@aws-sdk/types@3.408.0(transitive)
- Removed@aws-sdk/util-endpoints@3.408.0(transitive)
- Removed@aws-sdk/util-user-agent-browser@3.408.0(transitive)
- Removed@aws-sdk/util-user-agent-node@3.408.0(transitive)
- Removed@smithy/protocol-http@2.0.5(transitive)
Updated@aws-sdk/client-sts@3.410.0
Updated@aws-sdk/types@3.410.0
Updated@smithy/hash-node@^2.0.6
Updated@smithy/protocol-http@^3.0.2
Updated@smithy/smithy-client@^2.1.3
Updated@smithy/types@^2.3.0
Updated@smithy/url-parser@^2.0.6