@aws-sdk/client-amplifyuibuilder 3.928.0 → 3.930.0
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/index.js +1806 -1902
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AmplifyUIBuilderClient.js +2 -0
- package/dist-es/commands/CreateComponentCommand.js +3 -9
- package/dist-es/commands/CreateFormCommand.js +3 -9
- package/dist-es/commands/CreateThemeCommand.js +3 -9
- package/dist-es/commands/DeleteComponentCommand.js +3 -9
- package/dist-es/commands/DeleteFormCommand.js +3 -9
- package/dist-es/commands/DeleteThemeCommand.js +3 -9
- package/dist-es/commands/ExchangeCodeForTokenCommand.js +3 -10
- package/dist-es/commands/ExportComponentsCommand.js +3 -9
- package/dist-es/commands/ExportFormsCommand.js +3 -9
- package/dist-es/commands/ExportThemesCommand.js +3 -9
- package/dist-es/commands/GetCodegenJobCommand.js +3 -9
- package/dist-es/commands/GetComponentCommand.js +3 -9
- package/dist-es/commands/GetFormCommand.js +3 -9
- package/dist-es/commands/GetMetadataCommand.js +3 -9
- package/dist-es/commands/GetThemeCommand.js +3 -9
- package/dist-es/commands/ListCodegenJobsCommand.js +3 -9
- package/dist-es/commands/ListComponentsCommand.js +3 -9
- package/dist-es/commands/ListFormsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListThemesCommand.js +3 -9
- package/dist-es/commands/PutMetadataFlagCommand.js +3 -9
- package/dist-es/commands/RefreshTokenCommand.js +3 -10
- package/dist-es/commands/StartCodegenJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateComponentCommand.js +3 -9
- package/dist-es/commands/UpdateFormCommand.js +3 -9
- package/dist-es/commands/UpdateThemeCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -70
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1744 -0
- package/dist-types/AmplifyUIBuilderClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +16 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +201 -0
- package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +208 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1614
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -254
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -341
|
@@ -1,254 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateComponentCommandInput, CreateComponentCommandOutput } from "../commands/CreateComponentCommand";
|
|
4
|
-
import { CreateFormCommandInput, CreateFormCommandOutput } from "../commands/CreateFormCommand";
|
|
5
|
-
import { CreateThemeCommandInput, CreateThemeCommandOutput } from "../commands/CreateThemeCommand";
|
|
6
|
-
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
|
|
7
|
-
import { DeleteFormCommandInput, DeleteFormCommandOutput } from "../commands/DeleteFormCommand";
|
|
8
|
-
import { DeleteThemeCommandInput, DeleteThemeCommandOutput } from "../commands/DeleteThemeCommand";
|
|
9
|
-
import { ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput } from "../commands/ExchangeCodeForTokenCommand";
|
|
10
|
-
import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "../commands/ExportComponentsCommand";
|
|
11
|
-
import { ExportFormsCommandInput, ExportFormsCommandOutput } from "../commands/ExportFormsCommand";
|
|
12
|
-
import { ExportThemesCommandInput, ExportThemesCommandOutput } from "../commands/ExportThemesCommand";
|
|
13
|
-
import { GetCodegenJobCommandInput, GetCodegenJobCommandOutput } from "../commands/GetCodegenJobCommand";
|
|
14
|
-
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
15
|
-
import { GetFormCommandInput, GetFormCommandOutput } from "../commands/GetFormCommand";
|
|
16
|
-
import { GetMetadataCommandInput, GetMetadataCommandOutput } from "../commands/GetMetadataCommand";
|
|
17
|
-
import { GetThemeCommandInput, GetThemeCommandOutput } from "../commands/GetThemeCommand";
|
|
18
|
-
import { ListCodegenJobsCommandInput, ListCodegenJobsCommandOutput } from "../commands/ListCodegenJobsCommand";
|
|
19
|
-
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
20
|
-
import { ListFormsCommandInput, ListFormsCommandOutput } from "../commands/ListFormsCommand";
|
|
21
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
|
-
import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
|
|
23
|
-
import { PutMetadataFlagCommandInput, PutMetadataFlagCommandOutput } from "../commands/PutMetadataFlagCommand";
|
|
24
|
-
import { RefreshTokenCommandInput, RefreshTokenCommandOutput } from "../commands/RefreshTokenCommand";
|
|
25
|
-
import { StartCodegenJobCommandInput, StartCodegenJobCommandOutput } from "../commands/StartCodegenJobCommand";
|
|
26
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
27
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
28
|
-
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "../commands/UpdateComponentCommand";
|
|
29
|
-
import { UpdateFormCommandInput, UpdateFormCommandOutput } from "../commands/UpdateFormCommand";
|
|
30
|
-
import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "../commands/UpdateThemeCommand";
|
|
31
|
-
/**
|
|
32
|
-
* serializeAws_restJson1CreateComponentCommand
|
|
33
|
-
*/
|
|
34
|
-
export declare const se_CreateComponentCommand: (input: CreateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
-
/**
|
|
36
|
-
* serializeAws_restJson1CreateFormCommand
|
|
37
|
-
*/
|
|
38
|
-
export declare const se_CreateFormCommand: (input: CreateFormCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
-
/**
|
|
40
|
-
* serializeAws_restJson1CreateThemeCommand
|
|
41
|
-
*/
|
|
42
|
-
export declare const se_CreateThemeCommand: (input: CreateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
-
/**
|
|
44
|
-
* serializeAws_restJson1DeleteComponentCommand
|
|
45
|
-
*/
|
|
46
|
-
export declare const se_DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
-
/**
|
|
48
|
-
* serializeAws_restJson1DeleteFormCommand
|
|
49
|
-
*/
|
|
50
|
-
export declare const se_DeleteFormCommand: (input: DeleteFormCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
-
/**
|
|
52
|
-
* serializeAws_restJson1DeleteThemeCommand
|
|
53
|
-
*/
|
|
54
|
-
export declare const se_DeleteThemeCommand: (input: DeleteThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
-
/**
|
|
56
|
-
* serializeAws_restJson1ExchangeCodeForTokenCommand
|
|
57
|
-
*/
|
|
58
|
-
export declare const se_ExchangeCodeForTokenCommand: (input: ExchangeCodeForTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
-
/**
|
|
60
|
-
* serializeAws_restJson1ExportComponentsCommand
|
|
61
|
-
*/
|
|
62
|
-
export declare const se_ExportComponentsCommand: (input: ExportComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
-
/**
|
|
64
|
-
* serializeAws_restJson1ExportFormsCommand
|
|
65
|
-
*/
|
|
66
|
-
export declare const se_ExportFormsCommand: (input: ExportFormsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
-
/**
|
|
68
|
-
* serializeAws_restJson1ExportThemesCommand
|
|
69
|
-
*/
|
|
70
|
-
export declare const se_ExportThemesCommand: (input: ExportThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
-
/**
|
|
72
|
-
* serializeAws_restJson1GetCodegenJobCommand
|
|
73
|
-
*/
|
|
74
|
-
export declare const se_GetCodegenJobCommand: (input: GetCodegenJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
-
/**
|
|
76
|
-
* serializeAws_restJson1GetComponentCommand
|
|
77
|
-
*/
|
|
78
|
-
export declare const se_GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
-
/**
|
|
80
|
-
* serializeAws_restJson1GetFormCommand
|
|
81
|
-
*/
|
|
82
|
-
export declare const se_GetFormCommand: (input: GetFormCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
-
/**
|
|
84
|
-
* serializeAws_restJson1GetMetadataCommand
|
|
85
|
-
*/
|
|
86
|
-
export declare const se_GetMetadataCommand: (input: GetMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
-
/**
|
|
88
|
-
* serializeAws_restJson1GetThemeCommand
|
|
89
|
-
*/
|
|
90
|
-
export declare const se_GetThemeCommand: (input: GetThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
-
/**
|
|
92
|
-
* serializeAws_restJson1ListCodegenJobsCommand
|
|
93
|
-
*/
|
|
94
|
-
export declare const se_ListCodegenJobsCommand: (input: ListCodegenJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
-
/**
|
|
96
|
-
* serializeAws_restJson1ListComponentsCommand
|
|
97
|
-
*/
|
|
98
|
-
export declare const se_ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
|
-
/**
|
|
100
|
-
* serializeAws_restJson1ListFormsCommand
|
|
101
|
-
*/
|
|
102
|
-
export declare const se_ListFormsCommand: (input: ListFormsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
-
/**
|
|
104
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
105
|
-
*/
|
|
106
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
-
/**
|
|
108
|
-
* serializeAws_restJson1ListThemesCommand
|
|
109
|
-
*/
|
|
110
|
-
export declare const se_ListThemesCommand: (input: ListThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
-
/**
|
|
112
|
-
* serializeAws_restJson1PutMetadataFlagCommand
|
|
113
|
-
*/
|
|
114
|
-
export declare const se_PutMetadataFlagCommand: (input: PutMetadataFlagCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
|
-
/**
|
|
116
|
-
* serializeAws_restJson1RefreshTokenCommand
|
|
117
|
-
*/
|
|
118
|
-
export declare const se_RefreshTokenCommand: (input: RefreshTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
-
/**
|
|
120
|
-
* serializeAws_restJson1StartCodegenJobCommand
|
|
121
|
-
*/
|
|
122
|
-
export declare const se_StartCodegenJobCommand: (input: StartCodegenJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
-
/**
|
|
124
|
-
* serializeAws_restJson1TagResourceCommand
|
|
125
|
-
*/
|
|
126
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
|
-
/**
|
|
128
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
129
|
-
*/
|
|
130
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
|
-
/**
|
|
132
|
-
* serializeAws_restJson1UpdateComponentCommand
|
|
133
|
-
*/
|
|
134
|
-
export declare const se_UpdateComponentCommand: (input: UpdateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
135
|
-
/**
|
|
136
|
-
* serializeAws_restJson1UpdateFormCommand
|
|
137
|
-
*/
|
|
138
|
-
export declare const se_UpdateFormCommand: (input: UpdateFormCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
|
-
/**
|
|
140
|
-
* serializeAws_restJson1UpdateThemeCommand
|
|
141
|
-
*/
|
|
142
|
-
export declare const se_UpdateThemeCommand: (input: UpdateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
-
/**
|
|
144
|
-
* deserializeAws_restJson1CreateComponentCommand
|
|
145
|
-
*/
|
|
146
|
-
export declare const de_CreateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentCommandOutput>;
|
|
147
|
-
/**
|
|
148
|
-
* deserializeAws_restJson1CreateFormCommand
|
|
149
|
-
*/
|
|
150
|
-
export declare const de_CreateFormCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFormCommandOutput>;
|
|
151
|
-
/**
|
|
152
|
-
* deserializeAws_restJson1CreateThemeCommand
|
|
153
|
-
*/
|
|
154
|
-
export declare const de_CreateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeCommandOutput>;
|
|
155
|
-
/**
|
|
156
|
-
* deserializeAws_restJson1DeleteComponentCommand
|
|
157
|
-
*/
|
|
158
|
-
export declare const de_DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
|
|
159
|
-
/**
|
|
160
|
-
* deserializeAws_restJson1DeleteFormCommand
|
|
161
|
-
*/
|
|
162
|
-
export declare const de_DeleteFormCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFormCommandOutput>;
|
|
163
|
-
/**
|
|
164
|
-
* deserializeAws_restJson1DeleteThemeCommand
|
|
165
|
-
*/
|
|
166
|
-
export declare const de_DeleteThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteThemeCommandOutput>;
|
|
167
|
-
/**
|
|
168
|
-
* deserializeAws_restJson1ExchangeCodeForTokenCommand
|
|
169
|
-
*/
|
|
170
|
-
export declare const de_ExchangeCodeForTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExchangeCodeForTokenCommandOutput>;
|
|
171
|
-
/**
|
|
172
|
-
* deserializeAws_restJson1ExportComponentsCommand
|
|
173
|
-
*/
|
|
174
|
-
export declare const de_ExportComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportComponentsCommandOutput>;
|
|
175
|
-
/**
|
|
176
|
-
* deserializeAws_restJson1ExportFormsCommand
|
|
177
|
-
*/
|
|
178
|
-
export declare const de_ExportFormsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportFormsCommandOutput>;
|
|
179
|
-
/**
|
|
180
|
-
* deserializeAws_restJson1ExportThemesCommand
|
|
181
|
-
*/
|
|
182
|
-
export declare const de_ExportThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportThemesCommandOutput>;
|
|
183
|
-
/**
|
|
184
|
-
* deserializeAws_restJson1GetCodegenJobCommand
|
|
185
|
-
*/
|
|
186
|
-
export declare const de_GetCodegenJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCodegenJobCommandOutput>;
|
|
187
|
-
/**
|
|
188
|
-
* deserializeAws_restJson1GetComponentCommand
|
|
189
|
-
*/
|
|
190
|
-
export declare const de_GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
191
|
-
/**
|
|
192
|
-
* deserializeAws_restJson1GetFormCommand
|
|
193
|
-
*/
|
|
194
|
-
export declare const de_GetFormCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFormCommandOutput>;
|
|
195
|
-
/**
|
|
196
|
-
* deserializeAws_restJson1GetMetadataCommand
|
|
197
|
-
*/
|
|
198
|
-
export declare const de_GetMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMetadataCommandOutput>;
|
|
199
|
-
/**
|
|
200
|
-
* deserializeAws_restJson1GetThemeCommand
|
|
201
|
-
*/
|
|
202
|
-
export declare const de_GetThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThemeCommandOutput>;
|
|
203
|
-
/**
|
|
204
|
-
* deserializeAws_restJson1ListCodegenJobsCommand
|
|
205
|
-
*/
|
|
206
|
-
export declare const de_ListCodegenJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCodegenJobsCommandOutput>;
|
|
207
|
-
/**
|
|
208
|
-
* deserializeAws_restJson1ListComponentsCommand
|
|
209
|
-
*/
|
|
210
|
-
export declare const de_ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
211
|
-
/**
|
|
212
|
-
* deserializeAws_restJson1ListFormsCommand
|
|
213
|
-
*/
|
|
214
|
-
export declare const de_ListFormsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFormsCommandOutput>;
|
|
215
|
-
/**
|
|
216
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
217
|
-
*/
|
|
218
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
219
|
-
/**
|
|
220
|
-
* deserializeAws_restJson1ListThemesCommand
|
|
221
|
-
*/
|
|
222
|
-
export declare const de_ListThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThemesCommandOutput>;
|
|
223
|
-
/**
|
|
224
|
-
* deserializeAws_restJson1PutMetadataFlagCommand
|
|
225
|
-
*/
|
|
226
|
-
export declare const de_PutMetadataFlagCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMetadataFlagCommandOutput>;
|
|
227
|
-
/**
|
|
228
|
-
* deserializeAws_restJson1RefreshTokenCommand
|
|
229
|
-
*/
|
|
230
|
-
export declare const de_RefreshTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RefreshTokenCommandOutput>;
|
|
231
|
-
/**
|
|
232
|
-
* deserializeAws_restJson1StartCodegenJobCommand
|
|
233
|
-
*/
|
|
234
|
-
export declare const de_StartCodegenJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCodegenJobCommandOutput>;
|
|
235
|
-
/**
|
|
236
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
237
|
-
*/
|
|
238
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
239
|
-
/**
|
|
240
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
241
|
-
*/
|
|
242
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
243
|
-
/**
|
|
244
|
-
* deserializeAws_restJson1UpdateComponentCommand
|
|
245
|
-
*/
|
|
246
|
-
export declare const de_UpdateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentCommandOutput>;
|
|
247
|
-
/**
|
|
248
|
-
* deserializeAws_restJson1UpdateFormCommand
|
|
249
|
-
*/
|
|
250
|
-
export declare const de_UpdateFormCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFormCommandOutput>;
|
|
251
|
-
/**
|
|
252
|
-
* deserializeAws_restJson1UpdateThemeCommand
|
|
253
|
-
*/
|
|
254
|
-
export declare const de_UpdateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateThemeCommandOutput>;
|
|
@@ -1,341 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateComponentCommandInput,
|
|
8
|
-
CreateComponentCommandOutput,
|
|
9
|
-
} from "../commands/CreateComponentCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateFormCommandInput,
|
|
12
|
-
CreateFormCommandOutput,
|
|
13
|
-
} from "../commands/CreateFormCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateThemeCommandInput,
|
|
16
|
-
CreateThemeCommandOutput,
|
|
17
|
-
} from "../commands/CreateThemeCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteComponentCommandInput,
|
|
20
|
-
DeleteComponentCommandOutput,
|
|
21
|
-
} from "../commands/DeleteComponentCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteFormCommandInput,
|
|
24
|
-
DeleteFormCommandOutput,
|
|
25
|
-
} from "../commands/DeleteFormCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteThemeCommandInput,
|
|
28
|
-
DeleteThemeCommandOutput,
|
|
29
|
-
} from "../commands/DeleteThemeCommand";
|
|
30
|
-
import {
|
|
31
|
-
ExchangeCodeForTokenCommandInput,
|
|
32
|
-
ExchangeCodeForTokenCommandOutput,
|
|
33
|
-
} from "../commands/ExchangeCodeForTokenCommand";
|
|
34
|
-
import {
|
|
35
|
-
ExportComponentsCommandInput,
|
|
36
|
-
ExportComponentsCommandOutput,
|
|
37
|
-
} from "../commands/ExportComponentsCommand";
|
|
38
|
-
import {
|
|
39
|
-
ExportFormsCommandInput,
|
|
40
|
-
ExportFormsCommandOutput,
|
|
41
|
-
} from "../commands/ExportFormsCommand";
|
|
42
|
-
import {
|
|
43
|
-
ExportThemesCommandInput,
|
|
44
|
-
ExportThemesCommandOutput,
|
|
45
|
-
} from "../commands/ExportThemesCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetCodegenJobCommandInput,
|
|
48
|
-
GetCodegenJobCommandOutput,
|
|
49
|
-
} from "../commands/GetCodegenJobCommand";
|
|
50
|
-
import {
|
|
51
|
-
GetComponentCommandInput,
|
|
52
|
-
GetComponentCommandOutput,
|
|
53
|
-
} from "../commands/GetComponentCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetFormCommandInput,
|
|
56
|
-
GetFormCommandOutput,
|
|
57
|
-
} from "../commands/GetFormCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetMetadataCommandInput,
|
|
60
|
-
GetMetadataCommandOutput,
|
|
61
|
-
} from "../commands/GetMetadataCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetThemeCommandInput,
|
|
64
|
-
GetThemeCommandOutput,
|
|
65
|
-
} from "../commands/GetThemeCommand";
|
|
66
|
-
import {
|
|
67
|
-
ListCodegenJobsCommandInput,
|
|
68
|
-
ListCodegenJobsCommandOutput,
|
|
69
|
-
} from "../commands/ListCodegenJobsCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListComponentsCommandInput,
|
|
72
|
-
ListComponentsCommandOutput,
|
|
73
|
-
} from "../commands/ListComponentsCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListFormsCommandInput,
|
|
76
|
-
ListFormsCommandOutput,
|
|
77
|
-
} from "../commands/ListFormsCommand";
|
|
78
|
-
import {
|
|
79
|
-
ListTagsForResourceCommandInput,
|
|
80
|
-
ListTagsForResourceCommandOutput,
|
|
81
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListThemesCommandInput,
|
|
84
|
-
ListThemesCommandOutput,
|
|
85
|
-
} from "../commands/ListThemesCommand";
|
|
86
|
-
import {
|
|
87
|
-
PutMetadataFlagCommandInput,
|
|
88
|
-
PutMetadataFlagCommandOutput,
|
|
89
|
-
} from "../commands/PutMetadataFlagCommand";
|
|
90
|
-
import {
|
|
91
|
-
RefreshTokenCommandInput,
|
|
92
|
-
RefreshTokenCommandOutput,
|
|
93
|
-
} from "../commands/RefreshTokenCommand";
|
|
94
|
-
import {
|
|
95
|
-
StartCodegenJobCommandInput,
|
|
96
|
-
StartCodegenJobCommandOutput,
|
|
97
|
-
} from "../commands/StartCodegenJobCommand";
|
|
98
|
-
import {
|
|
99
|
-
TagResourceCommandInput,
|
|
100
|
-
TagResourceCommandOutput,
|
|
101
|
-
} from "../commands/TagResourceCommand";
|
|
102
|
-
import {
|
|
103
|
-
UntagResourceCommandInput,
|
|
104
|
-
UntagResourceCommandOutput,
|
|
105
|
-
} from "../commands/UntagResourceCommand";
|
|
106
|
-
import {
|
|
107
|
-
UpdateComponentCommandInput,
|
|
108
|
-
UpdateComponentCommandOutput,
|
|
109
|
-
} from "../commands/UpdateComponentCommand";
|
|
110
|
-
import {
|
|
111
|
-
UpdateFormCommandInput,
|
|
112
|
-
UpdateFormCommandOutput,
|
|
113
|
-
} from "../commands/UpdateFormCommand";
|
|
114
|
-
import {
|
|
115
|
-
UpdateThemeCommandInput,
|
|
116
|
-
UpdateThemeCommandOutput,
|
|
117
|
-
} from "../commands/UpdateThemeCommand";
|
|
118
|
-
export declare const se_CreateComponentCommand: (
|
|
119
|
-
input: CreateComponentCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_CreateFormCommand: (
|
|
123
|
-
input: CreateFormCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_CreateThemeCommand: (
|
|
127
|
-
input: CreateThemeCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_DeleteComponentCommand: (
|
|
131
|
-
input: DeleteComponentCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_DeleteFormCommand: (
|
|
135
|
-
input: DeleteFormCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_DeleteThemeCommand: (
|
|
139
|
-
input: DeleteThemeCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_ExchangeCodeForTokenCommand: (
|
|
143
|
-
input: ExchangeCodeForTokenCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ExportComponentsCommand: (
|
|
147
|
-
input: ExportComponentsCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_ExportFormsCommand: (
|
|
151
|
-
input: ExportFormsCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_ExportThemesCommand: (
|
|
155
|
-
input: ExportThemesCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_GetCodegenJobCommand: (
|
|
159
|
-
input: GetCodegenJobCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_GetComponentCommand: (
|
|
163
|
-
input: GetComponentCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_GetFormCommand: (
|
|
167
|
-
input: GetFormCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_GetMetadataCommand: (
|
|
171
|
-
input: GetMetadataCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_GetThemeCommand: (
|
|
175
|
-
input: GetThemeCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_ListCodegenJobsCommand: (
|
|
179
|
-
input: ListCodegenJobsCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_ListComponentsCommand: (
|
|
183
|
-
input: ListComponentsCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_ListFormsCommand: (
|
|
187
|
-
input: ListFormsCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
191
|
-
input: ListTagsForResourceCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_ListThemesCommand: (
|
|
195
|
-
input: ListThemesCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_PutMetadataFlagCommand: (
|
|
199
|
-
input: PutMetadataFlagCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_RefreshTokenCommand: (
|
|
203
|
-
input: RefreshTokenCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_StartCodegenJobCommand: (
|
|
207
|
-
input: StartCodegenJobCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_TagResourceCommand: (
|
|
211
|
-
input: TagResourceCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_UntagResourceCommand: (
|
|
215
|
-
input: UntagResourceCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_UpdateComponentCommand: (
|
|
219
|
-
input: UpdateComponentCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_UpdateFormCommand: (
|
|
223
|
-
input: UpdateFormCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_UpdateThemeCommand: (
|
|
227
|
-
input: UpdateThemeCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const de_CreateComponentCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<CreateComponentCommandOutput>;
|
|
234
|
-
export declare const de_CreateFormCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<CreateFormCommandOutput>;
|
|
238
|
-
export declare const de_CreateThemeCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<CreateThemeCommandOutput>;
|
|
242
|
-
export declare const de_DeleteComponentCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<DeleteComponentCommandOutput>;
|
|
246
|
-
export declare const de_DeleteFormCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<DeleteFormCommandOutput>;
|
|
250
|
-
export declare const de_DeleteThemeCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<DeleteThemeCommandOutput>;
|
|
254
|
-
export declare const de_ExchangeCodeForTokenCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<ExchangeCodeForTokenCommandOutput>;
|
|
258
|
-
export declare const de_ExportComponentsCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<ExportComponentsCommandOutput>;
|
|
262
|
-
export declare const de_ExportFormsCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<ExportFormsCommandOutput>;
|
|
266
|
-
export declare const de_ExportThemesCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<ExportThemesCommandOutput>;
|
|
270
|
-
export declare const de_GetCodegenJobCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<GetCodegenJobCommandOutput>;
|
|
274
|
-
export declare const de_GetComponentCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<GetComponentCommandOutput>;
|
|
278
|
-
export declare const de_GetFormCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<GetFormCommandOutput>;
|
|
282
|
-
export declare const de_GetMetadataCommand: (
|
|
283
|
-
output: __HttpResponse,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<GetMetadataCommandOutput>;
|
|
286
|
-
export declare const de_GetThemeCommand: (
|
|
287
|
-
output: __HttpResponse,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<GetThemeCommandOutput>;
|
|
290
|
-
export declare const de_ListCodegenJobsCommand: (
|
|
291
|
-
output: __HttpResponse,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<ListCodegenJobsCommandOutput>;
|
|
294
|
-
export declare const de_ListComponentsCommand: (
|
|
295
|
-
output: __HttpResponse,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<ListComponentsCommandOutput>;
|
|
298
|
-
export declare const de_ListFormsCommand: (
|
|
299
|
-
output: __HttpResponse,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<ListFormsCommandOutput>;
|
|
302
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
306
|
-
export declare const de_ListThemesCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<ListThemesCommandOutput>;
|
|
310
|
-
export declare const de_PutMetadataFlagCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<PutMetadataFlagCommandOutput>;
|
|
314
|
-
export declare const de_RefreshTokenCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<RefreshTokenCommandOutput>;
|
|
318
|
-
export declare const de_StartCodegenJobCommand: (
|
|
319
|
-
output: __HttpResponse,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<StartCodegenJobCommandOutput>;
|
|
322
|
-
export declare const de_TagResourceCommand: (
|
|
323
|
-
output: __HttpResponse,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<TagResourceCommandOutput>;
|
|
326
|
-
export declare const de_UntagResourceCommand: (
|
|
327
|
-
output: __HttpResponse,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
330
|
-
export declare const de_UpdateComponentCommand: (
|
|
331
|
-
output: __HttpResponse,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<UpdateComponentCommandOutput>;
|
|
334
|
-
export declare const de_UpdateFormCommand: (
|
|
335
|
-
output: __HttpResponse,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<UpdateFormCommandOutput>;
|
|
338
|
-
export declare const de_UpdateThemeCommand: (
|
|
339
|
-
output: __HttpResponse,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<UpdateThemeCommandOutput>;
|