@objectstack/service-realtime 4.0.3 → 4.0.5
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/README.md +438 -0
- package/dist/index.cjs +6 -99
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -2132
- package/dist/index.d.ts +1 -2132
- package/dist/index.js +4 -96
- package/dist/index.js.map +1 -1
- package/package.json +32 -6
- package/.turbo/turbo-build.log +0 -22
- package/CHANGELOG.md +0 -160
- package/src/in-memory-realtime-adapter.test.ts +0 -242
- package/src/in-memory-realtime-adapter.ts +0 -154
- package/src/index.ts +0 -7
- package/src/objects/index.ts +0 -9
- package/src/objects/sys-presence.object.test.ts +0 -73
- package/src/objects/sys-presence.object.ts +0 -120
- package/src/realtime-service-plugin.ts +0 -67
- package/tsconfig.json +0 -17
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { Plugin, PluginContext } from '@objectstack/core';
|
|
2
2
|
import { IRealtimeService, RealtimeEventPayload, RealtimeEventHandler, RealtimeSubscriptionOptions } from '@objectstack/spec/contracts';
|
|
3
|
-
import { z } from 'zod';
|
|
4
|
-
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
5
3
|
|
|
6
4
|
/**
|
|
7
5
|
* Configuration options for InMemoryRealtimeAdapter.
|
|
@@ -100,2133 +98,4 @@ declare class RealtimeServicePlugin implements Plugin {
|
|
|
100
98
|
init(ctx: PluginContext): Promise<void>;
|
|
101
99
|
}
|
|
102
100
|
|
|
103
|
-
|
|
104
|
-
* XState-inspired State Machine Protocol
|
|
105
|
-
* Used to define strict business logic constraints and lifecycle management.
|
|
106
|
-
* Prevent AI "hallucinations" by enforcing valid valid transitions.
|
|
107
|
-
*/
|
|
108
|
-
/**
|
|
109
|
-
* References a named action (side effect)
|
|
110
|
-
* Can be a script, a webhook, or a field update.
|
|
111
|
-
*/
|
|
112
|
-
declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
113
|
-
type: z.ZodString;
|
|
114
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
115
|
-
}, z.core.$strip>]>;
|
|
116
|
-
/**
|
|
117
|
-
* State Transition Definition
|
|
118
|
-
* "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
|
|
119
|
-
*/
|
|
120
|
-
declare const TransitionSchema: z.ZodObject<{
|
|
121
|
-
target: z.ZodOptional<z.ZodString>;
|
|
122
|
-
cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
123
|
-
type: z.ZodString;
|
|
124
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
125
|
-
}, z.core.$strip>]>>;
|
|
126
|
-
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
127
|
-
type: z.ZodString;
|
|
128
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
129
|
-
}, z.core.$strip>]>>>;
|
|
130
|
-
description: z.ZodOptional<z.ZodString>;
|
|
131
|
-
}, z.core.$strip>;
|
|
132
|
-
type ActionRef = z.infer<typeof ActionRefSchema>;
|
|
133
|
-
type Transition = z.infer<typeof TransitionSchema>;
|
|
134
|
-
type StateNodeConfig = {
|
|
135
|
-
type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
|
|
136
|
-
entry?: ActionRef[];
|
|
137
|
-
exit?: ActionRef[];
|
|
138
|
-
on?: Record<string, string | Transition | Transition[]>;
|
|
139
|
-
always?: Transition[];
|
|
140
|
-
initial?: string;
|
|
141
|
-
states?: Record<string, StateNodeConfig>;
|
|
142
|
-
meta?: {
|
|
143
|
-
label?: string;
|
|
144
|
-
description?: string;
|
|
145
|
-
color?: string;
|
|
146
|
-
aiInstructions?: string;
|
|
147
|
-
};
|
|
148
|
-
};
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* sys_presence — System Presence Object
|
|
152
|
-
*
|
|
153
|
-
* Tracks real-time user presence and activity across the platform.
|
|
154
|
-
* Fields align with the PresenceStateSchema protocol definition
|
|
155
|
-
* from `@objectstack/spec/api` (websocket.zod.ts).
|
|
156
|
-
*
|
|
157
|
-
* Owned by `service-realtime` as the canonical Presence domain object.
|
|
158
|
-
*
|
|
159
|
-
* @namespace sys
|
|
160
|
-
* @see PresenceStateSchema in packages/spec/src/api/websocket.zod.ts
|
|
161
|
-
*/
|
|
162
|
-
declare const SysPresence: Omit<{
|
|
163
|
-
name: string;
|
|
164
|
-
active: boolean;
|
|
165
|
-
isSystem: boolean;
|
|
166
|
-
abstract: boolean;
|
|
167
|
-
datasource: string;
|
|
168
|
-
fields: Record<string, {
|
|
169
|
-
type: "number" | "boolean" | "tags" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "vector";
|
|
170
|
-
required: boolean;
|
|
171
|
-
searchable: boolean;
|
|
172
|
-
multiple: boolean;
|
|
173
|
-
unique: boolean;
|
|
174
|
-
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
175
|
-
auditTrail: boolean;
|
|
176
|
-
hidden: boolean;
|
|
177
|
-
readonly: boolean;
|
|
178
|
-
sortable: boolean;
|
|
179
|
-
index: boolean;
|
|
180
|
-
externalId: boolean;
|
|
181
|
-
name?: string | undefined;
|
|
182
|
-
label?: string | undefined;
|
|
183
|
-
description?: string | undefined;
|
|
184
|
-
format?: string | undefined;
|
|
185
|
-
columnName?: string | undefined;
|
|
186
|
-
defaultValue?: unknown;
|
|
187
|
-
maxLength?: number | undefined;
|
|
188
|
-
minLength?: number | undefined;
|
|
189
|
-
precision?: number | undefined;
|
|
190
|
-
scale?: number | undefined;
|
|
191
|
-
min?: number | undefined;
|
|
192
|
-
max?: number | undefined;
|
|
193
|
-
options?: {
|
|
194
|
-
label: string;
|
|
195
|
-
value: string;
|
|
196
|
-
color?: string | undefined;
|
|
197
|
-
default?: boolean | undefined;
|
|
198
|
-
}[] | undefined;
|
|
199
|
-
reference?: string | undefined;
|
|
200
|
-
referenceFilters?: string[] | undefined;
|
|
201
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
202
|
-
expression?: string | undefined;
|
|
203
|
-
summaryOperations?: {
|
|
204
|
-
object: string;
|
|
205
|
-
field: string;
|
|
206
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
207
|
-
} | undefined;
|
|
208
|
-
language?: string | undefined;
|
|
209
|
-
theme?: string | undefined;
|
|
210
|
-
lineNumbers?: boolean | undefined;
|
|
211
|
-
maxRating?: number | undefined;
|
|
212
|
-
allowHalf?: boolean | undefined;
|
|
213
|
-
displayMap?: boolean | undefined;
|
|
214
|
-
allowGeocoding?: boolean | undefined;
|
|
215
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
216
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
217
|
-
allowAlpha?: boolean | undefined;
|
|
218
|
-
presetColors?: string[] | undefined;
|
|
219
|
-
step?: number | undefined;
|
|
220
|
-
showValue?: boolean | undefined;
|
|
221
|
-
marks?: Record<string, string> | undefined;
|
|
222
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
223
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
224
|
-
displayValue?: boolean | undefined;
|
|
225
|
-
allowScanning?: boolean | undefined;
|
|
226
|
-
currencyConfig?: {
|
|
227
|
-
precision: number;
|
|
228
|
-
currencyMode: "dynamic" | "fixed";
|
|
229
|
-
defaultCurrency: string;
|
|
230
|
-
} | undefined;
|
|
231
|
-
vectorConfig?: {
|
|
232
|
-
dimensions: number;
|
|
233
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
234
|
-
normalized: boolean;
|
|
235
|
-
indexed: boolean;
|
|
236
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
237
|
-
} | undefined;
|
|
238
|
-
fileAttachmentConfig?: {
|
|
239
|
-
virusScan: boolean;
|
|
240
|
-
virusScanOnUpload: boolean;
|
|
241
|
-
quarantineOnThreat: boolean;
|
|
242
|
-
allowMultiple: boolean;
|
|
243
|
-
allowReplace: boolean;
|
|
244
|
-
allowDelete: boolean;
|
|
245
|
-
requireUpload: boolean;
|
|
246
|
-
extractMetadata: boolean;
|
|
247
|
-
extractText: boolean;
|
|
248
|
-
versioningEnabled: boolean;
|
|
249
|
-
publicRead: boolean;
|
|
250
|
-
presignedUrlExpiry: number;
|
|
251
|
-
minSize?: number | undefined;
|
|
252
|
-
maxSize?: number | undefined;
|
|
253
|
-
allowedTypes?: string[] | undefined;
|
|
254
|
-
blockedTypes?: string[] | undefined;
|
|
255
|
-
allowedMimeTypes?: string[] | undefined;
|
|
256
|
-
blockedMimeTypes?: string[] | undefined;
|
|
257
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
258
|
-
storageProvider?: string | undefined;
|
|
259
|
-
storageBucket?: string | undefined;
|
|
260
|
-
storagePrefix?: string | undefined;
|
|
261
|
-
imageValidation?: {
|
|
262
|
-
generateThumbnails: boolean;
|
|
263
|
-
preserveMetadata: boolean;
|
|
264
|
-
autoRotate: boolean;
|
|
265
|
-
minWidth?: number | undefined;
|
|
266
|
-
maxWidth?: number | undefined;
|
|
267
|
-
minHeight?: number | undefined;
|
|
268
|
-
maxHeight?: number | undefined;
|
|
269
|
-
aspectRatio?: string | undefined;
|
|
270
|
-
thumbnailSizes?: {
|
|
271
|
-
name: string;
|
|
272
|
-
width: number;
|
|
273
|
-
height: number;
|
|
274
|
-
crop: boolean;
|
|
275
|
-
}[] | undefined;
|
|
276
|
-
} | undefined;
|
|
277
|
-
maxVersions?: number | undefined;
|
|
278
|
-
} | undefined;
|
|
279
|
-
encryptionConfig?: {
|
|
280
|
-
enabled: boolean;
|
|
281
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
282
|
-
keyManagement: {
|
|
283
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
284
|
-
keyId?: string | undefined;
|
|
285
|
-
rotationPolicy?: {
|
|
286
|
-
enabled: boolean;
|
|
287
|
-
frequencyDays: number;
|
|
288
|
-
retainOldVersions: number;
|
|
289
|
-
autoRotate: boolean;
|
|
290
|
-
} | undefined;
|
|
291
|
-
};
|
|
292
|
-
scope: "field" | "table" | "record" | "database";
|
|
293
|
-
deterministicEncryption: boolean;
|
|
294
|
-
searchableEncryption: boolean;
|
|
295
|
-
} | undefined;
|
|
296
|
-
maskingRule?: {
|
|
297
|
-
field: string;
|
|
298
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
299
|
-
preserveFormat: boolean;
|
|
300
|
-
preserveLength: boolean;
|
|
301
|
-
pattern?: string | undefined;
|
|
302
|
-
roles?: string[] | undefined;
|
|
303
|
-
exemptRoles?: string[] | undefined;
|
|
304
|
-
} | undefined;
|
|
305
|
-
dependencies?: string[] | undefined;
|
|
306
|
-
cached?: {
|
|
307
|
-
enabled: boolean;
|
|
308
|
-
ttl: number;
|
|
309
|
-
invalidateOn: string[];
|
|
310
|
-
} | undefined;
|
|
311
|
-
dataQuality?: {
|
|
312
|
-
uniqueness: boolean;
|
|
313
|
-
completeness: number;
|
|
314
|
-
accuracy?: {
|
|
315
|
-
source: string;
|
|
316
|
-
threshold: number;
|
|
317
|
-
} | undefined;
|
|
318
|
-
} | undefined;
|
|
319
|
-
group?: string | undefined;
|
|
320
|
-
conditionalRequired?: string | undefined;
|
|
321
|
-
inlineHelpText?: string | undefined;
|
|
322
|
-
trackFeedHistory?: boolean | undefined;
|
|
323
|
-
caseSensitive?: boolean | undefined;
|
|
324
|
-
autonumberFormat?: string | undefined;
|
|
325
|
-
}>;
|
|
326
|
-
label?: string | undefined;
|
|
327
|
-
pluralLabel?: string | undefined;
|
|
328
|
-
description?: string | undefined;
|
|
329
|
-
icon?: string | undefined;
|
|
330
|
-
namespace?: string | undefined;
|
|
331
|
-
tags?: string[] | undefined;
|
|
332
|
-
tableName?: string | undefined;
|
|
333
|
-
indexes?: {
|
|
334
|
-
fields: string[];
|
|
335
|
-
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
336
|
-
unique: boolean;
|
|
337
|
-
name?: string | undefined;
|
|
338
|
-
partial?: string | undefined;
|
|
339
|
-
}[] | undefined;
|
|
340
|
-
tenancy?: {
|
|
341
|
-
enabled: boolean;
|
|
342
|
-
strategy: "shared" | "isolated" | "hybrid";
|
|
343
|
-
tenantField: string;
|
|
344
|
-
crossTenantAccess: boolean;
|
|
345
|
-
} | undefined;
|
|
346
|
-
softDelete?: {
|
|
347
|
-
enabled: boolean;
|
|
348
|
-
field: string;
|
|
349
|
-
cascadeDelete: boolean;
|
|
350
|
-
} | undefined;
|
|
351
|
-
versioning?: {
|
|
352
|
-
enabled: boolean;
|
|
353
|
-
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
354
|
-
versionField: string;
|
|
355
|
-
retentionDays?: number | undefined;
|
|
356
|
-
} | undefined;
|
|
357
|
-
partitioning?: {
|
|
358
|
-
enabled: boolean;
|
|
359
|
-
strategy: "hash" | "range" | "list";
|
|
360
|
-
key: string;
|
|
361
|
-
interval?: string | undefined;
|
|
362
|
-
} | undefined;
|
|
363
|
-
cdc?: {
|
|
364
|
-
enabled: boolean;
|
|
365
|
-
events: ("update" | "delete" | "insert")[];
|
|
366
|
-
destination: string;
|
|
367
|
-
} | undefined;
|
|
368
|
-
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
369
|
-
stateMachines?: Record<string, {
|
|
370
|
-
id: string;
|
|
371
|
-
initial: string;
|
|
372
|
-
states: Record<string, StateNodeConfig>;
|
|
373
|
-
description?: string | undefined;
|
|
374
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
375
|
-
on?: Record<string, string | {
|
|
376
|
-
target?: string | undefined;
|
|
377
|
-
cond?: string | {
|
|
378
|
-
type: string;
|
|
379
|
-
params?: Record<string, unknown> | undefined;
|
|
380
|
-
} | undefined;
|
|
381
|
-
actions?: (string | {
|
|
382
|
-
type: string;
|
|
383
|
-
params?: Record<string, unknown> | undefined;
|
|
384
|
-
})[] | undefined;
|
|
385
|
-
description?: string | undefined;
|
|
386
|
-
} | {
|
|
387
|
-
target?: string | undefined;
|
|
388
|
-
cond?: string | {
|
|
389
|
-
type: string;
|
|
390
|
-
params?: Record<string, unknown> | undefined;
|
|
391
|
-
} | undefined;
|
|
392
|
-
actions?: (string | {
|
|
393
|
-
type: string;
|
|
394
|
-
params?: Record<string, unknown> | undefined;
|
|
395
|
-
})[] | undefined;
|
|
396
|
-
description?: string | undefined;
|
|
397
|
-
}[]> | undefined;
|
|
398
|
-
}> | undefined;
|
|
399
|
-
displayNameField?: string | undefined;
|
|
400
|
-
recordName?: {
|
|
401
|
-
type: "text" | "autonumber";
|
|
402
|
-
displayFormat?: string | undefined;
|
|
403
|
-
startNumber?: number | undefined;
|
|
404
|
-
} | undefined;
|
|
405
|
-
titleFormat?: string | undefined;
|
|
406
|
-
compactLayout?: string[] | undefined;
|
|
407
|
-
search?: {
|
|
408
|
-
fields: string[];
|
|
409
|
-
displayFields?: string[] | undefined;
|
|
410
|
-
filters?: string[] | undefined;
|
|
411
|
-
} | undefined;
|
|
412
|
-
enable?: {
|
|
413
|
-
trackHistory: boolean;
|
|
414
|
-
searchable: boolean;
|
|
415
|
-
apiEnabled: boolean;
|
|
416
|
-
files: boolean;
|
|
417
|
-
feeds: boolean;
|
|
418
|
-
activities: boolean;
|
|
419
|
-
trash: boolean;
|
|
420
|
-
mru: boolean;
|
|
421
|
-
clone: boolean;
|
|
422
|
-
apiMethods?: ("search" | "list" | "update" | "delete" | "upsert" | "history" | "get" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
|
|
423
|
-
} | undefined;
|
|
424
|
-
recordTypes?: string[] | undefined;
|
|
425
|
-
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
426
|
-
keyPrefix?: string | undefined;
|
|
427
|
-
actions?: {
|
|
428
|
-
name: string;
|
|
429
|
-
label: string;
|
|
430
|
-
type: "url" | "flow" | "api" | "script" | "modal";
|
|
431
|
-
refreshAfter: boolean;
|
|
432
|
-
objectName?: string | undefined;
|
|
433
|
-
icon?: string | undefined;
|
|
434
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
435
|
-
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
436
|
-
target?: string | undefined;
|
|
437
|
-
execute?: string | undefined;
|
|
438
|
-
params?: {
|
|
439
|
-
name: string;
|
|
440
|
-
label: string;
|
|
441
|
-
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
442
|
-
required: boolean;
|
|
443
|
-
options?: {
|
|
444
|
-
label: string;
|
|
445
|
-
value: string;
|
|
446
|
-
}[] | undefined;
|
|
447
|
-
}[] | undefined;
|
|
448
|
-
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
449
|
-
confirmText?: string | undefined;
|
|
450
|
-
successMessage?: string | undefined;
|
|
451
|
-
visible?: string | undefined;
|
|
452
|
-
disabled?: string | boolean | undefined;
|
|
453
|
-
shortcut?: string | undefined;
|
|
454
|
-
bulkEnabled?: boolean | undefined;
|
|
455
|
-
timeout?: number | undefined;
|
|
456
|
-
aria?: {
|
|
457
|
-
ariaLabel?: string | undefined;
|
|
458
|
-
ariaDescribedBy?: string | undefined;
|
|
459
|
-
role?: string | undefined;
|
|
460
|
-
} | undefined;
|
|
461
|
-
}[] | undefined;
|
|
462
|
-
}, "fields"> & Pick<{
|
|
463
|
-
readonly namespace: "sys";
|
|
464
|
-
readonly name: "presence";
|
|
465
|
-
readonly label: "Presence";
|
|
466
|
-
readonly pluralLabel: "Presences";
|
|
467
|
-
readonly icon: "wifi";
|
|
468
|
-
readonly isSystem: true;
|
|
469
|
-
readonly description: "Real-time user presence and activity tracking";
|
|
470
|
-
readonly titleFormat: "{user_id} ({status})";
|
|
471
|
-
readonly compactLayout: ["user_id", "status", "last_seen"];
|
|
472
|
-
readonly fields: {
|
|
473
|
-
readonly id: {
|
|
474
|
-
readonly format?: string | undefined;
|
|
475
|
-
readonly expression?: string | undefined;
|
|
476
|
-
readonly readonly?: boolean | undefined;
|
|
477
|
-
readonly defaultValue?: unknown;
|
|
478
|
-
readonly min?: number | undefined;
|
|
479
|
-
readonly max?: number | undefined;
|
|
480
|
-
readonly name?: string | undefined;
|
|
481
|
-
readonly encryptionConfig?: {
|
|
482
|
-
enabled: boolean;
|
|
483
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
484
|
-
keyManagement: {
|
|
485
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
486
|
-
keyId?: string | undefined;
|
|
487
|
-
rotationPolicy?: {
|
|
488
|
-
enabled: boolean;
|
|
489
|
-
frequencyDays: number;
|
|
490
|
-
retainOldVersions: number;
|
|
491
|
-
autoRotate: boolean;
|
|
492
|
-
} | undefined;
|
|
493
|
-
};
|
|
494
|
-
scope: "table" | "record" | "field" | "database";
|
|
495
|
-
deterministicEncryption: boolean;
|
|
496
|
-
searchableEncryption: boolean;
|
|
497
|
-
} | undefined;
|
|
498
|
-
readonly label?: string | undefined;
|
|
499
|
-
readonly precision?: number | undefined;
|
|
500
|
-
readonly description?: string | undefined;
|
|
501
|
-
readonly columnName?: string | undefined;
|
|
502
|
-
readonly required?: boolean | undefined;
|
|
503
|
-
readonly searchable?: boolean | undefined;
|
|
504
|
-
readonly multiple?: boolean | undefined;
|
|
505
|
-
readonly unique?: boolean | undefined;
|
|
506
|
-
readonly maxLength?: number | undefined;
|
|
507
|
-
readonly minLength?: number | undefined;
|
|
508
|
-
readonly scale?: number | undefined;
|
|
509
|
-
readonly options?: {
|
|
510
|
-
label: string;
|
|
511
|
-
value: string;
|
|
512
|
-
color?: string | undefined;
|
|
513
|
-
default?: boolean | undefined;
|
|
514
|
-
}[] | undefined;
|
|
515
|
-
readonly reference?: string | undefined;
|
|
516
|
-
readonly referenceFilters?: string[] | undefined;
|
|
517
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
518
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
519
|
-
readonly summaryOperations?: {
|
|
520
|
-
object: string;
|
|
521
|
-
field: string;
|
|
522
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
523
|
-
} | undefined;
|
|
524
|
-
readonly language?: string | undefined;
|
|
525
|
-
readonly theme?: string | undefined;
|
|
526
|
-
readonly lineNumbers?: boolean | undefined;
|
|
527
|
-
readonly maxRating?: number | undefined;
|
|
528
|
-
readonly allowHalf?: boolean | undefined;
|
|
529
|
-
readonly displayMap?: boolean | undefined;
|
|
530
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
531
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
532
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
533
|
-
readonly allowAlpha?: boolean | undefined;
|
|
534
|
-
readonly presetColors?: string[] | undefined;
|
|
535
|
-
readonly step?: number | undefined;
|
|
536
|
-
readonly showValue?: boolean | undefined;
|
|
537
|
-
readonly marks?: Record<string, string> | undefined;
|
|
538
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
539
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
540
|
-
readonly displayValue?: boolean | undefined;
|
|
541
|
-
readonly allowScanning?: boolean | undefined;
|
|
542
|
-
readonly currencyConfig?: {
|
|
543
|
-
precision: number;
|
|
544
|
-
currencyMode: "dynamic" | "fixed";
|
|
545
|
-
defaultCurrency: string;
|
|
546
|
-
} | undefined;
|
|
547
|
-
readonly vectorConfig?: {
|
|
548
|
-
dimensions: number;
|
|
549
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
550
|
-
normalized: boolean;
|
|
551
|
-
indexed: boolean;
|
|
552
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
553
|
-
} | undefined;
|
|
554
|
-
readonly fileAttachmentConfig?: {
|
|
555
|
-
virusScan: boolean;
|
|
556
|
-
virusScanOnUpload: boolean;
|
|
557
|
-
quarantineOnThreat: boolean;
|
|
558
|
-
allowMultiple: boolean;
|
|
559
|
-
allowReplace: boolean;
|
|
560
|
-
allowDelete: boolean;
|
|
561
|
-
requireUpload: boolean;
|
|
562
|
-
extractMetadata: boolean;
|
|
563
|
-
extractText: boolean;
|
|
564
|
-
versioningEnabled: boolean;
|
|
565
|
-
publicRead: boolean;
|
|
566
|
-
presignedUrlExpiry: number;
|
|
567
|
-
minSize?: number | undefined;
|
|
568
|
-
maxSize?: number | undefined;
|
|
569
|
-
allowedTypes?: string[] | undefined;
|
|
570
|
-
blockedTypes?: string[] | undefined;
|
|
571
|
-
allowedMimeTypes?: string[] | undefined;
|
|
572
|
-
blockedMimeTypes?: string[] | undefined;
|
|
573
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
574
|
-
storageProvider?: string | undefined;
|
|
575
|
-
storageBucket?: string | undefined;
|
|
576
|
-
storagePrefix?: string | undefined;
|
|
577
|
-
imageValidation?: {
|
|
578
|
-
generateThumbnails: boolean;
|
|
579
|
-
preserveMetadata: boolean;
|
|
580
|
-
autoRotate: boolean;
|
|
581
|
-
minWidth?: number | undefined;
|
|
582
|
-
maxWidth?: number | undefined;
|
|
583
|
-
minHeight?: number | undefined;
|
|
584
|
-
maxHeight?: number | undefined;
|
|
585
|
-
aspectRatio?: string | undefined;
|
|
586
|
-
thumbnailSizes?: {
|
|
587
|
-
name: string;
|
|
588
|
-
width: number;
|
|
589
|
-
height: number;
|
|
590
|
-
crop: boolean;
|
|
591
|
-
}[] | undefined;
|
|
592
|
-
} | undefined;
|
|
593
|
-
maxVersions?: number | undefined;
|
|
594
|
-
} | undefined;
|
|
595
|
-
readonly maskingRule?: {
|
|
596
|
-
field: string;
|
|
597
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
598
|
-
preserveFormat: boolean;
|
|
599
|
-
preserveLength: boolean;
|
|
600
|
-
pattern?: string | undefined;
|
|
601
|
-
roles?: string[] | undefined;
|
|
602
|
-
exemptRoles?: string[] | undefined;
|
|
603
|
-
} | undefined;
|
|
604
|
-
readonly auditTrail?: boolean | undefined;
|
|
605
|
-
readonly dependencies?: string[] | undefined;
|
|
606
|
-
readonly cached?: {
|
|
607
|
-
enabled: boolean;
|
|
608
|
-
ttl: number;
|
|
609
|
-
invalidateOn: string[];
|
|
610
|
-
} | undefined;
|
|
611
|
-
readonly dataQuality?: {
|
|
612
|
-
uniqueness: boolean;
|
|
613
|
-
completeness: number;
|
|
614
|
-
accuracy?: {
|
|
615
|
-
source: string;
|
|
616
|
-
threshold: number;
|
|
617
|
-
} | undefined;
|
|
618
|
-
} | undefined;
|
|
619
|
-
readonly group?: string | undefined;
|
|
620
|
-
readonly conditionalRequired?: string | undefined;
|
|
621
|
-
readonly hidden?: boolean | undefined;
|
|
622
|
-
readonly sortable?: boolean | undefined;
|
|
623
|
-
readonly inlineHelpText?: string | undefined;
|
|
624
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
625
|
-
readonly caseSensitive?: boolean | undefined;
|
|
626
|
-
readonly autonumberFormat?: string | undefined;
|
|
627
|
-
readonly index?: boolean | undefined;
|
|
628
|
-
readonly externalId?: boolean | undefined;
|
|
629
|
-
readonly type: "text";
|
|
630
|
-
};
|
|
631
|
-
readonly created_at: {
|
|
632
|
-
readonly format?: string | undefined;
|
|
633
|
-
readonly expression?: string | undefined;
|
|
634
|
-
readonly readonly?: boolean | undefined;
|
|
635
|
-
readonly defaultValue?: unknown;
|
|
636
|
-
readonly min?: number | undefined;
|
|
637
|
-
readonly max?: number | undefined;
|
|
638
|
-
readonly name?: string | undefined;
|
|
639
|
-
readonly encryptionConfig?: {
|
|
640
|
-
enabled: boolean;
|
|
641
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
642
|
-
keyManagement: {
|
|
643
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
644
|
-
keyId?: string | undefined;
|
|
645
|
-
rotationPolicy?: {
|
|
646
|
-
enabled: boolean;
|
|
647
|
-
frequencyDays: number;
|
|
648
|
-
retainOldVersions: number;
|
|
649
|
-
autoRotate: boolean;
|
|
650
|
-
} | undefined;
|
|
651
|
-
};
|
|
652
|
-
scope: "table" | "record" | "field" | "database";
|
|
653
|
-
deterministicEncryption: boolean;
|
|
654
|
-
searchableEncryption: boolean;
|
|
655
|
-
} | undefined;
|
|
656
|
-
readonly label?: string | undefined;
|
|
657
|
-
readonly precision?: number | undefined;
|
|
658
|
-
readonly description?: string | undefined;
|
|
659
|
-
readonly columnName?: string | undefined;
|
|
660
|
-
readonly required?: boolean | undefined;
|
|
661
|
-
readonly searchable?: boolean | undefined;
|
|
662
|
-
readonly multiple?: boolean | undefined;
|
|
663
|
-
readonly unique?: boolean | undefined;
|
|
664
|
-
readonly maxLength?: number | undefined;
|
|
665
|
-
readonly minLength?: number | undefined;
|
|
666
|
-
readonly scale?: number | undefined;
|
|
667
|
-
readonly options?: {
|
|
668
|
-
label: string;
|
|
669
|
-
value: string;
|
|
670
|
-
color?: string | undefined;
|
|
671
|
-
default?: boolean | undefined;
|
|
672
|
-
}[] | undefined;
|
|
673
|
-
readonly reference?: string | undefined;
|
|
674
|
-
readonly referenceFilters?: string[] | undefined;
|
|
675
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
676
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
677
|
-
readonly summaryOperations?: {
|
|
678
|
-
object: string;
|
|
679
|
-
field: string;
|
|
680
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
681
|
-
} | undefined;
|
|
682
|
-
readonly language?: string | undefined;
|
|
683
|
-
readonly theme?: string | undefined;
|
|
684
|
-
readonly lineNumbers?: boolean | undefined;
|
|
685
|
-
readonly maxRating?: number | undefined;
|
|
686
|
-
readonly allowHalf?: boolean | undefined;
|
|
687
|
-
readonly displayMap?: boolean | undefined;
|
|
688
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
689
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
690
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
691
|
-
readonly allowAlpha?: boolean | undefined;
|
|
692
|
-
readonly presetColors?: string[] | undefined;
|
|
693
|
-
readonly step?: number | undefined;
|
|
694
|
-
readonly showValue?: boolean | undefined;
|
|
695
|
-
readonly marks?: Record<string, string> | undefined;
|
|
696
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
697
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
698
|
-
readonly displayValue?: boolean | undefined;
|
|
699
|
-
readonly allowScanning?: boolean | undefined;
|
|
700
|
-
readonly currencyConfig?: {
|
|
701
|
-
precision: number;
|
|
702
|
-
currencyMode: "dynamic" | "fixed";
|
|
703
|
-
defaultCurrency: string;
|
|
704
|
-
} | undefined;
|
|
705
|
-
readonly vectorConfig?: {
|
|
706
|
-
dimensions: number;
|
|
707
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
708
|
-
normalized: boolean;
|
|
709
|
-
indexed: boolean;
|
|
710
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
711
|
-
} | undefined;
|
|
712
|
-
readonly fileAttachmentConfig?: {
|
|
713
|
-
virusScan: boolean;
|
|
714
|
-
virusScanOnUpload: boolean;
|
|
715
|
-
quarantineOnThreat: boolean;
|
|
716
|
-
allowMultiple: boolean;
|
|
717
|
-
allowReplace: boolean;
|
|
718
|
-
allowDelete: boolean;
|
|
719
|
-
requireUpload: boolean;
|
|
720
|
-
extractMetadata: boolean;
|
|
721
|
-
extractText: boolean;
|
|
722
|
-
versioningEnabled: boolean;
|
|
723
|
-
publicRead: boolean;
|
|
724
|
-
presignedUrlExpiry: number;
|
|
725
|
-
minSize?: number | undefined;
|
|
726
|
-
maxSize?: number | undefined;
|
|
727
|
-
allowedTypes?: string[] | undefined;
|
|
728
|
-
blockedTypes?: string[] | undefined;
|
|
729
|
-
allowedMimeTypes?: string[] | undefined;
|
|
730
|
-
blockedMimeTypes?: string[] | undefined;
|
|
731
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
732
|
-
storageProvider?: string | undefined;
|
|
733
|
-
storageBucket?: string | undefined;
|
|
734
|
-
storagePrefix?: string | undefined;
|
|
735
|
-
imageValidation?: {
|
|
736
|
-
generateThumbnails: boolean;
|
|
737
|
-
preserveMetadata: boolean;
|
|
738
|
-
autoRotate: boolean;
|
|
739
|
-
minWidth?: number | undefined;
|
|
740
|
-
maxWidth?: number | undefined;
|
|
741
|
-
minHeight?: number | undefined;
|
|
742
|
-
maxHeight?: number | undefined;
|
|
743
|
-
aspectRatio?: string | undefined;
|
|
744
|
-
thumbnailSizes?: {
|
|
745
|
-
name: string;
|
|
746
|
-
width: number;
|
|
747
|
-
height: number;
|
|
748
|
-
crop: boolean;
|
|
749
|
-
}[] | undefined;
|
|
750
|
-
} | undefined;
|
|
751
|
-
maxVersions?: number | undefined;
|
|
752
|
-
} | undefined;
|
|
753
|
-
readonly maskingRule?: {
|
|
754
|
-
field: string;
|
|
755
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
756
|
-
preserveFormat: boolean;
|
|
757
|
-
preserveLength: boolean;
|
|
758
|
-
pattern?: string | undefined;
|
|
759
|
-
roles?: string[] | undefined;
|
|
760
|
-
exemptRoles?: string[] | undefined;
|
|
761
|
-
} | undefined;
|
|
762
|
-
readonly auditTrail?: boolean | undefined;
|
|
763
|
-
readonly dependencies?: string[] | undefined;
|
|
764
|
-
readonly cached?: {
|
|
765
|
-
enabled: boolean;
|
|
766
|
-
ttl: number;
|
|
767
|
-
invalidateOn: string[];
|
|
768
|
-
} | undefined;
|
|
769
|
-
readonly dataQuality?: {
|
|
770
|
-
uniqueness: boolean;
|
|
771
|
-
completeness: number;
|
|
772
|
-
accuracy?: {
|
|
773
|
-
source: string;
|
|
774
|
-
threshold: number;
|
|
775
|
-
} | undefined;
|
|
776
|
-
} | undefined;
|
|
777
|
-
readonly group?: string | undefined;
|
|
778
|
-
readonly conditionalRequired?: string | undefined;
|
|
779
|
-
readonly hidden?: boolean | undefined;
|
|
780
|
-
readonly sortable?: boolean | undefined;
|
|
781
|
-
readonly inlineHelpText?: string | undefined;
|
|
782
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
783
|
-
readonly caseSensitive?: boolean | undefined;
|
|
784
|
-
readonly autonumberFormat?: string | undefined;
|
|
785
|
-
readonly index?: boolean | undefined;
|
|
786
|
-
readonly externalId?: boolean | undefined;
|
|
787
|
-
readonly type: "datetime";
|
|
788
|
-
};
|
|
789
|
-
readonly updated_at: {
|
|
790
|
-
readonly format?: string | undefined;
|
|
791
|
-
readonly expression?: string | undefined;
|
|
792
|
-
readonly readonly?: boolean | undefined;
|
|
793
|
-
readonly defaultValue?: unknown;
|
|
794
|
-
readonly min?: number | undefined;
|
|
795
|
-
readonly max?: number | undefined;
|
|
796
|
-
readonly name?: string | undefined;
|
|
797
|
-
readonly encryptionConfig?: {
|
|
798
|
-
enabled: boolean;
|
|
799
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
800
|
-
keyManagement: {
|
|
801
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
802
|
-
keyId?: string | undefined;
|
|
803
|
-
rotationPolicy?: {
|
|
804
|
-
enabled: boolean;
|
|
805
|
-
frequencyDays: number;
|
|
806
|
-
retainOldVersions: number;
|
|
807
|
-
autoRotate: boolean;
|
|
808
|
-
} | undefined;
|
|
809
|
-
};
|
|
810
|
-
scope: "table" | "record" | "field" | "database";
|
|
811
|
-
deterministicEncryption: boolean;
|
|
812
|
-
searchableEncryption: boolean;
|
|
813
|
-
} | undefined;
|
|
814
|
-
readonly label?: string | undefined;
|
|
815
|
-
readonly precision?: number | undefined;
|
|
816
|
-
readonly description?: string | undefined;
|
|
817
|
-
readonly columnName?: string | undefined;
|
|
818
|
-
readonly required?: boolean | undefined;
|
|
819
|
-
readonly searchable?: boolean | undefined;
|
|
820
|
-
readonly multiple?: boolean | undefined;
|
|
821
|
-
readonly unique?: boolean | undefined;
|
|
822
|
-
readonly maxLength?: number | undefined;
|
|
823
|
-
readonly minLength?: number | undefined;
|
|
824
|
-
readonly scale?: number | undefined;
|
|
825
|
-
readonly options?: {
|
|
826
|
-
label: string;
|
|
827
|
-
value: string;
|
|
828
|
-
color?: string | undefined;
|
|
829
|
-
default?: boolean | undefined;
|
|
830
|
-
}[] | undefined;
|
|
831
|
-
readonly reference?: string | undefined;
|
|
832
|
-
readonly referenceFilters?: string[] | undefined;
|
|
833
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
834
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
835
|
-
readonly summaryOperations?: {
|
|
836
|
-
object: string;
|
|
837
|
-
field: string;
|
|
838
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
839
|
-
} | undefined;
|
|
840
|
-
readonly language?: string | undefined;
|
|
841
|
-
readonly theme?: string | undefined;
|
|
842
|
-
readonly lineNumbers?: boolean | undefined;
|
|
843
|
-
readonly maxRating?: number | undefined;
|
|
844
|
-
readonly allowHalf?: boolean | undefined;
|
|
845
|
-
readonly displayMap?: boolean | undefined;
|
|
846
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
847
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
848
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
849
|
-
readonly allowAlpha?: boolean | undefined;
|
|
850
|
-
readonly presetColors?: string[] | undefined;
|
|
851
|
-
readonly step?: number | undefined;
|
|
852
|
-
readonly showValue?: boolean | undefined;
|
|
853
|
-
readonly marks?: Record<string, string> | undefined;
|
|
854
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
855
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
856
|
-
readonly displayValue?: boolean | undefined;
|
|
857
|
-
readonly allowScanning?: boolean | undefined;
|
|
858
|
-
readonly currencyConfig?: {
|
|
859
|
-
precision: number;
|
|
860
|
-
currencyMode: "dynamic" | "fixed";
|
|
861
|
-
defaultCurrency: string;
|
|
862
|
-
} | undefined;
|
|
863
|
-
readonly vectorConfig?: {
|
|
864
|
-
dimensions: number;
|
|
865
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
866
|
-
normalized: boolean;
|
|
867
|
-
indexed: boolean;
|
|
868
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
869
|
-
} | undefined;
|
|
870
|
-
readonly fileAttachmentConfig?: {
|
|
871
|
-
virusScan: boolean;
|
|
872
|
-
virusScanOnUpload: boolean;
|
|
873
|
-
quarantineOnThreat: boolean;
|
|
874
|
-
allowMultiple: boolean;
|
|
875
|
-
allowReplace: boolean;
|
|
876
|
-
allowDelete: boolean;
|
|
877
|
-
requireUpload: boolean;
|
|
878
|
-
extractMetadata: boolean;
|
|
879
|
-
extractText: boolean;
|
|
880
|
-
versioningEnabled: boolean;
|
|
881
|
-
publicRead: boolean;
|
|
882
|
-
presignedUrlExpiry: number;
|
|
883
|
-
minSize?: number | undefined;
|
|
884
|
-
maxSize?: number | undefined;
|
|
885
|
-
allowedTypes?: string[] | undefined;
|
|
886
|
-
blockedTypes?: string[] | undefined;
|
|
887
|
-
allowedMimeTypes?: string[] | undefined;
|
|
888
|
-
blockedMimeTypes?: string[] | undefined;
|
|
889
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
890
|
-
storageProvider?: string | undefined;
|
|
891
|
-
storageBucket?: string | undefined;
|
|
892
|
-
storagePrefix?: string | undefined;
|
|
893
|
-
imageValidation?: {
|
|
894
|
-
generateThumbnails: boolean;
|
|
895
|
-
preserveMetadata: boolean;
|
|
896
|
-
autoRotate: boolean;
|
|
897
|
-
minWidth?: number | undefined;
|
|
898
|
-
maxWidth?: number | undefined;
|
|
899
|
-
minHeight?: number | undefined;
|
|
900
|
-
maxHeight?: number | undefined;
|
|
901
|
-
aspectRatio?: string | undefined;
|
|
902
|
-
thumbnailSizes?: {
|
|
903
|
-
name: string;
|
|
904
|
-
width: number;
|
|
905
|
-
height: number;
|
|
906
|
-
crop: boolean;
|
|
907
|
-
}[] | undefined;
|
|
908
|
-
} | undefined;
|
|
909
|
-
maxVersions?: number | undefined;
|
|
910
|
-
} | undefined;
|
|
911
|
-
readonly maskingRule?: {
|
|
912
|
-
field: string;
|
|
913
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
914
|
-
preserveFormat: boolean;
|
|
915
|
-
preserveLength: boolean;
|
|
916
|
-
pattern?: string | undefined;
|
|
917
|
-
roles?: string[] | undefined;
|
|
918
|
-
exemptRoles?: string[] | undefined;
|
|
919
|
-
} | undefined;
|
|
920
|
-
readonly auditTrail?: boolean | undefined;
|
|
921
|
-
readonly dependencies?: string[] | undefined;
|
|
922
|
-
readonly cached?: {
|
|
923
|
-
enabled: boolean;
|
|
924
|
-
ttl: number;
|
|
925
|
-
invalidateOn: string[];
|
|
926
|
-
} | undefined;
|
|
927
|
-
readonly dataQuality?: {
|
|
928
|
-
uniqueness: boolean;
|
|
929
|
-
completeness: number;
|
|
930
|
-
accuracy?: {
|
|
931
|
-
source: string;
|
|
932
|
-
threshold: number;
|
|
933
|
-
} | undefined;
|
|
934
|
-
} | undefined;
|
|
935
|
-
readonly group?: string | undefined;
|
|
936
|
-
readonly conditionalRequired?: string | undefined;
|
|
937
|
-
readonly hidden?: boolean | undefined;
|
|
938
|
-
readonly sortable?: boolean | undefined;
|
|
939
|
-
readonly inlineHelpText?: string | undefined;
|
|
940
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
941
|
-
readonly caseSensitive?: boolean | undefined;
|
|
942
|
-
readonly autonumberFormat?: string | undefined;
|
|
943
|
-
readonly index?: boolean | undefined;
|
|
944
|
-
readonly externalId?: boolean | undefined;
|
|
945
|
-
readonly type: "datetime";
|
|
946
|
-
};
|
|
947
|
-
readonly user_id: {
|
|
948
|
-
readonly format?: string | undefined;
|
|
949
|
-
readonly expression?: string | undefined;
|
|
950
|
-
readonly readonly?: boolean | undefined;
|
|
951
|
-
readonly defaultValue?: unknown;
|
|
952
|
-
readonly min?: number | undefined;
|
|
953
|
-
readonly max?: number | undefined;
|
|
954
|
-
readonly name?: string | undefined;
|
|
955
|
-
readonly encryptionConfig?: {
|
|
956
|
-
enabled: boolean;
|
|
957
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
958
|
-
keyManagement: {
|
|
959
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
960
|
-
keyId?: string | undefined;
|
|
961
|
-
rotationPolicy?: {
|
|
962
|
-
enabled: boolean;
|
|
963
|
-
frequencyDays: number;
|
|
964
|
-
retainOldVersions: number;
|
|
965
|
-
autoRotate: boolean;
|
|
966
|
-
} | undefined;
|
|
967
|
-
};
|
|
968
|
-
scope: "table" | "record" | "field" | "database";
|
|
969
|
-
deterministicEncryption: boolean;
|
|
970
|
-
searchableEncryption: boolean;
|
|
971
|
-
} | undefined;
|
|
972
|
-
readonly label?: string | undefined;
|
|
973
|
-
readonly precision?: number | undefined;
|
|
974
|
-
readonly description?: string | undefined;
|
|
975
|
-
readonly columnName?: string | undefined;
|
|
976
|
-
readonly required?: boolean | undefined;
|
|
977
|
-
readonly searchable?: boolean | undefined;
|
|
978
|
-
readonly multiple?: boolean | undefined;
|
|
979
|
-
readonly unique?: boolean | undefined;
|
|
980
|
-
readonly maxLength?: number | undefined;
|
|
981
|
-
readonly minLength?: number | undefined;
|
|
982
|
-
readonly scale?: number | undefined;
|
|
983
|
-
readonly options?: {
|
|
984
|
-
label: string;
|
|
985
|
-
value: string;
|
|
986
|
-
color?: string | undefined;
|
|
987
|
-
default?: boolean | undefined;
|
|
988
|
-
}[] | undefined;
|
|
989
|
-
readonly reference?: string | undefined;
|
|
990
|
-
readonly referenceFilters?: string[] | undefined;
|
|
991
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
992
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
993
|
-
readonly summaryOperations?: {
|
|
994
|
-
object: string;
|
|
995
|
-
field: string;
|
|
996
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
997
|
-
} | undefined;
|
|
998
|
-
readonly language?: string | undefined;
|
|
999
|
-
readonly theme?: string | undefined;
|
|
1000
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1001
|
-
readonly maxRating?: number | undefined;
|
|
1002
|
-
readonly allowHalf?: boolean | undefined;
|
|
1003
|
-
readonly displayMap?: boolean | undefined;
|
|
1004
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1005
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1006
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1007
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1008
|
-
readonly presetColors?: string[] | undefined;
|
|
1009
|
-
readonly step?: number | undefined;
|
|
1010
|
-
readonly showValue?: boolean | undefined;
|
|
1011
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1012
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1013
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1014
|
-
readonly displayValue?: boolean | undefined;
|
|
1015
|
-
readonly allowScanning?: boolean | undefined;
|
|
1016
|
-
readonly currencyConfig?: {
|
|
1017
|
-
precision: number;
|
|
1018
|
-
currencyMode: "dynamic" | "fixed";
|
|
1019
|
-
defaultCurrency: string;
|
|
1020
|
-
} | undefined;
|
|
1021
|
-
readonly vectorConfig?: {
|
|
1022
|
-
dimensions: number;
|
|
1023
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1024
|
-
normalized: boolean;
|
|
1025
|
-
indexed: boolean;
|
|
1026
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1027
|
-
} | undefined;
|
|
1028
|
-
readonly fileAttachmentConfig?: {
|
|
1029
|
-
virusScan: boolean;
|
|
1030
|
-
virusScanOnUpload: boolean;
|
|
1031
|
-
quarantineOnThreat: boolean;
|
|
1032
|
-
allowMultiple: boolean;
|
|
1033
|
-
allowReplace: boolean;
|
|
1034
|
-
allowDelete: boolean;
|
|
1035
|
-
requireUpload: boolean;
|
|
1036
|
-
extractMetadata: boolean;
|
|
1037
|
-
extractText: boolean;
|
|
1038
|
-
versioningEnabled: boolean;
|
|
1039
|
-
publicRead: boolean;
|
|
1040
|
-
presignedUrlExpiry: number;
|
|
1041
|
-
minSize?: number | undefined;
|
|
1042
|
-
maxSize?: number | undefined;
|
|
1043
|
-
allowedTypes?: string[] | undefined;
|
|
1044
|
-
blockedTypes?: string[] | undefined;
|
|
1045
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1046
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1047
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1048
|
-
storageProvider?: string | undefined;
|
|
1049
|
-
storageBucket?: string | undefined;
|
|
1050
|
-
storagePrefix?: string | undefined;
|
|
1051
|
-
imageValidation?: {
|
|
1052
|
-
generateThumbnails: boolean;
|
|
1053
|
-
preserveMetadata: boolean;
|
|
1054
|
-
autoRotate: boolean;
|
|
1055
|
-
minWidth?: number | undefined;
|
|
1056
|
-
maxWidth?: number | undefined;
|
|
1057
|
-
minHeight?: number | undefined;
|
|
1058
|
-
maxHeight?: number | undefined;
|
|
1059
|
-
aspectRatio?: string | undefined;
|
|
1060
|
-
thumbnailSizes?: {
|
|
1061
|
-
name: string;
|
|
1062
|
-
width: number;
|
|
1063
|
-
height: number;
|
|
1064
|
-
crop: boolean;
|
|
1065
|
-
}[] | undefined;
|
|
1066
|
-
} | undefined;
|
|
1067
|
-
maxVersions?: number | undefined;
|
|
1068
|
-
} | undefined;
|
|
1069
|
-
readonly maskingRule?: {
|
|
1070
|
-
field: string;
|
|
1071
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1072
|
-
preserveFormat: boolean;
|
|
1073
|
-
preserveLength: boolean;
|
|
1074
|
-
pattern?: string | undefined;
|
|
1075
|
-
roles?: string[] | undefined;
|
|
1076
|
-
exemptRoles?: string[] | undefined;
|
|
1077
|
-
} | undefined;
|
|
1078
|
-
readonly auditTrail?: boolean | undefined;
|
|
1079
|
-
readonly dependencies?: string[] | undefined;
|
|
1080
|
-
readonly cached?: {
|
|
1081
|
-
enabled: boolean;
|
|
1082
|
-
ttl: number;
|
|
1083
|
-
invalidateOn: string[];
|
|
1084
|
-
} | undefined;
|
|
1085
|
-
readonly dataQuality?: {
|
|
1086
|
-
uniqueness: boolean;
|
|
1087
|
-
completeness: number;
|
|
1088
|
-
accuracy?: {
|
|
1089
|
-
source: string;
|
|
1090
|
-
threshold: number;
|
|
1091
|
-
} | undefined;
|
|
1092
|
-
} | undefined;
|
|
1093
|
-
readonly group?: string | undefined;
|
|
1094
|
-
readonly conditionalRequired?: string | undefined;
|
|
1095
|
-
readonly hidden?: boolean | undefined;
|
|
1096
|
-
readonly sortable?: boolean | undefined;
|
|
1097
|
-
readonly inlineHelpText?: string | undefined;
|
|
1098
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1099
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1100
|
-
readonly autonumberFormat?: string | undefined;
|
|
1101
|
-
readonly index?: boolean | undefined;
|
|
1102
|
-
readonly externalId?: boolean | undefined;
|
|
1103
|
-
readonly type: "text";
|
|
1104
|
-
};
|
|
1105
|
-
readonly session_id: {
|
|
1106
|
-
readonly format?: string | undefined;
|
|
1107
|
-
readonly expression?: string | undefined;
|
|
1108
|
-
readonly readonly?: boolean | undefined;
|
|
1109
|
-
readonly defaultValue?: unknown;
|
|
1110
|
-
readonly min?: number | undefined;
|
|
1111
|
-
readonly max?: number | undefined;
|
|
1112
|
-
readonly name?: string | undefined;
|
|
1113
|
-
readonly encryptionConfig?: {
|
|
1114
|
-
enabled: boolean;
|
|
1115
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1116
|
-
keyManagement: {
|
|
1117
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1118
|
-
keyId?: string | undefined;
|
|
1119
|
-
rotationPolicy?: {
|
|
1120
|
-
enabled: boolean;
|
|
1121
|
-
frequencyDays: number;
|
|
1122
|
-
retainOldVersions: number;
|
|
1123
|
-
autoRotate: boolean;
|
|
1124
|
-
} | undefined;
|
|
1125
|
-
};
|
|
1126
|
-
scope: "table" | "record" | "field" | "database";
|
|
1127
|
-
deterministicEncryption: boolean;
|
|
1128
|
-
searchableEncryption: boolean;
|
|
1129
|
-
} | undefined;
|
|
1130
|
-
readonly label?: string | undefined;
|
|
1131
|
-
readonly precision?: number | undefined;
|
|
1132
|
-
readonly description?: string | undefined;
|
|
1133
|
-
readonly columnName?: string | undefined;
|
|
1134
|
-
readonly required?: boolean | undefined;
|
|
1135
|
-
readonly searchable?: boolean | undefined;
|
|
1136
|
-
readonly multiple?: boolean | undefined;
|
|
1137
|
-
readonly unique?: boolean | undefined;
|
|
1138
|
-
readonly maxLength?: number | undefined;
|
|
1139
|
-
readonly minLength?: number | undefined;
|
|
1140
|
-
readonly scale?: number | undefined;
|
|
1141
|
-
readonly options?: {
|
|
1142
|
-
label: string;
|
|
1143
|
-
value: string;
|
|
1144
|
-
color?: string | undefined;
|
|
1145
|
-
default?: boolean | undefined;
|
|
1146
|
-
}[] | undefined;
|
|
1147
|
-
readonly reference?: string | undefined;
|
|
1148
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1149
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1150
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1151
|
-
readonly summaryOperations?: {
|
|
1152
|
-
object: string;
|
|
1153
|
-
field: string;
|
|
1154
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1155
|
-
} | undefined;
|
|
1156
|
-
readonly language?: string | undefined;
|
|
1157
|
-
readonly theme?: string | undefined;
|
|
1158
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1159
|
-
readonly maxRating?: number | undefined;
|
|
1160
|
-
readonly allowHalf?: boolean | undefined;
|
|
1161
|
-
readonly displayMap?: boolean | undefined;
|
|
1162
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1163
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1164
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1165
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1166
|
-
readonly presetColors?: string[] | undefined;
|
|
1167
|
-
readonly step?: number | undefined;
|
|
1168
|
-
readonly showValue?: boolean | undefined;
|
|
1169
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1170
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1171
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1172
|
-
readonly displayValue?: boolean | undefined;
|
|
1173
|
-
readonly allowScanning?: boolean | undefined;
|
|
1174
|
-
readonly currencyConfig?: {
|
|
1175
|
-
precision: number;
|
|
1176
|
-
currencyMode: "dynamic" | "fixed";
|
|
1177
|
-
defaultCurrency: string;
|
|
1178
|
-
} | undefined;
|
|
1179
|
-
readonly vectorConfig?: {
|
|
1180
|
-
dimensions: number;
|
|
1181
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1182
|
-
normalized: boolean;
|
|
1183
|
-
indexed: boolean;
|
|
1184
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1185
|
-
} | undefined;
|
|
1186
|
-
readonly fileAttachmentConfig?: {
|
|
1187
|
-
virusScan: boolean;
|
|
1188
|
-
virusScanOnUpload: boolean;
|
|
1189
|
-
quarantineOnThreat: boolean;
|
|
1190
|
-
allowMultiple: boolean;
|
|
1191
|
-
allowReplace: boolean;
|
|
1192
|
-
allowDelete: boolean;
|
|
1193
|
-
requireUpload: boolean;
|
|
1194
|
-
extractMetadata: boolean;
|
|
1195
|
-
extractText: boolean;
|
|
1196
|
-
versioningEnabled: boolean;
|
|
1197
|
-
publicRead: boolean;
|
|
1198
|
-
presignedUrlExpiry: number;
|
|
1199
|
-
minSize?: number | undefined;
|
|
1200
|
-
maxSize?: number | undefined;
|
|
1201
|
-
allowedTypes?: string[] | undefined;
|
|
1202
|
-
blockedTypes?: string[] | undefined;
|
|
1203
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1204
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1205
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1206
|
-
storageProvider?: string | undefined;
|
|
1207
|
-
storageBucket?: string | undefined;
|
|
1208
|
-
storagePrefix?: string | undefined;
|
|
1209
|
-
imageValidation?: {
|
|
1210
|
-
generateThumbnails: boolean;
|
|
1211
|
-
preserveMetadata: boolean;
|
|
1212
|
-
autoRotate: boolean;
|
|
1213
|
-
minWidth?: number | undefined;
|
|
1214
|
-
maxWidth?: number | undefined;
|
|
1215
|
-
minHeight?: number | undefined;
|
|
1216
|
-
maxHeight?: number | undefined;
|
|
1217
|
-
aspectRatio?: string | undefined;
|
|
1218
|
-
thumbnailSizes?: {
|
|
1219
|
-
name: string;
|
|
1220
|
-
width: number;
|
|
1221
|
-
height: number;
|
|
1222
|
-
crop: boolean;
|
|
1223
|
-
}[] | undefined;
|
|
1224
|
-
} | undefined;
|
|
1225
|
-
maxVersions?: number | undefined;
|
|
1226
|
-
} | undefined;
|
|
1227
|
-
readonly maskingRule?: {
|
|
1228
|
-
field: string;
|
|
1229
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1230
|
-
preserveFormat: boolean;
|
|
1231
|
-
preserveLength: boolean;
|
|
1232
|
-
pattern?: string | undefined;
|
|
1233
|
-
roles?: string[] | undefined;
|
|
1234
|
-
exemptRoles?: string[] | undefined;
|
|
1235
|
-
} | undefined;
|
|
1236
|
-
readonly auditTrail?: boolean | undefined;
|
|
1237
|
-
readonly dependencies?: string[] | undefined;
|
|
1238
|
-
readonly cached?: {
|
|
1239
|
-
enabled: boolean;
|
|
1240
|
-
ttl: number;
|
|
1241
|
-
invalidateOn: string[];
|
|
1242
|
-
} | undefined;
|
|
1243
|
-
readonly dataQuality?: {
|
|
1244
|
-
uniqueness: boolean;
|
|
1245
|
-
completeness: number;
|
|
1246
|
-
accuracy?: {
|
|
1247
|
-
source: string;
|
|
1248
|
-
threshold: number;
|
|
1249
|
-
} | undefined;
|
|
1250
|
-
} | undefined;
|
|
1251
|
-
readonly group?: string | undefined;
|
|
1252
|
-
readonly conditionalRequired?: string | undefined;
|
|
1253
|
-
readonly hidden?: boolean | undefined;
|
|
1254
|
-
readonly sortable?: boolean | undefined;
|
|
1255
|
-
readonly inlineHelpText?: string | undefined;
|
|
1256
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1257
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1258
|
-
readonly autonumberFormat?: string | undefined;
|
|
1259
|
-
readonly index?: boolean | undefined;
|
|
1260
|
-
readonly externalId?: boolean | undefined;
|
|
1261
|
-
readonly type: "text";
|
|
1262
|
-
};
|
|
1263
|
-
readonly status: {
|
|
1264
|
-
readonly format?: string | undefined;
|
|
1265
|
-
readonly expression?: string | undefined;
|
|
1266
|
-
readonly readonly?: boolean | undefined;
|
|
1267
|
-
readonly defaultValue?: unknown;
|
|
1268
|
-
readonly min?: number | undefined;
|
|
1269
|
-
readonly max?: number | undefined;
|
|
1270
|
-
readonly name?: string | undefined;
|
|
1271
|
-
readonly encryptionConfig?: {
|
|
1272
|
-
enabled: boolean;
|
|
1273
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1274
|
-
keyManagement: {
|
|
1275
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1276
|
-
keyId?: string | undefined;
|
|
1277
|
-
rotationPolicy?: {
|
|
1278
|
-
enabled: boolean;
|
|
1279
|
-
frequencyDays: number;
|
|
1280
|
-
retainOldVersions: number;
|
|
1281
|
-
autoRotate: boolean;
|
|
1282
|
-
} | undefined;
|
|
1283
|
-
};
|
|
1284
|
-
scope: "table" | "record" | "field" | "database";
|
|
1285
|
-
deterministicEncryption: boolean;
|
|
1286
|
-
searchableEncryption: boolean;
|
|
1287
|
-
} | undefined;
|
|
1288
|
-
readonly label?: string | undefined;
|
|
1289
|
-
readonly precision?: number | undefined;
|
|
1290
|
-
readonly description?: string | undefined;
|
|
1291
|
-
readonly columnName?: string | undefined;
|
|
1292
|
-
readonly required?: boolean | undefined;
|
|
1293
|
-
readonly searchable?: boolean | undefined;
|
|
1294
|
-
readonly multiple?: boolean | undefined;
|
|
1295
|
-
readonly unique?: boolean | undefined;
|
|
1296
|
-
readonly maxLength?: number | undefined;
|
|
1297
|
-
readonly minLength?: number | undefined;
|
|
1298
|
-
readonly scale?: number | undefined;
|
|
1299
|
-
options: {
|
|
1300
|
-
label: string;
|
|
1301
|
-
value: string;
|
|
1302
|
-
color?: string | undefined;
|
|
1303
|
-
default?: boolean | undefined;
|
|
1304
|
-
}[];
|
|
1305
|
-
readonly reference?: string | undefined;
|
|
1306
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1307
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1308
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1309
|
-
readonly summaryOperations?: {
|
|
1310
|
-
object: string;
|
|
1311
|
-
field: string;
|
|
1312
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1313
|
-
} | undefined;
|
|
1314
|
-
readonly language?: string | undefined;
|
|
1315
|
-
readonly theme?: string | undefined;
|
|
1316
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1317
|
-
readonly maxRating?: number | undefined;
|
|
1318
|
-
readonly allowHalf?: boolean | undefined;
|
|
1319
|
-
readonly displayMap?: boolean | undefined;
|
|
1320
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1321
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1322
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1323
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1324
|
-
readonly presetColors?: string[] | undefined;
|
|
1325
|
-
readonly step?: number | undefined;
|
|
1326
|
-
readonly showValue?: boolean | undefined;
|
|
1327
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1328
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1329
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1330
|
-
readonly displayValue?: boolean | undefined;
|
|
1331
|
-
readonly allowScanning?: boolean | undefined;
|
|
1332
|
-
readonly currencyConfig?: {
|
|
1333
|
-
precision: number;
|
|
1334
|
-
currencyMode: "dynamic" | "fixed";
|
|
1335
|
-
defaultCurrency: string;
|
|
1336
|
-
} | undefined;
|
|
1337
|
-
readonly vectorConfig?: {
|
|
1338
|
-
dimensions: number;
|
|
1339
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1340
|
-
normalized: boolean;
|
|
1341
|
-
indexed: boolean;
|
|
1342
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1343
|
-
} | undefined;
|
|
1344
|
-
readonly fileAttachmentConfig?: {
|
|
1345
|
-
virusScan: boolean;
|
|
1346
|
-
virusScanOnUpload: boolean;
|
|
1347
|
-
quarantineOnThreat: boolean;
|
|
1348
|
-
allowMultiple: boolean;
|
|
1349
|
-
allowReplace: boolean;
|
|
1350
|
-
allowDelete: boolean;
|
|
1351
|
-
requireUpload: boolean;
|
|
1352
|
-
extractMetadata: boolean;
|
|
1353
|
-
extractText: boolean;
|
|
1354
|
-
versioningEnabled: boolean;
|
|
1355
|
-
publicRead: boolean;
|
|
1356
|
-
presignedUrlExpiry: number;
|
|
1357
|
-
minSize?: number | undefined;
|
|
1358
|
-
maxSize?: number | undefined;
|
|
1359
|
-
allowedTypes?: string[] | undefined;
|
|
1360
|
-
blockedTypes?: string[] | undefined;
|
|
1361
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1362
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1363
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1364
|
-
storageProvider?: string | undefined;
|
|
1365
|
-
storageBucket?: string | undefined;
|
|
1366
|
-
storagePrefix?: string | undefined;
|
|
1367
|
-
imageValidation?: {
|
|
1368
|
-
generateThumbnails: boolean;
|
|
1369
|
-
preserveMetadata: boolean;
|
|
1370
|
-
autoRotate: boolean;
|
|
1371
|
-
minWidth?: number | undefined;
|
|
1372
|
-
maxWidth?: number | undefined;
|
|
1373
|
-
minHeight?: number | undefined;
|
|
1374
|
-
maxHeight?: number | undefined;
|
|
1375
|
-
aspectRatio?: string | undefined;
|
|
1376
|
-
thumbnailSizes?: {
|
|
1377
|
-
name: string;
|
|
1378
|
-
width: number;
|
|
1379
|
-
height: number;
|
|
1380
|
-
crop: boolean;
|
|
1381
|
-
}[] | undefined;
|
|
1382
|
-
} | undefined;
|
|
1383
|
-
maxVersions?: number | undefined;
|
|
1384
|
-
} | undefined;
|
|
1385
|
-
readonly maskingRule?: {
|
|
1386
|
-
field: string;
|
|
1387
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1388
|
-
preserveFormat: boolean;
|
|
1389
|
-
preserveLength: boolean;
|
|
1390
|
-
pattern?: string | undefined;
|
|
1391
|
-
roles?: string[] | undefined;
|
|
1392
|
-
exemptRoles?: string[] | undefined;
|
|
1393
|
-
} | undefined;
|
|
1394
|
-
readonly auditTrail?: boolean | undefined;
|
|
1395
|
-
readonly dependencies?: string[] | undefined;
|
|
1396
|
-
readonly cached?: {
|
|
1397
|
-
enabled: boolean;
|
|
1398
|
-
ttl: number;
|
|
1399
|
-
invalidateOn: string[];
|
|
1400
|
-
} | undefined;
|
|
1401
|
-
readonly dataQuality?: {
|
|
1402
|
-
uniqueness: boolean;
|
|
1403
|
-
completeness: number;
|
|
1404
|
-
accuracy?: {
|
|
1405
|
-
source: string;
|
|
1406
|
-
threshold: number;
|
|
1407
|
-
} | undefined;
|
|
1408
|
-
} | undefined;
|
|
1409
|
-
readonly group?: string | undefined;
|
|
1410
|
-
readonly conditionalRequired?: string | undefined;
|
|
1411
|
-
readonly hidden?: boolean | undefined;
|
|
1412
|
-
readonly sortable?: boolean | undefined;
|
|
1413
|
-
readonly inlineHelpText?: string | undefined;
|
|
1414
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1415
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1416
|
-
readonly autonumberFormat?: string | undefined;
|
|
1417
|
-
readonly index?: boolean | undefined;
|
|
1418
|
-
readonly externalId?: boolean | undefined;
|
|
1419
|
-
readonly type: "select";
|
|
1420
|
-
};
|
|
1421
|
-
readonly last_seen: {
|
|
1422
|
-
readonly format?: string | undefined;
|
|
1423
|
-
readonly expression?: string | undefined;
|
|
1424
|
-
readonly readonly?: boolean | undefined;
|
|
1425
|
-
readonly defaultValue?: unknown;
|
|
1426
|
-
readonly min?: number | undefined;
|
|
1427
|
-
readonly max?: number | undefined;
|
|
1428
|
-
readonly name?: string | undefined;
|
|
1429
|
-
readonly encryptionConfig?: {
|
|
1430
|
-
enabled: boolean;
|
|
1431
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1432
|
-
keyManagement: {
|
|
1433
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1434
|
-
keyId?: string | undefined;
|
|
1435
|
-
rotationPolicy?: {
|
|
1436
|
-
enabled: boolean;
|
|
1437
|
-
frequencyDays: number;
|
|
1438
|
-
retainOldVersions: number;
|
|
1439
|
-
autoRotate: boolean;
|
|
1440
|
-
} | undefined;
|
|
1441
|
-
};
|
|
1442
|
-
scope: "table" | "record" | "field" | "database";
|
|
1443
|
-
deterministicEncryption: boolean;
|
|
1444
|
-
searchableEncryption: boolean;
|
|
1445
|
-
} | undefined;
|
|
1446
|
-
readonly label?: string | undefined;
|
|
1447
|
-
readonly precision?: number | undefined;
|
|
1448
|
-
readonly description?: string | undefined;
|
|
1449
|
-
readonly columnName?: string | undefined;
|
|
1450
|
-
readonly required?: boolean | undefined;
|
|
1451
|
-
readonly searchable?: boolean | undefined;
|
|
1452
|
-
readonly multiple?: boolean | undefined;
|
|
1453
|
-
readonly unique?: boolean | undefined;
|
|
1454
|
-
readonly maxLength?: number | undefined;
|
|
1455
|
-
readonly minLength?: number | undefined;
|
|
1456
|
-
readonly scale?: number | undefined;
|
|
1457
|
-
readonly options?: {
|
|
1458
|
-
label: string;
|
|
1459
|
-
value: string;
|
|
1460
|
-
color?: string | undefined;
|
|
1461
|
-
default?: boolean | undefined;
|
|
1462
|
-
}[] | undefined;
|
|
1463
|
-
readonly reference?: string | undefined;
|
|
1464
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1465
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1466
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1467
|
-
readonly summaryOperations?: {
|
|
1468
|
-
object: string;
|
|
1469
|
-
field: string;
|
|
1470
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1471
|
-
} | undefined;
|
|
1472
|
-
readonly language?: string | undefined;
|
|
1473
|
-
readonly theme?: string | undefined;
|
|
1474
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1475
|
-
readonly maxRating?: number | undefined;
|
|
1476
|
-
readonly allowHalf?: boolean | undefined;
|
|
1477
|
-
readonly displayMap?: boolean | undefined;
|
|
1478
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1479
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1480
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1481
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1482
|
-
readonly presetColors?: string[] | undefined;
|
|
1483
|
-
readonly step?: number | undefined;
|
|
1484
|
-
readonly showValue?: boolean | undefined;
|
|
1485
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1486
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1487
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1488
|
-
readonly displayValue?: boolean | undefined;
|
|
1489
|
-
readonly allowScanning?: boolean | undefined;
|
|
1490
|
-
readonly currencyConfig?: {
|
|
1491
|
-
precision: number;
|
|
1492
|
-
currencyMode: "dynamic" | "fixed";
|
|
1493
|
-
defaultCurrency: string;
|
|
1494
|
-
} | undefined;
|
|
1495
|
-
readonly vectorConfig?: {
|
|
1496
|
-
dimensions: number;
|
|
1497
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1498
|
-
normalized: boolean;
|
|
1499
|
-
indexed: boolean;
|
|
1500
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1501
|
-
} | undefined;
|
|
1502
|
-
readonly fileAttachmentConfig?: {
|
|
1503
|
-
virusScan: boolean;
|
|
1504
|
-
virusScanOnUpload: boolean;
|
|
1505
|
-
quarantineOnThreat: boolean;
|
|
1506
|
-
allowMultiple: boolean;
|
|
1507
|
-
allowReplace: boolean;
|
|
1508
|
-
allowDelete: boolean;
|
|
1509
|
-
requireUpload: boolean;
|
|
1510
|
-
extractMetadata: boolean;
|
|
1511
|
-
extractText: boolean;
|
|
1512
|
-
versioningEnabled: boolean;
|
|
1513
|
-
publicRead: boolean;
|
|
1514
|
-
presignedUrlExpiry: number;
|
|
1515
|
-
minSize?: number | undefined;
|
|
1516
|
-
maxSize?: number | undefined;
|
|
1517
|
-
allowedTypes?: string[] | undefined;
|
|
1518
|
-
blockedTypes?: string[] | undefined;
|
|
1519
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1520
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1521
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1522
|
-
storageProvider?: string | undefined;
|
|
1523
|
-
storageBucket?: string | undefined;
|
|
1524
|
-
storagePrefix?: string | undefined;
|
|
1525
|
-
imageValidation?: {
|
|
1526
|
-
generateThumbnails: boolean;
|
|
1527
|
-
preserveMetadata: boolean;
|
|
1528
|
-
autoRotate: boolean;
|
|
1529
|
-
minWidth?: number | undefined;
|
|
1530
|
-
maxWidth?: number | undefined;
|
|
1531
|
-
minHeight?: number | undefined;
|
|
1532
|
-
maxHeight?: number | undefined;
|
|
1533
|
-
aspectRatio?: string | undefined;
|
|
1534
|
-
thumbnailSizes?: {
|
|
1535
|
-
name: string;
|
|
1536
|
-
width: number;
|
|
1537
|
-
height: number;
|
|
1538
|
-
crop: boolean;
|
|
1539
|
-
}[] | undefined;
|
|
1540
|
-
} | undefined;
|
|
1541
|
-
maxVersions?: number | undefined;
|
|
1542
|
-
} | undefined;
|
|
1543
|
-
readonly maskingRule?: {
|
|
1544
|
-
field: string;
|
|
1545
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1546
|
-
preserveFormat: boolean;
|
|
1547
|
-
preserveLength: boolean;
|
|
1548
|
-
pattern?: string | undefined;
|
|
1549
|
-
roles?: string[] | undefined;
|
|
1550
|
-
exemptRoles?: string[] | undefined;
|
|
1551
|
-
} | undefined;
|
|
1552
|
-
readonly auditTrail?: boolean | undefined;
|
|
1553
|
-
readonly dependencies?: string[] | undefined;
|
|
1554
|
-
readonly cached?: {
|
|
1555
|
-
enabled: boolean;
|
|
1556
|
-
ttl: number;
|
|
1557
|
-
invalidateOn: string[];
|
|
1558
|
-
} | undefined;
|
|
1559
|
-
readonly dataQuality?: {
|
|
1560
|
-
uniqueness: boolean;
|
|
1561
|
-
completeness: number;
|
|
1562
|
-
accuracy?: {
|
|
1563
|
-
source: string;
|
|
1564
|
-
threshold: number;
|
|
1565
|
-
} | undefined;
|
|
1566
|
-
} | undefined;
|
|
1567
|
-
readonly group?: string | undefined;
|
|
1568
|
-
readonly conditionalRequired?: string | undefined;
|
|
1569
|
-
readonly hidden?: boolean | undefined;
|
|
1570
|
-
readonly sortable?: boolean | undefined;
|
|
1571
|
-
readonly inlineHelpText?: string | undefined;
|
|
1572
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1573
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1574
|
-
readonly autonumberFormat?: string | undefined;
|
|
1575
|
-
readonly index?: boolean | undefined;
|
|
1576
|
-
readonly externalId?: boolean | undefined;
|
|
1577
|
-
readonly type: "datetime";
|
|
1578
|
-
};
|
|
1579
|
-
readonly current_location: {
|
|
1580
|
-
readonly format?: string | undefined;
|
|
1581
|
-
readonly expression?: string | undefined;
|
|
1582
|
-
readonly readonly?: boolean | undefined;
|
|
1583
|
-
readonly defaultValue?: unknown;
|
|
1584
|
-
readonly min?: number | undefined;
|
|
1585
|
-
readonly max?: number | undefined;
|
|
1586
|
-
readonly name?: string | undefined;
|
|
1587
|
-
readonly encryptionConfig?: {
|
|
1588
|
-
enabled: boolean;
|
|
1589
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1590
|
-
keyManagement: {
|
|
1591
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1592
|
-
keyId?: string | undefined;
|
|
1593
|
-
rotationPolicy?: {
|
|
1594
|
-
enabled: boolean;
|
|
1595
|
-
frequencyDays: number;
|
|
1596
|
-
retainOldVersions: number;
|
|
1597
|
-
autoRotate: boolean;
|
|
1598
|
-
} | undefined;
|
|
1599
|
-
};
|
|
1600
|
-
scope: "table" | "record" | "field" | "database";
|
|
1601
|
-
deterministicEncryption: boolean;
|
|
1602
|
-
searchableEncryption: boolean;
|
|
1603
|
-
} | undefined;
|
|
1604
|
-
readonly label?: string | undefined;
|
|
1605
|
-
readonly precision?: number | undefined;
|
|
1606
|
-
readonly description?: string | undefined;
|
|
1607
|
-
readonly columnName?: string | undefined;
|
|
1608
|
-
readonly required?: boolean | undefined;
|
|
1609
|
-
readonly searchable?: boolean | undefined;
|
|
1610
|
-
readonly multiple?: boolean | undefined;
|
|
1611
|
-
readonly unique?: boolean | undefined;
|
|
1612
|
-
readonly maxLength?: number | undefined;
|
|
1613
|
-
readonly minLength?: number | undefined;
|
|
1614
|
-
readonly scale?: number | undefined;
|
|
1615
|
-
readonly options?: {
|
|
1616
|
-
label: string;
|
|
1617
|
-
value: string;
|
|
1618
|
-
color?: string | undefined;
|
|
1619
|
-
default?: boolean | undefined;
|
|
1620
|
-
}[] | undefined;
|
|
1621
|
-
readonly reference?: string | undefined;
|
|
1622
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1623
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1624
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1625
|
-
readonly summaryOperations?: {
|
|
1626
|
-
object: string;
|
|
1627
|
-
field: string;
|
|
1628
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1629
|
-
} | undefined;
|
|
1630
|
-
readonly language?: string | undefined;
|
|
1631
|
-
readonly theme?: string | undefined;
|
|
1632
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1633
|
-
readonly maxRating?: number | undefined;
|
|
1634
|
-
readonly allowHalf?: boolean | undefined;
|
|
1635
|
-
readonly displayMap?: boolean | undefined;
|
|
1636
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1637
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1638
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1639
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1640
|
-
readonly presetColors?: string[] | undefined;
|
|
1641
|
-
readonly step?: number | undefined;
|
|
1642
|
-
readonly showValue?: boolean | undefined;
|
|
1643
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1644
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1645
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1646
|
-
readonly displayValue?: boolean | undefined;
|
|
1647
|
-
readonly allowScanning?: boolean | undefined;
|
|
1648
|
-
readonly currencyConfig?: {
|
|
1649
|
-
precision: number;
|
|
1650
|
-
currencyMode: "dynamic" | "fixed";
|
|
1651
|
-
defaultCurrency: string;
|
|
1652
|
-
} | undefined;
|
|
1653
|
-
readonly vectorConfig?: {
|
|
1654
|
-
dimensions: number;
|
|
1655
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1656
|
-
normalized: boolean;
|
|
1657
|
-
indexed: boolean;
|
|
1658
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1659
|
-
} | undefined;
|
|
1660
|
-
readonly fileAttachmentConfig?: {
|
|
1661
|
-
virusScan: boolean;
|
|
1662
|
-
virusScanOnUpload: boolean;
|
|
1663
|
-
quarantineOnThreat: boolean;
|
|
1664
|
-
allowMultiple: boolean;
|
|
1665
|
-
allowReplace: boolean;
|
|
1666
|
-
allowDelete: boolean;
|
|
1667
|
-
requireUpload: boolean;
|
|
1668
|
-
extractMetadata: boolean;
|
|
1669
|
-
extractText: boolean;
|
|
1670
|
-
versioningEnabled: boolean;
|
|
1671
|
-
publicRead: boolean;
|
|
1672
|
-
presignedUrlExpiry: number;
|
|
1673
|
-
minSize?: number | undefined;
|
|
1674
|
-
maxSize?: number | undefined;
|
|
1675
|
-
allowedTypes?: string[] | undefined;
|
|
1676
|
-
blockedTypes?: string[] | undefined;
|
|
1677
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1678
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1679
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1680
|
-
storageProvider?: string | undefined;
|
|
1681
|
-
storageBucket?: string | undefined;
|
|
1682
|
-
storagePrefix?: string | undefined;
|
|
1683
|
-
imageValidation?: {
|
|
1684
|
-
generateThumbnails: boolean;
|
|
1685
|
-
preserveMetadata: boolean;
|
|
1686
|
-
autoRotate: boolean;
|
|
1687
|
-
minWidth?: number | undefined;
|
|
1688
|
-
maxWidth?: number | undefined;
|
|
1689
|
-
minHeight?: number | undefined;
|
|
1690
|
-
maxHeight?: number | undefined;
|
|
1691
|
-
aspectRatio?: string | undefined;
|
|
1692
|
-
thumbnailSizes?: {
|
|
1693
|
-
name: string;
|
|
1694
|
-
width: number;
|
|
1695
|
-
height: number;
|
|
1696
|
-
crop: boolean;
|
|
1697
|
-
}[] | undefined;
|
|
1698
|
-
} | undefined;
|
|
1699
|
-
maxVersions?: number | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
readonly maskingRule?: {
|
|
1702
|
-
field: string;
|
|
1703
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1704
|
-
preserveFormat: boolean;
|
|
1705
|
-
preserveLength: boolean;
|
|
1706
|
-
pattern?: string | undefined;
|
|
1707
|
-
roles?: string[] | undefined;
|
|
1708
|
-
exemptRoles?: string[] | undefined;
|
|
1709
|
-
} | undefined;
|
|
1710
|
-
readonly auditTrail?: boolean | undefined;
|
|
1711
|
-
readonly dependencies?: string[] | undefined;
|
|
1712
|
-
readonly cached?: {
|
|
1713
|
-
enabled: boolean;
|
|
1714
|
-
ttl: number;
|
|
1715
|
-
invalidateOn: string[];
|
|
1716
|
-
} | undefined;
|
|
1717
|
-
readonly dataQuality?: {
|
|
1718
|
-
uniqueness: boolean;
|
|
1719
|
-
completeness: number;
|
|
1720
|
-
accuracy?: {
|
|
1721
|
-
source: string;
|
|
1722
|
-
threshold: number;
|
|
1723
|
-
} | undefined;
|
|
1724
|
-
} | undefined;
|
|
1725
|
-
readonly group?: string | undefined;
|
|
1726
|
-
readonly conditionalRequired?: string | undefined;
|
|
1727
|
-
readonly hidden?: boolean | undefined;
|
|
1728
|
-
readonly sortable?: boolean | undefined;
|
|
1729
|
-
readonly inlineHelpText?: string | undefined;
|
|
1730
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1731
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1732
|
-
readonly autonumberFormat?: string | undefined;
|
|
1733
|
-
readonly index?: boolean | undefined;
|
|
1734
|
-
readonly externalId?: boolean | undefined;
|
|
1735
|
-
readonly type: "text";
|
|
1736
|
-
};
|
|
1737
|
-
readonly device: {
|
|
1738
|
-
readonly format?: string | undefined;
|
|
1739
|
-
readonly expression?: string | undefined;
|
|
1740
|
-
readonly readonly?: boolean | undefined;
|
|
1741
|
-
readonly defaultValue?: unknown;
|
|
1742
|
-
readonly min?: number | undefined;
|
|
1743
|
-
readonly max?: number | undefined;
|
|
1744
|
-
readonly name?: string | undefined;
|
|
1745
|
-
readonly encryptionConfig?: {
|
|
1746
|
-
enabled: boolean;
|
|
1747
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1748
|
-
keyManagement: {
|
|
1749
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1750
|
-
keyId?: string | undefined;
|
|
1751
|
-
rotationPolicy?: {
|
|
1752
|
-
enabled: boolean;
|
|
1753
|
-
frequencyDays: number;
|
|
1754
|
-
retainOldVersions: number;
|
|
1755
|
-
autoRotate: boolean;
|
|
1756
|
-
} | undefined;
|
|
1757
|
-
};
|
|
1758
|
-
scope: "table" | "record" | "field" | "database";
|
|
1759
|
-
deterministicEncryption: boolean;
|
|
1760
|
-
searchableEncryption: boolean;
|
|
1761
|
-
} | undefined;
|
|
1762
|
-
readonly label?: string | undefined;
|
|
1763
|
-
readonly precision?: number | undefined;
|
|
1764
|
-
readonly description?: string | undefined;
|
|
1765
|
-
readonly columnName?: string | undefined;
|
|
1766
|
-
readonly required?: boolean | undefined;
|
|
1767
|
-
readonly searchable?: boolean | undefined;
|
|
1768
|
-
readonly multiple?: boolean | undefined;
|
|
1769
|
-
readonly unique?: boolean | undefined;
|
|
1770
|
-
readonly maxLength?: number | undefined;
|
|
1771
|
-
readonly minLength?: number | undefined;
|
|
1772
|
-
readonly scale?: number | undefined;
|
|
1773
|
-
options: {
|
|
1774
|
-
label: string;
|
|
1775
|
-
value: string;
|
|
1776
|
-
color?: string | undefined;
|
|
1777
|
-
default?: boolean | undefined;
|
|
1778
|
-
}[];
|
|
1779
|
-
readonly reference?: string | undefined;
|
|
1780
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1781
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1782
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1783
|
-
readonly summaryOperations?: {
|
|
1784
|
-
object: string;
|
|
1785
|
-
field: string;
|
|
1786
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1787
|
-
} | undefined;
|
|
1788
|
-
readonly language?: string | undefined;
|
|
1789
|
-
readonly theme?: string | undefined;
|
|
1790
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1791
|
-
readonly maxRating?: number | undefined;
|
|
1792
|
-
readonly allowHalf?: boolean | undefined;
|
|
1793
|
-
readonly displayMap?: boolean | undefined;
|
|
1794
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1795
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1796
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1797
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1798
|
-
readonly presetColors?: string[] | undefined;
|
|
1799
|
-
readonly step?: number | undefined;
|
|
1800
|
-
readonly showValue?: boolean | undefined;
|
|
1801
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1802
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1803
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1804
|
-
readonly displayValue?: boolean | undefined;
|
|
1805
|
-
readonly allowScanning?: boolean | undefined;
|
|
1806
|
-
readonly currencyConfig?: {
|
|
1807
|
-
precision: number;
|
|
1808
|
-
currencyMode: "dynamic" | "fixed";
|
|
1809
|
-
defaultCurrency: string;
|
|
1810
|
-
} | undefined;
|
|
1811
|
-
readonly vectorConfig?: {
|
|
1812
|
-
dimensions: number;
|
|
1813
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1814
|
-
normalized: boolean;
|
|
1815
|
-
indexed: boolean;
|
|
1816
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1817
|
-
} | undefined;
|
|
1818
|
-
readonly fileAttachmentConfig?: {
|
|
1819
|
-
virusScan: boolean;
|
|
1820
|
-
virusScanOnUpload: boolean;
|
|
1821
|
-
quarantineOnThreat: boolean;
|
|
1822
|
-
allowMultiple: boolean;
|
|
1823
|
-
allowReplace: boolean;
|
|
1824
|
-
allowDelete: boolean;
|
|
1825
|
-
requireUpload: boolean;
|
|
1826
|
-
extractMetadata: boolean;
|
|
1827
|
-
extractText: boolean;
|
|
1828
|
-
versioningEnabled: boolean;
|
|
1829
|
-
publicRead: boolean;
|
|
1830
|
-
presignedUrlExpiry: number;
|
|
1831
|
-
minSize?: number | undefined;
|
|
1832
|
-
maxSize?: number | undefined;
|
|
1833
|
-
allowedTypes?: string[] | undefined;
|
|
1834
|
-
blockedTypes?: string[] | undefined;
|
|
1835
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1836
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1837
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1838
|
-
storageProvider?: string | undefined;
|
|
1839
|
-
storageBucket?: string | undefined;
|
|
1840
|
-
storagePrefix?: string | undefined;
|
|
1841
|
-
imageValidation?: {
|
|
1842
|
-
generateThumbnails: boolean;
|
|
1843
|
-
preserveMetadata: boolean;
|
|
1844
|
-
autoRotate: boolean;
|
|
1845
|
-
minWidth?: number | undefined;
|
|
1846
|
-
maxWidth?: number | undefined;
|
|
1847
|
-
minHeight?: number | undefined;
|
|
1848
|
-
maxHeight?: number | undefined;
|
|
1849
|
-
aspectRatio?: string | undefined;
|
|
1850
|
-
thumbnailSizes?: {
|
|
1851
|
-
name: string;
|
|
1852
|
-
width: number;
|
|
1853
|
-
height: number;
|
|
1854
|
-
crop: boolean;
|
|
1855
|
-
}[] | undefined;
|
|
1856
|
-
} | undefined;
|
|
1857
|
-
maxVersions?: number | undefined;
|
|
1858
|
-
} | undefined;
|
|
1859
|
-
readonly maskingRule?: {
|
|
1860
|
-
field: string;
|
|
1861
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1862
|
-
preserveFormat: boolean;
|
|
1863
|
-
preserveLength: boolean;
|
|
1864
|
-
pattern?: string | undefined;
|
|
1865
|
-
roles?: string[] | undefined;
|
|
1866
|
-
exemptRoles?: string[] | undefined;
|
|
1867
|
-
} | undefined;
|
|
1868
|
-
readonly auditTrail?: boolean | undefined;
|
|
1869
|
-
readonly dependencies?: string[] | undefined;
|
|
1870
|
-
readonly cached?: {
|
|
1871
|
-
enabled: boolean;
|
|
1872
|
-
ttl: number;
|
|
1873
|
-
invalidateOn: string[];
|
|
1874
|
-
} | undefined;
|
|
1875
|
-
readonly dataQuality?: {
|
|
1876
|
-
uniqueness: boolean;
|
|
1877
|
-
completeness: number;
|
|
1878
|
-
accuracy?: {
|
|
1879
|
-
source: string;
|
|
1880
|
-
threshold: number;
|
|
1881
|
-
} | undefined;
|
|
1882
|
-
} | undefined;
|
|
1883
|
-
readonly group?: string | undefined;
|
|
1884
|
-
readonly conditionalRequired?: string | undefined;
|
|
1885
|
-
readonly hidden?: boolean | undefined;
|
|
1886
|
-
readonly sortable?: boolean | undefined;
|
|
1887
|
-
readonly inlineHelpText?: string | undefined;
|
|
1888
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1889
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1890
|
-
readonly autonumberFormat?: string | undefined;
|
|
1891
|
-
readonly index?: boolean | undefined;
|
|
1892
|
-
readonly externalId?: boolean | undefined;
|
|
1893
|
-
readonly type: "select";
|
|
1894
|
-
};
|
|
1895
|
-
readonly custom_status: {
|
|
1896
|
-
readonly format?: string | undefined;
|
|
1897
|
-
readonly expression?: string | undefined;
|
|
1898
|
-
readonly readonly?: boolean | undefined;
|
|
1899
|
-
readonly defaultValue?: unknown;
|
|
1900
|
-
readonly min?: number | undefined;
|
|
1901
|
-
readonly max?: number | undefined;
|
|
1902
|
-
readonly name?: string | undefined;
|
|
1903
|
-
readonly encryptionConfig?: {
|
|
1904
|
-
enabled: boolean;
|
|
1905
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1906
|
-
keyManagement: {
|
|
1907
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1908
|
-
keyId?: string | undefined;
|
|
1909
|
-
rotationPolicy?: {
|
|
1910
|
-
enabled: boolean;
|
|
1911
|
-
frequencyDays: number;
|
|
1912
|
-
retainOldVersions: number;
|
|
1913
|
-
autoRotate: boolean;
|
|
1914
|
-
} | undefined;
|
|
1915
|
-
};
|
|
1916
|
-
scope: "table" | "record" | "field" | "database";
|
|
1917
|
-
deterministicEncryption: boolean;
|
|
1918
|
-
searchableEncryption: boolean;
|
|
1919
|
-
} | undefined;
|
|
1920
|
-
readonly label?: string | undefined;
|
|
1921
|
-
readonly precision?: number | undefined;
|
|
1922
|
-
readonly description?: string | undefined;
|
|
1923
|
-
readonly columnName?: string | undefined;
|
|
1924
|
-
readonly required?: boolean | undefined;
|
|
1925
|
-
readonly searchable?: boolean | undefined;
|
|
1926
|
-
readonly multiple?: boolean | undefined;
|
|
1927
|
-
readonly unique?: boolean | undefined;
|
|
1928
|
-
readonly maxLength?: number | undefined;
|
|
1929
|
-
readonly minLength?: number | undefined;
|
|
1930
|
-
readonly scale?: number | undefined;
|
|
1931
|
-
readonly options?: {
|
|
1932
|
-
label: string;
|
|
1933
|
-
value: string;
|
|
1934
|
-
color?: string | undefined;
|
|
1935
|
-
default?: boolean | undefined;
|
|
1936
|
-
}[] | undefined;
|
|
1937
|
-
readonly reference?: string | undefined;
|
|
1938
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1939
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1940
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1941
|
-
readonly summaryOperations?: {
|
|
1942
|
-
object: string;
|
|
1943
|
-
field: string;
|
|
1944
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
1945
|
-
} | undefined;
|
|
1946
|
-
readonly language?: string | undefined;
|
|
1947
|
-
readonly theme?: string | undefined;
|
|
1948
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1949
|
-
readonly maxRating?: number | undefined;
|
|
1950
|
-
readonly allowHalf?: boolean | undefined;
|
|
1951
|
-
readonly displayMap?: boolean | undefined;
|
|
1952
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1953
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1954
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1955
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1956
|
-
readonly presetColors?: string[] | undefined;
|
|
1957
|
-
readonly step?: number | undefined;
|
|
1958
|
-
readonly showValue?: boolean | undefined;
|
|
1959
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1960
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1961
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1962
|
-
readonly displayValue?: boolean | undefined;
|
|
1963
|
-
readonly allowScanning?: boolean | undefined;
|
|
1964
|
-
readonly currencyConfig?: {
|
|
1965
|
-
precision: number;
|
|
1966
|
-
currencyMode: "dynamic" | "fixed";
|
|
1967
|
-
defaultCurrency: string;
|
|
1968
|
-
} | undefined;
|
|
1969
|
-
readonly vectorConfig?: {
|
|
1970
|
-
dimensions: number;
|
|
1971
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1972
|
-
normalized: boolean;
|
|
1973
|
-
indexed: boolean;
|
|
1974
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
1975
|
-
} | undefined;
|
|
1976
|
-
readonly fileAttachmentConfig?: {
|
|
1977
|
-
virusScan: boolean;
|
|
1978
|
-
virusScanOnUpload: boolean;
|
|
1979
|
-
quarantineOnThreat: boolean;
|
|
1980
|
-
allowMultiple: boolean;
|
|
1981
|
-
allowReplace: boolean;
|
|
1982
|
-
allowDelete: boolean;
|
|
1983
|
-
requireUpload: boolean;
|
|
1984
|
-
extractMetadata: boolean;
|
|
1985
|
-
extractText: boolean;
|
|
1986
|
-
versioningEnabled: boolean;
|
|
1987
|
-
publicRead: boolean;
|
|
1988
|
-
presignedUrlExpiry: number;
|
|
1989
|
-
minSize?: number | undefined;
|
|
1990
|
-
maxSize?: number | undefined;
|
|
1991
|
-
allowedTypes?: string[] | undefined;
|
|
1992
|
-
blockedTypes?: string[] | undefined;
|
|
1993
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1994
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1995
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1996
|
-
storageProvider?: string | undefined;
|
|
1997
|
-
storageBucket?: string | undefined;
|
|
1998
|
-
storagePrefix?: string | undefined;
|
|
1999
|
-
imageValidation?: {
|
|
2000
|
-
generateThumbnails: boolean;
|
|
2001
|
-
preserveMetadata: boolean;
|
|
2002
|
-
autoRotate: boolean;
|
|
2003
|
-
minWidth?: number | undefined;
|
|
2004
|
-
maxWidth?: number | undefined;
|
|
2005
|
-
minHeight?: number | undefined;
|
|
2006
|
-
maxHeight?: number | undefined;
|
|
2007
|
-
aspectRatio?: string | undefined;
|
|
2008
|
-
thumbnailSizes?: {
|
|
2009
|
-
name: string;
|
|
2010
|
-
width: number;
|
|
2011
|
-
height: number;
|
|
2012
|
-
crop: boolean;
|
|
2013
|
-
}[] | undefined;
|
|
2014
|
-
} | undefined;
|
|
2015
|
-
maxVersions?: number | undefined;
|
|
2016
|
-
} | undefined;
|
|
2017
|
-
readonly maskingRule?: {
|
|
2018
|
-
field: string;
|
|
2019
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2020
|
-
preserveFormat: boolean;
|
|
2021
|
-
preserveLength: boolean;
|
|
2022
|
-
pattern?: string | undefined;
|
|
2023
|
-
roles?: string[] | undefined;
|
|
2024
|
-
exemptRoles?: string[] | undefined;
|
|
2025
|
-
} | undefined;
|
|
2026
|
-
readonly auditTrail?: boolean | undefined;
|
|
2027
|
-
readonly dependencies?: string[] | undefined;
|
|
2028
|
-
readonly cached?: {
|
|
2029
|
-
enabled: boolean;
|
|
2030
|
-
ttl: number;
|
|
2031
|
-
invalidateOn: string[];
|
|
2032
|
-
} | undefined;
|
|
2033
|
-
readonly dataQuality?: {
|
|
2034
|
-
uniqueness: boolean;
|
|
2035
|
-
completeness: number;
|
|
2036
|
-
accuracy?: {
|
|
2037
|
-
source: string;
|
|
2038
|
-
threshold: number;
|
|
2039
|
-
} | undefined;
|
|
2040
|
-
} | undefined;
|
|
2041
|
-
readonly group?: string | undefined;
|
|
2042
|
-
readonly conditionalRequired?: string | undefined;
|
|
2043
|
-
readonly hidden?: boolean | undefined;
|
|
2044
|
-
readonly sortable?: boolean | undefined;
|
|
2045
|
-
readonly inlineHelpText?: string | undefined;
|
|
2046
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2047
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2048
|
-
readonly autonumberFormat?: string | undefined;
|
|
2049
|
-
readonly index?: boolean | undefined;
|
|
2050
|
-
readonly externalId?: boolean | undefined;
|
|
2051
|
-
readonly type: "text";
|
|
2052
|
-
};
|
|
2053
|
-
readonly metadata: {
|
|
2054
|
-
readonly format?: string | undefined;
|
|
2055
|
-
readonly expression?: string | undefined;
|
|
2056
|
-
readonly readonly?: boolean | undefined;
|
|
2057
|
-
readonly defaultValue?: unknown;
|
|
2058
|
-
readonly min?: number | undefined;
|
|
2059
|
-
readonly max?: number | undefined;
|
|
2060
|
-
readonly name?: string | undefined;
|
|
2061
|
-
readonly encryptionConfig?: {
|
|
2062
|
-
enabled: boolean;
|
|
2063
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2064
|
-
keyManagement: {
|
|
2065
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2066
|
-
keyId?: string | undefined;
|
|
2067
|
-
rotationPolicy?: {
|
|
2068
|
-
enabled: boolean;
|
|
2069
|
-
frequencyDays: number;
|
|
2070
|
-
retainOldVersions: number;
|
|
2071
|
-
autoRotate: boolean;
|
|
2072
|
-
} | undefined;
|
|
2073
|
-
};
|
|
2074
|
-
scope: "table" | "record" | "field" | "database";
|
|
2075
|
-
deterministicEncryption: boolean;
|
|
2076
|
-
searchableEncryption: boolean;
|
|
2077
|
-
} | undefined;
|
|
2078
|
-
readonly label?: string | undefined;
|
|
2079
|
-
readonly precision?: number | undefined;
|
|
2080
|
-
readonly description?: string | undefined;
|
|
2081
|
-
readonly columnName?: string | undefined;
|
|
2082
|
-
readonly required?: boolean | undefined;
|
|
2083
|
-
readonly searchable?: boolean | undefined;
|
|
2084
|
-
readonly multiple?: boolean | undefined;
|
|
2085
|
-
readonly unique?: boolean | undefined;
|
|
2086
|
-
readonly maxLength?: number | undefined;
|
|
2087
|
-
readonly minLength?: number | undefined;
|
|
2088
|
-
readonly scale?: number | undefined;
|
|
2089
|
-
readonly options?: {
|
|
2090
|
-
label: string;
|
|
2091
|
-
value: string;
|
|
2092
|
-
color?: string | undefined;
|
|
2093
|
-
default?: boolean | undefined;
|
|
2094
|
-
}[] | undefined;
|
|
2095
|
-
readonly reference?: string | undefined;
|
|
2096
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2097
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2098
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2099
|
-
readonly summaryOperations?: {
|
|
2100
|
-
object: string;
|
|
2101
|
-
field: string;
|
|
2102
|
-
function: "count" | "sum" | "avg" | "min" | "max";
|
|
2103
|
-
} | undefined;
|
|
2104
|
-
readonly language?: string | undefined;
|
|
2105
|
-
readonly theme?: string | undefined;
|
|
2106
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2107
|
-
readonly maxRating?: number | undefined;
|
|
2108
|
-
readonly allowHalf?: boolean | undefined;
|
|
2109
|
-
readonly displayMap?: boolean | undefined;
|
|
2110
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2111
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2112
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2113
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2114
|
-
readonly presetColors?: string[] | undefined;
|
|
2115
|
-
readonly step?: number | undefined;
|
|
2116
|
-
readonly showValue?: boolean | undefined;
|
|
2117
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2118
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2119
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2120
|
-
readonly displayValue?: boolean | undefined;
|
|
2121
|
-
readonly allowScanning?: boolean | undefined;
|
|
2122
|
-
readonly currencyConfig?: {
|
|
2123
|
-
precision: number;
|
|
2124
|
-
currencyMode: "dynamic" | "fixed";
|
|
2125
|
-
defaultCurrency: string;
|
|
2126
|
-
} | undefined;
|
|
2127
|
-
readonly vectorConfig?: {
|
|
2128
|
-
dimensions: number;
|
|
2129
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2130
|
-
normalized: boolean;
|
|
2131
|
-
indexed: boolean;
|
|
2132
|
-
indexType?: "hnsw" | "ivfflat" | "flat" | undefined;
|
|
2133
|
-
} | undefined;
|
|
2134
|
-
readonly fileAttachmentConfig?: {
|
|
2135
|
-
virusScan: boolean;
|
|
2136
|
-
virusScanOnUpload: boolean;
|
|
2137
|
-
quarantineOnThreat: boolean;
|
|
2138
|
-
allowMultiple: boolean;
|
|
2139
|
-
allowReplace: boolean;
|
|
2140
|
-
allowDelete: boolean;
|
|
2141
|
-
requireUpload: boolean;
|
|
2142
|
-
extractMetadata: boolean;
|
|
2143
|
-
extractText: boolean;
|
|
2144
|
-
versioningEnabled: boolean;
|
|
2145
|
-
publicRead: boolean;
|
|
2146
|
-
presignedUrlExpiry: number;
|
|
2147
|
-
minSize?: number | undefined;
|
|
2148
|
-
maxSize?: number | undefined;
|
|
2149
|
-
allowedTypes?: string[] | undefined;
|
|
2150
|
-
blockedTypes?: string[] | undefined;
|
|
2151
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2152
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2153
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2154
|
-
storageProvider?: string | undefined;
|
|
2155
|
-
storageBucket?: string | undefined;
|
|
2156
|
-
storagePrefix?: string | undefined;
|
|
2157
|
-
imageValidation?: {
|
|
2158
|
-
generateThumbnails: boolean;
|
|
2159
|
-
preserveMetadata: boolean;
|
|
2160
|
-
autoRotate: boolean;
|
|
2161
|
-
minWidth?: number | undefined;
|
|
2162
|
-
maxWidth?: number | undefined;
|
|
2163
|
-
minHeight?: number | undefined;
|
|
2164
|
-
maxHeight?: number | undefined;
|
|
2165
|
-
aspectRatio?: string | undefined;
|
|
2166
|
-
thumbnailSizes?: {
|
|
2167
|
-
name: string;
|
|
2168
|
-
width: number;
|
|
2169
|
-
height: number;
|
|
2170
|
-
crop: boolean;
|
|
2171
|
-
}[] | undefined;
|
|
2172
|
-
} | undefined;
|
|
2173
|
-
maxVersions?: number | undefined;
|
|
2174
|
-
} | undefined;
|
|
2175
|
-
readonly maskingRule?: {
|
|
2176
|
-
field: string;
|
|
2177
|
-
strategy: "redact" | "partial" | "hash" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2178
|
-
preserveFormat: boolean;
|
|
2179
|
-
preserveLength: boolean;
|
|
2180
|
-
pattern?: string | undefined;
|
|
2181
|
-
roles?: string[] | undefined;
|
|
2182
|
-
exemptRoles?: string[] | undefined;
|
|
2183
|
-
} | undefined;
|
|
2184
|
-
readonly auditTrail?: boolean | undefined;
|
|
2185
|
-
readonly dependencies?: string[] | undefined;
|
|
2186
|
-
readonly cached?: {
|
|
2187
|
-
enabled: boolean;
|
|
2188
|
-
ttl: number;
|
|
2189
|
-
invalidateOn: string[];
|
|
2190
|
-
} | undefined;
|
|
2191
|
-
readonly dataQuality?: {
|
|
2192
|
-
uniqueness: boolean;
|
|
2193
|
-
completeness: number;
|
|
2194
|
-
accuracy?: {
|
|
2195
|
-
source: string;
|
|
2196
|
-
threshold: number;
|
|
2197
|
-
} | undefined;
|
|
2198
|
-
} | undefined;
|
|
2199
|
-
readonly group?: string | undefined;
|
|
2200
|
-
readonly conditionalRequired?: string | undefined;
|
|
2201
|
-
readonly hidden?: boolean | undefined;
|
|
2202
|
-
readonly sortable?: boolean | undefined;
|
|
2203
|
-
readonly inlineHelpText?: string | undefined;
|
|
2204
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2205
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2206
|
-
readonly autonumberFormat?: string | undefined;
|
|
2207
|
-
readonly index?: boolean | undefined;
|
|
2208
|
-
readonly externalId?: boolean | undefined;
|
|
2209
|
-
readonly type: "json";
|
|
2210
|
-
};
|
|
2211
|
-
};
|
|
2212
|
-
readonly indexes: [{
|
|
2213
|
-
readonly fields: ["user_id"];
|
|
2214
|
-
readonly unique: false;
|
|
2215
|
-
}, {
|
|
2216
|
-
readonly fields: ["session_id"];
|
|
2217
|
-
readonly unique: true;
|
|
2218
|
-
}, {
|
|
2219
|
-
readonly fields: ["status"];
|
|
2220
|
-
readonly unique: false;
|
|
2221
|
-
}];
|
|
2222
|
-
readonly enable: {
|
|
2223
|
-
readonly trackHistory: false;
|
|
2224
|
-
readonly searchable: false;
|
|
2225
|
-
readonly apiEnabled: true;
|
|
2226
|
-
readonly apiMethods: ["get", "list", "create", "update", "delete"];
|
|
2227
|
-
readonly trash: false;
|
|
2228
|
-
readonly mru: false;
|
|
2229
|
-
};
|
|
2230
|
-
}, "fields">;
|
|
2231
|
-
|
|
2232
|
-
export { InMemoryRealtimeAdapter, type InMemoryRealtimeAdapterOptions, RealtimeServicePlugin, type RealtimeServicePluginOptions, SysPresence };
|
|
101
|
+
export { InMemoryRealtimeAdapter, type InMemoryRealtimeAdapterOptions, RealtimeServicePlugin, type RealtimeServicePluginOptions };
|