@wildix/xbees-kite-client 1.5.0 → 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 +0,0 @@
1
- export * from "./models_0";
@@ -1,200 +0,0 @@
1
- import { CancelCalendarEventCommandInput, CancelCalendarEventCommandOutput } from "../commands/CancelCalendarEventCommand";
2
- import { CreateOrUpdateWidgetPreviewCommandInput, CreateOrUpdateWidgetPreviewCommandOutput } from "../commands/CreateOrUpdateWidgetPreviewCommand";
3
- import { CreateWidgetCommandInput, CreateWidgetCommandOutput } from "../commands/CreateWidgetCommand";
4
- import { DeleteWidgetCommandInput, DeleteWidgetCommandOutput } from "../commands/DeleteWidgetCommand";
5
- import { GetCalendarSlotsCommandInput, GetCalendarSlotsCommandOutput } from "../commands/GetCalendarSlotsCommand";
6
- import { GetConfigCommandInput, GetConfigCommandOutput } from "../commands/GetConfigCommand";
7
- import { GetSmsNumberConfigurationCommandInput, GetSmsNumberConfigurationCommandOutput } from "../commands/GetSmsNumberConfigurationCommand";
8
- import { GetWhatsAppNumberConfigurationCommandInput, GetWhatsAppNumberConfigurationCommandOutput } from "../commands/GetWhatsAppNumberConfigurationCommand";
9
- import { GetWidgetCommandInput, GetWidgetCommandOutput } from "../commands/GetWidgetCommand";
10
- import { ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand";
11
- import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
12
- import { ListSmsConfigurationsCommandInput, ListSmsConfigurationsCommandOutput } from "../commands/ListSmsConfigurationsCommand";
13
- import { ListSmsNumbersCommandInput, ListSmsNumbersCommandOutput } from "../commands/ListSmsNumbersCommand";
14
- import { ListWhatsAppConfigurationsCommandInput, ListWhatsAppConfigurationsCommandOutput } from "../commands/ListWhatsAppConfigurationsCommand";
15
- import { ListWhatsAppNumbersCommandInput, ListWhatsAppNumbersCommandOutput } from "../commands/ListWhatsAppNumbersCommand";
16
- import { ListWhatsAppTemplatesCommandInput, ListWhatsAppTemplatesCommandOutput } from "../commands/ListWhatsAppTemplatesCommand";
17
- import { ListWidgetsCommandInput, ListWidgetsCommandOutput } from "../commands/ListWidgetsCommand";
18
- import { PutSmsNumberConfigurationCommandInput, PutSmsNumberConfigurationCommandOutput } from "../commands/PutSmsNumberConfigurationCommand";
19
- import { PutWhatsAppNumberConfigurationCommandInput, PutWhatsAppNumberConfigurationCommandOutput } from "../commands/PutWhatsAppNumberConfigurationCommand";
20
- import { RescheduleCalendarEventCommandInput, RescheduleCalendarEventCommandOutput } from "../commands/RescheduleCalendarEventCommand";
21
- import { ScheduleCalendarEventCommandInput, ScheduleCalendarEventCommandOutput } from "../commands/ScheduleCalendarEventCommand";
22
- import { UpdateWidgetCommandInput, UpdateWidgetCommandOutput } from "../commands/UpdateWidgetCommand";
23
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
24
- import { SerdeContext as __SerdeContext } from "@smithy/types";
25
- /**
26
- * serializeAws_restJson1CancelCalendarEventCommand
27
- */
28
- export declare const se_CancelCalendarEventCommand: (input: CancelCalendarEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- /**
30
- * serializeAws_restJson1CreateOrUpdateWidgetPreviewCommand
31
- */
32
- export declare const se_CreateOrUpdateWidgetPreviewCommand: (input: CreateOrUpdateWidgetPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- /**
34
- * serializeAws_restJson1CreateWidgetCommand
35
- */
36
- export declare const se_CreateWidgetCommand: (input: CreateWidgetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- /**
38
- * serializeAws_restJson1DeleteWidgetCommand
39
- */
40
- export declare const se_DeleteWidgetCommand: (input: DeleteWidgetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- /**
42
- * serializeAws_restJson1GetCalendarSlotsCommand
43
- */
44
- export declare const se_GetCalendarSlotsCommand: (input: GetCalendarSlotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- /**
46
- * serializeAws_restJson1GetConfigCommand
47
- */
48
- export declare const se_GetConfigCommand: (input: GetConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- /**
50
- * serializeAws_restJson1GetSmsNumberConfigurationCommand
51
- */
52
- export declare const se_GetSmsNumberConfigurationCommand: (input: GetSmsNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- /**
54
- * serializeAws_restJson1GetWhatsAppNumberConfigurationCommand
55
- */
56
- export declare const se_GetWhatsAppNumberConfigurationCommand: (input: GetWhatsAppNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- /**
58
- * serializeAws_restJson1GetWidgetCommand
59
- */
60
- export declare const se_GetWidgetCommand: (input: GetWidgetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- /**
62
- * serializeAws_restJson1ListAgentsCommand
63
- */
64
- export declare const se_ListAgentsCommand: (input: ListAgentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
- /**
66
- * serializeAws_restJson1ListServicesCommand
67
- */
68
- export declare const se_ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
- /**
70
- * serializeAws_restJson1ListSmsConfigurationsCommand
71
- */
72
- export declare const se_ListSmsConfigurationsCommand: (input: ListSmsConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
- /**
74
- * serializeAws_restJson1ListSmsNumbersCommand
75
- */
76
- export declare const se_ListSmsNumbersCommand: (input: ListSmsNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
- /**
78
- * serializeAws_restJson1ListWhatsAppConfigurationsCommand
79
- */
80
- export declare const se_ListWhatsAppConfigurationsCommand: (input: ListWhatsAppConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
- /**
82
- * serializeAws_restJson1ListWhatsAppNumbersCommand
83
- */
84
- export declare const se_ListWhatsAppNumbersCommand: (input: ListWhatsAppNumbersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
- /**
86
- * serializeAws_restJson1ListWhatsAppTemplatesCommand
87
- */
88
- export declare const se_ListWhatsAppTemplatesCommand: (input: ListWhatsAppTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
- /**
90
- * serializeAws_restJson1ListWidgetsCommand
91
- */
92
- export declare const se_ListWidgetsCommand: (input: ListWidgetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
- /**
94
- * serializeAws_restJson1PutSmsNumberConfigurationCommand
95
- */
96
- export declare const se_PutSmsNumberConfigurationCommand: (input: PutSmsNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
- /**
98
- * serializeAws_restJson1PutWhatsAppNumberConfigurationCommand
99
- */
100
- export declare const se_PutWhatsAppNumberConfigurationCommand: (input: PutWhatsAppNumberConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
- /**
102
- * serializeAws_restJson1RescheduleCalendarEventCommand
103
- */
104
- export declare const se_RescheduleCalendarEventCommand: (input: RescheduleCalendarEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
- /**
106
- * serializeAws_restJson1ScheduleCalendarEventCommand
107
- */
108
- export declare const se_ScheduleCalendarEventCommand: (input: ScheduleCalendarEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
- /**
110
- * serializeAws_restJson1UpdateWidgetCommand
111
- */
112
- export declare const se_UpdateWidgetCommand: (input: UpdateWidgetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
- /**
114
- * deserializeAws_restJson1CancelCalendarEventCommand
115
- */
116
- export declare const de_CancelCalendarEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelCalendarEventCommandOutput>;
117
- /**
118
- * deserializeAws_restJson1CreateOrUpdateWidgetPreviewCommand
119
- */
120
- export declare const de_CreateOrUpdateWidgetPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOrUpdateWidgetPreviewCommandOutput>;
121
- /**
122
- * deserializeAws_restJson1CreateWidgetCommand
123
- */
124
- export declare const de_CreateWidgetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWidgetCommandOutput>;
125
- /**
126
- * deserializeAws_restJson1DeleteWidgetCommand
127
- */
128
- export declare const de_DeleteWidgetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWidgetCommandOutput>;
129
- /**
130
- * deserializeAws_restJson1GetCalendarSlotsCommand
131
- */
132
- export declare const de_GetCalendarSlotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCalendarSlotsCommandOutput>;
133
- /**
134
- * deserializeAws_restJson1GetConfigCommand
135
- */
136
- export declare const de_GetConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigCommandOutput>;
137
- /**
138
- * deserializeAws_restJson1GetSmsNumberConfigurationCommand
139
- */
140
- export declare const de_GetSmsNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSmsNumberConfigurationCommandOutput>;
141
- /**
142
- * deserializeAws_restJson1GetWhatsAppNumberConfigurationCommand
143
- */
144
- export declare const de_GetWhatsAppNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWhatsAppNumberConfigurationCommandOutput>;
145
- /**
146
- * deserializeAws_restJson1GetWidgetCommand
147
- */
148
- export declare const de_GetWidgetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWidgetCommandOutput>;
149
- /**
150
- * deserializeAws_restJson1ListAgentsCommand
151
- */
152
- export declare const de_ListAgentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentsCommandOutput>;
153
- /**
154
- * deserializeAws_restJson1ListServicesCommand
155
- */
156
- export declare const de_ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
157
- /**
158
- * deserializeAws_restJson1ListSmsConfigurationsCommand
159
- */
160
- export declare const de_ListSmsConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSmsConfigurationsCommandOutput>;
161
- /**
162
- * deserializeAws_restJson1ListSmsNumbersCommand
163
- */
164
- export declare const de_ListSmsNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSmsNumbersCommandOutput>;
165
- /**
166
- * deserializeAws_restJson1ListWhatsAppConfigurationsCommand
167
- */
168
- export declare const de_ListWhatsAppConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppConfigurationsCommandOutput>;
169
- /**
170
- * deserializeAws_restJson1ListWhatsAppNumbersCommand
171
- */
172
- export declare const de_ListWhatsAppNumbersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppNumbersCommandOutput>;
173
- /**
174
- * deserializeAws_restJson1ListWhatsAppTemplatesCommand
175
- */
176
- export declare const de_ListWhatsAppTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWhatsAppTemplatesCommandOutput>;
177
- /**
178
- * deserializeAws_restJson1ListWidgetsCommand
179
- */
180
- export declare const de_ListWidgetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWidgetsCommandOutput>;
181
- /**
182
- * deserializeAws_restJson1PutSmsNumberConfigurationCommand
183
- */
184
- export declare const de_PutSmsNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSmsNumberConfigurationCommandOutput>;
185
- /**
186
- * deserializeAws_restJson1PutWhatsAppNumberConfigurationCommand
187
- */
188
- export declare const de_PutWhatsAppNumberConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutWhatsAppNumberConfigurationCommandOutput>;
189
- /**
190
- * deserializeAws_restJson1RescheduleCalendarEventCommand
191
- */
192
- export declare const de_RescheduleCalendarEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RescheduleCalendarEventCommandOutput>;
193
- /**
194
- * deserializeAws_restJson1ScheduleCalendarEventCommand
195
- */
196
- export declare const de_ScheduleCalendarEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ScheduleCalendarEventCommandOutput>;
197
- /**
198
- * deserializeAws_restJson1UpdateWidgetCommand
199
- */
200
- export declare const de_UpdateWidgetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWidgetCommandOutput>;