@aws-sdk/client-cognito-sync 3.296.0 → 3.298.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/commands/BulkPublishCommand.js +2 -3
- package/dist-cjs/commands/DeleteDatasetCommand.js +2 -3
- package/dist-cjs/commands/DescribeDatasetCommand.js +2 -3
- package/dist-cjs/commands/DescribeIdentityPoolUsageCommand.js +2 -3
- package/dist-cjs/commands/DescribeIdentityUsageCommand.js +2 -3
- package/dist-cjs/commands/GetBulkPublishDetailsCommand.js +2 -3
- package/dist-cjs/commands/GetCognitoEventsCommand.js +2 -3
- package/dist-cjs/commands/GetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -3
- package/dist-cjs/commands/ListIdentityPoolUsageCommand.js +2 -3
- package/dist-cjs/commands/ListRecordsCommand.js +2 -3
- package/dist-cjs/commands/RegisterDeviceCommand.js +2 -3
- package/dist-cjs/commands/SetCognitoEventsCommand.js +2 -3
- package/dist-cjs/commands/SetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-cjs/commands/SubscribeToDatasetCommand.js +2 -3
- package/dist-cjs/commands/UnsubscribeFromDatasetCommand.js +2 -3
- package/dist-cjs/commands/UpdateRecordsCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -162
- package/dist-es/commands/BulkPublishCommand.js +2 -3
- package/dist-es/commands/DeleteDatasetCommand.js +2 -3
- package/dist-es/commands/DescribeDatasetCommand.js +2 -3
- package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +2 -3
- package/dist-es/commands/DescribeIdentityUsageCommand.js +2 -3
- package/dist-es/commands/GetBulkPublishDetailsCommand.js +2 -3
- package/dist-es/commands/GetCognitoEventsCommand.js +2 -3
- package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-es/commands/ListDatasetsCommand.js +2 -3
- package/dist-es/commands/ListIdentityPoolUsageCommand.js +2 -3
- package/dist-es/commands/ListRecordsCommand.js +2 -3
- package/dist-es/commands/RegisterDeviceCommand.js +2 -3
- package/dist-es/commands/SetCognitoEventsCommand.js +2 -3
- package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +2 -3
- package/dist-es/commands/SubscribeToDatasetCommand.js +2 -3
- package/dist-es/commands/UnsubscribeFromDatasetCommand.js +2 -3
- package/dist-es/commands/UpdateRecordsCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -120
- package/dist-types/CognitoSync.d.ts +114 -96
- package/dist-types/CognitoSyncClient.d.ts +24 -4
- package/dist-types/commands/BulkPublishCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeIdentityPoolUsageCommand.d.ts +26 -10
- package/dist-types/commands/DescribeIdentityUsageCommand.d.ts +26 -10
- package/dist-types/commands/GetBulkPublishDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetCognitoEventsCommand.d.ts +16 -0
- package/dist-types/commands/GetIdentityPoolConfigurationCommand.d.ts +26 -10
- package/dist-types/commands/ListDatasetsCommand.d.ts +26 -10
- package/dist-types/commands/ListIdentityPoolUsageCommand.d.ts +28 -12
- package/dist-types/commands/ListRecordsCommand.d.ts +24 -8
- package/dist-types/commands/RegisterDeviceCommand.d.ts +24 -8
- package/dist-types/commands/SetCognitoEventsCommand.d.ts +16 -0
- package/dist-types/commands/SetIdentityPoolConfigurationCommand.d.ts +28 -12
- package/dist-types/commands/SubscribeToDatasetCommand.d.ts +24 -8
- package/dist-types/commands/UnsubscribeFromDatasetCommand.d.ts +24 -8
- package/dist-types/commands/UpdateRecordsCommand.d.ts +16 -0
- package/dist-types/models/CognitoSyncServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +67 -160
- package/dist-types/ts3.4/models/models_0.d.ts +0 -112
- package/package.json +4 -3
|
@@ -301,115 +301,3 @@ export interface UpdateRecordsRequest {
|
|
|
301
301
|
export interface UpdateRecordsResponse {
|
|
302
302
|
Records?: _Record[];
|
|
303
303
|
}
|
|
304
|
-
export declare const BulkPublishRequestFilterSensitiveLog: (
|
|
305
|
-
obj: BulkPublishRequest
|
|
306
|
-
) => any;
|
|
307
|
-
export declare const BulkPublishResponseFilterSensitiveLog: (
|
|
308
|
-
obj: BulkPublishResponse
|
|
309
|
-
) => any;
|
|
310
|
-
export declare const DeleteDatasetRequestFilterSensitiveLog: (
|
|
311
|
-
obj: DeleteDatasetRequest
|
|
312
|
-
) => any;
|
|
313
|
-
export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
|
|
314
|
-
export declare const DeleteDatasetResponseFilterSensitiveLog: (
|
|
315
|
-
obj: DeleteDatasetResponse
|
|
316
|
-
) => any;
|
|
317
|
-
export declare const DescribeDatasetRequestFilterSensitiveLog: (
|
|
318
|
-
obj: DescribeDatasetRequest
|
|
319
|
-
) => any;
|
|
320
|
-
export declare const DescribeDatasetResponseFilterSensitiveLog: (
|
|
321
|
-
obj: DescribeDatasetResponse
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const DescribeIdentityPoolUsageRequestFilterSensitiveLog: (
|
|
324
|
-
obj: DescribeIdentityPoolUsageRequest
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const IdentityPoolUsageFilterSensitiveLog: (
|
|
327
|
-
obj: IdentityPoolUsage
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const DescribeIdentityPoolUsageResponseFilterSensitiveLog: (
|
|
330
|
-
obj: DescribeIdentityPoolUsageResponse
|
|
331
|
-
) => any;
|
|
332
|
-
export declare const DescribeIdentityUsageRequestFilterSensitiveLog: (
|
|
333
|
-
obj: DescribeIdentityUsageRequest
|
|
334
|
-
) => any;
|
|
335
|
-
export declare const IdentityUsageFilterSensitiveLog: (
|
|
336
|
-
obj: IdentityUsage
|
|
337
|
-
) => any;
|
|
338
|
-
export declare const DescribeIdentityUsageResponseFilterSensitiveLog: (
|
|
339
|
-
obj: DescribeIdentityUsageResponse
|
|
340
|
-
) => any;
|
|
341
|
-
export declare const GetBulkPublishDetailsRequestFilterSensitiveLog: (
|
|
342
|
-
obj: GetBulkPublishDetailsRequest
|
|
343
|
-
) => any;
|
|
344
|
-
export declare const GetBulkPublishDetailsResponseFilterSensitiveLog: (
|
|
345
|
-
obj: GetBulkPublishDetailsResponse
|
|
346
|
-
) => any;
|
|
347
|
-
export declare const GetCognitoEventsRequestFilterSensitiveLog: (
|
|
348
|
-
obj: GetCognitoEventsRequest
|
|
349
|
-
) => any;
|
|
350
|
-
export declare const GetCognitoEventsResponseFilterSensitiveLog: (
|
|
351
|
-
obj: GetCognitoEventsResponse
|
|
352
|
-
) => any;
|
|
353
|
-
export declare const GetIdentityPoolConfigurationRequestFilterSensitiveLog: (
|
|
354
|
-
obj: GetIdentityPoolConfigurationRequest
|
|
355
|
-
) => any;
|
|
356
|
-
export declare const CognitoStreamsFilterSensitiveLog: (
|
|
357
|
-
obj: CognitoStreams
|
|
358
|
-
) => any;
|
|
359
|
-
export declare const PushSyncFilterSensitiveLog: (obj: PushSync) => any;
|
|
360
|
-
export declare const GetIdentityPoolConfigurationResponseFilterSensitiveLog: (
|
|
361
|
-
obj: GetIdentityPoolConfigurationResponse
|
|
362
|
-
) => any;
|
|
363
|
-
export declare const ListDatasetsRequestFilterSensitiveLog: (
|
|
364
|
-
obj: ListDatasetsRequest
|
|
365
|
-
) => any;
|
|
366
|
-
export declare const ListDatasetsResponseFilterSensitiveLog: (
|
|
367
|
-
obj: ListDatasetsResponse
|
|
368
|
-
) => any;
|
|
369
|
-
export declare const ListIdentityPoolUsageRequestFilterSensitiveLog: (
|
|
370
|
-
obj: ListIdentityPoolUsageRequest
|
|
371
|
-
) => any;
|
|
372
|
-
export declare const ListIdentityPoolUsageResponseFilterSensitiveLog: (
|
|
373
|
-
obj: ListIdentityPoolUsageResponse
|
|
374
|
-
) => any;
|
|
375
|
-
export declare const ListRecordsRequestFilterSensitiveLog: (
|
|
376
|
-
obj: ListRecordsRequest
|
|
377
|
-
) => any;
|
|
378
|
-
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
379
|
-
export declare const ListRecordsResponseFilterSensitiveLog: (
|
|
380
|
-
obj: ListRecordsResponse
|
|
381
|
-
) => any;
|
|
382
|
-
export declare const RegisterDeviceRequestFilterSensitiveLog: (
|
|
383
|
-
obj: RegisterDeviceRequest
|
|
384
|
-
) => any;
|
|
385
|
-
export declare const RegisterDeviceResponseFilterSensitiveLog: (
|
|
386
|
-
obj: RegisterDeviceResponse
|
|
387
|
-
) => any;
|
|
388
|
-
export declare const SetCognitoEventsRequestFilterSensitiveLog: (
|
|
389
|
-
obj: SetCognitoEventsRequest
|
|
390
|
-
) => any;
|
|
391
|
-
export declare const SetIdentityPoolConfigurationRequestFilterSensitiveLog: (
|
|
392
|
-
obj: SetIdentityPoolConfigurationRequest
|
|
393
|
-
) => any;
|
|
394
|
-
export declare const SetIdentityPoolConfigurationResponseFilterSensitiveLog: (
|
|
395
|
-
obj: SetIdentityPoolConfigurationResponse
|
|
396
|
-
) => any;
|
|
397
|
-
export declare const SubscribeToDatasetRequestFilterSensitiveLog: (
|
|
398
|
-
obj: SubscribeToDatasetRequest
|
|
399
|
-
) => any;
|
|
400
|
-
export declare const SubscribeToDatasetResponseFilterSensitiveLog: (
|
|
401
|
-
obj: SubscribeToDatasetResponse
|
|
402
|
-
) => any;
|
|
403
|
-
export declare const UnsubscribeFromDatasetRequestFilterSensitiveLog: (
|
|
404
|
-
obj: UnsubscribeFromDatasetRequest
|
|
405
|
-
) => any;
|
|
406
|
-
export declare const UnsubscribeFromDatasetResponseFilterSensitiveLog: (
|
|
407
|
-
obj: UnsubscribeFromDatasetResponse
|
|
408
|
-
) => any;
|
|
409
|
-
export declare const RecordPatchFilterSensitiveLog: (obj: RecordPatch) => any;
|
|
410
|
-
export declare const UpdateRecordsRequestFilterSensitiveLog: (
|
|
411
|
-
obj: UpdateRecordsRequest
|
|
412
|
-
) => any;
|
|
413
|
-
export declare const UpdateRecordsResponseFilterSensitiveLog: (
|
|
414
|
-
obj: UpdateRecordsResponse
|
|
415
|
-
) => any;
|
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.
|
|
4
|
+
"version": "3.298.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",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo cognito-sync"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|