@aws-sdk/client-appsync 3.946.0 → 3.948.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.
|
@@ -1636,7 +1636,6 @@ export var UpdateSourceApiAssociationResponse = [
|
|
|
1636
1636
|
export var UpdateTypeRequest = [3, n0, _UTR, 0, [_aI, _tN, _def, _f], [[0, 1], [0, 1], 0, 0]];
|
|
1637
1637
|
export var UpdateTypeResponse = [3, n0, _UTRp, 0, [_ty], [() => Type]];
|
|
1638
1638
|
export var UserPoolConfig = [3, n0, _UPC, 0, [_uPI, _aR, _dA, _aICR], [0, 0, 0, 0]];
|
|
1639
|
-
export var __Unit = "unit";
|
|
1640
1639
|
export var AppSyncServiceException = [-3, _sm, "AppSyncServiceException", 0, [], []];
|
|
1641
1640
|
TypeRegistry.for(_sm).registerError(AppSyncServiceException, __AppSyncServiceException);
|
|
1642
1641
|
export var AdditionalAuthenticationProviders = [
|
|
@@ -936,7 +936,7 @@ export interface CreateApiRequest {
|
|
|
936
936
|
* connecting, publishing, and subscribing to an Event API.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
eventConfig
|
|
939
|
+
eventConfig: EventConfig | undefined;
|
|
940
940
|
}
|
|
941
941
|
/**
|
|
942
942
|
* @public
|
|
@@ -4458,7 +4458,7 @@ export interface UpdateApiRequest {
|
|
|
4458
4458
|
* connecting, publishing, and subscribing to an Event API.</p>
|
|
4459
4459
|
* @public
|
|
4460
4460
|
*/
|
|
4461
|
-
eventConfig
|
|
4461
|
+
eventConfig: EventConfig | undefined;
|
|
4462
4462
|
}
|
|
4463
4463
|
/**
|
|
4464
4464
|
* @public
|
|
@@ -217,7 +217,6 @@ export declare var UpdateSourceApiAssociationResponse: StaticStructureSchema;
|
|
|
217
217
|
export declare var UpdateTypeRequest: StaticStructureSchema;
|
|
218
218
|
export declare var UpdateTypeResponse: StaticStructureSchema;
|
|
219
219
|
export declare var UserPoolConfig: StaticStructureSchema;
|
|
220
|
-
export declare var __Unit: "unit";
|
|
221
220
|
export declare var AppSyncServiceException: StaticErrorSchema;
|
|
222
221
|
export declare var AdditionalAuthenticationProviders: StaticListSchema;
|
|
223
222
|
export declare var ApiKeys: StaticListSchema;
|
|
@@ -183,7 +183,7 @@ export interface CreateApiRequest {
|
|
|
183
183
|
name: string | undefined;
|
|
184
184
|
ownerContact?: string | undefined;
|
|
185
185
|
tags?: Record<string, string> | undefined;
|
|
186
|
-
eventConfig
|
|
186
|
+
eventConfig: EventConfig | undefined;
|
|
187
187
|
}
|
|
188
188
|
export interface CreateApiResponse {
|
|
189
189
|
api?: Api | undefined;
|
|
@@ -881,7 +881,7 @@ export interface UpdateApiRequest {
|
|
|
881
881
|
apiId: string | undefined;
|
|
882
882
|
name: string | undefined;
|
|
883
883
|
ownerContact?: string | undefined;
|
|
884
|
-
eventConfig
|
|
884
|
+
eventConfig: EventConfig | undefined;
|
|
885
885
|
}
|
|
886
886
|
export interface UpdateApiResponse {
|
|
887
887
|
api?: Api | undefined;
|
|
@@ -222,7 +222,6 @@ export declare var UpdateSourceApiAssociationResponse: StaticStructureSchema;
|
|
|
222
222
|
export declare var UpdateTypeRequest: StaticStructureSchema;
|
|
223
223
|
export declare var UpdateTypeResponse: StaticStructureSchema;
|
|
224
224
|
export declare var UserPoolConfig: StaticStructureSchema;
|
|
225
|
-
export declare var __Unit: "unit";
|
|
226
225
|
export declare var AppSyncServiceException: StaticErrorSchema;
|
|
227
226
|
export declare var AdditionalAuthenticationProviders: StaticListSchema;
|
|
228
227
|
export declare var ApiKeys: StaticListSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appsync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.948.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-appsync",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/core": "3.947.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.948.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.948.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.947.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
31
31
|
"@aws-sdk/types": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.947.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
36
|
"@smithy/core": "^3.18.7",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|