@wildix/xbees-kite-client 1.0.15 → 1.0.17

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 (65) hide show
  1. package/dist-cjs/Kite.js +18 -0
  2. package/dist-cjs/KiteClient.js +4 -5
  3. package/dist-cjs/commands/GetSmsNumberConfigurationCommand.js +21 -0
  4. package/dist-cjs/commands/GetWhatsAppNumberConfigurationCommand.js +21 -0
  5. package/dist-cjs/commands/ListSmsConfigurationsCommand.js +21 -0
  6. package/dist-cjs/commands/ListSmsNumbersCommand.js +21 -0
  7. package/dist-cjs/commands/ListWhatsAppConfigurationsCommand.js +21 -0
  8. package/dist-cjs/commands/ListWhatsAppNumbersCommand.js +21 -0
  9. package/dist-cjs/commands/ListWhatsAppTemplatesCommand.js +21 -0
  10. package/dist-cjs/commands/PutSmsNumberConfigurationCommand.js +21 -0
  11. package/dist-cjs/commands/PutWhatsAppNumberConfigurationCommand.js +21 -0
  12. package/dist-cjs/commands/index.js +9 -0
  13. package/dist-cjs/models/models_0.js +113 -22
  14. package/dist-cjs/protocols/Aws_restJson1.js +342 -76
  15. package/dist-cjs/runtimeConfig.browser.js +1 -1
  16. package/dist-cjs/runtimeConfig.js +4 -3
  17. package/dist-cjs/runtimeExtensions.js +2 -10
  18. package/dist-es/Kite.js +18 -0
  19. package/dist-es/KiteClient.js +4 -5
  20. package/dist-es/commands/GetSmsNumberConfigurationCommand.js +17 -0
  21. package/dist-es/commands/GetWhatsAppNumberConfigurationCommand.js +17 -0
  22. package/dist-es/commands/ListSmsConfigurationsCommand.js +17 -0
  23. package/dist-es/commands/ListSmsNumbersCommand.js +17 -0
  24. package/dist-es/commands/ListWhatsAppConfigurationsCommand.js +17 -0
  25. package/dist-es/commands/ListWhatsAppNumbersCommand.js +17 -0
  26. package/dist-es/commands/ListWhatsAppTemplatesCommand.js +17 -0
  27. package/dist-es/commands/PutSmsNumberConfigurationCommand.js +17 -0
  28. package/dist-es/commands/PutWhatsAppNumberConfigurationCommand.js +17 -0
  29. package/dist-es/commands/index.js +9 -0
  30. package/dist-es/models/models_0.js +105 -15
  31. package/dist-es/protocols/Aws_restJson1.js +296 -48
  32. package/dist-es/runtimeConfig.browser.js +2 -2
  33. package/dist-es/runtimeConfig.js +5 -4
  34. package/dist-es/runtimeExtensions.js +2 -10
  35. package/dist-types/Kite.d.ts +67 -0
  36. package/dist-types/KiteClient.d.ts +11 -2
  37. package/dist-types/commands/CancelCalendarEventCommand.d.ts +17 -0
  38. package/dist-types/commands/CreateOrUpdateWidgetPreviewCommand.d.ts +118 -0
  39. package/dist-types/commands/CreateWidgetCommand.d.ts +118 -0
  40. package/dist-types/commands/DeleteWidgetCommand.d.ts +14 -0
  41. package/dist-types/commands/GetCalendarSlotsCommand.d.ts +14 -0
  42. package/dist-types/commands/GetConfigCommand.d.ts +14 -0
  43. package/dist-types/commands/GetSmsNumberConfigurationCommand.d.ts +178 -0
  44. package/dist-types/commands/GetWhatsAppNumberConfigurationCommand.d.ts +178 -0
  45. package/dist-types/commands/GetWidgetCommand.d.ts +66 -0
  46. package/dist-types/commands/ListAgentsCommand.d.ts +14 -0
  47. package/dist-types/commands/ListServicesCommand.d.ts +14 -0
  48. package/dist-types/commands/ListSmsConfigurationsCommand.d.ts +179 -0
  49. package/dist-types/commands/ListSmsNumbersCommand.d.ts +82 -0
  50. package/dist-types/commands/ListWhatsAppConfigurationsCommand.d.ts +179 -0
  51. package/dist-types/commands/ListWhatsAppNumbersCommand.d.ts +82 -0
  52. package/dist-types/commands/ListWhatsAppTemplatesCommand.d.ts +118 -0
  53. package/dist-types/commands/ListWidgetsCommand.d.ts +66 -0
  54. package/dist-types/commands/PutSmsNumberConfigurationCommand.d.ts +270 -0
  55. package/dist-types/commands/PutWhatsAppNumberConfigurationCommand.d.ts +270 -0
  56. package/dist-types/commands/RescheduleCalendarEventCommand.d.ts +17 -0
  57. package/dist-types/commands/ScheduleCalendarEventCommand.d.ts +17 -0
  58. package/dist-types/commands/UpdateWidgetCommand.d.ts +118 -0
  59. package/dist-types/commands/index.d.ts +9 -0
  60. package/dist-types/models/models_0.d.ts +869 -161
  61. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  62. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  63. package/dist-types/runtimeConfig.d.ts +2 -1
  64. package/dist-types/runtimeConfig.native.d.ts +2 -1
  65. package/package.json +37 -33
