@wildix/wms-api-client 1.1.17 → 1.1.19

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 (34) hide show
  1. package/dist-cjs/WmsApiClient.js +4 -5
  2. package/dist-cjs/models/models_0.js +13 -6
  3. package/dist-cjs/protocols/Aws_restJson1.js +76 -130
  4. package/dist-cjs/runtimeConfig.browser.js +1 -1
  5. package/dist-cjs/runtimeConfig.js +4 -3
  6. package/dist-cjs/runtimeExtensions.js +2 -10
  7. package/dist-es/WmsApiClient.js +4 -5
  8. package/dist-es/models/models_0.js +13 -6
  9. package/dist-es/protocols/Aws_restJson1.js +39 -93
  10. package/dist-es/runtimeConfig.browser.js +2 -2
  11. package/dist-es/runtimeConfig.js +5 -4
  12. package/dist-es/runtimeExtensions.js +2 -10
  13. package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +12 -0
  14. package/dist-types/commands/CreatePbxColleagueCommand.d.ts +12 -0
  15. package/dist-types/commands/CreatePbxOAuth2ClientCommand.d.ts +12 -0
  16. package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +12 -0
  17. package/dist-types/commands/DeletePbxColleagueCommand.d.ts +12 -0
  18. package/dist-types/commands/DeletePbxOAuth2ClientCommand.d.ts +12 -0
  19. package/dist-types/commands/GetColleagueByIdCommand.d.ts +12 -0
  20. package/dist-types/commands/GetPbxAclGroupsPermissionsCommand.d.ts +12 -0
  21. package/dist-types/commands/GetPbxCallGroupsCommand.d.ts +12 -0
  22. package/dist-types/commands/GetPbxColleaguesCommand.d.ts +33 -0
  23. package/dist-types/commands/GetPbxOAuth2ClientsCommand.d.ts +12 -0
  24. package/dist-types/commands/GetPbxesCommand.d.ts +12 -0
  25. package/dist-types/commands/GetPersonalInfoCommand.d.ts +12 -0
  26. package/dist-types/commands/NotificationsCommand.d.ts +13 -1
  27. package/dist-types/commands/OriginateCallCommand.d.ts +12 -0
  28. package/dist-types/commands/OriginateCommand.d.ts +12 -0
  29. package/dist-types/commands/UpdatePbxOAuth2ClientCommand.d.ts +12 -0
  30. package/dist-types/models/models_0.d.ts +119 -119
  31. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  32. package/dist-types/runtimeConfig.d.ts +2 -1
  33. package/dist-types/runtimeConfig.native.d.ts +2 -1
  34. package/package.json +37 -33
@@ -68,7 +68,19 @@ declare const OriginateCommand_base: {
68
68
  * @throws {@link WmsApiServiceException}
69
69
  * <p>Base exception class for all service exceptions from WmsApi service.</p>
70
70
  *
71
+ *
71
72
  * @public
72
73
  */
73
74
  export declare class OriginateCommand extends OriginateCommand_base {
75
+ /** @internal type navigation helper, not in runtime. */
76
+ protected static __types: {
77
+ api: {
78
+ input: OriginateInput;
79
+ output: OriginateOutput;
80
+ };
81
+ sdk: {
82
+ input: OriginateCommandInput;
83
+ output: OriginateCommandOutput;
84
+ };
85
+ };
74
86
  }
@@ -77,7 +77,19 @@ declare const UpdatePbxOAuth2ClientCommand_base: {
77
77
  * @throws {@link WmsApiServiceException}
78
78
  * <p>Base exception class for all service exceptions from WmsApi service.</p>
79
79
  *
80
+ *
80
81
  * @public
81
82
  */
82
83
  export declare class UpdatePbxOAuth2ClientCommand extends UpdatePbxOAuth2ClientCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: UpdatePbxOAuth2ClientInput;
88
+ output: UpdatePbxOAuth2ClientOutput;
89
+ };
90
+ sdk: {
91
+ input: UpdatePbxOAuth2ClientCommandInput;
92
+ output: UpdatePbxOAuth2ClientCommandOutput;
93
+ };
94
+ };
83
95
  }
