@aws-sdk/client-budgets 3.569.0 → 3.572.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 (32) hide show
  1. package/README.md +31 -7
  2. package/dist-cjs/index.js +152 -1
  3. package/dist-es/Budgets.js +6 -0
  4. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  5. package/dist-es/commands/TagResourceCommand.js +24 -0
  6. package/dist-es/commands/UntagResourceCommand.js +24 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +13 -0
  9. package/dist-es/protocols/Aws_json1_1.js +72 -1
  10. package/dist-types/Budgets.d.ts +21 -0
  11. package/dist-types/BudgetsClient.d.ts +5 -2
  12. package/dist-types/commands/CreateBudgetActionCommand.d.ts +9 -0
  13. package/dist-types/commands/CreateBudgetCommand.d.ts +9 -0
  14. package/dist-types/commands/DeleteBudgetActionCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +1 -3
  16. package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +2 -2
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +80 -0
  18. package/dist-types/commands/TagResourceCommand.d.ts +82 -0
  19. package/dist-types/commands/UntagResourceCommand.d.ts +76 -0
  20. package/dist-types/commands/UpdateBudgetActionCommand.d.ts +2 -2
  21. package/dist-types/commands/index.d.ts +3 -0
  22. package/dist-types/models/models_0.d.ts +285 -118
  23. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  24. package/dist-types/ts3.4/Budgets.d.ts +51 -0
  25. package/dist-types/ts3.4/BudgetsClient.d.ts +18 -0
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +30 -0
  31. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  32. package/package.json +8 -8
@@ -19,6 +19,9 @@ import { DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput } from "../co
19
19
  import { DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput } from "../commands/DescribeNotificationsForBudgetCommand";
20
20
  import { DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput } from "../commands/DescribeSubscribersForNotificationCommand";
21
21
  import { ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput } from "../commands/ExecuteBudgetActionCommand";
22
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
24
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
22
25
  import { UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput } from "../commands/UpdateBudgetActionCommand";
23
26
  import { UpdateBudgetCommandInput, UpdateBudgetCommandOutput } from "../commands/UpdateBudgetCommand";
24
27
  import { UpdateNotificationCommandInput, UpdateNotificationCommandOutput } from "../commands/UpdateNotificationCommand";
