@objectstack/platform-objects 7.3.0 → 7.4.1

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.
Files changed (51) hide show
  1. package/dist/apps/index.d.mts +45 -19
  2. package/dist/apps/index.d.ts +45 -19
  3. package/dist/apps/index.js +1434 -3406
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +1434 -3407
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +4595 -26176
  8. package/dist/audit/index.d.ts +4595 -26176
  9. package/dist/audit/index.js +63 -1063
  10. package/dist/audit/index.js.map +1 -1
  11. package/dist/audit/index.mjs +64 -1057
  12. package/dist/audit/index.mjs.map +1 -1
  13. package/dist/identity/index.d.mts +839 -1281
  14. package/dist/identity/index.d.ts +839 -1281
  15. package/dist/index.d.mts +3 -8
  16. package/dist/index.d.ts +3 -8
  17. package/dist/index.js +2344 -6782
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +2343 -6767
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +1 -2947
  22. package/dist/integration/index.d.ts +1 -2947
  23. package/dist/integration/index.js +0 -136
  24. package/dist/integration/index.js.map +1 -1
  25. package/dist/integration/index.mjs +0 -135
  26. package/dist/integration/index.mjs.map +1 -1
  27. package/dist/metadata/index.d.mts +3924 -261
  28. package/dist/metadata/index.d.ts +3924 -261
  29. package/dist/metadata/index.js +101 -0
  30. package/dist/metadata/index.js.map +1 -1
  31. package/dist/metadata/index.mjs +101 -1
  32. package/dist/metadata/index.mjs.map +1 -1
  33. package/dist/metadata-translations/index.js +597 -505
  34. package/dist/metadata-translations/index.js.map +1 -1
  35. package/dist/metadata-translations/index.mjs +597 -505
  36. package/dist/metadata-translations/index.mjs.map +1 -1
  37. package/dist/plugin.js +1790 -3614
  38. package/dist/plugin.js.map +1 -1
  39. package/dist/plugin.mjs +1790 -3614
  40. package/dist/plugin.mjs.map +1 -1
  41. package/dist/security/index.d.mts +1 -18850
  42. package/dist/security/index.d.ts +1 -18850
  43. package/dist/security/index.js +0 -1531
  44. package/dist/security/index.js.map +1 -1
  45. package/dist/security/index.mjs +0 -1523
  46. package/dist/security/index.mjs.map +1 -1
  47. package/dist/system/index.d.mts +144 -212
  48. package/dist/system/index.d.ts +144 -212
  49. package/package.json +2 -2
  50. package/dist/state-machine.zod-BNanU03M.d-Ek3_yo9P.d.mts +0 -41
  51. package/dist/state-machine.zod-BNanU03M.d-Ek3_yo9P.d.ts +0 -41
@@ -1,2948 +1,2 @@
1
- import { S as StateNodeConfig } from '../state-machine.zod-BNanU03M.d-Ek3_yo9P.js';
2
- import * as _objectstack_spec_data from '@objectstack/spec/data';
3
- import 'zod';
4
1
 