@@ -35,9 +35,9 @@ export type AclGroupPermissionAbility = typeof AclGroupPermissionAbility[keyof t
35
35
  * @public
36
36
  */
37
37
  export interface AclGroupRule {
38
- ability?: AclGroupPermissionAbility;
39
- group?: string;
40
- rule?: string;
38
+ ability?: AclGroupPermissionAbility | undefined;
39
+ group?: string | undefined;
40
+ rule?: string | undefined;
41
41
  }
42
42
  /**
43
43
  * @public
@@ -83,8 +83,8 @@ export interface AclGroupPermission {
83
83
  */
84
84
  export interface CreatePbxAclGroupInput {
85
85
  name: string;
86
- inherits?: string;
87
- wcgrp?: string;
86
+ inherits?: string | undefined;
87
+ wcgrp?: string | undefined;
88
88
  rules: (AclGroupRule)[];
89
89
  }
90
90
  /**
@@ -140,33 +140,33 @@ export type PbxColleagueRole = typeof PbxColleagueRole[keyof typeof PbxColleague
140
140
  export interface CreatePbxColleagueInput {
141
141
  extension: string;
142
142
  name: string;
143
- officePhone?: string;
144
- mobilePhone?: string;
145
- faxNumber?: string;
146
- email?: string;
147
- role?: PbxColleagueRole;
148
- groupDn?: string;
149
- language?: string;
150
- dialplan?: string;
151
- faxDialplan?: string;
152
- department?: string;
153
- login?: string;
154
- password?: string;
155
- sipPassword?: string;
156
- licenseType?: PbxLicenseType;
143
+ officePhone?: string | undefined;
144
+ mobilePhone?: string | undefined;
145
+ faxNumber?: string | undefined;
146
+ email?: string | undefined;
147
+ role?: PbxColleagueRole | undefined;
148
+ groupDn?: string | undefined;
149
+ language?: string | undefined;
150
+ dialplan?: string | undefined;
151
+ faxDialplan?: string | undefined;
152
+ department?: string | undefined;
153
+ login?: string | undefined;
154
+ password?: string | undefined;
155
+ sipPassword?: string | undefined;
156
+ licenseType?: PbxLicenseType | undefined;
157
157
  }
158
158
  /**
159
159
  * @public
160
160
  */
161
161
  export interface PbxColleague {
162
162
  id: string;
163
- name?: string;
164
- login?: string;
163
+ name?: string | undefined;
164
+ login?: string | undefined;
165
165
  extension: string;
166
- officePhone?: string;
167
- mobilePhone?: string;
168
- faxNumber?: string;
169
- email?: string;
166
+ officePhone?: string | undefined;
167
+ mobilePhone?: string | undefined;
168
+ faxNumber?: string | undefined;
169
+ email?: string | undefined;
170
170
  pbxDn: string;
171
171
  pbx: string;
172
172
  role: PbxColleagueRole;
@@ -175,9 +175,9 @@ export interface PbxColleague {
175
175
  language: string;
176
176
  dialplan: string;
177
177
  faxDialplan: string;
178
- department?: string;
178
+ department?: string | undefined;
179
179
  picture: string;
180
- sourceId?: string;
180
+ sourceId?: string | undefined;
181
181
  licenseType: PbxLicenseType;
182
182
  jid: string;
183
183
  }
@@ -320,12 +320,12 @@ export interface GetPbxAclGroupsPermissionsInput {
320
320
  * User group(s) ID for filter result. Example: ['12345'] or ['12345','67890','134711']
321
321
  * @public
322
322
  */
323
- groups?: (string)[];
323
+ groups?: (string)[] | undefined;
324
324
  /**
325
325
  * ACL permission(s) key for filter result. Example: ['SEE_CALL_RECORDINGS'] or ['CTI_ANALYTICS','SUPERVISION','SEE_ANALYTICS']
326
326
  * @public
327
327
  */
328
- permissions?: (string)[];
328
+ permissions?: (string)[] | undefined;
329
329
  }
330
330
  /**
331
331
  * @public
@@ -338,41 +338,41 @@ export interface GetPbxAclGroupsPermissionsOutput {
338
338
  * @public
339
339
  */
340
340
  export interface PbxCallGroupAnnounce {
341
- frequency?: number;
342
- holdTime?: string;
343
- roundSeconds?: number;
341
+ frequency?: number | undefined;
342
+ holdTime?: string | undefined;
343
+ roundSeconds?: number | undefined;
344
344
  }
345
345
  /**
346
346
  * @public
347
347
  */
348
348
  export interface PbxCallGroupExitAllMembers {
349
- busy?: boolean;
350
- paused?: boolean;
351
- ringing?: boolean;
349
+ busy?: boolean | undefined;
350
+ paused?: boolean | undefined;
351
+ ringing?: boolean | undefined;
352
352
  }
353
353
  /**
354
354
  * @public
355
355
  */
356
356
  export interface PbxCallGroupSettings {
357
- queueManager?: string;
358
- cid?: string;
359
- autoPause?: string;
360
- autoPauseTime?: number;
361
- autoPauseDelay?: number;
362
- autoPauseBusy?: boolean;
363
- autoPauseUnAvail?: boolean;
364
- maxLen?: number;
365
- retry?: number;
366
- ringInUse?: boolean;
367
- strategy?: string;
368
- defaultPriority?: number;
369
- timeout?: number;
370
- weight?: number;
371
- wrapUpTime?: number;
372
- rule?: string;
373
- announce?: PbxCallGroupAnnounce;
374
- exitAllMembers?: PbxCallGroupExitAllMembers;
375
- smsNumber?: string;
357
+ queueManager?: string | undefined;
358
+ cid?: string | undefined;
359
+ autoPause?: string | undefined;
360
+ autoPauseTime?: number | undefined;
361
+ autoPauseDelay?: number | undefined;
362
+ autoPauseBusy?: boolean | undefined;
363
+ autoPauseUnAvail?: boolean | undefined;
364
+ maxLen?: number | undefined;
365
+ retry?: number | undefined;
366
+ ringInUse?: boolean | undefined;
367
+ strategy?: string | undefined;
368
+ defaultPriority?: number | undefined;
369
+ timeout?: number | undefined;
370
+ weight?: number | undefined;
371
+ wrapUpTime?: number | undefined;
372
+ rule?: string | undefined;
373
+ announce?: PbxCallGroupAnnounce | undefined;
374
+ exitAllMembers?: PbxCallGroupExitAllMembers | undefined;
375
+ smsNumber?: string | undefined;
376
376
  }
377
377
  /**
378
378
  * @public
@@ -452,28 +452,28 @@ export type PbxColleaguesSearchStrategy = typeof PbxColleaguesSearchStrategy[key
452
452
  * @public
453
453
  */
454
454
  export interface GetPbxColleaguesInput {
455
- extension?: (string)[];
456
- id?: (string)[];
457
- officePhone?: (string)[];
458
- mobilePhone?: (string)[];
459
- name?: (string)[];
460
- email?: (string)[];
461
- role?: (string)[];
462
- dialplan?: (string)[];
463
- faxDialplan?: (string)[];
464
- department?: (string)[];
465
- login?: (string)[];
466
- groupDn?: (string)[];
467
- pbxDn?: (string)[];
468
- licenseType?: (PbxLicenseType)[];
469
- fields?: (PbxColleaguesQueryField)[];
470
- searchFields?: (PbxColleaguesQueryField)[];
471
- search?: string;
472
- sort?: (PbxColleaguesQueryField)[];
473
- start?: number;
474
- count?: number;
475
- dir?: GetPbxColleaguesDir;
476
- searchStrategy?: PbxColleaguesSearchStrategy;
455
+ extension?: (string)[] | undefined;
456
+ id?: (string)[] | undefined;
457
+ officePhone?: (string)[] | undefined;
458
+ mobilePhone?: (string)[] | undefined;
459
+ name?: (string)[] | undefined;
460
+ email?: (string)[] | undefined;
461
+ role?: (string)[] | undefined;
462
+ dialplan?: (string)[] | undefined;
463
+ faxDialplan?: (string)[] | undefined;
464
+ department?: (string)[] | undefined;
465
+ login?: (string)[] | undefined;
466
+ groupDn?: (string)[] | undefined;
467
+ pbxDn?: (string)[] | undefined;
468
+ licenseType?: (PbxLicenseType)[] | undefined;
469
+ fields?: (PbxColleaguesQueryField)[] | undefined;
470
+ searchFields?: (PbxColleaguesQueryField)[] | undefined;
471
+ search?: string | undefined;
472
+ sort?: (PbxColleaguesQueryField)[] | undefined;
473
+ start?: number | undefined;
474
+ count?: number | undefined;
475
+ dir?: GetPbxColleaguesDir | undefined;
476
+ searchStrategy?: PbxColleaguesSearchStrategy | undefined;
477
477
  }
478
478
  /**
479
479
  * @public
@@ -543,28 +543,28 @@ export interface GetPbxOAuth2ClientsOutput {
543
543
  * @public
544
544
  */
545
545
  export interface GetPersonalInfoInput {
546
- extension?: (string)[];
547
- id?: (string)[];
548
- officePhone?: (string)[];
549
- mobilePhone?: (string)[];
550
- name?: (string)[];
551
- email?: (string)[];
552
- role?: (string)[];
553
- dialplan?: (string)[];
554
- faxDialplan?: (string)[];
555
- department?: (string)[];
556
- login?: (string)[];
557
- groupDn?: (string)[];
558
- pbxDn?: (string)[];
559
- licenseType?: (PbxLicenseType)[];
560
- fields?: (PbxColleaguesQueryField)[];
561
- searchFields?: (PbxColleaguesQueryField)[];
562
- search?: string;
563
- sort?: (PbxColleaguesQueryField)[];
564
- start?: number;
565
- count?: number;
566
- dir?: GetPbxColleaguesDir;
567
- searchStrategy?: PbxColleaguesSearchStrategy;
546
+ extension?: (string)[] | undefined;
547
+ id?: (string)[] | undefined;
548
+ officePhone?: (string)[] | undefined;
549
+ mobilePhone?: (string)[] | undefined;
550
+ name?: (string)[] | undefined;
551
+ email?: (string)[] | undefined;
552
+ role?: (string)[] | undefined;
553
+ dialplan?: (string)[] | undefined;
554
+ faxDialplan?: (string)[] | undefined;
555
+ department?: (string)[] | undefined;
556
+ login?: (string)[] | undefined;
557
+ groupDn?: (string)[] | undefined;
558
+ pbxDn?: (string)[] | undefined;
559
+ licenseType?: (PbxLicenseType)[] | undefined;
560
+ fields?: (PbxColleaguesQueryField)[] | undefined;
561
+ searchFields?: (PbxColleaguesQueryField)[] | undefined;
562
+ search?: string | undefined;
563
+ sort?: (PbxColleaguesQueryField)[] | undefined;
564
+ start?: number | undefined;
565
+ count?: number | undefined;
566
+ dir?: GetPbxColleaguesDir | undefined;
567
+ searchStrategy?: PbxColleaguesSearchStrategy | undefined;
568
568
  }
569
569
  /**
570
570
  * @public
@@ -598,40 +598,40 @@ export interface NotificationsInput {
598
598
  */
599
599
  broadcastMessage: string;
600
600
  /**
601
- * The conference ID to which the message will be sent.
601
+ * The broadcast ID to which the message will be sent.
602
602
  * @public
603
603
  */
604
- conferenceId: string;
604
+ broadcastId: string;
605
605
  /**
606
606
  * How often (each N seconds) a request has to be repeated.
607
607
  * @public
608
608
  */
609
- playFrequency?: number;
609
+ playFrequency?: number | undefined;
610
610
  /**
611
611
  * How many seconds the request should wait for the confirmation after the start.
612
612
  * @public
613
613
  */
614
- confirmationTimeout?: number;
614
+ confirmationTimeout?: number | undefined;
615
615
  /**
616
616
  * How many seconds the queued request should wait for starting processing.
617
617
  * @public
618
618
  */
619
- queueTimeout?: number;
619
+ queueTimeout?: number | undefined;
620
620
  /**
621
621
  * Indicates the source of the request.
622
622
  * @public
623
623
  */
624
- origin?: string;
624
+ origin?: string | undefined;
625
625
  /**
626
626
  * The priority of the notification.
627
627
  * @public
628
628
  */
629
- priority?: number;
629
+ priority?: number | undefined;
630
630
  /**
631
631
  * The custom request ID.
632
632
  * @public
633
633
  */
634
- customRid?: string;
634
+ customRid?: string | undefined;
635
635
  }
636
636
  /**
637
637
  * @public
@@ -651,17 +651,17 @@ export interface NotificationsOutput {
651
651
  */
652
652
  export interface OriginateInput {
653
653
  channel: string;
654
- exten?: string;
655
- context?: string;
656
- priority?: string;
657
- application?: string;
658
- data?: string;
659
- timeout?: string;
660
- callerid?: string;
661
- variable?: string;
662
- account?: string;
663
- async?: string;
664
- actionid?: string;
654
+ exten?: string | undefined;
655
+ context?: string | undefined;
656
+ priority?: string | undefined;
657
+ application?: string | undefined;
658
+ data?: string | undefined;
659
+ timeout?: string | undefined;
660
+ callerid?: string | undefined;
661
+ variable?: string | undefined;
662
+ account?: string | undefined;
663
+ async?: string | undefined;
664
+ actionid?: string | undefined;
665
665
  }
666
666
  /**
667
667
  * @public
@@ -694,12 +694,12 @@ export interface OriginateCallInput {
694
694
  * The name
695
695
  * @public
696
696
  */
697
- name?: string;
697
+ name?: string | undefined;
698
698
  /**
699
699
  * Date of sending the delayed message. (14/07/2015 15:35)
700
700
  * @public
701
701
  */
702
- postpone?: string;
702
+ postpone?: string | undefined;
703
703
  }
704
704
  /**
705
705
  * @public
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
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>;
@@ -27,5 +27,6 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
27
27
  logger: import("@smithy/types").Logger;
28
28
  extensions: import("./runtimeExtensions").RuntimeExtension[];
29
29
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
30
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
30
31
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
31
32
  };
@@ -7,12 +7,13 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
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
  domain: string;
17
18
  port?: number | undefined;
18
19
  token: import("@wildix/smithy-utils").TokenProvider;
@@ -19,12 +19,13 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
20
  utf8Encoder: (input: string | Uint8Array) => string;
21
21
  disableHostPrefix: boolean;
22
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
22
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
23
23
  maxAttempts: number | import("@smithy/types").Provider<number>;
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
25
  logger: import("@smithy/types").Logger;
26
26
  extensions: import("./runtimeExtensions").RuntimeExtension[];
27
27
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
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
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wms-api-client",
3
3
  "description": "@wildix/wms-api-client client",
4
- "version": "1.1.17",
4
+ "version": "1.1.19",
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": {