@aws-sdk/client-amplifyuibuilder 3.180.0 → 3.183.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 +20 -0
- package/dist-cjs/protocols/Aws_restJson1.js +28 -22
- package/dist-es/AmplifyUIBuilder.js +90 -97
- package/dist-es/AmplifyUIBuilderClient.js +22 -28
- package/dist-es/commands/CreateComponentCommand.js +21 -28
- package/dist-es/commands/CreateFormCommand.js +21 -28
- package/dist-es/commands/CreateThemeCommand.js +21 -28
- package/dist-es/commands/DeleteComponentCommand.js +22 -29
- package/dist-es/commands/DeleteFormCommand.js +22 -29
- package/dist-es/commands/DeleteThemeCommand.js +22 -29
- package/dist-es/commands/ExchangeCodeForTokenCommand.js +21 -28
- package/dist-es/commands/ExportComponentsCommand.js +21 -28
- package/dist-es/commands/ExportFormsCommand.js +21 -28
- package/dist-es/commands/ExportThemesCommand.js +21 -28
- package/dist-es/commands/GetComponentCommand.js +21 -28
- package/dist-es/commands/GetFormCommand.js +21 -28
- package/dist-es/commands/GetMetadataCommand.js +21 -28
- package/dist-es/commands/GetThemeCommand.js +21 -28
- package/dist-es/commands/ListComponentsCommand.js +21 -28
- package/dist-es/commands/ListFormsCommand.js +21 -28
- package/dist-es/commands/ListThemesCommand.js +21 -28
- package/dist-es/commands/PutMetadataFlagCommand.js +22 -29
- package/dist-es/commands/RefreshTokenCommand.js +21 -28
- package/dist-es/commands/UpdateComponentCommand.js +21 -28
- package/dist-es/commands/UpdateFormCommand.js +21 -28
- package/dist-es/commands/UpdateThemeCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AmplifyUIBuilderServiceException.js +5 -10
- package/dist-es/models/models_0.js +382 -193
- package/dist-es/pagination/ExportComponentsPaginator.js +24 -67
- package/dist-es/pagination/ExportFormsPaginator.js +24 -67
- package/dist-es/pagination/ExportThemesPaginator.js +24 -67
- package/dist-es/pagination/ListComponentsPaginator.js +25 -68
- package/dist-es/pagination/ListFormsPaginator.js +25 -68
- package/dist-es/pagination/ListThemesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2045 -2476
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,66 +1,65 @@
|
|
|
1
|
-
import { __assign, __extends, __read } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { AmplifyUIBuilderServiceException as __BaseException } from "./AmplifyUIBuilderServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
export class InternalServerException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "InternalServerException",
|
|
7
|
+
$fault: "server",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "InternalServerException";
|
|
11
|
+
this.$fault = "server";
|
|
12
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
14
|
+
}
|
|
15
|
+
export class InvalidParameterException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "InvalidParameterException",
|
|
19
|
+
$fault: "client",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "InvalidParameterException";
|
|
23
|
+
this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
24
25
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
}
|
|
27
|
+
export class ResourceConflictException extends __BaseException {
|
|
28
|
+
constructor(opts) {
|
|
29
|
+
super({
|
|
30
|
+
name: "ResourceConflictException",
|
|
31
|
+
$fault: "client",
|
|
32
|
+
...opts,
|
|
33
|
+
});
|
|
34
|
+
this.name = "ResourceConflictException";
|
|
35
|
+
this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
36
37
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
}
|
|
39
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "ServiceQuotaExceededException",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
this.name = "ServiceQuotaExceededException";
|
|
47
|
+
this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
48
49
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
50
|
+
}
|
|
51
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "ResourceNotFoundException",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
this.name = "ResourceNotFoundException";
|
|
59
|
+
this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
60
61
|
}
|
|
61
|
-
|
|
62
|
-
}(__BaseException));
|
|
63
|
-
export { ResourceNotFoundException };
|
|
62
|
+
}
|
|
64
63
|
export var TokenProviders;
|
|
65
64
|
(function (TokenProviders) {
|
|
66
65
|
TokenProviders["FIGMA"] = "figma";
|
|
@@ -71,7 +70,7 @@ export var FixedPosition;
|
|
|
71
70
|
})(FixedPosition || (FixedPosition = {}));
|
|
72
71
|
export var FieldPosition;
|
|
73
72
|
(function (FieldPosition) {
|
|
74
|
-
FieldPosition.visit =
|
|
73
|
+
FieldPosition.visit = (value, visitor) => {
|
|
75
74
|
if (value.fixed !== undefined)
|
|
76
75
|
return visitor.fixed(value.fixed);
|
|
77
76
|
if (value.rightOf !== undefined)
|
|
@@ -99,7 +98,7 @@ export var FormActionType;
|
|
|
99
98
|
})(FormActionType || (FormActionType = {}));
|
|
100
99
|
export var FormStyleConfig;
|
|
101
100
|
(function (FormStyleConfig) {
|
|
102
|
-
FormStyleConfig.visit =
|
|
101
|
+
FormStyleConfig.visit = (value, visitor) => {
|
|
103
102
|
if (value.tokenReference !== undefined)
|
|
104
103
|
return visitor.tokenReference(value.tokenReference);
|
|
105
104
|
if (value.value !== undefined)
|
|
@@ -107,33 +106,62 @@ export var FormStyleConfig;
|
|
|
107
106
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
108
107
|
};
|
|
109
108
|
})(FormStyleConfig || (FormStyleConfig = {}));
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
109
|
+
export class UnauthorizedException extends __BaseException {
|
|
110
|
+
constructor(opts) {
|
|
111
|
+
super({
|
|
112
|
+
name: "UnauthorizedException",
|
|
113
|
+
$fault: "client",
|
|
114
|
+
...opts,
|
|
115
|
+
});
|
|
116
|
+
this.name = "UnauthorizedException";
|
|
117
|
+
this.$fault = "client";
|
|
118
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
118
119
|
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
export
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
export
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
export
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
export
|
|
136
|
-
|
|
120
|
+
}
|
|
121
|
+
export const ComponentPropertyBindingPropertiesFilterSensitiveLog = (obj) => ({
|
|
122
|
+
...obj,
|
|
123
|
+
});
|
|
124
|
+
export const FormBindingElementFilterSensitiveLog = (obj) => ({
|
|
125
|
+
...obj,
|
|
126
|
+
});
|
|
127
|
+
export const SortPropertyFilterSensitiveLog = (obj) => ({
|
|
128
|
+
...obj,
|
|
129
|
+
});
|
|
130
|
+
export const ComponentVariantFilterSensitiveLog = (obj) => ({
|
|
131
|
+
...obj,
|
|
132
|
+
});
|
|
133
|
+
export const DeleteComponentRequestFilterSensitiveLog = (obj) => ({
|
|
134
|
+
...obj,
|
|
135
|
+
});
|
|
136
|
+
export const ExportComponentsRequestFilterSensitiveLog = (obj) => ({
|
|
137
|
+
...obj,
|
|
138
|
+
});
|
|
139
|
+
export const GetComponentRequestFilterSensitiveLog = (obj) => ({
|
|
140
|
+
...obj,
|
|
141
|
+
});
|
|
142
|
+
export const ListComponentsRequestFilterSensitiveLog = (obj) => ({
|
|
143
|
+
...obj,
|
|
144
|
+
});
|
|
145
|
+
export const ComponentSummaryFilterSensitiveLog = (obj) => ({
|
|
146
|
+
...obj,
|
|
147
|
+
});
|
|
148
|
+
export const ListComponentsResponseFilterSensitiveLog = (obj) => ({
|
|
149
|
+
...obj,
|
|
150
|
+
});
|
|
151
|
+
export const ExchangeCodeForTokenRequestBodyFilterSensitiveLog = (obj) => ({
|
|
152
|
+
...obj,
|
|
153
|
+
...(obj.code && { code: SENSITIVE_STRING }),
|
|
154
|
+
});
|
|
155
|
+
export const ExchangeCodeForTokenRequestFilterSensitiveLog = (obj) => ({
|
|
156
|
+
...obj,
|
|
157
|
+
...(obj.request && { request: ExchangeCodeForTokenRequestBodyFilterSensitiveLog(obj.request) }),
|
|
158
|
+
});
|
|
159
|
+
export const ExchangeCodeForTokenResponseFilterSensitiveLog = (obj) => ({
|
|
160
|
+
...obj,
|
|
161
|
+
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
162
|
+
...(obj.refreshToken && { refreshToken: SENSITIVE_STRING }),
|
|
163
|
+
});
|
|
164
|
+
export const FieldPositionFilterSensitiveLog = (obj) => {
|
|
137
165
|
if (obj.fixed !== undefined)
|
|
138
166
|
return { fixed: obj.fixed };
|
|
139
167
|
if (obj.rightOf !== undefined)
|
|
@@ -141,119 +169,280 @@ export var FieldPositionFilterSensitiveLog = function (obj) {
|
|
|
141
169
|
if (obj.below !== undefined)
|
|
142
170
|
return { below: obj.below };
|
|
143
171
|
if (obj.$unknown !== undefined)
|
|
144
|
-
return
|
|
172
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
145
173
|
};
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
export
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
export
|
|
157
|
-
|
|
174
|
+
export const FormButtonFilterSensitiveLog = (obj) => ({
|
|
175
|
+
...obj,
|
|
176
|
+
...(obj.position && { position: FieldPositionFilterSensitiveLog(obj.position) }),
|
|
177
|
+
});
|
|
178
|
+
export const FormCTAFilterSensitiveLog = (obj) => ({
|
|
179
|
+
...obj,
|
|
180
|
+
...(obj.clear && { clear: FormButtonFilterSensitiveLog(obj.clear) }),
|
|
181
|
+
...(obj.cancel && { cancel: FormButtonFilterSensitiveLog(obj.cancel) }),
|
|
182
|
+
...(obj.submit && { submit: FormButtonFilterSensitiveLog(obj.submit) }),
|
|
183
|
+
});
|
|
184
|
+
export const FormDataTypeConfigFilterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
});
|
|
187
|
+
export const FormInputValuePropertyFilterSensitiveLog = (obj) => ({
|
|
188
|
+
...obj,
|
|
189
|
+
});
|
|
190
|
+
export const ValueMappingFilterSensitiveLog = (obj) => ({
|
|
191
|
+
...obj,
|
|
192
|
+
});
|
|
193
|
+
export const ValueMappingsFilterSensitiveLog = (obj) => ({
|
|
194
|
+
...obj,
|
|
195
|
+
});
|
|
196
|
+
export const FieldInputConfigFilterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
});
|
|
199
|
+
export const FieldValidationConfigurationFilterSensitiveLog = (obj) => ({
|
|
200
|
+
...obj,
|
|
201
|
+
});
|
|
202
|
+
export const FieldConfigFilterSensitiveLog = (obj) => ({
|
|
203
|
+
...obj,
|
|
204
|
+
...(obj.position && { position: FieldPositionFilterSensitiveLog(obj.position) }),
|
|
205
|
+
});
|
|
206
|
+
export const SectionalElementFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
...(obj.position && { position: FieldPositionFilterSensitiveLog(obj.position) }),
|
|
209
|
+
});
|
|
210
|
+
export const FormStyleConfigFilterSensitiveLog = (obj) => {
|
|
158
211
|
if (obj.tokenReference !== undefined)
|
|
159
212
|
return { tokenReference: obj.tokenReference };
|
|
160
213
|
if (obj.value !== undefined)
|
|
161
214
|
return { value: obj.value };
|
|
162
215
|
if (obj.$unknown !== undefined)
|
|
163
|
-
return
|
|
216
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
164
217
|
};
|
|
165
|
-
export
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
})
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
})
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
export
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
export
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
218
|
+
export const FormStyleFilterSensitiveLog = (obj) => ({
|
|
219
|
+
...obj,
|
|
220
|
+
...(obj.horizontalGap && { horizontalGap: FormStyleConfigFilterSensitiveLog(obj.horizontalGap) }),
|
|
221
|
+
...(obj.verticalGap && { verticalGap: FormStyleConfigFilterSensitiveLog(obj.verticalGap) }),
|
|
222
|
+
...(obj.outerPadding && { outerPadding: FormStyleConfigFilterSensitiveLog(obj.outerPadding) }),
|
|
223
|
+
});
|
|
224
|
+
export const CreateFormDataFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
...(obj.fields && {
|
|
227
|
+
fields: Object.entries(obj.fields).reduce((acc, [key, value]) => ({
|
|
228
|
+
...acc,
|
|
229
|
+
[key]: FieldConfigFilterSensitiveLog(value),
|
|
230
|
+
}), {}),
|
|
231
|
+
}),
|
|
232
|
+
...(obj.style && { style: FormStyleFilterSensitiveLog(obj.style) }),
|
|
233
|
+
...(obj.sectionalElements && {
|
|
234
|
+
sectionalElements: Object.entries(obj.sectionalElements).reduce((acc, [key, value]) => ({
|
|
235
|
+
...acc,
|
|
236
|
+
[key]: SectionalElementFilterSensitiveLog(value),
|
|
237
|
+
}), {}),
|
|
238
|
+
}),
|
|
239
|
+
...(obj.cta && { cta: FormCTAFilterSensitiveLog(obj.cta) }),
|
|
240
|
+
});
|
|
241
|
+
export const CreateFormRequestFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
...(obj.formToCreate && { formToCreate: CreateFormDataFilterSensitiveLog(obj.formToCreate) }),
|
|
244
|
+
});
|
|
245
|
+
export const FormFilterSensitiveLog = (obj) => ({
|
|
246
|
+
...obj,
|
|
247
|
+
...(obj.style && { style: FormStyleFilterSensitiveLog(obj.style) }),
|
|
248
|
+
...(obj.fields && {
|
|
249
|
+
fields: Object.entries(obj.fields).reduce((acc, [key, value]) => ({
|
|
250
|
+
...acc,
|
|
251
|
+
[key]: FieldConfigFilterSensitiveLog(value),
|
|
252
|
+
}), {}),
|
|
253
|
+
}),
|
|
254
|
+
...(obj.sectionalElements && {
|
|
255
|
+
sectionalElements: Object.entries(obj.sectionalElements).reduce((acc, [key, value]) => ({
|
|
256
|
+
...acc,
|
|
257
|
+
[key]: SectionalElementFilterSensitiveLog(value),
|
|
258
|
+
}), {}),
|
|
259
|
+
}),
|
|
260
|
+
...(obj.cta && { cta: FormCTAFilterSensitiveLog(obj.cta) }),
|
|
261
|
+
});
|
|
262
|
+
export const CreateFormResponseFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
...(obj.entity && { entity: FormFilterSensitiveLog(obj.entity) }),
|
|
265
|
+
});
|
|
266
|
+
export const DeleteFormRequestFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
});
|
|
269
|
+
export const ExportFormsRequestFilterSensitiveLog = (obj) => ({
|
|
270
|
+
...obj,
|
|
271
|
+
});
|
|
272
|
+
export const ExportFormsResponseFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
...(obj.entities && { entities: obj.entities.map((item) => FormFilterSensitiveLog(item)) }),
|
|
275
|
+
});
|
|
276
|
+
export const GetFormRequestFilterSensitiveLog = (obj) => ({
|
|
277
|
+
...obj,
|
|
278
|
+
});
|
|
279
|
+
export const GetFormResponseFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
...(obj.form && { form: FormFilterSensitiveLog(obj.form) }),
|
|
282
|
+
});
|
|
283
|
+
export const ListFormsRequestFilterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
export const FormSummaryFilterSensitiveLog = (obj) => ({
|
|
287
|
+
...obj,
|
|
288
|
+
});
|
|
289
|
+
export const ListFormsResponseFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
export const UpdateFormDataFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
...(obj.fields && {
|
|
295
|
+
fields: Object.entries(obj.fields).reduce((acc, [key, value]) => ({
|
|
296
|
+
...acc,
|
|
297
|
+
[key]: FieldConfigFilterSensitiveLog(value),
|
|
298
|
+
}), {}),
|
|
299
|
+
}),
|
|
300
|
+
...(obj.style && { style: FormStyleFilterSensitiveLog(obj.style) }),
|
|
301
|
+
...(obj.sectionalElements && {
|
|
302
|
+
sectionalElements: Object.entries(obj.sectionalElements).reduce((acc, [key, value]) => ({
|
|
303
|
+
...acc,
|
|
304
|
+
[key]: SectionalElementFilterSensitiveLog(value),
|
|
305
|
+
}), {}),
|
|
306
|
+
}),
|
|
307
|
+
...(obj.cta && { cta: FormCTAFilterSensitiveLog(obj.cta) }),
|
|
308
|
+
});
|
|
309
|
+
export const UpdateFormRequestFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
...(obj.updatedForm && { updatedForm: UpdateFormDataFilterSensitiveLog(obj.updatedForm) }),
|
|
312
|
+
});
|
|
313
|
+
export const UpdateFormResponseFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
...(obj.entity && { entity: FormFilterSensitiveLog(obj.entity) }),
|
|
316
|
+
});
|
|
317
|
+
export const GetMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
318
|
+
...obj,
|
|
319
|
+
});
|
|
320
|
+
export const GetMetadataResponseFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
});
|
|
323
|
+
export const PutMetadataFlagBodyFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
});
|
|
326
|
+
export const PutMetadataFlagRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
328
|
+
});
|
|
329
|
+
export const RefreshTokenRequestBodyFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
...(obj.token && { token: SENSITIVE_STRING }),
|
|
332
|
+
});
|
|
333
|
+
export const RefreshTokenRequestFilterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
...(obj.refreshTokenBody && { refreshTokenBody: RefreshTokenRequestBodyFilterSensitiveLog(obj.refreshTokenBody) }),
|
|
336
|
+
});
|
|
337
|
+
export const RefreshTokenResponseFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
340
|
+
});
|
|
341
|
+
export const DeleteThemeRequestFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const ExportThemesRequestFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const GetThemeRequestFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
});
|
|
350
|
+
export const ListThemesRequestFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const ThemeSummaryFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const ListThemesResponseFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const ThemeValueFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const ThemeValuesFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
});
|
|
365
|
+
export const PredicateFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
});
|
|
368
|
+
export const ComponentBindingPropertiesValuePropertiesFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
export const ComponentDataConfigurationFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
});
|
|
374
|
+
export const ComponentPropertyFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
export const ComponentBindingPropertiesValueFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
});
|
|
380
|
+
export const CreateThemeDataFilterSensitiveLog = (obj) => ({
|
|
381
|
+
...obj,
|
|
382
|
+
});
|
|
383
|
+
export const ThemeFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
});
|
|
386
|
+
export const UpdateThemeDataFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
});
|
|
389
|
+
export const MutationActionSetStateParameterFilterSensitiveLog = (obj) => ({
|
|
390
|
+
...obj,
|
|
391
|
+
});
|
|
392
|
+
export const ComponentConditionPropertyFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
});
|
|
395
|
+
export const CreateThemeRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
export const CreateThemeResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
});
|
|
401
|
+
export const GetThemeResponseFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
});
|
|
404
|
+
export const UpdateThemeRequestFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
export const UpdateThemeResponseFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
});
|
|
410
|
+
export const ExportThemesResponseFilterSensitiveLog = (obj) => ({
|
|
411
|
+
...obj,
|
|
412
|
+
});
|
|
413
|
+
export const ActionParametersFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
export const ComponentEventFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
});
|
|
419
|
+
export const ComponentChildFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
});
|
|
422
|
+
export const ComponentFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
});
|
|
425
|
+
export const CreateComponentDataFilterSensitiveLog = (obj) => ({
|
|
426
|
+
...obj,
|
|
427
|
+
});
|
|
428
|
+
export const UpdateComponentDataFilterSensitiveLog = (obj) => ({
|
|
429
|
+
...obj,
|
|
430
|
+
});
|
|
431
|
+
export const CreateComponentRequestFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
});
|
|
434
|
+
export const CreateComponentResponseFilterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
});
|
|
437
|
+
export const GetComponentResponseFilterSensitiveLog = (obj) => ({
|
|
438
|
+
...obj,
|
|
439
|
+
});
|
|
440
|
+
export const UpdateComponentRequestFilterSensitiveLog = (obj) => ({
|
|
441
|
+
...obj,
|
|
442
|
+
});
|
|
443
|
+
export const UpdateComponentResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
});
|
|
446
|
+
export const ExportComponentsResponseFilterSensitiveLog = (obj) => ({
|
|
447
|
+
...obj,
|
|
448
|
+
});
|