5
- /**
6
- * sys_webhook — Outbound HTTP integration configuration (runtime).
7
- *
8
- * Persists a single {@link Webhook} envelope per row so administrators
9
- * can author, enable/disable, and edit webhook subscriptions from the
10
- * Studio UI without code changes. The canonical Zod schema for the
11
- * `definition_json` envelope lives at `@objectstack/spec/automation/webhook`.
12
- *
13
- * One row per `name`. The HTTP connector plugin
14
- * (`@objectstack/service-automation/plugins/http-connector-plugin`) loads
15
- * active rows on boot + on `sys_webhook:changed` events, registers
16
- * `afterInsert` / `afterUpdate` / `afterDelete` listeners for the
17
- * targeted object, and dispatches outbound HTTP calls when matching
18
- * record events fire.
19
- *
20
- * Platform-wide on purpose: every project (standalone, single-tenant,
21
- * cloud) can integrate with external systems (Slack, Stripe, internal
22
- * services) the same way. The control-plane-only `sys_environment*`
23
- * objects live in @objectstack/service-tenant; webhooks are
24
- * orthogonal and ship with every kernel.
25
- *
26
- * @namespace sys
27
- */
28
- declare const SysWebhook: Omit<{
29
- name: string;
30
- active: boolean;
31
- isSystem: boolean;
32
- abstract: boolean;
33
- datasource: string;
34
- fields: Record<string, {
35
- type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
36
- required: boolean;
37
- searchable: boolean;
38
- multiple: boolean;
39
- unique: boolean;
40
- deleteBehavior: "set_null" | "cascade" | "restrict";
41
- auditTrail: boolean;
42
- hidden: boolean;
43
- readonly: boolean;
44
- sortable: boolean;
45
- index: boolean;
46
- externalId: boolean;
47
- name?: string | undefined;
48
- label?: string | undefined;
49
- description?: string | undefined;
50
- format?: string | undefined;
51
- columnName?: string | undefined;
52
- defaultValue?: unknown;
53
- maxLength?: number | undefined;
54
- minLength?: number | undefined;
55
- precision?: number | undefined;
56
- scale?: number | undefined;
57
- min?: number | undefined;
58
- max?: number | undefined;
59
- options?: {
60
- label: string;
61
- value: string;
62
- color?: string | undefined;
63
- default?: boolean | undefined;
64
- }[] | undefined;
65
- reference?: string | undefined;
66
- referenceFilters?: string[] | undefined;
67
- writeRequiresMasterRead?: boolean | undefined;
68
- expression?: {
69
- dialect: "cel" | "js" | "cron" | "template";
70
- source?: string | undefined;
71
- ast?: unknown;
72
- meta?: {
73
- rationale?: string | undefined;
74
- generatedBy?: string | undefined;
75
- } | undefined;
76
- } | {
77
- dialect: "cel" | "js" | "cron" | "template";
78
- source?: string | undefined;
79
- ast?: unknown;
80
- meta?: {
81
- rationale?: string | undefined;
82
- generatedBy?: string | undefined;
83
- } | undefined;
84
- } | undefined;
85
- summaryOperations?: {
86
- object: string;
87
- field: string;
88
- function: "min" | "max" | "count" | "sum" | "avg";
89
- } | undefined;
90
- language?: string | undefined;
91
- theme?: string | undefined;
92
- lineNumbers?: boolean | undefined;
93
- maxRating?: number | undefined;
94
- allowHalf?: boolean | undefined;
95
- displayMap?: boolean | undefined;
96
- allowGeocoding?: boolean | undefined;
97
- addressFormat?: "us" | "uk" | "international" | undefined;
98
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
99
- allowAlpha?: boolean | undefined;
100
- presetColors?: string[] | undefined;
101
- step?: number | undefined;
102
- showValue?: boolean | undefined;
103
- marks?: Record<string, string> | undefined;
104
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
105
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
106
- displayValue?: boolean | undefined;
107
- allowScanning?: boolean | undefined;
108
- currencyConfig?: {
109
- precision: number;
110
- currencyMode: "fixed" | "dynamic";
111
- defaultCurrency: string;
112
- } | undefined;
113
- vectorConfig?: {
114
- dimensions: number;
115
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
116
- normalized: boolean;
117
- indexed: boolean;
118
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
119
- } | undefined;
120
- fileAttachmentConfig?: {
121
- virusScan: boolean;
122
- virusScanOnUpload: boolean;
123
- quarantineOnThreat: boolean;
124
- allowMultiple: boolean;
125
- allowReplace: boolean;
126
- allowDelete: boolean;
127
- requireUpload: boolean;
128
- extractMetadata: boolean;
129
- extractText: boolean;
130
- versioningEnabled: boolean;
131
- publicRead: boolean;
132
- presignedUrlExpiry: number;
133
- minSize?: number | undefined;
134
- maxSize?: number | undefined;
135
- allowedTypes?: string[] | undefined;
136
- blockedTypes?: string[] | undefined;
137
- allowedMimeTypes?: string[] | undefined;
138
- blockedMimeTypes?: string[] | undefined;
139
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
140
- storageProvider?: string | undefined;
141
- storageBucket?: string | undefined;
142
- storagePrefix?: string | undefined;
143
- imageValidation?: {
144
- generateThumbnails: boolean;
145
- preserveMetadata: boolean;
146
- autoRotate: boolean;
147
- minWidth?: number | undefined;
148
- maxWidth?: number | undefined;
149
- minHeight?: number | undefined;
150
- maxHeight?: number | undefined;
151
- aspectRatio?: string | undefined;
152
- thumbnailSizes?: {
153
- name: string;
154
- width: number;
155
- height: number;
156
- crop: boolean;
157
- }[] | undefined;
158
- } | undefined;
159
- maxVersions?: number | undefined;
160
- } | undefined;
161
- encryptionConfig?: {
162
- enabled: boolean;
163
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
164
- keyManagement: {
165
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
166
- keyId?: string | undefined;
167
- rotationPolicy?: {
168
- enabled: boolean;
169
- frequencyDays: number;
170
- retainOldVersions: number;
171
- autoRotate: boolean;
172
- } | undefined;
173
- };
174
- scope: "record" | "field" | "table" | "database";
175
- deterministicEncryption: boolean;
176
- searchableEncryption: boolean;
177
- } | undefined;
178
- maskingRule?: {
179
- field: string;
180
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
181
- preserveFormat: boolean;
182
- preserveLength: boolean;
183
- pattern?: string | undefined;
184
- roles?: string[] | undefined;
185
- exemptRoles?: string[] | undefined;
186
- } | undefined;
187
- dependencies?: string[] | undefined;
188
- cached?: {
189
- enabled: boolean;
190
- ttl: number;
191
- invalidateOn: string[];
192
- } | undefined;
193
- dataQuality?: {
194
- uniqueness: boolean;
195
- completeness: number;
196
- accuracy?: {
197
- source: string;
198
- threshold: number;
199
- } | undefined;
200
- } | undefined;
201
- group?: string | undefined;
202
- conditionalRequired?: {
203
- dialect: "cel" | "js" | "cron" | "template";
204
- source?: string | undefined;
205
- ast?: unknown;
206
- meta?: {
207
- rationale?: string | undefined;
208
- generatedBy?: string | undefined;
209
- } | undefined;
210
- } | {
211
- dialect: "cel" | "js" | "cron" | "template";
212
- source?: string | undefined;
213
- ast?: unknown;
214
- meta?: {
215
- rationale?: string | undefined;
216
- generatedBy?: string | undefined;
217
- } | undefined;
218
- } | undefined;
219
- system?: boolean | undefined;
220
- inlineHelpText?: string | undefined;
221
- trackFeedHistory?: boolean | undefined;
222
- caseSensitive?: boolean | undefined;
223
- autonumberFormat?: string | undefined;
224
- }>;
225
- _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
226
- _lockReason?: string | undefined;
227
- _lockSource?: "artifact" | "package" | "env-forced" | undefined;
228
- _provenance?: "package" | "env-forced" | "org" | undefined;
229
- _packageId?: string | undefined;
230
- _packageVersion?: string | undefined;
231
- _lockDocsUrl?: string | undefined;
232
- label?: string | undefined;
233
- pluralLabel?: string | undefined;
234
- description?: string | undefined;
235
- icon?: string | undefined;
236
- tags?: string[] | undefined;
237
- managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
238
- userActions?: {
239
- create?: boolean | undefined;
240
- import?: boolean | undefined;
241
- edit?: boolean | undefined;
242
- delete?: boolean | undefined;
243
- exportCsv?: boolean | undefined;
244
- } | undefined;
245
- systemFields?: false | {
246
- tenant?: boolean | undefined;
247
- owner?: boolean | undefined;
248
- audit?: boolean | undefined;
249
- } | undefined;
250
- indexes?: {
251
- fields: string[];
252
- type: "hash" | "btree" | "gin" | "gist" | "fulltext";
253
- unique: boolean;
254
- name?: string | undefined;
255
- partial?: string | undefined;
256
- }[] | undefined;
257
- fieldGroups?: {
258
- key: string;
259
- label: string;
260
- defaultExpanded: boolean;
261
- icon?: string | undefined;
262
- description?: string | undefined;
263
- visibleOn?: {
264
- dialect: "cel" | "js" | "cron" | "template";
265
- source?: string | undefined;
266
- ast?: unknown;
267
- meta?: {
268
- rationale?: string | undefined;
269
- generatedBy?: string | undefined;
270
- } | undefined;
271
- } | {
272
- dialect: "cel" | "js" | "cron" | "template";
273
- source?: string | undefined;
274
- ast?: unknown;
275
- meta?: {
276
- rationale?: string | undefined;
277
- generatedBy?: string | undefined;
278
- } | undefined;
279
- } | undefined;
280
- }[] | undefined;
281
- tenancy?: {
282
- enabled: boolean;
283
- strategy: "hybrid" | "shared" | "isolated";
284
- tenantField: string;
285
- crossTenantAccess: boolean;
286
- } | undefined;
287
- softDelete?: {
288
- enabled: boolean;
289
- field: string;
290
- cascadeDelete: boolean;
291
- } | undefined;
292
- versioning?: {
293
- enabled: boolean;
294
- strategy: "snapshot" | "delta" | "event-sourcing";
295
- versionField: string;
296
- retentionDays?: number | undefined;
297
- } | undefined;
298
- partitioning?: {
299
- enabled: boolean;
300
- strategy: "hash" | "list" | "range";
301
- key: string;
302
- interval?: string | undefined;
303
- } | undefined;
304
- cdc?: {
305
- enabled: boolean;
306
- events: ("delete" | "update" | "insert")[];
307
- destination: string;
308
- } | undefined;
309
- validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
310
- stateMachines?: Record<string, {
311
- id: string;
312
- initial: string;
313
- states: Record<string, StateNodeConfig>;
314
- description?: string | undefined;
315
- contextSchema?: Record<string, unknown> | undefined;
316
- on?: Record<string, string | {
317
- target?: string | undefined;
318
- cond?: string | {
319
- type: string;
320
- params?: Record<string, unknown> | undefined;
321
- } | undefined;
322
- actions?: (string | {
323
- type: string;
324
- params?: Record<string, unknown> | undefined;
325
- })[] | undefined;
326
- description?: string | undefined;
327
- } | {
328
- target?: string | undefined;
329
- cond?: string | {
330
- type: string;
331
- params?: Record<string, unknown> | undefined;
332
- } | undefined;
333
- actions?: (string | {
334
- type: string;
335
- params?: Record<string, unknown> | undefined;
336
- })[] | undefined;
337
- description?: string | undefined;
338
- }[]> | undefined;
339
- }> | undefined;
340
- displayNameField?: string | undefined;
341
- recordName?: {
342
- type: "text" | "autonumber";
343
- displayFormat?: string | undefined;
344
- startNumber?: number | undefined;
345
- } | undefined;
346
- titleFormat?: {
347
- dialect: "cel" | "js" | "cron" | "template";
348
- source?: string | undefined;
349
- ast?: unknown;
350
- meta?: {
351
- rationale?: string | undefined;
352
- generatedBy?: string | undefined;
353
- } | undefined;
354
- } | {
355
- dialect: "cel" | "js" | "cron" | "template";
356
- source?: string | undefined;
357
- ast?: unknown;
358
- meta?: {
359
- rationale?: string | undefined;
360
- generatedBy?: string | undefined;
361
- } | undefined;
362
- } | undefined;
363
- compactLayout?: string[] | undefined;
364
- listViews?: Record<string, {
365
- type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map" | "grid";
366
- columns: string[] | {
367
- field: string;
368
- label?: string | undefined;
369
- width?: number | undefined;
370
- align?: "left" | "center" | "right" | undefined;
371
- hidden?: boolean | undefined;
372
- sortable?: boolean | undefined;
373
- resizable?: boolean | undefined;
374
- wrap?: boolean | undefined;
375
- type?: string | undefined;
376
- pinned?: "left" | "right" | undefined;
377
- summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
378
- link?: boolean | undefined;
379
- action?: string | undefined;
380
- }[];
381
- name?: string | undefined;
382
- label?: string | undefined;
383
- data?: {
384
- provider: "object";
385
- object: string;
386
- } | {
387
- provider: "api";
388
- read?: {
389
- url: string;
390
- method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
391
- headers?: Record<string, string> | undefined;
392
- params?: Record<string, unknown> | undefined;
393
- body?: unknown;
394
- } | undefined;
395
- write?: {
396
- url: string;
397
- method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
398
- headers?: Record<string, string> | undefined;
399
- params?: Record<string, unknown> | undefined;
400
- body?: unknown;
401
- } | undefined;
402
- } | {
403
- provider: "value";
404
- items: unknown[];
405
- } | {
406
- provider: "schema";
407
- schemaId: string;
408
- schema?: Record<string, unknown> | undefined;
409
- } | undefined;
410
- filter?: {
411
- field: string;
412
- operator: string;
413
- value?: string | number | boolean | (string | number)[] | null | undefined;
414
- }[] | undefined;
415
- sort?: string | {
416
- field: string;
417
- order: "asc" | "desc";
418
- }[] | undefined;
419
- searchableFields?: string[] | undefined;
420
- filterableFields?: string[] | undefined;
421
- resizable?: boolean | undefined;
422
- striped?: boolean | undefined;
423
- bordered?: boolean | undefined;
424
- compactToolbar?: boolean | undefined;
425
- selection?: {
426
- type: "none" | "multiple" | "single";
427
- } | undefined;
428
- navigation?: {
429
- mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
430
- preventNavigation: boolean;
431
- openNewTab: boolean;
432
- view?: string | undefined;
433
- width?: string | number | undefined;
434
- } | undefined;
435
- pagination?: {
436
- pageSize: number;
437
- pageSizeOptions?: number[] | undefined;
438
- } | undefined;
439
- kanban?: {
440
- groupByField: string;
441
- columns: string[];
442
- summarizeField?: string | undefined;
443
- } | undefined;
444
- calendar?: {
445
- startDateField: string;
446
- titleField: string;
447
- endDateField?: string | undefined;
448
- colorField?: string | undefined;
449
- } | undefined;
450
- gantt?: {
451
- startDateField: string;
452
- endDateField: string;
453
- titleField: string;
454
- progressField?: string | undefined;
455
- dependenciesField?: string | undefined;
456
- } | undefined;
457
- gallery?: {
458
- coverFit: "cover" | "contain";
459
- cardSize: "small" | "medium" | "large";
460
- coverField?: string | undefined;
461
- titleField?: string | undefined;
462
- visibleFields?: string[] | undefined;
463
- } | undefined;
464
- timeline?: {
465
- startDateField: string;
466
- titleField: string;
467
- scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
468
- endDateField?: string | undefined;
469
- groupByField?: string | undefined;
470
- colorField?: string | undefined;
471
- } | undefined;
472
- chart?: {
473
- chartType: "bar" | "line" | "pie" | "area" | "scatter";
474
- xAxisField: string;
475
- yAxisFields: string[];
476
- aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
477
- groupByField?: string | undefined;
478
- } | undefined;
479
- description?: string | undefined;
480
- sharing?: {
481
- type: "personal" | "collaborative";
482
- lockedBy?: string | undefined;
483
- } | undefined;
484
- rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
485
- grouping?: {
486
- fields: {
487
- field: string;
488
- order: "asc" | "desc";
489
- collapsed: boolean;
490
- }[];
491
- } | undefined;
492
- rowColor?: {
493
- field: string;
494
- colors?: Record<string, string> | undefined;
495
- } | undefined;
496
- hiddenFields?: string[] | undefined;
497
- fieldOrder?: string[] | undefined;
498
- rowActions?: string[] | undefined;
499
- bulkActions?: string[] | undefined;
500
- bulkActionDefs?: Record<string, any>[] | undefined;
501
- virtualScroll?: boolean | undefined;
502
- conditionalFormatting?: {
503
- condition: {
504
- dialect: "cel" | "js" | "cron" | "template";
505
- source?: string | undefined;
506
- ast?: unknown;
507
- meta?: {
508
- rationale?: string | undefined;
509
- generatedBy?: string | undefined;
510
- } | undefined;
511
- } | {
512
- dialect: "cel" | "js" | "cron" | "template";
513
- source?: string | undefined;
514
- ast?: unknown;
515
- meta?: {
516
- rationale?: string | undefined;
517
- generatedBy?: string | undefined;
518
- } | undefined;
519
- };
520
- style: Record<string, string>;
521
- }[] | undefined;
522
- inlineEdit?: boolean | undefined;
523
- exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
524
- userActions?: {
525
- sort: boolean;
526
- search: boolean;
527
- filter: boolean;
528
- rowHeight: boolean;
529
- addRecordForm: boolean;
530
- buttons?: string[] | undefined;
531
- } | undefined;
532
- appearance?: {
533
- showDescription: boolean;
534
- allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map" | "grid")[] | undefined;
535
- } | undefined;
536
- tabs?: {
537
- name: string;
538
- pinned: boolean;
539
- isDefault: boolean;
540
- visible: boolean;
541
- label?: string | undefined;
542
- icon?: string | undefined;
543
- view?: string | undefined;
544
- filter?: {
545
- field: string;
546
- operator: string;
547
- value?: string | number | boolean | (string | number)[] | null | undefined;
548
- }[] | undefined;
549
- order?: number | undefined;
550
- }[] | undefined;
551
- addRecord?: {
552
- enabled: boolean;
553
- position: "top" | "bottom" | "both";
554
- mode: "modal" | "form" | "inline";
555
- formView?: string | undefined;
556
- } | undefined;
557
- showRecordCount?: boolean | undefined;
558
- allowPrinting?: boolean | undefined;
559
- emptyState?: {
560
- title?: string | undefined;
561
- message?: string | undefined;
562
- icon?: string | undefined;
563
- } | undefined;
564
- aria?: {
565
- ariaLabel?: string | undefined;
566
- ariaDescribedBy?: string | undefined;
567
- role?: string | undefined;
568
- } | undefined;
569
- responsive?: {
570
- breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
571
- hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
572
- columns?: {
573
- xs?: number | undefined;
574
- sm?: number | undefined;
575
- md?: number | undefined;
576
- lg?: number | undefined;
577
- xl?: number | undefined;
578
- '2xl'?: number | undefined;
579
- } | undefined;
580
- order?: {
581
- xs?: number | undefined;
582
- sm?: number | undefined;
583
- md?: number | undefined;
584
- lg?: number | undefined;
585
- xl?: number | undefined;
586
- '2xl'?: number | undefined;
587
- } | undefined;
588
- } | undefined;
589
- performance?: {
590
- lazyLoad?: boolean | undefined;
591
- virtualScroll?: {
592
- enabled: boolean;
593
- itemHeight?: number | undefined;
594
- overscan?: number | undefined;
595
- } | undefined;
596
- cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
597
- prefetch?: boolean | undefined;
598
- pageSize?: number | undefined;
599
- debounceMs?: number | undefined;
600
- } | undefined;
601
- }> | undefined;
602
- defaultDetailForm?: string | undefined;
603
- search?: {
604
- fields: string[];
605
- displayFields?: string[] | undefined;
606
- filters?: string[] | undefined;
607
- } | undefined;
608
- enable?: {
609
- trackHistory: boolean;
610
- searchable: boolean;
611
- apiEnabled: boolean;
612
- files: boolean;
613
- feeds: boolean;
614
- activities: boolean;
615
- trash: boolean;
616
- mru: boolean;
617
- clone: boolean;
618
- apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
619
- } | undefined;
620
- recordTypes?: string[] | undefined;
621
- sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
622
- publicSharing?: {
623
- enabled: boolean;
624
- allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
625
- allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
626
- maxExpiryDays?: number | undefined;
627
- redactFields?: string[] | undefined;
628
- eligibility?: string | undefined;
629
- } | undefined;
630
- keyPrefix?: string | undefined;
631
- detail?: {
632
- [x: string]: unknown;
633
- renderViaSchema?: boolean | undefined;
634
- hideReferenceRail?: boolean | undefined;
635
- hideRelatedTab?: boolean | undefined;
636
- } | undefined;
637
- actions?: {
638
- name: string;
639
- label: string;
640
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
641
- refreshAfter: boolean;
642
- objectName?: string | undefined;
643
- icon?: string | undefined;
644
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
645
- component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
646
- target?: string | undefined;
647
- body?: {
648
- language: "expression";
649
- source: string;
650
- } | {
651
- language: "js";
652
- source: string;
653
- capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
654
- timeoutMs?: number | undefined;
655
- memoryMb?: number | undefined;
656
- } | undefined;
657
- execute?: string | undefined;
658
- params?: {
659
- required: boolean;
660
- name?: string | undefined;
661
- field?: string | undefined;
662
- objectOverride?: string | undefined;
663
- label?: string | undefined;
664
- type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
665
- options?: {
666
- label: string;
667
- value: string;
668
- }[] | undefined;
669
- placeholder?: string | undefined;
670
- helpText?: string | undefined;
671
- defaultValue?: unknown;
672
- defaultFromRow?: boolean | undefined;
673
- }[] | undefined;
674
- variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
675
- confirmText?: string | undefined;
676
- successMessage?: string | undefined;
677
- resultDialog?: {
678
- title?: string | undefined;
679
- description?: string | undefined;
680
- acknowledge?: string | undefined;
681
- format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
682
- fields?: {
683
- path: string;
684
- label?: string | undefined;
685
- format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
686
- }[] | undefined;
687
- } | undefined;
688
- visible?: {
689
- dialect: "cel" | "js" | "cron" | "template";
690
- source?: string | undefined;
691
- ast?: unknown;
692
- meta?: {
693
- rationale?: string | undefined;
694
- generatedBy?: string | undefined;
695
- } | undefined;
696
- } | undefined;
697
- disabled?: boolean | {
698
- dialect: "cel" | "js" | "cron" | "template";
699
- source?: string | undefined;
700
- ast?: unknown;
701
- meta?: {
702
- rationale?: string | undefined;
703
- generatedBy?: string | undefined;
704
- } | undefined;
705
- } | undefined;
706
- shortcut?: string | undefined;
707
- bulkEnabled?: boolean | undefined;
708
- aiExposed?: boolean | undefined;
709
- recordIdParam?: string | undefined;
710
- recordIdField?: string | undefined;
711
- bodyShape?: "flat" | {
712
- wrap: string;
713
- } | undefined;
714
- method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
715
- bodyExtra?: Record<string, unknown> | undefined;
716
- mode?: "custom" | "delete" | "create" | "edit" | undefined;
717
- timeout?: number | undefined;
718
- aria?: {
719
- ariaLabel?: string | undefined;
720
- ariaDescribedBy?: string | undefined;
721
- role?: string | undefined;
722
- } | undefined;
723
- }[] | undefined;
724
- protection?: {
725
- lock: "full" | "none" | "no-overlay" | "no-delete";
726
- reason: string;
727
- docsUrl?: string | undefined;
728
- } | undefined;
729
- }, "fields"> & Pick<{
730
- readonly name: "sys_webhook";
731
- readonly label: "Webhook";
732
- readonly pluralLabel: "Webhooks";
733
- readonly icon: "webhook";
734
- readonly isSystem: true;
735
- readonly managedBy: "config";
736
- readonly userActions: {
737
- readonly create: true;
738
- readonly edit: true;
739
- readonly delete: true;
740
- readonly import: false;
741
- };
742
- readonly description: "Outbound HTTP webhook subscription. Authored via defineWebhook() in code or the Studio editor; executed by the HTTP connector plugin.";
743
- readonly displayNameField: "name";
744
- readonly titleFormat: "{label}";
745
- readonly compactLayout: ["name", "object_name", "url", "active", "updated_at"];
746
- readonly listViews: {
747
- readonly active: {
748
- readonly type: "grid";
749
- readonly name: "active";
750
- readonly label: "Active";
751
- readonly data: {
752
- readonly provider: "object";
753
- readonly object: "sys_webhook";
754
- };
755
- readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
756
- readonly filter: [{
757
- readonly field: "active";
758
- readonly operator: "equals";
759
- readonly value: true;
760
- }];
761
- readonly sort: [{
762
- readonly field: "label";
763
- readonly order: "asc";
764
- }];
765
- readonly pagination: {
766
- readonly pageSize: 50;
767
- };
768
- };
769
- readonly inactive: {
770
- readonly type: "grid";
771
- readonly name: "inactive";
772
- readonly label: "Inactive";
773
- readonly data: {
774
- readonly provider: "object";
775
- readonly object: "sys_webhook";
776
- };
777
- readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
778
- readonly filter: [{
779
- readonly field: "active";
780
- readonly operator: "equals";
781
- readonly value: false;
782
- }];
783
- readonly sort: [{
784
- readonly field: "label";
785
- readonly order: "asc";
786
- }];
787
- readonly pagination: {
788
- readonly pageSize: 50;
789
- };
790
- };
791
- readonly by_object: {
792
- readonly type: "grid";
793
- readonly name: "by_object";
794
- readonly label: "By Object";
795
- readonly data: {
796
- readonly provider: "object";
797
- readonly object: "sys_webhook";
798
- };
799
- readonly columns: ["object_name", "label", "url", "active", "updated_at"];
800
- readonly sort: [{
801
- readonly field: "object_name";
802
- readonly order: "asc";
803
- }, {
804
- readonly field: "label";
805
- readonly order: "asc";
806
- }];
807
- readonly grouping: {
808
- readonly fields: [{
809
- readonly field: "object_name";
810
- readonly order: "asc";
811
- readonly collapsed: false;
812
- }];
813
- };
814
- readonly pagination: {
815
- readonly pageSize: 100;
816
- };
817
- };
818
- readonly all_webhooks: {
819
- readonly type: "grid";
820
- readonly name: "all_webhooks";
821
- readonly label: "All";
822
- readonly data: {
823
- readonly provider: "object";
824
- readonly object: "sys_webhook";
825
- };
826
- readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
827
- readonly sort: [{
828
- readonly field: "label";
829
- readonly order: "asc";
830
- }];
831
- readonly pagination: {
832
- readonly pageSize: 50;
833
- };
834
- };
835
- };
836
- readonly fields: {
837
- readonly id: {
838
- readonly readonly?: boolean | undefined;
839
- readonly format?: string | undefined;
840
- readonly options?: {
841
- label: string;
842
- value: string;
843
- color?: string | undefined;
844
- default?: boolean | undefined;
845
- }[] | undefined;
846
- readonly description?: string | undefined;
847
- readonly label?: string | undefined;
848
- readonly name?: string | undefined;
849
- readonly precision?: number | undefined;
850
- readonly required?: boolean | undefined;
851
- readonly multiple?: boolean | undefined;
852
- readonly dependencies?: string[] | undefined;
853
- readonly theme?: string | undefined;
854
- readonly externalId?: boolean | undefined;
855
- readonly system?: boolean | undefined;
856
- readonly min?: number | undefined;
857
- readonly max?: number | undefined;
858
- readonly group?: string | undefined;
859
- readonly encryptionConfig?: {
860
- enabled: boolean;
861
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
862
- keyManagement: {
863
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
864
- keyId?: string | undefined;
865
- rotationPolicy?: {
866
- enabled: boolean;
867
- frequencyDays: number;
868
- retainOldVersions: number;
869
- autoRotate: boolean;
870
- } | undefined;
871
- };
872
- scope: "record" | "field" | "table" | "database";
873
- deterministicEncryption: boolean;
874
- searchableEncryption: boolean;
875
- } | undefined;
876
- readonly columnName?: string | undefined;
877
- readonly searchable?: boolean | undefined;
878
- readonly unique?: boolean | undefined;
879
- readonly defaultValue?: unknown;
880
- readonly maxLength?: number | undefined;
881
- readonly minLength?: number | undefined;
882
- readonly scale?: number | undefined;
883
- readonly reference?: string | undefined;
884
- readonly referenceFilters?: string[] | undefined;
885
- readonly writeRequiresMasterRead?: boolean | undefined;
886
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
887
- readonly expression?: {
888
- dialect: "cel" | "js" | "cron" | "template";
889
- source?: string | undefined;
890
- ast?: unknown;
891
- meta?: {
892
- rationale?: string | undefined;
893
- generatedBy?: string | undefined;
894
- } | undefined;
895
- } | undefined;
896
- readonly summaryOperations?: {
897
- object: string;
898
- field: string;
899
- function: "min" | "max" | "count" | "sum" | "avg";
900
- } | undefined;
901
- readonly language?: string | undefined;
902
- readonly lineNumbers?: boolean | undefined;
903
- readonly maxRating?: number | undefined;
904
- readonly allowHalf?: boolean | undefined;
905
- readonly displayMap?: boolean | undefined;
906
- readonly allowGeocoding?: boolean | undefined;
907
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
908
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
909
- readonly allowAlpha?: boolean | undefined;
910
- readonly presetColors?: string[] | undefined;
911
- readonly step?: number | undefined;
912
- readonly showValue?: boolean | undefined;
913
- readonly marks?: Record<string, string> | undefined;
914
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
915
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
916
- readonly displayValue?: boolean | undefined;
917
- readonly allowScanning?: boolean | undefined;
918
- readonly currencyConfig?: {
919
- precision: number;
920
- currencyMode: "fixed" | "dynamic";
921
- defaultCurrency: string;
922
- } | undefined;
923
- readonly vectorConfig?: {
924
- dimensions: number;
925
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
926
- normalized: boolean;
927
- indexed: boolean;
928
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
929
- } | undefined;
930
- readonly fileAttachmentConfig?: {
931
- virusScan: boolean;
932
- virusScanOnUpload: boolean;
933
- quarantineOnThreat: boolean;
934
- allowMultiple: boolean;
935
- allowReplace: boolean;
936
- allowDelete: boolean;
937
- requireUpload: boolean;
938
- extractMetadata: boolean;
939
- extractText: boolean;
940
- versioningEnabled: boolean;
941
- publicRead: boolean;
942
- presignedUrlExpiry: number;
943
- minSize?: number | undefined;
944
- maxSize?: number | undefined;
945
- allowedTypes?: string[] | undefined;
946
- blockedTypes?: string[] | undefined;
947
- allowedMimeTypes?: string[] | undefined;
948
- blockedMimeTypes?: string[] | undefined;
949
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
950
- storageProvider?: string | undefined;
951
- storageBucket?: string | undefined;
952
- storagePrefix?: string | undefined;
953
- imageValidation?: {
954
- generateThumbnails: boolean;
955
- preserveMetadata: boolean;
956
- autoRotate: boolean;
957
- minWidth?: number | undefined;
958
- maxWidth?: number | undefined;
959
- minHeight?: number | undefined;
960
- maxHeight?: number | undefined;
961
- aspectRatio?: string | undefined;
962
- thumbnailSizes?: {
963
- name: string;
964
- width: number;
965
- height: number;
966
- crop: boolean;
967
- }[] | undefined;
968
- } | undefined;
969
- maxVersions?: number | undefined;
970
- } | undefined;
971
- readonly maskingRule?: {
972
- field: string;
973
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
974
- preserveFormat: boolean;
975
- preserveLength: boolean;
976
- pattern?: string | undefined;
977
- roles?: string[] | undefined;
978
- exemptRoles?: string[] | undefined;
979
- } | undefined;
980
- readonly auditTrail?: boolean | undefined;
981
- readonly cached?: {
982
- enabled: boolean;
983
- ttl: number;
984
- invalidateOn: string[];
985
- } | undefined;
986
- readonly dataQuality?: {
987
- uniqueness: boolean;
988
- completeness: number;
989
- accuracy?: {
990
- source: string;
991
- threshold: number;
992
- } | undefined;
993
- } | undefined;
994
- readonly conditionalRequired?: {
995
- dialect: "cel" | "js" | "cron" | "template";
996
- source?: string | undefined;
997
- ast?: unknown;
998
- meta?: {
999
- rationale?: string | undefined;
1000
- generatedBy?: string | undefined;
1001
- } | undefined;
1002
- } | undefined;
1003
- readonly hidden?: boolean | undefined;
1004
- readonly sortable?: boolean | undefined;
1005
- readonly inlineHelpText?: string | undefined;
1006
- readonly trackFeedHistory?: boolean | undefined;
1007
- readonly caseSensitive?: boolean | undefined;
1008
- readonly autonumberFormat?: string | undefined;
1009
- readonly index?: boolean | undefined;
1010
- readonly type: "text";
1011
- };
1012
- readonly name: {
1013
- readonly readonly?: boolean | undefined;
1014
- readonly format?: string | undefined;
1015
- readonly options?: {
1016
- label: string;
1017
- value: string;
1018
- color?: string | undefined;
1019
- default?: boolean | undefined;
1020
- }[] | undefined;
1021
- readonly description?: string | undefined;
1022
- readonly label?: string | undefined;
1023
- readonly name?: string | undefined;
1024
- readonly precision?: number | undefined;
1025
- readonly required?: boolean | undefined;
1026
- readonly multiple?: boolean | undefined;
1027
- readonly dependencies?: string[] | undefined;
1028
- readonly theme?: string | undefined;
1029
- readonly externalId?: boolean | undefined;
1030
- readonly system?: boolean | undefined;
1031
- readonly min?: number | undefined;
1032
- readonly max?: number | undefined;
1033
- readonly group?: string | undefined;
1034
- readonly encryptionConfig?: {
1035
- enabled: boolean;
1036
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1037
- keyManagement: {
1038
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1039
- keyId?: string | undefined;
1040
- rotationPolicy?: {
1041
- enabled: boolean;
1042
- frequencyDays: number;
1043
- retainOldVersions: number;
1044
- autoRotate: boolean;
1045
- } | undefined;
1046
- };
1047
- scope: "record" | "field" | "table" | "database";
1048
- deterministicEncryption: boolean;
1049
- searchableEncryption: boolean;
1050
- } | undefined;
1051
- readonly columnName?: string | undefined;
1052
- readonly searchable?: boolean | undefined;
1053
- readonly unique?: boolean | undefined;
1054
- readonly defaultValue?: unknown;
1055
- readonly maxLength?: number | undefined;
1056
- readonly minLength?: number | undefined;
1057
- readonly scale?: number | undefined;
1058
- readonly reference?: string | undefined;
1059
- readonly referenceFilters?: string[] | undefined;
1060
- readonly writeRequiresMasterRead?: boolean | undefined;
1061
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1062
- readonly expression?: {
1063
- dialect: "cel" | "js" | "cron" | "template";
1064
- source?: string | undefined;
1065
- ast?: unknown;
1066
- meta?: {
1067
- rationale?: string | undefined;
1068
- generatedBy?: string | undefined;
1069
- } | undefined;
1070
- } | undefined;
1071
- readonly summaryOperations?: {
1072
- object: string;
1073
- field: string;
1074
- function: "min" | "max" | "count" | "sum" | "avg";
1075
- } | undefined;
1076
- readonly language?: string | undefined;
1077
- readonly lineNumbers?: boolean | undefined;
1078
- readonly maxRating?: number | undefined;
1079
- readonly allowHalf?: boolean | undefined;
1080
- readonly displayMap?: boolean | undefined;
1081
- readonly allowGeocoding?: boolean | undefined;
1082
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1083
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1084
- readonly allowAlpha?: boolean | undefined;
1085
- readonly presetColors?: string[] | undefined;
1086
- readonly step?: number | undefined;
1087
- readonly showValue?: boolean | undefined;
1088
- readonly marks?: Record<string, string> | undefined;
1089
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1090
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1091
- readonly displayValue?: boolean | undefined;
1092
- readonly allowScanning?: boolean | undefined;
1093
- readonly currencyConfig?: {
1094
- precision: number;
1095
- currencyMode: "fixed" | "dynamic";
1096
- defaultCurrency: string;
1097
- } | undefined;
1098
- readonly vectorConfig?: {
1099
- dimensions: number;
1100
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1101
- normalized: boolean;
1102
- indexed: boolean;
1103
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1104
- } | undefined;
1105
- readonly fileAttachmentConfig?: {
1106
- virusScan: boolean;
1107
- virusScanOnUpload: boolean;
1108
- quarantineOnThreat: boolean;
1109
- allowMultiple: boolean;
1110
- allowReplace: boolean;
1111
- allowDelete: boolean;
1112
- requireUpload: boolean;
1113
- extractMetadata: boolean;
1114
- extractText: boolean;
1115
- versioningEnabled: boolean;
1116
- publicRead: boolean;
1117
- presignedUrlExpiry: number;
1118
- minSize?: number | undefined;
1119
- maxSize?: number | undefined;
1120
- allowedTypes?: string[] | undefined;
1121
- blockedTypes?: string[] | undefined;
1122
- allowedMimeTypes?: string[] | undefined;
1123
- blockedMimeTypes?: string[] | undefined;
1124
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1125
- storageProvider?: string | undefined;
1126
- storageBucket?: string | undefined;
1127
- storagePrefix?: string | undefined;
1128
- imageValidation?: {
1129
- generateThumbnails: boolean;
1130
- preserveMetadata: boolean;
1131
- autoRotate: boolean;
1132
- minWidth?: number | undefined;
1133
- maxWidth?: number | undefined;
1134
- minHeight?: number | undefined;
1135
- maxHeight?: number | undefined;
1136
- aspectRatio?: string | undefined;
1137
- thumbnailSizes?: {
1138
- name: string;
1139
- width: number;
1140
- height: number;
1141
- crop: boolean;
1142
- }[] | undefined;
1143
- } | undefined;
1144
- maxVersions?: number | undefined;
1145
- } | undefined;
1146
- readonly maskingRule?: {
1147
- field: string;
1148
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1149
- preserveFormat: boolean;
1150
- preserveLength: boolean;
1151
- pattern?: string | undefined;
1152
- roles?: string[] | undefined;
1153
- exemptRoles?: string[] | undefined;
1154
- } | undefined;
1155
- readonly auditTrail?: boolean | undefined;
1156
- readonly cached?: {
1157
- enabled: boolean;
1158
- ttl: number;
1159
- invalidateOn: string[];
1160
- } | undefined;
1161
- readonly dataQuality?: {
1162
- uniqueness: boolean;
1163
- completeness: number;
1164
- accuracy?: {
1165
- source: string;
1166
- threshold: number;
1167
- } | undefined;
1168
- } | undefined;
1169
- readonly conditionalRequired?: {
1170
- dialect: "cel" | "js" | "cron" | "template";
1171
- source?: string | undefined;
1172
- ast?: unknown;
1173
- meta?: {
1174
- rationale?: string | undefined;
1175
- generatedBy?: string | undefined;
1176
- } | undefined;
1177
- } | undefined;
1178
- readonly hidden?: boolean | undefined;
1179
- readonly sortable?: boolean | undefined;
1180
- readonly inlineHelpText?: string | undefined;
1181
- readonly trackFeedHistory?: boolean | undefined;
1182
- readonly caseSensitive?: boolean | undefined;
1183
- readonly autonumberFormat?: string | undefined;
1184
- readonly index?: boolean | undefined;
1185
- readonly type: "text";
1186
- };
1187
- readonly label: {
1188
- readonly readonly?: boolean | undefined;
1189
- readonly format?: string | undefined;
1190
- readonly options?: {
1191
- label: string;
1192
- value: string;
1193
- color?: string | undefined;
1194
- default?: boolean | undefined;
1195
- }[] | undefined;
1196
- readonly description?: string | undefined;
1197
- readonly label?: string | undefined;
1198
- readonly name?: string | undefined;
1199
- readonly precision?: number | undefined;
1200
- readonly required?: boolean | undefined;
1201
- readonly multiple?: boolean | undefined;
1202
- readonly dependencies?: string[] | undefined;
1203
- readonly theme?: string | undefined;
1204
- readonly externalId?: boolean | undefined;
1205
- readonly system?: boolean | undefined;
1206
- readonly min?: number | undefined;
1207
- readonly max?: number | undefined;
1208
- readonly group?: string | undefined;
1209
- readonly encryptionConfig?: {
1210
- enabled: boolean;
1211
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1212
- keyManagement: {
1213
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1214
- keyId?: string | undefined;
1215
- rotationPolicy?: {
1216
- enabled: boolean;
1217
- frequencyDays: number;
1218
- retainOldVersions: number;
1219
- autoRotate: boolean;
1220
- } | undefined;
1221
- };
1222
- scope: "record" | "field" | "table" | "database";
1223
- deterministicEncryption: boolean;
1224
- searchableEncryption: boolean;
1225
- } | undefined;
1226
- readonly columnName?: string | undefined;
1227
- readonly searchable?: boolean | undefined;
1228
- readonly unique?: boolean | undefined;
1229
- readonly defaultValue?: unknown;
1230
- readonly maxLength?: number | undefined;
1231
- readonly minLength?: number | undefined;
1232
- readonly scale?: number | undefined;
1233
- readonly reference?: string | undefined;
1234
- readonly referenceFilters?: string[] | undefined;
1235
- readonly writeRequiresMasterRead?: boolean | undefined;
1236
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1237
- readonly expression?: {
1238
- dialect: "cel" | "js" | "cron" | "template";
1239
- source?: string | undefined;
1240
- ast?: unknown;
1241
- meta?: {
1242
- rationale?: string | undefined;
1243
- generatedBy?: string | undefined;
1244
- } | undefined;
1245
- } | undefined;
1246
- readonly summaryOperations?: {
1247
- object: string;
1248
- field: string;
1249
- function: "min" | "max" | "count" | "sum" | "avg";
1250
- } | undefined;
1251
- readonly language?: string | undefined;
1252
- readonly lineNumbers?: boolean | undefined;
1253
- readonly maxRating?: number | undefined;
1254
- readonly allowHalf?: boolean | undefined;
1255
- readonly displayMap?: boolean | undefined;
1256
- readonly allowGeocoding?: boolean | undefined;
1257
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1258
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1259
- readonly allowAlpha?: boolean | undefined;
1260
- readonly presetColors?: string[] | undefined;
1261
- readonly step?: number | undefined;
1262
- readonly showValue?: boolean | undefined;
1263
- readonly marks?: Record<string, string> | undefined;
1264
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1265
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1266
- readonly displayValue?: boolean | undefined;
1267
- readonly allowScanning?: boolean | undefined;
1268
- readonly currencyConfig?: {
1269
- precision: number;
1270
- currencyMode: "fixed" | "dynamic";
1271
- defaultCurrency: string;
1272
- } | undefined;
1273
- readonly vectorConfig?: {
1274
- dimensions: number;
1275
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1276
- normalized: boolean;
1277
- indexed: boolean;
1278
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1279
- } | undefined;
1280
- readonly fileAttachmentConfig?: {
1281
- virusScan: boolean;
1282
- virusScanOnUpload: boolean;
1283
- quarantineOnThreat: boolean;
1284
- allowMultiple: boolean;
1285
- allowReplace: boolean;
1286
- allowDelete: boolean;
1287
- requireUpload: boolean;
1288
- extractMetadata: boolean;
1289
- extractText: boolean;
1290
- versioningEnabled: boolean;
1291
- publicRead: boolean;
1292
- presignedUrlExpiry: number;
1293
- minSize?: number | undefined;
1294
- maxSize?: number | undefined;
1295
- allowedTypes?: string[] | undefined;
1296
- blockedTypes?: string[] | undefined;
1297
- allowedMimeTypes?: string[] | undefined;
1298
- blockedMimeTypes?: string[] | undefined;
1299
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1300
- storageProvider?: string | undefined;
1301
- storageBucket?: string | undefined;
1302
- storagePrefix?: string | undefined;
1303
- imageValidation?: {
1304
- generateThumbnails: boolean;
1305
- preserveMetadata: boolean;
1306
- autoRotate: boolean;
1307
- minWidth?: number | undefined;
1308
- maxWidth?: number | undefined;
1309
- minHeight?: number | undefined;
1310
- maxHeight?: number | undefined;
1311
- aspectRatio?: string | undefined;
1312
- thumbnailSizes?: {
1313
- name: string;
1314
- width: number;
1315
- height: number;
1316
- crop: boolean;
1317
- }[] | undefined;
1318
- } | undefined;
1319
- maxVersions?: number | undefined;
1320
- } | undefined;
1321
- readonly maskingRule?: {
1322
- field: string;
1323
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1324
- preserveFormat: boolean;
1325
- preserveLength: boolean;
1326
- pattern?: string | undefined;
1327
- roles?: string[] | undefined;
1328
- exemptRoles?: string[] | undefined;
1329
- } | undefined;
1330
- readonly auditTrail?: boolean | undefined;
1331
- readonly cached?: {
1332
- enabled: boolean;
1333
- ttl: number;
1334
- invalidateOn: string[];
1335
- } | undefined;
1336
- readonly dataQuality?: {
1337
- uniqueness: boolean;
1338
- completeness: number;
1339
- accuracy?: {
1340
- source: string;
1341
- threshold: number;
1342
- } | undefined;
1343
- } | undefined;
1344
- readonly conditionalRequired?: {
1345
- dialect: "cel" | "js" | "cron" | "template";
1346
- source?: string | undefined;
1347
- ast?: unknown;
1348
- meta?: {
1349
- rationale?: string | undefined;
1350
- generatedBy?: string | undefined;
1351
- } | undefined;
1352
- } | undefined;
1353
- readonly hidden?: boolean | undefined;
1354
- readonly sortable?: boolean | undefined;
1355
- readonly inlineHelpText?: string | undefined;
1356
- readonly trackFeedHistory?: boolean | undefined;
1357
- readonly caseSensitive?: boolean | undefined;
1358
- readonly autonumberFormat?: string | undefined;
1359
- readonly index?: boolean | undefined;
1360
- readonly type: "text";
1361
- };
1362
- readonly object_name: {
1363
- readonly readonly?: boolean | undefined;
1364
- readonly format?: string | undefined;
1365
- readonly options?: {
1366
- label: string;
1367
- value: string;
1368
- color?: string | undefined;
1369
- default?: boolean | undefined;
1370
- }[] | undefined;
1371
- readonly description?: string | undefined;
1372
- readonly label?: string | undefined;
1373
- readonly name?: string | undefined;
1374
- readonly precision?: number | undefined;
1375
- readonly required?: boolean | undefined;
1376
- readonly multiple?: boolean | undefined;
1377
- readonly dependencies?: string[] | undefined;
1378
- readonly theme?: string | undefined;
1379
- readonly externalId?: boolean | undefined;
1380
- readonly system?: boolean | undefined;
1381
- readonly min?: number | undefined;
1382
- readonly max?: number | undefined;
1383
- readonly group?: string | undefined;
1384
- readonly encryptionConfig?: {
1385
- enabled: boolean;
1386
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1387
- keyManagement: {
1388
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1389
- keyId?: string | undefined;
1390
- rotationPolicy?: {
1391
- enabled: boolean;
1392
- frequencyDays: number;
1393
- retainOldVersions: number;
1394
- autoRotate: boolean;
1395
- } | undefined;
1396
- };
1397
- scope: "record" | "field" | "table" | "database";
1398
- deterministicEncryption: boolean;
1399
- searchableEncryption: boolean;
1400
- } | undefined;
1401
- readonly columnName?: string | undefined;
1402
- readonly searchable?: boolean | undefined;
1403
- readonly unique?: boolean | undefined;
1404
- readonly defaultValue?: unknown;
1405
- readonly maxLength?: number | undefined;
1406
- readonly minLength?: number | undefined;
1407
- readonly scale?: number | undefined;
1408
- readonly reference?: string | undefined;
1409
- readonly referenceFilters?: string[] | undefined;
1410
- readonly writeRequiresMasterRead?: boolean | undefined;
1411
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1412
- readonly expression?: {
1413
- dialect: "cel" | "js" | "cron" | "template";
1414
- source?: string | undefined;
1415
- ast?: unknown;
1416
- meta?: {
1417
- rationale?: string | undefined;
1418
- generatedBy?: string | undefined;
1419
- } | undefined;
1420
- } | undefined;
1421
- readonly summaryOperations?: {
1422
- object: string;
1423
- field: string;
1424
- function: "min" | "max" | "count" | "sum" | "avg";
1425
- } | undefined;
1426
- readonly language?: string | undefined;
1427
- readonly lineNumbers?: boolean | undefined;
1428
- readonly maxRating?: number | undefined;
1429
- readonly allowHalf?: boolean | undefined;
1430
- readonly displayMap?: boolean | undefined;
1431
- readonly allowGeocoding?: boolean | undefined;
1432
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1433
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1434
- readonly allowAlpha?: boolean | undefined;
1435
- readonly presetColors?: string[] | undefined;
1436
- readonly step?: number | undefined;
1437
- readonly showValue?: boolean | undefined;
1438
- readonly marks?: Record<string, string> | undefined;
1439
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1440
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1441
- readonly displayValue?: boolean | undefined;
1442
- readonly allowScanning?: boolean | undefined;
1443
- readonly currencyConfig?: {
1444
- precision: number;
1445
- currencyMode: "fixed" | "dynamic";
1446
- defaultCurrency: string;
1447
- } | undefined;
1448
- readonly vectorConfig?: {
1449
- dimensions: number;
1450
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1451
- normalized: boolean;
1452
- indexed: boolean;
1453
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1454
- } | undefined;
1455
- readonly fileAttachmentConfig?: {
1456
- virusScan: boolean;
1457
- virusScanOnUpload: boolean;
1458
- quarantineOnThreat: boolean;
1459
- allowMultiple: boolean;
1460
- allowReplace: boolean;
1461
- allowDelete: boolean;
1462
- requireUpload: boolean;
1463
- extractMetadata: boolean;
1464
- extractText: boolean;
1465
- versioningEnabled: boolean;
1466
- publicRead: boolean;
1467
- presignedUrlExpiry: number;
1468
- minSize?: number | undefined;
1469
- maxSize?: number | undefined;
1470
- allowedTypes?: string[] | undefined;
1471
- blockedTypes?: string[] | undefined;
1472
- allowedMimeTypes?: string[] | undefined;
1473
- blockedMimeTypes?: string[] | undefined;
1474
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1475
- storageProvider?: string | undefined;
1476
- storageBucket?: string | undefined;
1477
- storagePrefix?: string | undefined;
1478
- imageValidation?: {
1479
- generateThumbnails: boolean;
1480
- preserveMetadata: boolean;
1481
- autoRotate: boolean;
1482
- minWidth?: number | undefined;
1483
- maxWidth?: number | undefined;
1484
- minHeight?: number | undefined;
1485
- maxHeight?: number | undefined;
1486
- aspectRatio?: string | undefined;
1487
- thumbnailSizes?: {
1488
- name: string;
1489
- width: number;
1490
- height: number;
1491
- crop: boolean;
1492
- }[] | undefined;
1493
- } | undefined;
1494
- maxVersions?: number | undefined;
1495
- } | undefined;
1496
- readonly maskingRule?: {
1497
- field: string;
1498
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1499
- preserveFormat: boolean;
1500
- preserveLength: boolean;
1501
- pattern?: string | undefined;
1502
- roles?: string[] | undefined;
1503
- exemptRoles?: string[] | undefined;
1504
- } | undefined;
1505
- readonly auditTrail?: boolean | undefined;
1506
- readonly cached?: {
1507
- enabled: boolean;
1508
- ttl: number;
1509
- invalidateOn: string[];
1510
- } | undefined;
1511
- readonly dataQuality?: {
1512
- uniqueness: boolean;
1513
- completeness: number;
1514
- accuracy?: {
1515
- source: string;
1516
- threshold: number;
1517
- } | undefined;
1518
- } | undefined;
1519
- readonly conditionalRequired?: {
1520
- dialect: "cel" | "js" | "cron" | "template";
1521
- source?: string | undefined;
1522
- ast?: unknown;
1523
- meta?: {
1524
- rationale?: string | undefined;
1525
- generatedBy?: string | undefined;
1526
- } | undefined;
1527
- } | undefined;
1528
- readonly hidden?: boolean | undefined;
1529
- readonly sortable?: boolean | undefined;
1530
- readonly inlineHelpText?: string | undefined;
1531
- readonly trackFeedHistory?: boolean | undefined;
1532
- readonly caseSensitive?: boolean | undefined;
1533
- readonly autonumberFormat?: string | undefined;
1534
- readonly index?: boolean | undefined;
1535
- readonly type: "text";
1536
- };
1537
- readonly triggers: {
1538
- readonly readonly?: boolean | undefined;
1539
- readonly format?: string | undefined;
1540
- readonly options?: {
1541
- label: string;
1542
- value: string;
1543
- color?: string | undefined;
1544
- default?: boolean | undefined;
1545
- }[] | undefined;
1546
- readonly description?: string | undefined;
1547
- readonly label?: string | undefined;
1548
- readonly name?: string | undefined;
1549
- readonly precision?: number | undefined;
1550
- readonly required?: boolean | undefined;
1551
- readonly multiple?: boolean | undefined;
1552
- readonly dependencies?: string[] | undefined;
1553
- readonly theme?: string | undefined;
1554
- readonly externalId?: boolean | undefined;
1555
- readonly system?: boolean | undefined;
1556
- readonly min?: number | undefined;
1557
- readonly max?: number | undefined;
1558
- readonly group?: string | undefined;
1559
- readonly encryptionConfig?: {
1560
- enabled: boolean;
1561
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1562
- keyManagement: {
1563
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1564
- keyId?: string | undefined;
1565
- rotationPolicy?: {
1566
- enabled: boolean;
1567
- frequencyDays: number;
1568
- retainOldVersions: number;
1569
- autoRotate: boolean;
1570
- } | undefined;
1571
- };
1572
- scope: "record" | "field" | "table" | "database";
1573
- deterministicEncryption: boolean;
1574
- searchableEncryption: boolean;
1575
- } | undefined;
1576
- readonly columnName?: string | undefined;
1577
- readonly searchable?: boolean | undefined;
1578
- readonly unique?: boolean | undefined;
1579
- readonly defaultValue?: unknown;
1580
- readonly maxLength?: number | undefined;
1581
- readonly minLength?: number | undefined;
1582
- readonly scale?: number | undefined;
1583
- readonly reference?: string | undefined;
1584
- readonly referenceFilters?: string[] | undefined;
1585
- readonly writeRequiresMasterRead?: boolean | undefined;
1586
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1587
- readonly expression?: {
1588
- dialect: "cel" | "js" | "cron" | "template";
1589
- source?: string | undefined;
1590
- ast?: unknown;
1591
- meta?: {
1592
- rationale?: string | undefined;
1593
- generatedBy?: string | undefined;
1594
- } | undefined;
1595
- } | undefined;
1596
- readonly summaryOperations?: {
1597
- object: string;
1598
- field: string;
1599
- function: "min" | "max" | "count" | "sum" | "avg";
1600
- } | undefined;
1601
- readonly language?: string | undefined;
1602
- readonly lineNumbers?: boolean | undefined;
1603
- readonly maxRating?: number | undefined;
1604
- readonly allowHalf?: boolean | undefined;
1605
- readonly displayMap?: boolean | undefined;
1606
- readonly allowGeocoding?: boolean | undefined;
1607
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1608
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1609
- readonly allowAlpha?: boolean | undefined;
1610
- readonly presetColors?: string[] | undefined;
1611
- readonly step?: number | undefined;
1612
- readonly showValue?: boolean | undefined;
1613
- readonly marks?: Record<string, string> | undefined;
1614
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1615
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1616
- readonly displayValue?: boolean | undefined;
1617
- readonly allowScanning?: boolean | undefined;
1618
- readonly currencyConfig?: {
1619
- precision: number;
1620
- currencyMode: "fixed" | "dynamic";
1621
- defaultCurrency: string;
1622
- } | undefined;
1623
- readonly vectorConfig?: {
1624
- dimensions: number;
1625
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1626
- normalized: boolean;
1627
- indexed: boolean;
1628
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1629
- } | undefined;
1630
- readonly fileAttachmentConfig?: {
1631
- virusScan: boolean;
1632
- virusScanOnUpload: boolean;
1633
- quarantineOnThreat: boolean;
1634
- allowMultiple: boolean;
1635
- allowReplace: boolean;
1636
- allowDelete: boolean;
1637
- requireUpload: boolean;
1638
- extractMetadata: boolean;
1639
- extractText: boolean;
1640
- versioningEnabled: boolean;
1641
- publicRead: boolean;
1642
- presignedUrlExpiry: number;
1643
- minSize?: number | undefined;
1644
- maxSize?: number | undefined;
1645
- allowedTypes?: string[] | undefined;
1646
- blockedTypes?: string[] | undefined;
1647
- allowedMimeTypes?: string[] | undefined;
1648
- blockedMimeTypes?: string[] | undefined;
1649
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1650
- storageProvider?: string | undefined;
1651
- storageBucket?: string | undefined;
1652
- storagePrefix?: string | undefined;
1653
- imageValidation?: {
1654
- generateThumbnails: boolean;
1655
- preserveMetadata: boolean;
1656
- autoRotate: boolean;
1657
- minWidth?: number | undefined;
1658
- maxWidth?: number | undefined;
1659
- minHeight?: number | undefined;
1660
- maxHeight?: number | undefined;
1661
- aspectRatio?: string | undefined;
1662
- thumbnailSizes?: {
1663
- name: string;
1664
- width: number;
1665
- height: number;
1666
- crop: boolean;
1667
- }[] | undefined;
1668
- } | undefined;
1669
- maxVersions?: number | undefined;
1670
- } | undefined;
1671
- readonly maskingRule?: {
1672
- field: string;
1673
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1674
- preserveFormat: boolean;
1675
- preserveLength: boolean;
1676
- pattern?: string | undefined;
1677
- roles?: string[] | undefined;
1678
- exemptRoles?: string[] | undefined;
1679
- } | undefined;
1680
- readonly auditTrail?: boolean | undefined;
1681
- readonly cached?: {
1682
- enabled: boolean;
1683
- ttl: number;
1684
- invalidateOn: string[];
1685
- } | undefined;
1686
- readonly dataQuality?: {
1687
- uniqueness: boolean;
1688
- completeness: number;
1689
- accuracy?: {
1690
- source: string;
1691
- threshold: number;
1692
- } | undefined;
1693
- } | undefined;
1694
- readonly conditionalRequired?: {
1695
- dialect: "cel" | "js" | "cron" | "template";
1696
- source?: string | undefined;
1697
- ast?: unknown;
1698
- meta?: {
1699
- rationale?: string | undefined;
1700
- generatedBy?: string | undefined;
1701
- } | undefined;
1702
- } | undefined;
1703
- readonly hidden?: boolean | undefined;
1704
- readonly sortable?: boolean | undefined;
1705
- readonly inlineHelpText?: string | undefined;
1706
- readonly trackFeedHistory?: boolean | undefined;
1707
- readonly caseSensitive?: boolean | undefined;
1708
- readonly autonumberFormat?: string | undefined;
1709
- readonly index?: boolean | undefined;
1710
- readonly type: "text";
1711
- };
1712
- readonly url: {
1713
- readonly readonly?: boolean | undefined;
1714
- readonly format?: string | undefined;
1715
- readonly options?: {
1716
- label: string;
1717
- value: string;
1718
- color?: string | undefined;
1719
- default?: boolean | undefined;
1720
- }[] | undefined;
1721
- readonly description?: string | undefined;
1722
- readonly label?: string | undefined;
1723
- readonly name?: string | undefined;
1724
- readonly precision?: number | undefined;
1725
- readonly required?: boolean | undefined;
1726
- readonly multiple?: boolean | undefined;
1727
- readonly dependencies?: string[] | undefined;
1728
- readonly theme?: string | undefined;
1729
- readonly externalId?: boolean | undefined;
1730
- readonly system?: boolean | undefined;
1731
- readonly min?: number | undefined;
1732
- readonly max?: number | undefined;
1733
- readonly group?: string | undefined;
1734
- readonly encryptionConfig?: {
1735
- enabled: boolean;
1736
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1737
- keyManagement: {
1738
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1739
- keyId?: string | undefined;
1740
- rotationPolicy?: {
1741
- enabled: boolean;
1742
- frequencyDays: number;
1743
- retainOldVersions: number;
1744
- autoRotate: boolean;
1745
- } | undefined;
1746
- };
1747
- scope: "record" | "field" | "table" | "database";
1748
- deterministicEncryption: boolean;
1749
- searchableEncryption: boolean;
1750
- } | undefined;
1751
- readonly columnName?: string | undefined;
1752
- readonly searchable?: boolean | undefined;
1753
- readonly unique?: boolean | undefined;
1754
- readonly defaultValue?: unknown;
1755
- readonly maxLength?: number | undefined;
1756
- readonly minLength?: number | undefined;
1757
- readonly scale?: number | undefined;
1758
- readonly reference?: string | undefined;
1759
- readonly referenceFilters?: string[] | undefined;
1760
- readonly writeRequiresMasterRead?: boolean | undefined;
1761
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1762
- readonly expression?: {
1763
- dialect: "cel" | "js" | "cron" | "template";
1764
- source?: string | undefined;
1765
- ast?: unknown;
1766
- meta?: {
1767
- rationale?: string | undefined;
1768
- generatedBy?: string | undefined;
1769
- } | undefined;
1770
- } | undefined;
1771
- readonly summaryOperations?: {
1772
- object: string;
1773
- field: string;
1774
- function: "min" | "max" | "count" | "sum" | "avg";
1775
- } | undefined;
1776
- readonly language?: string | undefined;
1777
- readonly lineNumbers?: boolean | undefined;
1778
- readonly maxRating?: number | undefined;
1779
- readonly allowHalf?: boolean | undefined;
1780
- readonly displayMap?: boolean | undefined;
1781
- readonly allowGeocoding?: boolean | undefined;
1782
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1783
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1784
- readonly allowAlpha?: boolean | undefined;
1785
- readonly presetColors?: string[] | undefined;
1786
- readonly step?: number | undefined;
1787
- readonly showValue?: boolean | undefined;
1788
- readonly marks?: Record<string, string> | undefined;
1789
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1790
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1791
- readonly displayValue?: boolean | undefined;
1792
- readonly allowScanning?: boolean | undefined;
1793
- readonly currencyConfig?: {
1794
- precision: number;
1795
- currencyMode: "fixed" | "dynamic";
1796
- defaultCurrency: string;
1797
- } | undefined;
1798
- readonly vectorConfig?: {
1799
- dimensions: number;
1800
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1801
- normalized: boolean;
1802
- indexed: boolean;
1803
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1804
- } | undefined;
1805
- readonly fileAttachmentConfig?: {
1806
- virusScan: boolean;
1807
- virusScanOnUpload: boolean;
1808
- quarantineOnThreat: boolean;
1809
- allowMultiple: boolean;
1810
- allowReplace: boolean;
1811
- allowDelete: boolean;
1812
- requireUpload: boolean;
1813
- extractMetadata: boolean;
1814
- extractText: boolean;
1815
- versioningEnabled: boolean;
1816
- publicRead: boolean;
1817
- presignedUrlExpiry: number;
1818
- minSize?: number | undefined;
1819
- maxSize?: number | undefined;
1820
- allowedTypes?: string[] | undefined;
1821
- blockedTypes?: string[] | undefined;
1822
- allowedMimeTypes?: string[] | undefined;
1823
- blockedMimeTypes?: string[] | undefined;
1824
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1825
- storageProvider?: string | undefined;
1826
- storageBucket?: string | undefined;
1827
- storagePrefix?: string | undefined;
1828
- imageValidation?: {
1829
- generateThumbnails: boolean;
1830
- preserveMetadata: boolean;
1831
- autoRotate: boolean;
1832
- minWidth?: number | undefined;
1833
- maxWidth?: number | undefined;
1834
- minHeight?: number | undefined;
1835
- maxHeight?: number | undefined;
1836
- aspectRatio?: string | undefined;
1837
- thumbnailSizes?: {
1838
- name: string;
1839
- width: number;
1840
- height: number;
1841
- crop: boolean;
1842
- }[] | undefined;
1843
- } | undefined;
1844
- maxVersions?: number | undefined;
1845
- } | undefined;
1846
- readonly maskingRule?: {
1847
- field: string;
1848
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1849
- preserveFormat: boolean;
1850
- preserveLength: boolean;
1851
- pattern?: string | undefined;
1852
- roles?: string[] | undefined;
1853
- exemptRoles?: string[] | undefined;
1854
- } | undefined;
1855
- readonly auditTrail?: boolean | undefined;
1856
- readonly cached?: {
1857
- enabled: boolean;
1858
- ttl: number;
1859
- invalidateOn: string[];
1860
- } | undefined;
1861
- readonly dataQuality?: {
1862
- uniqueness: boolean;
1863
- completeness: number;
1864
- accuracy?: {
1865
- source: string;
1866
- threshold: number;
1867
- } | undefined;
1868
- } | undefined;
1869
- readonly conditionalRequired?: {
1870
- dialect: "cel" | "js" | "cron" | "template";
1871
- source?: string | undefined;
1872
- ast?: unknown;
1873
- meta?: {
1874
- rationale?: string | undefined;
1875
- generatedBy?: string | undefined;
1876
- } | undefined;
1877
- } | undefined;
1878
- readonly hidden?: boolean | undefined;
1879
- readonly sortable?: boolean | undefined;
1880
- readonly inlineHelpText?: string | undefined;
1881
- readonly trackFeedHistory?: boolean | undefined;
1882
- readonly caseSensitive?: boolean | undefined;
1883
- readonly autonumberFormat?: string | undefined;
1884
- readonly index?: boolean | undefined;
1885
- readonly type: "text";
1886
- };
1887
- readonly method: {
1888
- readonly readonly?: boolean | undefined;
1889
- readonly format?: string | undefined;
1890
- readonly options?: {
1891
- label: string;
1892
- value: string;
1893
- color?: string | undefined;
1894
- default?: boolean | undefined;
1895
- }[] | undefined;
1896
- readonly description?: string | undefined;
1897
- readonly label?: string | undefined;
1898
- readonly name?: string | undefined;
1899
- readonly precision?: number | undefined;
1900
- readonly required?: boolean | undefined;
1901
- readonly multiple?: boolean | undefined;
1902
- readonly dependencies?: string[] | undefined;
1903
- readonly theme?: string | undefined;
1904
- readonly externalId?: boolean | undefined;
1905
- readonly system?: boolean | undefined;
1906
- readonly min?: number | undefined;
1907
- readonly max?: number | undefined;
1908
- readonly group?: string | undefined;
1909
- readonly encryptionConfig?: {
1910
- enabled: boolean;
1911
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1912
- keyManagement: {
1913
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1914
- keyId?: string | undefined;
1915
- rotationPolicy?: {
1916
- enabled: boolean;
1917
- frequencyDays: number;
1918
- retainOldVersions: number;
1919
- autoRotate: boolean;
1920
- } | undefined;
1921
- };
1922
- scope: "record" | "field" | "table" | "database";
1923
- deterministicEncryption: boolean;
1924
- searchableEncryption: boolean;
1925
- } | undefined;
1926
- readonly columnName?: string | undefined;
1927
- readonly searchable?: boolean | undefined;
1928
- readonly unique?: boolean | undefined;
1929
- readonly defaultValue?: unknown;
1930
- readonly maxLength?: number | undefined;
1931
- readonly minLength?: number | undefined;
1932
- readonly scale?: number | undefined;
1933
- readonly reference?: string | undefined;
1934
- readonly referenceFilters?: string[] | undefined;
1935
- readonly writeRequiresMasterRead?: boolean | undefined;
1936
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1937
- readonly expression?: {
1938
- dialect: "cel" | "js" | "cron" | "template";
1939
- source?: string | undefined;
1940
- ast?: unknown;
1941
- meta?: {
1942
- rationale?: string | undefined;
1943
- generatedBy?: string | undefined;
1944
- } | undefined;
1945
- } | undefined;
1946
- readonly summaryOperations?: {
1947
- object: string;
1948
- field: string;
1949
- function: "min" | "max" | "count" | "sum" | "avg";
1950
- } | undefined;
1951
- readonly language?: string | undefined;
1952
- readonly lineNumbers?: boolean | undefined;
1953
- readonly maxRating?: number | undefined;
1954
- readonly allowHalf?: boolean | undefined;
1955
- readonly displayMap?: boolean | undefined;
1956
- readonly allowGeocoding?: boolean | undefined;
1957
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1958
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1959
- readonly allowAlpha?: boolean | undefined;
1960
- readonly presetColors?: string[] | undefined;
1961
- readonly step?: number | undefined;
1962
- readonly showValue?: boolean | undefined;
1963
- readonly marks?: Record<string, string> | undefined;
1964
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1965
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1966
- readonly displayValue?: boolean | undefined;
1967
- readonly allowScanning?: boolean | undefined;
1968
- readonly currencyConfig?: {
1969
- precision: number;
1970
- currencyMode: "fixed" | "dynamic";
1971
- defaultCurrency: string;
1972
- } | undefined;
1973
- readonly vectorConfig?: {
1974
- dimensions: number;
1975
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1976
- normalized: boolean;
1977
- indexed: boolean;
1978
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1979
- } | undefined;
1980
- readonly fileAttachmentConfig?: {
1981
- virusScan: boolean;
1982
- virusScanOnUpload: boolean;
1983
- quarantineOnThreat: boolean;
1984
- allowMultiple: boolean;
1985
- allowReplace: boolean;
1986
- allowDelete: boolean;
1987
- requireUpload: boolean;
1988
- extractMetadata: boolean;
1989
- extractText: boolean;
1990
- versioningEnabled: boolean;
1991
- publicRead: boolean;
1992
- presignedUrlExpiry: number;
1993
- minSize?: number | undefined;
1994
- maxSize?: number | undefined;
1995
- allowedTypes?: string[] | undefined;
1996
- blockedTypes?: string[] | undefined;
1997
- allowedMimeTypes?: string[] | undefined;
1998
- blockedMimeTypes?: string[] | undefined;
1999
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2000
- storageProvider?: string | undefined;
2001
- storageBucket?: string | undefined;
2002
- storagePrefix?: string | undefined;
2003
- imageValidation?: {
2004
- generateThumbnails: boolean;
2005
- preserveMetadata: boolean;
2006
- autoRotate: boolean;
2007
- minWidth?: number | undefined;
2008
- maxWidth?: number | undefined;
2009
- minHeight?: number | undefined;
2010
- maxHeight?: number | undefined;
2011
- aspectRatio?: string | undefined;
2012
- thumbnailSizes?: {
2013
- name: string;
2014
- width: number;
2015
- height: number;
2016
- crop: boolean;
2017
- }[] | undefined;
2018
- } | undefined;
2019
- maxVersions?: number | undefined;
2020
- } | undefined;
2021
- readonly maskingRule?: {
2022
- field: string;
2023
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2024
- preserveFormat: boolean;
2025
- preserveLength: boolean;
2026
- pattern?: string | undefined;
2027
- roles?: string[] | undefined;
2028
- exemptRoles?: string[] | undefined;
2029
- } | undefined;
2030
- readonly auditTrail?: boolean | undefined;
2031
- readonly cached?: {
2032
- enabled: boolean;
2033
- ttl: number;
2034
- invalidateOn: string[];
2035
- } | undefined;
2036
- readonly dataQuality?: {
2037
- uniqueness: boolean;
2038
- completeness: number;
2039
- accuracy?: {
2040
- source: string;
2041
- threshold: number;
2042
- } | undefined;
2043
- } | undefined;
2044
- readonly conditionalRequired?: {
2045
- dialect: "cel" | "js" | "cron" | "template";
2046
- source?: string | undefined;
2047
- ast?: unknown;
2048
- meta?: {
2049
- rationale?: string | undefined;
2050
- generatedBy?: string | undefined;
2051
- } | undefined;
2052
- } | undefined;
2053
- readonly hidden?: boolean | undefined;
2054
- readonly sortable?: boolean | undefined;
2055
- readonly inlineHelpText?: string | undefined;
2056
- readonly trackFeedHistory?: boolean | undefined;
2057
- readonly caseSensitive?: boolean | undefined;
2058
- readonly autonumberFormat?: string | undefined;
2059
- readonly index?: boolean | undefined;
2060
- readonly type: "text";
2061
- };
2062
- readonly description: {
2063
- readonly readonly?: boolean | undefined;
2064
- readonly format?: string | undefined;
2065
- readonly options?: {
2066
- label: string;
2067
- value: string;
2068
- color?: string | undefined;
2069
- default?: boolean | undefined;
2070
- }[] | undefined;
2071
- readonly description?: string | undefined;
2072
- readonly label?: string | undefined;
2073
- readonly name?: string | undefined;
2074
- readonly precision?: number | undefined;
2075
- readonly required?: boolean | undefined;
2076
- readonly multiple?: boolean | undefined;
2077
- readonly dependencies?: string[] | undefined;
2078
- readonly theme?: string | undefined;
2079
- readonly externalId?: boolean | undefined;
2080
- readonly system?: boolean | undefined;
2081
- readonly min?: number | undefined;
2082
- readonly max?: number | undefined;
2083
- readonly group?: string | undefined;
2084
- readonly encryptionConfig?: {
2085
- enabled: boolean;
2086
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2087
- keyManagement: {
2088
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2089
- keyId?: string | undefined;
2090
- rotationPolicy?: {
2091
- enabled: boolean;
2092
- frequencyDays: number;
2093
- retainOldVersions: number;
2094
- autoRotate: boolean;
2095
- } | undefined;
2096
- };
2097
- scope: "record" | "field" | "table" | "database";
2098
- deterministicEncryption: boolean;
2099
- searchableEncryption: boolean;
2100
- } | undefined;
2101
- readonly columnName?: string | undefined;
2102
- readonly searchable?: boolean | undefined;
2103
- readonly unique?: boolean | undefined;
2104
- readonly defaultValue?: unknown;
2105
- readonly maxLength?: number | undefined;
2106
- readonly minLength?: number | undefined;
2107
- readonly scale?: number | undefined;
2108
- readonly reference?: string | undefined;
2109
- readonly referenceFilters?: string[] | undefined;
2110
- readonly writeRequiresMasterRead?: boolean | undefined;
2111
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2112
- readonly expression?: {
2113
- dialect: "cel" | "js" | "cron" | "template";
2114
- source?: string | undefined;
2115
- ast?: unknown;
2116
- meta?: {
2117
- rationale?: string | undefined;
2118
- generatedBy?: string | undefined;
2119
- } | undefined;
2120
- } | undefined;
2121
- readonly summaryOperations?: {
2122
- object: string;
2123
- field: string;
2124
- function: "min" | "max" | "count" | "sum" | "avg";
2125
- } | undefined;
2126
- readonly language?: string | undefined;
2127
- readonly lineNumbers?: boolean | undefined;
2128
- readonly maxRating?: number | undefined;
2129
- readonly allowHalf?: boolean | undefined;
2130
- readonly displayMap?: boolean | undefined;
2131
- readonly allowGeocoding?: boolean | undefined;
2132
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2133
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2134
- readonly allowAlpha?: boolean | undefined;
2135
- readonly presetColors?: string[] | undefined;
2136
- readonly step?: number | undefined;
2137
- readonly showValue?: boolean | undefined;
2138
- readonly marks?: Record<string, string> | undefined;
2139
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2140
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2141
- readonly displayValue?: boolean | undefined;
2142
- readonly allowScanning?: boolean | undefined;
2143
- readonly currencyConfig?: {
2144
- precision: number;
2145
- currencyMode: "fixed" | "dynamic";
2146
- defaultCurrency: string;
2147
- } | undefined;
2148
- readonly vectorConfig?: {
2149
- dimensions: number;
2150
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2151
- normalized: boolean;
2152
- indexed: boolean;
2153
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2154
- } | undefined;
2155
- readonly fileAttachmentConfig?: {
2156
- virusScan: boolean;
2157
- virusScanOnUpload: boolean;
2158
- quarantineOnThreat: boolean;
2159
- allowMultiple: boolean;
2160
- allowReplace: boolean;
2161
- allowDelete: boolean;
2162
- requireUpload: boolean;
2163
- extractMetadata: boolean;
2164
- extractText: boolean;
2165
- versioningEnabled: boolean;
2166
- publicRead: boolean;
2167
- presignedUrlExpiry: number;
2168
- minSize?: number | undefined;
2169
- maxSize?: number | undefined;
2170
- allowedTypes?: string[] | undefined;
2171
- blockedTypes?: string[] | undefined;
2172
- allowedMimeTypes?: string[] | undefined;
2173
- blockedMimeTypes?: string[] | undefined;
2174
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2175
- storageProvider?: string | undefined;
2176
- storageBucket?: string | undefined;
2177
- storagePrefix?: string | undefined;
2178
- imageValidation?: {
2179
- generateThumbnails: boolean;
2180
- preserveMetadata: boolean;
2181
- autoRotate: boolean;
2182
- minWidth?: number | undefined;
2183
- maxWidth?: number | undefined;
2184
- minHeight?: number | undefined;
2185
- maxHeight?: number | undefined;
2186
- aspectRatio?: string | undefined;
2187
- thumbnailSizes?: {
2188
- name: string;
2189
- width: number;
2190
- height: number;
2191
- crop: boolean;
2192
- }[] | undefined;
2193
- } | undefined;
2194
- maxVersions?: number | undefined;
2195
- } | undefined;
2196
- readonly maskingRule?: {
2197
- field: string;
2198
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2199
- preserveFormat: boolean;
2200
- preserveLength: boolean;
2201
- pattern?: string | undefined;
2202
- roles?: string[] | undefined;
2203
- exemptRoles?: string[] | undefined;
2204
- } | undefined;
2205
- readonly auditTrail?: boolean | undefined;
2206
- readonly cached?: {
2207
- enabled: boolean;
2208
- ttl: number;
2209
- invalidateOn: string[];
2210
- } | undefined;
2211
- readonly dataQuality?: {
2212
- uniqueness: boolean;
2213
- completeness: number;
2214
- accuracy?: {
2215
- source: string;
2216
- threshold: number;
2217
- } | undefined;
2218
- } | undefined;
2219
- readonly conditionalRequired?: {
2220
- dialect: "cel" | "js" | "cron" | "template";
2221
- source?: string | undefined;
2222
- ast?: unknown;
2223
- meta?: {
2224
- rationale?: string | undefined;
2225
- generatedBy?: string | undefined;
2226
- } | undefined;
2227
- } | undefined;
2228
- readonly hidden?: boolean | undefined;
2229
- readonly sortable?: boolean | undefined;
2230
- readonly inlineHelpText?: string | undefined;
2231
- readonly trackFeedHistory?: boolean | undefined;
2232
- readonly caseSensitive?: boolean | undefined;
2233
- readonly autonumberFormat?: string | undefined;
2234
- readonly index?: boolean | undefined;
2235
- readonly type: "textarea";
2236
- };
2237
- readonly active: {
2238
- readonly readonly?: boolean | undefined;
2239
- readonly format?: string | undefined;
2240
- readonly options?: {
2241
- label: string;
2242
- value: string;
2243
- color?: string | undefined;
2244
- default?: boolean | undefined;
2245
- }[] | undefined;
2246
- readonly description?: string | undefined;
2247
- readonly label?: string | undefined;
2248
- readonly name?: string | undefined;
2249
- readonly precision?: number | undefined;
2250
- readonly required?: boolean | undefined;
2251
- readonly multiple?: boolean | undefined;
2252
- readonly dependencies?: string[] | undefined;
2253
- readonly theme?: string | undefined;
2254
- readonly externalId?: boolean | undefined;
2255
- readonly system?: boolean | undefined;
2256
- readonly min?: number | undefined;
2257
- readonly max?: number | undefined;
2258
- readonly group?: string | undefined;
2259
- readonly encryptionConfig?: {
2260
- enabled: boolean;
2261
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2262
- keyManagement: {
2263
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2264
- keyId?: string | undefined;
2265
- rotationPolicy?: {
2266
- enabled: boolean;
2267
- frequencyDays: number;
2268
- retainOldVersions: number;
2269
- autoRotate: boolean;
2270
- } | undefined;
2271
- };
2272
- scope: "record" | "field" | "table" | "database";
2273
- deterministicEncryption: boolean;
2274
- searchableEncryption: boolean;
2275
- } | undefined;
2276
- readonly columnName?: string | undefined;
2277
- readonly searchable?: boolean | undefined;
2278
- readonly unique?: boolean | undefined;
2279
- readonly defaultValue?: unknown;
2280
- readonly maxLength?: number | undefined;
2281
- readonly minLength?: number | undefined;
2282
- readonly scale?: number | undefined;
2283
- readonly reference?: string | undefined;
2284
- readonly referenceFilters?: string[] | undefined;
2285
- readonly writeRequiresMasterRead?: boolean | undefined;
2286
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2287
- readonly expression?: {
2288
- dialect: "cel" | "js" | "cron" | "template";
2289
- source?: string | undefined;
2290
- ast?: unknown;
2291
- meta?: {
2292
- rationale?: string | undefined;
2293
- generatedBy?: string | undefined;
2294
- } | undefined;
2295
- } | undefined;
2296
- readonly summaryOperations?: {
2297
- object: string;
2298
- field: string;
2299
- function: "min" | "max" | "count" | "sum" | "avg";
2300
- } | undefined;
2301
- readonly language?: string | undefined;
2302
- readonly lineNumbers?: boolean | undefined;
2303
- readonly maxRating?: number | undefined;
2304
- readonly allowHalf?: boolean | undefined;
2305
- readonly displayMap?: boolean | undefined;
2306
- readonly allowGeocoding?: boolean | undefined;
2307
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2308
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2309
- readonly allowAlpha?: boolean | undefined;
2310
- readonly presetColors?: string[] | undefined;
2311
- readonly step?: number | undefined;
2312
- readonly showValue?: boolean | undefined;
2313
- readonly marks?: Record<string, string> | undefined;
2314
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2315
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2316
- readonly displayValue?: boolean | undefined;
2317
- readonly allowScanning?: boolean | undefined;
2318
- readonly currencyConfig?: {
2319
- precision: number;
2320
- currencyMode: "fixed" | "dynamic";
2321
- defaultCurrency: string;
2322
- } | undefined;
2323
- readonly vectorConfig?: {
2324
- dimensions: number;
2325
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2326
- normalized: boolean;
2327
- indexed: boolean;
2328
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2329
- } | undefined;
2330
- readonly fileAttachmentConfig?: {
2331
- virusScan: boolean;
2332
- virusScanOnUpload: boolean;
2333
- quarantineOnThreat: boolean;
2334
- allowMultiple: boolean;
2335
- allowReplace: boolean;
2336
- allowDelete: boolean;
2337
- requireUpload: boolean;
2338
- extractMetadata: boolean;
2339
- extractText: boolean;
2340
- versioningEnabled: boolean;
2341
- publicRead: boolean;
2342
- presignedUrlExpiry: number;
2343
- minSize?: number | undefined;
2344
- maxSize?: number | undefined;
2345
- allowedTypes?: string[] | undefined;
2346
- blockedTypes?: string[] | undefined;
2347
- allowedMimeTypes?: string[] | undefined;
2348
- blockedMimeTypes?: string[] | undefined;
2349
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2350
- storageProvider?: string | undefined;
2351
- storageBucket?: string | undefined;
2352
- storagePrefix?: string | undefined;
2353
- imageValidation?: {
2354
- generateThumbnails: boolean;
2355
- preserveMetadata: boolean;
2356
- autoRotate: boolean;
2357
- minWidth?: number | undefined;
2358
- maxWidth?: number | undefined;
2359
- minHeight?: number | undefined;
2360
- maxHeight?: number | undefined;
2361
- aspectRatio?: string | undefined;
2362
- thumbnailSizes?: {
2363
- name: string;
2364
- width: number;
2365
- height: number;
2366
- crop: boolean;
2367
- }[] | undefined;
2368
- } | undefined;
2369
- maxVersions?: number | undefined;
2370
- } | undefined;
2371
- readonly maskingRule?: {
2372
- field: string;
2373
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2374
- preserveFormat: boolean;
2375
- preserveLength: boolean;
2376
- pattern?: string | undefined;
2377
- roles?: string[] | undefined;
2378
- exemptRoles?: string[] | undefined;
2379
- } | undefined;
2380
- readonly auditTrail?: boolean | undefined;
2381
- readonly cached?: {
2382
- enabled: boolean;
2383
- ttl: number;
2384
- invalidateOn: string[];
2385
- } | undefined;
2386
- readonly dataQuality?: {
2387
- uniqueness: boolean;
2388
- completeness: number;
2389
- accuracy?: {
2390
- source: string;
2391
- threshold: number;
2392
- } | undefined;
2393
- } | undefined;
2394
- readonly conditionalRequired?: {
2395
- dialect: "cel" | "js" | "cron" | "template";
2396
- source?: string | undefined;
2397
- ast?: unknown;
2398
- meta?: {
2399
- rationale?: string | undefined;
2400
- generatedBy?: string | undefined;
2401
- } | undefined;
2402
- } | undefined;
2403
- readonly hidden?: boolean | undefined;
2404
- readonly sortable?: boolean | undefined;
2405
- readonly inlineHelpText?: string | undefined;
2406
- readonly trackFeedHistory?: boolean | undefined;
2407
- readonly caseSensitive?: boolean | undefined;
2408
- readonly autonumberFormat?: string | undefined;
2409
- readonly index?: boolean | undefined;
2410
- readonly type: "boolean";
2411
- };
2412
- readonly definition_json: {
2413
- readonly readonly?: boolean | undefined;
2414
- readonly format?: string | undefined;
2415
- readonly options?: {
2416
- label: string;
2417
- value: string;
2418
- color?: string | undefined;
2419
- default?: boolean | undefined;
2420
- }[] | undefined;
2421
- readonly description?: string | undefined;
2422
- readonly label?: string | undefined;
2423
- readonly name?: string | undefined;
2424
- readonly precision?: number | undefined;
2425
- readonly required?: boolean | undefined;
2426
- readonly multiple?: boolean | undefined;
2427
- readonly dependencies?: string[] | undefined;
2428
- readonly theme?: string | undefined;
2429
- readonly externalId?: boolean | undefined;
2430
- readonly system?: boolean | undefined;
2431
- readonly min?: number | undefined;
2432
- readonly max?: number | undefined;
2433
- readonly group?: string | undefined;
2434
- readonly encryptionConfig?: {
2435
- enabled: boolean;
2436
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2437
- keyManagement: {
2438
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2439
- keyId?: string | undefined;
2440
- rotationPolicy?: {
2441
- enabled: boolean;
2442
- frequencyDays: number;
2443
- retainOldVersions: number;
2444
- autoRotate: boolean;
2445
- } | undefined;
2446
- };
2447
- scope: "record" | "field" | "table" | "database";
2448
- deterministicEncryption: boolean;
2449
- searchableEncryption: boolean;
2450
- } | undefined;
2451
- readonly columnName?: string | undefined;
2452
- readonly searchable?: boolean | undefined;
2453
- readonly unique?: boolean | undefined;
2454
- readonly defaultValue?: unknown;
2455
- readonly maxLength?: number | undefined;
2456
- readonly minLength?: number | undefined;
2457
- readonly scale?: number | undefined;
2458
- readonly reference?: string | undefined;
2459
- readonly referenceFilters?: string[] | undefined;
2460
- readonly writeRequiresMasterRead?: boolean | undefined;
2461
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2462
- readonly expression?: {
2463
- dialect: "cel" | "js" | "cron" | "template";
2464
- source?: string | undefined;
2465
- ast?: unknown;
2466
- meta?: {
2467
- rationale?: string | undefined;
2468
- generatedBy?: string | undefined;
2469
- } | undefined;
2470
- } | undefined;
2471
- readonly summaryOperations?: {
2472
- object: string;
2473
- field: string;
2474
- function: "min" | "max" | "count" | "sum" | "avg";
2475
- } | undefined;
2476
- readonly language?: string | undefined;
2477
- readonly lineNumbers?: boolean | undefined;
2478
- readonly maxRating?: number | undefined;
2479
- readonly allowHalf?: boolean | undefined;
2480
- readonly displayMap?: boolean | undefined;
2481
- readonly allowGeocoding?: boolean | undefined;
2482
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2483
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2484
- readonly allowAlpha?: boolean | undefined;
2485
- readonly presetColors?: string[] | undefined;
2486
- readonly step?: number | undefined;
2487
- readonly showValue?: boolean | undefined;
2488
- readonly marks?: Record<string, string> | undefined;
2489
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2490
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2491
- readonly displayValue?: boolean | undefined;
2492
- readonly allowScanning?: boolean | undefined;
2493
- readonly currencyConfig?: {
2494
- precision: number;
2495
- currencyMode: "fixed" | "dynamic";
2496
- defaultCurrency: string;
2497
- } | undefined;
2498
- readonly vectorConfig?: {
2499
- dimensions: number;
2500
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2501
- normalized: boolean;
2502
- indexed: boolean;
2503
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2504
- } | undefined;
2505
- readonly fileAttachmentConfig?: {
2506
- virusScan: boolean;
2507
- virusScanOnUpload: boolean;
2508
- quarantineOnThreat: boolean;
2509
- allowMultiple: boolean;
2510
- allowReplace: boolean;
2511
- allowDelete: boolean;
2512
- requireUpload: boolean;
2513
- extractMetadata: boolean;
2514
- extractText: boolean;
2515
- versioningEnabled: boolean;
2516
- publicRead: boolean;
2517
- presignedUrlExpiry: number;
2518
- minSize?: number | undefined;
2519
- maxSize?: number | undefined;
2520
- allowedTypes?: string[] | undefined;
2521
- blockedTypes?: string[] | undefined;
2522
- allowedMimeTypes?: string[] | undefined;
2523
- blockedMimeTypes?: string[] | undefined;
2524
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2525
- storageProvider?: string | undefined;
2526
- storageBucket?: string | undefined;
2527
- storagePrefix?: string | undefined;
2528
- imageValidation?: {
2529
- generateThumbnails: boolean;
2530
- preserveMetadata: boolean;
2531
- autoRotate: boolean;
2532
- minWidth?: number | undefined;
2533
- maxWidth?: number | undefined;
2534
- minHeight?: number | undefined;
2535
- maxHeight?: number | undefined;
2536
- aspectRatio?: string | undefined;
2537
- thumbnailSizes?: {
2538
- name: string;
2539
- width: number;
2540
- height: number;
2541
- crop: boolean;
2542
- }[] | undefined;
2543
- } | undefined;
2544
- maxVersions?: number | undefined;
2545
- } | undefined;
2546
- readonly maskingRule?: {
2547
- field: string;
2548
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2549
- preserveFormat: boolean;
2550
- preserveLength: boolean;
2551
- pattern?: string | undefined;
2552
- roles?: string[] | undefined;
2553
- exemptRoles?: string[] | undefined;
2554
- } | undefined;
2555
- readonly auditTrail?: boolean | undefined;
2556
- readonly cached?: {
2557
- enabled: boolean;
2558
- ttl: number;
2559
- invalidateOn: string[];
2560
- } | undefined;
2561
- readonly dataQuality?: {
2562
- uniqueness: boolean;
2563
- completeness: number;
2564
- accuracy?: {
2565
- source: string;
2566
- threshold: number;
2567
- } | undefined;
2568
- } | undefined;
2569
- readonly conditionalRequired?: {
2570
- dialect: "cel" | "js" | "cron" | "template";
2571
- source?: string | undefined;
2572
- ast?: unknown;
2573
- meta?: {
2574
- rationale?: string | undefined;
2575
- generatedBy?: string | undefined;
2576
- } | undefined;
2577
- } | undefined;
2578
- readonly hidden?: boolean | undefined;
2579
- readonly sortable?: boolean | undefined;
2580
- readonly inlineHelpText?: string | undefined;
2581
- readonly trackFeedHistory?: boolean | undefined;
2582
- readonly caseSensitive?: boolean | undefined;
2583
- readonly autonumberFormat?: string | undefined;
2584
- readonly index?: boolean | undefined;
2585
- readonly type: "textarea";
2586
- };
2587
- readonly created_at: {
2588
- readonly readonly?: boolean | undefined;
2589
- readonly format?: string | undefined;
2590
- readonly options?: {
2591
- label: string;
2592
- value: string;
2593
- color?: string | undefined;
2594
- default?: boolean | undefined;
2595
- }[] | undefined;
2596
- readonly description?: string | undefined;
2597
- readonly label?: string | undefined;
2598
- readonly name?: string | undefined;
2599
- readonly precision?: number | undefined;
2600
- readonly required?: boolean | undefined;
2601
- readonly multiple?: boolean | undefined;
2602
- readonly dependencies?: string[] | undefined;
2603
- readonly theme?: string | undefined;
2604
- readonly externalId?: boolean | undefined;
2605
- readonly system?: boolean | undefined;
2606
- readonly min?: number | undefined;
2607
- readonly max?: number | undefined;
2608
- readonly group?: string | undefined;
2609
- readonly encryptionConfig?: {
2610
- enabled: boolean;
2611
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2612
- keyManagement: {
2613
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2614
- keyId?: string | undefined;
2615
- rotationPolicy?: {
2616
- enabled: boolean;
2617
- frequencyDays: number;
2618
- retainOldVersions: number;
2619
- autoRotate: boolean;
2620
- } | undefined;
2621
- };
2622
- scope: "record" | "field" | "table" | "database";
2623
- deterministicEncryption: boolean;
2624
- searchableEncryption: boolean;
2625
- } | undefined;
2626
- readonly columnName?: string | undefined;
2627
- readonly searchable?: boolean | undefined;
2628
- readonly unique?: boolean | undefined;
2629
- readonly defaultValue?: unknown;
2630
- readonly maxLength?: number | undefined;
2631
- readonly minLength?: number | undefined;
2632
- readonly scale?: number | undefined;
2633
- readonly reference?: string | undefined;
2634
- readonly referenceFilters?: string[] | undefined;
2635
- readonly writeRequiresMasterRead?: boolean | undefined;
2636
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2637
- readonly expression?: {
2638
- dialect: "cel" | "js" | "cron" | "template";
2639
- source?: string | undefined;
2640
- ast?: unknown;
2641
- meta?: {
2642
- rationale?: string | undefined;
2643
- generatedBy?: string | undefined;
2644
- } | undefined;
2645
- } | undefined;
2646
- readonly summaryOperations?: {
2647
- object: string;
2648
- field: string;
2649
- function: "min" | "max" | "count" | "sum" | "avg";
2650
- } | undefined;
2651
- readonly language?: string | undefined;
2652
- readonly lineNumbers?: boolean | undefined;
2653
- readonly maxRating?: number | undefined;
2654
- readonly allowHalf?: boolean | undefined;
2655
- readonly displayMap?: boolean | undefined;
2656
- readonly allowGeocoding?: boolean | undefined;
2657
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2658
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2659
- readonly allowAlpha?: boolean | undefined;
2660
- readonly presetColors?: string[] | undefined;
2661
- readonly step?: number | undefined;
2662
- readonly showValue?: boolean | undefined;
2663
- readonly marks?: Record<string, string> | undefined;
2664
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2665
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2666
- readonly displayValue?: boolean | undefined;
2667
- readonly allowScanning?: boolean | undefined;
2668
- readonly currencyConfig?: {
2669
- precision: number;
2670
- currencyMode: "fixed" | "dynamic";
2671
- defaultCurrency: string;
2672
- } | undefined;
2673
- readonly vectorConfig?: {
2674
- dimensions: number;
2675
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2676
- normalized: boolean;
2677
- indexed: boolean;
2678
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2679
- } | undefined;
2680
- readonly fileAttachmentConfig?: {
2681
- virusScan: boolean;
2682
- virusScanOnUpload: boolean;
2683
- quarantineOnThreat: boolean;
2684
- allowMultiple: boolean;
2685
- allowReplace: boolean;
2686
- allowDelete: boolean;
2687
- requireUpload: boolean;
2688
- extractMetadata: boolean;
2689
- extractText: boolean;
2690
- versioningEnabled: boolean;
2691
- publicRead: boolean;
2692
- presignedUrlExpiry: number;
2693
- minSize?: number | undefined;
2694
- maxSize?: number | undefined;
2695
- allowedTypes?: string[] | undefined;
2696
- blockedTypes?: string[] | undefined;
2697
- allowedMimeTypes?: string[] | undefined;
2698
- blockedMimeTypes?: string[] | undefined;
2699
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2700
- storageProvider?: string | undefined;
2701
- storageBucket?: string | undefined;
2702
- storagePrefix?: string | undefined;
2703
- imageValidation?: {
2704
- generateThumbnails: boolean;
2705
- preserveMetadata: boolean;
2706
- autoRotate: boolean;
2707
- minWidth?: number | undefined;
2708
- maxWidth?: number | undefined;
2709
- minHeight?: number | undefined;
2710
- maxHeight?: number | undefined;
2711
- aspectRatio?: string | undefined;
2712
- thumbnailSizes?: {
2713
- name: string;
2714
- width: number;
2715
- height: number;
2716
- crop: boolean;
2717
- }[] | undefined;
2718
- } | undefined;
2719
- maxVersions?: number | undefined;
2720
- } | undefined;
2721
- readonly maskingRule?: {
2722
- field: string;
2723
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2724
- preserveFormat: boolean;
2725
- preserveLength: boolean;
2726
- pattern?: string | undefined;
2727
- roles?: string[] | undefined;
2728
- exemptRoles?: string[] | undefined;
2729
- } | undefined;
2730
- readonly auditTrail?: boolean | undefined;
2731
- readonly cached?: {
2732
- enabled: boolean;
2733
- ttl: number;
2734
- invalidateOn: string[];
2735
- } | undefined;
2736
- readonly dataQuality?: {
2737
- uniqueness: boolean;
2738
- completeness: number;
2739
- accuracy?: {
2740
- source: string;
2741
- threshold: number;
2742
- } | undefined;
2743
- } | undefined;
2744
- readonly conditionalRequired?: {
2745
- dialect: "cel" | "js" | "cron" | "template";
2746
- source?: string | undefined;
2747
- ast?: unknown;
2748
- meta?: {
2749
- rationale?: string | undefined;
2750
- generatedBy?: string | undefined;
2751
- } | undefined;
2752
- } | undefined;
2753
- readonly hidden?: boolean | undefined;
2754
- readonly sortable?: boolean | undefined;
2755
- readonly inlineHelpText?: string | undefined;
2756
- readonly trackFeedHistory?: boolean | undefined;
2757
- readonly caseSensitive?: boolean | undefined;
2758
- readonly autonumberFormat?: string | undefined;
2759
- readonly index?: boolean | undefined;
2760
- readonly type: "datetime";
2761
- };
2762
- readonly updated_at: {
2763
- readonly readonly?: boolean | undefined;
2764
- readonly format?: string | undefined;
2765
- readonly options?: {
2766
- label: string;
2767
- value: string;
2768
- color?: string | undefined;
2769
- default?: boolean | undefined;
2770
- }[] | undefined;
2771
- readonly description?: string | undefined;
2772
- readonly label?: string | undefined;
2773
- readonly name?: string | undefined;
2774
- readonly precision?: number | undefined;
2775
- readonly required?: boolean | undefined;
2776
- readonly multiple?: boolean | undefined;
2777
- readonly dependencies?: string[] | undefined;
2778
- readonly theme?: string | undefined;
2779
- readonly externalId?: boolean | undefined;
2780
- readonly system?: boolean | undefined;
2781
- readonly min?: number | undefined;
2782
- readonly max?: number | undefined;
2783
- readonly group?: string | undefined;
2784
- readonly encryptionConfig?: {
2785
- enabled: boolean;
2786
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2787
- keyManagement: {
2788
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2789
- keyId?: string | undefined;
2790
- rotationPolicy?: {
2791
- enabled: boolean;
2792
- frequencyDays: number;
2793
- retainOldVersions: number;
2794
- autoRotate: boolean;
2795
- } | undefined;
2796
- };
2797
- scope: "record" | "field" | "table" | "database";
2798
- deterministicEncryption: boolean;
2799
- searchableEncryption: boolean;
2800
- } | undefined;
2801
- readonly columnName?: string | undefined;
2802
- readonly searchable?: boolean | undefined;
2803
- readonly unique?: boolean | undefined;
2804
- readonly defaultValue?: unknown;
2805
- readonly maxLength?: number | undefined;
2806
- readonly minLength?: number | undefined;
2807
- readonly scale?: number | undefined;
2808
- readonly reference?: string | undefined;
2809
- readonly referenceFilters?: string[] | undefined;
2810
- readonly writeRequiresMasterRead?: boolean | undefined;
2811
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2812
- readonly expression?: {
2813
- dialect: "cel" | "js" | "cron" | "template";
2814
- source?: string | undefined;
2815
- ast?: unknown;
2816
- meta?: {
2817
- rationale?: string | undefined;
2818
- generatedBy?: string | undefined;
2819
- } | undefined;
2820
- } | undefined;
2821
- readonly summaryOperations?: {
2822
- object: string;
2823
- field: string;
2824
- function: "min" | "max" | "count" | "sum" | "avg";
2825
- } | undefined;
2826
- readonly language?: string | undefined;
2827
- readonly lineNumbers?: boolean | undefined;
2828
- readonly maxRating?: number | undefined;
2829
- readonly allowHalf?: boolean | undefined;
2830
- readonly displayMap?: boolean | undefined;
2831
- readonly allowGeocoding?: boolean | undefined;
2832
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2833
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2834
- readonly allowAlpha?: boolean | undefined;
2835
- readonly presetColors?: string[] | undefined;
2836
- readonly step?: number | undefined;
2837
- readonly showValue?: boolean | undefined;
2838
- readonly marks?: Record<string, string> | undefined;
2839
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2840
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2841
- readonly displayValue?: boolean | undefined;
2842
- readonly allowScanning?: boolean | undefined;
2843
- readonly currencyConfig?: {
2844
- precision: number;
2845
- currencyMode: "fixed" | "dynamic";
2846
- defaultCurrency: string;
2847
- } | undefined;
2848
- readonly vectorConfig?: {
2849
- dimensions: number;
2850
- distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2851
- normalized: boolean;
2852
- indexed: boolean;
2853
- indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2854
- } | undefined;
2855
- readonly fileAttachmentConfig?: {
2856
- virusScan: boolean;
2857
- virusScanOnUpload: boolean;
2858
- quarantineOnThreat: boolean;
2859
- allowMultiple: boolean;
2860
- allowReplace: boolean;
2861
- allowDelete: boolean;
2862
- requireUpload: boolean;
2863
- extractMetadata: boolean;
2864
- extractText: boolean;
2865
- versioningEnabled: boolean;
2866
- publicRead: boolean;
2867
- presignedUrlExpiry: number;
2868
- minSize?: number | undefined;
2869
- maxSize?: number | undefined;
2870
- allowedTypes?: string[] | undefined;
2871
- blockedTypes?: string[] | undefined;
2872
- allowedMimeTypes?: string[] | undefined;
2873
- blockedMimeTypes?: string[] | undefined;
2874
- virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2875
- storageProvider?: string | undefined;
2876
- storageBucket?: string | undefined;
2877
- storagePrefix?: string | undefined;
2878
- imageValidation?: {
2879
- generateThumbnails: boolean;
2880
- preserveMetadata: boolean;
2881
- autoRotate: boolean;
2882
- minWidth?: number | undefined;
2883
- maxWidth?: number | undefined;
2884
- minHeight?: number | undefined;
2885
- maxHeight?: number | undefined;
2886
- aspectRatio?: string | undefined;
2887
- thumbnailSizes?: {
2888
- name: string;
2889
- width: number;
2890
- height: number;
2891
- crop: boolean;
2892
- }[] | undefined;
2893
- } | undefined;
2894
- maxVersions?: number | undefined;
2895
- } | undefined;
2896
- readonly maskingRule?: {
2897
- field: string;
2898
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2899
- preserveFormat: boolean;
2900
- preserveLength: boolean;
2901
- pattern?: string | undefined;
2902
- roles?: string[] | undefined;
2903
- exemptRoles?: string[] | undefined;
2904
- } | undefined;
2905
- readonly auditTrail?: boolean | undefined;
2906
- readonly cached?: {
2907
- enabled: boolean;
2908
- ttl: number;
2909
- invalidateOn: string[];
2910
- } | undefined;
2911
- readonly dataQuality?: {
2912
- uniqueness: boolean;
2913
- completeness: number;
2914
- accuracy?: {
2915
- source: string;
2916
- threshold: number;
2917
- } | undefined;
2918
- } | undefined;
2919
- readonly conditionalRequired?: {
2920
- dialect: "cel" | "js" | "cron" | "template";
2921
- source?: string | undefined;
2922
- ast?: unknown;
2923
- meta?: {
2924
- rationale?: string | undefined;
2925
- generatedBy?: string | undefined;
2926
- } | undefined;
2927
- } | undefined;
2928
- readonly hidden?: boolean | undefined;
2929
- readonly sortable?: boolean | undefined;
2930
- readonly inlineHelpText?: string | undefined;
2931
- readonly trackFeedHistory?: boolean | undefined;
2932
- readonly caseSensitive?: boolean | undefined;
2933
- readonly autonumberFormat?: string | undefined;
2934
- readonly index?: boolean | undefined;
2935
- readonly type: "datetime";
2936
- };
2937
- };
2938
- readonly indexes: [{
2939
- readonly fields: ["name"];
2940
- readonly unique: true;
2941
- }, {
2942
- readonly fields: ["object_name"];
2943
- }, {
2944
- readonly fields: ["active", "object_name"];
2945
- }];
2946
- }, "fields">;
2947
-
2948
- export { SysWebhook };
2
+ export { }