@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.
- package/dist-cjs/Kite.js +3 -3
- package/dist-cjs/KiteClient.js +34 -28
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-cjs/commands/CancelCalendarEventCommand.js +10 -11
- package/dist-cjs/commands/CreateOrUpdateWidgetPreviewCommand.js +10 -11
- package/dist-cjs/commands/CreateWidgetCommand.js +10 -11
- package/dist-cjs/commands/DeleteWidgetCommand.js +10 -11
- package/dist-cjs/commands/GetCalendarSlotsCommand.js +10 -11
- package/dist-cjs/commands/GetConfigCommand.js +10 -11
- package/dist-cjs/commands/GetSmsNumberConfigurationCommand.js +10 -11
- package/dist-cjs/commands/GetWhatsAppNumberConfigurationCommand.js +10 -11
- package/dist-cjs/commands/GetWidgetCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsCommand.js +10 -11
- package/dist-cjs/commands/ListServicesCommand.js +10 -11
- package/dist-cjs/commands/ListSmsConfigurationsCommand.js +10 -11
- package/dist-cjs/commands/ListSmsNumbersCommand.js +10 -11
- package/dist-cjs/commands/ListWhatsAppConfigurationsCommand.js +10 -11
- package/dist-cjs/commands/ListWhatsAppNumbersCommand.js +10 -11
- package/dist-cjs/commands/ListWhatsAppTemplatesCommand.js +10 -11
- package/dist-cjs/commands/ListWidgetsCommand.js +10 -11
- package/dist-cjs/commands/PutSmsNumberConfigurationCommand.js +10 -11
- package/dist-cjs/commands/PutWhatsAppNumberConfigurationCommand.js +10 -11
- package/dist-cjs/commands/RescheduleCalendarEventCommand.js +10 -11
- package/dist-cjs/commands/ScheduleCalendarEventCommand.js +10 -11
- package/dist-cjs/commands/UpdateWidgetCommand.js +10 -11
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +7 -4
- package/dist-cjs/models/KiteSyntheticServiceException.js +12 -0
- package/dist-cjs/models/enums.js +80 -0
- package/dist-cjs/models/errors.js +116 -0
- package/dist-cjs/models/models_0.js +0 -303
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1160 -0
- package/dist-es/Kite.js +4 -4
- package/dist-es/KiteClient.js +30 -24
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +34 -0
- package/dist-es/commands/CancelCalendarEventCommand.js +9 -10
- package/dist-es/commands/CreateOrUpdateWidgetPreviewCommand.js +9 -10
- package/dist-es/commands/CreateWidgetCommand.js +9 -10
- package/dist-es/commands/DeleteWidgetCommand.js +9 -10
- package/dist-es/commands/GetCalendarSlotsCommand.js +9 -10
- package/dist-es/commands/GetConfigCommand.js +9 -10
- package/dist-es/commands/GetSmsNumberConfigurationCommand.js +9 -10
- package/dist-es/commands/GetWhatsAppNumberConfigurationCommand.js +9 -10
- package/dist-es/commands/GetWidgetCommand.js +9 -10
- package/dist-es/commands/ListAgentsCommand.js +9 -10
- package/dist-es/commands/ListServicesCommand.js +9 -10
- package/dist-es/commands/ListSmsConfigurationsCommand.js +9 -10
- package/dist-es/commands/ListSmsNumbersCommand.js +9 -10
- package/dist-es/commands/ListWhatsAppConfigurationsCommand.js +9 -10
- package/dist-es/commands/ListWhatsAppNumbersCommand.js +9 -10
- package/dist-es/commands/ListWhatsAppTemplatesCommand.js +9 -10
- package/dist-es/commands/ListWidgetsCommand.js +9 -10
- package/dist-es/commands/PutSmsNumberConfigurationCommand.js +9 -10
- package/dist-es/commands/PutWhatsAppNumberConfigurationCommand.js +9 -10
- package/dist-es/commands/RescheduleCalendarEventCommand.js +9 -10
- package/dist-es/commands/ScheduleCalendarEventCommand.js +9 -10
- package/dist-es/commands/UpdateWidgetCommand.js +9 -10
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +5 -2
- package/dist-es/models/KiteSyntheticServiceException.js +8 -0
- package/dist-es/models/enums.js +77 -0
- package/dist-es/models/errors.js +105 -0
- package/dist-es/models/models_0.js +1 -294
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1155 -0
- package/dist-types/Kite.d.ts +23 -23
- package/dist-types/KiteClient.d.ts +52 -34
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CancelCalendarEventCommand.d.ts +12 -8
- package/dist-types/commands/CreateOrUpdateWidgetPreviewCommand.d.ts +12 -8
- package/dist-types/commands/CreateWidgetCommand.d.ts +12 -8
- package/dist-types/commands/DeleteWidgetCommand.d.ts +12 -8
- package/dist-types/commands/GetCalendarSlotsCommand.d.ts +12 -8
- package/dist-types/commands/GetConfigCommand.d.ts +12 -8
- package/dist-types/commands/GetSmsNumberConfigurationCommand.d.ts +12 -8
- package/dist-types/commands/GetWhatsAppNumberConfigurationCommand.d.ts +12 -8
- package/dist-types/commands/GetWidgetCommand.d.ts +12 -8
- package/dist-types/commands/ListAgentsCommand.d.ts +12 -8
- package/dist-types/commands/ListServicesCommand.d.ts +12 -8
- package/dist-types/commands/ListSmsConfigurationsCommand.d.ts +12 -8
- package/dist-types/commands/ListSmsNumbersCommand.d.ts +12 -8
- package/dist-types/commands/ListWhatsAppConfigurationsCommand.d.ts +12 -8
- package/dist-types/commands/ListWhatsAppNumbersCommand.d.ts +12 -8
- package/dist-types/commands/ListWhatsAppTemplatesCommand.d.ts +12 -8
- package/dist-types/commands/ListWidgetsCommand.d.ts +12 -8
- package/dist-types/commands/PutSmsNumberConfigurationCommand.d.ts +12 -8
- package/dist-types/commands/PutWhatsAppNumberConfigurationCommand.d.ts +12 -8
- package/dist-types/commands/RescheduleCalendarEventCommand.d.ts +12 -8
- package/dist-types/commands/ScheduleCalendarEventCommand.d.ts +12 -8
- package/dist-types/commands/UpdateWidgetCommand.d.ts +12 -8
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +6 -2
- package/dist-types/models/{KiteServiceException.d.ts → KiteSyntheticServiceException.d.ts} +2 -2
- package/dist-types/models/enums.d.ts +197 -0
- package/dist-types/models/errors.d.ts +110 -0
- package/dist-types/models/models_0.d.ts +105 -381
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +153 -0
- package/package.json +14 -40
- package/dist-cjs/models/KiteServiceException.js +0 -12
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -963
- package/dist-es/models/KiteServiceException.js +0 -8
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -916
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListSmsConfigurationsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListSmsNumbersCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListWhatsAppConfigurationsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListWhatsAppNumbersCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (...[input]: [] | [ListWidgetsCommandInput]): import("@smithy/
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
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 {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
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/
|
|
26
|
-
new (
|
|
27
|
-
getEndpointParameterInstructions():
|
|
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
|
|
166
|
+
* @throws {@link KiteSyntheticServiceException}
|
|
163
167
|
* <p>Base exception class for all service exceptions from Kite service.</p>
|
|
164
168
|
*
|
|
165
169
|
*
|