@aws-sdk/client-detective 3.45.0 → 3.46.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 (60) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +41 -13
  3. package/dist-cjs/Detective.js +75 -0
  4. package/dist-cjs/commands/DescribeOrganizationConfigurationCommand.js +36 -0
  5. package/dist-cjs/commands/DisableOrganizationAdminAccountCommand.js +35 -0
  6. package/dist-cjs/commands/EnableOrganizationAdminAccountCommand.js +36 -0
  7. package/dist-cjs/commands/ListOrganizationAdminAccountsCommand.js +36 -0
  8. package/dist-cjs/commands/UpdateOrganizationConfigurationCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +5 -0
  10. package/dist-cjs/models/models_0.js +54 -1
  11. package/dist-cjs/pagination/ListOrganizationAdminAccountsPaginator.js +35 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +451 -1
  14. package/dist-cjs/runtimeConfig.js +0 -2
  15. package/dist-es/Detective.js +75 -0
  16. package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +39 -0
  17. package/dist-es/commands/DisableOrganizationAdminAccountCommand.js +38 -0
  18. package/dist-es/commands/EnableOrganizationAdminAccountCommand.js +39 -0
  19. package/dist-es/commands/ListOrganizationAdminAccountsCommand.js +39 -0
  20. package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +39 -0
  21. package/dist-es/commands/index.js +5 -0
  22. package/dist-es/models/models_0.js +37 -0
  23. package/dist-es/pagination/ListOrganizationAdminAccountsPaginator.js +74 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_restJson1.js +533 -1
  26. package/dist-es/runtimeConfig.js +0 -2
  27. package/dist-types/Detective.d.ts +154 -42
  28. package/dist-types/DetectiveClient.d.ts +49 -16
  29. package/dist-types/commands/CreateGraphCommand.d.ts +9 -9
  30. package/dist-types/commands/CreateMembersCommand.d.ts +17 -7
  31. package/dist-types/commands/DeleteGraphCommand.d.ts +1 -1
  32. package/dist-types/commands/DeleteMembersCommand.d.ts +13 -5
  33. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +38 -0
  34. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +38 -0
  35. package/dist-types/commands/DisassociateMembershipCommand.d.ts +6 -1
  36. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +42 -0
  37. package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListMembersCommand.d.ts +6 -2
  39. package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +36 -0
  40. package/dist-types/commands/RejectInvitationCommand.d.ts +6 -1
  41. package/dist-types/commands/StartMonitoringMemberCommand.d.ts +1 -1
  42. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +37 -0
  43. package/dist-types/commands/index.d.ts +5 -0
  44. package/dist-types/models/models_0.d.ts +234 -71
  45. package/dist-types/pagination/ListOrganizationAdminAccountsPaginator.d.ts +4 -0
  46. package/dist-types/pagination/index.d.ts +1 -0
  47. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  48. package/dist-types/ts3.4/Detective.d.ts +25 -0
  49. package/dist-types/ts3.4/DetectiveClient.d.ts +7 -2
  50. package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +16 -0
  52. package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +17 -0
  53. package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +17 -0
  54. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +83 -0
  57. package/dist-types/ts3.4/pagination/ListOrganizationAdminAccountsPaginator.d.ts +4 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  60. package/package.json +36 -43
@@ -4,16 +4,21 @@ import { CreateGraphCommandInput, CreateGraphCommandOutput } from "./commands/Cr
4
4
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
5
5
  import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "./commands/DeleteGraphCommand";
6
6
  import { DeleteMembersCommandInput, DeleteMembersCommandOutput } from "./commands/DeleteMembersCommand";
7
+ import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
8
+ import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
7
9
  import { DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput } from "./commands/DisassociateMembershipCommand";
10
+ import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
8
11
  import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
9
12
  import { ListGraphsCommandInput, ListGraphsCommandOutput } from "./commands/ListGraphsCommand";
10
13
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
11
14
  import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
15
+ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "./commands/ListOrganizationAdminAccountsCommand";
12
16
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
13
17
  import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "./commands/RejectInvitationCommand";
14
18
  import { StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput } from "./commands/StartMonitoringMemberCommand";
15
19
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
16
20
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
21
+ import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
17
22
  import { DetectiveClient } from "./DetectiveClient";
18
23
 
