@wildix/xbees-kite-client 1.4.1 → 3.1.1

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 (128) hide show
  1. package/dist-cjs/Kite.js +3 -3
  2. package/dist-cjs/KiteClient.js +34 -28
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +40 -0
  5. package/dist-cjs/commands/CancelCalendarEventCommand.js +10 -11
  6. package/dist-cjs/commands/CreateOrUpdateWidgetPreviewCommand.js +10 -11
  7. package/dist-cjs/commands/CreateWidgetCommand.js +10 -11
  8. package/dist-cjs/commands/DeleteWidgetCommand.js +10 -11
  9. package/dist-cjs/commands/GetCalendarSlotsCommand.js +10 -11
  10. package/dist-cjs/commands/GetConfigCommand.js +10 -11
  11. package/dist-cjs/commands/GetSmsNumberConfigurationCommand.js +10 -11
  12. package/dist-cjs/commands/GetWhatsAppNumberConfigurationCommand.js +10 -11
  13. package/dist-cjs/commands/GetWidgetCommand.js +10 -11
  14. package/dist-cjs/commands/ListAgentsCommand.js +10 -11
  15. package/dist-cjs/commands/ListServicesCommand.js +10 -11
  16. package/dist-cjs/commands/ListSmsConfigurationsCommand.js +10 -11
  17. package/dist-cjs/commands/ListSmsNumbersCommand.js +10 -11
  18. package/dist-cjs/commands/ListWhatsAppConfigurationsCommand.js +10 -11
  19. package/dist-cjs/commands/ListWhatsAppNumbersCommand.js +10 -11
  20. package/dist-cjs/commands/ListWhatsAppTemplatesCommand.js +10 -11
  21. package/dist-cjs/commands/ListWidgetsCommand.js +10 -11
  22. package/dist-cjs/commands/PutSmsNumberConfigurationCommand.js +10 -11
  23. package/dist-cjs/commands/PutWhatsAppNumberConfigurationCommand.js +10 -11
  24. package/dist-cjs/commands/RescheduleCalendarEventCommand.js +10 -11
  25. package/dist-cjs/commands/ScheduleCalendarEventCommand.js +10 -11
  26. package/dist-cjs/commands/UpdateWidgetCommand.js +10 -11
  27. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  28. package/dist-cjs/endpoint/bdd.js +28 -0
  29. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  30. package/dist-cjs/index.js +7 -4
  31. package/dist-cjs/models/KiteSyntheticServiceException.js +12 -0
  32. package/dist-cjs/models/enums.js +80 -0
  33. package/dist-cjs/models/errors.js +116 -0
  34. package/dist-cjs/models/models_0.js +0 -303
  35. package/dist-cjs/runtimeConfig.browser.js +11 -11
  36. package/dist-cjs/runtimeConfig.js +22 -18
  37. package/dist-cjs/runtimeConfig.shared.js +30 -10
  38. package/dist-cjs/runtimeExtensions.js +6 -5
  39. package/dist-cjs/schemas/schemas_0.js +1160 -0
  40. package/dist-es/Kite.js +4 -4
  41. package/dist-es/KiteClient.js +30 -24
  42. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  43. package/dist-es/auth/httpAuthSchemeProvider.js +34 -0
  44. package/dist-es/commands/CancelCalendarEventCommand.js +9 -10
  45. package/dist-es/commands/CreateOrUpdateWidgetPreviewCommand.js +9 -10
  46. package/dist-es/commands/CreateWidgetCommand.js +9 -10
  47. package/dist-es/commands/DeleteWidgetCommand.js +9 -10
  48. package/dist-es/commands/GetCalendarSlotsCommand.js +9 -10
  49. package/dist-es/commands/GetConfigCommand.js +9 -10
  50. package/dist-es/commands/GetSmsNumberConfigurationCommand.js +9 -10
  51. package/dist-es/commands/GetWhatsAppNumberConfigurationCommand.js +9 -10
  52. package/dist-es/commands/GetWidgetCommand.js +9 -10
  53. package/dist-es/commands/ListAgentsCommand.js +9 -10
  54. package/dist-es/commands/ListServicesCommand.js +9 -10
  55. package/dist-es/commands/ListSmsConfigurationsCommand.js +9 -10
  56. package/dist-es/commands/ListSmsNumbersCommand.js +9 -10
  57. package/dist-es/commands/ListWhatsAppConfigurationsCommand.js +9 -10
  58. package/dist-es/commands/ListWhatsAppNumbersCommand.js +9 -10
  59. package/dist-es/commands/ListWhatsAppTemplatesCommand.js +9 -10
  60. package/dist-es/commands/ListWidgetsCommand.js +9 -10
  61. package/dist-es/commands/PutSmsNumberConfigurationCommand.js +9 -10
  62. package/dist-es/commands/PutWhatsAppNumberConfigurationCommand.js +9 -10
  63. package/dist-es/commands/RescheduleCalendarEventCommand.js +9 -10
  64. package/dist-es/commands/ScheduleCalendarEventCommand.js +9 -10
  65. package/dist-es/commands/UpdateWidgetCommand.js +9 -10
  66. package/dist-es/endpoint/EndpointParameters.js +12 -0
  67. package/dist-es/endpoint/bdd.js +25 -0
  68. package/dist-es/endpoint/endpointResolver.js +12 -0
  69. package/dist-es/index.js +5 -2
  70. package/dist-es/models/KiteSyntheticServiceException.js +8 -0
  71. package/dist-es/models/enums.js +77 -0
  72. package/dist-es/models/errors.js +105 -0
  73. package/dist-es/models/models_0.js +1 -294
  74. package/dist-es/runtimeConfig.browser.js +7 -7
  75. package/dist-es/runtimeConfig.js +17 -13
  76. package/dist-es/runtimeConfig.shared.js +24 -4
  77. package/dist-es/runtimeExtensions.js +6 -5
  78. package/dist-es/schemas/schemas_0.js +1155 -0
  79. package/dist-types/Kite.d.ts +23 -23
  80. package/dist-types/KiteClient.d.ts +52 -34
  81. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  82. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  83. package/dist-types/commands/CancelCalendarEventCommand.d.ts +12 -8
  84. package/dist-types/commands/CreateOrUpdateWidgetPreviewCommand.d.ts +12 -8
  85. package/dist-types/commands/CreateWidgetCommand.d.ts +12 -8
  86. package/dist-types/commands/DeleteWidgetCommand.d.ts +12 -8
  87. package/dist-types/commands/GetCalendarSlotsCommand.d.ts +12 -8
  88. package/dist-types/commands/GetConfigCommand.d.ts +12 -8
  89. package/dist-types/commands/GetSmsNumberConfigurationCommand.d.ts +12 -8
  90. package/dist-types/commands/GetWhatsAppNumberConfigurationCommand.d.ts +12 -8
  91. package/dist-types/commands/GetWidgetCommand.d.ts +12 -8
  92. package/dist-types/commands/ListAgentsCommand.d.ts +12 -8
  93. package/dist-types/commands/ListServicesCommand.d.ts +12 -8
  94. package/dist-types/commands/ListSmsConfigurationsCommand.d.ts +12 -8
  95. package/dist-types/commands/ListSmsNumbersCommand.d.ts +12 -8
  96. package/dist-types/commands/ListWhatsAppConfigurationsCommand.d.ts +12 -8
  97. package/dist-types/commands/ListWhatsAppNumbersCommand.d.ts +12 -8
  98. package/dist-types/commands/ListWhatsAppTemplatesCommand.d.ts +12 -8
  99. package/dist-types/commands/ListWidgetsCommand.d.ts +12 -8
  100. package/dist-types/commands/PutSmsNumberConfigurationCommand.d.ts +12 -8
  101. package/dist-types/commands/PutWhatsAppNumberConfigurationCommand.d.ts +12 -8
  102. package/dist-types/commands/RescheduleCalendarEventCommand.d.ts +12 -8
  103. package/dist-types/commands/ScheduleCalendarEventCommand.d.ts +12 -8
  104. package/dist-types/commands/UpdateWidgetCommand.d.ts +12 -8
  105. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  106. package/dist-types/endpoint/bdd.d.ts +2 -0
  107. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  108. package/dist-types/extensionConfiguration.d.ts +4 -3
  109. package/dist-types/index.d.ts +6 -2
  110. package/dist-types/models/{KiteServiceException.d.ts → KiteSyntheticServiceException.d.ts} +2 -2
  111. package/dist-types/models/enums.d.ts +197 -0
  112. package/dist-types/models/errors.d.ts +110 -0
  113. package/dist-types/models/models_0.d.ts +105 -381
  114. package/dist-types/runtimeConfig.browser.d.ts +35 -16
  115. package/dist-types/runtimeConfig.d.ts +34 -15
  116. package/dist-types/runtimeConfig.native.d.ts +36 -17
  117. package/dist-types/runtimeConfig.shared.d.ts +20 -3
  118. package/dist-types/runtimeExtensions.d.ts +1 -1
  119. package/dist-types/schemas/schemas_0.d.ts +153 -0
  120. package/package.json +14 -40
  121. package/dist-cjs/models/KiteServiceException.js +0 -12
  122. package/dist-cjs/models/index.js +0 -4
  123. package/dist-cjs/protocols/Aws_restJson1.js +0 -963
  124. package/dist-es/models/KiteServiceException.js +0 -8
  125. package/dist-es/models/index.js +0 -1
  126. package/dist-es/protocols/Aws_restJson1.js +0 -916
  127. package/dist-types/models/index.d.ts +0 -1
  128. package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { GetWhatsAppNumberConfigurationInput, GetWhatsAppNumberConfigurationOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { GetWhatsAppNumberConfigurationInput, GetWhatsAppNumberConfigurationOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetWhatsAppNumberConfigurationCommandInput extends GetWhatsAppN
22
22
  export interface GetWhatsAppNumberConfigurationCommandOutput extends GetWhatsAppNumberConfigurationOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetWhatsAppNumberConfigurationCommand_base: {
25
- new (input: GetWhatsAppNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetWhatsAppNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetWhatsAppNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetWhatsAppNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves the WhatsApp configuration settings for a specific service number.
@@ -33,6 +35,8 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, GetWhatsAppNumberConfigurationCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, GetWhatsAppNumberConfigurationCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // GetWhatsAppNumberConfigurationInput
38
42
  * companyId: "STRING_VALUE",
@@ -221,7 +225,7 @@ declare const GetWhatsAppNumberConfigurationCommand_base: {
221
225
  *
222
226
  * @throws {@link RateLimitExceededException} (client fault)
223
227
  *
224
- * @throws {@link KiteServiceException}
228
+ * @throws {@link KiteSyntheticServiceException}
225
229
  * <p>Base exception class for all service exceptions from Kite service.</p>
226
230
  *
227
231
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { GetWidgetInput, GetWidgetOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { GetWidgetInput, GetWidgetOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface GetWidgetCommandInput extends GetWidgetInput {
22
22
  export interface GetWidgetCommandOutput extends GetWidgetOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetWidgetCommand_base: {
25
- new (input: GetWidgetCommandInput): import("@smithy/smithy-client").CommandImpl<GetWidgetCommandInput, GetWidgetCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: GetWidgetCommandInput): import("@smithy/smithy-client").CommandImpl<GetWidgetCommandInput, GetWidgetCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetWidgetCommandInput): import("@smithy/core/client").CommandImpl<GetWidgetCommandInput, GetWidgetCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetWidgetCommandInput): import("@smithy/core/client").CommandImpl<GetWidgetCommandInput, GetWidgetCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves details of a specific widget by its unique identifier.
@@ -33,6 +35,8 @@ declare const GetWidgetCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, GetWidgetCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, GetWidgetCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // GetWidgetInput
38
42
  * widgetId: "STRING_VALUE", // required
@@ -319,7 +323,7 @@ declare const GetWidgetCommand_base: {
319
323
  *
320
324
  * @throws {@link RateLimitExceededException} (client fault)
321
325
  *
322
- * @throws {@link KiteServiceException}
326
+ * @throws {@link KiteSyntheticServiceException}
323
327
  * <p>Base exception class for all service exceptions from Kite service.</p>
324
328
  *
325
329
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListAgentsInput, ListAgentsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListAgentsInput, ListAgentsOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListAgentsCommandInput extends ListAgentsInput {
22
22
  export interface ListAgentsCommandOutput extends ListAgentsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListAgentsCommand_base: {
25
- new (input: ListAgentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ListAgentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListAgentsCommandInput): import("@smithy/core/client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListAgentsCommandInput): import("@smithy/core/client").CommandImpl<ListAgentsCommandInput, ListAgentsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of agents available for Kite-based conversations, filtered by service, extensions, or emails.
@@ -33,6 +35,8 @@ declare const ListAgentsCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListAgentsCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListAgentsCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListAgentsInput
38
42
  * companyId: "STRING_VALUE",
@@ -88,7 +92,7 @@ declare const ListAgentsCommand_base: {
88
92
  *
89
93
  * @throws {@link RateLimitExceededException} (client fault)
90
94
  *
91
- * @throws {@link KiteServiceException}
95
+ * @throws {@link KiteSyntheticServiceException}
92
96
  * <p>Base exception class for all service exceptions from Kite service.</p>
93
97
  *
94
98
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListServicesInput, ListServicesOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListServicesInput, ListServicesOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListServicesCommandInput extends ListServicesInput {
22
22
  export interface ListServicesCommandOutput extends ListServicesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListServicesCommand_base: {
25
- new (input: ListServicesCommandInput): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListServicesCommandInput): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of available services for Kite-based conversations within the specified organization.
@@ -33,6 +35,8 @@ declare const ListServicesCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListServicesCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListServicesCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListServicesInput
38
42
  * companyId: "STRING_VALUE",
@@ -76,7 +80,7 @@ declare const ListServicesCommand_base: {
76
80
  *
77
81
  * @throws {@link RateLimitExceededException} (client fault)
78
82
  *
79
- * @throws {@link KiteServiceException}
83
+ * @throws {@link KiteSyntheticServiceException}
80
84
  * <p>Base exception class for all service exceptions from Kite service.</p>
81
85
  *
82
86
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListSmsConfigurationsInput, ListSmsConfigurationsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListSmsConfigurationsInput, ListSmsConfigurationsOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListSmsConfigurationsCommandInput extends ListSmsConfigurations
22
22
  export interface ListSmsConfigurationsCommandOutput extends ListSmsConfigurationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListSmsConfigurationsCommand_base: {
25
- new (input: ListSmsConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSmsConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListSmsConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListSmsConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of SMS configurations for all service numbers in the specified company.
@@ -33,6 +35,8 @@ declare const ListSmsConfigurationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListSmsConfigurationsCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListSmsConfigurationsCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListSmsConfigurationsInput
38
42
  * companyId: "STRING_VALUE",
@@ -222,7 +226,7 @@ declare const ListSmsConfigurationsCommand_base: {
222
226
  *
223
227
  * @throws {@link RateLimitExceededException} (client fault)
224
228
  *
225
- * @throws {@link KiteServiceException}
229
+ * @throws {@link KiteSyntheticServiceException}
226
230
  * <p>Base exception class for all service exceptions from Kite service.</p>
227
231
  *
228
232
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListSmsNumbersInput, ListSmsNumbersOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListSmsNumbersInput, ListSmsNumbersOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListSmsNumbersCommandInput extends ListSmsNumbersInput {
22
22
  export interface ListSmsNumbersCommandOutput extends ListSmsNumbersOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListSmsNumbersCommand_base: {
25
- new (input: ListSmsNumbersCommandInput): import("@smithy/smithy-client").CommandImpl<ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSmsNumbersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListSmsNumbersCommandInput): import("@smithy/core/client").CommandImpl<ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListSmsNumbersCommandInput]): import("@smithy/core/client").CommandImpl<ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of available SMS service numbers for the specified company.
@@ -33,6 +35,8 @@ declare const ListSmsNumbersCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListSmsNumbersCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListSmsNumbersCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListSmsNumbersInput
38
42
  * companyId: "STRING_VALUE",
@@ -79,7 +83,7 @@ declare const ListSmsNumbersCommand_base: {
79
83
  *
80
84
  * @throws {@link RateLimitExceededException} (client fault)
81
85
  *
82
- * @throws {@link KiteServiceException}
86
+ * @throws {@link KiteSyntheticServiceException}
83
87
  * <p>Base exception class for all service exceptions from Kite service.</p>
84
88
  *
85
89
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListWhatsAppConfigurationsInput, ListWhatsAppConfigurationsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListWhatsAppConfigurationsInput, ListWhatsAppConfigurationsOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListWhatsAppConfigurationsCommandInput extends ListWhatsAppConf
22
22
  export interface ListWhatsAppConfigurationsCommandOutput extends ListWhatsAppConfigurationsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListWhatsAppConfigurationsCommand_base: {
25
- new (input: ListWhatsAppConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListWhatsAppConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListWhatsAppConfigurationsCommandInput): import("@smithy/core/client").CommandImpl<ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListWhatsAppConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl<ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of WhatsApp configurations for all service numbers in the specified company.
@@ -33,6 +35,8 @@ declare const ListWhatsAppConfigurationsCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListWhatsAppConfigurationsCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListWhatsAppConfigurationsCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListWhatsAppConfigurationsInput
38
42
  * companyId: "STRING_VALUE",
@@ -222,7 +226,7 @@ declare const ListWhatsAppConfigurationsCommand_base: {
222
226
  *
223
227
  * @throws {@link RateLimitExceededException} (client fault)
224
228
  *
225
- * @throws {@link KiteServiceException}
229
+ * @throws {@link KiteSyntheticServiceException}
226
230
  * <p>Base exception class for all service exceptions from Kite service.</p>
227
231
  *
228
232
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListWhatsAppNumbersInput, ListWhatsAppNumbersOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListWhatsAppNumbersInput, ListWhatsAppNumbersOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListWhatsAppNumbersCommandInput extends ListWhatsAppNumbersInpu
22
22
  export interface ListWhatsAppNumbersCommandOutput extends ListWhatsAppNumbersOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListWhatsAppNumbersCommand_base: {
25
- new (input: ListWhatsAppNumbersCommandInput): import("@smithy/smithy-client").CommandImpl<ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListWhatsAppNumbersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListWhatsAppNumbersCommandInput): import("@smithy/core/client").CommandImpl<ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListWhatsAppNumbersCommandInput]): import("@smithy/core/client").CommandImpl<ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of available WhatsApp service numbers for the specified company.
@@ -33,6 +35,8 @@ declare const ListWhatsAppNumbersCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListWhatsAppNumbersCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListWhatsAppNumbersCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListWhatsAppNumbersInput
38
42
  * companyId: "STRING_VALUE",
@@ -79,7 +83,7 @@ declare const ListWhatsAppNumbersCommand_base: {
79
83
  *
80
84
  * @throws {@link RateLimitExceededException} (client fault)
81
85
  *
82
- * @throws {@link KiteServiceException}
86
+ * @throws {@link KiteSyntheticServiceException}
83
87
  * <p>Base exception class for all service exceptions from Kite service.</p>
84
88
  *
85
89
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListWhatsAppTemplatesInput, ListWhatsAppTemplatesOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListWhatsAppTemplatesInput, ListWhatsAppTemplatesOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListWhatsAppTemplatesCommandInput extends ListWhatsAppTemplates
22
22
  export interface ListWhatsAppTemplatesCommandOutput extends ListWhatsAppTemplatesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListWhatsAppTemplatesCommand_base: {
25
- new (input: ListWhatsAppTemplatesCommandInput): import("@smithy/smithy-client").CommandImpl<ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: ListWhatsAppTemplatesCommandInput): import("@smithy/smithy-client").CommandImpl<ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListWhatsAppTemplatesCommandInput): import("@smithy/core/client").CommandImpl<ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListWhatsAppTemplatesCommandInput): import("@smithy/core/client").CommandImpl<ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of available WhatsApp message templates for a specific service number.
@@ -33,6 +35,8 @@ declare const ListWhatsAppTemplatesCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListWhatsAppTemplatesCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListWhatsAppTemplatesCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListWhatsAppTemplatesInput
38
42
  * companyId: "STRING_VALUE",
@@ -97,7 +101,7 @@ declare const ListWhatsAppTemplatesCommand_base: {
97
101
  *
98
102
  * @throws {@link RateLimitExceededException} (client fault)
99
103
  *
100
- * @throws {@link KiteServiceException}
104
+ * @throws {@link KiteSyntheticServiceException}
101
105
  * <p>Base exception class for all service exceptions from Kite service.</p>
102
106
  *
103
107
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { ListWidgetsInput, ListWidgetsOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { ListWidgetsInput, ListWidgetsOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface ListWidgetsCommandInput extends ListWidgetsInput {
22
22
  export interface ListWidgetsCommandOutput extends ListWidgetsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListWidgetsCommand_base: {
25
- new (input: ListWidgetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWidgetsCommandInput, ListWidgetsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListWidgetsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWidgetsCommandInput, ListWidgetsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListWidgetsCommandInput): import("@smithy/core/client").CommandImpl<ListWidgetsCommandInput, ListWidgetsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListWidgetsCommandInput]): import("@smithy/core/client").CommandImpl<ListWidgetsCommandInput, ListWidgetsCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Retrieves a list of Kite widgets for the specified company.
@@ -33,6 +35,8 @@ declare const ListWidgetsCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, ListWidgetsCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, ListWidgetsCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // ListWidgetsInput
38
42
  * companyId: "STRING_VALUE",
@@ -319,7 +323,7 @@ declare const ListWidgetsCommand_base: {
319
323
  *
320
324
  * @throws {@link RateLimitExceededException} (client fault)
321
325
  *
322
- * @throws {@link KiteServiceException}
326
+ * @throws {@link KiteSyntheticServiceException}
323
327
  * <p>Base exception class for all service exceptions from Kite service.</p>
324
328
  *
325
329
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { PutSmsNumberConfigurationInput, PutSmsNumberConfigurationOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { PutSmsNumberConfigurationInput, PutSmsNumberConfigurationOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface PutSmsNumberConfigurationCommandInput extends PutSmsNumberConfi
22
22
  export interface PutSmsNumberConfigurationCommandOutput extends PutSmsNumberConfigurationOutput, __MetadataBearer {
23
23
  }
24
24
  declare const PutSmsNumberConfigurationCommand_base: {
25
- new (input: PutSmsNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: PutSmsNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: PutSmsNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: PutSmsNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Creates or updates the SMS configuration settings for a specific service number.
@@ -33,6 +35,8 @@ declare const PutSmsNumberConfigurationCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, PutSmsNumberConfigurationCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, PutSmsNumberConfigurationCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // PutSmsNumberConfigurationInput
38
42
  * serviceUri: "STRING_VALUE", // required
@@ -377,7 +381,7 @@ declare const PutSmsNumberConfigurationCommand_base: {
377
381
  *
378
382
  * @throws {@link RateLimitExceededException} (client fault)
379
383
  *
380
- * @throws {@link KiteServiceException}
384
+ * @throws {@link KiteSyntheticServiceException}
381
385
  * <p>Base exception class for all service exceptions from Kite service.</p>
382
386
  *
383
387
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { PutWhatsAppNumberConfigurationInput, PutWhatsAppNumberConfigurationOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { PutWhatsAppNumberConfigurationInput, PutWhatsAppNumberConfigurationOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface PutWhatsAppNumberConfigurationCommandInput extends PutWhatsAppN
22
22
  export interface PutWhatsAppNumberConfigurationCommandOutput extends PutWhatsAppNumberConfigurationOutput, __MetadataBearer {
23
23
  }
24
24
  declare const PutWhatsAppNumberConfigurationCommand_base: {
25
- new (input: PutWhatsAppNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: PutWhatsAppNumberConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: PutWhatsAppNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: PutWhatsAppNumberConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Creates or updates the WhatsApp configuration settings for a specific service number.
@@ -33,6 +35,8 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, PutWhatsAppNumberConfigurationCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, PutWhatsAppNumberConfigurationCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // PutWhatsAppNumberConfigurationInput
38
42
  * serviceUri: "STRING_VALUE", // required
@@ -377,7 +381,7 @@ declare const PutWhatsAppNumberConfigurationCommand_base: {
377
381
  *
378
382
  * @throws {@link RateLimitExceededException} (client fault)
379
383
  *
380
- * @throws {@link KiteServiceException}
384
+ * @throws {@link KiteSyntheticServiceException}
381
385
  * <p>Base exception class for all service exceptions from Kite service.</p>
382
386
  *
383
387
  *
@@ -1,7 +1,7 @@
1
- import { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
2
- import { RescheduleCalendarEventInput, RescheduleCalendarEventOutput } from "../models/models_0";
3
- import { Command as $Command } from "@smithy/smithy-client";
4
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KiteClient";
4
+ import type { RescheduleCalendarEventInput, RescheduleCalendarEventOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -22,9 +22,11 @@ export interface RescheduleCalendarEventCommandInput extends RescheduleCalendarE
22
22
  export interface RescheduleCalendarEventCommandOutput extends RescheduleCalendarEventOutput, __MetadataBearer {
23
23
  }
24
24
  declare const RescheduleCalendarEventCommand_base: {
25
- new (input: RescheduleCalendarEventCommandInput): import("@smithy/smithy-client").CommandImpl<RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: RescheduleCalendarEventCommandInput): import("@smithy/smithy-client").CommandImpl<RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: RescheduleCalendarEventCommandInput): import("@smithy/core/client").CommandImpl<RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RescheduleCalendarEventCommandInput): import("@smithy/core/client").CommandImpl<RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput, KiteClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * Reschedules an existing calendar event, updating its time, duration, attendees, or other details.
@@ -33,6 +35,8 @@ declare const RescheduleCalendarEventCommand_base: {
33
35
  * ```javascript
34
36
  * import { KiteClient, RescheduleCalendarEventCommand } from "@wildix/xbees-kite-client"; // ES Modules import
35
37
  * // const { KiteClient, RescheduleCalendarEventCommand } = require("@wildix/xbees-kite-client"); // CommonJS import
38
+ * // import type { KiteClientConfig } from "@wildix/xbees-kite-client";
39
+ * const config = {}; // type is KiteClientConfig
36
40
  * const client = new KiteClient(config);
37
41
  * const input = { // RescheduleCalendarEventInput
38
42
  * channelId: "STRING_VALUE", // required
@@ -159,7 +163,7 @@ declare const RescheduleCalendarEventCommand_base: {
159
163
  *
160
164
  * @throws {@link RateLimitExceededException} (client fault)
161
165
  *
162
- * @throws {@link KiteServiceException}
166
+ * @throws {@link KiteSyntheticServiceException}
163
167
  * <p>Base exception class for all service exceptions from Kite service.</p>
164
168
  *
165
169
  *