@aws-sdk/client-cognito-sync 3.428.0 → 3.429.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.
@@ -456,7 +456,7 @@ export interface GetBulkPublishDetailsResponse {
456
456
  * <p>SUCCEEDED - All data for the identity pool has been published to the configured stream</p>
457
457
  * <p>FAILED - Some portion of the data has failed to publish, check FailureMessage for the cause.</p>
458
458
  */
459
- BulkPublishStatus?: BulkPublishStatus | string;
459
+ BulkPublishStatus?: BulkPublishStatus;
460
460
  /**
461
461
  * @public
462
462
  * If BulkPublishStatus is FAILED this field will contain the error message that caused the bulk publish to fail.
@@ -530,7 +530,7 @@ export interface CognitoStreams {
530
530
  * <p>ENABLED - Streaming of updates to identity pool is enabled.</p>
531
531
  * <p>DISABLED - Streaming of updates to identity pool is disabled. Bulk publish will also fail if StreamingStatus is DISABLED.</p>
532
532
  */
533
- StreamingStatus?: StreamingStatus | string;
533
+ StreamingStatus?: StreamingStatus;
534
534
  }
535
535
  /**
536
536
  * @public
@@ -869,7 +869,7 @@ export interface RegisterDeviceRequest {
869
869
  * @public
870
870
  * <p>The SNS platform type (e.g. GCM, SDM, APNS, APNS_SANDBOX).</p>
871
871
  */
872
- Platform: Platform | string | undefined;
872
+ Platform: Platform | undefined;
873
873
  /**
874
874
  * @public
875
875
  * <p>The push token.</p>
@@ -1083,7 +1083,7 @@ export interface RecordPatch {
1083
1083
  * @public
1084
1084
  * An operation, either replace or remove.
1085
1085
  */
1086
- Op: Operation | string | undefined;
1086
+ Op: Operation | undefined;
1087
1087
  /**
1088
1088
  * @public
1089
1089
  * The key associated with the record patch.
@@ -128,7 +128,7 @@ export interface GetBulkPublishDetailsResponse {
128
128
  IdentityPoolId?: string;
129
129
  BulkPublishStartTime?: Date;
130
130
  BulkPublishCompleteTime?: Date;
131
- BulkPublishStatus?: BulkPublishStatus | string;
131
+ BulkPublishStatus?: BulkPublishStatus;
132
132
  FailureMessage?: string;
133
133
  }
134
134
  export interface GetCognitoEventsRequest {
@@ -149,7 +149,7 @@ export type StreamingStatus =
149
149
  export interface CognitoStreams {
150
150
  StreamName?: string;
151
151
  RoleArn?: string;
152
- StreamingStatus?: StreamingStatus | string;
152
+ StreamingStatus?: StreamingStatus;
153
153
  }
154
154
  export interface PushSync {
155
155
  ApplicationArns?: string[];
@@ -226,7 +226,7 @@ export type Platform = (typeof Platform)[keyof typeof Platform];
226
226
  export interface RegisterDeviceRequest {
227
227
  IdentityPoolId: string | undefined;
228
228
  IdentityId: string | undefined;
229
- Platform: Platform | string | undefined;
229
+ Platform: Platform | undefined;
230
230
  Token: string | undefined;
231
231
  }
232
232
  export interface RegisterDeviceResponse {
@@ -300,7 +300,7 @@ export declare const Operation: {
300
300
  };
301
301
  export type Operation = (typeof Operation)[keyof typeof Operation];
302
302
  export interface RecordPatch {
303
- Op: Operation | string | undefined;
303
+ Op: Operation | undefined;
304
304
  Key: string | undefined;
305
305
  Value?: string;
306
306
  SyncCount: number | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cognito-sync",
3
3
  "description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",