@@ -4,10 +4,19 @@ import { CreateWidgetCommandInput, CreateWidgetCommandOutput } from "../commands
4
4
  import { DeleteWidgetCommandInput, DeleteWidgetCommandOutput } from "../commands/DeleteWidgetCommand";
5
5
  import { GetCalendarSlotsCommandInput, GetCalendarSlotsCommandOutput } from "../commands/GetCalendarSlotsCommand";
6
6
  import { GetConfigCommandInput, GetConfigCommandOutput } from "../commands/GetConfigCommand";
7
+ import { GetSmsNumberConfigurationCommandInput, GetSmsNumberConfigurationCommandOutput } from "../commands/GetSmsNumberConfigurationCommand";
8
+ import { GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput } from "../commands/GetWhatsAppNumberConfigurationCommand";
7
9
  import { GetWidgetCommandInput, GetWidgetCommandOutput } from "../commands/GetWidgetCommand";
8
10
  import { ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand";
9
11
  import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
12
+ import { ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput } from "../commands/ListSmsConfigurationsCommand";
13
+ import { ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput } from "../commands/ListSmsNumbersCommand";
14
+ import { ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput } from "../commands/ListWhatsAppConfigurationsCommand";
15
+ import { ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput } from "../commands/ListWhatsAppNumbersCommand";
16
+ import { ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput } from "../commands/ListWhatsAppTemplatesCommand";
10
17
  import { ListWidgetsCommandInput, ListWidgetsCommandOutput } from "../commands/ListWidgetsCommand";
18
+ import { PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput } from "../commands/PutSmsNumberConfigurationCommand";
19
+ import { PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput } from "../commands/PutWhatsAppNumberConfigurationCommand";
11
20
  import { RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput } from "../commands/RescheduleCalendarEventCommand";
12
21
  import { ScheduleCalendarEventCommandInput, ScheduleCalendarEventCommandOutput } from "../commands/ScheduleCalendarEventCommand";
13
22
  import { UpdateWidgetCommandInput, UpdateWidgetCommandOutput } from "../commands/UpdateWidgetCommand";
@@ -37,6 +46,14 @@ export declare const se_GetCalendarSlotsCommand: (input: GetCalendarSlotsCommand
37
46
  * serializeAws_restJson1GetConfigCommand
38
47
  */
39
48
  export declare const se_GetConfigCommand: (input: GetConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ /**
50
+ * serializeAws_restJson1GetSmsNumberConfigurationCommand
51
+ */
52
+ export declare const se_GetSmsNumberConfigurationCommand: (input: GetSmsNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * serializeAws_restJson1GetWhatsAppNumberConfigurationCommand
55
+ */
56
+ export declare const se_GetWhatsAppNumberConfigurationCommand: (input: GetWhatsAppNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
57
  /**
41
58
  * serializeAws_restJson1GetWidgetCommand
42
59
  */
@@ -49,10 +66,38 @@ export declare const se_ListAgentsCommand: (input: ListAgentsCommandInput, conte
49
66
  * serializeAws_restJson1ListServicesCommand
50
67
  */
51
68
  export declare const se_ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ /**
70
+ * serializeAws_restJson1ListSmsConfigurationsCommand
71
+ */
72
+ export declare const se_ListSmsConfigurationsCommand: (input: ListSmsConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
+ /**
74
+ * serializeAws_restJson1ListSmsNumbersCommand
75
+ */
76
+ export declare const se_ListSmsNumbersCommand: (input: ListSmsNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ /**
78
+ * serializeAws_restJson1ListWhatsAppConfigurationsCommand
79
+ */
80
+ export declare const se_ListWhatsAppConfigurationsCommand: (input: ListWhatsAppConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ /**
82
+ * serializeAws_restJson1ListWhatsAppNumbersCommand
83
+ */
84
+ export declare const se_ListWhatsAppNumbersCommand: (input: ListWhatsAppNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ /**
86
+ * serializeAws_restJson1ListWhatsAppTemplatesCommand
87
+ */
88
+ export declare const se_ListWhatsAppTemplatesCommand: (input: ListWhatsAppTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
89
  /**
53
90
  * serializeAws_restJson1ListWidgetsCommand
54
91
  */
55
92
  export declare const se_ListWidgetsCommand: (input: ListWidgetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ /**
94
+ * serializeAws_restJson1PutSmsNumberConfigurationCommand
95
+ */
96
+ export declare const se_PutSmsNumberConfigurationCommand: (input: PutSmsNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ /**
98
+ * serializeAws_restJson1PutWhatsAppNumberConfigurationCommand
99
+ */
100
+ export declare const se_PutWhatsAppNumberConfigurationCommand: (input: PutWhatsAppNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
101
  /**
57
102
  * serializeAws_restJson1RescheduleCalendarEventCommand
58
103
  */
@@ -89,6 +134,14 @@ export declare const de_GetCalendarSlotsCommand: (output: __HttpResponse, contex
89
134
  * deserializeAws_restJson1GetConfigCommand
90
135
  */
91
136
  export declare const de_GetConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigCommandOutput>;
137
+ /**
138
+ * deserializeAws_restJson1GetSmsNumberConfigurationCommand
139
+ */
140
+ export declare const de_GetSmsNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSmsNumberConfigurationCommandOutput>;
141
+ /**
142
+ * deserializeAws_restJson1GetWhatsAppNumberConfigurationCommand
143
+ */
144
+ export declare const de_GetWhatsAppNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWhatsAppNumberConfigurationCommandOutput>;
92
145
  /**
93
146
  * deserializeAws_restJson1GetWidgetCommand
94
147
  */
@@ -101,10 +154,38 @@ export declare const de_ListAgentsCommand: (output: __HttpResponse, context: __S
101
154
  * deserializeAws_restJson1ListServicesCommand
102
155
  */
103
156
  export declare const de_ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
157
+ /**
158
+ * deserializeAws_restJson1ListSmsConfigurationsCommand
159
+ */
160
+ export declare const de_ListSmsConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSmsConfigurationsCommandOutput>;
161
+ /**
162
+ * deserializeAws_restJson1ListSmsNumbersCommand
163
+ */
164
+ export declare const de_ListSmsNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSmsNumbersCommandOutput>;
165
+ /**
166
+ * deserializeAws_restJson1ListWhatsAppConfigurationsCommand
167
+ */
168
+ export declare const de_ListWhatsAppConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppConfigurationsCommandOutput>;
169
+ /**
170
+ * deserializeAws_restJson1ListWhatsAppNumbersCommand
171
+ */
172
+ export declare const de_ListWhatsAppNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppNumbersCommandOutput>;
173
+ /**
174
+ * deserializeAws_restJson1ListWhatsAppTemplatesCommand
175
+ */
176
+ export declare const de_ListWhatsAppTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppTemplatesCommandOutput>;
104
177
  /**
105
178
  * deserializeAws_restJson1ListWidgetsCommand
106
179
  */
107
180
  export declare const de_ListWidgetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWidgetsCommandOutput>;
181
+ /**
182
+ * deserializeAws_restJson1PutSmsNumberConfigurationCommand
183
+ */
184
+ export declare const de_PutSmsNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSmsNumberConfigurationCommandOutput>;
185
+ /**
186
+ * deserializeAws_restJson1PutWhatsAppNumberConfigurationCommand
187
+ */
188
+ export declare const de_PutWhatsAppNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutWhatsAppNumberConfigurationCommandOutput>;
108
189
  /**
109
190
  * deserializeAws_restJson1RescheduleCalendarEventCommand
110
191
  */
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KiteClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
10
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
11
  maxAttempts: number | import("@smithy/types").Provider<number>;
12
12
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
13
13
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -26,5 +26,6 @@ export declare const getRuntimeConfig: (config: KiteClientConfig) => {
26
26
  logger: import("@smithy/types").Logger;
27
27
  extensions: import("./runtimeExtensions").RuntimeExtension[];
28
28
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
29
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
29
30
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
30
31
  };
@@ -7,12 +7,13 @@ export declare const getRuntimeConfig: (config: KiteClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
10
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
11
  maxAttempts: number | import("@smithy/types").Provider<number>;
12
12
  requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
13
13
  retryMode: string | import("@smithy/types").Provider<string>;
14
14
  sha256: import("@smithy/types").HashConstructor;
15
15
  streamCollector: import("@smithy/types").StreamCollector;
16
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
16
17
  env?: "stage" | "stable" | "prod" | undefined;
17
18
  token?: import("@wildix/smithy-utils").TokenProvider | undefined;
18
19
  apiVersion: string;
@@ -18,12 +18,13 @@ export declare const getRuntimeConfig: (config: KiteClientConfig) => {
18
18
  utf8Decoder: import("@smithy/types").Decoder;
19
19
  utf8Encoder: (input: string | Uint8Array) => string;
20
20
  disableHostPrefix: boolean;
21
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
21
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
22
22
  maxAttempts: number | import("@smithy/types").Provider<number>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
24
  logger: import("@smithy/types").Logger;
25
25
  extensions: import("./runtimeExtensions").RuntimeExtension[];
26
26
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
27
27
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
28
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
28
29
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
29
30
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/xbees-kite-client",
3
3
  "description": "@wildix/xbees-kite-client client",
4
- "version": "1.0.15",
4
+ "version": "1.0.17",
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",
@@ -18,46 +18,50 @@
18
18
  "sideEffects": false,
19
19
  "dependencies": {
20
20
  "tslib": "^2.6.2",
21
- "@aws-crypto/sha256-browser": "3.0.0",
22
- "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/middleware-user-agent": "3.587.0",
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/middleware-host-header": "3.775.0",
25
+ "@aws-sdk/middleware-logger": "3.775.0",
26
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
27
+ "@aws-sdk/middleware-user-agent": "3.775.0",
24
28
  "@aws-sdk/types": "latest",
25
- "@aws-sdk/util-user-agent-browser": "3.577.0",
26
- "@aws-sdk/util-user-agent-node": "3.587.0",
27
- "@smithy/config-resolver": "^3.0.1",
28
- "@smithy/core": "^2.2.0",
29
- "@smithy/fetch-http-handler": "^3.0.1",
30
- "@smithy/hash-node": "^3.0.0",
31
- "@smithy/invalid-dependency": "^3.0.0",
32
- "@smithy/middleware-content-length": "^3.0.0",
33
- "@smithy/middleware-retry": "^3.0.3",
34
- "@smithy/middleware-serde": "^3.0.0",
35
- "@smithy/middleware-stack": "^3.0.0",
36
- "@smithy/node-config-provider": "^3.1.0",
37
- "@smithy/node-http-handler": "^3.0.0",
38
- "@smithy/protocol-http": "^4.0.0",
39
- "@smithy/smithy-client": "^3.1.1",
40
- "@smithy/types": "^3.0.0",
41
- "@smithy/url-parser": "^3.0.0",
42
- "@smithy/util-base64": "^3.0.0",
43
- "@smithy/util-body-length-browser": "^3.0.0",
44
- "@smithy/util-body-length-node": "^3.0.0",
45
- "@smithy/util-defaults-mode-browser": "^3.0.3",
46
- "@smithy/util-defaults-mode-node": "^3.0.3",
47
- "@smithy/util-retry": "^3.0.0",
48
- "@smithy/util-utf8": "^3.0.0",
49
- "@wildix/smithy-utils": "^1.0.2"
29
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
30
+ "@aws-sdk/util-user-agent-node": "3.775.0",
31
+ "@smithy/config-resolver": "^4.1.0",
32
+ "@smithy/core": "^3.2.0",
33
+ "@smithy/fetch-http-handler": "^5.0.2",
34
+ "@smithy/hash-node": "^4.0.2",
35
+ "@smithy/invalid-dependency": "^4.0.2",
36
+ "@smithy/middleware-content-length": "^4.0.2",
37
+ "@smithy/middleware-retry": "^4.1.0",
38
+ "@smithy/middleware-serde": "^4.0.3",
39
+ "@smithy/middleware-stack": "^4.0.2",
40
+ "@smithy/node-config-provider": "^4.0.2",
41
+ "@smithy/node-http-handler": "^4.0.4",
42
+ "@smithy/protocol-http": "^5.1.0",
43
+ "@smithy/smithy-client": "^4.2.0",
44
+ "@smithy/types": "^4.2.0",
45
+ "@smithy/url-parser": "^4.0.2",
46
+ "@smithy/util-base64": "^4.0.0",
47
+ "@smithy/util-body-length-browser": "^4.0.0",
48
+ "@smithy/util-body-length-node": "^4.0.0",
49
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
50
+ "@smithy/util-defaults-mode-node": "^4.0.8",
51
+ "@smithy/util-retry": "^4.0.2",
52
+ "@smithy/util-utf8": "^4.0.0",
53
+ "@wildix/smithy-utils": "^1.0.3"
50
54
  },
51
55
  "devDependencies": {
52
- "@tsconfig/node16": "16.1.3",
56
+ "@tsconfig/node18": "18.2.4",
53
57
  "concurrently": "7.0.0",
54
58
  "downlevel-dts": "0.10.1",
55
59
  "rimraf": "^3.0.0",
56
- "typescript": "~4.9.5",
57
- "@types/node": "^16.18.96"
60
+ "typescript": "~5.2.2",
61
+ "@types/node": "^18.19.69"
58
62
  },
59
63
  "engines": {
60
- "node": ">=16.0.0"
64
+ "node": ">=18.0.0"
61
65
  },
62
66
  "typesVersions": {
63
67
  "<4.0": {