19
24
  export declare class Detective extends DetectiveClient {
@@ -38,10 +43,22 @@ export declare class Detective extends DetectiveClient {
38
43
  deleteMembers(args: DeleteMembersCommandInput, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
39
44
  deleteMembers(args: DeleteMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
40
45
 
46
+ describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrganizationConfigurationCommandOutput>;
47
+ describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
48
+ describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
49
+
50
+ disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisableOrganizationAdminAccountCommandOutput>;
51
+ disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
52
+ disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
53
+
41
54
  disassociateMembership(args: DisassociateMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateMembershipCommandOutput>;
42
55
  disassociateMembership(args: DisassociateMembershipCommandInput, cb: (err: any, data?: DisassociateMembershipCommandOutput) => void): void;
43
56
  disassociateMembership(args: DisassociateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMembershipCommandOutput) => void): void;
44
57
 
58
+ enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<EnableOrganizationAdminAccountCommandOutput>;
59
+ enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
60
+ enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
61
+
45
62
  getMembers(args: GetMembersCommandInput, options?: __HttpHandlerOptions): Promise<GetMembersCommandOutput>;
46
63
  getMembers(args: GetMembersCommandInput, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
47
64
  getMembers(args: GetMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
@@ -58,6 +75,10 @@ export declare class Detective extends DetectiveClient {
58
75
  listMembers(args: ListMembersCommandInput, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
59
76
  listMembers(args: ListMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
60
77
 
78
+ listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListOrganizationAdminAccountsCommandOutput>;
79
+ listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
80
+ listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
81
+
61
82
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
62
83
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
63
84
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
@@ -77,4 +98,8 @@ export declare class Detective extends DetectiveClient {
77
98
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
78
99
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
79
100
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
101
+
102
+ updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOrganizationConfigurationCommandOutput>;
103
+ updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
104
+ updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
80
105
  }
@@ -11,18 +11,23 @@ import { CreateGraphCommandInput, CreateGraphCommandOutput } from "./commands/Cr
11
11
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
12
12
  import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "./commands/DeleteGraphCommand";
13
13
  import { DeleteMembersCommandInput, DeleteMembersCommandOutput } from "./commands/DeleteMembersCommand";
14
+ import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
15
+ import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
14
16
  import { DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput } from "./commands/DisassociateMembershipCommand";
17
+ import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
15
18
  import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
16
19
  import { ListGraphsCommandInput, ListGraphsCommandOutput } from "./commands/ListGraphsCommand";
17
20
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
18
21
  import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
22
+ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "./commands/ListOrganizationAdminAccountsCommand";
19
23
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
20
24
  import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "./commands/RejectInvitationCommand";
21
25
  import { StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput } from "./commands/StartMonitoringMemberCommand";
22
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
23
27
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
24
- export declare type ServiceInputTypes = AcceptInvitationCommandInput | CreateGraphCommandInput | CreateMembersCommandInput | DeleteGraphCommandInput | DeleteMembersCommandInput | DisassociateMembershipCommandInput | GetMembersCommandInput | ListGraphsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListTagsForResourceCommandInput | RejectInvitationCommandInput | StartMonitoringMemberCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
25
- export declare type ServiceOutputTypes = AcceptInvitationCommandOutput | CreateGraphCommandOutput | CreateMembersCommandOutput | DeleteGraphCommandOutput | DeleteMembersCommandOutput | DisassociateMembershipCommandOutput | GetMembersCommandOutput | ListGraphsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListTagsForResourceCommandOutput | RejectInvitationCommandOutput | StartMonitoringMemberCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
28
+ import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
29
+ export declare type ServiceInputTypes = AcceptInvitationCommandInput | CreateGraphCommandInput | CreateMembersCommandInput | DeleteGraphCommandInput | DeleteMembersCommandInput | DescribeOrganizationConfigurationCommandInput | DisableOrganizationAdminAccountCommandInput | DisassociateMembershipCommandInput | EnableOrganizationAdminAccountCommandInput | GetMembersCommandInput | ListGraphsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListTagsForResourceCommandInput | RejectInvitationCommandInput | StartMonitoringMemberCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOrganizationConfigurationCommandInput;
30
+ export declare type ServiceOutputTypes = AcceptInvitationCommandOutput | CreateGraphCommandOutput | CreateMembersCommandOutput | DeleteGraphCommandOutput | DeleteMembersCommandOutput | DescribeOrganizationConfigurationCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisassociateMembershipCommandOutput | EnableOrganizationAdminAccountCommandOutput | GetMembersCommandOutput | ListGraphsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListTagsForResourceCommandOutput | RejectInvitationCommandOutput | StartMonitoringMemberCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOrganizationConfigurationCommandOutput;
26
31
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
27
32
 
28
33
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
+ import { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse } from "../models/models_0";
5
+ export interface DescribeOrganizationConfigurationCommandInput extends DescribeOrganizationConfigurationRequest {
6
+ }
7
+ export interface DescribeOrganizationConfigurationCommandOutput extends DescribeOrganizationConfigurationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeOrganizationConfigurationCommand extends $Command<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
11
+ readonly input: DescribeOrganizationConfigurationCommandInput;
12
+ constructor(input: DescribeOrganizationConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
+ export interface DisableOrganizationAdminAccountCommandInput {
5
+ }
6
+ export interface DisableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
7
+ }
8
+
9
+ export declare class DisableOrganizationAdminAccountCommand extends $Command<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
10
+ readonly input: DisableOrganizationAdminAccountCommandInput;
11
+ constructor(input: DisableOrganizationAdminAccountCommandInput);
12
+
13
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput>;
14
+ private serialize;
15
+ private deserialize;
16
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
+ import { EnableOrganizationAdminAccountRequest } from "../models/models_0";
5
+ export interface EnableOrganizationAdminAccountCommandInput extends EnableOrganizationAdminAccountRequest {
6
+ }
7
+ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class EnableOrganizationAdminAccountCommand extends $Command<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
11
+ readonly input: EnableOrganizationAdminAccountCommandInput;
12
+ constructor(input: EnableOrganizationAdminAccountCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
+ import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0";
5
+ export interface ListOrganizationAdminAccountsCommandInput extends ListOrganizationAdminAccountsRequest {
6
+ }
7
+ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganizationAdminAccountsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListOrganizationAdminAccountsCommand extends $Command<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput, DetectiveClientResolvedConfig> {
11
+ readonly input: ListOrganizationAdminAccountsCommandInput;
12
+ constructor(input: ListOrganizationAdminAccountsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
+ import { UpdateOrganizationConfigurationRequest } from "../models/models_0";
5
+ export interface UpdateOrganizationConfigurationCommandInput extends UpdateOrganizationConfigurationRequest {
6
+ }
7
+ export interface UpdateOrganizationConfigurationCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateOrganizationConfigurationCommand extends $Command<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
11
+ readonly input: UpdateOrganizationConfigurationCommandInput;
12
+ constructor(input: UpdateOrganizationConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -3,13 +3,18 @@ export * from "./CreateGraphCommand";
3
3
  export * from "./CreateMembersCommand";
4
4
  export * from "./DeleteGraphCommand";
5
5
  export * from "./DeleteMembersCommand";
6
+ export * from "./DescribeOrganizationConfigurationCommand";
7
+ export * from "./DisableOrganizationAdminAccountCommand";
6
8
  export * from "./DisassociateMembershipCommand";
9
+ export * from "./EnableOrganizationAdminAccountCommand";
7
10
  export * from "./GetMembersCommand";
8
11
  export * from "./ListGraphsCommand";
9
12
  export * from "./ListInvitationsCommand";
10
13
  export * from "./ListMembersCommand";
14
+ export * from "./ListOrganizationAdminAccountsCommand";
11
15
  export * from "./ListTagsForResourceCommand";
12
16
  export * from "./RejectInvitationCommand";
13
17
  export * from "./StartMonitoringMemberCommand";
14
18
  export * from "./TagResourceCommand";
15
19
  export * from "./UntagResourceCommand";
20
+ export * from "./UpdateOrganizationConfigurationCommand";
@@ -58,6 +58,19 @@ export declare namespace Account {
58
58
 
59
59
  const filterSensitiveLog: (obj: Account) => any;
60
60
  }
61
+
62
+ export interface Administrator {
63
+
64
+ AccountId?: string;
65
+
66
+ GraphArn?: string;
67
+
68
+ DelegationTime?: Date;
69
+ }
70
+ export declare namespace Administrator {
71
+
72
+ const filterSensitiveLog: (obj: Administrator) => any;
73
+ }
61
74
  export interface CreateGraphRequest {
62
75
 
63
76
  Tags?: {
@@ -104,6 +117,10 @@ export declare enum MemberDisabledReason {
104
117
  VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
105
118
  VOLUME_UNKNOWN = "VOLUME_UNKNOWN"
106
119
  }
120
+ export declare enum InvitationType {
121
+ INVITATION = "INVITATION",
122
+ ORGANIZATION = "ORGANIZATION"
123
+ }
107
124
  export declare enum MemberStatus {
108
125
  ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
109
126
  ENABLED = "ENABLED",
@@ -139,6 +156,8 @@ export interface MemberDetail {
139
156
  PercentOfGraphUtilization?: number;
140
157
 
141
158
  PercentOfGraphUtilizationUpdatedTime?: Date;
159
+
160
+ InvitationType?: InvitationType | string;
142
161
  }
143
162
  export declare namespace MemberDetail {
144
163
 
@@ -193,6 +212,32 @@ export declare namespace DeleteMembersResponse {
193
212
 
194
213
  const filterSensitiveLog: (obj: DeleteMembersResponse) => any;
195
214
  }
215
+ export interface DescribeOrganizationConfigurationRequest {
216
+
217
+ GraphArn: string | undefined;
218
+ }
219
+ export declare namespace DescribeOrganizationConfigurationRequest {
220
+
221
+ const filterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
222
+ }
223
+ export interface DescribeOrganizationConfigurationResponse {
224
+
225
+ AutoEnable?: boolean;
226
+ }
227
+ export declare namespace DescribeOrganizationConfigurationResponse {
228
+
229
+ const filterSensitiveLog: (obj: DescribeOrganizationConfigurationResponse) => any;
230
+ }
231
+
232
+ export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
233
+ name: "TooManyRequestsException";
234
+ $fault: "client";
235
+ Message?: string;
236
+ }
237
+ export declare namespace TooManyRequestsException {
238
+
239
+ const filterSensitiveLog: (obj: TooManyRequestsException) => any;
240
+ }
196
241
  export interface DisassociateMembershipRequest {
197
242
 
198
243
  GraphArn: string | undefined;
@@ -201,6 +246,14 @@ export declare namespace DisassociateMembershipRequest {
201
246
 
202
247
  const filterSensitiveLog: (obj: DisassociateMembershipRequest) => any;
203
248
  }
249
+ export interface EnableOrganizationAdminAccountRequest {
250
+
251
+ AccountId: string | undefined;
252
+ }
253
+ export declare namespace EnableOrganizationAdminAccountRequest {
254
+
255
+ const filterSensitiveLog: (obj: EnableOrganizationAdminAccountRequest) => any;
256
+ }
204
257
  export interface GetMembersRequest {
205
258
 
206
259
  GraphArn: string | undefined;
@@ -294,6 +347,26 @@ export declare namespace ListMembersResponse {
294
347
 
295
348
  const filterSensitiveLog: (obj: ListMembersResponse) => any;
296
349
  }
350
+ export interface ListOrganizationAdminAccountsRequest {
351
+
352
+ NextToken?: string;
353
+
354
+ MaxResults?: number;
355
+ }
356
+ export declare namespace ListOrganizationAdminAccountsRequest {
357
+
358
+ const filterSensitiveLog: (obj: ListOrganizationAdminAccountsRequest) => any;
359
+ }
360
+ export interface ListOrganizationAdminAccountsResponse {
361
+
362
+ Administrators?: Administrator[];
363
+
364
+ NextToken?: string;
365
+ }
366
+ export declare namespace ListOrganizationAdminAccountsResponse {
367
+
368
+ const filterSensitiveLog: (obj: ListOrganizationAdminAccountsResponse) => any;
369
+ }
297
370
  export interface ListTagsForResourceRequest {
298
371
 
299
372
  ResourceArn: string | undefined;
@@ -364,3 +437,13 @@ export declare namespace UntagResourceResponse {
364
437
 
365
438
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
366
439
  }
440
+ export interface UpdateOrganizationConfigurationRequest {
441
+
442
+ GraphArn: string | undefined;
443
+
444
+ AutoEnable?: boolean;
445
+ }
446
+ export declare namespace UpdateOrganizationConfigurationRequest {
447
+
448
+ const filterSensitiveLog: (obj: UpdateOrganizationConfigurationRequest) => any;
449
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "../commands/ListOrganizationAdminAccountsCommand";
3
+ import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListOrganizationAdminAccounts(config: DetectivePaginationConfiguration, input: ListOrganizationAdminAccountsCommandInput, ...additionalArguments: any): Paginator<ListOrganizationAdminAccountsCommandOutput>;
@@ -2,3 +2,4 @@ export * from "./Interfaces";
2
2
  export * from "./ListGraphsPaginator";
3
3
  export * from "./ListInvitationsPaginator";
4
4
  export * from "./ListMembersPaginator";
5
+ export * from "./ListOrganizationAdminAccountsPaginator";
@@ -5,43 +5,58 @@ import { CreateGraphCommandInput, CreateGraphCommandOutput } from "../commands/C
5
5
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "../commands/CreateMembersCommand";
6
6
  import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "../commands/DeleteGraphCommand";
7
7
  import { DeleteMembersCommandInput, DeleteMembersCommandOutput } from "../commands/DeleteMembersCommand";
8
+ import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "../commands/DescribeOrganizationConfigurationCommand";
9
+ import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "../commands/DisableOrganizationAdminAccountCommand";
8
10
  import { DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput } from "../commands/DisassociateMembershipCommand";
11
+ import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "../commands/EnableOrganizationAdminAccountCommand";
9
12
  import { GetMembersCommandInput, GetMembersCommandOutput } from "../commands/GetMembersCommand";
10
13
  import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
11
14
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
12
15
  import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
16
+ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "../commands/ListOrganizationAdminAccountsCommand";
13
17
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
18
  import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "../commands/RejectInvitationCommand";
15
19
  import { StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput } from "../commands/StartMonitoringMemberCommand";
16
20
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
21
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
22
+ import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "../commands/UpdateOrganizationConfigurationCommand";
18
23
  export declare const serializeAws_restJson1AcceptInvitationCommand: (input: AcceptInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
24
  export declare const serializeAws_restJson1CreateGraphCommand: (input: CreateGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
25
  export declare const serializeAws_restJson1CreateMembersCommand: (input: CreateMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
26
  export declare const serializeAws_restJson1DeleteGraphCommand: (input: DeleteGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
27
  export declare const serializeAws_restJson1DeleteMembersCommand: (input: DeleteMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1DescribeOrganizationConfigurationCommand: (input: DescribeOrganizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1DisableOrganizationAdminAccountCommand: (input: DisableOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
30
  export declare const serializeAws_restJson1DisassociateMembershipCommand: (input: DisassociateMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1EnableOrganizationAdminAccountCommand: (input: EnableOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
32
  export declare const serializeAws_restJson1GetMembersCommand: (input: GetMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
33
  export declare const serializeAws_restJson1ListGraphsCommand: (input: ListGraphsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
34
  export declare const serializeAws_restJson1ListInvitationsCommand: (input: ListInvitationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
35
  export declare const serializeAws_restJson1ListMembersCommand: (input: ListMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1ListOrganizationAdminAccountsCommand: (input: ListOrganizationAdminAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
37
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
38
  export declare const serializeAws_restJson1RejectInvitationCommand: (input: RejectInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
39
  export declare const serializeAws_restJson1StartMonitoringMemberCommand: (input: StartMonitoringMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
40
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
41
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_restJson1UpdateOrganizationConfigurationCommand: (input: UpdateOrganizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
43
  export declare const deserializeAws_restJson1AcceptInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptInvitationCommandOutput>;
34
44
  export declare const deserializeAws_restJson1CreateGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGraphCommandOutput>;
35
45
  export declare const deserializeAws_restJson1CreateMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMembersCommandOutput>;
36
46
  export declare const deserializeAws_restJson1DeleteGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGraphCommandOutput>;
37
47
  export declare const deserializeAws_restJson1DeleteMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMembersCommandOutput>;
48
+ export declare const deserializeAws_restJson1DescribeOrganizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOrganizationConfigurationCommandOutput>;
49
+ export declare const deserializeAws_restJson1DisableOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableOrganizationAdminAccountCommandOutput>;
38
50
  export declare const deserializeAws_restJson1DisassociateMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateMembershipCommandOutput>;
51
+ export declare const deserializeAws_restJson1EnableOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableOrganizationAdminAccountCommandOutput>;
39
52
  export declare const deserializeAws_restJson1GetMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMembersCommandOutput>;
40
53
  export declare const deserializeAws_restJson1ListGraphsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGraphsCommandOutput>;
41
54
  export declare const deserializeAws_restJson1ListInvitationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvitationsCommandOutput>;
42
55
  export declare const deserializeAws_restJson1ListMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMembersCommandOutput>;
56
+ export declare const deserializeAws_restJson1ListOrganizationAdminAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationAdminAccountsCommandOutput>;
43
57
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
44
58
  export declare const deserializeAws_restJson1RejectInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectInvitationCommandOutput>;
45
59
  export declare const deserializeAws_restJson1StartMonitoringMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMonitoringMemberCommandOutput>;
46
60
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
47
61
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
62
+ export declare const deserializeAws_restJson1UpdateOrganizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOrganizationConfigurationCommandOutput>;
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-detective",
3
3
  "description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
4
- "version": "3.45.0",
4
+ "version": "3.46.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
12
  "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
13
+ "clean:dist": "rimraf ./dist-*",
14
+ "clean:docs": "rimraf ./docs"
16
15
  },
17
16
  "main": "./dist-cjs/index.js",
18
17
  "types": "./dist-types/index.d.ts",
@@ -21,48 +20,42 @@
21
20
  "dependencies": {
22
21
  "@aws-crypto/sha256-browser": "2.0.0",
23
22
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.45.0",
25
- "@aws-sdk/config-resolver": "3.45.0",
26
- "@aws-sdk/credential-provider-node": "3.45.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.45.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
23
+ "@aws-sdk/client-sts": "3.46.0",
24
+ "@aws-sdk/config-resolver": "3.46.0",
25
+ "@aws-sdk/credential-provider-node": "3.46.0",
26
+ "@aws-sdk/fetch-http-handler": "3.46.0",
27
+ "@aws-sdk/hash-node": "3.46.0",
28
+ "@aws-sdk/invalid-dependency": "3.46.0",
29
+ "@aws-sdk/middleware-content-length": "3.46.0",
30
+ "@aws-sdk/middleware-host-header": "3.46.0",
31
+ "@aws-sdk/middleware-logger": "3.46.0",
32
+ "@aws-sdk/middleware-retry": "3.46.0",
33
+ "@aws-sdk/middleware-serde": "3.46.0",
34
+ "@aws-sdk/middleware-signing": "3.46.0",
35
+ "@aws-sdk/middleware-stack": "3.46.0",
36
+ "@aws-sdk/middleware-user-agent": "3.46.0",
37
+ "@aws-sdk/node-config-provider": "3.46.0",
38
+ "@aws-sdk/node-http-handler": "3.46.0",
39
+ "@aws-sdk/protocol-http": "3.46.0",
40
+ "@aws-sdk/smithy-client": "3.46.0",
41
+ "@aws-sdk/types": "3.46.0",
42
+ "@aws-sdk/url-parser": "3.46.0",
43
+ "@aws-sdk/util-base64-browser": "3.46.0",
44
+ "@aws-sdk/util-base64-node": "3.46.0",
45
+ "@aws-sdk/util-body-length-browser": "3.46.0",
46
+ "@aws-sdk/util-body-length-node": "3.46.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.46.0",
48
+ "@aws-sdk/util-user-agent-node": "3.46.0",
49
+ "@aws-sdk/util-utf8-browser": "3.46.0",
50
+ "@aws-sdk/util-utf8-node": "3.46.0",
52
51
  "tslib": "^2.3.0"
53
52
  },
54
53
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
56
- "@types/node": "^12.7.5",
57
- "downlevel-dts": "0.7.0",
58
- "jest": "^26.1.0",
59
- "rimraf": "^3.0.0",
60
- "ts-jest": "^26.4.1",
61
- "typedoc": "^0.19.2",
62
- "typescript": "~4.3.5"
54
+ "@aws-sdk/service-client-documentation-generator": "3.46.0",
55
+ "@types/node": "^12.7.5"
63
56
  },
64
57
  "engines": {
65
- "node": ">=10.0.0"
58
+ "node": ">=12.0.0"
66
59
  },
67
60
  "typesVersions": {
68
61
  "<4.0": {