@aws-sdk/client-identitystore 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.
Files changed (66) hide show
  1. package/dist-cjs/commands/CreateGroupCommand.js +1 -1
  2. package/dist-cjs/commands/CreateGroupMembershipCommand.js +2 -3
  3. package/dist-cjs/commands/CreateUserCommand.js +1 -1
  4. package/dist-cjs/commands/DeleteGroupCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteGroupMembershipCommand.js +2 -3
  6. package/dist-cjs/commands/DeleteUserCommand.js +2 -3
  7. package/dist-cjs/commands/DescribeGroupCommand.js +1 -1
  8. package/dist-cjs/commands/DescribeGroupMembershipCommand.js +2 -3
  9. package/dist-cjs/commands/DescribeUserCommand.js +1 -1
  10. package/dist-cjs/commands/GetGroupIdCommand.js +1 -1
  11. package/dist-cjs/commands/GetGroupMembershipIdCommand.js +2 -3
  12. package/dist-cjs/commands/GetUserIdCommand.js +1 -1
  13. package/dist-cjs/commands/IsMemberInGroupsCommand.js +1 -1
  14. package/dist-cjs/commands/ListGroupMembershipsCommand.js +2 -3
  15. package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +2 -3
  16. package/dist-cjs/commands/UpdateGroupCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateUserCommand.js +2 -3
  18. package/dist-cjs/models/models_0.js +3 -143
  19. package/dist-es/commands/CreateGroupCommand.js +2 -2
  20. package/dist-es/commands/CreateGroupMembershipCommand.js +2 -3
  21. package/dist-es/commands/CreateUserCommand.js +2 -2
  22. package/dist-es/commands/DeleteGroupCommand.js +2 -3
  23. package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -3
  24. package/dist-es/commands/DeleteUserCommand.js +2 -3
  25. package/dist-es/commands/DescribeGroupCommand.js +2 -2
  26. package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -3
  27. package/dist-es/commands/DescribeUserCommand.js +2 -2
  28. package/dist-es/commands/GetGroupIdCommand.js +2 -2
  29. package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -3
  30. package/dist-es/commands/GetUserIdCommand.js +2 -2
  31. package/dist-es/commands/IsMemberInGroupsCommand.js +2 -2
  32. package/dist-es/commands/ListGroupMembershipsCommand.js +2 -3
  33. package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -3
  34. package/dist-es/commands/UpdateGroupCommand.js +2 -3
  35. package/dist-es/commands/UpdateUserCommand.js +2 -3
  36. package/dist-es/models/models_0.js +2 -110
  37. package/dist-types/Identitystore.d.ts +20 -0
  38. package/dist-types/IdentitystoreClient.d.ts +24 -4
  39. package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
  40. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +16 -0
  41. package/dist-types/commands/CreateUserCommand.d.ts +16 -0
  42. package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
  43. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +16 -0
  44. package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
  45. package/dist-types/commands/DescribeGroupCommand.d.ts +16 -0
  46. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +16 -0
  47. package/dist-types/commands/DescribeUserCommand.d.ts +16 -0
  48. package/dist-types/commands/GetGroupIdCommand.d.ts +16 -0
  49. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +16 -0
  50. package/dist-types/commands/GetUserIdCommand.d.ts +16 -0
  51. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +16 -0
  52. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +16 -0
  53. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +16 -0
  54. package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
  55. package/dist-types/commands/ListUsersCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
  58. package/dist-types/models/IdentitystoreServiceException.d.ts +2 -0
  59. package/dist-types/models/models_0.d.ts +147 -124
  60. package/dist-types/pagination/Interfaces.d.ts +3 -0
  61. package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
  64. package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +0 -91
  66. package/package.json +4 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "../commands/ListGroupMembershipsForMemberCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroupMembershipsForMember(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsForMemberCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsForMemberCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "../commands/ListGroupMembershipsCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroupMemberships(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroups(config: IdentitystorePaginationConfiguration, input: ListGroupsCommandInput, ...additionalArguments: any): Paginator<ListGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListUsers(config: IdentitystorePaginationConfiguration, input: ListUsersCommandInput, ...additionalArguments: any): Paginator<ListUsersCommandOutput>;
@@ -387,76 +387,18 @@ export interface UpdateUserRequest {
387
387
  export interface UpdateUserResponse {}
388
388
  export declare const AddressFilterSensitiveLog: (obj: Address) => any;
389
389
  export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
390
- export declare const UniqueAttributeFilterSensitiveLog: (
391
- obj: UniqueAttribute
392
- ) => any;
393
390
  export declare const AlternateIdentifierFilterSensitiveLog: (
394
391
  obj: AlternateIdentifier
395
392
  ) => any;
396
- export declare const AttributeOperationFilterSensitiveLog: (
397
- obj: AttributeOperation
398
- ) => any;
399
393
  export declare const GetGroupIdRequestFilterSensitiveLog: (
400
394
  obj: GetGroupIdRequest
401
395
  ) => any;
402
- export declare const GetGroupIdResponseFilterSensitiveLog: (
403
- obj: GetGroupIdResponse
404
- ) => any;
405
- export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
406
- export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (
407
- obj: GetGroupMembershipIdRequest
408
- ) => any;
409
- export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (
410
- obj: GetGroupMembershipIdResponse
411
- ) => any;
412
396
  export declare const GetUserIdRequestFilterSensitiveLog: (
413
397
  obj: GetUserIdRequest
414
398
  ) => any;
415
- export declare const GetUserIdResponseFilterSensitiveLog: (
416
- obj: GetUserIdResponse
417
- ) => any;
418
- export declare const CreateGroupMembershipRequestFilterSensitiveLog: (
419
- obj: CreateGroupMembershipRequest
420
- ) => any;
421
- export declare const CreateGroupMembershipResponseFilterSensitiveLog: (
422
- obj: CreateGroupMembershipResponse
423
- ) => any;
424
- export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (
425
- obj: DeleteGroupMembershipRequest
426
- ) => any;
427
- export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (
428
- obj: DeleteGroupMembershipResponse
429
- ) => any;
430
- export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (
431
- obj: DescribeGroupMembershipRequest
432
- ) => any;
433
- export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (
434
- obj: DescribeGroupMembershipResponse
435
- ) => any;
436
- export declare const ListGroupMembershipsRequestFilterSensitiveLog: (
437
- obj: ListGroupMembershipsRequest
438
- ) => any;
439
- export declare const GroupMembershipFilterSensitiveLog: (
440
- obj: GroupMembership
441
- ) => any;
442
- export declare const ListGroupMembershipsResponseFilterSensitiveLog: (
443
- obj: ListGroupMembershipsResponse
444
- ) => any;
445
399
  export declare const CreateGroupRequestFilterSensitiveLog: (
446
400
  obj: CreateGroupRequest
447
401
  ) => any;
448
- export declare const CreateGroupResponseFilterSensitiveLog: (
449
- obj: CreateGroupResponse
450
- ) => any;
451
- export declare const DeleteGroupRequestFilterSensitiveLog: (
452
- obj: DeleteGroupRequest
453
- ) => any;
454
- export declare const DeleteGroupResponseFilterSensitiveLog: (
455
- obj: DeleteGroupResponse
456
- ) => any;
457
- export declare const DescribeGroupRequestFilterSensitiveLog: (
458
- obj: DescribeGroupRequest
459
- ) => any;
460
402
  export declare const DescribeGroupResponseFilterSensitiveLog: (
461
403
  obj: DescribeGroupResponse
462
404
  ) => any;
@@ -468,45 +410,18 @@ export declare const GroupFilterSensitiveLog: (obj: Group) => any;
468
410
  export declare const ListGroupsResponseFilterSensitiveLog: (
469
411
  obj: ListGroupsResponse
470
412
  ) => any;
471
- export declare const UpdateGroupRequestFilterSensitiveLog: (
472
- obj: UpdateGroupRequest
473
- ) => any;
474
- export declare const UpdateGroupResponseFilterSensitiveLog: (
475
- obj: UpdateGroupResponse
476
- ) => any;
477
- export declare const IsMemberInGroupsRequestFilterSensitiveLog: (
478
- obj: IsMemberInGroupsRequest
479
- ) => any;
480
413
  export declare const GroupMembershipExistenceResultFilterSensitiveLog: (
481
414
  obj: GroupMembershipExistenceResult
482
415
  ) => any;
483
416
  export declare const IsMemberInGroupsResponseFilterSensitiveLog: (
484
417
  obj: IsMemberInGroupsResponse
485
418
  ) => any;
486
- export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (
487
- obj: ListGroupMembershipsForMemberRequest
488
- ) => any;
489
- export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (
490
- obj: ListGroupMembershipsForMemberResponse
491
- ) => any;
492
419
  export declare const EmailFilterSensitiveLog: (obj: Email) => any;
493
420
  export declare const NameFilterSensitiveLog: (obj: Name) => any;
494
421
  export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
495
422
  export declare const CreateUserRequestFilterSensitiveLog: (
496
423
  obj: CreateUserRequest
497
424
  ) => any;
498
- export declare const CreateUserResponseFilterSensitiveLog: (
499
- obj: CreateUserResponse
500
- ) => any;
501
- export declare const DeleteUserRequestFilterSensitiveLog: (
502
- obj: DeleteUserRequest
503
- ) => any;
504
- export declare const DeleteUserResponseFilterSensitiveLog: (
505
- obj: DeleteUserResponse
506
- ) => any;
507
- export declare const DescribeUserRequestFilterSensitiveLog: (
508
- obj: DescribeUserRequest
509
- ) => any;
510
425
  export declare const DescribeUserResponseFilterSensitiveLog: (
511
426
  obj: DescribeUserResponse
512
427
  ) => any;
@@ -517,9 +432,3 @@ export declare const UserFilterSensitiveLog: (obj: User) => any;
517
432
  export declare const ListUsersResponseFilterSensitiveLog: (
518
433
  obj: ListUsersResponse
519
434
  ) => any;
520
- export declare const UpdateUserRequestFilterSensitiveLog: (
521
- obj: UpdateUserRequest
522
- ) => any;
523
- export declare const UpdateUserResponseFilterSensitiveLog: (
524
- obj: UpdateUserResponse
525
- ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-identitystore",
3
3
  "description": "AWS SDK for JavaScript Identitystore Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
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 identitystore"
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.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
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",