@objectstack/platform-objects 0.1.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/LICENSE +202 -0
- package/dist/apps/index.d.mts +427 -0
- package/dist/apps/index.d.ts +427 -0
- package/dist/apps/index.js +520 -0
- package/dist/apps/index.js.map +1 -0
- package/dist/apps/index.mjs +510 -0
- package/dist/apps/index.mjs.map +1 -0
- package/dist/audit/index.d.mts +9507 -0
- package/dist/audit/index.d.ts +9507 -0
- package/dist/audit/index.js +492 -0
- package/dist/audit/index.js.map +1 -0
- package/dist/audit/index.mjs +487 -0
- package/dist/audit/index.mjs.map +1 -0
- package/dist/identity/index.d.mts +32482 -0
- package/dist/identity/index.d.ts +32482 -0
- package/dist/identity/index.js +1404 -0
- package/dist/identity/index.js.map +1 -0
- package/dist/identity/index.mjs +1385 -0
- package/dist/identity/index.mjs.map +1 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +4209 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4160 -0
- package/dist/index.mjs.map +1 -0
- package/dist/metadata/index.d.mts +25601 -0
- package/dist/metadata/index.d.ts +25601 -0
- package/dist/metadata/index.js +911 -0
- package/dist/metadata/index.js.map +1 -0
- package/dist/metadata/index.mjs +902 -0
- package/dist/metadata/index.mjs.map +1 -0
- package/dist/security/index.d.mts +3554 -0
- package/dist/security/index.d.ts +3554 -0
- package/dist/security/index.js +178 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/index.mjs +175 -0
- package/dist/security/index.mjs.map +1 -0
- package/dist/state-machine.zod-BFg-VE0M.d-Ek3_yo9P.d.mts +41 -0
- package/dist/state-machine.zod-BFg-VE0M.d-Ek3_yo9P.d.ts +41 -0
- package/dist/tenant/index.d.mts +16454 -0
- package/dist/tenant/index.d.ts +16454 -0
- package/dist/tenant/index.js +741 -0
- package/dist/tenant/index.js.map +1 -0
- package/dist/tenant/index.mjs +733 -0
- package/dist/tenant/index.mjs.map +1 -0
- package/package.json +84 -0
|
@@ -0,0 +1,3554 @@
|
|
|
1
|
+
import { S as StateNodeConfig } from '../state-machine.zod-BFg-VE0M.d-Ek3_yo9P.mjs';
|
|
2
|
+
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
3
|
+
import 'zod';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* sys_role — System Role Object
|
|
7
|
+
*
|
|
8
|
+
* RBAC role definition for the ObjectStack platform.
|
|
9
|
+
* Roles group permissions and are assigned to users or members.
|
|
10
|
+
*
|
|
11
|
+
* @namespace sys
|
|
12
|
+
*/
|
|
13
|
+
declare const SysRole: Omit<{
|
|
14
|
+
name: string;
|
|
15
|
+
active: boolean;
|
|
16
|
+
isSystem: boolean;
|
|
17
|
+
abstract: boolean;
|
|
18
|
+
datasource: string;
|
|
19
|
+
fields: Record<string, {
|
|
20
|
+
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
21
|
+
required: boolean;
|
|
22
|
+
searchable: boolean;
|
|
23
|
+
multiple: boolean;
|
|
24
|
+
unique: boolean;
|
|
25
|
+
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
26
|
+
auditTrail: boolean;
|
|
27
|
+
hidden: boolean;
|
|
28
|
+
readonly: boolean;
|
|
29
|
+
sortable: boolean;
|
|
30
|
+
index: boolean;
|
|
31
|
+
externalId: boolean;
|
|
32
|
+
name?: string | undefined;
|
|
33
|
+
label?: string | undefined;
|
|
34
|
+
description?: string | undefined;
|
|
35
|
+
format?: string | undefined;
|
|
36
|
+
columnName?: string | undefined;
|
|
37
|
+
defaultValue?: unknown;
|
|
38
|
+
maxLength?: number | undefined;
|
|
39
|
+
minLength?: number | undefined;
|
|
40
|
+
precision?: number | undefined;
|
|
41
|
+
scale?: number | undefined;
|
|
42
|
+
min?: number | undefined;
|
|
43
|
+
max?: number | undefined;
|
|
44
|
+
options?: {
|
|
45
|
+
label: string;
|
|
46
|
+
value: string;
|
|
47
|
+
color?: string | undefined;
|
|
48
|
+
default?: boolean | undefined;
|
|
49
|
+
}[] | undefined;
|
|
50
|
+
reference?: string | undefined;
|
|
51
|
+
referenceFilters?: string[] | undefined;
|
|
52
|
+
writeRequiresMasterRead?: boolean | undefined;
|
|
53
|
+
expression?: string | undefined;
|
|
54
|
+
summaryOperations?: {
|
|
55
|
+
object: string;
|
|
56
|
+
field: string;
|
|
57
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
58
|
+
} | undefined;
|
|
59
|
+
language?: string | undefined;
|
|
60
|
+
theme?: string | undefined;
|
|
61
|
+
lineNumbers?: boolean | undefined;
|
|
62
|
+
maxRating?: number | undefined;
|
|
63
|
+
allowHalf?: boolean | undefined;
|
|
64
|
+
displayMap?: boolean | undefined;
|
|
65
|
+
allowGeocoding?: boolean | undefined;
|
|
66
|
+
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
67
|
+
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
68
|
+
allowAlpha?: boolean | undefined;
|
|
69
|
+
presetColors?: string[] | undefined;
|
|
70
|
+
step?: number | undefined;
|
|
71
|
+
showValue?: boolean | undefined;
|
|
72
|
+
marks?: Record<string, string> | undefined;
|
|
73
|
+
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
74
|
+
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
75
|
+
displayValue?: boolean | undefined;
|
|
76
|
+
allowScanning?: boolean | undefined;
|
|
77
|
+
currencyConfig?: {
|
|
78
|
+
precision: number;
|
|
79
|
+
currencyMode: "fixed" | "dynamic";
|
|
80
|
+
defaultCurrency: string;
|
|
81
|
+
} | undefined;
|
|
82
|
+
vectorConfig?: {
|
|
83
|
+
dimensions: number;
|
|
84
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
85
|
+
normalized: boolean;
|
|
86
|
+
indexed: boolean;
|
|
87
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
88
|
+
} | undefined;
|
|
89
|
+
fileAttachmentConfig?: {
|
|
90
|
+
virusScan: boolean;
|
|
91
|
+
virusScanOnUpload: boolean;
|
|
92
|
+
quarantineOnThreat: boolean;
|
|
93
|
+
allowMultiple: boolean;
|
|
94
|
+
allowReplace: boolean;
|
|
95
|
+
allowDelete: boolean;
|
|
96
|
+
requireUpload: boolean;
|
|
97
|
+
extractMetadata: boolean;
|
|
98
|
+
extractText: boolean;
|
|
99
|
+
versioningEnabled: boolean;
|
|
100
|
+
publicRead: boolean;
|
|
101
|
+
presignedUrlExpiry: number;
|
|
102
|
+
minSize?: number | undefined;
|
|
103
|
+
maxSize?: number | undefined;
|
|
104
|
+
allowedTypes?: string[] | undefined;
|
|
105
|
+
blockedTypes?: string[] | undefined;
|
|
106
|
+
allowedMimeTypes?: string[] | undefined;
|
|
107
|
+
blockedMimeTypes?: string[] | undefined;
|
|
108
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
109
|
+
storageProvider?: string | undefined;
|
|
110
|
+
storageBucket?: string | undefined;
|
|
111
|
+
storagePrefix?: string | undefined;
|
|
112
|
+
imageValidation?: {
|
|
113
|
+
generateThumbnails: boolean;
|
|
114
|
+
preserveMetadata: boolean;
|
|
115
|
+
autoRotate: boolean;
|
|
116
|
+
minWidth?: number | undefined;
|
|
117
|
+
maxWidth?: number | undefined;
|
|
118
|
+
minHeight?: number | undefined;
|
|
119
|
+
maxHeight?: number | undefined;
|
|
120
|
+
aspectRatio?: string | undefined;
|
|
121
|
+
thumbnailSizes?: {
|
|
122
|
+
name: string;
|
|
123
|
+
width: number;
|
|
124
|
+
height: number;
|
|
125
|
+
crop: boolean;
|
|
126
|
+
}[] | undefined;
|
|
127
|
+
} | undefined;
|
|
128
|
+
maxVersions?: number | undefined;
|
|
129
|
+
} | undefined;
|
|
130
|
+
encryptionConfig?: {
|
|
131
|
+
enabled: boolean;
|
|
132
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
133
|
+
keyManagement: {
|
|
134
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
135
|
+
keyId?: string | undefined;
|
|
136
|
+
rotationPolicy?: {
|
|
137
|
+
enabled: boolean;
|
|
138
|
+
frequencyDays: number;
|
|
139
|
+
retainOldVersions: number;
|
|
140
|
+
autoRotate: boolean;
|
|
141
|
+
} | undefined;
|
|
142
|
+
};
|
|
143
|
+
scope: "field" | "record" | "table" | "database";
|
|
144
|
+
deterministicEncryption: boolean;
|
|
145
|
+
searchableEncryption: boolean;
|
|
146
|
+
} | undefined;
|
|
147
|
+
maskingRule?: {
|
|
148
|
+
field: string;
|
|
149
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
150
|
+
preserveFormat: boolean;
|
|
151
|
+
preserveLength: boolean;
|
|
152
|
+
pattern?: string | undefined;
|
|
153
|
+
roles?: string[] | undefined;
|
|
154
|
+
exemptRoles?: string[] | undefined;
|
|
155
|
+
} | undefined;
|
|
156
|
+
dependencies?: string[] | undefined;
|
|
157
|
+
cached?: {
|
|
158
|
+
enabled: boolean;
|
|
159
|
+
ttl: number;
|
|
160
|
+
invalidateOn: string[];
|
|
161
|
+
} | undefined;
|
|
162
|
+
dataQuality?: {
|
|
163
|
+
uniqueness: boolean;
|
|
164
|
+
completeness: number;
|
|
165
|
+
accuracy?: {
|
|
166
|
+
source: string;
|
|
167
|
+
threshold: number;
|
|
168
|
+
} | undefined;
|
|
169
|
+
} | undefined;
|
|
170
|
+
group?: string | undefined;
|
|
171
|
+
conditionalRequired?: string | undefined;
|
|
172
|
+
inlineHelpText?: string | undefined;
|
|
173
|
+
trackFeedHistory?: boolean | undefined;
|
|
174
|
+
caseSensitive?: boolean | undefined;
|
|
175
|
+
autonumberFormat?: string | undefined;
|
|
176
|
+
}>;
|
|
177
|
+
label?: string | undefined;
|
|
178
|
+
pluralLabel?: string | undefined;
|
|
179
|
+
description?: string | undefined;
|
|
180
|
+
icon?: string | undefined;
|
|
181
|
+
tags?: string[] | undefined;
|
|
182
|
+
indexes?: {
|
|
183
|
+
fields: string[];
|
|
184
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
185
|
+
unique: boolean;
|
|
186
|
+
name?: string | undefined;
|
|
187
|
+
partial?: string | undefined;
|
|
188
|
+
}[] | undefined;
|
|
189
|
+
fieldGroups?: {
|
|
190
|
+
key: string;
|
|
191
|
+
label: string;
|
|
192
|
+
defaultExpanded: boolean;
|
|
193
|
+
icon?: string | undefined;
|
|
194
|
+
description?: string | undefined;
|
|
195
|
+
visibleOn?: string | undefined;
|
|
196
|
+
}[] | undefined;
|
|
197
|
+
tenancy?: {
|
|
198
|
+
enabled: boolean;
|
|
199
|
+
strategy: "hybrid" | "shared" | "isolated";
|
|
200
|
+
tenantField: string;
|
|
201
|
+
crossTenantAccess: boolean;
|
|
202
|
+
} | undefined;
|
|
203
|
+
softDelete?: {
|
|
204
|
+
enabled: boolean;
|
|
205
|
+
field: string;
|
|
206
|
+
cascadeDelete: boolean;
|
|
207
|
+
} | undefined;
|
|
208
|
+
versioning?: {
|
|
209
|
+
enabled: boolean;
|
|
210
|
+
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
211
|
+
versionField: string;
|
|
212
|
+
retentionDays?: number | undefined;
|
|
213
|
+
} | undefined;
|
|
214
|
+
partitioning?: {
|
|
215
|
+
enabled: boolean;
|
|
216
|
+
strategy: "hash" | "list" | "range";
|
|
217
|
+
key: string;
|
|
218
|
+
interval?: string | undefined;
|
|
219
|
+
} | undefined;
|
|
220
|
+
cdc?: {
|
|
221
|
+
enabled: boolean;
|
|
222
|
+
events: ("delete" | "update" | "insert")[];
|
|
223
|
+
destination: string;
|
|
224
|
+
} | undefined;
|
|
225
|
+
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
226
|
+
stateMachines?: Record<string, {
|
|
227
|
+
id: string;
|
|
228
|
+
initial: string;
|
|
229
|
+
states: Record<string, StateNodeConfig>;
|
|
230
|
+
description?: string | undefined;
|
|
231
|
+
contextSchema?: Record<string, unknown> | undefined;
|
|
232
|
+
on?: Record<string, string | {
|
|
233
|
+
target?: string | undefined;
|
|
234
|
+
cond?: string | {
|
|
235
|
+
type: string;
|
|
236
|
+
params?: Record<string, unknown> | undefined;
|
|
237
|
+
} | undefined;
|
|
238
|
+
actions?: (string | {
|
|
239
|
+
type: string;
|
|
240
|
+
params?: Record<string, unknown> | undefined;
|
|
241
|
+
})[] | undefined;
|
|
242
|
+
description?: string | undefined;
|
|
243
|
+
} | {
|
|
244
|
+
target?: string | undefined;
|
|
245
|
+
cond?: string | {
|
|
246
|
+
type: string;
|
|
247
|
+
params?: Record<string, unknown> | undefined;
|
|
248
|
+
} | undefined;
|
|
249
|
+
actions?: (string | {
|
|
250
|
+
type: string;
|
|
251
|
+
params?: Record<string, unknown> | undefined;
|
|
252
|
+
})[] | undefined;
|
|
253
|
+
description?: string | undefined;
|
|
254
|
+
}[]> | undefined;
|
|
255
|
+
}> | undefined;
|
|
256
|
+
displayNameField?: string | undefined;
|
|
257
|
+
recordName?: {
|
|
258
|
+
type: "text" | "autonumber";
|
|
259
|
+
displayFormat?: string | undefined;
|
|
260
|
+
startNumber?: number | undefined;
|
|
261
|
+
} | undefined;
|
|
262
|
+
titleFormat?: string | undefined;
|
|
263
|
+
compactLayout?: string[] | undefined;
|
|
264
|
+
search?: {
|
|
265
|
+
fields: string[];
|
|
266
|
+
displayFields?: string[] | undefined;
|
|
267
|
+
filters?: string[] | undefined;
|
|
268
|
+
} | undefined;
|
|
269
|
+
enable?: {
|
|
270
|
+
trackHistory: boolean;
|
|
271
|
+
searchable: boolean;
|
|
272
|
+
apiEnabled: boolean;
|
|
273
|
+
files: boolean;
|
|
274
|
+
feeds: boolean;
|
|
275
|
+
activities: boolean;
|
|
276
|
+
trash: boolean;
|
|
277
|
+
mru: boolean;
|
|
278
|
+
clone: boolean;
|
|
279
|
+
apiMethods?: ("search" | "list" | "get" | "delete" | "update" | "upsert" | "history" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
recordTypes?: string[] | undefined;
|
|
282
|
+
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
283
|
+
keyPrefix?: string | undefined;
|
|
284
|
+
actions?: {
|
|
285
|
+
name: string;
|
|
286
|
+
label: string;
|
|
287
|
+
type: "url" | "flow" | "api" | "script" | "modal";
|
|
288
|
+
refreshAfter: boolean;
|
|
289
|
+
objectName?: string | undefined;
|
|
290
|
+
icon?: string | undefined;
|
|
291
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
292
|
+
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
293
|
+
target?: string | undefined;
|
|
294
|
+
body?: {
|
|
295
|
+
language: "expression";
|
|
296
|
+
source: string;
|
|
297
|
+
} | {
|
|
298
|
+
language: "js";
|
|
299
|
+
source: string;
|
|
300
|
+
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
301
|
+
timeoutMs?: number | undefined;
|
|
302
|
+
memoryMb?: number | undefined;
|
|
303
|
+
} | undefined;
|
|
304
|
+
execute?: string | undefined;
|
|
305
|
+
params?: {
|
|
306
|
+
name: string;
|
|
307
|
+
label: string;
|
|
308
|
+
type: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
309
|
+
required: boolean;
|
|
310
|
+
options?: {
|
|
311
|
+
label: string;
|
|
312
|
+
value: string;
|
|
313
|
+
}[] | undefined;
|
|
314
|
+
}[] | undefined;
|
|
315
|
+
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
316
|
+
confirmText?: string | undefined;
|
|
317
|
+
successMessage?: string | undefined;
|
|
318
|
+
visible?: string | undefined;
|
|
319
|
+
disabled?: string | boolean | undefined;
|
|
320
|
+
shortcut?: string | undefined;
|
|
321
|
+
bulkEnabled?: boolean | undefined;
|
|
322
|
+
timeout?: number | undefined;
|
|
323
|
+
aria?: {
|
|
324
|
+
ariaLabel?: string | undefined;
|
|
325
|
+
ariaDescribedBy?: string | undefined;
|
|
326
|
+
role?: string | undefined;
|
|
327
|
+
} | undefined;
|
|
328
|
+
}[] | undefined;
|
|
329
|
+
}, "fields"> & Pick<{
|
|
330
|
+
readonly name: "sys_role";
|
|
331
|
+
readonly label: "Role";
|
|
332
|
+
readonly pluralLabel: "Roles";
|
|
333
|
+
readonly icon: "shield";
|
|
334
|
+
readonly isSystem: true;
|
|
335
|
+
readonly description: "Role definitions for RBAC access control";
|
|
336
|
+
readonly displayNameField: "label";
|
|
337
|
+
readonly titleFormat: "{label}";
|
|
338
|
+
readonly compactLayout: ["label", "name", "active", "is_default"];
|
|
339
|
+
readonly fields: {
|
|
340
|
+
readonly label: {
|
|
341
|
+
readonly readonly?: boolean | undefined;
|
|
342
|
+
readonly format?: string | undefined;
|
|
343
|
+
readonly options?: {
|
|
344
|
+
label: string;
|
|
345
|
+
value: string;
|
|
346
|
+
color?: string | undefined;
|
|
347
|
+
default?: boolean | undefined;
|
|
348
|
+
}[] | undefined;
|
|
349
|
+
readonly description?: string | undefined;
|
|
350
|
+
readonly label?: string | undefined;
|
|
351
|
+
readonly name?: string | undefined;
|
|
352
|
+
readonly precision?: number | undefined;
|
|
353
|
+
readonly required?: boolean | undefined;
|
|
354
|
+
readonly multiple?: boolean | undefined;
|
|
355
|
+
readonly dependencies?: string[] | undefined;
|
|
356
|
+
readonly theme?: string | undefined;
|
|
357
|
+
readonly externalId?: boolean | undefined;
|
|
358
|
+
readonly min?: number | undefined;
|
|
359
|
+
readonly max?: number | undefined;
|
|
360
|
+
readonly group?: string | undefined;
|
|
361
|
+
readonly encryptionConfig?: {
|
|
362
|
+
enabled: boolean;
|
|
363
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
364
|
+
keyManagement: {
|
|
365
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
366
|
+
keyId?: string | undefined;
|
|
367
|
+
rotationPolicy?: {
|
|
368
|
+
enabled: boolean;
|
|
369
|
+
frequencyDays: number;
|
|
370
|
+
retainOldVersions: number;
|
|
371
|
+
autoRotate: boolean;
|
|
372
|
+
} | undefined;
|
|
373
|
+
};
|
|
374
|
+
scope: "record" | "field" | "table" | "database";
|
|
375
|
+
deterministicEncryption: boolean;
|
|
376
|
+
searchableEncryption: boolean;
|
|
377
|
+
} | undefined;
|
|
378
|
+
readonly columnName?: string | undefined;
|
|
379
|
+
readonly searchable?: boolean | undefined;
|
|
380
|
+
readonly unique?: boolean | undefined;
|
|
381
|
+
readonly defaultValue?: unknown;
|
|
382
|
+
readonly maxLength?: number | undefined;
|
|
383
|
+
readonly minLength?: number | undefined;
|
|
384
|
+
readonly scale?: number | undefined;
|
|
385
|
+
readonly reference?: string | undefined;
|
|
386
|
+
readonly referenceFilters?: string[] | undefined;
|
|
387
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
388
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
389
|
+
readonly expression?: string | undefined;
|
|
390
|
+
readonly summaryOperations?: {
|
|
391
|
+
object: string;
|
|
392
|
+
field: string;
|
|
393
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
394
|
+
} | undefined;
|
|
395
|
+
readonly language?: string | undefined;
|
|
396
|
+
readonly lineNumbers?: boolean | undefined;
|
|
397
|
+
readonly maxRating?: number | undefined;
|
|
398
|
+
readonly allowHalf?: boolean | undefined;
|
|
399
|
+
readonly displayMap?: boolean | undefined;
|
|
400
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
401
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
402
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
403
|
+
readonly allowAlpha?: boolean | undefined;
|
|
404
|
+
readonly presetColors?: string[] | undefined;
|
|
405
|
+
readonly step?: number | undefined;
|
|
406
|
+
readonly showValue?: boolean | undefined;
|
|
407
|
+
readonly marks?: Record<string, string> | undefined;
|
|
408
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
409
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
410
|
+
readonly displayValue?: boolean | undefined;
|
|
411
|
+
readonly allowScanning?: boolean | undefined;
|
|
412
|
+
readonly currencyConfig?: {
|
|
413
|
+
precision: number;
|
|
414
|
+
currencyMode: "fixed" | "dynamic";
|
|
415
|
+
defaultCurrency: string;
|
|
416
|
+
} | undefined;
|
|
417
|
+
readonly vectorConfig?: {
|
|
418
|
+
dimensions: number;
|
|
419
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
420
|
+
normalized: boolean;
|
|
421
|
+
indexed: boolean;
|
|
422
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
423
|
+
} | undefined;
|
|
424
|
+
readonly fileAttachmentConfig?: {
|
|
425
|
+
virusScan: boolean;
|
|
426
|
+
virusScanOnUpload: boolean;
|
|
427
|
+
quarantineOnThreat: boolean;
|
|
428
|
+
allowMultiple: boolean;
|
|
429
|
+
allowReplace: boolean;
|
|
430
|
+
allowDelete: boolean;
|
|
431
|
+
requireUpload: boolean;
|
|
432
|
+
extractMetadata: boolean;
|
|
433
|
+
extractText: boolean;
|
|
434
|
+
versioningEnabled: boolean;
|
|
435
|
+
publicRead: boolean;
|
|
436
|
+
presignedUrlExpiry: number;
|
|
437
|
+
minSize?: number | undefined;
|
|
438
|
+
maxSize?: number | undefined;
|
|
439
|
+
allowedTypes?: string[] | undefined;
|
|
440
|
+
blockedTypes?: string[] | undefined;
|
|
441
|
+
allowedMimeTypes?: string[] | undefined;
|
|
442
|
+
blockedMimeTypes?: string[] | undefined;
|
|
443
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
444
|
+
storageProvider?: string | undefined;
|
|
445
|
+
storageBucket?: string | undefined;
|
|
446
|
+
storagePrefix?: string | undefined;
|
|
447
|
+
imageValidation?: {
|
|
448
|
+
generateThumbnails: boolean;
|
|
449
|
+
preserveMetadata: boolean;
|
|
450
|
+
autoRotate: boolean;
|
|
451
|
+
minWidth?: number | undefined;
|
|
452
|
+
maxWidth?: number | undefined;
|
|
453
|
+
minHeight?: number | undefined;
|
|
454
|
+
maxHeight?: number | undefined;
|
|
455
|
+
aspectRatio?: string | undefined;
|
|
456
|
+
thumbnailSizes?: {
|
|
457
|
+
name: string;
|
|
458
|
+
width: number;
|
|
459
|
+
height: number;
|
|
460
|
+
crop: boolean;
|
|
461
|
+
}[] | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
maxVersions?: number | undefined;
|
|
464
|
+
} | undefined;
|
|
465
|
+
readonly maskingRule?: {
|
|
466
|
+
field: string;
|
|
467
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
468
|
+
preserveFormat: boolean;
|
|
469
|
+
preserveLength: boolean;
|
|
470
|
+
pattern?: string | undefined;
|
|
471
|
+
roles?: string[] | undefined;
|
|
472
|
+
exemptRoles?: string[] | undefined;
|
|
473
|
+
} | undefined;
|
|
474
|
+
readonly auditTrail?: boolean | undefined;
|
|
475
|
+
readonly cached?: {
|
|
476
|
+
enabled: boolean;
|
|
477
|
+
ttl: number;
|
|
478
|
+
invalidateOn: string[];
|
|
479
|
+
} | undefined;
|
|
480
|
+
readonly dataQuality?: {
|
|
481
|
+
uniqueness: boolean;
|
|
482
|
+
completeness: number;
|
|
483
|
+
accuracy?: {
|
|
484
|
+
source: string;
|
|
485
|
+
threshold: number;
|
|
486
|
+
} | undefined;
|
|
487
|
+
} | undefined;
|
|
488
|
+
readonly conditionalRequired?: string | undefined;
|
|
489
|
+
readonly hidden?: boolean | undefined;
|
|
490
|
+
readonly sortable?: boolean | undefined;
|
|
491
|
+
readonly inlineHelpText?: string | undefined;
|
|
492
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
493
|
+
readonly caseSensitive?: boolean | undefined;
|
|
494
|
+
readonly autonumberFormat?: string | undefined;
|
|
495
|
+
readonly index?: boolean | undefined;
|
|
496
|
+
readonly type: "text";
|
|
497
|
+
};
|
|
498
|
+
readonly name: {
|
|
499
|
+
readonly readonly?: boolean | undefined;
|
|
500
|
+
readonly format?: string | undefined;
|
|
501
|
+
readonly options?: {
|
|
502
|
+
label: string;
|
|
503
|
+
value: string;
|
|
504
|
+
color?: string | undefined;
|
|
505
|
+
default?: boolean | undefined;
|
|
506
|
+
}[] | undefined;
|
|
507
|
+
readonly description?: string | undefined;
|
|
508
|
+
readonly label?: string | undefined;
|
|
509
|
+
readonly name?: string | undefined;
|
|
510
|
+
readonly precision?: number | undefined;
|
|
511
|
+
readonly required?: boolean | undefined;
|
|
512
|
+
readonly multiple?: boolean | undefined;
|
|
513
|
+
readonly dependencies?: string[] | undefined;
|
|
514
|
+
readonly theme?: string | undefined;
|
|
515
|
+
readonly externalId?: boolean | undefined;
|
|
516
|
+
readonly min?: number | undefined;
|
|
517
|
+
readonly max?: number | undefined;
|
|
518
|
+
readonly group?: string | undefined;
|
|
519
|
+
readonly encryptionConfig?: {
|
|
520
|
+
enabled: boolean;
|
|
521
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
522
|
+
keyManagement: {
|
|
523
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
524
|
+
keyId?: string | undefined;
|
|
525
|
+
rotationPolicy?: {
|
|
526
|
+
enabled: boolean;
|
|
527
|
+
frequencyDays: number;
|
|
528
|
+
retainOldVersions: number;
|
|
529
|
+
autoRotate: boolean;
|
|
530
|
+
} | undefined;
|
|
531
|
+
};
|
|
532
|
+
scope: "record" | "field" | "table" | "database";
|
|
533
|
+
deterministicEncryption: boolean;
|
|
534
|
+
searchableEncryption: boolean;
|
|
535
|
+
} | undefined;
|
|
536
|
+
readonly columnName?: string | undefined;
|
|
537
|
+
readonly searchable?: boolean | undefined;
|
|
538
|
+
readonly unique?: boolean | undefined;
|
|
539
|
+
readonly defaultValue?: unknown;
|
|
540
|
+
readonly maxLength?: number | undefined;
|
|
541
|
+
readonly minLength?: number | undefined;
|
|
542
|
+
readonly scale?: number | undefined;
|
|
543
|
+
readonly reference?: string | undefined;
|
|
544
|
+
readonly referenceFilters?: string[] | undefined;
|
|
545
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
546
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
547
|
+
readonly expression?: string | undefined;
|
|
548
|
+
readonly summaryOperations?: {
|
|
549
|
+
object: string;
|
|
550
|
+
field: string;
|
|
551
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
552
|
+
} | undefined;
|
|
553
|
+
readonly language?: string | undefined;
|
|
554
|
+
readonly lineNumbers?: boolean | undefined;
|
|
555
|
+
readonly maxRating?: number | undefined;
|
|
556
|
+
readonly allowHalf?: boolean | undefined;
|
|
557
|
+
readonly displayMap?: boolean | undefined;
|
|
558
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
559
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
560
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
561
|
+
readonly allowAlpha?: boolean | undefined;
|
|
562
|
+
readonly presetColors?: string[] | undefined;
|
|
563
|
+
readonly step?: number | undefined;
|
|
564
|
+
readonly showValue?: boolean | undefined;
|
|
565
|
+
readonly marks?: Record<string, string> | undefined;
|
|
566
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
567
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
568
|
+
readonly displayValue?: boolean | undefined;
|
|
569
|
+
readonly allowScanning?: boolean | undefined;
|
|
570
|
+
readonly currencyConfig?: {
|
|
571
|
+
precision: number;
|
|
572
|
+
currencyMode: "fixed" | "dynamic";
|
|
573
|
+
defaultCurrency: string;
|
|
574
|
+
} | undefined;
|
|
575
|
+
readonly vectorConfig?: {
|
|
576
|
+
dimensions: number;
|
|
577
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
578
|
+
normalized: boolean;
|
|
579
|
+
indexed: boolean;
|
|
580
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
581
|
+
} | undefined;
|
|
582
|
+
readonly fileAttachmentConfig?: {
|
|
583
|
+
virusScan: boolean;
|
|
584
|
+
virusScanOnUpload: boolean;
|
|
585
|
+
quarantineOnThreat: boolean;
|
|
586
|
+
allowMultiple: boolean;
|
|
587
|
+
allowReplace: boolean;
|
|
588
|
+
allowDelete: boolean;
|
|
589
|
+
requireUpload: boolean;
|
|
590
|
+
extractMetadata: boolean;
|
|
591
|
+
extractText: boolean;
|
|
592
|
+
versioningEnabled: boolean;
|
|
593
|
+
publicRead: boolean;
|
|
594
|
+
presignedUrlExpiry: number;
|
|
595
|
+
minSize?: number | undefined;
|
|
596
|
+
maxSize?: number | undefined;
|
|
597
|
+
allowedTypes?: string[] | undefined;
|
|
598
|
+
blockedTypes?: string[] | undefined;
|
|
599
|
+
allowedMimeTypes?: string[] | undefined;
|
|
600
|
+
blockedMimeTypes?: string[] | undefined;
|
|
601
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
602
|
+
storageProvider?: string | undefined;
|
|
603
|
+
storageBucket?: string | undefined;
|
|
604
|
+
storagePrefix?: string | undefined;
|
|
605
|
+
imageValidation?: {
|
|
606
|
+
generateThumbnails: boolean;
|
|
607
|
+
preserveMetadata: boolean;
|
|
608
|
+
autoRotate: boolean;
|
|
609
|
+
minWidth?: number | undefined;
|
|
610
|
+
maxWidth?: number | undefined;
|
|
611
|
+
minHeight?: number | undefined;
|
|
612
|
+
maxHeight?: number | undefined;
|
|
613
|
+
aspectRatio?: string | undefined;
|
|
614
|
+
thumbnailSizes?: {
|
|
615
|
+
name: string;
|
|
616
|
+
width: number;
|
|
617
|
+
height: number;
|
|
618
|
+
crop: boolean;
|
|
619
|
+
}[] | undefined;
|
|
620
|
+
} | undefined;
|
|
621
|
+
maxVersions?: number | undefined;
|
|
622
|
+
} | undefined;
|
|
623
|
+
readonly maskingRule?: {
|
|
624
|
+
field: string;
|
|
625
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
626
|
+
preserveFormat: boolean;
|
|
627
|
+
preserveLength: boolean;
|
|
628
|
+
pattern?: string | undefined;
|
|
629
|
+
roles?: string[] | undefined;
|
|
630
|
+
exemptRoles?: string[] | undefined;
|
|
631
|
+
} | undefined;
|
|
632
|
+
readonly auditTrail?: boolean | undefined;
|
|
633
|
+
readonly cached?: {
|
|
634
|
+
enabled: boolean;
|
|
635
|
+
ttl: number;
|
|
636
|
+
invalidateOn: string[];
|
|
637
|
+
} | undefined;
|
|
638
|
+
readonly dataQuality?: {
|
|
639
|
+
uniqueness: boolean;
|
|
640
|
+
completeness: number;
|
|
641
|
+
accuracy?: {
|
|
642
|
+
source: string;
|
|
643
|
+
threshold: number;
|
|
644
|
+
} | undefined;
|
|
645
|
+
} | undefined;
|
|
646
|
+
readonly conditionalRequired?: string | undefined;
|
|
647
|
+
readonly hidden?: boolean | undefined;
|
|
648
|
+
readonly sortable?: boolean | undefined;
|
|
649
|
+
readonly inlineHelpText?: string | undefined;
|
|
650
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
651
|
+
readonly caseSensitive?: boolean | undefined;
|
|
652
|
+
readonly autonumberFormat?: string | undefined;
|
|
653
|
+
readonly index?: boolean | undefined;
|
|
654
|
+
readonly type: "text";
|
|
655
|
+
};
|
|
656
|
+
readonly description: {
|
|
657
|
+
readonly readonly?: boolean | undefined;
|
|
658
|
+
readonly format?: string | undefined;
|
|
659
|
+
readonly options?: {
|
|
660
|
+
label: string;
|
|
661
|
+
value: string;
|
|
662
|
+
color?: string | undefined;
|
|
663
|
+
default?: boolean | undefined;
|
|
664
|
+
}[] | undefined;
|
|
665
|
+
readonly description?: string | undefined;
|
|
666
|
+
readonly label?: string | undefined;
|
|
667
|
+
readonly name?: string | undefined;
|
|
668
|
+
readonly precision?: number | undefined;
|
|
669
|
+
readonly required?: boolean | undefined;
|
|
670
|
+
readonly multiple?: boolean | undefined;
|
|
671
|
+
readonly dependencies?: string[] | undefined;
|
|
672
|
+
readonly theme?: string | undefined;
|
|
673
|
+
readonly externalId?: boolean | undefined;
|
|
674
|
+
readonly min?: number | undefined;
|
|
675
|
+
readonly max?: number | undefined;
|
|
676
|
+
readonly group?: string | undefined;
|
|
677
|
+
readonly encryptionConfig?: {
|
|
678
|
+
enabled: boolean;
|
|
679
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
680
|
+
keyManagement: {
|
|
681
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
682
|
+
keyId?: string | undefined;
|
|
683
|
+
rotationPolicy?: {
|
|
684
|
+
enabled: boolean;
|
|
685
|
+
frequencyDays: number;
|
|
686
|
+
retainOldVersions: number;
|
|
687
|
+
autoRotate: boolean;
|
|
688
|
+
} | undefined;
|
|
689
|
+
};
|
|
690
|
+
scope: "record" | "field" | "table" | "database";
|
|
691
|
+
deterministicEncryption: boolean;
|
|
692
|
+
searchableEncryption: boolean;
|
|
693
|
+
} | undefined;
|
|
694
|
+
readonly columnName?: string | undefined;
|
|
695
|
+
readonly searchable?: boolean | undefined;
|
|
696
|
+
readonly unique?: boolean | undefined;
|
|
697
|
+
readonly defaultValue?: unknown;
|
|
698
|
+
readonly maxLength?: number | undefined;
|
|
699
|
+
readonly minLength?: number | undefined;
|
|
700
|
+
readonly scale?: number | undefined;
|
|
701
|
+
readonly reference?: string | undefined;
|
|
702
|
+
readonly referenceFilters?: string[] | undefined;
|
|
703
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
704
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
705
|
+
readonly expression?: string | undefined;
|
|
706
|
+
readonly summaryOperations?: {
|
|
707
|
+
object: string;
|
|
708
|
+
field: string;
|
|
709
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
710
|
+
} | undefined;
|
|
711
|
+
readonly language?: string | undefined;
|
|
712
|
+
readonly lineNumbers?: boolean | undefined;
|
|
713
|
+
readonly maxRating?: number | undefined;
|
|
714
|
+
readonly allowHalf?: boolean | undefined;
|
|
715
|
+
readonly displayMap?: boolean | undefined;
|
|
716
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
717
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
718
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
719
|
+
readonly allowAlpha?: boolean | undefined;
|
|
720
|
+
readonly presetColors?: string[] | undefined;
|
|
721
|
+
readonly step?: number | undefined;
|
|
722
|
+
readonly showValue?: boolean | undefined;
|
|
723
|
+
readonly marks?: Record<string, string> | undefined;
|
|
724
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
725
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
726
|
+
readonly displayValue?: boolean | undefined;
|
|
727
|
+
readonly allowScanning?: boolean | undefined;
|
|
728
|
+
readonly currencyConfig?: {
|
|
729
|
+
precision: number;
|
|
730
|
+
currencyMode: "fixed" | "dynamic";
|
|
731
|
+
defaultCurrency: string;
|
|
732
|
+
} | undefined;
|
|
733
|
+
readonly vectorConfig?: {
|
|
734
|
+
dimensions: number;
|
|
735
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
736
|
+
normalized: boolean;
|
|
737
|
+
indexed: boolean;
|
|
738
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
739
|
+
} | undefined;
|
|
740
|
+
readonly fileAttachmentConfig?: {
|
|
741
|
+
virusScan: boolean;
|
|
742
|
+
virusScanOnUpload: boolean;
|
|
743
|
+
quarantineOnThreat: boolean;
|
|
744
|
+
allowMultiple: boolean;
|
|
745
|
+
allowReplace: boolean;
|
|
746
|
+
allowDelete: boolean;
|
|
747
|
+
requireUpload: boolean;
|
|
748
|
+
extractMetadata: boolean;
|
|
749
|
+
extractText: boolean;
|
|
750
|
+
versioningEnabled: boolean;
|
|
751
|
+
publicRead: boolean;
|
|
752
|
+
presignedUrlExpiry: number;
|
|
753
|
+
minSize?: number | undefined;
|
|
754
|
+
maxSize?: number | undefined;
|
|
755
|
+
allowedTypes?: string[] | undefined;
|
|
756
|
+
blockedTypes?: string[] | undefined;
|
|
757
|
+
allowedMimeTypes?: string[] | undefined;
|
|
758
|
+
blockedMimeTypes?: string[] | undefined;
|
|
759
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
760
|
+
storageProvider?: string | undefined;
|
|
761
|
+
storageBucket?: string | undefined;
|
|
762
|
+
storagePrefix?: string | undefined;
|
|
763
|
+
imageValidation?: {
|
|
764
|
+
generateThumbnails: boolean;
|
|
765
|
+
preserveMetadata: boolean;
|
|
766
|
+
autoRotate: boolean;
|
|
767
|
+
minWidth?: number | undefined;
|
|
768
|
+
maxWidth?: number | undefined;
|
|
769
|
+
minHeight?: number | undefined;
|
|
770
|
+
maxHeight?: number | undefined;
|
|
771
|
+
aspectRatio?: string | undefined;
|
|
772
|
+
thumbnailSizes?: {
|
|
773
|
+
name: string;
|
|
774
|
+
width: number;
|
|
775
|
+
height: number;
|
|
776
|
+
crop: boolean;
|
|
777
|
+
}[] | undefined;
|
|
778
|
+
} | undefined;
|
|
779
|
+
maxVersions?: number | undefined;
|
|
780
|
+
} | undefined;
|
|
781
|
+
readonly maskingRule?: {
|
|
782
|
+
field: string;
|
|
783
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
784
|
+
preserveFormat: boolean;
|
|
785
|
+
preserveLength: boolean;
|
|
786
|
+
pattern?: string | undefined;
|
|
787
|
+
roles?: string[] | undefined;
|
|
788
|
+
exemptRoles?: string[] | undefined;
|
|
789
|
+
} | undefined;
|
|
790
|
+
readonly auditTrail?: boolean | undefined;
|
|
791
|
+
readonly cached?: {
|
|
792
|
+
enabled: boolean;
|
|
793
|
+
ttl: number;
|
|
794
|
+
invalidateOn: string[];
|
|
795
|
+
} | undefined;
|
|
796
|
+
readonly dataQuality?: {
|
|
797
|
+
uniqueness: boolean;
|
|
798
|
+
completeness: number;
|
|
799
|
+
accuracy?: {
|
|
800
|
+
source: string;
|
|
801
|
+
threshold: number;
|
|
802
|
+
} | undefined;
|
|
803
|
+
} | undefined;
|
|
804
|
+
readonly conditionalRequired?: string | undefined;
|
|
805
|
+
readonly hidden?: boolean | undefined;
|
|
806
|
+
readonly sortable?: boolean | undefined;
|
|
807
|
+
readonly inlineHelpText?: string | undefined;
|
|
808
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
809
|
+
readonly caseSensitive?: boolean | undefined;
|
|
810
|
+
readonly autonumberFormat?: string | undefined;
|
|
811
|
+
readonly index?: boolean | undefined;
|
|
812
|
+
readonly type: "textarea";
|
|
813
|
+
};
|
|
814
|
+
readonly permissions: {
|
|
815
|
+
readonly readonly?: boolean | undefined;
|
|
816
|
+
readonly format?: string | undefined;
|
|
817
|
+
readonly options?: {
|
|
818
|
+
label: string;
|
|
819
|
+
value: string;
|
|
820
|
+
color?: string | undefined;
|
|
821
|
+
default?: boolean | undefined;
|
|
822
|
+
}[] | undefined;
|
|
823
|
+
readonly description?: string | undefined;
|
|
824
|
+
readonly label?: string | undefined;
|
|
825
|
+
readonly name?: string | undefined;
|
|
826
|
+
readonly precision?: number | undefined;
|
|
827
|
+
readonly required?: boolean | undefined;
|
|
828
|
+
readonly multiple?: boolean | undefined;
|
|
829
|
+
readonly dependencies?: string[] | undefined;
|
|
830
|
+
readonly theme?: string | undefined;
|
|
831
|
+
readonly externalId?: boolean | undefined;
|
|
832
|
+
readonly min?: number | undefined;
|
|
833
|
+
readonly max?: number | undefined;
|
|
834
|
+
readonly group?: string | undefined;
|
|
835
|
+
readonly encryptionConfig?: {
|
|
836
|
+
enabled: boolean;
|
|
837
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
838
|
+
keyManagement: {
|
|
839
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
840
|
+
keyId?: string | undefined;
|
|
841
|
+
rotationPolicy?: {
|
|
842
|
+
enabled: boolean;
|
|
843
|
+
frequencyDays: number;
|
|
844
|
+
retainOldVersions: number;
|
|
845
|
+
autoRotate: boolean;
|
|
846
|
+
} | undefined;
|
|
847
|
+
};
|
|
848
|
+
scope: "record" | "field" | "table" | "database";
|
|
849
|
+
deterministicEncryption: boolean;
|
|
850
|
+
searchableEncryption: boolean;
|
|
851
|
+
} | undefined;
|
|
852
|
+
readonly columnName?: string | undefined;
|
|
853
|
+
readonly searchable?: boolean | undefined;
|
|
854
|
+
readonly unique?: boolean | undefined;
|
|
855
|
+
readonly defaultValue?: unknown;
|
|
856
|
+
readonly maxLength?: number | undefined;
|
|
857
|
+
readonly minLength?: number | undefined;
|
|
858
|
+
readonly scale?: number | undefined;
|
|
859
|
+
readonly reference?: string | undefined;
|
|
860
|
+
readonly referenceFilters?: string[] | undefined;
|
|
861
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
862
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
863
|
+
readonly expression?: string | undefined;
|
|
864
|
+
readonly summaryOperations?: {
|
|
865
|
+
object: string;
|
|
866
|
+
field: string;
|
|
867
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
868
|
+
} | undefined;
|
|
869
|
+
readonly language?: string | undefined;
|
|
870
|
+
readonly lineNumbers?: boolean | undefined;
|
|
871
|
+
readonly maxRating?: number | undefined;
|
|
872
|
+
readonly allowHalf?: boolean | undefined;
|
|
873
|
+
readonly displayMap?: boolean | undefined;
|
|
874
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
875
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
876
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
877
|
+
readonly allowAlpha?: boolean | undefined;
|
|
878
|
+
readonly presetColors?: string[] | undefined;
|
|
879
|
+
readonly step?: number | undefined;
|
|
880
|
+
readonly showValue?: boolean | undefined;
|
|
881
|
+
readonly marks?: Record<string, string> | undefined;
|
|
882
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
883
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
884
|
+
readonly displayValue?: boolean | undefined;
|
|
885
|
+
readonly allowScanning?: boolean | undefined;
|
|
886
|
+
readonly currencyConfig?: {
|
|
887
|
+
precision: number;
|
|
888
|
+
currencyMode: "fixed" | "dynamic";
|
|
889
|
+
defaultCurrency: string;
|
|
890
|
+
} | undefined;
|
|
891
|
+
readonly vectorConfig?: {
|
|
892
|
+
dimensions: number;
|
|
893
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
894
|
+
normalized: boolean;
|
|
895
|
+
indexed: boolean;
|
|
896
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
897
|
+
} | undefined;
|
|
898
|
+
readonly fileAttachmentConfig?: {
|
|
899
|
+
virusScan: boolean;
|
|
900
|
+
virusScanOnUpload: boolean;
|
|
901
|
+
quarantineOnThreat: boolean;
|
|
902
|
+
allowMultiple: boolean;
|
|
903
|
+
allowReplace: boolean;
|
|
904
|
+
allowDelete: boolean;
|
|
905
|
+
requireUpload: boolean;
|
|
906
|
+
extractMetadata: boolean;
|
|
907
|
+
extractText: boolean;
|
|
908
|
+
versioningEnabled: boolean;
|
|
909
|
+
publicRead: boolean;
|
|
910
|
+
presignedUrlExpiry: number;
|
|
911
|
+
minSize?: number | undefined;
|
|
912
|
+
maxSize?: number | undefined;
|
|
913
|
+
allowedTypes?: string[] | undefined;
|
|
914
|
+
blockedTypes?: string[] | undefined;
|
|
915
|
+
allowedMimeTypes?: string[] | undefined;
|
|
916
|
+
blockedMimeTypes?: string[] | undefined;
|
|
917
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
918
|
+
storageProvider?: string | undefined;
|
|
919
|
+
storageBucket?: string | undefined;
|
|
920
|
+
storagePrefix?: string | undefined;
|
|
921
|
+
imageValidation?: {
|
|
922
|
+
generateThumbnails: boolean;
|
|
923
|
+
preserveMetadata: boolean;
|
|
924
|
+
autoRotate: boolean;
|
|
925
|
+
minWidth?: number | undefined;
|
|
926
|
+
maxWidth?: number | undefined;
|
|
927
|
+
minHeight?: number | undefined;
|
|
928
|
+
maxHeight?: number | undefined;
|
|
929
|
+
aspectRatio?: string | undefined;
|
|
930
|
+
thumbnailSizes?: {
|
|
931
|
+
name: string;
|
|
932
|
+
width: number;
|
|
933
|
+
height: number;
|
|
934
|
+
crop: boolean;
|
|
935
|
+
}[] | undefined;
|
|
936
|
+
} | undefined;
|
|
937
|
+
maxVersions?: number | undefined;
|
|
938
|
+
} | undefined;
|
|
939
|
+
readonly maskingRule?: {
|
|
940
|
+
field: string;
|
|
941
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
942
|
+
preserveFormat: boolean;
|
|
943
|
+
preserveLength: boolean;
|
|
944
|
+
pattern?: string | undefined;
|
|
945
|
+
roles?: string[] | undefined;
|
|
946
|
+
exemptRoles?: string[] | undefined;
|
|
947
|
+
} | undefined;
|
|
948
|
+
readonly auditTrail?: boolean | undefined;
|
|
949
|
+
readonly cached?: {
|
|
950
|
+
enabled: boolean;
|
|
951
|
+
ttl: number;
|
|
952
|
+
invalidateOn: string[];
|
|
953
|
+
} | undefined;
|
|
954
|
+
readonly dataQuality?: {
|
|
955
|
+
uniqueness: boolean;
|
|
956
|
+
completeness: number;
|
|
957
|
+
accuracy?: {
|
|
958
|
+
source: string;
|
|
959
|
+
threshold: number;
|
|
960
|
+
} | undefined;
|
|
961
|
+
} | undefined;
|
|
962
|
+
readonly conditionalRequired?: string | undefined;
|
|
963
|
+
readonly hidden?: boolean | undefined;
|
|
964
|
+
readonly sortable?: boolean | undefined;
|
|
965
|
+
readonly inlineHelpText?: string | undefined;
|
|
966
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
967
|
+
readonly caseSensitive?: boolean | undefined;
|
|
968
|
+
readonly autonumberFormat?: string | undefined;
|
|
969
|
+
readonly index?: boolean | undefined;
|
|
970
|
+
readonly type: "textarea";
|
|
971
|
+
};
|
|
972
|
+
readonly active: {
|
|
973
|
+
readonly readonly?: boolean | undefined;
|
|
974
|
+
readonly format?: string | undefined;
|
|
975
|
+
readonly options?: {
|
|
976
|
+
label: string;
|
|
977
|
+
value: string;
|
|
978
|
+
color?: string | undefined;
|
|
979
|
+
default?: boolean | undefined;
|
|
980
|
+
}[] | undefined;
|
|
981
|
+
readonly description?: string | undefined;
|
|
982
|
+
readonly label?: string | undefined;
|
|
983
|
+
readonly name?: string | undefined;
|
|
984
|
+
readonly precision?: number | undefined;
|
|
985
|
+
readonly required?: boolean | undefined;
|
|
986
|
+
readonly multiple?: boolean | undefined;
|
|
987
|
+
readonly dependencies?: string[] | undefined;
|
|
988
|
+
readonly theme?: string | undefined;
|
|
989
|
+
readonly externalId?: boolean | undefined;
|
|
990
|
+
readonly min?: number | undefined;
|
|
991
|
+
readonly max?: number | undefined;
|
|
992
|
+
readonly group?: string | undefined;
|
|
993
|
+
readonly encryptionConfig?: {
|
|
994
|
+
enabled: boolean;
|
|
995
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
996
|
+
keyManagement: {
|
|
997
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
998
|
+
keyId?: string | undefined;
|
|
999
|
+
rotationPolicy?: {
|
|
1000
|
+
enabled: boolean;
|
|
1001
|
+
frequencyDays: number;
|
|
1002
|
+
retainOldVersions: number;
|
|
1003
|
+
autoRotate: boolean;
|
|
1004
|
+
} | undefined;
|
|
1005
|
+
};
|
|
1006
|
+
scope: "record" | "field" | "table" | "database";
|
|
1007
|
+
deterministicEncryption: boolean;
|
|
1008
|
+
searchableEncryption: boolean;
|
|
1009
|
+
} | undefined;
|
|
1010
|
+
readonly columnName?: string | undefined;
|
|
1011
|
+
readonly searchable?: boolean | undefined;
|
|
1012
|
+
readonly unique?: boolean | undefined;
|
|
1013
|
+
readonly defaultValue?: unknown;
|
|
1014
|
+
readonly maxLength?: number | undefined;
|
|
1015
|
+
readonly minLength?: number | undefined;
|
|
1016
|
+
readonly scale?: number | undefined;
|
|
1017
|
+
readonly reference?: string | undefined;
|
|
1018
|
+
readonly referenceFilters?: string[] | undefined;
|
|
1019
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1020
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1021
|
+
readonly expression?: string | undefined;
|
|
1022
|
+
readonly summaryOperations?: {
|
|
1023
|
+
object: string;
|
|
1024
|
+
field: string;
|
|
1025
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1026
|
+
} | undefined;
|
|
1027
|
+
readonly language?: string | undefined;
|
|
1028
|
+
readonly lineNumbers?: boolean | undefined;
|
|
1029
|
+
readonly maxRating?: number | undefined;
|
|
1030
|
+
readonly allowHalf?: boolean | undefined;
|
|
1031
|
+
readonly displayMap?: boolean | undefined;
|
|
1032
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
1033
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1034
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1035
|
+
readonly allowAlpha?: boolean | undefined;
|
|
1036
|
+
readonly presetColors?: string[] | undefined;
|
|
1037
|
+
readonly step?: number | undefined;
|
|
1038
|
+
readonly showValue?: boolean | undefined;
|
|
1039
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1040
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1041
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1042
|
+
readonly displayValue?: boolean | undefined;
|
|
1043
|
+
readonly allowScanning?: boolean | undefined;
|
|
1044
|
+
readonly currencyConfig?: {
|
|
1045
|
+
precision: number;
|
|
1046
|
+
currencyMode: "fixed" | "dynamic";
|
|
1047
|
+
defaultCurrency: string;
|
|
1048
|
+
} | undefined;
|
|
1049
|
+
readonly vectorConfig?: {
|
|
1050
|
+
dimensions: number;
|
|
1051
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1052
|
+
normalized: boolean;
|
|
1053
|
+
indexed: boolean;
|
|
1054
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1055
|
+
} | undefined;
|
|
1056
|
+
readonly fileAttachmentConfig?: {
|
|
1057
|
+
virusScan: boolean;
|
|
1058
|
+
virusScanOnUpload: boolean;
|
|
1059
|
+
quarantineOnThreat: boolean;
|
|
1060
|
+
allowMultiple: boolean;
|
|
1061
|
+
allowReplace: boolean;
|
|
1062
|
+
allowDelete: boolean;
|
|
1063
|
+
requireUpload: boolean;
|
|
1064
|
+
extractMetadata: boolean;
|
|
1065
|
+
extractText: boolean;
|
|
1066
|
+
versioningEnabled: boolean;
|
|
1067
|
+
publicRead: boolean;
|
|
1068
|
+
presignedUrlExpiry: number;
|
|
1069
|
+
minSize?: number | undefined;
|
|
1070
|
+
maxSize?: number | undefined;
|
|
1071
|
+
allowedTypes?: string[] | undefined;
|
|
1072
|
+
blockedTypes?: string[] | undefined;
|
|
1073
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1074
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1075
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1076
|
+
storageProvider?: string | undefined;
|
|
1077
|
+
storageBucket?: string | undefined;
|
|
1078
|
+
storagePrefix?: string | undefined;
|
|
1079
|
+
imageValidation?: {
|
|
1080
|
+
generateThumbnails: boolean;
|
|
1081
|
+
preserveMetadata: boolean;
|
|
1082
|
+
autoRotate: boolean;
|
|
1083
|
+
minWidth?: number | undefined;
|
|
1084
|
+
maxWidth?: number | undefined;
|
|
1085
|
+
minHeight?: number | undefined;
|
|
1086
|
+
maxHeight?: number | undefined;
|
|
1087
|
+
aspectRatio?: string | undefined;
|
|
1088
|
+
thumbnailSizes?: {
|
|
1089
|
+
name: string;
|
|
1090
|
+
width: number;
|
|
1091
|
+
height: number;
|
|
1092
|
+
crop: boolean;
|
|
1093
|
+
}[] | undefined;
|
|
1094
|
+
} | undefined;
|
|
1095
|
+
maxVersions?: number | undefined;
|
|
1096
|
+
} | undefined;
|
|
1097
|
+
readonly maskingRule?: {
|
|
1098
|
+
field: string;
|
|
1099
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1100
|
+
preserveFormat: boolean;
|
|
1101
|
+
preserveLength: boolean;
|
|
1102
|
+
pattern?: string | undefined;
|
|
1103
|
+
roles?: string[] | undefined;
|
|
1104
|
+
exemptRoles?: string[] | undefined;
|
|
1105
|
+
} | undefined;
|
|
1106
|
+
readonly auditTrail?: boolean | undefined;
|
|
1107
|
+
readonly cached?: {
|
|
1108
|
+
enabled: boolean;
|
|
1109
|
+
ttl: number;
|
|
1110
|
+
invalidateOn: string[];
|
|
1111
|
+
} | undefined;
|
|
1112
|
+
readonly dataQuality?: {
|
|
1113
|
+
uniqueness: boolean;
|
|
1114
|
+
completeness: number;
|
|
1115
|
+
accuracy?: {
|
|
1116
|
+
source: string;
|
|
1117
|
+
threshold: number;
|
|
1118
|
+
} | undefined;
|
|
1119
|
+
} | undefined;
|
|
1120
|
+
readonly conditionalRequired?: string | undefined;
|
|
1121
|
+
readonly hidden?: boolean | undefined;
|
|
1122
|
+
readonly sortable?: boolean | undefined;
|
|
1123
|
+
readonly inlineHelpText?: string | undefined;
|
|
1124
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
1125
|
+
readonly caseSensitive?: boolean | undefined;
|
|
1126
|
+
readonly autonumberFormat?: string | undefined;
|
|
1127
|
+
readonly index?: boolean | undefined;
|
|
1128
|
+
readonly type: "boolean";
|
|
1129
|
+
};
|
|
1130
|
+
readonly is_default: {
|
|
1131
|
+
readonly readonly?: boolean | undefined;
|
|
1132
|
+
readonly format?: string | undefined;
|
|
1133
|
+
readonly options?: {
|
|
1134
|
+
label: string;
|
|
1135
|
+
value: string;
|
|
1136
|
+
color?: string | undefined;
|
|
1137
|
+
default?: boolean | undefined;
|
|
1138
|
+
}[] | undefined;
|
|
1139
|
+
readonly description?: string | undefined;
|
|
1140
|
+
readonly label?: string | undefined;
|
|
1141
|
+
readonly name?: string | undefined;
|
|
1142
|
+
readonly precision?: number | undefined;
|
|
1143
|
+
readonly required?: boolean | undefined;
|
|
1144
|
+
readonly multiple?: boolean | undefined;
|
|
1145
|
+
readonly dependencies?: string[] | undefined;
|
|
1146
|
+
readonly theme?: string | undefined;
|
|
1147
|
+
readonly externalId?: boolean | undefined;
|
|
1148
|
+
readonly min?: number | undefined;
|
|
1149
|
+
readonly max?: number | undefined;
|
|
1150
|
+
readonly group?: string | undefined;
|
|
1151
|
+
readonly encryptionConfig?: {
|
|
1152
|
+
enabled: boolean;
|
|
1153
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1154
|
+
keyManagement: {
|
|
1155
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1156
|
+
keyId?: string | undefined;
|
|
1157
|
+
rotationPolicy?: {
|
|
1158
|
+
enabled: boolean;
|
|
1159
|
+
frequencyDays: number;
|
|
1160
|
+
retainOldVersions: number;
|
|
1161
|
+
autoRotate: boolean;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
};
|
|
1164
|
+
scope: "record" | "field" | "table" | "database";
|
|
1165
|
+
deterministicEncryption: boolean;
|
|
1166
|
+
searchableEncryption: boolean;
|
|
1167
|
+
} | undefined;
|
|
1168
|
+
readonly columnName?: string | undefined;
|
|
1169
|
+
readonly searchable?: boolean | undefined;
|
|
1170
|
+
readonly unique?: boolean | undefined;
|
|
1171
|
+
readonly defaultValue?: unknown;
|
|
1172
|
+
readonly maxLength?: number | undefined;
|
|
1173
|
+
readonly minLength?: number | undefined;
|
|
1174
|
+
readonly scale?: number | undefined;
|
|
1175
|
+
readonly reference?: string | undefined;
|
|
1176
|
+
readonly referenceFilters?: string[] | undefined;
|
|
1177
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1178
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1179
|
+
readonly expression?: string | undefined;
|
|
1180
|
+
readonly summaryOperations?: {
|
|
1181
|
+
object: string;
|
|
1182
|
+
field: string;
|
|
1183
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1184
|
+
} | undefined;
|
|
1185
|
+
readonly language?: string | undefined;
|
|
1186
|
+
readonly lineNumbers?: boolean | undefined;
|
|
1187
|
+
readonly maxRating?: number | undefined;
|
|
1188
|
+
readonly allowHalf?: boolean | undefined;
|
|
1189
|
+
readonly displayMap?: boolean | undefined;
|
|
1190
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
1191
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1192
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1193
|
+
readonly allowAlpha?: boolean | undefined;
|
|
1194
|
+
readonly presetColors?: string[] | undefined;
|
|
1195
|
+
readonly step?: number | undefined;
|
|
1196
|
+
readonly showValue?: boolean | undefined;
|
|
1197
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1198
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1199
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1200
|
+
readonly displayValue?: boolean | undefined;
|
|
1201
|
+
readonly allowScanning?: boolean | undefined;
|
|
1202
|
+
readonly currencyConfig?: {
|
|
1203
|
+
precision: number;
|
|
1204
|
+
currencyMode: "fixed" | "dynamic";
|
|
1205
|
+
defaultCurrency: string;
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
readonly vectorConfig?: {
|
|
1208
|
+
dimensions: number;
|
|
1209
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1210
|
+
normalized: boolean;
|
|
1211
|
+
indexed: boolean;
|
|
1212
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1213
|
+
} | undefined;
|
|
1214
|
+
readonly fileAttachmentConfig?: {
|
|
1215
|
+
virusScan: boolean;
|
|
1216
|
+
virusScanOnUpload: boolean;
|
|
1217
|
+
quarantineOnThreat: boolean;
|
|
1218
|
+
allowMultiple: boolean;
|
|
1219
|
+
allowReplace: boolean;
|
|
1220
|
+
allowDelete: boolean;
|
|
1221
|
+
requireUpload: boolean;
|
|
1222
|
+
extractMetadata: boolean;
|
|
1223
|
+
extractText: boolean;
|
|
1224
|
+
versioningEnabled: boolean;
|
|
1225
|
+
publicRead: boolean;
|
|
1226
|
+
presignedUrlExpiry: number;
|
|
1227
|
+
minSize?: number | undefined;
|
|
1228
|
+
maxSize?: number | undefined;
|
|
1229
|
+
allowedTypes?: string[] | undefined;
|
|
1230
|
+
blockedTypes?: string[] | undefined;
|
|
1231
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1232
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1233
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1234
|
+
storageProvider?: string | undefined;
|
|
1235
|
+
storageBucket?: string | undefined;
|
|
1236
|
+
storagePrefix?: string | undefined;
|
|
1237
|
+
imageValidation?: {
|
|
1238
|
+
generateThumbnails: boolean;
|
|
1239
|
+
preserveMetadata: boolean;
|
|
1240
|
+
autoRotate: boolean;
|
|
1241
|
+
minWidth?: number | undefined;
|
|
1242
|
+
maxWidth?: number | undefined;
|
|
1243
|
+
minHeight?: number | undefined;
|
|
1244
|
+
maxHeight?: number | undefined;
|
|
1245
|
+
aspectRatio?: string | undefined;
|
|
1246
|
+
thumbnailSizes?: {
|
|
1247
|
+
name: string;
|
|
1248
|
+
width: number;
|
|
1249
|
+
height: number;
|
|
1250
|
+
crop: boolean;
|
|
1251
|
+
}[] | undefined;
|
|
1252
|
+
} | undefined;
|
|
1253
|
+
maxVersions?: number | undefined;
|
|
1254
|
+
} | undefined;
|
|
1255
|
+
readonly maskingRule?: {
|
|
1256
|
+
field: string;
|
|
1257
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1258
|
+
preserveFormat: boolean;
|
|
1259
|
+
preserveLength: boolean;
|
|
1260
|
+
pattern?: string | undefined;
|
|
1261
|
+
roles?: string[] | undefined;
|
|
1262
|
+
exemptRoles?: string[] | undefined;
|
|
1263
|
+
} | undefined;
|
|
1264
|
+
readonly auditTrail?: boolean | undefined;
|
|
1265
|
+
readonly cached?: {
|
|
1266
|
+
enabled: boolean;
|
|
1267
|
+
ttl: number;
|
|
1268
|
+
invalidateOn: string[];
|
|
1269
|
+
} | undefined;
|
|
1270
|
+
readonly dataQuality?: {
|
|
1271
|
+
uniqueness: boolean;
|
|
1272
|
+
completeness: number;
|
|
1273
|
+
accuracy?: {
|
|
1274
|
+
source: string;
|
|
1275
|
+
threshold: number;
|
|
1276
|
+
} | undefined;
|
|
1277
|
+
} | undefined;
|
|
1278
|
+
readonly conditionalRequired?: string | undefined;
|
|
1279
|
+
readonly hidden?: boolean | undefined;
|
|
1280
|
+
readonly sortable?: boolean | undefined;
|
|
1281
|
+
readonly inlineHelpText?: string | undefined;
|
|
1282
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
1283
|
+
readonly caseSensitive?: boolean | undefined;
|
|
1284
|
+
readonly autonumberFormat?: string | undefined;
|
|
1285
|
+
readonly index?: boolean | undefined;
|
|
1286
|
+
readonly type: "boolean";
|
|
1287
|
+
};
|
|
1288
|
+
readonly id: {
|
|
1289
|
+
readonly readonly?: boolean | undefined;
|
|
1290
|
+
readonly format?: string | undefined;
|
|
1291
|
+
readonly options?: {
|
|
1292
|
+
label: string;
|
|
1293
|
+
value: string;
|
|
1294
|
+
color?: string | undefined;
|
|
1295
|
+
default?: boolean | undefined;
|
|
1296
|
+
}[] | undefined;
|
|
1297
|
+
readonly description?: string | undefined;
|
|
1298
|
+
readonly label?: string | undefined;
|
|
1299
|
+
readonly name?: string | undefined;
|
|
1300
|
+
readonly precision?: number | undefined;
|
|
1301
|
+
readonly required?: boolean | undefined;
|
|
1302
|
+
readonly multiple?: boolean | undefined;
|
|
1303
|
+
readonly dependencies?: string[] | undefined;
|
|
1304
|
+
readonly theme?: string | undefined;
|
|
1305
|
+
readonly externalId?: boolean | undefined;
|
|
1306
|
+
readonly min?: number | undefined;
|
|
1307
|
+
readonly max?: number | undefined;
|
|
1308
|
+
readonly group?: string | undefined;
|
|
1309
|
+
readonly encryptionConfig?: {
|
|
1310
|
+
enabled: boolean;
|
|
1311
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1312
|
+
keyManagement: {
|
|
1313
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1314
|
+
keyId?: string | undefined;
|
|
1315
|
+
rotationPolicy?: {
|
|
1316
|
+
enabled: boolean;
|
|
1317
|
+
frequencyDays: number;
|
|
1318
|
+
retainOldVersions: number;
|
|
1319
|
+
autoRotate: boolean;
|
|
1320
|
+
} | undefined;
|
|
1321
|
+
};
|
|
1322
|
+
scope: "record" | "field" | "table" | "database";
|
|
1323
|
+
deterministicEncryption: boolean;
|
|
1324
|
+
searchableEncryption: boolean;
|
|
1325
|
+
} | undefined;
|
|
1326
|
+
readonly columnName?: string | undefined;
|
|
1327
|
+
readonly searchable?: boolean | undefined;
|
|
1328
|
+
readonly unique?: boolean | undefined;
|
|
1329
|
+
readonly defaultValue?: unknown;
|
|
1330
|
+
readonly maxLength?: number | undefined;
|
|
1331
|
+
readonly minLength?: number | undefined;
|
|
1332
|
+
readonly scale?: number | undefined;
|
|
1333
|
+
readonly reference?: string | undefined;
|
|
1334
|
+
readonly referenceFilters?: string[] | undefined;
|
|
1335
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1336
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1337
|
+
readonly expression?: string | undefined;
|
|
1338
|
+
readonly summaryOperations?: {
|
|
1339
|
+
object: string;
|
|
1340
|
+
field: string;
|
|
1341
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1342
|
+
} | undefined;
|
|
1343
|
+
readonly language?: string | undefined;
|
|
1344
|
+
readonly lineNumbers?: boolean | undefined;
|
|
1345
|
+
readonly maxRating?: number | undefined;
|
|
1346
|
+
readonly allowHalf?: boolean | undefined;
|
|
1347
|
+
readonly displayMap?: boolean | undefined;
|
|
1348
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
1349
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1350
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1351
|
+
readonly allowAlpha?: boolean | undefined;
|
|
1352
|
+
readonly presetColors?: string[] | undefined;
|
|
1353
|
+
readonly step?: number | undefined;
|
|
1354
|
+
readonly showValue?: boolean | undefined;
|
|
1355
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1356
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1357
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1358
|
+
readonly displayValue?: boolean | undefined;
|
|
1359
|
+
readonly allowScanning?: boolean | undefined;
|
|
1360
|
+
readonly currencyConfig?: {
|
|
1361
|
+
precision: number;
|
|
1362
|
+
currencyMode: "fixed" | "dynamic";
|
|
1363
|
+
defaultCurrency: string;
|
|
1364
|
+
} | undefined;
|
|
1365
|
+
readonly vectorConfig?: {
|
|
1366
|
+
dimensions: number;
|
|
1367
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1368
|
+
normalized: boolean;
|
|
1369
|
+
indexed: boolean;
|
|
1370
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1371
|
+
} | undefined;
|
|
1372
|
+
readonly fileAttachmentConfig?: {
|
|
1373
|
+
virusScan: boolean;
|
|
1374
|
+
virusScanOnUpload: boolean;
|
|
1375
|
+
quarantineOnThreat: boolean;
|
|
1376
|
+
allowMultiple: boolean;
|
|
1377
|
+
allowReplace: boolean;
|
|
1378
|
+
allowDelete: boolean;
|
|
1379
|
+
requireUpload: boolean;
|
|
1380
|
+
extractMetadata: boolean;
|
|
1381
|
+
extractText: boolean;
|
|
1382
|
+
versioningEnabled: boolean;
|
|
1383
|
+
publicRead: boolean;
|
|
1384
|
+
presignedUrlExpiry: number;
|
|
1385
|
+
minSize?: number | undefined;
|
|
1386
|
+
maxSize?: number | undefined;
|
|
1387
|
+
allowedTypes?: string[] | undefined;
|
|
1388
|
+
blockedTypes?: string[] | undefined;
|
|
1389
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1390
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1391
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1392
|
+
storageProvider?: string | undefined;
|
|
1393
|
+
storageBucket?: string | undefined;
|
|
1394
|
+
storagePrefix?: string | undefined;
|
|
1395
|
+
imageValidation?: {
|
|
1396
|
+
generateThumbnails: boolean;
|
|
1397
|
+
preserveMetadata: boolean;
|
|
1398
|
+
autoRotate: boolean;
|
|
1399
|
+
minWidth?: number | undefined;
|
|
1400
|
+
maxWidth?: number | undefined;
|
|
1401
|
+
minHeight?: number | undefined;
|
|
1402
|
+
maxHeight?: number | undefined;
|
|
1403
|
+
aspectRatio?: string | undefined;
|
|
1404
|
+
thumbnailSizes?: {
|
|
1405
|
+
name: string;
|
|
1406
|
+
width: number;
|
|
1407
|
+
height: number;
|
|
1408
|
+
crop: boolean;
|
|
1409
|
+
}[] | undefined;
|
|
1410
|
+
} | undefined;
|
|
1411
|
+
maxVersions?: number | undefined;
|
|
1412
|
+
} | undefined;
|
|
1413
|
+
readonly maskingRule?: {
|
|
1414
|
+
field: string;
|
|
1415
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1416
|
+
preserveFormat: boolean;
|
|
1417
|
+
preserveLength: boolean;
|
|
1418
|
+
pattern?: string | undefined;
|
|
1419
|
+
roles?: string[] | undefined;
|
|
1420
|
+
exemptRoles?: string[] | undefined;
|
|
1421
|
+
} | undefined;
|
|
1422
|
+
readonly auditTrail?: boolean | undefined;
|
|
1423
|
+
readonly cached?: {
|
|
1424
|
+
enabled: boolean;
|
|
1425
|
+
ttl: number;
|
|
1426
|
+
invalidateOn: string[];
|
|
1427
|
+
} | undefined;
|
|
1428
|
+
readonly dataQuality?: {
|
|
1429
|
+
uniqueness: boolean;
|
|
1430
|
+
completeness: number;
|
|
1431
|
+
accuracy?: {
|
|
1432
|
+
source: string;
|
|
1433
|
+
threshold: number;
|
|
1434
|
+
} | undefined;
|
|
1435
|
+
} | undefined;
|
|
1436
|
+
readonly conditionalRequired?: string | undefined;
|
|
1437
|
+
readonly hidden?: boolean | undefined;
|
|
1438
|
+
readonly sortable?: boolean | undefined;
|
|
1439
|
+
readonly inlineHelpText?: string | undefined;
|
|
1440
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
1441
|
+
readonly caseSensitive?: boolean | undefined;
|
|
1442
|
+
readonly autonumberFormat?: string | undefined;
|
|
1443
|
+
readonly index?: boolean | undefined;
|
|
1444
|
+
readonly type: "text";
|
|
1445
|
+
};
|
|
1446
|
+
readonly created_at: {
|
|
1447
|
+
readonly readonly?: boolean | undefined;
|
|
1448
|
+
readonly format?: string | undefined;
|
|
1449
|
+
readonly options?: {
|
|
1450
|
+
label: string;
|
|
1451
|
+
value: string;
|
|
1452
|
+
color?: string | undefined;
|
|
1453
|
+
default?: boolean | undefined;
|
|
1454
|
+
}[] | undefined;
|
|
1455
|
+
readonly description?: string | undefined;
|
|
1456
|
+
readonly label?: string | undefined;
|
|
1457
|
+
readonly name?: string | undefined;
|
|
1458
|
+
readonly precision?: number | undefined;
|
|
1459
|
+
readonly required?: boolean | undefined;
|
|
1460
|
+
readonly multiple?: boolean | undefined;
|
|
1461
|
+
readonly dependencies?: string[] | undefined;
|
|
1462
|
+
readonly theme?: string | undefined;
|
|
1463
|
+
readonly externalId?: boolean | undefined;
|
|
1464
|
+
readonly min?: number | undefined;
|
|
1465
|
+
readonly max?: number | undefined;
|
|
1466
|
+
readonly group?: string | undefined;
|
|
1467
|
+
readonly encryptionConfig?: {
|
|
1468
|
+
enabled: boolean;
|
|
1469
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1470
|
+
keyManagement: {
|
|
1471
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1472
|
+
keyId?: string | undefined;
|
|
1473
|
+
rotationPolicy?: {
|
|
1474
|
+
enabled: boolean;
|
|
1475
|
+
frequencyDays: number;
|
|
1476
|
+
retainOldVersions: number;
|
|
1477
|
+
autoRotate: boolean;
|
|
1478
|
+
} | undefined;
|
|
1479
|
+
};
|
|
1480
|
+
scope: "record" | "field" | "table" | "database";
|
|
1481
|
+
deterministicEncryption: boolean;
|
|
1482
|
+
searchableEncryption: boolean;
|
|
1483
|
+
} | undefined;
|
|
1484
|
+
readonly columnName?: string | undefined;
|
|
1485
|
+
readonly searchable?: boolean | undefined;
|
|
1486
|
+
readonly unique?: boolean | undefined;
|
|
1487
|
+
readonly defaultValue?: unknown;
|
|
1488
|
+
readonly maxLength?: number | undefined;
|
|
1489
|
+
readonly minLength?: number | undefined;
|
|
1490
|
+
readonly scale?: number | undefined;
|
|
1491
|
+
readonly reference?: string | undefined;
|
|
1492
|
+
readonly referenceFilters?: string[] | undefined;
|
|
1493
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1494
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1495
|
+
readonly expression?: string | undefined;
|
|
1496
|
+
readonly summaryOperations?: {
|
|
1497
|
+
object: string;
|
|
1498
|
+
field: string;
|
|
1499
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1500
|
+
} | undefined;
|
|
1501
|
+
readonly language?: string | undefined;
|
|
1502
|
+
readonly lineNumbers?: boolean | undefined;
|
|
1503
|
+
readonly maxRating?: number | undefined;
|
|
1504
|
+
readonly allowHalf?: boolean | undefined;
|
|
1505
|
+
readonly displayMap?: boolean | undefined;
|
|
1506
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
1507
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1508
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1509
|
+
readonly allowAlpha?: boolean | undefined;
|
|
1510
|
+
readonly presetColors?: string[] | undefined;
|
|
1511
|
+
readonly step?: number | undefined;
|
|
1512
|
+
readonly showValue?: boolean | undefined;
|
|
1513
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1514
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1515
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1516
|
+
readonly displayValue?: boolean | undefined;
|
|
1517
|
+
readonly allowScanning?: boolean | undefined;
|
|
1518
|
+
readonly currencyConfig?: {
|
|
1519
|
+
precision: number;
|
|
1520
|
+
currencyMode: "fixed" | "dynamic";
|
|
1521
|
+
defaultCurrency: string;
|
|
1522
|
+
} | undefined;
|
|
1523
|
+
readonly vectorConfig?: {
|
|
1524
|
+
dimensions: number;
|
|
1525
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1526
|
+
normalized: boolean;
|
|
1527
|
+
indexed: boolean;
|
|
1528
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1529
|
+
} | undefined;
|
|
1530
|
+
readonly fileAttachmentConfig?: {
|
|
1531
|
+
virusScan: boolean;
|
|
1532
|
+
virusScanOnUpload: boolean;
|
|
1533
|
+
quarantineOnThreat: boolean;
|
|
1534
|
+
allowMultiple: boolean;
|
|
1535
|
+
allowReplace: boolean;
|
|
1536
|
+
allowDelete: boolean;
|
|
1537
|
+
requireUpload: boolean;
|
|
1538
|
+
extractMetadata: boolean;
|
|
1539
|
+
extractText: boolean;
|
|
1540
|
+
versioningEnabled: boolean;
|
|
1541
|
+
publicRead: boolean;
|
|
1542
|
+
presignedUrlExpiry: number;
|
|
1543
|
+
minSize?: number | undefined;
|
|
1544
|
+
maxSize?: number | undefined;
|
|
1545
|
+
allowedTypes?: string[] | undefined;
|
|
1546
|
+
blockedTypes?: string[] | undefined;
|
|
1547
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1548
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1549
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1550
|
+
storageProvider?: string | undefined;
|
|
1551
|
+
storageBucket?: string | undefined;
|
|
1552
|
+
storagePrefix?: string | undefined;
|
|
1553
|
+
imageValidation?: {
|
|
1554
|
+
generateThumbnails: boolean;
|
|
1555
|
+
preserveMetadata: boolean;
|
|
1556
|
+
autoRotate: boolean;
|
|
1557
|
+
minWidth?: number | undefined;
|
|
1558
|
+
maxWidth?: number | undefined;
|
|
1559
|
+
minHeight?: number | undefined;
|
|
1560
|
+
maxHeight?: number | undefined;
|
|
1561
|
+
aspectRatio?: string | undefined;
|
|
1562
|
+
thumbnailSizes?: {
|
|
1563
|
+
name: string;
|
|
1564
|
+
width: number;
|
|
1565
|
+
height: number;
|
|
1566
|
+
crop: boolean;
|
|
1567
|
+
}[] | undefined;
|
|
1568
|
+
} | undefined;
|
|
1569
|
+
maxVersions?: number | undefined;
|
|
1570
|
+
} | undefined;
|
|
1571
|
+
readonly maskingRule?: {
|
|
1572
|
+
field: string;
|
|
1573
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1574
|
+
preserveFormat: boolean;
|
|
1575
|
+
preserveLength: boolean;
|
|
1576
|
+
pattern?: string | undefined;
|
|
1577
|
+
roles?: string[] | undefined;
|
|
1578
|
+
exemptRoles?: string[] | undefined;
|
|
1579
|
+
} | undefined;
|
|
1580
|
+
readonly auditTrail?: boolean | undefined;
|
|
1581
|
+
readonly cached?: {
|
|
1582
|
+
enabled: boolean;
|
|
1583
|
+
ttl: number;
|
|
1584
|
+
invalidateOn: string[];
|
|
1585
|
+
} | undefined;
|
|
1586
|
+
readonly dataQuality?: {
|
|
1587
|
+
uniqueness: boolean;
|
|
1588
|
+
completeness: number;
|
|
1589
|
+
accuracy?: {
|
|
1590
|
+
source: string;
|
|
1591
|
+
threshold: number;
|
|
1592
|
+
} | undefined;
|
|
1593
|
+
} | undefined;
|
|
1594
|
+
readonly conditionalRequired?: string | undefined;
|
|
1595
|
+
readonly hidden?: boolean | undefined;
|
|
1596
|
+
readonly sortable?: boolean | undefined;
|
|
1597
|
+
readonly inlineHelpText?: string | undefined;
|
|
1598
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
1599
|
+
readonly caseSensitive?: boolean | undefined;
|
|
1600
|
+
readonly autonumberFormat?: string | undefined;
|
|
1601
|
+
readonly index?: boolean | undefined;
|
|
1602
|
+
readonly type: "datetime";
|
|
1603
|
+
};
|
|
1604
|
+
readonly updated_at: {
|
|
1605
|
+
readonly readonly?: boolean | undefined;
|
|
1606
|
+
readonly format?: string | undefined;
|
|
1607
|
+
readonly options?: {
|
|
1608
|
+
label: string;
|
|
1609
|
+
value: string;
|
|
1610
|
+
color?: string | undefined;
|
|
1611
|
+
default?: boolean | undefined;
|
|
1612
|
+
}[] | undefined;
|
|
1613
|
+
readonly description?: string | undefined;
|
|
1614
|
+
readonly label?: string | undefined;
|
|
1615
|
+
readonly name?: string | undefined;
|
|
1616
|
+
readonly precision?: number | undefined;
|
|
1617
|
+
readonly required?: boolean | undefined;
|
|
1618
|
+
readonly multiple?: boolean | undefined;
|
|
1619
|
+
readonly dependencies?: string[] | undefined;
|
|
1620
|
+
readonly theme?: string | undefined;
|
|
1621
|
+
readonly externalId?: boolean | undefined;
|
|
1622
|
+
readonly min?: number | undefined;
|
|
1623
|
+
readonly max?: number | undefined;
|
|
1624
|
+
readonly group?: string | undefined;
|
|
1625
|
+
readonly encryptionConfig?: {
|
|
1626
|
+
enabled: boolean;
|
|
1627
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1628
|
+
keyManagement: {
|
|
1629
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1630
|
+
keyId?: string | undefined;
|
|
1631
|
+
rotationPolicy?: {
|
|
1632
|
+
enabled: boolean;
|
|
1633
|
+
frequencyDays: number;
|
|
1634
|
+
retainOldVersions: number;
|
|
1635
|
+
autoRotate: boolean;
|
|
1636
|
+
} | undefined;
|
|
1637
|
+
};
|
|
1638
|
+
scope: "record" | "field" | "table" | "database";
|
|
1639
|
+
deterministicEncryption: boolean;
|
|
1640
|
+
searchableEncryption: boolean;
|
|
1641
|
+
} | undefined;
|
|
1642
|
+
readonly columnName?: string | undefined;
|
|
1643
|
+
readonly searchable?: boolean | undefined;
|
|
1644
|
+
readonly unique?: boolean | undefined;
|
|
1645
|
+
readonly defaultValue?: unknown;
|
|
1646
|
+
readonly maxLength?: number | undefined;
|
|
1647
|
+
readonly minLength?: number | undefined;
|
|
1648
|
+
readonly scale?: number | undefined;
|
|
1649
|
+
readonly reference?: string | undefined;
|
|
1650
|
+
readonly referenceFilters?: string[] | undefined;
|
|
1651
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1652
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1653
|
+
readonly expression?: string | undefined;
|
|
1654
|
+
readonly summaryOperations?: {
|
|
1655
|
+
object: string;
|
|
1656
|
+
field: string;
|
|
1657
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1658
|
+
} | undefined;
|
|
1659
|
+
readonly language?: string | undefined;
|
|
1660
|
+
readonly lineNumbers?: boolean | undefined;
|
|
1661
|
+
readonly maxRating?: number | undefined;
|
|
1662
|
+
readonly allowHalf?: boolean | undefined;
|
|
1663
|
+
readonly displayMap?: boolean | undefined;
|
|
1664
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
1665
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1666
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1667
|
+
readonly allowAlpha?: boolean | undefined;
|
|
1668
|
+
readonly presetColors?: string[] | undefined;
|
|
1669
|
+
readonly step?: number | undefined;
|
|
1670
|
+
readonly showValue?: boolean | undefined;
|
|
1671
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1672
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1673
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1674
|
+
readonly displayValue?: boolean | undefined;
|
|
1675
|
+
readonly allowScanning?: boolean | undefined;
|
|
1676
|
+
readonly currencyConfig?: {
|
|
1677
|
+
precision: number;
|
|
1678
|
+
currencyMode: "fixed" | "dynamic";
|
|
1679
|
+
defaultCurrency: string;
|
|
1680
|
+
} | undefined;
|
|
1681
|
+
readonly vectorConfig?: {
|
|
1682
|
+
dimensions: number;
|
|
1683
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1684
|
+
normalized: boolean;
|
|
1685
|
+
indexed: boolean;
|
|
1686
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1687
|
+
} | undefined;
|
|
1688
|
+
readonly fileAttachmentConfig?: {
|
|
1689
|
+
virusScan: boolean;
|
|
1690
|
+
virusScanOnUpload: boolean;
|
|
1691
|
+
quarantineOnThreat: boolean;
|
|
1692
|
+
allowMultiple: boolean;
|
|
1693
|
+
allowReplace: boolean;
|
|
1694
|
+
allowDelete: boolean;
|
|
1695
|
+
requireUpload: boolean;
|
|
1696
|
+
extractMetadata: boolean;
|
|
1697
|
+
extractText: boolean;
|
|
1698
|
+
versioningEnabled: boolean;
|
|
1699
|
+
publicRead: boolean;
|
|
1700
|
+
presignedUrlExpiry: number;
|
|
1701
|
+
minSize?: number | undefined;
|
|
1702
|
+
maxSize?: number | undefined;
|
|
1703
|
+
allowedTypes?: string[] | undefined;
|
|
1704
|
+
blockedTypes?: string[] | undefined;
|
|
1705
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1706
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1707
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1708
|
+
storageProvider?: string | undefined;
|
|
1709
|
+
storageBucket?: string | undefined;
|
|
1710
|
+
storagePrefix?: string | undefined;
|
|
1711
|
+
imageValidation?: {
|
|
1712
|
+
generateThumbnails: boolean;
|
|
1713
|
+
preserveMetadata: boolean;
|
|
1714
|
+
autoRotate: boolean;
|
|
1715
|
+
minWidth?: number | undefined;
|
|
1716
|
+
maxWidth?: number | undefined;
|
|
1717
|
+
minHeight?: number | undefined;
|
|
1718
|
+
maxHeight?: number | undefined;
|
|
1719
|
+
aspectRatio?: string | undefined;
|
|
1720
|
+
thumbnailSizes?: {
|
|
1721
|
+
name: string;
|
|
1722
|
+
width: number;
|
|
1723
|
+
height: number;
|
|
1724
|
+
crop: boolean;
|
|
1725
|
+
}[] | undefined;
|
|
1726
|
+
} | undefined;
|
|
1727
|
+
maxVersions?: number | undefined;
|
|
1728
|
+
} | undefined;
|
|
1729
|
+
readonly maskingRule?: {
|
|
1730
|
+
field: string;
|
|
1731
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1732
|
+
preserveFormat: boolean;
|
|
1733
|
+
preserveLength: boolean;
|
|
1734
|
+
pattern?: string | undefined;
|
|
1735
|
+
roles?: string[] | undefined;
|
|
1736
|
+
exemptRoles?: string[] | undefined;
|
|
1737
|
+
} | undefined;
|
|
1738
|
+
readonly auditTrail?: boolean | undefined;
|
|
1739
|
+
readonly cached?: {
|
|
1740
|
+
enabled: boolean;
|
|
1741
|
+
ttl: number;
|
|
1742
|
+
invalidateOn: string[];
|
|
1743
|
+
} | undefined;
|
|
1744
|
+
readonly dataQuality?: {
|
|
1745
|
+
uniqueness: boolean;
|
|
1746
|
+
completeness: number;
|
|
1747
|
+
accuracy?: {
|
|
1748
|
+
source: string;
|
|
1749
|
+
threshold: number;
|
|
1750
|
+
} | undefined;
|
|
1751
|
+
} | undefined;
|
|
1752
|
+
readonly conditionalRequired?: string | undefined;
|
|
1753
|
+
readonly hidden?: boolean | undefined;
|
|
1754
|
+
readonly sortable?: boolean | undefined;
|
|
1755
|
+
readonly inlineHelpText?: string | undefined;
|
|
1756
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
1757
|
+
readonly caseSensitive?: boolean | undefined;
|
|
1758
|
+
readonly autonumberFormat?: string | undefined;
|
|
1759
|
+
readonly index?: boolean | undefined;
|
|
1760
|
+
readonly type: "datetime";
|
|
1761
|
+
};
|
|
1762
|
+
};
|
|
1763
|
+
readonly indexes: [{
|
|
1764
|
+
readonly fields: ["name"];
|
|
1765
|
+
readonly unique: true;
|
|
1766
|
+
}, {
|
|
1767
|
+
readonly fields: ["active"];
|
|
1768
|
+
}];
|
|
1769
|
+
readonly enable: {
|
|
1770
|
+
readonly trackHistory: true;
|
|
1771
|
+
readonly searchable: true;
|
|
1772
|
+
readonly apiEnabled: true;
|
|
1773
|
+
readonly apiMethods: ["get", "list", "create", "update", "delete"];
|
|
1774
|
+
readonly trash: true;
|
|
1775
|
+
readonly mru: true;
|
|
1776
|
+
};
|
|
1777
|
+
}, "fields">;
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* sys_permission_set — System Permission Set Object
|
|
1781
|
+
*
|
|
1782
|
+
* Named groupings of fine-grained permissions.
|
|
1783
|
+
* Permission sets can be assigned to roles or directly to users
|
|
1784
|
+
* for granular access control.
|
|
1785
|
+
*
|
|
1786
|
+
* @namespace sys
|
|
1787
|
+
*/
|
|
1788
|
+
declare const SysPermissionSet: Omit<{
|
|
1789
|
+
name: string;
|
|
1790
|
+
active: boolean;
|
|
1791
|
+
isSystem: boolean;
|
|
1792
|
+
abstract: boolean;
|
|
1793
|
+
datasource: string;
|
|
1794
|
+
fields: Record<string, {
|
|
1795
|
+
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1796
|
+
required: boolean;
|
|
1797
|
+
searchable: boolean;
|
|
1798
|
+
multiple: boolean;
|
|
1799
|
+
unique: boolean;
|
|
1800
|
+
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
1801
|
+
auditTrail: boolean;
|
|
1802
|
+
hidden: boolean;
|
|
1803
|
+
readonly: boolean;
|
|
1804
|
+
sortable: boolean;
|
|
1805
|
+
index: boolean;
|
|
1806
|
+
externalId: boolean;
|
|
1807
|
+
name?: string | undefined;
|
|
1808
|
+
label?: string | undefined;
|
|
1809
|
+
description?: string | undefined;
|
|
1810
|
+
format?: string | undefined;
|
|
1811
|
+
columnName?: string | undefined;
|
|
1812
|
+
defaultValue?: unknown;
|
|
1813
|
+
maxLength?: number | undefined;
|
|
1814
|
+
minLength?: number | undefined;
|
|
1815
|
+
precision?: number | undefined;
|
|
1816
|
+
scale?: number | undefined;
|
|
1817
|
+
min?: number | undefined;
|
|
1818
|
+
max?: number | undefined;
|
|
1819
|
+
options?: {
|
|
1820
|
+
label: string;
|
|
1821
|
+
value: string;
|
|
1822
|
+
color?: string | undefined;
|
|
1823
|
+
default?: boolean | undefined;
|
|
1824
|
+
}[] | undefined;
|
|
1825
|
+
reference?: string | undefined;
|
|
1826
|
+
referenceFilters?: string[] | undefined;
|
|
1827
|
+
writeRequiresMasterRead?: boolean | undefined;
|
|
1828
|
+
expression?: string | undefined;
|
|
1829
|
+
summaryOperations?: {
|
|
1830
|
+
object: string;
|
|
1831
|
+
field: string;
|
|
1832
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1833
|
+
} | undefined;
|
|
1834
|
+
language?: string | undefined;
|
|
1835
|
+
theme?: string | undefined;
|
|
1836
|
+
lineNumbers?: boolean | undefined;
|
|
1837
|
+
maxRating?: number | undefined;
|
|
1838
|
+
allowHalf?: boolean | undefined;
|
|
1839
|
+
displayMap?: boolean | undefined;
|
|
1840
|
+
allowGeocoding?: boolean | undefined;
|
|
1841
|
+
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1842
|
+
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1843
|
+
allowAlpha?: boolean | undefined;
|
|
1844
|
+
presetColors?: string[] | undefined;
|
|
1845
|
+
step?: number | undefined;
|
|
1846
|
+
showValue?: boolean | undefined;
|
|
1847
|
+
marks?: Record<string, string> | undefined;
|
|
1848
|
+
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1849
|
+
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1850
|
+
displayValue?: boolean | undefined;
|
|
1851
|
+
allowScanning?: boolean | undefined;
|
|
1852
|
+
currencyConfig?: {
|
|
1853
|
+
precision: number;
|
|
1854
|
+
currencyMode: "fixed" | "dynamic";
|
|
1855
|
+
defaultCurrency: string;
|
|
1856
|
+
} | undefined;
|
|
1857
|
+
vectorConfig?: {
|
|
1858
|
+
dimensions: number;
|
|
1859
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1860
|
+
normalized: boolean;
|
|
1861
|
+
indexed: boolean;
|
|
1862
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1863
|
+
} | undefined;
|
|
1864
|
+
fileAttachmentConfig?: {
|
|
1865
|
+
virusScan: boolean;
|
|
1866
|
+
virusScanOnUpload: boolean;
|
|
1867
|
+
quarantineOnThreat: boolean;
|
|
1868
|
+
allowMultiple: boolean;
|
|
1869
|
+
allowReplace: boolean;
|
|
1870
|
+
allowDelete: boolean;
|
|
1871
|
+
requireUpload: boolean;
|
|
1872
|
+
extractMetadata: boolean;
|
|
1873
|
+
extractText: boolean;
|
|
1874
|
+
versioningEnabled: boolean;
|
|
1875
|
+
publicRead: boolean;
|
|
1876
|
+
presignedUrlExpiry: number;
|
|
1877
|
+
minSize?: number | undefined;
|
|
1878
|
+
maxSize?: number | undefined;
|
|
1879
|
+
allowedTypes?: string[] | undefined;
|
|
1880
|
+
blockedTypes?: string[] | undefined;
|
|
1881
|
+
allowedMimeTypes?: string[] | undefined;
|
|
1882
|
+
blockedMimeTypes?: string[] | undefined;
|
|
1883
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1884
|
+
storageProvider?: string | undefined;
|
|
1885
|
+
storageBucket?: string | undefined;
|
|
1886
|
+
storagePrefix?: string | undefined;
|
|
1887
|
+
imageValidation?: {
|
|
1888
|
+
generateThumbnails: boolean;
|
|
1889
|
+
preserveMetadata: boolean;
|
|
1890
|
+
autoRotate: boolean;
|
|
1891
|
+
minWidth?: number | undefined;
|
|
1892
|
+
maxWidth?: number | undefined;
|
|
1893
|
+
minHeight?: number | undefined;
|
|
1894
|
+
maxHeight?: number | undefined;
|
|
1895
|
+
aspectRatio?: string | undefined;
|
|
1896
|
+
thumbnailSizes?: {
|
|
1897
|
+
name: string;
|
|
1898
|
+
width: number;
|
|
1899
|
+
height: number;
|
|
1900
|
+
crop: boolean;
|
|
1901
|
+
}[] | undefined;
|
|
1902
|
+
} | undefined;
|
|
1903
|
+
maxVersions?: number | undefined;
|
|
1904
|
+
} | undefined;
|
|
1905
|
+
encryptionConfig?: {
|
|
1906
|
+
enabled: boolean;
|
|
1907
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1908
|
+
keyManagement: {
|
|
1909
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1910
|
+
keyId?: string | undefined;
|
|
1911
|
+
rotationPolicy?: {
|
|
1912
|
+
enabled: boolean;
|
|
1913
|
+
frequencyDays: number;
|
|
1914
|
+
retainOldVersions: number;
|
|
1915
|
+
autoRotate: boolean;
|
|
1916
|
+
} | undefined;
|
|
1917
|
+
};
|
|
1918
|
+
scope: "field" | "record" | "table" | "database";
|
|
1919
|
+
deterministicEncryption: boolean;
|
|
1920
|
+
searchableEncryption: boolean;
|
|
1921
|
+
} | undefined;
|
|
1922
|
+
maskingRule?: {
|
|
1923
|
+
field: string;
|
|
1924
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1925
|
+
preserveFormat: boolean;
|
|
1926
|
+
preserveLength: boolean;
|
|
1927
|
+
pattern?: string | undefined;
|
|
1928
|
+
roles?: string[] | undefined;
|
|
1929
|
+
exemptRoles?: string[] | undefined;
|
|
1930
|
+
} | undefined;
|
|
1931
|
+
dependencies?: string[] | undefined;
|
|
1932
|
+
cached?: {
|
|
1933
|
+
enabled: boolean;
|
|
1934
|
+
ttl: number;
|
|
1935
|
+
invalidateOn: string[];
|
|
1936
|
+
} | undefined;
|
|
1937
|
+
dataQuality?: {
|
|
1938
|
+
uniqueness: boolean;
|
|
1939
|
+
completeness: number;
|
|
1940
|
+
accuracy?: {
|
|
1941
|
+
source: string;
|
|
1942
|
+
threshold: number;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
} | undefined;
|
|
1945
|
+
group?: string | undefined;
|
|
1946
|
+
conditionalRequired?: string | undefined;
|
|
1947
|
+
inlineHelpText?: string | undefined;
|
|
1948
|
+
trackFeedHistory?: boolean | undefined;
|
|
1949
|
+
caseSensitive?: boolean | undefined;
|
|
1950
|
+
autonumberFormat?: string | undefined;
|
|
1951
|
+
}>;
|
|
1952
|
+
label?: string | undefined;
|
|
1953
|
+
pluralLabel?: string | undefined;
|
|
1954
|
+
description?: string | undefined;
|
|
1955
|
+
icon?: string | undefined;
|
|
1956
|
+
tags?: string[] | undefined;
|
|
1957
|
+
indexes?: {
|
|
1958
|
+
fields: string[];
|
|
1959
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
1960
|
+
unique: boolean;
|
|
1961
|
+
name?: string | undefined;
|
|
1962
|
+
partial?: string | undefined;
|
|
1963
|
+
}[] | undefined;
|
|
1964
|
+
fieldGroups?: {
|
|
1965
|
+
key: string;
|
|
1966
|
+
label: string;
|
|
1967
|
+
defaultExpanded: boolean;
|
|
1968
|
+
icon?: string | undefined;
|
|
1969
|
+
description?: string | undefined;
|
|
1970
|
+
visibleOn?: string | undefined;
|
|
1971
|
+
}[] | undefined;
|
|
1972
|
+
tenancy?: {
|
|
1973
|
+
enabled: boolean;
|
|
1974
|
+
strategy: "hybrid" | "shared" | "isolated";
|
|
1975
|
+
tenantField: string;
|
|
1976
|
+
crossTenantAccess: boolean;
|
|
1977
|
+
} | undefined;
|
|
1978
|
+
softDelete?: {
|
|
1979
|
+
enabled: boolean;
|
|
1980
|
+
field: string;
|
|
1981
|
+
cascadeDelete: boolean;
|
|
1982
|
+
} | undefined;
|
|
1983
|
+
versioning?: {
|
|
1984
|
+
enabled: boolean;
|
|
1985
|
+
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
1986
|
+
versionField: string;
|
|
1987
|
+
retentionDays?: number | undefined;
|
|
1988
|
+
} | undefined;
|
|
1989
|
+
partitioning?: {
|
|
1990
|
+
enabled: boolean;
|
|
1991
|
+
strategy: "hash" | "list" | "range";
|
|
1992
|
+
key: string;
|
|
1993
|
+
interval?: string | undefined;
|
|
1994
|
+
} | undefined;
|
|
1995
|
+
cdc?: {
|
|
1996
|
+
enabled: boolean;
|
|
1997
|
+
events: ("delete" | "update" | "insert")[];
|
|
1998
|
+
destination: string;
|
|
1999
|
+
} | undefined;
|
|
2000
|
+
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
2001
|
+
stateMachines?: Record<string, {
|
|
2002
|
+
id: string;
|
|
2003
|
+
initial: string;
|
|
2004
|
+
states: Record<string, StateNodeConfig>;
|
|
2005
|
+
description?: string | undefined;
|
|
2006
|
+
contextSchema?: Record<string, unknown> | undefined;
|
|
2007
|
+
on?: Record<string, string | {
|
|
2008
|
+
target?: string | undefined;
|
|
2009
|
+
cond?: string | {
|
|
2010
|
+
type: string;
|
|
2011
|
+
params?: Record<string, unknown> | undefined;
|
|
2012
|
+
} | undefined;
|
|
2013
|
+
actions?: (string | {
|
|
2014
|
+
type: string;
|
|
2015
|
+
params?: Record<string, unknown> | undefined;
|
|
2016
|
+
})[] | undefined;
|
|
2017
|
+
description?: string | undefined;
|
|
2018
|
+
} | {
|
|
2019
|
+
target?: string | undefined;
|
|
2020
|
+
cond?: string | {
|
|
2021
|
+
type: string;
|
|
2022
|
+
params?: Record<string, unknown> | undefined;
|
|
2023
|
+
} | undefined;
|
|
2024
|
+
actions?: (string | {
|
|
2025
|
+
type: string;
|
|
2026
|
+
params?: Record<string, unknown> | undefined;
|
|
2027
|
+
})[] | undefined;
|
|
2028
|
+
description?: string | undefined;
|
|
2029
|
+
}[]> | undefined;
|
|
2030
|
+
}> | undefined;
|
|
2031
|
+
displayNameField?: string | undefined;
|
|
2032
|
+
recordName?: {
|
|
2033
|
+
type: "text" | "autonumber";
|
|
2034
|
+
displayFormat?: string | undefined;
|
|
2035
|
+
startNumber?: number | undefined;
|
|
2036
|
+
} | undefined;
|
|
2037
|
+
titleFormat?: string | undefined;
|
|
2038
|
+
compactLayout?: string[] | undefined;
|
|
2039
|
+
search?: {
|
|
2040
|
+
fields: string[];
|
|
2041
|
+
displayFields?: string[] | undefined;
|
|
2042
|
+
filters?: string[] | undefined;
|
|
2043
|
+
} | undefined;
|
|
2044
|
+
enable?: {
|
|
2045
|
+
trackHistory: boolean;
|
|
2046
|
+
searchable: boolean;
|
|
2047
|
+
apiEnabled: boolean;
|
|
2048
|
+
files: boolean;
|
|
2049
|
+
feeds: boolean;
|
|
2050
|
+
activities: boolean;
|
|
2051
|
+
trash: boolean;
|
|
2052
|
+
mru: boolean;
|
|
2053
|
+
clone: boolean;
|
|
2054
|
+
apiMethods?: ("search" | "list" | "get" | "delete" | "update" | "upsert" | "history" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
|
|
2055
|
+
} | undefined;
|
|
2056
|
+
recordTypes?: string[] | undefined;
|
|
2057
|
+
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
2058
|
+
keyPrefix?: string | undefined;
|
|
2059
|
+
actions?: {
|
|
2060
|
+
name: string;
|
|
2061
|
+
label: string;
|
|
2062
|
+
type: "url" | "flow" | "api" | "script" | "modal";
|
|
2063
|
+
refreshAfter: boolean;
|
|
2064
|
+
objectName?: string | undefined;
|
|
2065
|
+
icon?: string | undefined;
|
|
2066
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
2067
|
+
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
2068
|
+
target?: string | undefined;
|
|
2069
|
+
body?: {
|
|
2070
|
+
language: "expression";
|
|
2071
|
+
source: string;
|
|
2072
|
+
} | {
|
|
2073
|
+
language: "js";
|
|
2074
|
+
source: string;
|
|
2075
|
+
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
2076
|
+
timeoutMs?: number | undefined;
|
|
2077
|
+
memoryMb?: number | undefined;
|
|
2078
|
+
} | undefined;
|
|
2079
|
+
execute?: string | undefined;
|
|
2080
|
+
params?: {
|
|
2081
|
+
name: string;
|
|
2082
|
+
label: string;
|
|
2083
|
+
type: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
2084
|
+
required: boolean;
|
|
2085
|
+
options?: {
|
|
2086
|
+
label: string;
|
|
2087
|
+
value: string;
|
|
2088
|
+
}[] | undefined;
|
|
2089
|
+
}[] | undefined;
|
|
2090
|
+
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
2091
|
+
confirmText?: string | undefined;
|
|
2092
|
+
successMessage?: string | undefined;
|
|
2093
|
+
visible?: string | undefined;
|
|
2094
|
+
disabled?: string | boolean | undefined;
|
|
2095
|
+
shortcut?: string | undefined;
|
|
2096
|
+
bulkEnabled?: boolean | undefined;
|
|
2097
|
+
timeout?: number | undefined;
|
|
2098
|
+
aria?: {
|
|
2099
|
+
ariaLabel?: string | undefined;
|
|
2100
|
+
ariaDescribedBy?: string | undefined;
|
|
2101
|
+
role?: string | undefined;
|
|
2102
|
+
} | undefined;
|
|
2103
|
+
}[] | undefined;
|
|
2104
|
+
}, "fields"> & Pick<{
|
|
2105
|
+
readonly name: "sys_permission_set";
|
|
2106
|
+
readonly label: "Permission Set";
|
|
2107
|
+
readonly pluralLabel: "Permission Sets";
|
|
2108
|
+
readonly icon: "lock";
|
|
2109
|
+
readonly isSystem: true;
|
|
2110
|
+
readonly description: "Named permission groupings for fine-grained access control";
|
|
2111
|
+
readonly displayNameField: "label";
|
|
2112
|
+
readonly titleFormat: "{label}";
|
|
2113
|
+
readonly compactLayout: ["label", "name", "active"];
|
|
2114
|
+
readonly fields: {
|
|
2115
|
+
readonly label: {
|
|
2116
|
+
readonly readonly?: boolean | undefined;
|
|
2117
|
+
readonly format?: string | undefined;
|
|
2118
|
+
readonly options?: {
|
|
2119
|
+
label: string;
|
|
2120
|
+
value: string;
|
|
2121
|
+
color?: string | undefined;
|
|
2122
|
+
default?: boolean | undefined;
|
|
2123
|
+
}[] | undefined;
|
|
2124
|
+
readonly description?: string | undefined;
|
|
2125
|
+
readonly label?: string | undefined;
|
|
2126
|
+
readonly name?: string | undefined;
|
|
2127
|
+
readonly precision?: number | undefined;
|
|
2128
|
+
readonly required?: boolean | undefined;
|
|
2129
|
+
readonly multiple?: boolean | undefined;
|
|
2130
|
+
readonly dependencies?: string[] | undefined;
|
|
2131
|
+
readonly theme?: string | undefined;
|
|
2132
|
+
readonly externalId?: boolean | undefined;
|
|
2133
|
+
readonly min?: number | undefined;
|
|
2134
|
+
readonly max?: number | undefined;
|
|
2135
|
+
readonly group?: string | undefined;
|
|
2136
|
+
readonly encryptionConfig?: {
|
|
2137
|
+
enabled: boolean;
|
|
2138
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2139
|
+
keyManagement: {
|
|
2140
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2141
|
+
keyId?: string | undefined;
|
|
2142
|
+
rotationPolicy?: {
|
|
2143
|
+
enabled: boolean;
|
|
2144
|
+
frequencyDays: number;
|
|
2145
|
+
retainOldVersions: number;
|
|
2146
|
+
autoRotate: boolean;
|
|
2147
|
+
} | undefined;
|
|
2148
|
+
};
|
|
2149
|
+
scope: "record" | "field" | "table" | "database";
|
|
2150
|
+
deterministicEncryption: boolean;
|
|
2151
|
+
searchableEncryption: boolean;
|
|
2152
|
+
} | undefined;
|
|
2153
|
+
readonly columnName?: string | undefined;
|
|
2154
|
+
readonly searchable?: boolean | undefined;
|
|
2155
|
+
readonly unique?: boolean | undefined;
|
|
2156
|
+
readonly defaultValue?: unknown;
|
|
2157
|
+
readonly maxLength?: number | undefined;
|
|
2158
|
+
readonly minLength?: number | undefined;
|
|
2159
|
+
readonly scale?: number | undefined;
|
|
2160
|
+
readonly reference?: string | undefined;
|
|
2161
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2162
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2163
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2164
|
+
readonly expression?: string | undefined;
|
|
2165
|
+
readonly summaryOperations?: {
|
|
2166
|
+
object: string;
|
|
2167
|
+
field: string;
|
|
2168
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2169
|
+
} | undefined;
|
|
2170
|
+
readonly language?: string | undefined;
|
|
2171
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2172
|
+
readonly maxRating?: number | undefined;
|
|
2173
|
+
readonly allowHalf?: boolean | undefined;
|
|
2174
|
+
readonly displayMap?: boolean | undefined;
|
|
2175
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2176
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2177
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2178
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2179
|
+
readonly presetColors?: string[] | undefined;
|
|
2180
|
+
readonly step?: number | undefined;
|
|
2181
|
+
readonly showValue?: boolean | undefined;
|
|
2182
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2183
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2184
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2185
|
+
readonly displayValue?: boolean | undefined;
|
|
2186
|
+
readonly allowScanning?: boolean | undefined;
|
|
2187
|
+
readonly currencyConfig?: {
|
|
2188
|
+
precision: number;
|
|
2189
|
+
currencyMode: "fixed" | "dynamic";
|
|
2190
|
+
defaultCurrency: string;
|
|
2191
|
+
} | undefined;
|
|
2192
|
+
readonly vectorConfig?: {
|
|
2193
|
+
dimensions: number;
|
|
2194
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2195
|
+
normalized: boolean;
|
|
2196
|
+
indexed: boolean;
|
|
2197
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
readonly fileAttachmentConfig?: {
|
|
2200
|
+
virusScan: boolean;
|
|
2201
|
+
virusScanOnUpload: boolean;
|
|
2202
|
+
quarantineOnThreat: boolean;
|
|
2203
|
+
allowMultiple: boolean;
|
|
2204
|
+
allowReplace: boolean;
|
|
2205
|
+
allowDelete: boolean;
|
|
2206
|
+
requireUpload: boolean;
|
|
2207
|
+
extractMetadata: boolean;
|
|
2208
|
+
extractText: boolean;
|
|
2209
|
+
versioningEnabled: boolean;
|
|
2210
|
+
publicRead: boolean;
|
|
2211
|
+
presignedUrlExpiry: number;
|
|
2212
|
+
minSize?: number | undefined;
|
|
2213
|
+
maxSize?: number | undefined;
|
|
2214
|
+
allowedTypes?: string[] | undefined;
|
|
2215
|
+
blockedTypes?: string[] | undefined;
|
|
2216
|
+
allowedMimeTypes?: string[] | undefined;
|
|
2217
|
+
blockedMimeTypes?: string[] | undefined;
|
|
2218
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2219
|
+
storageProvider?: string | undefined;
|
|
2220
|
+
storageBucket?: string | undefined;
|
|
2221
|
+
storagePrefix?: string | undefined;
|
|
2222
|
+
imageValidation?: {
|
|
2223
|
+
generateThumbnails: boolean;
|
|
2224
|
+
preserveMetadata: boolean;
|
|
2225
|
+
autoRotate: boolean;
|
|
2226
|
+
minWidth?: number | undefined;
|
|
2227
|
+
maxWidth?: number | undefined;
|
|
2228
|
+
minHeight?: number | undefined;
|
|
2229
|
+
maxHeight?: number | undefined;
|
|
2230
|
+
aspectRatio?: string | undefined;
|
|
2231
|
+
thumbnailSizes?: {
|
|
2232
|
+
name: string;
|
|
2233
|
+
width: number;
|
|
2234
|
+
height: number;
|
|
2235
|
+
crop: boolean;
|
|
2236
|
+
}[] | undefined;
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
maxVersions?: number | undefined;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
readonly maskingRule?: {
|
|
2241
|
+
field: string;
|
|
2242
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2243
|
+
preserveFormat: boolean;
|
|
2244
|
+
preserveLength: boolean;
|
|
2245
|
+
pattern?: string | undefined;
|
|
2246
|
+
roles?: string[] | undefined;
|
|
2247
|
+
exemptRoles?: string[] | undefined;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
readonly auditTrail?: boolean | undefined;
|
|
2250
|
+
readonly cached?: {
|
|
2251
|
+
enabled: boolean;
|
|
2252
|
+
ttl: number;
|
|
2253
|
+
invalidateOn: string[];
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
readonly dataQuality?: {
|
|
2256
|
+
uniqueness: boolean;
|
|
2257
|
+
completeness: number;
|
|
2258
|
+
accuracy?: {
|
|
2259
|
+
source: string;
|
|
2260
|
+
threshold: number;
|
|
2261
|
+
} | undefined;
|
|
2262
|
+
} | undefined;
|
|
2263
|
+
readonly conditionalRequired?: string | undefined;
|
|
2264
|
+
readonly hidden?: boolean | undefined;
|
|
2265
|
+
readonly sortable?: boolean | undefined;
|
|
2266
|
+
readonly inlineHelpText?: string | undefined;
|
|
2267
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2268
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2269
|
+
readonly autonumberFormat?: string | undefined;
|
|
2270
|
+
readonly index?: boolean | undefined;
|
|
2271
|
+
readonly type: "text";
|
|
2272
|
+
};
|
|
2273
|
+
readonly name: {
|
|
2274
|
+
readonly readonly?: boolean | undefined;
|
|
2275
|
+
readonly format?: string | undefined;
|
|
2276
|
+
readonly options?: {
|
|
2277
|
+
label: string;
|
|
2278
|
+
value: string;
|
|
2279
|
+
color?: string | undefined;
|
|
2280
|
+
default?: boolean | undefined;
|
|
2281
|
+
}[] | undefined;
|
|
2282
|
+
readonly description?: string | undefined;
|
|
2283
|
+
readonly label?: string | undefined;
|
|
2284
|
+
readonly name?: string | undefined;
|
|
2285
|
+
readonly precision?: number | undefined;
|
|
2286
|
+
readonly required?: boolean | undefined;
|
|
2287
|
+
readonly multiple?: boolean | undefined;
|
|
2288
|
+
readonly dependencies?: string[] | undefined;
|
|
2289
|
+
readonly theme?: string | undefined;
|
|
2290
|
+
readonly externalId?: boolean | undefined;
|
|
2291
|
+
readonly min?: number | undefined;
|
|
2292
|
+
readonly max?: number | undefined;
|
|
2293
|
+
readonly group?: string | undefined;
|
|
2294
|
+
readonly encryptionConfig?: {
|
|
2295
|
+
enabled: boolean;
|
|
2296
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2297
|
+
keyManagement: {
|
|
2298
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2299
|
+
keyId?: string | undefined;
|
|
2300
|
+
rotationPolicy?: {
|
|
2301
|
+
enabled: boolean;
|
|
2302
|
+
frequencyDays: number;
|
|
2303
|
+
retainOldVersions: number;
|
|
2304
|
+
autoRotate: boolean;
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
};
|
|
2307
|
+
scope: "record" | "field" | "table" | "database";
|
|
2308
|
+
deterministicEncryption: boolean;
|
|
2309
|
+
searchableEncryption: boolean;
|
|
2310
|
+
} | undefined;
|
|
2311
|
+
readonly columnName?: string | undefined;
|
|
2312
|
+
readonly searchable?: boolean | undefined;
|
|
2313
|
+
readonly unique?: boolean | undefined;
|
|
2314
|
+
readonly defaultValue?: unknown;
|
|
2315
|
+
readonly maxLength?: number | undefined;
|
|
2316
|
+
readonly minLength?: number | undefined;
|
|
2317
|
+
readonly scale?: number | undefined;
|
|
2318
|
+
readonly reference?: string | undefined;
|
|
2319
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2320
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2321
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2322
|
+
readonly expression?: string | undefined;
|
|
2323
|
+
readonly summaryOperations?: {
|
|
2324
|
+
object: string;
|
|
2325
|
+
field: string;
|
|
2326
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2327
|
+
} | undefined;
|
|
2328
|
+
readonly language?: string | undefined;
|
|
2329
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2330
|
+
readonly maxRating?: number | undefined;
|
|
2331
|
+
readonly allowHalf?: boolean | undefined;
|
|
2332
|
+
readonly displayMap?: boolean | undefined;
|
|
2333
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2334
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2335
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2336
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2337
|
+
readonly presetColors?: string[] | undefined;
|
|
2338
|
+
readonly step?: number | undefined;
|
|
2339
|
+
readonly showValue?: boolean | undefined;
|
|
2340
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2341
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2342
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2343
|
+
readonly displayValue?: boolean | undefined;
|
|
2344
|
+
readonly allowScanning?: boolean | undefined;
|
|
2345
|
+
readonly currencyConfig?: {
|
|
2346
|
+
precision: number;
|
|
2347
|
+
currencyMode: "fixed" | "dynamic";
|
|
2348
|
+
defaultCurrency: string;
|
|
2349
|
+
} | undefined;
|
|
2350
|
+
readonly vectorConfig?: {
|
|
2351
|
+
dimensions: number;
|
|
2352
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2353
|
+
normalized: boolean;
|
|
2354
|
+
indexed: boolean;
|
|
2355
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2356
|
+
} | undefined;
|
|
2357
|
+
readonly fileAttachmentConfig?: {
|
|
2358
|
+
virusScan: boolean;
|
|
2359
|
+
virusScanOnUpload: boolean;
|
|
2360
|
+
quarantineOnThreat: boolean;
|
|
2361
|
+
allowMultiple: boolean;
|
|
2362
|
+
allowReplace: boolean;
|
|
2363
|
+
allowDelete: boolean;
|
|
2364
|
+
requireUpload: boolean;
|
|
2365
|
+
extractMetadata: boolean;
|
|
2366
|
+
extractText: boolean;
|
|
2367
|
+
versioningEnabled: boolean;
|
|
2368
|
+
publicRead: boolean;
|
|
2369
|
+
presignedUrlExpiry: number;
|
|
2370
|
+
minSize?: number | undefined;
|
|
2371
|
+
maxSize?: number | undefined;
|
|
2372
|
+
allowedTypes?: string[] | undefined;
|
|
2373
|
+
blockedTypes?: string[] | undefined;
|
|
2374
|
+
allowedMimeTypes?: string[] | undefined;
|
|
2375
|
+
blockedMimeTypes?: string[] | undefined;
|
|
2376
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2377
|
+
storageProvider?: string | undefined;
|
|
2378
|
+
storageBucket?: string | undefined;
|
|
2379
|
+
storagePrefix?: string | undefined;
|
|
2380
|
+
imageValidation?: {
|
|
2381
|
+
generateThumbnails: boolean;
|
|
2382
|
+
preserveMetadata: boolean;
|
|
2383
|
+
autoRotate: boolean;
|
|
2384
|
+
minWidth?: number | undefined;
|
|
2385
|
+
maxWidth?: number | undefined;
|
|
2386
|
+
minHeight?: number | undefined;
|
|
2387
|
+
maxHeight?: number | undefined;
|
|
2388
|
+
aspectRatio?: string | undefined;
|
|
2389
|
+
thumbnailSizes?: {
|
|
2390
|
+
name: string;
|
|
2391
|
+
width: number;
|
|
2392
|
+
height: number;
|
|
2393
|
+
crop: boolean;
|
|
2394
|
+
}[] | undefined;
|
|
2395
|
+
} | undefined;
|
|
2396
|
+
maxVersions?: number | undefined;
|
|
2397
|
+
} | undefined;
|
|
2398
|
+
readonly maskingRule?: {
|
|
2399
|
+
field: string;
|
|
2400
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2401
|
+
preserveFormat: boolean;
|
|
2402
|
+
preserveLength: boolean;
|
|
2403
|
+
pattern?: string | undefined;
|
|
2404
|
+
roles?: string[] | undefined;
|
|
2405
|
+
exemptRoles?: string[] | undefined;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
readonly auditTrail?: boolean | undefined;
|
|
2408
|
+
readonly cached?: {
|
|
2409
|
+
enabled: boolean;
|
|
2410
|
+
ttl: number;
|
|
2411
|
+
invalidateOn: string[];
|
|
2412
|
+
} | undefined;
|
|
2413
|
+
readonly dataQuality?: {
|
|
2414
|
+
uniqueness: boolean;
|
|
2415
|
+
completeness: number;
|
|
2416
|
+
accuracy?: {
|
|
2417
|
+
source: string;
|
|
2418
|
+
threshold: number;
|
|
2419
|
+
} | undefined;
|
|
2420
|
+
} | undefined;
|
|
2421
|
+
readonly conditionalRequired?: string | undefined;
|
|
2422
|
+
readonly hidden?: boolean | undefined;
|
|
2423
|
+
readonly sortable?: boolean | undefined;
|
|
2424
|
+
readonly inlineHelpText?: string | undefined;
|
|
2425
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2426
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2427
|
+
readonly autonumberFormat?: string | undefined;
|
|
2428
|
+
readonly index?: boolean | undefined;
|
|
2429
|
+
readonly type: "text";
|
|
2430
|
+
};
|
|
2431
|
+
readonly description: {
|
|
2432
|
+
readonly readonly?: boolean | undefined;
|
|
2433
|
+
readonly format?: string | undefined;
|
|
2434
|
+
readonly options?: {
|
|
2435
|
+
label: string;
|
|
2436
|
+
value: string;
|
|
2437
|
+
color?: string | undefined;
|
|
2438
|
+
default?: boolean | undefined;
|
|
2439
|
+
}[] | undefined;
|
|
2440
|
+
readonly description?: string | undefined;
|
|
2441
|
+
readonly label?: string | undefined;
|
|
2442
|
+
readonly name?: string | undefined;
|
|
2443
|
+
readonly precision?: number | undefined;
|
|
2444
|
+
readonly required?: boolean | undefined;
|
|
2445
|
+
readonly multiple?: boolean | undefined;
|
|
2446
|
+
readonly dependencies?: string[] | undefined;
|
|
2447
|
+
readonly theme?: string | undefined;
|
|
2448
|
+
readonly externalId?: boolean | undefined;
|
|
2449
|
+
readonly min?: number | undefined;
|
|
2450
|
+
readonly max?: number | undefined;
|
|
2451
|
+
readonly group?: string | undefined;
|
|
2452
|
+
readonly encryptionConfig?: {
|
|
2453
|
+
enabled: boolean;
|
|
2454
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2455
|
+
keyManagement: {
|
|
2456
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2457
|
+
keyId?: string | undefined;
|
|
2458
|
+
rotationPolicy?: {
|
|
2459
|
+
enabled: boolean;
|
|
2460
|
+
frequencyDays: number;
|
|
2461
|
+
retainOldVersions: number;
|
|
2462
|
+
autoRotate: boolean;
|
|
2463
|
+
} | undefined;
|
|
2464
|
+
};
|
|
2465
|
+
scope: "record" | "field" | "table" | "database";
|
|
2466
|
+
deterministicEncryption: boolean;
|
|
2467
|
+
searchableEncryption: boolean;
|
|
2468
|
+
} | undefined;
|
|
2469
|
+
readonly columnName?: string | undefined;
|
|
2470
|
+
readonly searchable?: boolean | undefined;
|
|
2471
|
+
readonly unique?: boolean | undefined;
|
|
2472
|
+
readonly defaultValue?: unknown;
|
|
2473
|
+
readonly maxLength?: number | undefined;
|
|
2474
|
+
readonly minLength?: number | undefined;
|
|
2475
|
+
readonly scale?: number | undefined;
|
|
2476
|
+
readonly reference?: string | undefined;
|
|
2477
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2478
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2479
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2480
|
+
readonly expression?: string | undefined;
|
|
2481
|
+
readonly summaryOperations?: {
|
|
2482
|
+
object: string;
|
|
2483
|
+
field: string;
|
|
2484
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2485
|
+
} | undefined;
|
|
2486
|
+
readonly language?: string | undefined;
|
|
2487
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2488
|
+
readonly maxRating?: number | undefined;
|
|
2489
|
+
readonly allowHalf?: boolean | undefined;
|
|
2490
|
+
readonly displayMap?: boolean | undefined;
|
|
2491
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2492
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2493
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2494
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2495
|
+
readonly presetColors?: string[] | undefined;
|
|
2496
|
+
readonly step?: number | undefined;
|
|
2497
|
+
readonly showValue?: boolean | undefined;
|
|
2498
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2499
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2500
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2501
|
+
readonly displayValue?: boolean | undefined;
|
|
2502
|
+
readonly allowScanning?: boolean | undefined;
|
|
2503
|
+
readonly currencyConfig?: {
|
|
2504
|
+
precision: number;
|
|
2505
|
+
currencyMode: "fixed" | "dynamic";
|
|
2506
|
+
defaultCurrency: string;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
readonly vectorConfig?: {
|
|
2509
|
+
dimensions: number;
|
|
2510
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2511
|
+
normalized: boolean;
|
|
2512
|
+
indexed: boolean;
|
|
2513
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2514
|
+
} | undefined;
|
|
2515
|
+
readonly fileAttachmentConfig?: {
|
|
2516
|
+
virusScan: boolean;
|
|
2517
|
+
virusScanOnUpload: boolean;
|
|
2518
|
+
quarantineOnThreat: boolean;
|
|
2519
|
+
allowMultiple: boolean;
|
|
2520
|
+
allowReplace: boolean;
|
|
2521
|
+
allowDelete: boolean;
|
|
2522
|
+
requireUpload: boolean;
|
|
2523
|
+
extractMetadata: boolean;
|
|
2524
|
+
extractText: boolean;
|
|
2525
|
+
versioningEnabled: boolean;
|
|
2526
|
+
publicRead: boolean;
|
|
2527
|
+
presignedUrlExpiry: number;
|
|
2528
|
+
minSize?: number | undefined;
|
|
2529
|
+
maxSize?: number | undefined;
|
|
2530
|
+
allowedTypes?: string[] | undefined;
|
|
2531
|
+
blockedTypes?: string[] | undefined;
|
|
2532
|
+
allowedMimeTypes?: string[] | undefined;
|
|
2533
|
+
blockedMimeTypes?: string[] | undefined;
|
|
2534
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2535
|
+
storageProvider?: string | undefined;
|
|
2536
|
+
storageBucket?: string | undefined;
|
|
2537
|
+
storagePrefix?: string | undefined;
|
|
2538
|
+
imageValidation?: {
|
|
2539
|
+
generateThumbnails: boolean;
|
|
2540
|
+
preserveMetadata: boolean;
|
|
2541
|
+
autoRotate: boolean;
|
|
2542
|
+
minWidth?: number | undefined;
|
|
2543
|
+
maxWidth?: number | undefined;
|
|
2544
|
+
minHeight?: number | undefined;
|
|
2545
|
+
maxHeight?: number | undefined;
|
|
2546
|
+
aspectRatio?: string | undefined;
|
|
2547
|
+
thumbnailSizes?: {
|
|
2548
|
+
name: string;
|
|
2549
|
+
width: number;
|
|
2550
|
+
height: number;
|
|
2551
|
+
crop: boolean;
|
|
2552
|
+
}[] | undefined;
|
|
2553
|
+
} | undefined;
|
|
2554
|
+
maxVersions?: number | undefined;
|
|
2555
|
+
} | undefined;
|
|
2556
|
+
readonly maskingRule?: {
|
|
2557
|
+
field: string;
|
|
2558
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2559
|
+
preserveFormat: boolean;
|
|
2560
|
+
preserveLength: boolean;
|
|
2561
|
+
pattern?: string | undefined;
|
|
2562
|
+
roles?: string[] | undefined;
|
|
2563
|
+
exemptRoles?: string[] | undefined;
|
|
2564
|
+
} | undefined;
|
|
2565
|
+
readonly auditTrail?: boolean | undefined;
|
|
2566
|
+
readonly cached?: {
|
|
2567
|
+
enabled: boolean;
|
|
2568
|
+
ttl: number;
|
|
2569
|
+
invalidateOn: string[];
|
|
2570
|
+
} | undefined;
|
|
2571
|
+
readonly dataQuality?: {
|
|
2572
|
+
uniqueness: boolean;
|
|
2573
|
+
completeness: number;
|
|
2574
|
+
accuracy?: {
|
|
2575
|
+
source: string;
|
|
2576
|
+
threshold: number;
|
|
2577
|
+
} | undefined;
|
|
2578
|
+
} | undefined;
|
|
2579
|
+
readonly conditionalRequired?: string | undefined;
|
|
2580
|
+
readonly hidden?: boolean | undefined;
|
|
2581
|
+
readonly sortable?: boolean | undefined;
|
|
2582
|
+
readonly inlineHelpText?: string | undefined;
|
|
2583
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2584
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2585
|
+
readonly autonumberFormat?: string | undefined;
|
|
2586
|
+
readonly index?: boolean | undefined;
|
|
2587
|
+
readonly type: "textarea";
|
|
2588
|
+
};
|
|
2589
|
+
readonly object_permissions: {
|
|
2590
|
+
readonly readonly?: boolean | undefined;
|
|
2591
|
+
readonly format?: string | undefined;
|
|
2592
|
+
readonly options?: {
|
|
2593
|
+
label: string;
|
|
2594
|
+
value: string;
|
|
2595
|
+
color?: string | undefined;
|
|
2596
|
+
default?: boolean | undefined;
|
|
2597
|
+
}[] | undefined;
|
|
2598
|
+
readonly description?: string | undefined;
|
|
2599
|
+
readonly label?: string | undefined;
|
|
2600
|
+
readonly name?: string | undefined;
|
|
2601
|
+
readonly precision?: number | undefined;
|
|
2602
|
+
readonly required?: boolean | undefined;
|
|
2603
|
+
readonly multiple?: boolean | undefined;
|
|
2604
|
+
readonly dependencies?: string[] | undefined;
|
|
2605
|
+
readonly theme?: string | undefined;
|
|
2606
|
+
readonly externalId?: boolean | undefined;
|
|
2607
|
+
readonly min?: number | undefined;
|
|
2608
|
+
readonly max?: number | undefined;
|
|
2609
|
+
readonly group?: string | undefined;
|
|
2610
|
+
readonly encryptionConfig?: {
|
|
2611
|
+
enabled: boolean;
|
|
2612
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2613
|
+
keyManagement: {
|
|
2614
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2615
|
+
keyId?: string | undefined;
|
|
2616
|
+
rotationPolicy?: {
|
|
2617
|
+
enabled: boolean;
|
|
2618
|
+
frequencyDays: number;
|
|
2619
|
+
retainOldVersions: number;
|
|
2620
|
+
autoRotate: boolean;
|
|
2621
|
+
} | undefined;
|
|
2622
|
+
};
|
|
2623
|
+
scope: "record" | "field" | "table" | "database";
|
|
2624
|
+
deterministicEncryption: boolean;
|
|
2625
|
+
searchableEncryption: boolean;
|
|
2626
|
+
} | undefined;
|
|
2627
|
+
readonly columnName?: string | undefined;
|
|
2628
|
+
readonly searchable?: boolean | undefined;
|
|
2629
|
+
readonly unique?: boolean | undefined;
|
|
2630
|
+
readonly defaultValue?: unknown;
|
|
2631
|
+
readonly maxLength?: number | undefined;
|
|
2632
|
+
readonly minLength?: number | undefined;
|
|
2633
|
+
readonly scale?: number | undefined;
|
|
2634
|
+
readonly reference?: string | undefined;
|
|
2635
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2636
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2637
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2638
|
+
readonly expression?: string | undefined;
|
|
2639
|
+
readonly summaryOperations?: {
|
|
2640
|
+
object: string;
|
|
2641
|
+
field: string;
|
|
2642
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2643
|
+
} | undefined;
|
|
2644
|
+
readonly language?: string | undefined;
|
|
2645
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2646
|
+
readonly maxRating?: number | undefined;
|
|
2647
|
+
readonly allowHalf?: boolean | undefined;
|
|
2648
|
+
readonly displayMap?: boolean | undefined;
|
|
2649
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2650
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2651
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2652
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2653
|
+
readonly presetColors?: string[] | undefined;
|
|
2654
|
+
readonly step?: number | undefined;
|
|
2655
|
+
readonly showValue?: boolean | undefined;
|
|
2656
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2657
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2658
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2659
|
+
readonly displayValue?: boolean | undefined;
|
|
2660
|
+
readonly allowScanning?: boolean | undefined;
|
|
2661
|
+
readonly currencyConfig?: {
|
|
2662
|
+
precision: number;
|
|
2663
|
+
currencyMode: "fixed" | "dynamic";
|
|
2664
|
+
defaultCurrency: string;
|
|
2665
|
+
} | undefined;
|
|
2666
|
+
readonly vectorConfig?: {
|
|
2667
|
+
dimensions: number;
|
|
2668
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2669
|
+
normalized: boolean;
|
|
2670
|
+
indexed: boolean;
|
|
2671
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2672
|
+
} | undefined;
|
|
2673
|
+
readonly fileAttachmentConfig?: {
|
|
2674
|
+
virusScan: boolean;
|
|
2675
|
+
virusScanOnUpload: boolean;
|
|
2676
|
+
quarantineOnThreat: boolean;
|
|
2677
|
+
allowMultiple: boolean;
|
|
2678
|
+
allowReplace: boolean;
|
|
2679
|
+
allowDelete: boolean;
|
|
2680
|
+
requireUpload: boolean;
|
|
2681
|
+
extractMetadata: boolean;
|
|
2682
|
+
extractText: boolean;
|
|
2683
|
+
versioningEnabled: boolean;
|
|
2684
|
+
publicRead: boolean;
|
|
2685
|
+
presignedUrlExpiry: number;
|
|
2686
|
+
minSize?: number | undefined;
|
|
2687
|
+
maxSize?: number | undefined;
|
|
2688
|
+
allowedTypes?: string[] | undefined;
|
|
2689
|
+
blockedTypes?: string[] | undefined;
|
|
2690
|
+
allowedMimeTypes?: string[] | undefined;
|
|
2691
|
+
blockedMimeTypes?: string[] | undefined;
|
|
2692
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2693
|
+
storageProvider?: string | undefined;
|
|
2694
|
+
storageBucket?: string | undefined;
|
|
2695
|
+
storagePrefix?: string | undefined;
|
|
2696
|
+
imageValidation?: {
|
|
2697
|
+
generateThumbnails: boolean;
|
|
2698
|
+
preserveMetadata: boolean;
|
|
2699
|
+
autoRotate: boolean;
|
|
2700
|
+
minWidth?: number | undefined;
|
|
2701
|
+
maxWidth?: number | undefined;
|
|
2702
|
+
minHeight?: number | undefined;
|
|
2703
|
+
maxHeight?: number | undefined;
|
|
2704
|
+
aspectRatio?: string | undefined;
|
|
2705
|
+
thumbnailSizes?: {
|
|
2706
|
+
name: string;
|
|
2707
|
+
width: number;
|
|
2708
|
+
height: number;
|
|
2709
|
+
crop: boolean;
|
|
2710
|
+
}[] | undefined;
|
|
2711
|
+
} | undefined;
|
|
2712
|
+
maxVersions?: number | undefined;
|
|
2713
|
+
} | undefined;
|
|
2714
|
+
readonly maskingRule?: {
|
|
2715
|
+
field: string;
|
|
2716
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2717
|
+
preserveFormat: boolean;
|
|
2718
|
+
preserveLength: boolean;
|
|
2719
|
+
pattern?: string | undefined;
|
|
2720
|
+
roles?: string[] | undefined;
|
|
2721
|
+
exemptRoles?: string[] | undefined;
|
|
2722
|
+
} | undefined;
|
|
2723
|
+
readonly auditTrail?: boolean | undefined;
|
|
2724
|
+
readonly cached?: {
|
|
2725
|
+
enabled: boolean;
|
|
2726
|
+
ttl: number;
|
|
2727
|
+
invalidateOn: string[];
|
|
2728
|
+
} | undefined;
|
|
2729
|
+
readonly dataQuality?: {
|
|
2730
|
+
uniqueness: boolean;
|
|
2731
|
+
completeness: number;
|
|
2732
|
+
accuracy?: {
|
|
2733
|
+
source: string;
|
|
2734
|
+
threshold: number;
|
|
2735
|
+
} | undefined;
|
|
2736
|
+
} | undefined;
|
|
2737
|
+
readonly conditionalRequired?: string | undefined;
|
|
2738
|
+
readonly hidden?: boolean | undefined;
|
|
2739
|
+
readonly sortable?: boolean | undefined;
|
|
2740
|
+
readonly inlineHelpText?: string | undefined;
|
|
2741
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2742
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2743
|
+
readonly autonumberFormat?: string | undefined;
|
|
2744
|
+
readonly index?: boolean | undefined;
|
|
2745
|
+
readonly type: "textarea";
|
|
2746
|
+
};
|
|
2747
|
+
readonly field_permissions: {
|
|
2748
|
+
readonly readonly?: boolean | undefined;
|
|
2749
|
+
readonly format?: string | undefined;
|
|
2750
|
+
readonly options?: {
|
|
2751
|
+
label: string;
|
|
2752
|
+
value: string;
|
|
2753
|
+
color?: string | undefined;
|
|
2754
|
+
default?: boolean | undefined;
|
|
2755
|
+
}[] | undefined;
|
|
2756
|
+
readonly description?: string | undefined;
|
|
2757
|
+
readonly label?: string | undefined;
|
|
2758
|
+
readonly name?: string | undefined;
|
|
2759
|
+
readonly precision?: number | undefined;
|
|
2760
|
+
readonly required?: boolean | undefined;
|
|
2761
|
+
readonly multiple?: boolean | undefined;
|
|
2762
|
+
readonly dependencies?: string[] | undefined;
|
|
2763
|
+
readonly theme?: string | undefined;
|
|
2764
|
+
readonly externalId?: boolean | undefined;
|
|
2765
|
+
readonly min?: number | undefined;
|
|
2766
|
+
readonly max?: number | undefined;
|
|
2767
|
+
readonly group?: string | undefined;
|
|
2768
|
+
readonly encryptionConfig?: {
|
|
2769
|
+
enabled: boolean;
|
|
2770
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2771
|
+
keyManagement: {
|
|
2772
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2773
|
+
keyId?: string | undefined;
|
|
2774
|
+
rotationPolicy?: {
|
|
2775
|
+
enabled: boolean;
|
|
2776
|
+
frequencyDays: number;
|
|
2777
|
+
retainOldVersions: number;
|
|
2778
|
+
autoRotate: boolean;
|
|
2779
|
+
} | undefined;
|
|
2780
|
+
};
|
|
2781
|
+
scope: "record" | "field" | "table" | "database";
|
|
2782
|
+
deterministicEncryption: boolean;
|
|
2783
|
+
searchableEncryption: boolean;
|
|
2784
|
+
} | undefined;
|
|
2785
|
+
readonly columnName?: string | undefined;
|
|
2786
|
+
readonly searchable?: boolean | undefined;
|
|
2787
|
+
readonly unique?: boolean | undefined;
|
|
2788
|
+
readonly defaultValue?: unknown;
|
|
2789
|
+
readonly maxLength?: number | undefined;
|
|
2790
|
+
readonly minLength?: number | undefined;
|
|
2791
|
+
readonly scale?: number | undefined;
|
|
2792
|
+
readonly reference?: string | undefined;
|
|
2793
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2794
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2795
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2796
|
+
readonly expression?: string | undefined;
|
|
2797
|
+
readonly summaryOperations?: {
|
|
2798
|
+
object: string;
|
|
2799
|
+
field: string;
|
|
2800
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2801
|
+
} | undefined;
|
|
2802
|
+
readonly language?: string | undefined;
|
|
2803
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2804
|
+
readonly maxRating?: number | undefined;
|
|
2805
|
+
readonly allowHalf?: boolean | undefined;
|
|
2806
|
+
readonly displayMap?: boolean | undefined;
|
|
2807
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2808
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2809
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2810
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2811
|
+
readonly presetColors?: string[] | undefined;
|
|
2812
|
+
readonly step?: number | undefined;
|
|
2813
|
+
readonly showValue?: boolean | undefined;
|
|
2814
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2815
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2816
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2817
|
+
readonly displayValue?: boolean | undefined;
|
|
2818
|
+
readonly allowScanning?: boolean | undefined;
|
|
2819
|
+
readonly currencyConfig?: {
|
|
2820
|
+
precision: number;
|
|
2821
|
+
currencyMode: "fixed" | "dynamic";
|
|
2822
|
+
defaultCurrency: string;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
readonly vectorConfig?: {
|
|
2825
|
+
dimensions: number;
|
|
2826
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2827
|
+
normalized: boolean;
|
|
2828
|
+
indexed: boolean;
|
|
2829
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2830
|
+
} | undefined;
|
|
2831
|
+
readonly fileAttachmentConfig?: {
|
|
2832
|
+
virusScan: boolean;
|
|
2833
|
+
virusScanOnUpload: boolean;
|
|
2834
|
+
quarantineOnThreat: boolean;
|
|
2835
|
+
allowMultiple: boolean;
|
|
2836
|
+
allowReplace: boolean;
|
|
2837
|
+
allowDelete: boolean;
|
|
2838
|
+
requireUpload: boolean;
|
|
2839
|
+
extractMetadata: boolean;
|
|
2840
|
+
extractText: boolean;
|
|
2841
|
+
versioningEnabled: boolean;
|
|
2842
|
+
publicRead: boolean;
|
|
2843
|
+
presignedUrlExpiry: number;
|
|
2844
|
+
minSize?: number | undefined;
|
|
2845
|
+
maxSize?: number | undefined;
|
|
2846
|
+
allowedTypes?: string[] | undefined;
|
|
2847
|
+
blockedTypes?: string[] | undefined;
|
|
2848
|
+
allowedMimeTypes?: string[] | undefined;
|
|
2849
|
+
blockedMimeTypes?: string[] | undefined;
|
|
2850
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2851
|
+
storageProvider?: string | undefined;
|
|
2852
|
+
storageBucket?: string | undefined;
|
|
2853
|
+
storagePrefix?: string | undefined;
|
|
2854
|
+
imageValidation?: {
|
|
2855
|
+
generateThumbnails: boolean;
|
|
2856
|
+
preserveMetadata: boolean;
|
|
2857
|
+
autoRotate: boolean;
|
|
2858
|
+
minWidth?: number | undefined;
|
|
2859
|
+
maxWidth?: number | undefined;
|
|
2860
|
+
minHeight?: number | undefined;
|
|
2861
|
+
maxHeight?: number | undefined;
|
|
2862
|
+
aspectRatio?: string | undefined;
|
|
2863
|
+
thumbnailSizes?: {
|
|
2864
|
+
name: string;
|
|
2865
|
+
width: number;
|
|
2866
|
+
height: number;
|
|
2867
|
+
crop: boolean;
|
|
2868
|
+
}[] | undefined;
|
|
2869
|
+
} | undefined;
|
|
2870
|
+
maxVersions?: number | undefined;
|
|
2871
|
+
} | undefined;
|
|
2872
|
+
readonly maskingRule?: {
|
|
2873
|
+
field: string;
|
|
2874
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2875
|
+
preserveFormat: boolean;
|
|
2876
|
+
preserveLength: boolean;
|
|
2877
|
+
pattern?: string | undefined;
|
|
2878
|
+
roles?: string[] | undefined;
|
|
2879
|
+
exemptRoles?: string[] | undefined;
|
|
2880
|
+
} | undefined;
|
|
2881
|
+
readonly auditTrail?: boolean | undefined;
|
|
2882
|
+
readonly cached?: {
|
|
2883
|
+
enabled: boolean;
|
|
2884
|
+
ttl: number;
|
|
2885
|
+
invalidateOn: string[];
|
|
2886
|
+
} | undefined;
|
|
2887
|
+
readonly dataQuality?: {
|
|
2888
|
+
uniqueness: boolean;
|
|
2889
|
+
completeness: number;
|
|
2890
|
+
accuracy?: {
|
|
2891
|
+
source: string;
|
|
2892
|
+
threshold: number;
|
|
2893
|
+
} | undefined;
|
|
2894
|
+
} | undefined;
|
|
2895
|
+
readonly conditionalRequired?: string | undefined;
|
|
2896
|
+
readonly hidden?: boolean | undefined;
|
|
2897
|
+
readonly sortable?: boolean | undefined;
|
|
2898
|
+
readonly inlineHelpText?: string | undefined;
|
|
2899
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2900
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2901
|
+
readonly autonumberFormat?: string | undefined;
|
|
2902
|
+
readonly index?: boolean | undefined;
|
|
2903
|
+
readonly type: "textarea";
|
|
2904
|
+
};
|
|
2905
|
+
readonly active: {
|
|
2906
|
+
readonly readonly?: boolean | undefined;
|
|
2907
|
+
readonly format?: string | undefined;
|
|
2908
|
+
readonly options?: {
|
|
2909
|
+
label: string;
|
|
2910
|
+
value: string;
|
|
2911
|
+
color?: string | undefined;
|
|
2912
|
+
default?: boolean | undefined;
|
|
2913
|
+
}[] | undefined;
|
|
2914
|
+
readonly description?: string | undefined;
|
|
2915
|
+
readonly label?: string | undefined;
|
|
2916
|
+
readonly name?: string | undefined;
|
|
2917
|
+
readonly precision?: number | undefined;
|
|
2918
|
+
readonly required?: boolean | undefined;
|
|
2919
|
+
readonly multiple?: boolean | undefined;
|
|
2920
|
+
readonly dependencies?: string[] | undefined;
|
|
2921
|
+
readonly theme?: string | undefined;
|
|
2922
|
+
readonly externalId?: boolean | undefined;
|
|
2923
|
+
readonly min?: number | undefined;
|
|
2924
|
+
readonly max?: number | undefined;
|
|
2925
|
+
readonly group?: string | undefined;
|
|
2926
|
+
readonly encryptionConfig?: {
|
|
2927
|
+
enabled: boolean;
|
|
2928
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2929
|
+
keyManagement: {
|
|
2930
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2931
|
+
keyId?: string | undefined;
|
|
2932
|
+
rotationPolicy?: {
|
|
2933
|
+
enabled: boolean;
|
|
2934
|
+
frequencyDays: number;
|
|
2935
|
+
retainOldVersions: number;
|
|
2936
|
+
autoRotate: boolean;
|
|
2937
|
+
} | undefined;
|
|
2938
|
+
};
|
|
2939
|
+
scope: "record" | "field" | "table" | "database";
|
|
2940
|
+
deterministicEncryption: boolean;
|
|
2941
|
+
searchableEncryption: boolean;
|
|
2942
|
+
} | undefined;
|
|
2943
|
+
readonly columnName?: string | undefined;
|
|
2944
|
+
readonly searchable?: boolean | undefined;
|
|
2945
|
+
readonly unique?: boolean | undefined;
|
|
2946
|
+
readonly defaultValue?: unknown;
|
|
2947
|
+
readonly maxLength?: number | undefined;
|
|
2948
|
+
readonly minLength?: number | undefined;
|
|
2949
|
+
readonly scale?: number | undefined;
|
|
2950
|
+
readonly reference?: string | undefined;
|
|
2951
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2952
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2953
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2954
|
+
readonly expression?: string | undefined;
|
|
2955
|
+
readonly summaryOperations?: {
|
|
2956
|
+
object: string;
|
|
2957
|
+
field: string;
|
|
2958
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2959
|
+
} | undefined;
|
|
2960
|
+
readonly language?: string | undefined;
|
|
2961
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2962
|
+
readonly maxRating?: number | undefined;
|
|
2963
|
+
readonly allowHalf?: boolean | undefined;
|
|
2964
|
+
readonly displayMap?: boolean | undefined;
|
|
2965
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2966
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2967
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2968
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2969
|
+
readonly presetColors?: string[] | undefined;
|
|
2970
|
+
readonly step?: number | undefined;
|
|
2971
|
+
readonly showValue?: boolean | undefined;
|
|
2972
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2973
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2974
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2975
|
+
readonly displayValue?: boolean | undefined;
|
|
2976
|
+
readonly allowScanning?: boolean | undefined;
|
|
2977
|
+
readonly currencyConfig?: {
|
|
2978
|
+
precision: number;
|
|
2979
|
+
currencyMode: "fixed" | "dynamic";
|
|
2980
|
+
defaultCurrency: string;
|
|
2981
|
+
} | undefined;
|
|
2982
|
+
readonly vectorConfig?: {
|
|
2983
|
+
dimensions: number;
|
|
2984
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2985
|
+
normalized: boolean;
|
|
2986
|
+
indexed: boolean;
|
|
2987
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2988
|
+
} | undefined;
|
|
2989
|
+
readonly fileAttachmentConfig?: {
|
|
2990
|
+
virusScan: boolean;
|
|
2991
|
+
virusScanOnUpload: boolean;
|
|
2992
|
+
quarantineOnThreat: boolean;
|
|
2993
|
+
allowMultiple: boolean;
|
|
2994
|
+
allowReplace: boolean;
|
|
2995
|
+
allowDelete: boolean;
|
|
2996
|
+
requireUpload: boolean;
|
|
2997
|
+
extractMetadata: boolean;
|
|
2998
|
+
extractText: boolean;
|
|
2999
|
+
versioningEnabled: boolean;
|
|
3000
|
+
publicRead: boolean;
|
|
3001
|
+
presignedUrlExpiry: number;
|
|
3002
|
+
minSize?: number | undefined;
|
|
3003
|
+
maxSize?: number | undefined;
|
|
3004
|
+
allowedTypes?: string[] | undefined;
|
|
3005
|
+
blockedTypes?: string[] | undefined;
|
|
3006
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3007
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3008
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3009
|
+
storageProvider?: string | undefined;
|
|
3010
|
+
storageBucket?: string | undefined;
|
|
3011
|
+
storagePrefix?: string | undefined;
|
|
3012
|
+
imageValidation?: {
|
|
3013
|
+
generateThumbnails: boolean;
|
|
3014
|
+
preserveMetadata: boolean;
|
|
3015
|
+
autoRotate: boolean;
|
|
3016
|
+
minWidth?: number | undefined;
|
|
3017
|
+
maxWidth?: number | undefined;
|
|
3018
|
+
minHeight?: number | undefined;
|
|
3019
|
+
maxHeight?: number | undefined;
|
|
3020
|
+
aspectRatio?: string | undefined;
|
|
3021
|
+
thumbnailSizes?: {
|
|
3022
|
+
name: string;
|
|
3023
|
+
width: number;
|
|
3024
|
+
height: number;
|
|
3025
|
+
crop: boolean;
|
|
3026
|
+
}[] | undefined;
|
|
3027
|
+
} | undefined;
|
|
3028
|
+
maxVersions?: number | undefined;
|
|
3029
|
+
} | undefined;
|
|
3030
|
+
readonly maskingRule?: {
|
|
3031
|
+
field: string;
|
|
3032
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3033
|
+
preserveFormat: boolean;
|
|
3034
|
+
preserveLength: boolean;
|
|
3035
|
+
pattern?: string | undefined;
|
|
3036
|
+
roles?: string[] | undefined;
|
|
3037
|
+
exemptRoles?: string[] | undefined;
|
|
3038
|
+
} | undefined;
|
|
3039
|
+
readonly auditTrail?: boolean | undefined;
|
|
3040
|
+
readonly cached?: {
|
|
3041
|
+
enabled: boolean;
|
|
3042
|
+
ttl: number;
|
|
3043
|
+
invalidateOn: string[];
|
|
3044
|
+
} | undefined;
|
|
3045
|
+
readonly dataQuality?: {
|
|
3046
|
+
uniqueness: boolean;
|
|
3047
|
+
completeness: number;
|
|
3048
|
+
accuracy?: {
|
|
3049
|
+
source: string;
|
|
3050
|
+
threshold: number;
|
|
3051
|
+
} | undefined;
|
|
3052
|
+
} | undefined;
|
|
3053
|
+
readonly conditionalRequired?: string | undefined;
|
|
3054
|
+
readonly hidden?: boolean | undefined;
|
|
3055
|
+
readonly sortable?: boolean | undefined;
|
|
3056
|
+
readonly inlineHelpText?: string | undefined;
|
|
3057
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3058
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3059
|
+
readonly autonumberFormat?: string | undefined;
|
|
3060
|
+
readonly index?: boolean | undefined;
|
|
3061
|
+
readonly type: "boolean";
|
|
3062
|
+
};
|
|
3063
|
+
readonly id: {
|
|
3064
|
+
readonly readonly?: boolean | undefined;
|
|
3065
|
+
readonly format?: string | undefined;
|
|
3066
|
+
readonly options?: {
|
|
3067
|
+
label: string;
|
|
3068
|
+
value: string;
|
|
3069
|
+
color?: string | undefined;
|
|
3070
|
+
default?: boolean | undefined;
|
|
3071
|
+
}[] | undefined;
|
|
3072
|
+
readonly description?: string | undefined;
|
|
3073
|
+
readonly label?: string | undefined;
|
|
3074
|
+
readonly name?: string | undefined;
|
|
3075
|
+
readonly precision?: number | undefined;
|
|
3076
|
+
readonly required?: boolean | undefined;
|
|
3077
|
+
readonly multiple?: boolean | undefined;
|
|
3078
|
+
readonly dependencies?: string[] | undefined;
|
|
3079
|
+
readonly theme?: string | undefined;
|
|
3080
|
+
readonly externalId?: boolean | undefined;
|
|
3081
|
+
readonly min?: number | undefined;
|
|
3082
|
+
readonly max?: number | undefined;
|
|
3083
|
+
readonly group?: string | undefined;
|
|
3084
|
+
readonly encryptionConfig?: {
|
|
3085
|
+
enabled: boolean;
|
|
3086
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3087
|
+
keyManagement: {
|
|
3088
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3089
|
+
keyId?: string | undefined;
|
|
3090
|
+
rotationPolicy?: {
|
|
3091
|
+
enabled: boolean;
|
|
3092
|
+
frequencyDays: number;
|
|
3093
|
+
retainOldVersions: number;
|
|
3094
|
+
autoRotate: boolean;
|
|
3095
|
+
} | undefined;
|
|
3096
|
+
};
|
|
3097
|
+
scope: "record" | "field" | "table" | "database";
|
|
3098
|
+
deterministicEncryption: boolean;
|
|
3099
|
+
searchableEncryption: boolean;
|
|
3100
|
+
} | undefined;
|
|
3101
|
+
readonly columnName?: string | undefined;
|
|
3102
|
+
readonly searchable?: boolean | undefined;
|
|
3103
|
+
readonly unique?: boolean | undefined;
|
|
3104
|
+
readonly defaultValue?: unknown;
|
|
3105
|
+
readonly maxLength?: number | undefined;
|
|
3106
|
+
readonly minLength?: number | undefined;
|
|
3107
|
+
readonly scale?: number | undefined;
|
|
3108
|
+
readonly reference?: string | undefined;
|
|
3109
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3110
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3111
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3112
|
+
readonly expression?: string | undefined;
|
|
3113
|
+
readonly summaryOperations?: {
|
|
3114
|
+
object: string;
|
|
3115
|
+
field: string;
|
|
3116
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3117
|
+
} | undefined;
|
|
3118
|
+
readonly language?: string | undefined;
|
|
3119
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3120
|
+
readonly maxRating?: number | undefined;
|
|
3121
|
+
readonly allowHalf?: boolean | undefined;
|
|
3122
|
+
readonly displayMap?: boolean | undefined;
|
|
3123
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3124
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3125
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3126
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3127
|
+
readonly presetColors?: string[] | undefined;
|
|
3128
|
+
readonly step?: number | undefined;
|
|
3129
|
+
readonly showValue?: boolean | undefined;
|
|
3130
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3131
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3132
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3133
|
+
readonly displayValue?: boolean | undefined;
|
|
3134
|
+
readonly allowScanning?: boolean | undefined;
|
|
3135
|
+
readonly currencyConfig?: {
|
|
3136
|
+
precision: number;
|
|
3137
|
+
currencyMode: "fixed" | "dynamic";
|
|
3138
|
+
defaultCurrency: string;
|
|
3139
|
+
} | undefined;
|
|
3140
|
+
readonly vectorConfig?: {
|
|
3141
|
+
dimensions: number;
|
|
3142
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3143
|
+
normalized: boolean;
|
|
3144
|
+
indexed: boolean;
|
|
3145
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3146
|
+
} | undefined;
|
|
3147
|
+
readonly fileAttachmentConfig?: {
|
|
3148
|
+
virusScan: boolean;
|
|
3149
|
+
virusScanOnUpload: boolean;
|
|
3150
|
+
quarantineOnThreat: boolean;
|
|
3151
|
+
allowMultiple: boolean;
|
|
3152
|
+
allowReplace: boolean;
|
|
3153
|
+
allowDelete: boolean;
|
|
3154
|
+
requireUpload: boolean;
|
|
3155
|
+
extractMetadata: boolean;
|
|
3156
|
+
extractText: boolean;
|
|
3157
|
+
versioningEnabled: boolean;
|
|
3158
|
+
publicRead: boolean;
|
|
3159
|
+
presignedUrlExpiry: number;
|
|
3160
|
+
minSize?: number | undefined;
|
|
3161
|
+
maxSize?: number | undefined;
|
|
3162
|
+
allowedTypes?: string[] | undefined;
|
|
3163
|
+
blockedTypes?: string[] | undefined;
|
|
3164
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3165
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3166
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3167
|
+
storageProvider?: string | undefined;
|
|
3168
|
+
storageBucket?: string | undefined;
|
|
3169
|
+
storagePrefix?: string | undefined;
|
|
3170
|
+
imageValidation?: {
|
|
3171
|
+
generateThumbnails: boolean;
|
|
3172
|
+
preserveMetadata: boolean;
|
|
3173
|
+
autoRotate: boolean;
|
|
3174
|
+
minWidth?: number | undefined;
|
|
3175
|
+
maxWidth?: number | undefined;
|
|
3176
|
+
minHeight?: number | undefined;
|
|
3177
|
+
maxHeight?: number | undefined;
|
|
3178
|
+
aspectRatio?: string | undefined;
|
|
3179
|
+
thumbnailSizes?: {
|
|
3180
|
+
name: string;
|
|
3181
|
+
width: number;
|
|
3182
|
+
height: number;
|
|
3183
|
+
crop: boolean;
|
|
3184
|
+
}[] | undefined;
|
|
3185
|
+
} | undefined;
|
|
3186
|
+
maxVersions?: number | undefined;
|
|
3187
|
+
} | undefined;
|
|
3188
|
+
readonly maskingRule?: {
|
|
3189
|
+
field: string;
|
|
3190
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3191
|
+
preserveFormat: boolean;
|
|
3192
|
+
preserveLength: boolean;
|
|
3193
|
+
pattern?: string | undefined;
|
|
3194
|
+
roles?: string[] | undefined;
|
|
3195
|
+
exemptRoles?: string[] | undefined;
|
|
3196
|
+
} | undefined;
|
|
3197
|
+
readonly auditTrail?: boolean | undefined;
|
|
3198
|
+
readonly cached?: {
|
|
3199
|
+
enabled: boolean;
|
|
3200
|
+
ttl: number;
|
|
3201
|
+
invalidateOn: string[];
|
|
3202
|
+
} | undefined;
|
|
3203
|
+
readonly dataQuality?: {
|
|
3204
|
+
uniqueness: boolean;
|
|
3205
|
+
completeness: number;
|
|
3206
|
+
accuracy?: {
|
|
3207
|
+
source: string;
|
|
3208
|
+
threshold: number;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
} | undefined;
|
|
3211
|
+
readonly conditionalRequired?: string | undefined;
|
|
3212
|
+
readonly hidden?: boolean | undefined;
|
|
3213
|
+
readonly sortable?: boolean | undefined;
|
|
3214
|
+
readonly inlineHelpText?: string | undefined;
|
|
3215
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3216
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3217
|
+
readonly autonumberFormat?: string | undefined;
|
|
3218
|
+
readonly index?: boolean | undefined;
|
|
3219
|
+
readonly type: "text";
|
|
3220
|
+
};
|
|
3221
|
+
readonly created_at: {
|
|
3222
|
+
readonly readonly?: boolean | undefined;
|
|
3223
|
+
readonly format?: string | undefined;
|
|
3224
|
+
readonly options?: {
|
|
3225
|
+
label: string;
|
|
3226
|
+
value: string;
|
|
3227
|
+
color?: string | undefined;
|
|
3228
|
+
default?: boolean | undefined;
|
|
3229
|
+
}[] | undefined;
|
|
3230
|
+
readonly description?: string | undefined;
|
|
3231
|
+
readonly label?: string | undefined;
|
|
3232
|
+
readonly name?: string | undefined;
|
|
3233
|
+
readonly precision?: number | undefined;
|
|
3234
|
+
readonly required?: boolean | undefined;
|
|
3235
|
+
readonly multiple?: boolean | undefined;
|
|
3236
|
+
readonly dependencies?: string[] | undefined;
|
|
3237
|
+
readonly theme?: string | undefined;
|
|
3238
|
+
readonly externalId?: boolean | undefined;
|
|
3239
|
+
readonly min?: number | undefined;
|
|
3240
|
+
readonly max?: number | undefined;
|
|
3241
|
+
readonly group?: string | undefined;
|
|
3242
|
+
readonly encryptionConfig?: {
|
|
3243
|
+
enabled: boolean;
|
|
3244
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3245
|
+
keyManagement: {
|
|
3246
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3247
|
+
keyId?: string | undefined;
|
|
3248
|
+
rotationPolicy?: {
|
|
3249
|
+
enabled: boolean;
|
|
3250
|
+
frequencyDays: number;
|
|
3251
|
+
retainOldVersions: number;
|
|
3252
|
+
autoRotate: boolean;
|
|
3253
|
+
} | undefined;
|
|
3254
|
+
};
|
|
3255
|
+
scope: "record" | "field" | "table" | "database";
|
|
3256
|
+
deterministicEncryption: boolean;
|
|
3257
|
+
searchableEncryption: boolean;
|
|
3258
|
+
} | undefined;
|
|
3259
|
+
readonly columnName?: string | undefined;
|
|
3260
|
+
readonly searchable?: boolean | undefined;
|
|
3261
|
+
readonly unique?: boolean | undefined;
|
|
3262
|
+
readonly defaultValue?: unknown;
|
|
3263
|
+
readonly maxLength?: number | undefined;
|
|
3264
|
+
readonly minLength?: number | undefined;
|
|
3265
|
+
readonly scale?: number | undefined;
|
|
3266
|
+
readonly reference?: string | undefined;
|
|
3267
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3268
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3269
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3270
|
+
readonly expression?: string | undefined;
|
|
3271
|
+
readonly summaryOperations?: {
|
|
3272
|
+
object: string;
|
|
3273
|
+
field: string;
|
|
3274
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3275
|
+
} | undefined;
|
|
3276
|
+
readonly language?: string | undefined;
|
|
3277
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3278
|
+
readonly maxRating?: number | undefined;
|
|
3279
|
+
readonly allowHalf?: boolean | undefined;
|
|
3280
|
+
readonly displayMap?: boolean | undefined;
|
|
3281
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3282
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3283
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3284
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3285
|
+
readonly presetColors?: string[] | undefined;
|
|
3286
|
+
readonly step?: number | undefined;
|
|
3287
|
+
readonly showValue?: boolean | undefined;
|
|
3288
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3289
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3290
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3291
|
+
readonly displayValue?: boolean | undefined;
|
|
3292
|
+
readonly allowScanning?: boolean | undefined;
|
|
3293
|
+
readonly currencyConfig?: {
|
|
3294
|
+
precision: number;
|
|
3295
|
+
currencyMode: "fixed" | "dynamic";
|
|
3296
|
+
defaultCurrency: string;
|
|
3297
|
+
} | undefined;
|
|
3298
|
+
readonly vectorConfig?: {
|
|
3299
|
+
dimensions: number;
|
|
3300
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3301
|
+
normalized: boolean;
|
|
3302
|
+
indexed: boolean;
|
|
3303
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3304
|
+
} | undefined;
|
|
3305
|
+
readonly fileAttachmentConfig?: {
|
|
3306
|
+
virusScan: boolean;
|
|
3307
|
+
virusScanOnUpload: boolean;
|
|
3308
|
+
quarantineOnThreat: boolean;
|
|
3309
|
+
allowMultiple: boolean;
|
|
3310
|
+
allowReplace: boolean;
|
|
3311
|
+
allowDelete: boolean;
|
|
3312
|
+
requireUpload: boolean;
|
|
3313
|
+
extractMetadata: boolean;
|
|
3314
|
+
extractText: boolean;
|
|
3315
|
+
versioningEnabled: boolean;
|
|
3316
|
+
publicRead: boolean;
|
|
3317
|
+
presignedUrlExpiry: number;
|
|
3318
|
+
minSize?: number | undefined;
|
|
3319
|
+
maxSize?: number | undefined;
|
|
3320
|
+
allowedTypes?: string[] | undefined;
|
|
3321
|
+
blockedTypes?: string[] | undefined;
|
|
3322
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3323
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3324
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3325
|
+
storageProvider?: string | undefined;
|
|
3326
|
+
storageBucket?: string | undefined;
|
|
3327
|
+
storagePrefix?: string | undefined;
|
|
3328
|
+
imageValidation?: {
|
|
3329
|
+
generateThumbnails: boolean;
|
|
3330
|
+
preserveMetadata: boolean;
|
|
3331
|
+
autoRotate: boolean;
|
|
3332
|
+
minWidth?: number | undefined;
|
|
3333
|
+
maxWidth?: number | undefined;
|
|
3334
|
+
minHeight?: number | undefined;
|
|
3335
|
+
maxHeight?: number | undefined;
|
|
3336
|
+
aspectRatio?: string | undefined;
|
|
3337
|
+
thumbnailSizes?: {
|
|
3338
|
+
name: string;
|
|
3339
|
+
width: number;
|
|
3340
|
+
height: number;
|
|
3341
|
+
crop: boolean;
|
|
3342
|
+
}[] | undefined;
|
|
3343
|
+
} | undefined;
|
|
3344
|
+
maxVersions?: number | undefined;
|
|
3345
|
+
} | undefined;
|
|
3346
|
+
readonly maskingRule?: {
|
|
3347
|
+
field: string;
|
|
3348
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3349
|
+
preserveFormat: boolean;
|
|
3350
|
+
preserveLength: boolean;
|
|
3351
|
+
pattern?: string | undefined;
|
|
3352
|
+
roles?: string[] | undefined;
|
|
3353
|
+
exemptRoles?: string[] | undefined;
|
|
3354
|
+
} | undefined;
|
|
3355
|
+
readonly auditTrail?: boolean | undefined;
|
|
3356
|
+
readonly cached?: {
|
|
3357
|
+
enabled: boolean;
|
|
3358
|
+
ttl: number;
|
|
3359
|
+
invalidateOn: string[];
|
|
3360
|
+
} | undefined;
|
|
3361
|
+
readonly dataQuality?: {
|
|
3362
|
+
uniqueness: boolean;
|
|
3363
|
+
completeness: number;
|
|
3364
|
+
accuracy?: {
|
|
3365
|
+
source: string;
|
|
3366
|
+
threshold: number;
|
|
3367
|
+
} | undefined;
|
|
3368
|
+
} | undefined;
|
|
3369
|
+
readonly conditionalRequired?: string | undefined;
|
|
3370
|
+
readonly hidden?: boolean | undefined;
|
|
3371
|
+
readonly sortable?: boolean | undefined;
|
|
3372
|
+
readonly inlineHelpText?: string | undefined;
|
|
3373
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3374
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3375
|
+
readonly autonumberFormat?: string | undefined;
|
|
3376
|
+
readonly index?: boolean | undefined;
|
|
3377
|
+
readonly type: "datetime";
|
|
3378
|
+
};
|
|
3379
|
+
readonly updated_at: {
|
|
3380
|
+
readonly readonly?: boolean | undefined;
|
|
3381
|
+
readonly format?: string | undefined;
|
|
3382
|
+
readonly options?: {
|
|
3383
|
+
label: string;
|
|
3384
|
+
value: string;
|
|
3385
|
+
color?: string | undefined;
|
|
3386
|
+
default?: boolean | undefined;
|
|
3387
|
+
}[] | undefined;
|
|
3388
|
+
readonly description?: string | undefined;
|
|
3389
|
+
readonly label?: string | undefined;
|
|
3390
|
+
readonly name?: string | undefined;
|
|
3391
|
+
readonly precision?: number | undefined;
|
|
3392
|
+
readonly required?: boolean | undefined;
|
|
3393
|
+
readonly multiple?: boolean | undefined;
|
|
3394
|
+
readonly dependencies?: string[] | undefined;
|
|
3395
|
+
readonly theme?: string | undefined;
|
|
3396
|
+
readonly externalId?: boolean | undefined;
|
|
3397
|
+
readonly min?: number | undefined;
|
|
3398
|
+
readonly max?: number | undefined;
|
|
3399
|
+
readonly group?: string | undefined;
|
|
3400
|
+
readonly encryptionConfig?: {
|
|
3401
|
+
enabled: boolean;
|
|
3402
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3403
|
+
keyManagement: {
|
|
3404
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3405
|
+
keyId?: string | undefined;
|
|
3406
|
+
rotationPolicy?: {
|
|
3407
|
+
enabled: boolean;
|
|
3408
|
+
frequencyDays: number;
|
|
3409
|
+
retainOldVersions: number;
|
|
3410
|
+
autoRotate: boolean;
|
|
3411
|
+
} | undefined;
|
|
3412
|
+
};
|
|
3413
|
+
scope: "record" | "field" | "table" | "database";
|
|
3414
|
+
deterministicEncryption: boolean;
|
|
3415
|
+
searchableEncryption: boolean;
|
|
3416
|
+
} | undefined;
|
|
3417
|
+
readonly columnName?: string | undefined;
|
|
3418
|
+
readonly searchable?: boolean | undefined;
|
|
3419
|
+
readonly unique?: boolean | undefined;
|
|
3420
|
+
readonly defaultValue?: unknown;
|
|
3421
|
+
readonly maxLength?: number | undefined;
|
|
3422
|
+
readonly minLength?: number | undefined;
|
|
3423
|
+
readonly scale?: number | undefined;
|
|
3424
|
+
readonly reference?: string | undefined;
|
|
3425
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3426
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3427
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3428
|
+
readonly expression?: string | undefined;
|
|
3429
|
+
readonly summaryOperations?: {
|
|
3430
|
+
object: string;
|
|
3431
|
+
field: string;
|
|
3432
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3433
|
+
} | undefined;
|
|
3434
|
+
readonly language?: string | undefined;
|
|
3435
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3436
|
+
readonly maxRating?: number | undefined;
|
|
3437
|
+
readonly allowHalf?: boolean | undefined;
|
|
3438
|
+
readonly displayMap?: boolean | undefined;
|
|
3439
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3440
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3441
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3442
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3443
|
+
readonly presetColors?: string[] | undefined;
|
|
3444
|
+
readonly step?: number | undefined;
|
|
3445
|
+
readonly showValue?: boolean | undefined;
|
|
3446
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3447
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3448
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3449
|
+
readonly displayValue?: boolean | undefined;
|
|
3450
|
+
readonly allowScanning?: boolean | undefined;
|
|
3451
|
+
readonly currencyConfig?: {
|
|
3452
|
+
precision: number;
|
|
3453
|
+
currencyMode: "fixed" | "dynamic";
|
|
3454
|
+
defaultCurrency: string;
|
|
3455
|
+
} | undefined;
|
|
3456
|
+
readonly vectorConfig?: {
|
|
3457
|
+
dimensions: number;
|
|
3458
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3459
|
+
normalized: boolean;
|
|
3460
|
+
indexed: boolean;
|
|
3461
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3462
|
+
} | undefined;
|
|
3463
|
+
readonly fileAttachmentConfig?: {
|
|
3464
|
+
virusScan: boolean;
|
|
3465
|
+
virusScanOnUpload: boolean;
|
|
3466
|
+
quarantineOnThreat: boolean;
|
|
3467
|
+
allowMultiple: boolean;
|
|
3468
|
+
allowReplace: boolean;
|
|
3469
|
+
allowDelete: boolean;
|
|
3470
|
+
requireUpload: boolean;
|
|
3471
|
+
extractMetadata: boolean;
|
|
3472
|
+
extractText: boolean;
|
|
3473
|
+
versioningEnabled: boolean;
|
|
3474
|
+
publicRead: boolean;
|
|
3475
|
+
presignedUrlExpiry: number;
|
|
3476
|
+
minSize?: number | undefined;
|
|
3477
|
+
maxSize?: number | undefined;
|
|
3478
|
+
allowedTypes?: string[] | undefined;
|
|
3479
|
+
blockedTypes?: string[] | undefined;
|
|
3480
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3481
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3482
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3483
|
+
storageProvider?: string | undefined;
|
|
3484
|
+
storageBucket?: string | undefined;
|
|
3485
|
+
storagePrefix?: string | undefined;
|
|
3486
|
+
imageValidation?: {
|
|
3487
|
+
generateThumbnails: boolean;
|
|
3488
|
+
preserveMetadata: boolean;
|
|
3489
|
+
autoRotate: boolean;
|
|
3490
|
+
minWidth?: number | undefined;
|
|
3491
|
+
maxWidth?: number | undefined;
|
|
3492
|
+
minHeight?: number | undefined;
|
|
3493
|
+
maxHeight?: number | undefined;
|
|
3494
|
+
aspectRatio?: string | undefined;
|
|
3495
|
+
thumbnailSizes?: {
|
|
3496
|
+
name: string;
|
|
3497
|
+
width: number;
|
|
3498
|
+
height: number;
|
|
3499
|
+
crop: boolean;
|
|
3500
|
+
}[] | undefined;
|
|
3501
|
+
} | undefined;
|
|
3502
|
+
maxVersions?: number | undefined;
|
|
3503
|
+
} | undefined;
|
|
3504
|
+
readonly maskingRule?: {
|
|
3505
|
+
field: string;
|
|
3506
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3507
|
+
preserveFormat: boolean;
|
|
3508
|
+
preserveLength: boolean;
|
|
3509
|
+
pattern?: string | undefined;
|
|
3510
|
+
roles?: string[] | undefined;
|
|
3511
|
+
exemptRoles?: string[] | undefined;
|
|
3512
|
+
} | undefined;
|
|
3513
|
+
readonly auditTrail?: boolean | undefined;
|
|
3514
|
+
readonly cached?: {
|
|
3515
|
+
enabled: boolean;
|
|
3516
|
+
ttl: number;
|
|
3517
|
+
invalidateOn: string[];
|
|
3518
|
+
} | undefined;
|
|
3519
|
+
readonly dataQuality?: {
|
|
3520
|
+
uniqueness: boolean;
|
|
3521
|
+
completeness: number;
|
|
3522
|
+
accuracy?: {
|
|
3523
|
+
source: string;
|
|
3524
|
+
threshold: number;
|
|
3525
|
+
} | undefined;
|
|
3526
|
+
} | undefined;
|
|
3527
|
+
readonly conditionalRequired?: string | undefined;
|
|
3528
|
+
readonly hidden?: boolean | undefined;
|
|
3529
|
+
readonly sortable?: boolean | undefined;
|
|
3530
|
+
readonly inlineHelpText?: string | undefined;
|
|
3531
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3532
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3533
|
+
readonly autonumberFormat?: string | undefined;
|
|
3534
|
+
readonly index?: boolean | undefined;
|
|
3535
|
+
readonly type: "datetime";
|
|
3536
|
+
};
|
|
3537
|
+
};
|
|
3538
|
+
readonly indexes: [{
|
|
3539
|
+
readonly fields: ["name"];
|
|
3540
|
+
readonly unique: true;
|
|
3541
|
+
}, {
|
|
3542
|
+
readonly fields: ["active"];
|
|
3543
|
+
}];
|
|
3544
|
+
readonly enable: {
|
|
3545
|
+
readonly trackHistory: true;
|
|
3546
|
+
readonly searchable: true;
|
|
3547
|
+
readonly apiEnabled: true;
|
|
3548
|
+
readonly apiMethods: ["get", "list", "create", "update", "delete"];
|
|
3549
|
+
readonly trash: true;
|
|
3550
|
+
readonly mru: true;
|
|
3551
|
+
};
|
|
3552
|
+
}, "fields">;
|
|
3553
|
+
|
|
3554
|
+
export { SysPermissionSet, SysRole };
|