@@ -99,6 +102,18 @@ export declare const se_DescribeSubscribersForNotificationCommand: (input: Descr
99
102
  * serializeAws_json1_1ExecuteBudgetActionCommand
100
103
  */
101
104
  export declare const se_ExecuteBudgetActionCommand: (input: ExecuteBudgetActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ /**
106
+ * serializeAws_json1_1ListTagsForResourceCommand
107
+ */
108
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
+ /**
110
+ * serializeAws_json1_1TagResourceCommand
111
+ */
112
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ /**
114
+ * serializeAws_json1_1UntagResourceCommand
115
+ */
116
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
117
  /**
103
118
  * serializeAws_json1_1UpdateBudgetCommand
104
119
  */
@@ -191,6 +206,18 @@ export declare const de_DescribeSubscribersForNotificationCommand: (output: __Ht
191
206
  * deserializeAws_json1_1ExecuteBudgetActionCommand
192
207
  */
193
208
  export declare const de_ExecuteBudgetActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteBudgetActionCommandOutput>;
209
+ /**
210
+ * deserializeAws_json1_1ListTagsForResourceCommand
211
+ */
212
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
213
+ /**
214
+ * deserializeAws_json1_1TagResourceCommand
215
+ */
216
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
217
+ /**
218
+ * deserializeAws_json1_1UntagResourceCommand
219
+ */
220
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
194
221
  /**
195
222
  * deserializeAws_json1_1UpdateBudgetCommand
196
223
  */
@@ -76,6 +76,18 @@ import {
76
76
  ExecuteBudgetActionCommandInput,
77
77
  ExecuteBudgetActionCommandOutput,
78
78
  } from "./commands/ExecuteBudgetActionCommand";
79
+ import {
80
+ ListTagsForResourceCommandInput,
81
+ ListTagsForResourceCommandOutput,
82
+ } from "./commands/ListTagsForResourceCommand";
83
+ import {
84
+ TagResourceCommandInput,
85
+ TagResourceCommandOutput,
86
+ } from "./commands/TagResourceCommand";
87
+ import {
88
+ UntagResourceCommandInput,
89
+ UntagResourceCommandOutput,
90
+ } from "./commands/UntagResourceCommand";
79
91
  import {
80
92
  UpdateBudgetActionCommandInput,
81
93
  UpdateBudgetActionCommandOutput,
@@ -352,6 +364,45 @@ export interface Budgets {
352
364
  options: __HttpHandlerOptions,
353
365
  cb: (err: any, data?: ExecuteBudgetActionCommandOutput) => void
354
366
  ): void;
367
+ listTagsForResource(
368
+ args: ListTagsForResourceCommandInput,
369
+ options?: __HttpHandlerOptions
370
+ ): Promise<ListTagsForResourceCommandOutput>;
371
+ listTagsForResource(
372
+ args: ListTagsForResourceCommandInput,
373
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
374
+ ): void;
375
+ listTagsForResource(
376
+ args: ListTagsForResourceCommandInput,
377
+ options: __HttpHandlerOptions,
378
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
379
+ ): void;
380
+ tagResource(
381
+ args: TagResourceCommandInput,
382
+ options?: __HttpHandlerOptions
383
+ ): Promise<TagResourceCommandOutput>;
384
+ tagResource(
385
+ args: TagResourceCommandInput,
386
+ cb: (err: any, data?: TagResourceCommandOutput) => void
387
+ ): void;
388
+ tagResource(
389
+ args: TagResourceCommandInput,
390
+ options: __HttpHandlerOptions,
391
+ cb: (err: any, data?: TagResourceCommandOutput) => void
392
+ ): void;
393
+ untagResource(
394
+ args: UntagResourceCommandInput,
395
+ options?: __HttpHandlerOptions
396
+ ): Promise<UntagResourceCommandOutput>;
397
+ untagResource(
398
+ args: UntagResourceCommandInput,
399
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
400
+ ): void;
401
+ untagResource(
402
+ args: UntagResourceCommandInput,
403
+ options: __HttpHandlerOptions,
404
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
405
+ ): void;
355
406
  updateBudget(
356
407
  args: UpdateBudgetCommandInput,
357
408
  options?: __HttpHandlerOptions
@@ -121,6 +121,18 @@ import {
121
121
  ExecuteBudgetActionCommandInput,
122
122
  ExecuteBudgetActionCommandOutput,
123
123
  } from "./commands/ExecuteBudgetActionCommand";
124
+ import {
125
+ ListTagsForResourceCommandInput,
126
+ ListTagsForResourceCommandOutput,
127
+ } from "./commands/ListTagsForResourceCommand";
128
+ import {
129
+ TagResourceCommandInput,
130
+ TagResourceCommandOutput,
131
+ } from "./commands/TagResourceCommand";
132
+ import {
133
+ UntagResourceCommandInput,
134
+ UntagResourceCommandOutput,
135
+ } from "./commands/UntagResourceCommand";
124
136
  import {
125
137
  UpdateBudgetActionCommandInput,
126
138
  UpdateBudgetActionCommandOutput,
@@ -164,6 +176,9 @@ export type ServiceInputTypes =
164
176
  | DescribeNotificationsForBudgetCommandInput
165
177
  | DescribeSubscribersForNotificationCommandInput
166
178
  | ExecuteBudgetActionCommandInput
179
+ | ListTagsForResourceCommandInput
180
+ | TagResourceCommandInput
181
+ | UntagResourceCommandInput
167
182
  | UpdateBudgetActionCommandInput
168
183
  | UpdateBudgetCommandInput
169
184
  | UpdateNotificationCommandInput
@@ -188,6 +203,9 @@ export type ServiceOutputTypes =
188
203
  | DescribeNotificationsForBudgetCommandOutput
189
204
  | DescribeSubscribersForNotificationCommandOutput
190
205
  | ExecuteBudgetActionCommandOutput
206
+ | ListTagsForResourceCommandOutput
207
+ | TagResourceCommandOutput
208
+ | UntagResourceCommandOutput
191
209
  | UpdateBudgetActionCommandOutput
192
210
  | UpdateBudgetCommandOutput
193
211
  | UpdateNotificationCommandOutput
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BudgetsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BudgetsClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListTagsForResourceCommandInput
14
+ extends ListTagsForResourceRequest {}
15
+ export interface ListTagsForResourceCommandOutput
16
+ extends ListTagsForResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ BudgetsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ BudgetsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BudgetsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BudgetsClient";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface TagResourceCommandInput extends TagResourceRequest {}
11
+ export interface TagResourceCommandOutput
12
+ extends TagResourceResponse,
13
+ __MetadataBearer {}
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ BudgetsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: TagResourceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ BudgetsClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BudgetsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BudgetsClient";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
14
+ export interface UntagResourceCommandOutput
15
+ extends UntagResourceResponse,
16
+ __MetadataBearer {}
17
+ declare const UntagResourceCommand_base: {
18
+ new (
19
+ input: UntagResourceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ BudgetsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: UntagResourceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UntagResourceCommandInput,
31
+ UntagResourceCommandOutput,
32
+ BudgetsClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -17,6 +17,9 @@ export * from "./DescribeBudgetsCommand";
17
17
  export * from "./DescribeNotificationsForBudgetCommand";
18
18
  export * from "./DescribeSubscribersForNotificationCommand";
19
19
  export * from "./ExecuteBudgetActionCommand";
20
+ export * from "./ListTagsForResourceCommand";
21
+ export * from "./TagResourceCommand";
22
+ export * from "./UntagResourceCommand";
20
23
  export * from "./UpdateBudgetActionCommand";
21
24
  export * from "./UpdateBudgetCommand";
22
25
  export * from "./UpdateNotificationCommand";
@@ -205,10 +205,15 @@ export interface NotificationWithSubscribers {
205
205
  Notification: Notification | undefined;
206
206
  Subscribers: Subscriber[] | undefined;
207
207
  }
208
+ export interface ResourceTag {
209
+ Key: string | undefined;
210
+ Value: string | undefined;
211
+ }
208
212
  export interface CreateBudgetRequest {
209
213
  AccountId: string | undefined;
210
214
  Budget: Budget | undefined;
211
215
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
216
+ ResourceTags?: ResourceTag[];
212
217
  }
213
218
  export interface CreateBudgetResponse {}
214
219
  export declare class CreationLimitExceededException extends __BaseException {
@@ -243,6 +248,14 @@ export declare class InvalidParameterException extends __BaseException {
243
248
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
244
249
  );
245
250
  }
251
+ export declare class ServiceQuotaExceededException extends __BaseException {
252
+ readonly name: "ServiceQuotaExceededException";
253
+ readonly $fault: "client";
254
+ Message?: string;
255
+ constructor(
256
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
257
+ );
258
+ }
246
259
  export declare class ThrottlingException extends __BaseException {
247
260
  readonly name: "ThrottlingException";
248
261
  readonly $fault: "client";
@@ -261,6 +274,7 @@ export interface CreateBudgetActionRequest {
261
274
  ExecutionRoleArn: string | undefined;
262
275
  ApprovalModel: ApprovalModel | undefined;
263
276
  Subscribers: Subscriber[] | undefined;
277
+ ResourceTags?: ResourceTag[];
264
278
  }
265
279
  export interface CreateBudgetActionResponse {
266
280
  AccountId: string | undefined;
@@ -473,6 +487,22 @@ export interface ExecuteBudgetActionResponse {
473
487
  ActionId: string | undefined;
474
488
  ExecutionType: ExecutionType | undefined;
475
489
  }
490
+ export interface ListTagsForResourceRequest {
491
+ ResourceARN: string | undefined;
492
+ }
493
+ export interface ListTagsForResourceResponse {
494
+ ResourceTags?: ResourceTag[];
495
+ }
496
+ export interface TagResourceRequest {
497
+ ResourceARN: string | undefined;
498
+ ResourceTags: ResourceTag[] | undefined;
499
+ }
500
+ export interface TagResourceResponse {}
501
+ export interface UntagResourceRequest {
502
+ ResourceARN: string | undefined;
503
+ ResourceTagKeys: string[] | undefined;
504
+ }
505
+ export interface UntagResourceResponse {}
476
506
  export interface UpdateBudgetRequest {
477
507
  AccountId: string | undefined;
478
508
  NewBudget: Budget | undefined;
@@ -79,6 +79,18 @@ import {
79
79
  ExecuteBudgetActionCommandInput,
80
80
  ExecuteBudgetActionCommandOutput,
81
81
  } from "../commands/ExecuteBudgetActionCommand";
82
+ import {
83
+ ListTagsForResourceCommandInput,
84
+ ListTagsForResourceCommandOutput,
85
+ } from "../commands/ListTagsForResourceCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "../commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "../commands/UntagResourceCommand";
82
94
  import {
83
95
  UpdateBudgetActionCommandInput,
84
96
  UpdateBudgetActionCommandOutput,
@@ -171,6 +183,18 @@ export declare const se_ExecuteBudgetActionCommand: (
171
183
  input: ExecuteBudgetActionCommandInput,
172
184
  context: __SerdeContext
173
185
  ) => Promise<__HttpRequest>;
186
+ export declare const se_ListTagsForResourceCommand: (
187
+ input: ListTagsForResourceCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const se_TagResourceCommand: (
191
+ input: TagResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const se_UntagResourceCommand: (
195
+ input: UntagResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
174
198
  export declare const se_UpdateBudgetCommand: (
175
199
  input: UpdateBudgetCommandInput,
176
200
  context: __SerdeContext
@@ -263,6 +287,18 @@ export declare const de_ExecuteBudgetActionCommand: (
263
287
  output: __HttpResponse,
264
288
  context: __SerdeContext
265
289
  ) => Promise<ExecuteBudgetActionCommandOutput>;
290
+ export declare const de_ListTagsForResourceCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListTagsForResourceCommandOutput>;
294
+ export declare const de_TagResourceCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<TagResourceCommandOutput>;
298
+ export declare const de_UntagResourceCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<UntagResourceCommandOutput>;
266
302
  export declare const de_UpdateBudgetCommand: (
267
303
  output: __HttpResponse,
268
304
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-budgets",
3
3
  "description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native",
4
- "version": "3.569.0",
4
+ "version": "3.572.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-budgets",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sso-oidc": "3.569.0",
24
- "@aws-sdk/client-sts": "3.569.0",
25
- "@aws-sdk/core": "3.567.0",
26
- "@aws-sdk/credential-provider-node": "3.569.0",
23
+ "@aws-sdk/client-sso-oidc": "3.572.0",
24
+ "@aws-sdk/client-sts": "3.572.0",
25
+ "@aws-sdk/core": "3.572.0",
26
+ "@aws-sdk/credential-provider-node": "3.572.0",
27
27
  "@aws-sdk/middleware-host-header": "3.567.0",
28
28
  "@aws-sdk/middleware-logger": "3.568.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.567.0",
30
- "@aws-sdk/middleware-user-agent": "3.567.0",
31
- "@aws-sdk/region-config-resolver": "3.567.0",
30
+ "@aws-sdk/middleware-user-agent": "3.572.0",
31
+ "@aws-sdk/region-config-resolver": "3.572.0",
32
32
  "@aws-sdk/types": "3.567.0",
33
- "@aws-sdk/util-endpoints": "3.567.0",
33
+ "@aws-sdk/util-endpoints": "3.572.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.567.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.568.0",
36
36
  "@smithy/config-resolver": "^2.2.0",