@aws-sdk/client-amplifyuibuilder 3.170.0 → 3.178.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/CHANGELOG.md +19 -0
- package/dist-cjs/AmplifyUIBuilder.js +120 -0
- package/dist-cjs/commands/CreateFormCommand.js +36 -0
- package/dist-cjs/commands/DeleteFormCommand.js +36 -0
- package/dist-cjs/commands/ExportFormsCommand.js +36 -0
- package/dist-cjs/commands/GetFormCommand.js +36 -0
- package/dist-cjs/commands/GetMetadataCommand.js +36 -0
- package/dist-cjs/commands/ListFormsCommand.js +36 -0
- package/dist-cjs/commands/PutMetadataFlagCommand.js +36 -0
- package/dist-cjs/commands/UpdateFormCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +254 -2
- package/dist-cjs/pagination/ExportFormsPaginator.js +35 -0
- package/dist-cjs/pagination/ListFormsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +979 -11
- package/dist-es/AmplifyUIBuilder.js +120 -0
- package/dist-es/commands/CreateFormCommand.js +39 -0
- package/dist-es/commands/DeleteFormCommand.js +39 -0
- package/dist-es/commands/ExportFormsCommand.js +39 -0
- package/dist-es/commands/GetFormCommand.js +39 -0
- package/dist-es/commands/GetMetadataCommand.js +39 -0
- package/dist-es/commands/ListFormsCommand.js +39 -0
- package/dist-es/commands/PutMetadataFlagCommand.js +39 -0
- package/dist-es/commands/UpdateFormCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +141 -1
- package/dist-es/pagination/ExportFormsPaginator.js +74 -0
- package/dist-es/pagination/ListFormsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1142 -34
- package/dist-types/AmplifyUIBuilder.d.ts +56 -0
- package/dist-types/AmplifyUIBuilderClient.d.ts +10 -2
- package/dist-types/commands/CreateFormCommand.d.ts +35 -0
- package/dist-types/commands/DeleteFormCommand.d.ts +35 -0
- package/dist-types/commands/ExportFormsCommand.d.ts +35 -0
- package/dist-types/commands/GetFormCommand.d.ts +35 -0
- package/dist-types/commands/GetMetadataCommand.d.ts +35 -0
- package/dist-types/commands/ListFormsCommand.d.ts +35 -0
- package/dist-types/commands/PutMetadataFlagCommand.d.ts +35 -0
- package/dist-types/commands/UpdateFormCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +854 -24
- package/dist-types/pagination/ExportFormsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListFormsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +136 -14
- package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +48 -25
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateFormCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteFormCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportFormsCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetFormCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/GetMetadataCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFormsCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutMetadataFlagCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFormCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +347 -247
- package/dist-types/ts3.4/pagination/ExportFormsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFormsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,363 +1,505 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AmplifyUIBuilderServiceException as __BaseException } from "./AmplifyUIBuilderServiceException";
|
|
3
|
-
|
|
4
3
|
export interface ComponentPropertyBindingProperties {
|
|
5
4
|
property: string | undefined;
|
|
6
|
-
|
|
7
5
|
field?: string;
|
|
8
6
|
}
|
|
9
|
-
|
|
10
7
|
export interface FormBindingElement {
|
|
11
8
|
element: string | undefined;
|
|
12
|
-
|
|
13
9
|
property: string | undefined;
|
|
14
10
|
}
|
|
15
11
|
export declare type SortDirection = "ASC" | "DESC";
|
|
16
|
-
|
|
17
12
|
export interface SortProperty {
|
|
18
13
|
field: string | undefined;
|
|
19
|
-
|
|
20
14
|
direction: SortDirection | string | undefined;
|
|
21
15
|
}
|
|
22
|
-
|
|
23
16
|
export interface ComponentVariant {
|
|
24
17
|
variantValues?: Record<string, string>;
|
|
25
|
-
|
|
26
18
|
overrides?: Record<string, Record<string, string>>;
|
|
27
19
|
}
|
|
28
|
-
|
|
29
20
|
export declare class InternalServerException extends __BaseException {
|
|
30
21
|
readonly name: "InternalServerException";
|
|
31
22
|
readonly $fault: "server";
|
|
32
|
-
|
|
33
23
|
constructor(
|
|
34
24
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
35
25
|
);
|
|
36
26
|
}
|
|
37
|
-
|
|
38
27
|
export declare class InvalidParameterException extends __BaseException {
|
|
39
28
|
readonly name: "InvalidParameterException";
|
|
40
29
|
readonly $fault: "client";
|
|
41
|
-
|
|
42
30
|
constructor(
|
|
43
31
|
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
44
32
|
);
|
|
45
33
|
}
|
|
46
|
-
|
|
47
34
|
export declare class ResourceConflictException extends __BaseException {
|
|
48
35
|
readonly name: "ResourceConflictException";
|
|
49
36
|
readonly $fault: "client";
|
|
50
|
-
|
|
51
37
|
constructor(
|
|
52
38
|
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
53
39
|
);
|
|
54
40
|
}
|
|
55
|
-
|
|
56
41
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
57
42
|
readonly name: "ServiceQuotaExceededException";
|
|
58
43
|
readonly $fault: "client";
|
|
59
|
-
|
|
60
44
|
constructor(
|
|
61
45
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
62
46
|
);
|
|
63
47
|
}
|
|
64
48
|
export interface DeleteComponentRequest {
|
|
65
49
|
appId: string | undefined;
|
|
66
|
-
|
|
67
50
|
environmentName: string | undefined;
|
|
68
|
-
|
|
69
51
|
id: string | undefined;
|
|
70
52
|
}
|
|
71
|
-
|
|
72
53
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
73
54
|
readonly name: "ResourceNotFoundException";
|
|
74
55
|
readonly $fault: "client";
|
|
75
|
-
|
|
76
56
|
constructor(
|
|
77
57
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
78
58
|
);
|
|
79
59
|
}
|
|
80
60
|
export interface ExportComponentsRequest {
|
|
81
61
|
appId: string | undefined;
|
|
82
|
-
|
|
83
62
|
environmentName: string | undefined;
|
|
84
|
-
|
|
85
63
|
nextToken?: string;
|
|
86
64
|
}
|
|
87
65
|
export interface GetComponentRequest {
|
|
88
66
|
appId: string | undefined;
|
|
89
|
-
|
|
90
67
|
environmentName: string | undefined;
|
|
91
|
-
|
|
92
68
|
id: string | undefined;
|
|
93
69
|
}
|
|
94
70
|
export interface ListComponentsRequest {
|
|
95
71
|
appId: string | undefined;
|
|
96
|
-
|
|
97
72
|
environmentName: string | undefined;
|
|
98
|
-
|
|
99
73
|
nextToken?: string;
|
|
100
|
-
|
|
101
74
|
maxResults?: number;
|
|
102
75
|
}
|
|
103
|
-
|
|
104
76
|
export interface ComponentSummary {
|
|
105
77
|
appId: string | undefined;
|
|
106
|
-
|
|
107
78
|
environmentName: string | undefined;
|
|
108
|
-
|
|
109
79
|
id: string | undefined;
|
|
110
|
-
|
|
111
80
|
name: string | undefined;
|
|
112
|
-
|
|
113
81
|
componentType: string | undefined;
|
|
114
82
|
}
|
|
115
83
|
export interface ListComponentsResponse {
|
|
116
84
|
entities: ComponentSummary[] | undefined;
|
|
117
|
-
|
|
118
85
|
nextToken?: string;
|
|
119
86
|
}
|
|
120
87
|
export declare enum TokenProviders {
|
|
121
88
|
FIGMA = "figma",
|
|
122
89
|
}
|
|
123
|
-
|
|
124
90
|
export interface ExchangeCodeForTokenRequestBody {
|
|
125
91
|
code: string | undefined;
|
|
126
|
-
|
|
127
92
|
redirectUri: string | undefined;
|
|
128
93
|
}
|
|
129
94
|
export interface ExchangeCodeForTokenRequest {
|
|
130
95
|
provider: TokenProviders | string | undefined;
|
|
131
|
-
|
|
132
96
|
request: ExchangeCodeForTokenRequestBody | undefined;
|
|
133
97
|
}
|
|
134
98
|
export interface ExchangeCodeForTokenResponse {
|
|
135
99
|
accessToken: string | undefined;
|
|
136
|
-
|
|
137
100
|
expiresIn: number | undefined;
|
|
138
|
-
|
|
139
101
|
refreshToken: string | undefined;
|
|
140
102
|
}
|
|
141
|
-
|
|
103
|
+
export declare enum FixedPosition {
|
|
104
|
+
FIRST = "first",
|
|
105
|
+
}
|
|
106
|
+
export declare type FieldPosition =
|
|
107
|
+
| FieldPosition.BelowMember
|
|
108
|
+
| FieldPosition.FixedMember
|
|
109
|
+
| FieldPosition.RightOfMember
|
|
110
|
+
| FieldPosition.$UnknownMember;
|
|
111
|
+
export declare namespace FieldPosition {
|
|
112
|
+
interface FixedMember {
|
|
113
|
+
fixed: FixedPosition | string;
|
|
114
|
+
rightOf?: never;
|
|
115
|
+
below?: never;
|
|
116
|
+
$unknown?: never;
|
|
117
|
+
}
|
|
118
|
+
interface RightOfMember {
|
|
119
|
+
fixed?: never;
|
|
120
|
+
rightOf: string;
|
|
121
|
+
below?: never;
|
|
122
|
+
$unknown?: never;
|
|
123
|
+
}
|
|
124
|
+
interface BelowMember {
|
|
125
|
+
fixed?: never;
|
|
126
|
+
rightOf?: never;
|
|
127
|
+
below: string;
|
|
128
|
+
$unknown?: never;
|
|
129
|
+
}
|
|
130
|
+
interface $UnknownMember {
|
|
131
|
+
fixed?: never;
|
|
132
|
+
rightOf?: never;
|
|
133
|
+
below?: never;
|
|
134
|
+
$unknown: [string, any];
|
|
135
|
+
}
|
|
136
|
+
interface Visitor<T> {
|
|
137
|
+
fixed: (value: FixedPosition | string) => T;
|
|
138
|
+
rightOf: (value: string) => T;
|
|
139
|
+
below: (value: string) => T;
|
|
140
|
+
_: (name: string, value: any) => T;
|
|
141
|
+
}
|
|
142
|
+
const visit: <T>(value: FieldPosition, visitor: Visitor<T>) => T;
|
|
143
|
+
}
|
|
144
|
+
export interface FormButton {
|
|
145
|
+
excluded?: boolean;
|
|
146
|
+
children?: string;
|
|
147
|
+
position?: FieldPosition;
|
|
148
|
+
}
|
|
149
|
+
export declare enum FormButtonsPosition {
|
|
150
|
+
BOTTOM = "bottom",
|
|
151
|
+
TOP = "top",
|
|
152
|
+
TOP_AND_BOTTOM = "top_and_bottom",
|
|
153
|
+
}
|
|
154
|
+
export interface FormCTA {
|
|
155
|
+
position?: FormButtonsPosition | string;
|
|
156
|
+
clear?: FormButton;
|
|
157
|
+
cancel?: FormButton;
|
|
158
|
+
submit?: FormButton;
|
|
159
|
+
}
|
|
160
|
+
export declare enum FormDataSourceType {
|
|
161
|
+
CUSTOM = "Custom",
|
|
162
|
+
DATASTORE = "DataStore",
|
|
163
|
+
}
|
|
164
|
+
export interface FormDataTypeConfig {
|
|
165
|
+
dataSourceType: FormDataSourceType | string | undefined;
|
|
166
|
+
dataTypeName: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
export interface FormInputValueProperty {
|
|
169
|
+
value?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface ValueMapping {
|
|
172
|
+
displayValue?: FormInputValueProperty;
|
|
173
|
+
value: FormInputValueProperty | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface ValueMappings {
|
|
176
|
+
values: ValueMapping[] | undefined;
|
|
177
|
+
}
|
|
178
|
+
export interface FieldInputConfig {
|
|
179
|
+
type: string | undefined;
|
|
180
|
+
required?: boolean;
|
|
181
|
+
readOnly?: boolean;
|
|
182
|
+
placeholder?: string;
|
|
183
|
+
defaultValue?: string;
|
|
184
|
+
descriptiveText?: string;
|
|
185
|
+
defaultChecked?: boolean;
|
|
186
|
+
defaultCountryCode?: string;
|
|
187
|
+
valueMappings?: ValueMappings;
|
|
188
|
+
name?: string;
|
|
189
|
+
minValue?: number;
|
|
190
|
+
maxValue?: number;
|
|
191
|
+
step?: number;
|
|
192
|
+
value?: string;
|
|
193
|
+
}
|
|
194
|
+
export interface FieldValidationConfiguration {
|
|
195
|
+
type: string | undefined;
|
|
196
|
+
strValues?: string[];
|
|
197
|
+
numValues?: number[];
|
|
198
|
+
validationMessage?: string;
|
|
199
|
+
}
|
|
200
|
+
export interface FieldConfig {
|
|
201
|
+
label?: string;
|
|
202
|
+
position?: FieldPosition;
|
|
203
|
+
excluded?: boolean;
|
|
204
|
+
inputType?: FieldInputConfig;
|
|
205
|
+
validations?: FieldValidationConfiguration[];
|
|
206
|
+
}
|
|
207
|
+
export declare enum FormActionType {
|
|
208
|
+
CREATE = "create",
|
|
209
|
+
UPDATE = "update",
|
|
210
|
+
}
|
|
211
|
+
export interface SectionalElement {
|
|
212
|
+
type: string | undefined;
|
|
213
|
+
position?: FieldPosition;
|
|
214
|
+
text?: string;
|
|
215
|
+
level?: number;
|
|
216
|
+
orientation?: string;
|
|
217
|
+
}
|
|
218
|
+
export declare type FormStyleConfig =
|
|
219
|
+
| FormStyleConfig.TokenReferenceMember
|
|
220
|
+
| FormStyleConfig.ValueMember
|
|
221
|
+
| FormStyleConfig.$UnknownMember;
|
|
222
|
+
export declare namespace FormStyleConfig {
|
|
223
|
+
interface TokenReferenceMember {
|
|
224
|
+
tokenReference: string;
|
|
225
|
+
value?: never;
|
|
226
|
+
$unknown?: never;
|
|
227
|
+
}
|
|
228
|
+
interface ValueMember {
|
|
229
|
+
tokenReference?: never;
|
|
230
|
+
value: string;
|
|
231
|
+
$unknown?: never;
|
|
232
|
+
}
|
|
233
|
+
interface $UnknownMember {
|
|
234
|
+
tokenReference?: never;
|
|
235
|
+
value?: never;
|
|
236
|
+
$unknown: [string, any];
|
|
237
|
+
}
|
|
238
|
+
interface Visitor<T> {
|
|
239
|
+
tokenReference: (value: string) => T;
|
|
240
|
+
value: (value: string) => T;
|
|
241
|
+
_: (name: string, value: any) => T;
|
|
242
|
+
}
|
|
243
|
+
const visit: <T>(value: FormStyleConfig, visitor: Visitor<T>) => T;
|
|
244
|
+
}
|
|
245
|
+
export interface FormStyle {
|
|
246
|
+
horizontalGap?: FormStyleConfig;
|
|
247
|
+
verticalGap?: FormStyleConfig;
|
|
248
|
+
outerPadding?: FormStyleConfig;
|
|
249
|
+
}
|
|
250
|
+
export interface CreateFormData {
|
|
251
|
+
name: string | undefined;
|
|
252
|
+
dataType: FormDataTypeConfig | undefined;
|
|
253
|
+
formActionType: FormActionType | string | undefined;
|
|
254
|
+
fields: Record<string, FieldConfig> | undefined;
|
|
255
|
+
style: FormStyle | undefined;
|
|
256
|
+
sectionalElements: Record<string, SectionalElement> | undefined;
|
|
257
|
+
schemaVersion: string | undefined;
|
|
258
|
+
cta?: FormCTA;
|
|
259
|
+
tags?: Record<string, string>;
|
|
260
|
+
}
|
|
261
|
+
export interface CreateFormRequest {
|
|
262
|
+
appId: string | undefined;
|
|
263
|
+
environmentName: string | undefined;
|
|
264
|
+
clientToken?: string;
|
|
265
|
+
formToCreate: CreateFormData | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface Form {
|
|
268
|
+
appId: string | undefined;
|
|
269
|
+
environmentName: string | undefined;
|
|
270
|
+
id: string | undefined;
|
|
271
|
+
name: string | undefined;
|
|
272
|
+
formActionType: FormActionType | string | undefined;
|
|
273
|
+
style: FormStyle | undefined;
|
|
274
|
+
dataType: FormDataTypeConfig | undefined;
|
|
275
|
+
fields: Record<string, FieldConfig> | undefined;
|
|
276
|
+
sectionalElements: Record<string, SectionalElement> | undefined;
|
|
277
|
+
schemaVersion: string | undefined;
|
|
278
|
+
tags?: Record<string, string>;
|
|
279
|
+
cta?: FormCTA;
|
|
280
|
+
}
|
|
281
|
+
export interface CreateFormResponse {
|
|
282
|
+
entity?: Form;
|
|
283
|
+
}
|
|
284
|
+
export interface DeleteFormRequest {
|
|
285
|
+
appId: string | undefined;
|
|
286
|
+
environmentName: string | undefined;
|
|
287
|
+
id: string | undefined;
|
|
288
|
+
}
|
|
289
|
+
export interface ExportFormsRequest {
|
|
290
|
+
appId: string | undefined;
|
|
291
|
+
environmentName: string | undefined;
|
|
292
|
+
nextToken?: string;
|
|
293
|
+
}
|
|
294
|
+
export interface ExportFormsResponse {
|
|
295
|
+
entities: Form[] | undefined;
|
|
296
|
+
nextToken?: string;
|
|
297
|
+
}
|
|
298
|
+
export interface GetFormRequest {
|
|
299
|
+
appId: string | undefined;
|
|
300
|
+
environmentName: string | undefined;
|
|
301
|
+
id: string | undefined;
|
|
302
|
+
}
|
|
303
|
+
export interface GetFormResponse {
|
|
304
|
+
form?: Form;
|
|
305
|
+
}
|
|
306
|
+
export interface ListFormsRequest {
|
|
307
|
+
appId: string | undefined;
|
|
308
|
+
environmentName: string | undefined;
|
|
309
|
+
nextToken?: string;
|
|
310
|
+
maxResults?: number;
|
|
311
|
+
}
|
|
312
|
+
export interface FormSummary {
|
|
313
|
+
appId: string | undefined;
|
|
314
|
+
dataType: FormDataTypeConfig | undefined;
|
|
315
|
+
environmentName: string | undefined;
|
|
316
|
+
formActionType: FormActionType | string | undefined;
|
|
317
|
+
id: string | undefined;
|
|
318
|
+
name: string | undefined;
|
|
319
|
+
}
|
|
320
|
+
export interface ListFormsResponse {
|
|
321
|
+
entities: FormSummary[] | undefined;
|
|
322
|
+
nextToken?: string;
|
|
323
|
+
}
|
|
324
|
+
export interface UpdateFormData {
|
|
325
|
+
name?: string;
|
|
326
|
+
dataType?: FormDataTypeConfig;
|
|
327
|
+
formActionType?: FormActionType | string;
|
|
328
|
+
fields?: Record<string, FieldConfig>;
|
|
329
|
+
style?: FormStyle;
|
|
330
|
+
sectionalElements?: Record<string, SectionalElement>;
|
|
331
|
+
schemaVersion?: string;
|
|
332
|
+
cta?: FormCTA;
|
|
333
|
+
}
|
|
334
|
+
export interface UpdateFormRequest {
|
|
335
|
+
appId: string | undefined;
|
|
336
|
+
environmentName: string | undefined;
|
|
337
|
+
id: string | undefined;
|
|
338
|
+
clientToken?: string;
|
|
339
|
+
updatedForm: UpdateFormData | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface UpdateFormResponse {
|
|
342
|
+
entity?: Form;
|
|
343
|
+
}
|
|
344
|
+
export interface GetMetadataRequest {
|
|
345
|
+
appId: string | undefined;
|
|
346
|
+
environmentName: string | undefined;
|
|
347
|
+
}
|
|
348
|
+
export interface GetMetadataResponse {
|
|
349
|
+
features: Record<string, string> | undefined;
|
|
350
|
+
}
|
|
351
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
352
|
+
readonly name: "UnauthorizedException";
|
|
353
|
+
readonly $fault: "client";
|
|
354
|
+
constructor(
|
|
355
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
356
|
+
);
|
|
357
|
+
}
|
|
358
|
+
export interface PutMetadataFlagBody {
|
|
359
|
+
newValue: string | undefined;
|
|
360
|
+
}
|
|
361
|
+
export interface PutMetadataFlagRequest {
|
|
362
|
+
appId: string | undefined;
|
|
363
|
+
environmentName: string | undefined;
|
|
364
|
+
featureName: string | undefined;
|
|
365
|
+
body: PutMetadataFlagBody | undefined;
|
|
366
|
+
}
|
|
142
367
|
export interface RefreshTokenRequestBody {
|
|
143
368
|
token: string | undefined;
|
|
144
369
|
}
|
|
145
370
|
export interface RefreshTokenRequest {
|
|
146
371
|
provider: TokenProviders | string | undefined;
|
|
147
|
-
|
|
148
372
|
refreshTokenBody: RefreshTokenRequestBody | undefined;
|
|
149
373
|
}
|
|
150
374
|
export interface RefreshTokenResponse {
|
|
151
375
|
accessToken: string | undefined;
|
|
152
|
-
|
|
153
376
|
expiresIn: number | undefined;
|
|
154
377
|
}
|
|
155
378
|
export interface DeleteThemeRequest {
|
|
156
379
|
appId: string | undefined;
|
|
157
|
-
|
|
158
380
|
environmentName: string | undefined;
|
|
159
|
-
|
|
160
381
|
id: string | undefined;
|
|
161
382
|
}
|
|
162
383
|
export interface ExportThemesRequest {
|
|
163
384
|
appId: string | undefined;
|
|
164
|
-
|
|
165
385
|
environmentName: string | undefined;
|
|
166
|
-
|
|
167
386
|
nextToken?: string;
|
|
168
387
|
}
|
|
169
388
|
export interface GetThemeRequest {
|
|
170
389
|
appId: string | undefined;
|
|
171
|
-
|
|
172
390
|
environmentName: string | undefined;
|
|
173
|
-
|
|
174
391
|
id: string | undefined;
|
|
175
392
|
}
|
|
176
393
|
export interface ListThemesRequest {
|
|
177
394
|
appId: string | undefined;
|
|
178
|
-
|
|
179
395
|
environmentName: string | undefined;
|
|
180
|
-
|
|
181
396
|
nextToken?: string;
|
|
182
|
-
|
|
183
397
|
maxResults?: number;
|
|
184
398
|
}
|
|
185
|
-
|
|
186
399
|
export interface ThemeSummary {
|
|
187
400
|
appId: string | undefined;
|
|
188
|
-
|
|
189
401
|
environmentName: string | undefined;
|
|
190
|
-
|
|
191
402
|
id: string | undefined;
|
|
192
|
-
|
|
193
403
|
name: string | undefined;
|
|
194
404
|
}
|
|
195
405
|
export interface ListThemesResponse {
|
|
196
406
|
entities: ThemeSummary[] | undefined;
|
|
197
|
-
|
|
198
407
|
nextToken?: string;
|
|
199
408
|
}
|
|
200
|
-
|
|
201
409
|
export interface ThemeValue {
|
|
202
410
|
value?: string;
|
|
203
|
-
|
|
204
411
|
children?: ThemeValues[];
|
|
205
412
|
}
|
|
206
|
-
|
|
207
413
|
export interface ThemeValues {
|
|
208
414
|
key?: string;
|
|
209
|
-
|
|
210
415
|
value?: ThemeValue;
|
|
211
416
|
}
|
|
212
|
-
|
|
213
417
|
export interface Predicate {
|
|
214
418
|
or?: Predicate[];
|
|
215
|
-
|
|
216
419
|
and?: Predicate[];
|
|
217
|
-
|
|
218
420
|
field?: string;
|
|
219
|
-
|
|
220
421
|
operator?: string;
|
|
221
|
-
|
|
222
422
|
operand?: string;
|
|
223
423
|
}
|
|
224
|
-
|
|
225
424
|
export interface ComponentBindingPropertiesValueProperties {
|
|
226
425
|
model?: string;
|
|
227
|
-
|
|
228
426
|
field?: string;
|
|
229
|
-
|
|
230
427
|
predicates?: Predicate[];
|
|
231
|
-
|
|
232
428
|
userAttribute?: string;
|
|
233
|
-
|
|
234
429
|
bucket?: string;
|
|
235
|
-
|
|
236
430
|
key?: string;
|
|
237
|
-
|
|
238
431
|
defaultValue?: string;
|
|
432
|
+
slotName?: string;
|
|
239
433
|
}
|
|
240
|
-
|
|
241
434
|
export interface ComponentDataConfiguration {
|
|
242
435
|
model: string | undefined;
|
|
243
|
-
|
|
244
436
|
sort?: SortProperty[];
|
|
245
|
-
|
|
246
437
|
predicate?: Predicate;
|
|
247
|
-
|
|
248
438
|
identifiers?: string[];
|
|
249
439
|
}
|
|
250
|
-
|
|
251
440
|
export interface ComponentProperty {
|
|
252
441
|
value?: string;
|
|
253
|
-
|
|
254
442
|
bindingProperties?: ComponentPropertyBindingProperties;
|
|
255
|
-
|
|
256
443
|
collectionBindingProperties?: ComponentPropertyBindingProperties;
|
|
257
|
-
|
|
258
444
|
defaultValue?: string;
|
|
259
|
-
|
|
260
445
|
model?: string;
|
|
261
|
-
|
|
262
446
|
bindings?: Record<string, FormBindingElement>;
|
|
263
|
-
|
|
264
447
|
event?: string;
|
|
265
|
-
|
|
266
448
|
userAttribute?: string;
|
|
267
|
-
|
|
268
449
|
concat?: ComponentProperty[];
|
|
269
|
-
|
|
270
450
|
condition?: ComponentConditionProperty;
|
|
271
|
-
|
|
272
451
|
configured?: boolean;
|
|
273
|
-
|
|
274
452
|
type?: string;
|
|
275
|
-
|
|
276
453
|
importedValue?: string;
|
|
277
|
-
|
|
278
454
|
componentName?: string;
|
|
279
|
-
|
|
280
455
|
property?: string;
|
|
281
456
|
}
|
|
282
|
-
|
|
283
457
|
export interface ComponentBindingPropertiesValue {
|
|
284
458
|
type?: string;
|
|
285
|
-
|
|
286
459
|
bindingProperties?: ComponentBindingPropertiesValueProperties;
|
|
287
|
-
|
|
288
460
|
defaultValue?: string;
|
|
289
461
|
}
|
|
290
|
-
|
|
291
462
|
export interface CreateThemeData {
|
|
292
463
|
name: string | undefined;
|
|
293
|
-
|
|
294
464
|
values: ThemeValues[] | undefined;
|
|
295
|
-
|
|
296
465
|
overrides?: ThemeValues[];
|
|
297
|
-
|
|
298
466
|
tags?: Record<string, string>;
|
|
299
467
|
}
|
|
300
|
-
|
|
301
468
|
export interface Theme {
|
|
302
469
|
appId: string | undefined;
|
|
303
|
-
|
|
304
470
|
environmentName: string | undefined;
|
|
305
|
-
|
|
306
471
|
id: string | undefined;
|
|
307
|
-
|
|
308
472
|
name: string | undefined;
|
|
309
|
-
|
|
310
473
|
createdAt: Date | undefined;
|
|
311
|
-
|
|
312
474
|
modifiedAt?: Date;
|
|
313
|
-
|
|
314
475
|
values: ThemeValues[] | undefined;
|
|
315
|
-
|
|
316
476
|
overrides?: ThemeValues[];
|
|
317
|
-
|
|
318
477
|
tags?: Record<string, string>;
|
|
319
478
|
}
|
|
320
|
-
|
|
321
479
|
export interface UpdateThemeData {
|
|
322
480
|
id?: string;
|
|
323
|
-
|
|
324
481
|
name?: string;
|
|
325
|
-
|
|
326
482
|
values: ThemeValues[] | undefined;
|
|
327
|
-
|
|
328
483
|
overrides?: ThemeValues[];
|
|
329
484
|
}
|
|
330
|
-
|
|
331
485
|
export interface MutationActionSetStateParameter {
|
|
332
486
|
componentName: string | undefined;
|
|
333
|
-
|
|
334
487
|
property: string | undefined;
|
|
335
|
-
|
|
336
488
|
set: ComponentProperty | undefined;
|
|
337
489
|
}
|
|
338
|
-
|
|
339
490
|
export interface ComponentConditionProperty {
|
|
340
491
|
property?: string;
|
|
341
|
-
|
|
342
492
|
field?: string;
|
|
343
|
-
|
|
344
493
|
operator?: string;
|
|
345
|
-
|
|
346
494
|
operand?: string;
|
|
347
|
-
|
|
348
495
|
then?: ComponentProperty;
|
|
349
|
-
|
|
350
496
|
else?: ComponentProperty;
|
|
351
|
-
|
|
352
497
|
operandType?: string;
|
|
353
498
|
}
|
|
354
499
|
export interface CreateThemeRequest {
|
|
355
500
|
appId: string | undefined;
|
|
356
|
-
|
|
357
501
|
environmentName: string | undefined;
|
|
358
|
-
|
|
359
502
|
clientToken?: string;
|
|
360
|
-
|
|
361
503
|
themeToCreate: CreateThemeData | undefined;
|
|
362
504
|
}
|
|
363
505
|
export interface CreateThemeResponse {
|
|
@@ -368,13 +510,9 @@ export interface GetThemeResponse {
|
|
|
368
510
|
}
|
|
369
511
|
export interface UpdateThemeRequest {
|
|
370
512
|
appId: string | undefined;
|
|
371
|
-
|
|
372
513
|
environmentName: string | undefined;
|
|
373
|
-
|
|
374
514
|
id: string | undefined;
|
|
375
|
-
|
|
376
515
|
clientToken?: string;
|
|
377
|
-
|
|
378
516
|
updatedTheme: UpdateThemeData | undefined;
|
|
379
517
|
}
|
|
380
518
|
export interface UpdateThemeResponse {
|
|
@@ -382,150 +520,87 @@ export interface UpdateThemeResponse {
|
|
|
382
520
|
}
|
|
383
521
|
export interface ExportThemesResponse {
|
|
384
522
|
entities: Theme[] | undefined;
|
|
385
|
-
|
|
386
523
|
nextToken?: string;
|
|
387
524
|
}
|
|
388
|
-
|
|
389
525
|
export interface ActionParameters {
|
|
390
526
|
type?: ComponentProperty;
|
|
391
|
-
|
|
392
527
|
url?: ComponentProperty;
|
|
393
|
-
|
|
394
528
|
anchor?: ComponentProperty;
|
|
395
|
-
|
|
396
529
|
target?: ComponentProperty;
|
|
397
|
-
|
|
398
530
|
global?: ComponentProperty;
|
|
399
|
-
|
|
400
531
|
model?: string;
|
|
401
|
-
|
|
402
532
|
id?: ComponentProperty;
|
|
403
|
-
|
|
404
533
|
fields?: Record<string, ComponentProperty>;
|
|
405
|
-
|
|
406
534
|
state?: MutationActionSetStateParameter;
|
|
407
535
|
}
|
|
408
|
-
|
|
409
536
|
export interface ComponentEvent {
|
|
410
537
|
action?: string;
|
|
411
|
-
|
|
412
538
|
parameters?: ActionParameters;
|
|
413
|
-
|
|
414
539
|
bindingEvent?: string;
|
|
415
540
|
}
|
|
416
|
-
|
|
417
541
|
export interface ComponentChild {
|
|
418
542
|
componentType: string | undefined;
|
|
419
|
-
|
|
420
543
|
name: string | undefined;
|
|
421
|
-
|
|
422
544
|
properties: Record<string, ComponentProperty> | undefined;
|
|
423
|
-
|
|
424
545
|
children?: ComponentChild[];
|
|
425
|
-
|
|
426
546
|
events?: Record<string, ComponentEvent>;
|
|
427
|
-
|
|
428
547
|
sourceId?: string;
|
|
429
548
|
}
|
|
430
|
-
|
|
431
549
|
export interface Component {
|
|
432
550
|
appId: string | undefined;
|
|
433
|
-
|
|
434
551
|
environmentName: string | undefined;
|
|
435
|
-
|
|
436
552
|
sourceId?: string;
|
|
437
|
-
|
|
438
553
|
id: string | undefined;
|
|
439
|
-
|
|
440
554
|
name: string | undefined;
|
|
441
|
-
|
|
442
555
|
componentType: string | undefined;
|
|
443
|
-
|
|
444
556
|
properties: Record<string, ComponentProperty> | undefined;
|
|
445
|
-
|
|
446
557
|
children?: ComponentChild[];
|
|
447
|
-
|
|
448
558
|
variants: ComponentVariant[] | undefined;
|
|
449
|
-
|
|
450
559
|
overrides: Record<string, Record<string, string>> | undefined;
|
|
451
|
-
|
|
452
560
|
bindingProperties:
|
|
453
561
|
| Record<string, ComponentBindingPropertiesValue>
|
|
454
562
|
| undefined;
|
|
455
|
-
|
|
456
563
|
collectionProperties?: Record<string, ComponentDataConfiguration>;
|
|
457
|
-
|
|
458
564
|
createdAt: Date | undefined;
|
|
459
|
-
|
|
460
565
|
modifiedAt?: Date;
|
|
461
|
-
|
|
462
566
|
tags?: Record<string, string>;
|
|
463
|
-
|
|
464
567
|
events?: Record<string, ComponentEvent>;
|
|
465
|
-
|
|
466
568
|
schemaVersion?: string;
|
|
467
569
|
}
|
|
468
|
-
|
|
469
570
|
export interface CreateComponentData {
|
|
470
571
|
name: string | undefined;
|
|
471
|
-
|
|
472
572
|
sourceId?: string;
|
|
473
|
-
|
|
474
573
|
componentType: string | undefined;
|
|
475
|
-
|
|
476
574
|
properties: Record<string, ComponentProperty> | undefined;
|
|
477
|
-
|
|
478
575
|
children?: ComponentChild[];
|
|
479
|
-
|
|
480
576
|
variants: ComponentVariant[] | undefined;
|
|
481
|
-
|
|
482
577
|
overrides: Record<string, Record<string, string>> | undefined;
|
|
483
|
-
|
|
484
578
|
bindingProperties:
|
|
485
579
|
| Record<string, ComponentBindingPropertiesValue>
|
|
486
580
|
| undefined;
|
|
487
|
-
|
|
488
581
|
collectionProperties?: Record<string, ComponentDataConfiguration>;
|
|
489
|
-
|
|
490
582
|
tags?: Record<string, string>;
|
|
491
|
-
|
|
492
583
|
events?: Record<string, ComponentEvent>;
|
|
493
|
-
|
|
494
584
|
schemaVersion?: string;
|
|
495
585
|
}
|
|
496
|
-
|
|
497
586
|
export interface UpdateComponentData {
|
|
498
587
|
id?: string;
|
|
499
|
-
|
|
500
588
|
name?: string;
|
|
501
|
-
|
|
502
589
|
sourceId?: string;
|
|
503
|
-
|
|
504
590
|
componentType?: string;
|
|
505
|
-
|
|
506
591
|
properties?: Record<string, ComponentProperty>;
|
|
507
|
-
|
|
508
592
|
children?: ComponentChild[];
|
|
509
|
-
|
|
510
593
|
variants?: ComponentVariant[];
|
|
511
|
-
|
|
512
594
|
overrides?: Record<string, Record<string, string>>;
|
|
513
|
-
|
|
514
595
|
bindingProperties?: Record<string, ComponentBindingPropertiesValue>;
|
|
515
|
-
|
|
516
596
|
collectionProperties?: Record<string, ComponentDataConfiguration>;
|
|
517
|
-
|
|
518
597
|
events?: Record<string, ComponentEvent>;
|
|
519
|
-
|
|
520
598
|
schemaVersion?: string;
|
|
521
599
|
}
|
|
522
600
|
export interface CreateComponentRequest {
|
|
523
601
|
appId: string | undefined;
|
|
524
|
-
|
|
525
602
|
environmentName: string | undefined;
|
|
526
|
-
|
|
527
603
|
clientToken?: string;
|
|
528
|
-
|
|
529
604
|
componentToCreate: CreateComponentData | undefined;
|
|
530
605
|
}
|
|
531
606
|
export interface CreateComponentResponse {
|
|
@@ -536,13 +611,9 @@ export interface GetComponentResponse {
|
|
|
536
611
|
}
|
|
537
612
|
export interface UpdateComponentRequest {
|
|
538
613
|
appId: string | undefined;
|
|
539
|
-
|
|
540
614
|
environmentName: string | undefined;
|
|
541
|
-
|
|
542
615
|
id: string | undefined;
|
|
543
|
-
|
|
544
616
|
clientToken?: string;
|
|
545
|
-
|
|
546
617
|
updatedComponent: UpdateComponentData | undefined;
|
|
547
618
|
}
|
|
548
619
|
export interface UpdateComponentResponse {
|
|
@@ -550,200 +621,229 @@ export interface UpdateComponentResponse {
|
|
|
550
621
|
}
|
|
551
622
|
export interface ExportComponentsResponse {
|
|
552
623
|
entities: Component[] | undefined;
|
|
553
|
-
|
|
554
624
|
nextToken?: string;
|
|
555
625
|
}
|
|
556
|
-
|
|
557
626
|
export declare const ComponentPropertyBindingPropertiesFilterSensitiveLog: (
|
|
558
627
|
obj: ComponentPropertyBindingProperties
|
|
559
628
|
) => any;
|
|
560
|
-
|
|
561
629
|
export declare const FormBindingElementFilterSensitiveLog: (
|
|
562
630
|
obj: FormBindingElement
|
|
563
631
|
) => any;
|
|
564
|
-
|
|
565
632
|
export declare const SortPropertyFilterSensitiveLog: (obj: SortProperty) => any;
|
|
566
|
-
|
|
567
633
|
export declare const ComponentVariantFilterSensitiveLog: (
|
|
568
634
|
obj: ComponentVariant
|
|
569
635
|
) => any;
|
|
570
|
-
|
|
571
636
|
export declare const DeleteComponentRequestFilterSensitiveLog: (
|
|
572
637
|
obj: DeleteComponentRequest
|
|
573
638
|
) => any;
|
|
574
|
-
|
|
575
639
|
export declare const ExportComponentsRequestFilterSensitiveLog: (
|
|
576
640
|
obj: ExportComponentsRequest
|
|
577
641
|
) => any;
|
|
578
|
-
|
|
579
642
|
export declare const GetComponentRequestFilterSensitiveLog: (
|
|
580
643
|
obj: GetComponentRequest
|
|
581
644
|
) => any;
|
|
582
|
-
|
|
583
645
|
export declare const ListComponentsRequestFilterSensitiveLog: (
|
|
584
646
|
obj: ListComponentsRequest
|
|
585
647
|
) => any;
|
|
586
|
-
|
|
587
648
|
export declare const ComponentSummaryFilterSensitiveLog: (
|
|
588
649
|
obj: ComponentSummary
|
|
589
650
|
) => any;
|
|
590
|
-
|
|
591
651
|
export declare const ListComponentsResponseFilterSensitiveLog: (
|
|
592
652
|
obj: ListComponentsResponse
|
|
593
653
|
) => any;
|
|
594
|
-
|
|
595
654
|
export declare const ExchangeCodeForTokenRequestBodyFilterSensitiveLog: (
|
|
596
655
|
obj: ExchangeCodeForTokenRequestBody
|
|
597
656
|
) => any;
|
|
598
|
-
|
|
599
657
|
export declare const ExchangeCodeForTokenRequestFilterSensitiveLog: (
|
|
600
658
|
obj: ExchangeCodeForTokenRequest
|
|
601
659
|
) => any;
|
|
602
|
-
|
|
603
660
|
export declare const ExchangeCodeForTokenResponseFilterSensitiveLog: (
|
|
604
661
|
obj: ExchangeCodeForTokenResponse
|
|
605
662
|
) => any;
|
|
606
|
-
|
|
663
|
+
export declare const FieldPositionFilterSensitiveLog: (
|
|
664
|
+
obj: FieldPosition
|
|
665
|
+
) => any;
|
|
666
|
+
export declare const FormButtonFilterSensitiveLog: (obj: FormButton) => any;
|
|
667
|
+
export declare const FormCTAFilterSensitiveLog: (obj: FormCTA) => any;
|
|
668
|
+
export declare const FormDataTypeConfigFilterSensitiveLog: (
|
|
669
|
+
obj: FormDataTypeConfig
|
|
670
|
+
) => any;
|
|
671
|
+
export declare const FormInputValuePropertyFilterSensitiveLog: (
|
|
672
|
+
obj: FormInputValueProperty
|
|
673
|
+
) => any;
|
|
674
|
+
export declare const ValueMappingFilterSensitiveLog: (obj: ValueMapping) => any;
|
|
675
|
+
export declare const ValueMappingsFilterSensitiveLog: (
|
|
676
|
+
obj: ValueMappings
|
|
677
|
+
) => any;
|
|
678
|
+
export declare const FieldInputConfigFilterSensitiveLog: (
|
|
679
|
+
obj: FieldInputConfig
|
|
680
|
+
) => any;
|
|
681
|
+
export declare const FieldValidationConfigurationFilterSensitiveLog: (
|
|
682
|
+
obj: FieldValidationConfiguration
|
|
683
|
+
) => any;
|
|
684
|
+
export declare const FieldConfigFilterSensitiveLog: (obj: FieldConfig) => any;
|
|
685
|
+
export declare const SectionalElementFilterSensitiveLog: (
|
|
686
|
+
obj: SectionalElement
|
|
687
|
+
) => any;
|
|
688
|
+
export declare const FormStyleConfigFilterSensitiveLog: (
|
|
689
|
+
obj: FormStyleConfig
|
|
690
|
+
) => any;
|
|
691
|
+
export declare const FormStyleFilterSensitiveLog: (obj: FormStyle) => any;
|
|
692
|
+
export declare const CreateFormDataFilterSensitiveLog: (
|
|
693
|
+
obj: CreateFormData
|
|
694
|
+
) => any;
|
|
695
|
+
export declare const CreateFormRequestFilterSensitiveLog: (
|
|
696
|
+
obj: CreateFormRequest
|
|
697
|
+
) => any;
|
|
698
|
+
export declare const FormFilterSensitiveLog: (obj: Form) => any;
|
|
699
|
+
export declare const CreateFormResponseFilterSensitiveLog: (
|
|
700
|
+
obj: CreateFormResponse
|
|
701
|
+
) => any;
|
|
702
|
+
export declare const DeleteFormRequestFilterSensitiveLog: (
|
|
703
|
+
obj: DeleteFormRequest
|
|
704
|
+
) => any;
|
|
705
|
+
export declare const ExportFormsRequestFilterSensitiveLog: (
|
|
706
|
+
obj: ExportFormsRequest
|
|
707
|
+
) => any;
|
|
708
|
+
export declare const ExportFormsResponseFilterSensitiveLog: (
|
|
709
|
+
obj: ExportFormsResponse
|
|
710
|
+
) => any;
|
|
711
|
+
export declare const GetFormRequestFilterSensitiveLog: (
|
|
712
|
+
obj: GetFormRequest
|
|
713
|
+
) => any;
|
|
714
|
+
export declare const GetFormResponseFilterSensitiveLog: (
|
|
715
|
+
obj: GetFormResponse
|
|
716
|
+
) => any;
|
|
717
|
+
export declare const ListFormsRequestFilterSensitiveLog: (
|
|
718
|
+
obj: ListFormsRequest
|
|
719
|
+
) => any;
|
|
720
|
+
export declare const FormSummaryFilterSensitiveLog: (obj: FormSummary) => any;
|
|
721
|
+
export declare const ListFormsResponseFilterSensitiveLog: (
|
|
722
|
+
obj: ListFormsResponse
|
|
723
|
+
) => any;
|
|
724
|
+
export declare const UpdateFormDataFilterSensitiveLog: (
|
|
725
|
+
obj: UpdateFormData
|
|
726
|
+
) => any;
|
|
727
|
+
export declare const UpdateFormRequestFilterSensitiveLog: (
|
|
728
|
+
obj: UpdateFormRequest
|
|
729
|
+
) => any;
|
|
730
|
+
export declare const UpdateFormResponseFilterSensitiveLog: (
|
|
731
|
+
obj: UpdateFormResponse
|
|
732
|
+
) => any;
|
|
733
|
+
export declare const GetMetadataRequestFilterSensitiveLog: (
|
|
734
|
+
obj: GetMetadataRequest
|
|
735
|
+
) => any;
|
|
736
|
+
export declare const GetMetadataResponseFilterSensitiveLog: (
|
|
737
|
+
obj: GetMetadataResponse
|
|
738
|
+
) => any;
|
|
739
|
+
export declare const PutMetadataFlagBodyFilterSensitiveLog: (
|
|
740
|
+
obj: PutMetadataFlagBody
|
|
741
|
+
) => any;
|
|
742
|
+
export declare const PutMetadataFlagRequestFilterSensitiveLog: (
|
|
743
|
+
obj: PutMetadataFlagRequest
|
|
744
|
+
) => any;
|
|
607
745
|
export declare const RefreshTokenRequestBodyFilterSensitiveLog: (
|
|
608
746
|
obj: RefreshTokenRequestBody
|
|
609
747
|
) => any;
|
|
610
|
-
|
|
611
748
|
export declare const RefreshTokenRequestFilterSensitiveLog: (
|
|
612
749
|
obj: RefreshTokenRequest
|
|
613
750
|
) => any;
|
|
614
|
-
|
|
615
751
|
export declare const RefreshTokenResponseFilterSensitiveLog: (
|
|
616
752
|
obj: RefreshTokenResponse
|
|
617
753
|
) => any;
|
|
618
|
-
|
|
619
754
|
export declare const DeleteThemeRequestFilterSensitiveLog: (
|
|
620
755
|
obj: DeleteThemeRequest
|
|
621
756
|
) => any;
|
|
622
|
-
|
|
623
757
|
export declare const ExportThemesRequestFilterSensitiveLog: (
|
|
624
758
|
obj: ExportThemesRequest
|
|
625
759
|
) => any;
|
|
626
|
-
|
|
627
760
|
export declare const GetThemeRequestFilterSensitiveLog: (
|
|
628
761
|
obj: GetThemeRequest
|
|
629
762
|
) => any;
|
|
630
|
-
|
|
631
763
|
export declare const ListThemesRequestFilterSensitiveLog: (
|
|
632
764
|
obj: ListThemesRequest
|
|
633
765
|
) => any;
|
|
634
|
-
|
|
635
766
|
export declare const ThemeSummaryFilterSensitiveLog: (obj: ThemeSummary) => any;
|
|
636
|
-
|
|
637
767
|
export declare const ListThemesResponseFilterSensitiveLog: (
|
|
638
768
|
obj: ListThemesResponse
|
|
639
769
|
) => any;
|
|
640
|
-
|
|
641
770
|
export declare const ThemeValueFilterSensitiveLog: (obj: ThemeValue) => any;
|
|
642
|
-
|
|
643
771
|
export declare const ThemeValuesFilterSensitiveLog: (obj: ThemeValues) => any;
|
|
644
|
-
|
|
645
772
|
export declare const PredicateFilterSensitiveLog: (obj: Predicate) => any;
|
|
646
|
-
|
|
647
773
|
export declare const ComponentBindingPropertiesValuePropertiesFilterSensitiveLog: (
|
|
648
774
|
obj: ComponentBindingPropertiesValueProperties
|
|
649
775
|
) => any;
|
|
650
|
-
|
|
651
776
|
export declare const ComponentDataConfigurationFilterSensitiveLog: (
|
|
652
777
|
obj: ComponentDataConfiguration
|
|
653
778
|
) => any;
|
|
654
|
-
|
|
655
779
|
export declare const ComponentPropertyFilterSensitiveLog: (
|
|
656
780
|
obj: ComponentProperty
|
|
657
781
|
) => any;
|
|
658
|
-
|
|
659
782
|
export declare const ComponentBindingPropertiesValueFilterSensitiveLog: (
|
|
660
783
|
obj: ComponentBindingPropertiesValue
|
|
661
784
|
) => any;
|
|
662
|
-
|
|
663
785
|
export declare const CreateThemeDataFilterSensitiveLog: (
|
|
664
786
|
obj: CreateThemeData
|
|
665
787
|
) => any;
|
|
666
|
-
|
|
667
788
|
export declare const ThemeFilterSensitiveLog: (obj: Theme) => any;
|
|
668
|
-
|
|
669
789
|
export declare const UpdateThemeDataFilterSensitiveLog: (
|
|
670
790
|
obj: UpdateThemeData
|
|
671
791
|
) => any;
|
|
672
|
-
|
|
673
792
|
export declare const MutationActionSetStateParameterFilterSensitiveLog: (
|
|
674
793
|
obj: MutationActionSetStateParameter
|
|
675
794
|
) => any;
|
|
676
|
-
|
|
677
795
|
export declare const ComponentConditionPropertyFilterSensitiveLog: (
|
|
678
796
|
obj: ComponentConditionProperty
|
|
679
797
|
) => any;
|
|
680
|
-
|
|
681
798
|
export declare const CreateThemeRequestFilterSensitiveLog: (
|
|
682
799
|
obj: CreateThemeRequest
|
|
683
800
|
) => any;
|
|
684
|
-
|
|
685
801
|
export declare const CreateThemeResponseFilterSensitiveLog: (
|
|
686
802
|
obj: CreateThemeResponse
|
|
687
803
|
) => any;
|
|
688
|
-
|
|
689
804
|
export declare const GetThemeResponseFilterSensitiveLog: (
|
|
690
805
|
obj: GetThemeResponse
|
|
691
806
|
) => any;
|
|
692
|
-
|
|
693
807
|
export declare const UpdateThemeRequestFilterSensitiveLog: (
|
|
694
808
|
obj: UpdateThemeRequest
|
|
695
809
|
) => any;
|
|
696
|
-
|
|
697
810
|
export declare const UpdateThemeResponseFilterSensitiveLog: (
|
|
698
811
|
obj: UpdateThemeResponse
|
|
699
812
|
) => any;
|
|
700
|
-
|
|
701
813
|
export declare const ExportThemesResponseFilterSensitiveLog: (
|
|
702
814
|
obj: ExportThemesResponse
|
|
703
815
|
) => any;
|
|
704
|
-
|
|
705
816
|
export declare const ActionParametersFilterSensitiveLog: (
|
|
706
817
|
obj: ActionParameters
|
|
707
818
|
) => any;
|
|
708
|
-
|
|
709
819
|
export declare const ComponentEventFilterSensitiveLog: (
|
|
710
820
|
obj: ComponentEvent
|
|
711
821
|
) => any;
|
|
712
|
-
|
|
713
822
|
export declare const ComponentChildFilterSensitiveLog: (
|
|
714
823
|
obj: ComponentChild
|
|
715
824
|
) => any;
|
|
716
|
-
|
|
717
825
|
export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
|
|
718
|
-
|
|
719
826
|
export declare const CreateComponentDataFilterSensitiveLog: (
|
|
720
827
|
obj: CreateComponentData
|
|
721
828
|
) => any;
|
|
722
|
-
|
|
723
829
|
export declare const UpdateComponentDataFilterSensitiveLog: (
|
|
724
830
|
obj: UpdateComponentData
|
|
725
831
|
) => any;
|
|
726
|
-
|
|
727
832
|
export declare const CreateComponentRequestFilterSensitiveLog: (
|
|
728
833
|
obj: CreateComponentRequest
|
|
729
834
|
) => any;
|
|
730
|
-
|
|
731
835
|
export declare const CreateComponentResponseFilterSensitiveLog: (
|
|
732
836
|
obj: CreateComponentResponse
|
|
733
837
|
) => any;
|
|
734
|
-
|
|
735
838
|
export declare const GetComponentResponseFilterSensitiveLog: (
|
|
736
839
|
obj: GetComponentResponse
|
|
737
840
|
) => any;
|
|
738
|
-
|
|
739
841
|
export declare const UpdateComponentRequestFilterSensitiveLog: (
|
|
740
842
|
obj: UpdateComponentRequest
|
|
741
843
|
) => any;
|
|
742
|
-
|
|
743
844
|
export declare const UpdateComponentResponseFilterSensitiveLog: (
|
|
744
845
|
obj: UpdateComponentResponse
|
|
745
846
|
) => any;
|
|
746
|
-
|
|
747
847
|
export declare const ExportComponentsResponseFilterSensitiveLog: (
|
|
748
848
|
obj: ExportComponentsResponse
|
|
749
849
|
) => any;
|