@objectstack/plugin-webhooks 7.3.0 → 7.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/.turbo/turbo-build.log +30 -26
  2. package/CHANGELOG.md +105 -0
  3. package/dist/chunk-7HS5DLU2.js +319 -0
  4. package/dist/chunk-7HS5DLU2.js.map +1 -0
  5. package/dist/{chunk-FA66GQEO.cjs → chunk-HF7CCDPB.cjs} +3 -3
  6. package/dist/{chunk-FA66GQEO.cjs.map → chunk-HF7CCDPB.cjs.map} +1 -1
  7. package/dist/{chunk-BS2QTZH3.js → chunk-KNGLLSSP.js} +2 -2
  8. package/dist/{chunk-MJZGD37S.cjs → chunk-TDSI7UHY.cjs} +138 -3
  9. package/dist/chunk-TDSI7UHY.cjs.map +1 -0
  10. package/dist/index.cjs +43 -14
  11. package/dist/index.cjs.map +1 -1
  12. package/dist/index.js +33 -4
  13. package/dist/index.js.map +1 -1
  14. package/dist/schema.cjs +4 -2
  15. package/dist/schema.cjs.map +1 -1
  16. package/dist/schema.d.cts +3002 -137
  17. package/dist/schema.d.ts +3002 -137
  18. package/dist/schema.js +3 -1
  19. package/dist/sql-outbox.cjs +3 -3
  20. package/dist/sql-outbox.js +2 -2
  21. package/dist/translations-AV47AVPV.js +727 -0
  22. package/dist/translations-AV47AVPV.js.map +1 -0
  23. package/dist/translations-OAKKANSP.cjs +727 -0
  24. package/dist/translations-OAKKANSP.cjs.map +1 -0
  25. package/package.json +6 -6
  26. package/scripts/i18n-extract.config.ts +32 -0
  27. package/src/schema.ts +7 -3
  28. package/src/sys-webhook.object.ts +177 -0
  29. package/src/translations/en.objects.generated.ts +187 -0
  30. package/src/translations/es-ES.objects.generated.ts +187 -0
  31. package/src/translations/index.ts +23 -0
  32. package/src/translations/ja-JP.objects.generated.ts +187 -0
  33. package/src/translations/zh-CN.objects.generated.ts +187 -0
  34. package/src/webhook-outbox-plugin.ts +38 -7
  35. package/dist/chunk-33LYZT7O.js +0 -184
  36. package/dist/chunk-33LYZT7O.js.map +0 -1
  37. package/dist/chunk-MJZGD37S.cjs.map +0 -1
  38. /package/dist/{chunk-BS2QTZH3.js.map → chunk-KNGLLSSP.js.map} +0 -0
package/dist/schema.d.cts CHANGED
@@ -1,43 +1,2930 @@
1
- import { z } from 'zod';
2
1
  import * as _objectstack_spec_data from '@objectstack/spec/data';
3
2
 
4
- declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
5
- type: z.ZodString;
6
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7
- }, z.core.$strip>]>;
8
3
  /**
9
- * State Transition Definition
10
- * "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
4
+ * sys_webhook Outbound HTTP integration configuration (runtime).
5
+ *
6
+ * Persists a single {@link Webhook} envelope per row so administrators
7
+ * can author, enable/disable, and edit webhook subscriptions from the
8
+ * Studio UI without code changes. The canonical Zod schema for the
9
+ * `definition_json` envelope lives at `@objectstack/spec/automation/webhook`.
10
+ *
11
+ * One row per `name`. The automation runtime
12
+ * (`@objectstack/service-automation`, built-in `http_request` node) loads
13
+ * active rows on boot + on `sys_webhook:changed` events, registers
14
+ * `afterInsert` / `afterUpdate` / `afterDelete` listeners for the
15
+ * targeted object, and dispatches outbound HTTP calls when matching
16
+ * record events fire.
17
+ *
18
+ * Ownership (ADR-0029 K2.a): this object is **owned by
19
+ * `@objectstack/plugin-webhooks`** — the plugin that consumes these rows —
20
+ * alongside its sibling `sys_webhook_delivery`. It used to live in the
21
+ * `@objectstack/platform-objects` monolith and be imported here; the
22
+ * definition now lives with its owner so the plugin ships both data and
23
+ * behavior as one unit.
24
+ *
25
+ * Platform-wide on purpose: every project (standalone, single-tenant,
26
+ * cloud) can integrate with external systems (Slack, Stripe, internal
27
+ * services) the same way.
28
+ *
29
+ * @namespace sys
11
30
  */
12
- declare const TransitionSchema: z.ZodObject<{
13
- target: z.ZodOptional<z.ZodString>;
14
- cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
15
- type: z.ZodString;
16
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17
- }, z.core.$strip>]>>;
18
- actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
19
- type: z.ZodString;
20
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
21
- }, z.core.$strip>]>>>;
22
- description: z.ZodOptional<z.ZodString>;
23
- }, z.core.$strip>;
24
- type ActionRef = z.infer<typeof ActionRefSchema>;
25
- type Transition = z.infer<typeof TransitionSchema>;
26
- type StateNodeConfig = {
27
- type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
28
- entry?: ActionRef[];
29
- exit?: ActionRef[];
30
- on?: Record<string, string | Transition | Transition[]>;
31
- always?: Transition[];
32
- initial?: string;
33
- states?: Record<string, StateNodeConfig>;
34
- meta?: {
35
- label?: string;
36
- description?: string;
37
- color?: string;
38
- aiInstructions?: string;
31
+ declare const SysWebhook: Omit<{
32
+ name: string;
33
+ active: boolean;
34
+ isSystem: boolean;
35
+ abstract: boolean;
36
+ datasource: string;
37
+ fields: Record<string, {
38
+ type: "number" | "boolean" | "date" | "record" | "file" | "secret" | "url" | "tags" | "code" | "datetime" | "signature" | "progress" | "currency" | "percent" | "password" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "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";
39
+ required: boolean;
40
+ searchable: boolean;
41
+ multiple: boolean;
42
+ unique: boolean;
43
+ deleteBehavior: "set_null" | "cascade" | "restrict";
44
+ auditTrail: boolean;
45
+ hidden: boolean;
46
+ readonly: boolean;
47
+ sortable: boolean;
48
+ index: boolean;
49
+ externalId: boolean;
50
+ name?: string | undefined;
51
+ label?: string | undefined;
52
+ description?: string | undefined;
53
+ format?: string | undefined;
54
+ columnName?: string | undefined;
55
+ defaultValue?: unknown;
56
+ maxLength?: number | undefined;
57
+ minLength?: number | undefined;
58
+ precision?: number | undefined;
59
+ scale?: number | undefined;
60
+ min?: number | undefined;
61
+ max?: number | undefined;
62
+ options?: {
63
+ label: string;
64
+ value: string;
65
+ color?: string | undefined;
66
+ default?: boolean | undefined;
67
+ }[] | undefined;
68
+ reference?: string | undefined;
69
+ referenceFilters?: string[] | undefined;
70
+ writeRequiresMasterRead?: boolean | undefined;
71
+ expression?: {
72
+ dialect: "cel" | "js" | "cron" | "template";
73
+ source?: string | undefined;
74
+ ast?: unknown;
75
+ meta?: {
76
+ rationale?: string | undefined;
77
+ generatedBy?: string | undefined;
78
+ } | undefined;
79
+ } | {
80
+ dialect: "cel" | "js" | "cron" | "template";
81
+ source?: string | undefined;
82
+ ast?: unknown;
83
+ meta?: {
84
+ rationale?: string | undefined;
85
+ generatedBy?: string | undefined;
86
+ } | undefined;
87
+ } | undefined;
88
+ summaryOperations?: {
89
+ object: string;
90
+ field: string;
91
+ function: "min" | "max" | "count" | "sum" | "avg";
92
+ } | undefined;
93
+ language?: string | undefined;
94
+ theme?: string | undefined;
95
+ lineNumbers?: boolean | undefined;
96
+ maxRating?: number | undefined;
97
+ allowHalf?: boolean | undefined;
98
+ displayMap?: boolean | undefined;
99
+ allowGeocoding?: boolean | undefined;
100
+ addressFormat?: "us" | "uk" | "international" | undefined;
101
+ colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
102
+ allowAlpha?: boolean | undefined;
103
+ presetColors?: string[] | undefined;
104
+ step?: number | undefined;
105
+ showValue?: boolean | undefined;
106
+ marks?: Record<string, string> | undefined;
107
+ barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
108
+ qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
109
+ displayValue?: boolean | undefined;
110
+ allowScanning?: boolean | undefined;
111
+ currencyConfig?: {
112
+ precision: number;
113
+ currencyMode: "fixed" | "dynamic";
114
+ defaultCurrency: string;
115
+ } | undefined;
116
+ vectorConfig?: {
117
+ dimensions: number;
118
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
119
+ normalized: boolean;
120
+ indexed: boolean;
121
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
122
+ } | undefined;
123
+ fileAttachmentConfig?: {
124
+ virusScan: boolean;
125
+ virusScanOnUpload: boolean;
126
+ quarantineOnThreat: boolean;
127
+ allowMultiple: boolean;
128
+ allowReplace: boolean;
129
+ allowDelete: boolean;
130
+ requireUpload: boolean;
131
+ extractMetadata: boolean;
132
+ extractText: boolean;
133
+ versioningEnabled: boolean;
134
+ publicRead: boolean;
135
+ presignedUrlExpiry: number;
136
+ minSize?: number | undefined;
137
+ maxSize?: number | undefined;
138
+ allowedTypes?: string[] | undefined;
139
+ blockedTypes?: string[] | undefined;
140
+ allowedMimeTypes?: string[] | undefined;
141
+ blockedMimeTypes?: string[] | undefined;
142
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
143
+ storageProvider?: string | undefined;
144
+ storageBucket?: string | undefined;
145
+ storagePrefix?: string | undefined;
146
+ imageValidation?: {
147
+ generateThumbnails: boolean;
148
+ preserveMetadata: boolean;
149
+ autoRotate: boolean;
150
+ minWidth?: number | undefined;
151
+ maxWidth?: number | undefined;
152
+ minHeight?: number | undefined;
153
+ maxHeight?: number | undefined;
154
+ aspectRatio?: string | undefined;
155
+ thumbnailSizes?: {
156
+ name: string;
157
+ width: number;
158
+ height: number;
159
+ crop: boolean;
160
+ }[] | undefined;
161
+ } | undefined;
162
+ maxVersions?: number | undefined;
163
+ } | undefined;
164
+ encryptionConfig?: {
165
+ enabled: boolean;
166
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
167
+ keyManagement: {
168
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
169
+ keyId?: string | undefined;
170
+ rotationPolicy?: {
171
+ enabled: boolean;
172
+ frequencyDays: number;
173
+ retainOldVersions: number;
174
+ autoRotate: boolean;
175
+ } | undefined;
176
+ };
177
+ scope: "field" | "record" | "table" | "database";
178
+ deterministicEncryption: boolean;
179
+ searchableEncryption: boolean;
180
+ } | undefined;
181
+ maskingRule?: {
182
+ field: string;
183
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
184
+ preserveFormat: boolean;
185
+ preserveLength: boolean;
186
+ pattern?: string | undefined;
187
+ roles?: string[] | undefined;
188
+ exemptRoles?: string[] | undefined;
189
+ } | undefined;
190
+ dependencies?: string[] | undefined;
191
+ cached?: {
192
+ enabled: boolean;
193
+ ttl: number;
194
+ invalidateOn: string[];
195
+ } | undefined;
196
+ dataQuality?: {
197
+ uniqueness: boolean;
198
+ completeness: number;
199
+ accuracy?: {
200
+ source: string;
201
+ threshold: number;
202
+ } | undefined;
203
+ } | undefined;
204
+ group?: string | undefined;
205
+ conditionalRequired?: {
206
+ dialect: "cel" | "js" | "cron" | "template";
207
+ source?: string | undefined;
208
+ ast?: unknown;
209
+ meta?: {
210
+ rationale?: string | undefined;
211
+ generatedBy?: string | undefined;
212
+ } | undefined;
213
+ } | {
214
+ dialect: "cel" | "js" | "cron" | "template";
215
+ source?: string | undefined;
216
+ ast?: unknown;
217
+ meta?: {
218
+ rationale?: string | undefined;
219
+ generatedBy?: string | undefined;
220
+ } | undefined;
221
+ } | undefined;
222
+ system?: boolean | undefined;
223
+ inlineHelpText?: string | undefined;
224
+ trackFeedHistory?: boolean | undefined;
225
+ caseSensitive?: boolean | undefined;
226
+ autonumberFormat?: string | undefined;
227
+ }>;
228
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
229
+ _lockReason?: string | undefined;
230
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
231
+ _provenance?: "package" | "env-forced" | "org" | undefined;
232
+ _packageId?: string | undefined;
233
+ _packageVersion?: string | undefined;
234
+ _lockDocsUrl?: string | undefined;
235
+ label?: string | undefined;
236
+ pluralLabel?: string | undefined;
237
+ description?: string | undefined;
238
+ icon?: string | undefined;
239
+ tags?: string[] | undefined;
240
+ managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
241
+ userActions?: {
242
+ create?: boolean | undefined;
243
+ import?: boolean | undefined;
244
+ edit?: boolean | undefined;
245
+ delete?: boolean | undefined;
246
+ exportCsv?: boolean | undefined;
247
+ } | undefined;
248
+ systemFields?: false | {
249
+ tenant?: boolean | undefined;
250
+ owner?: boolean | undefined;
251
+ audit?: boolean | undefined;
252
+ } | undefined;
253
+ external?: {
254
+ writable: boolean;
255
+ remoteName?: string | undefined;
256
+ remoteSchema?: string | undefined;
257
+ columnMap?: Record<string, string> | undefined;
258
+ introspectedAt?: string | undefined;
259
+ ignoreColumns?: string[] | undefined;
260
+ } | undefined;
261
+ indexes?: {
262
+ fields: string[];
263
+ type: "hash" | "btree" | "gin" | "gist" | "fulltext";
264
+ unique: boolean;
265
+ name?: string | undefined;
266
+ partial?: string | undefined;
267
+ }[] | undefined;
268
+ fieldGroups?: {
269
+ key: string;
270
+ label: string;
271
+ defaultExpanded: boolean;
272
+ icon?: string | undefined;
273
+ description?: string | undefined;
274
+ visibleOn?: {
275
+ dialect: "cel" | "js" | "cron" | "template";
276
+ source?: string | undefined;
277
+ ast?: unknown;
278
+ meta?: {
279
+ rationale?: string | undefined;
280
+ generatedBy?: string | undefined;
281
+ } | undefined;
282
+ } | {
283
+ dialect: "cel" | "js" | "cron" | "template";
284
+ source?: string | undefined;
285
+ ast?: unknown;
286
+ meta?: {
287
+ rationale?: string | undefined;
288
+ generatedBy?: string | undefined;
289
+ } | undefined;
290
+ } | undefined;
291
+ }[] | undefined;
292
+ tenancy?: {
293
+ enabled: boolean;
294
+ strategy: "hybrid" | "shared" | "isolated";
295
+ tenantField: string;
296
+ crossTenantAccess: boolean;
297
+ } | undefined;
298
+ softDelete?: {
299
+ enabled: boolean;
300
+ field: string;
301
+ cascadeDelete: boolean;
302
+ } | undefined;
303
+ versioning?: {
304
+ enabled: boolean;
305
+ strategy: "snapshot" | "delta" | "event-sourcing";
306
+ versionField: string;
307
+ retentionDays?: number | undefined;
308
+ } | undefined;
309
+ partitioning?: {
310
+ enabled: boolean;
311
+ strategy: "hash" | "list" | "range";
312
+ key: string;
313
+ interval?: string | undefined;
314
+ } | undefined;
315
+ cdc?: {
316
+ enabled: boolean;
317
+ events: ("update" | "delete" | "insert")[];
318
+ destination: string;
319
+ } | undefined;
320
+ validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
321
+ displayNameField?: string | undefined;
322
+ recordName?: {
323
+ type: "text" | "autonumber";
324
+ displayFormat?: string | undefined;
325
+ startNumber?: number | undefined;
326
+ } | undefined;
327
+ titleFormat?: {
328
+ dialect: "cel" | "js" | "cron" | "template";
329
+ source?: string | undefined;
330
+ ast?: unknown;
331
+ meta?: {
332
+ rationale?: string | undefined;
333
+ generatedBy?: string | undefined;
334
+ } | undefined;
335
+ } | {
336
+ dialect: "cel" | "js" | "cron" | "template";
337
+ source?: string | undefined;
338
+ ast?: unknown;
339
+ meta?: {
340
+ rationale?: string | undefined;
341
+ generatedBy?: string | undefined;
342
+ } | undefined;
343
+ } | undefined;
344
+ compactLayout?: string[] | undefined;
345
+ listViews?: Record<string, {
346
+ type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
347
+ columns: string[] | {
348
+ field: string;
349
+ label?: string | undefined;
350
+ width?: number | undefined;
351
+ align?: "left" | "center" | "right" | undefined;
352
+ hidden?: boolean | undefined;
353
+ sortable?: boolean | undefined;
354
+ resizable?: boolean | undefined;
355
+ wrap?: boolean | undefined;
356
+ type?: string | undefined;
357
+ pinned?: "left" | "right" | undefined;
358
+ summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
359
+ link?: boolean | undefined;
360
+ action?: string | undefined;
361
+ }[];
362
+ name?: string | undefined;
363
+ label?: string | undefined;
364
+ data?: {
365
+ provider: "object";
366
+ object: string;
367
+ } | {
368
+ provider: "api";
369
+ read?: {
370
+ url: string;
371
+ method: "POST" | "GET" | "PATCH" | "PUT" | "DELETE";
372
+ headers?: Record<string, string> | undefined;
373
+ params?: Record<string, unknown> | undefined;
374
+ body?: unknown;
375
+ } | undefined;
376
+ write?: {
377
+ url: string;
378
+ method: "POST" | "GET" | "PATCH" | "PUT" | "DELETE";
379
+ headers?: Record<string, string> | undefined;
380
+ params?: Record<string, unknown> | undefined;
381
+ body?: unknown;
382
+ } | undefined;
383
+ } | {
384
+ provider: "value";
385
+ items: unknown[];
386
+ } | {
387
+ provider: "schema";
388
+ schemaId: string;
389
+ schema?: Record<string, unknown> | undefined;
390
+ } | undefined;
391
+ filter?: {
392
+ field: string;
393
+ operator: string;
394
+ value?: string | number | boolean | (string | number)[] | null | undefined;
395
+ }[] | undefined;
396
+ sort?: string | {
397
+ field: string;
398
+ order: "asc" | "desc";
399
+ }[] | undefined;
400
+ searchableFields?: string[] | undefined;
401
+ filterableFields?: string[] | undefined;
402
+ resizable?: boolean | undefined;
403
+ striped?: boolean | undefined;
404
+ bordered?: boolean | undefined;
405
+ compactToolbar?: boolean | undefined;
406
+ selection?: {
407
+ type: "none" | "multiple" | "single";
408
+ } | undefined;
409
+ navigation?: {
410
+ mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
411
+ preventNavigation: boolean;
412
+ openNewTab: boolean;
413
+ view?: string | undefined;
414
+ width?: string | number | undefined;
415
+ } | undefined;
416
+ pagination?: {
417
+ pageSize: number;
418
+ pageSizeOptions?: number[] | undefined;
419
+ } | undefined;
420
+ kanban?: {
421
+ groupByField: string;
422
+ columns: string[];
423
+ summarizeField?: string | undefined;
424
+ } | undefined;
425
+ calendar?: {
426
+ startDateField: string;
427
+ titleField: string;
428
+ endDateField?: string | undefined;
429
+ colorField?: string | undefined;
430
+ } | undefined;
431
+ gantt?: {
432
+ startDateField: string;
433
+ endDateField: string;
434
+ titleField: string;
435
+ progressField?: string | undefined;
436
+ dependenciesField?: string | undefined;
437
+ } | undefined;
438
+ gallery?: {
439
+ coverFit: "cover" | "contain";
440
+ cardSize: "small" | "medium" | "large";
441
+ coverField?: string | undefined;
442
+ titleField?: string | undefined;
443
+ visibleFields?: string[] | undefined;
444
+ } | undefined;
445
+ timeline?: {
446
+ startDateField: string;
447
+ titleField: string;
448
+ scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
449
+ endDateField?: string | undefined;
450
+ groupByField?: string | undefined;
451
+ colorField?: string | undefined;
452
+ } | undefined;
453
+ chart?: {
454
+ chartType: "bar" | "line" | "pie" | "area" | "scatter";
455
+ xAxisField: string;
456
+ yAxisFields: string[];
457
+ aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
458
+ groupByField?: string | undefined;
459
+ } | undefined;
460
+ description?: string | undefined;
461
+ sharing?: {
462
+ type: "personal" | "collaborative";
463
+ lockedBy?: string | undefined;
464
+ } | undefined;
465
+ rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
466
+ grouping?: {
467
+ fields: {
468
+ field: string;
469
+ order: "asc" | "desc";
470
+ collapsed: boolean;
471
+ }[];
472
+ } | undefined;
473
+ rowColor?: {
474
+ field: string;
475
+ colors?: Record<string, string> | undefined;
476
+ } | undefined;
477
+ hiddenFields?: string[] | undefined;
478
+ fieldOrder?: string[] | undefined;
479
+ rowActions?: string[] | undefined;
480
+ bulkActions?: string[] | undefined;
481
+ bulkActionDefs?: Record<string, any>[] | undefined;
482
+ virtualScroll?: boolean | undefined;
483
+ conditionalFormatting?: {
484
+ condition: {
485
+ dialect: "cel" | "js" | "cron" | "template";
486
+ source?: string | undefined;
487
+ ast?: unknown;
488
+ meta?: {
489
+ rationale?: string | undefined;
490
+ generatedBy?: string | undefined;
491
+ } | undefined;
492
+ } | {
493
+ dialect: "cel" | "js" | "cron" | "template";
494
+ source?: string | undefined;
495
+ ast?: unknown;
496
+ meta?: {
497
+ rationale?: string | undefined;
498
+ generatedBy?: string | undefined;
499
+ } | undefined;
500
+ };
501
+ style: Record<string, string>;
502
+ }[] | undefined;
503
+ inlineEdit?: boolean | undefined;
504
+ exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
505
+ userActions?: {
506
+ sort: boolean;
507
+ search: boolean;
508
+ filter: boolean;
509
+ rowHeight: boolean;
510
+ addRecordForm: boolean;
511
+ buttons?: string[] | undefined;
512
+ } | undefined;
513
+ appearance?: {
514
+ showDescription: boolean;
515
+ allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
516
+ } | undefined;
517
+ tabs?: {
518
+ name: string;
519
+ pinned: boolean;
520
+ isDefault: boolean;
521
+ visible: boolean;
522
+ label?: string | undefined;
523
+ icon?: string | undefined;
524
+ view?: string | undefined;
525
+ filter?: {
526
+ field: string;
527
+ operator: string;
528
+ value?: string | number | boolean | (string | number)[] | null | undefined;
529
+ }[] | undefined;
530
+ order?: number | undefined;
531
+ }[] | undefined;
532
+ addRecord?: {
533
+ enabled: boolean;
534
+ position: "top" | "bottom" | "both";
535
+ mode: "modal" | "form" | "inline";
536
+ formView?: string | undefined;
537
+ } | undefined;
538
+ showRecordCount?: boolean | undefined;
539
+ allowPrinting?: boolean | undefined;
540
+ emptyState?: {
541
+ title?: string | undefined;
542
+ message?: string | undefined;
543
+ icon?: string | undefined;
544
+ } | undefined;
545
+ aria?: {
546
+ ariaLabel?: string | undefined;
547
+ ariaDescribedBy?: string | undefined;
548
+ role?: string | undefined;
549
+ } | undefined;
550
+ responsive?: {
551
+ breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
552
+ hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
553
+ columns?: {
554
+ xs?: number | undefined;
555
+ sm?: number | undefined;
556
+ md?: number | undefined;
557
+ lg?: number | undefined;
558
+ xl?: number | undefined;
559
+ '2xl'?: number | undefined;
560
+ } | undefined;
561
+ order?: {
562
+ xs?: number | undefined;
563
+ sm?: number | undefined;
564
+ md?: number | undefined;
565
+ lg?: number | undefined;
566
+ xl?: number | undefined;
567
+ '2xl'?: number | undefined;
568
+ } | undefined;
569
+ } | undefined;
570
+ performance?: {
571
+ lazyLoad?: boolean | undefined;
572
+ virtualScroll?: {
573
+ enabled: boolean;
574
+ itemHeight?: number | undefined;
575
+ overscan?: number | undefined;
576
+ } | undefined;
577
+ cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
578
+ prefetch?: boolean | undefined;
579
+ pageSize?: number | undefined;
580
+ debounceMs?: number | undefined;
581
+ } | undefined;
582
+ }> | undefined;
583
+ defaultDetailForm?: string | undefined;
584
+ search?: {
585
+ fields: string[];
586
+ displayFields?: string[] | undefined;
587
+ filters?: string[] | undefined;
588
+ } | undefined;
589
+ enable?: {
590
+ trackHistory: boolean;
591
+ searchable: boolean;
592
+ apiEnabled: boolean;
593
+ files: boolean;
594
+ feeds: boolean;
595
+ activities: boolean;
596
+ trash: boolean;
597
+ mru: boolean;
598
+ clone: boolean;
599
+ apiMethods?: ("create" | "update" | "delete" | "search" | "import" | "list" | "get" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
600
+ } | undefined;
601
+ recordTypes?: string[] | undefined;
602
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
603
+ publicSharing?: {
604
+ enabled: boolean;
605
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
606
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
607
+ maxExpiryDays?: number | undefined;
608
+ redactFields?: string[] | undefined;
609
+ eligibility?: string | undefined;
610
+ } | undefined;
611
+ keyPrefix?: string | undefined;
612
+ detail?: {
613
+ [x: string]: unknown;
614
+ renderViaSchema?: boolean | undefined;
615
+ hideReferenceRail?: boolean | undefined;
616
+ hideRelatedTab?: boolean | undefined;
617
+ } | undefined;
618
+ actions?: {
619
+ name: string;
620
+ label: string;
621
+ type: "url" | "flow" | "api" | "script" | "modal" | "form";
622
+ refreshAfter: boolean;
623
+ objectName?: string | undefined;
624
+ icon?: string | undefined;
625
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
626
+ component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
627
+ target?: string | undefined;
628
+ body?: {
629
+ language: "expression";
630
+ source: string;
631
+ } | {
632
+ language: "js";
633
+ source: string;
634
+ capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
635
+ timeoutMs?: number | undefined;
636
+ memoryMb?: number | undefined;
637
+ } | undefined;
638
+ execute?: string | undefined;
639
+ params?: {
640
+ required: boolean;
641
+ name?: string | undefined;
642
+ field?: string | undefined;
643
+ objectOverride?: string | undefined;
644
+ label?: string | undefined;
645
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "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;
646
+ options?: {
647
+ label: string;
648
+ value: string;
649
+ }[] | undefined;
650
+ placeholder?: string | undefined;
651
+ helpText?: string | undefined;
652
+ defaultValue?: unknown;
653
+ defaultFromRow?: boolean | undefined;
654
+ }[] | undefined;
655
+ variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
656
+ confirmText?: string | undefined;
657
+ successMessage?: string | undefined;
658
+ resultDialog?: {
659
+ title?: string | undefined;
660
+ description?: string | undefined;
661
+ acknowledge?: string | undefined;
662
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
663
+ fields?: {
664
+ path: string;
665
+ label?: string | undefined;
666
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
667
+ }[] | undefined;
668
+ } | undefined;
669
+ visible?: {
670
+ dialect: "cel" | "js" | "cron" | "template";
671
+ source?: string | undefined;
672
+ ast?: unknown;
673
+ meta?: {
674
+ rationale?: string | undefined;
675
+ generatedBy?: string | undefined;
676
+ } | undefined;
677
+ } | undefined;
678
+ disabled?: boolean | {
679
+ dialect: "cel" | "js" | "cron" | "template";
680
+ source?: string | undefined;
681
+ ast?: unknown;
682
+ meta?: {
683
+ rationale?: string | undefined;
684
+ generatedBy?: string | undefined;
685
+ } | undefined;
686
+ } | undefined;
687
+ shortcut?: string | undefined;
688
+ bulkEnabled?: boolean | undefined;
689
+ aiExposed?: boolean | undefined;
690
+ recordIdParam?: string | undefined;
691
+ recordIdField?: string | undefined;
692
+ bodyShape?: "flat" | {
693
+ wrap: string;
694
+ } | undefined;
695
+ method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
696
+ bodyExtra?: Record<string, unknown> | undefined;
697
+ mode?: "custom" | "delete" | "edit" | "create" | undefined;
698
+ timeout?: number | undefined;
699
+ aria?: {
700
+ ariaLabel?: string | undefined;
701
+ ariaDescribedBy?: string | undefined;
702
+ role?: string | undefined;
703
+ } | undefined;
704
+ }[] | undefined;
705
+ protection?: {
706
+ lock: "full" | "none" | "no-overlay" | "no-delete";
707
+ reason: string;
708
+ docsUrl?: string | undefined;
709
+ } | undefined;
710
+ }, "fields"> & Pick<{
711
+ readonly name: "sys_webhook";
712
+ readonly label: "Webhook";
713
+ readonly pluralLabel: "Webhooks";
714
+ readonly icon: "webhook";
715
+ readonly isSystem: true;
716
+ readonly managedBy: "config";
717
+ readonly userActions: {
718
+ readonly create: true;
719
+ readonly edit: true;
720
+ readonly delete: true;
721
+ readonly import: false;
722
+ };
723
+ readonly description: "Outbound HTTP webhook subscription. Authored via defineWebhook() in code or the Studio editor; executed by the HTTP connector plugin.";
724
+ readonly displayNameField: "name";
725
+ readonly titleFormat: "{label}";
726
+ readonly compactLayout: ["name", "object_name", "url", "active", "updated_at"];
727
+ readonly listViews: {
728
+ readonly active: {
729
+ readonly type: "grid";
730
+ readonly name: "active";
731
+ readonly label: "Active";
732
+ readonly data: {
733
+ readonly provider: "object";
734
+ readonly object: "sys_webhook";
735
+ };
736
+ readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
737
+ readonly filter: [{
738
+ readonly field: "active";
739
+ readonly operator: "equals";
740
+ readonly value: true;
741
+ }];
742
+ readonly sort: [{
743
+ readonly field: "label";
744
+ readonly order: "asc";
745
+ }];
746
+ readonly pagination: {
747
+ readonly pageSize: 50;
748
+ };
749
+ };
750
+ readonly inactive: {
751
+ readonly type: "grid";
752
+ readonly name: "inactive";
753
+ readonly label: "Inactive";
754
+ readonly data: {
755
+ readonly provider: "object";
756
+ readonly object: "sys_webhook";
757
+ };
758
+ readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
759
+ readonly filter: [{
760
+ readonly field: "active";
761
+ readonly operator: "equals";
762
+ readonly value: false;
763
+ }];
764
+ readonly sort: [{
765
+ readonly field: "label";
766
+ readonly order: "asc";
767
+ }];
768
+ readonly pagination: {
769
+ readonly pageSize: 50;
770
+ };
771
+ };
772
+ readonly by_object: {
773
+ readonly type: "grid";
774
+ readonly name: "by_object";
775
+ readonly label: "By Object";
776
+ readonly data: {
777
+ readonly provider: "object";
778
+ readonly object: "sys_webhook";
779
+ };
780
+ readonly columns: ["object_name", "label", "url", "active", "updated_at"];
781
+ readonly sort: [{
782
+ readonly field: "object_name";
783
+ readonly order: "asc";
784
+ }, {
785
+ readonly field: "label";
786
+ readonly order: "asc";
787
+ }];
788
+ readonly grouping: {
789
+ readonly fields: [{
790
+ readonly field: "object_name";
791
+ readonly order: "asc";
792
+ readonly collapsed: false;
793
+ }];
794
+ };
795
+ readonly pagination: {
796
+ readonly pageSize: 100;
797
+ };
798
+ };
799
+ readonly all_webhooks: {
800
+ readonly type: "grid";
801
+ readonly name: "all_webhooks";
802
+ readonly label: "All";
803
+ readonly data: {
804
+ readonly provider: "object";
805
+ readonly object: "sys_webhook";
806
+ };
807
+ readonly columns: ["label", "object_name", "url", "method", "active", "updated_at"];
808
+ readonly sort: [{
809
+ readonly field: "label";
810
+ readonly order: "asc";
811
+ }];
812
+ readonly pagination: {
813
+ readonly pageSize: 50;
814
+ };
815
+ };
816
+ };
817
+ readonly fields: {
818
+ readonly id: {
819
+ readonly readonly?: boolean | undefined;
820
+ readonly format?: string | undefined;
821
+ readonly options?: {
822
+ label: string;
823
+ value: string;
824
+ color?: string | undefined;
825
+ default?: boolean | undefined;
826
+ }[] | undefined;
827
+ readonly description?: string | undefined;
828
+ readonly label?: string | undefined;
829
+ readonly name?: string | undefined;
830
+ readonly precision?: number | undefined;
831
+ readonly required?: boolean | undefined;
832
+ readonly multiple?: boolean | undefined;
833
+ readonly dependencies?: string[] | undefined;
834
+ readonly theme?: string | undefined;
835
+ readonly externalId?: boolean | undefined;
836
+ readonly defaultValue?: unknown;
837
+ readonly group?: string | undefined;
838
+ readonly hidden?: boolean | undefined;
839
+ readonly system?: boolean | undefined;
840
+ readonly min?: number | undefined;
841
+ readonly max?: number | undefined;
842
+ readonly encryptionConfig?: {
843
+ enabled: boolean;
844
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
845
+ keyManagement: {
846
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
847
+ keyId?: string | undefined;
848
+ rotationPolicy?: {
849
+ enabled: boolean;
850
+ frequencyDays: number;
851
+ retainOldVersions: number;
852
+ autoRotate: boolean;
853
+ } | undefined;
854
+ };
855
+ scope: "record" | "field" | "table" | "database";
856
+ deterministicEncryption: boolean;
857
+ searchableEncryption: boolean;
858
+ } | undefined;
859
+ readonly columnName?: string | undefined;
860
+ readonly searchable?: boolean | undefined;
861
+ readonly unique?: boolean | undefined;
862
+ readonly maxLength?: number | undefined;
863
+ readonly minLength?: number | undefined;
864
+ readonly scale?: number | undefined;
865
+ readonly reference?: string | undefined;
866
+ readonly referenceFilters?: string[] | undefined;
867
+ readonly writeRequiresMasterRead?: boolean | undefined;
868
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
869
+ readonly expression?: {
870
+ dialect: "cel" | "js" | "cron" | "template";
871
+ source?: string | undefined;
872
+ ast?: unknown;
873
+ meta?: {
874
+ rationale?: string | undefined;
875
+ generatedBy?: string | undefined;
876
+ } | undefined;
877
+ } | undefined;
878
+ readonly summaryOperations?: {
879
+ object: string;
880
+ field: string;
881
+ function: "min" | "max" | "count" | "sum" | "avg";
882
+ } | undefined;
883
+ readonly language?: string | undefined;
884
+ readonly lineNumbers?: boolean | undefined;
885
+ readonly maxRating?: number | undefined;
886
+ readonly allowHalf?: boolean | undefined;
887
+ readonly displayMap?: boolean | undefined;
888
+ readonly allowGeocoding?: boolean | undefined;
889
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
890
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
891
+ readonly allowAlpha?: boolean | undefined;
892
+ readonly presetColors?: string[] | undefined;
893
+ readonly step?: number | undefined;
894
+ readonly showValue?: boolean | undefined;
895
+ readonly marks?: Record<string, string> | undefined;
896
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
897
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
898
+ readonly displayValue?: boolean | undefined;
899
+ readonly allowScanning?: boolean | undefined;
900
+ readonly currencyConfig?: {
901
+ precision: number;
902
+ currencyMode: "fixed" | "dynamic";
903
+ defaultCurrency: string;
904
+ } | undefined;
905
+ readonly vectorConfig?: {
906
+ dimensions: number;
907
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
908
+ normalized: boolean;
909
+ indexed: boolean;
910
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
911
+ } | undefined;
912
+ readonly fileAttachmentConfig?: {
913
+ virusScan: boolean;
914
+ virusScanOnUpload: boolean;
915
+ quarantineOnThreat: boolean;
916
+ allowMultiple: boolean;
917
+ allowReplace: boolean;
918
+ allowDelete: boolean;
919
+ requireUpload: boolean;
920
+ extractMetadata: boolean;
921
+ extractText: boolean;
922
+ versioningEnabled: boolean;
923
+ publicRead: boolean;
924
+ presignedUrlExpiry: number;
925
+ minSize?: number | undefined;
926
+ maxSize?: number | undefined;
927
+ allowedTypes?: string[] | undefined;
928
+ blockedTypes?: string[] | undefined;
929
+ allowedMimeTypes?: string[] | undefined;
930
+ blockedMimeTypes?: string[] | undefined;
931
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
932
+ storageProvider?: string | undefined;
933
+ storageBucket?: string | undefined;
934
+ storagePrefix?: string | undefined;
935
+ imageValidation?: {
936
+ generateThumbnails: boolean;
937
+ preserveMetadata: boolean;
938
+ autoRotate: boolean;
939
+ minWidth?: number | undefined;
940
+ maxWidth?: number | undefined;
941
+ minHeight?: number | undefined;
942
+ maxHeight?: number | undefined;
943
+ aspectRatio?: string | undefined;
944
+ thumbnailSizes?: {
945
+ name: string;
946
+ width: number;
947
+ height: number;
948
+ crop: boolean;
949
+ }[] | undefined;
950
+ } | undefined;
951
+ maxVersions?: number | undefined;
952
+ } | undefined;
953
+ readonly maskingRule?: {
954
+ field: string;
955
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
956
+ preserveFormat: boolean;
957
+ preserveLength: boolean;
958
+ pattern?: string | undefined;
959
+ roles?: string[] | undefined;
960
+ exemptRoles?: string[] | undefined;
961
+ } | undefined;
962
+ readonly auditTrail?: boolean | undefined;
963
+ readonly cached?: {
964
+ enabled: boolean;
965
+ ttl: number;
966
+ invalidateOn: string[];
967
+ } | undefined;
968
+ readonly dataQuality?: {
969
+ uniqueness: boolean;
970
+ completeness: number;
971
+ accuracy?: {
972
+ source: string;
973
+ threshold: number;
974
+ } | undefined;
975
+ } | undefined;
976
+ readonly conditionalRequired?: {
977
+ dialect: "cel" | "js" | "cron" | "template";
978
+ source?: string | undefined;
979
+ ast?: unknown;
980
+ meta?: {
981
+ rationale?: string | undefined;
982
+ generatedBy?: string | undefined;
983
+ } | undefined;
984
+ } | undefined;
985
+ readonly sortable?: boolean | undefined;
986
+ readonly inlineHelpText?: string | undefined;
987
+ readonly trackFeedHistory?: boolean | undefined;
988
+ readonly caseSensitive?: boolean | undefined;
989
+ readonly autonumberFormat?: string | undefined;
990
+ readonly index?: boolean | undefined;
991
+ readonly type: "text";
992
+ };
993
+ readonly name: {
994
+ readonly readonly?: boolean | undefined;
995
+ readonly format?: string | undefined;
996
+ readonly options?: {
997
+ label: string;
998
+ value: string;
999
+ color?: string | undefined;
1000
+ default?: boolean | undefined;
1001
+ }[] | undefined;
1002
+ readonly description?: string | undefined;
1003
+ readonly label?: string | undefined;
1004
+ readonly name?: string | undefined;
1005
+ readonly precision?: number | undefined;
1006
+ readonly required?: boolean | undefined;
1007
+ readonly multiple?: boolean | undefined;
1008
+ readonly dependencies?: string[] | undefined;
1009
+ readonly theme?: string | undefined;
1010
+ readonly externalId?: boolean | undefined;
1011
+ readonly defaultValue?: unknown;
1012
+ readonly group?: string | undefined;
1013
+ readonly hidden?: boolean | undefined;
1014
+ readonly system?: boolean | undefined;
1015
+ readonly min?: number | undefined;
1016
+ readonly max?: number | undefined;
1017
+ readonly encryptionConfig?: {
1018
+ enabled: boolean;
1019
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1020
+ keyManagement: {
1021
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1022
+ keyId?: string | undefined;
1023
+ rotationPolicy?: {
1024
+ enabled: boolean;
1025
+ frequencyDays: number;
1026
+ retainOldVersions: number;
1027
+ autoRotate: boolean;
1028
+ } | undefined;
1029
+ };
1030
+ scope: "record" | "field" | "table" | "database";
1031
+ deterministicEncryption: boolean;
1032
+ searchableEncryption: boolean;
1033
+ } | undefined;
1034
+ readonly columnName?: string | undefined;
1035
+ readonly searchable?: boolean | undefined;
1036
+ readonly unique?: boolean | undefined;
1037
+ readonly maxLength?: number | undefined;
1038
+ readonly minLength?: number | undefined;
1039
+ readonly scale?: number | undefined;
1040
+ readonly reference?: string | undefined;
1041
+ readonly referenceFilters?: string[] | undefined;
1042
+ readonly writeRequiresMasterRead?: boolean | undefined;
1043
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1044
+ readonly expression?: {
1045
+ dialect: "cel" | "js" | "cron" | "template";
1046
+ source?: string | undefined;
1047
+ ast?: unknown;
1048
+ meta?: {
1049
+ rationale?: string | undefined;
1050
+ generatedBy?: string | undefined;
1051
+ } | undefined;
1052
+ } | undefined;
1053
+ readonly summaryOperations?: {
1054
+ object: string;
1055
+ field: string;
1056
+ function: "min" | "max" | "count" | "sum" | "avg";
1057
+ } | undefined;
1058
+ readonly language?: string | undefined;
1059
+ readonly lineNumbers?: boolean | undefined;
1060
+ readonly maxRating?: number | undefined;
1061
+ readonly allowHalf?: boolean | undefined;
1062
+ readonly displayMap?: boolean | undefined;
1063
+ readonly allowGeocoding?: boolean | undefined;
1064
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1065
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1066
+ readonly allowAlpha?: boolean | undefined;
1067
+ readonly presetColors?: string[] | undefined;
1068
+ readonly step?: number | undefined;
1069
+ readonly showValue?: boolean | undefined;
1070
+ readonly marks?: Record<string, string> | undefined;
1071
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1072
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1073
+ readonly displayValue?: boolean | undefined;
1074
+ readonly allowScanning?: boolean | undefined;
1075
+ readonly currencyConfig?: {
1076
+ precision: number;
1077
+ currencyMode: "fixed" | "dynamic";
1078
+ defaultCurrency: string;
1079
+ } | undefined;
1080
+ readonly vectorConfig?: {
1081
+ dimensions: number;
1082
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1083
+ normalized: boolean;
1084
+ indexed: boolean;
1085
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1086
+ } | undefined;
1087
+ readonly fileAttachmentConfig?: {
1088
+ virusScan: boolean;
1089
+ virusScanOnUpload: boolean;
1090
+ quarantineOnThreat: boolean;
1091
+ allowMultiple: boolean;
1092
+ allowReplace: boolean;
1093
+ allowDelete: boolean;
1094
+ requireUpload: boolean;
1095
+ extractMetadata: boolean;
1096
+ extractText: boolean;
1097
+ versioningEnabled: boolean;
1098
+ publicRead: boolean;
1099
+ presignedUrlExpiry: number;
1100
+ minSize?: number | undefined;
1101
+ maxSize?: number | undefined;
1102
+ allowedTypes?: string[] | undefined;
1103
+ blockedTypes?: string[] | undefined;
1104
+ allowedMimeTypes?: string[] | undefined;
1105
+ blockedMimeTypes?: string[] | undefined;
1106
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1107
+ storageProvider?: string | undefined;
1108
+ storageBucket?: string | undefined;
1109
+ storagePrefix?: string | undefined;
1110
+ imageValidation?: {
1111
+ generateThumbnails: boolean;
1112
+ preserveMetadata: boolean;
1113
+ autoRotate: boolean;
1114
+ minWidth?: number | undefined;
1115
+ maxWidth?: number | undefined;
1116
+ minHeight?: number | undefined;
1117
+ maxHeight?: number | undefined;
1118
+ aspectRatio?: string | undefined;
1119
+ thumbnailSizes?: {
1120
+ name: string;
1121
+ width: number;
1122
+ height: number;
1123
+ crop: boolean;
1124
+ }[] | undefined;
1125
+ } | undefined;
1126
+ maxVersions?: number | undefined;
1127
+ } | undefined;
1128
+ readonly maskingRule?: {
1129
+ field: string;
1130
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1131
+ preserveFormat: boolean;
1132
+ preserveLength: boolean;
1133
+ pattern?: string | undefined;
1134
+ roles?: string[] | undefined;
1135
+ exemptRoles?: string[] | undefined;
1136
+ } | undefined;
1137
+ readonly auditTrail?: boolean | undefined;
1138
+ readonly cached?: {
1139
+ enabled: boolean;
1140
+ ttl: number;
1141
+ invalidateOn: string[];
1142
+ } | undefined;
1143
+ readonly dataQuality?: {
1144
+ uniqueness: boolean;
1145
+ completeness: number;
1146
+ accuracy?: {
1147
+ source: string;
1148
+ threshold: number;
1149
+ } | undefined;
1150
+ } | undefined;
1151
+ readonly conditionalRequired?: {
1152
+ dialect: "cel" | "js" | "cron" | "template";
1153
+ source?: string | undefined;
1154
+ ast?: unknown;
1155
+ meta?: {
1156
+ rationale?: string | undefined;
1157
+ generatedBy?: string | undefined;
1158
+ } | undefined;
1159
+ } | undefined;
1160
+ readonly sortable?: boolean | undefined;
1161
+ readonly inlineHelpText?: string | undefined;
1162
+ readonly trackFeedHistory?: boolean | undefined;
1163
+ readonly caseSensitive?: boolean | undefined;
1164
+ readonly autonumberFormat?: string | undefined;
1165
+ readonly index?: boolean | undefined;
1166
+ readonly type: "text";
1167
+ };
1168
+ readonly label: {
1169
+ readonly readonly?: boolean | undefined;
1170
+ readonly format?: string | undefined;
1171
+ readonly options?: {
1172
+ label: string;
1173
+ value: string;
1174
+ color?: string | undefined;
1175
+ default?: boolean | undefined;
1176
+ }[] | undefined;
1177
+ readonly description?: string | undefined;
1178
+ readonly label?: string | undefined;
1179
+ readonly name?: string | undefined;
1180
+ readonly precision?: number | undefined;
1181
+ readonly required?: boolean | undefined;
1182
+ readonly multiple?: boolean | undefined;
1183
+ readonly dependencies?: string[] | undefined;
1184
+ readonly theme?: string | undefined;
1185
+ readonly externalId?: boolean | undefined;
1186
+ readonly defaultValue?: unknown;
1187
+ readonly group?: string | undefined;
1188
+ readonly hidden?: boolean | undefined;
1189
+ readonly system?: boolean | undefined;
1190
+ readonly min?: number | undefined;
1191
+ readonly max?: number | undefined;
1192
+ readonly encryptionConfig?: {
1193
+ enabled: boolean;
1194
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1195
+ keyManagement: {
1196
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1197
+ keyId?: string | undefined;
1198
+ rotationPolicy?: {
1199
+ enabled: boolean;
1200
+ frequencyDays: number;
1201
+ retainOldVersions: number;
1202
+ autoRotate: boolean;
1203
+ } | undefined;
1204
+ };
1205
+ scope: "record" | "field" | "table" | "database";
1206
+ deterministicEncryption: boolean;
1207
+ searchableEncryption: boolean;
1208
+ } | undefined;
1209
+ readonly columnName?: string | undefined;
1210
+ readonly searchable?: boolean | undefined;
1211
+ readonly unique?: boolean | undefined;
1212
+ readonly maxLength?: number | undefined;
1213
+ readonly minLength?: number | undefined;
1214
+ readonly scale?: number | undefined;
1215
+ readonly reference?: string | undefined;
1216
+ readonly referenceFilters?: string[] | undefined;
1217
+ readonly writeRequiresMasterRead?: boolean | undefined;
1218
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1219
+ readonly expression?: {
1220
+ dialect: "cel" | "js" | "cron" | "template";
1221
+ source?: string | undefined;
1222
+ ast?: unknown;
1223
+ meta?: {
1224
+ rationale?: string | undefined;
1225
+ generatedBy?: string | undefined;
1226
+ } | undefined;
1227
+ } | undefined;
1228
+ readonly summaryOperations?: {
1229
+ object: string;
1230
+ field: string;
1231
+ function: "min" | "max" | "count" | "sum" | "avg";
1232
+ } | undefined;
1233
+ readonly language?: string | undefined;
1234
+ readonly lineNumbers?: boolean | undefined;
1235
+ readonly maxRating?: number | undefined;
1236
+ readonly allowHalf?: boolean | undefined;
1237
+ readonly displayMap?: boolean | undefined;
1238
+ readonly allowGeocoding?: boolean | undefined;
1239
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1240
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1241
+ readonly allowAlpha?: boolean | undefined;
1242
+ readonly presetColors?: string[] | undefined;
1243
+ readonly step?: number | undefined;
1244
+ readonly showValue?: boolean | undefined;
1245
+ readonly marks?: Record<string, string> | undefined;
1246
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1247
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1248
+ readonly displayValue?: boolean | undefined;
1249
+ readonly allowScanning?: boolean | undefined;
1250
+ readonly currencyConfig?: {
1251
+ precision: number;
1252
+ currencyMode: "fixed" | "dynamic";
1253
+ defaultCurrency: string;
1254
+ } | undefined;
1255
+ readonly vectorConfig?: {
1256
+ dimensions: number;
1257
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1258
+ normalized: boolean;
1259
+ indexed: boolean;
1260
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1261
+ } | undefined;
1262
+ readonly fileAttachmentConfig?: {
1263
+ virusScan: boolean;
1264
+ virusScanOnUpload: boolean;
1265
+ quarantineOnThreat: boolean;
1266
+ allowMultiple: boolean;
1267
+ allowReplace: boolean;
1268
+ allowDelete: boolean;
1269
+ requireUpload: boolean;
1270
+ extractMetadata: boolean;
1271
+ extractText: boolean;
1272
+ versioningEnabled: boolean;
1273
+ publicRead: boolean;
1274
+ presignedUrlExpiry: number;
1275
+ minSize?: number | undefined;
1276
+ maxSize?: number | undefined;
1277
+ allowedTypes?: string[] | undefined;
1278
+ blockedTypes?: string[] | undefined;
1279
+ allowedMimeTypes?: string[] | undefined;
1280
+ blockedMimeTypes?: string[] | undefined;
1281
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1282
+ storageProvider?: string | undefined;
1283
+ storageBucket?: string | undefined;
1284
+ storagePrefix?: string | undefined;
1285
+ imageValidation?: {
1286
+ generateThumbnails: boolean;
1287
+ preserveMetadata: boolean;
1288
+ autoRotate: boolean;
1289
+ minWidth?: number | undefined;
1290
+ maxWidth?: number | undefined;
1291
+ minHeight?: number | undefined;
1292
+ maxHeight?: number | undefined;
1293
+ aspectRatio?: string | undefined;
1294
+ thumbnailSizes?: {
1295
+ name: string;
1296
+ width: number;
1297
+ height: number;
1298
+ crop: boolean;
1299
+ }[] | undefined;
1300
+ } | undefined;
1301
+ maxVersions?: number | undefined;
1302
+ } | undefined;
1303
+ readonly maskingRule?: {
1304
+ field: string;
1305
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1306
+ preserveFormat: boolean;
1307
+ preserveLength: boolean;
1308
+ pattern?: string | undefined;
1309
+ roles?: string[] | undefined;
1310
+ exemptRoles?: string[] | undefined;
1311
+ } | undefined;
1312
+ readonly auditTrail?: boolean | undefined;
1313
+ readonly cached?: {
1314
+ enabled: boolean;
1315
+ ttl: number;
1316
+ invalidateOn: string[];
1317
+ } | undefined;
1318
+ readonly dataQuality?: {
1319
+ uniqueness: boolean;
1320
+ completeness: number;
1321
+ accuracy?: {
1322
+ source: string;
1323
+ threshold: number;
1324
+ } | undefined;
1325
+ } | undefined;
1326
+ readonly conditionalRequired?: {
1327
+ dialect: "cel" | "js" | "cron" | "template";
1328
+ source?: string | undefined;
1329
+ ast?: unknown;
1330
+ meta?: {
1331
+ rationale?: string | undefined;
1332
+ generatedBy?: string | undefined;
1333
+ } | undefined;
1334
+ } | undefined;
1335
+ readonly sortable?: boolean | undefined;
1336
+ readonly inlineHelpText?: string | undefined;
1337
+ readonly trackFeedHistory?: boolean | undefined;
1338
+ readonly caseSensitive?: boolean | undefined;
1339
+ readonly autonumberFormat?: string | undefined;
1340
+ readonly index?: boolean | undefined;
1341
+ readonly type: "text";
1342
+ };
1343
+ readonly object_name: {
1344
+ readonly readonly?: boolean | undefined;
1345
+ readonly format?: string | undefined;
1346
+ readonly options?: {
1347
+ label: string;
1348
+ value: string;
1349
+ color?: string | undefined;
1350
+ default?: boolean | undefined;
1351
+ }[] | undefined;
1352
+ readonly description?: string | undefined;
1353
+ readonly label?: string | undefined;
1354
+ readonly name?: string | undefined;
1355
+ readonly precision?: number | undefined;
1356
+ readonly required?: boolean | undefined;
1357
+ readonly multiple?: boolean | undefined;
1358
+ readonly dependencies?: string[] | undefined;
1359
+ readonly theme?: string | undefined;
1360
+ readonly externalId?: boolean | undefined;
1361
+ readonly defaultValue?: unknown;
1362
+ readonly group?: string | undefined;
1363
+ readonly hidden?: boolean | undefined;
1364
+ readonly system?: boolean | undefined;
1365
+ readonly min?: number | undefined;
1366
+ readonly max?: number | undefined;
1367
+ readonly encryptionConfig?: {
1368
+ enabled: boolean;
1369
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1370
+ keyManagement: {
1371
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1372
+ keyId?: string | undefined;
1373
+ rotationPolicy?: {
1374
+ enabled: boolean;
1375
+ frequencyDays: number;
1376
+ retainOldVersions: number;
1377
+ autoRotate: boolean;
1378
+ } | undefined;
1379
+ };
1380
+ scope: "record" | "field" | "table" | "database";
1381
+ deterministicEncryption: boolean;
1382
+ searchableEncryption: boolean;
1383
+ } | undefined;
1384
+ readonly columnName?: string | undefined;
1385
+ readonly searchable?: boolean | undefined;
1386
+ readonly unique?: boolean | undefined;
1387
+ readonly maxLength?: number | undefined;
1388
+ readonly minLength?: number | undefined;
1389
+ readonly scale?: number | undefined;
1390
+ readonly reference?: string | undefined;
1391
+ readonly referenceFilters?: string[] | undefined;
1392
+ readonly writeRequiresMasterRead?: boolean | undefined;
1393
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1394
+ readonly expression?: {
1395
+ dialect: "cel" | "js" | "cron" | "template";
1396
+ source?: string | undefined;
1397
+ ast?: unknown;
1398
+ meta?: {
1399
+ rationale?: string | undefined;
1400
+ generatedBy?: string | undefined;
1401
+ } | undefined;
1402
+ } | undefined;
1403
+ readonly summaryOperations?: {
1404
+ object: string;
1405
+ field: string;
1406
+ function: "min" | "max" | "count" | "sum" | "avg";
1407
+ } | undefined;
1408
+ readonly language?: string | undefined;
1409
+ readonly lineNumbers?: boolean | undefined;
1410
+ readonly maxRating?: number | undefined;
1411
+ readonly allowHalf?: boolean | undefined;
1412
+ readonly displayMap?: boolean | undefined;
1413
+ readonly allowGeocoding?: boolean | undefined;
1414
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1415
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1416
+ readonly allowAlpha?: boolean | undefined;
1417
+ readonly presetColors?: string[] | undefined;
1418
+ readonly step?: number | undefined;
1419
+ readonly showValue?: boolean | undefined;
1420
+ readonly marks?: Record<string, string> | undefined;
1421
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1422
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1423
+ readonly displayValue?: boolean | undefined;
1424
+ readonly allowScanning?: boolean | undefined;
1425
+ readonly currencyConfig?: {
1426
+ precision: number;
1427
+ currencyMode: "fixed" | "dynamic";
1428
+ defaultCurrency: string;
1429
+ } | undefined;
1430
+ readonly vectorConfig?: {
1431
+ dimensions: number;
1432
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1433
+ normalized: boolean;
1434
+ indexed: boolean;
1435
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1436
+ } | undefined;
1437
+ readonly fileAttachmentConfig?: {
1438
+ virusScan: boolean;
1439
+ virusScanOnUpload: boolean;
1440
+ quarantineOnThreat: boolean;
1441
+ allowMultiple: boolean;
1442
+ allowReplace: boolean;
1443
+ allowDelete: boolean;
1444
+ requireUpload: boolean;
1445
+ extractMetadata: boolean;
1446
+ extractText: boolean;
1447
+ versioningEnabled: boolean;
1448
+ publicRead: boolean;
1449
+ presignedUrlExpiry: number;
1450
+ minSize?: number | undefined;
1451
+ maxSize?: number | undefined;
1452
+ allowedTypes?: string[] | undefined;
1453
+ blockedTypes?: string[] | undefined;
1454
+ allowedMimeTypes?: string[] | undefined;
1455
+ blockedMimeTypes?: string[] | undefined;
1456
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1457
+ storageProvider?: string | undefined;
1458
+ storageBucket?: string | undefined;
1459
+ storagePrefix?: string | undefined;
1460
+ imageValidation?: {
1461
+ generateThumbnails: boolean;
1462
+ preserveMetadata: boolean;
1463
+ autoRotate: boolean;
1464
+ minWidth?: number | undefined;
1465
+ maxWidth?: number | undefined;
1466
+ minHeight?: number | undefined;
1467
+ maxHeight?: number | undefined;
1468
+ aspectRatio?: string | undefined;
1469
+ thumbnailSizes?: {
1470
+ name: string;
1471
+ width: number;
1472
+ height: number;
1473
+ crop: boolean;
1474
+ }[] | undefined;
1475
+ } | undefined;
1476
+ maxVersions?: number | undefined;
1477
+ } | undefined;
1478
+ readonly maskingRule?: {
1479
+ field: string;
1480
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1481
+ preserveFormat: boolean;
1482
+ preserveLength: boolean;
1483
+ pattern?: string | undefined;
1484
+ roles?: string[] | undefined;
1485
+ exemptRoles?: string[] | undefined;
1486
+ } | undefined;
1487
+ readonly auditTrail?: boolean | undefined;
1488
+ readonly cached?: {
1489
+ enabled: boolean;
1490
+ ttl: number;
1491
+ invalidateOn: string[];
1492
+ } | undefined;
1493
+ readonly dataQuality?: {
1494
+ uniqueness: boolean;
1495
+ completeness: number;
1496
+ accuracy?: {
1497
+ source: string;
1498
+ threshold: number;
1499
+ } | undefined;
1500
+ } | undefined;
1501
+ readonly conditionalRequired?: {
1502
+ dialect: "cel" | "js" | "cron" | "template";
1503
+ source?: string | undefined;
1504
+ ast?: unknown;
1505
+ meta?: {
1506
+ rationale?: string | undefined;
1507
+ generatedBy?: string | undefined;
1508
+ } | undefined;
1509
+ } | undefined;
1510
+ readonly sortable?: boolean | undefined;
1511
+ readonly inlineHelpText?: string | undefined;
1512
+ readonly trackFeedHistory?: boolean | undefined;
1513
+ readonly caseSensitive?: boolean | undefined;
1514
+ readonly autonumberFormat?: string | undefined;
1515
+ readonly index?: boolean | undefined;
1516
+ readonly type: "text";
1517
+ };
1518
+ readonly triggers: {
1519
+ readonly readonly?: boolean | undefined;
1520
+ readonly format?: string | undefined;
1521
+ readonly options?: {
1522
+ label: string;
1523
+ value: string;
1524
+ color?: string | undefined;
1525
+ default?: boolean | undefined;
1526
+ }[] | undefined;
1527
+ readonly description?: string | undefined;
1528
+ readonly label?: string | undefined;
1529
+ readonly name?: string | undefined;
1530
+ readonly precision?: number | undefined;
1531
+ readonly required?: boolean | undefined;
1532
+ readonly multiple?: boolean | undefined;
1533
+ readonly dependencies?: string[] | undefined;
1534
+ readonly theme?: string | undefined;
1535
+ readonly externalId?: boolean | undefined;
1536
+ readonly defaultValue?: unknown;
1537
+ readonly group?: string | undefined;
1538
+ readonly hidden?: boolean | undefined;
1539
+ readonly system?: boolean | undefined;
1540
+ readonly min?: number | undefined;
1541
+ readonly max?: number | undefined;
1542
+ readonly encryptionConfig?: {
1543
+ enabled: boolean;
1544
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1545
+ keyManagement: {
1546
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1547
+ keyId?: string | undefined;
1548
+ rotationPolicy?: {
1549
+ enabled: boolean;
1550
+ frequencyDays: number;
1551
+ retainOldVersions: number;
1552
+ autoRotate: boolean;
1553
+ } | undefined;
1554
+ };
1555
+ scope: "record" | "field" | "table" | "database";
1556
+ deterministicEncryption: boolean;
1557
+ searchableEncryption: boolean;
1558
+ } | undefined;
1559
+ readonly columnName?: string | undefined;
1560
+ readonly searchable?: boolean | undefined;
1561
+ readonly unique?: boolean | undefined;
1562
+ readonly maxLength?: number | undefined;
1563
+ readonly minLength?: number | undefined;
1564
+ readonly scale?: number | undefined;
1565
+ readonly reference?: string | undefined;
1566
+ readonly referenceFilters?: string[] | undefined;
1567
+ readonly writeRequiresMasterRead?: boolean | undefined;
1568
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1569
+ readonly expression?: {
1570
+ dialect: "cel" | "js" | "cron" | "template";
1571
+ source?: string | undefined;
1572
+ ast?: unknown;
1573
+ meta?: {
1574
+ rationale?: string | undefined;
1575
+ generatedBy?: string | undefined;
1576
+ } | undefined;
1577
+ } | undefined;
1578
+ readonly summaryOperations?: {
1579
+ object: string;
1580
+ field: string;
1581
+ function: "min" | "max" | "count" | "sum" | "avg";
1582
+ } | undefined;
1583
+ readonly language?: string | undefined;
1584
+ readonly lineNumbers?: boolean | undefined;
1585
+ readonly maxRating?: number | undefined;
1586
+ readonly allowHalf?: boolean | undefined;
1587
+ readonly displayMap?: boolean | undefined;
1588
+ readonly allowGeocoding?: boolean | undefined;
1589
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1590
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1591
+ readonly allowAlpha?: boolean | undefined;
1592
+ readonly presetColors?: string[] | undefined;
1593
+ readonly step?: number | undefined;
1594
+ readonly showValue?: boolean | undefined;
1595
+ readonly marks?: Record<string, string> | undefined;
1596
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1597
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1598
+ readonly displayValue?: boolean | undefined;
1599
+ readonly allowScanning?: boolean | undefined;
1600
+ readonly currencyConfig?: {
1601
+ precision: number;
1602
+ currencyMode: "fixed" | "dynamic";
1603
+ defaultCurrency: string;
1604
+ } | undefined;
1605
+ readonly vectorConfig?: {
1606
+ dimensions: number;
1607
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1608
+ normalized: boolean;
1609
+ indexed: boolean;
1610
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1611
+ } | undefined;
1612
+ readonly fileAttachmentConfig?: {
1613
+ virusScan: boolean;
1614
+ virusScanOnUpload: boolean;
1615
+ quarantineOnThreat: boolean;
1616
+ allowMultiple: boolean;
1617
+ allowReplace: boolean;
1618
+ allowDelete: boolean;
1619
+ requireUpload: boolean;
1620
+ extractMetadata: boolean;
1621
+ extractText: boolean;
1622
+ versioningEnabled: boolean;
1623
+ publicRead: boolean;
1624
+ presignedUrlExpiry: number;
1625
+ minSize?: number | undefined;
1626
+ maxSize?: number | undefined;
1627
+ allowedTypes?: string[] | undefined;
1628
+ blockedTypes?: string[] | undefined;
1629
+ allowedMimeTypes?: string[] | undefined;
1630
+ blockedMimeTypes?: string[] | undefined;
1631
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1632
+ storageProvider?: string | undefined;
1633
+ storageBucket?: string | undefined;
1634
+ storagePrefix?: string | undefined;
1635
+ imageValidation?: {
1636
+ generateThumbnails: boolean;
1637
+ preserveMetadata: boolean;
1638
+ autoRotate: boolean;
1639
+ minWidth?: number | undefined;
1640
+ maxWidth?: number | undefined;
1641
+ minHeight?: number | undefined;
1642
+ maxHeight?: number | undefined;
1643
+ aspectRatio?: string | undefined;
1644
+ thumbnailSizes?: {
1645
+ name: string;
1646
+ width: number;
1647
+ height: number;
1648
+ crop: boolean;
1649
+ }[] | undefined;
1650
+ } | undefined;
1651
+ maxVersions?: number | undefined;
1652
+ } | undefined;
1653
+ readonly maskingRule?: {
1654
+ field: string;
1655
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1656
+ preserveFormat: boolean;
1657
+ preserveLength: boolean;
1658
+ pattern?: string | undefined;
1659
+ roles?: string[] | undefined;
1660
+ exemptRoles?: string[] | undefined;
1661
+ } | undefined;
1662
+ readonly auditTrail?: boolean | undefined;
1663
+ readonly cached?: {
1664
+ enabled: boolean;
1665
+ ttl: number;
1666
+ invalidateOn: string[];
1667
+ } | undefined;
1668
+ readonly dataQuality?: {
1669
+ uniqueness: boolean;
1670
+ completeness: number;
1671
+ accuracy?: {
1672
+ source: string;
1673
+ threshold: number;
1674
+ } | undefined;
1675
+ } | undefined;
1676
+ readonly conditionalRequired?: {
1677
+ dialect: "cel" | "js" | "cron" | "template";
1678
+ source?: string | undefined;
1679
+ ast?: unknown;
1680
+ meta?: {
1681
+ rationale?: string | undefined;
1682
+ generatedBy?: string | undefined;
1683
+ } | undefined;
1684
+ } | undefined;
1685
+ readonly sortable?: boolean | undefined;
1686
+ readonly inlineHelpText?: string | undefined;
1687
+ readonly trackFeedHistory?: boolean | undefined;
1688
+ readonly caseSensitive?: boolean | undefined;
1689
+ readonly autonumberFormat?: string | undefined;
1690
+ readonly index?: boolean | undefined;
1691
+ readonly type: "text";
1692
+ };
1693
+ readonly url: {
1694
+ readonly readonly?: boolean | undefined;
1695
+ readonly format?: string | undefined;
1696
+ readonly options?: {
1697
+ label: string;
1698
+ value: string;
1699
+ color?: string | undefined;
1700
+ default?: boolean | undefined;
1701
+ }[] | undefined;
1702
+ readonly description?: string | undefined;
1703
+ readonly label?: string | undefined;
1704
+ readonly name?: string | undefined;
1705
+ readonly precision?: number | undefined;
1706
+ readonly required?: boolean | undefined;
1707
+ readonly multiple?: boolean | undefined;
1708
+ readonly dependencies?: string[] | undefined;
1709
+ readonly theme?: string | undefined;
1710
+ readonly externalId?: boolean | undefined;
1711
+ readonly defaultValue?: unknown;
1712
+ readonly group?: string | undefined;
1713
+ readonly hidden?: boolean | undefined;
1714
+ readonly system?: boolean | undefined;
1715
+ readonly min?: number | undefined;
1716
+ readonly max?: number | undefined;
1717
+ readonly encryptionConfig?: {
1718
+ enabled: boolean;
1719
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1720
+ keyManagement: {
1721
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1722
+ keyId?: string | undefined;
1723
+ rotationPolicy?: {
1724
+ enabled: boolean;
1725
+ frequencyDays: number;
1726
+ retainOldVersions: number;
1727
+ autoRotate: boolean;
1728
+ } | undefined;
1729
+ };
1730
+ scope: "record" | "field" | "table" | "database";
1731
+ deterministicEncryption: boolean;
1732
+ searchableEncryption: boolean;
1733
+ } | undefined;
1734
+ readonly columnName?: string | undefined;
1735
+ readonly searchable?: boolean | undefined;
1736
+ readonly unique?: boolean | undefined;
1737
+ readonly maxLength?: number | undefined;
1738
+ readonly minLength?: number | undefined;
1739
+ readonly scale?: number | undefined;
1740
+ readonly reference?: string | undefined;
1741
+ readonly referenceFilters?: string[] | undefined;
1742
+ readonly writeRequiresMasterRead?: boolean | undefined;
1743
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1744
+ readonly expression?: {
1745
+ dialect: "cel" | "js" | "cron" | "template";
1746
+ source?: string | undefined;
1747
+ ast?: unknown;
1748
+ meta?: {
1749
+ rationale?: string | undefined;
1750
+ generatedBy?: string | undefined;
1751
+ } | undefined;
1752
+ } | undefined;
1753
+ readonly summaryOperations?: {
1754
+ object: string;
1755
+ field: string;
1756
+ function: "min" | "max" | "count" | "sum" | "avg";
1757
+ } | undefined;
1758
+ readonly language?: string | undefined;
1759
+ readonly lineNumbers?: boolean | undefined;
1760
+ readonly maxRating?: number | undefined;
1761
+ readonly allowHalf?: boolean | undefined;
1762
+ readonly displayMap?: boolean | undefined;
1763
+ readonly allowGeocoding?: boolean | undefined;
1764
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1765
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1766
+ readonly allowAlpha?: boolean | undefined;
1767
+ readonly presetColors?: string[] | undefined;
1768
+ readonly step?: number | undefined;
1769
+ readonly showValue?: boolean | undefined;
1770
+ readonly marks?: Record<string, string> | undefined;
1771
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1772
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1773
+ readonly displayValue?: boolean | undefined;
1774
+ readonly allowScanning?: boolean | undefined;
1775
+ readonly currencyConfig?: {
1776
+ precision: number;
1777
+ currencyMode: "fixed" | "dynamic";
1778
+ defaultCurrency: string;
1779
+ } | undefined;
1780
+ readonly vectorConfig?: {
1781
+ dimensions: number;
1782
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1783
+ normalized: boolean;
1784
+ indexed: boolean;
1785
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1786
+ } | undefined;
1787
+ readonly fileAttachmentConfig?: {
1788
+ virusScan: boolean;
1789
+ virusScanOnUpload: boolean;
1790
+ quarantineOnThreat: boolean;
1791
+ allowMultiple: boolean;
1792
+ allowReplace: boolean;
1793
+ allowDelete: boolean;
1794
+ requireUpload: boolean;
1795
+ extractMetadata: boolean;
1796
+ extractText: boolean;
1797
+ versioningEnabled: boolean;
1798
+ publicRead: boolean;
1799
+ presignedUrlExpiry: number;
1800
+ minSize?: number | undefined;
1801
+ maxSize?: number | undefined;
1802
+ allowedTypes?: string[] | undefined;
1803
+ blockedTypes?: string[] | undefined;
1804
+ allowedMimeTypes?: string[] | undefined;
1805
+ blockedMimeTypes?: string[] | undefined;
1806
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1807
+ storageProvider?: string | undefined;
1808
+ storageBucket?: string | undefined;
1809
+ storagePrefix?: string | undefined;
1810
+ imageValidation?: {
1811
+ generateThumbnails: boolean;
1812
+ preserveMetadata: boolean;
1813
+ autoRotate: boolean;
1814
+ minWidth?: number | undefined;
1815
+ maxWidth?: number | undefined;
1816
+ minHeight?: number | undefined;
1817
+ maxHeight?: number | undefined;
1818
+ aspectRatio?: string | undefined;
1819
+ thumbnailSizes?: {
1820
+ name: string;
1821
+ width: number;
1822
+ height: number;
1823
+ crop: boolean;
1824
+ }[] | undefined;
1825
+ } | undefined;
1826
+ maxVersions?: number | undefined;
1827
+ } | undefined;
1828
+ readonly maskingRule?: {
1829
+ field: string;
1830
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1831
+ preserveFormat: boolean;
1832
+ preserveLength: boolean;
1833
+ pattern?: string | undefined;
1834
+ roles?: string[] | undefined;
1835
+ exemptRoles?: string[] | undefined;
1836
+ } | undefined;
1837
+ readonly auditTrail?: boolean | undefined;
1838
+ readonly cached?: {
1839
+ enabled: boolean;
1840
+ ttl: number;
1841
+ invalidateOn: string[];
1842
+ } | undefined;
1843
+ readonly dataQuality?: {
1844
+ uniqueness: boolean;
1845
+ completeness: number;
1846
+ accuracy?: {
1847
+ source: string;
1848
+ threshold: number;
1849
+ } | undefined;
1850
+ } | undefined;
1851
+ readonly conditionalRequired?: {
1852
+ dialect: "cel" | "js" | "cron" | "template";
1853
+ source?: string | undefined;
1854
+ ast?: unknown;
1855
+ meta?: {
1856
+ rationale?: string | undefined;
1857
+ generatedBy?: string | undefined;
1858
+ } | undefined;
1859
+ } | undefined;
1860
+ readonly sortable?: boolean | undefined;
1861
+ readonly inlineHelpText?: string | undefined;
1862
+ readonly trackFeedHistory?: boolean | undefined;
1863
+ readonly caseSensitive?: boolean | undefined;
1864
+ readonly autonumberFormat?: string | undefined;
1865
+ readonly index?: boolean | undefined;
1866
+ readonly type: "text";
1867
+ };
1868
+ readonly method: {
1869
+ readonly readonly?: boolean | undefined;
1870
+ readonly format?: string | undefined;
1871
+ readonly options?: {
1872
+ label: string;
1873
+ value: string;
1874
+ color?: string | undefined;
1875
+ default?: boolean | undefined;
1876
+ }[] | undefined;
1877
+ readonly description?: string | undefined;
1878
+ readonly label?: string | undefined;
1879
+ readonly name?: string | undefined;
1880
+ readonly precision?: number | undefined;
1881
+ readonly required?: boolean | undefined;
1882
+ readonly multiple?: boolean | undefined;
1883
+ readonly dependencies?: string[] | undefined;
1884
+ readonly theme?: string | undefined;
1885
+ readonly externalId?: boolean | undefined;
1886
+ readonly defaultValue?: unknown;
1887
+ readonly group?: string | undefined;
1888
+ readonly hidden?: boolean | undefined;
1889
+ readonly system?: boolean | undefined;
1890
+ readonly min?: number | undefined;
1891
+ readonly max?: number | undefined;
1892
+ readonly encryptionConfig?: {
1893
+ enabled: boolean;
1894
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1895
+ keyManagement: {
1896
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1897
+ keyId?: string | undefined;
1898
+ rotationPolicy?: {
1899
+ enabled: boolean;
1900
+ frequencyDays: number;
1901
+ retainOldVersions: number;
1902
+ autoRotate: boolean;
1903
+ } | undefined;
1904
+ };
1905
+ scope: "record" | "field" | "table" | "database";
1906
+ deterministicEncryption: boolean;
1907
+ searchableEncryption: boolean;
1908
+ } | undefined;
1909
+ readonly columnName?: string | undefined;
1910
+ readonly searchable?: boolean | undefined;
1911
+ readonly unique?: boolean | undefined;
1912
+ readonly maxLength?: number | undefined;
1913
+ readonly minLength?: number | undefined;
1914
+ readonly scale?: number | undefined;
1915
+ readonly reference?: string | undefined;
1916
+ readonly referenceFilters?: string[] | undefined;
1917
+ readonly writeRequiresMasterRead?: boolean | undefined;
1918
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1919
+ readonly expression?: {
1920
+ dialect: "cel" | "js" | "cron" | "template";
1921
+ source?: string | undefined;
1922
+ ast?: unknown;
1923
+ meta?: {
1924
+ rationale?: string | undefined;
1925
+ generatedBy?: string | undefined;
1926
+ } | undefined;
1927
+ } | undefined;
1928
+ readonly summaryOperations?: {
1929
+ object: string;
1930
+ field: string;
1931
+ function: "min" | "max" | "count" | "sum" | "avg";
1932
+ } | undefined;
1933
+ readonly language?: string | undefined;
1934
+ readonly lineNumbers?: boolean | undefined;
1935
+ readonly maxRating?: number | undefined;
1936
+ readonly allowHalf?: boolean | undefined;
1937
+ readonly displayMap?: boolean | undefined;
1938
+ readonly allowGeocoding?: boolean | undefined;
1939
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
1940
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1941
+ readonly allowAlpha?: boolean | undefined;
1942
+ readonly presetColors?: string[] | undefined;
1943
+ readonly step?: number | undefined;
1944
+ readonly showValue?: boolean | undefined;
1945
+ readonly marks?: Record<string, string> | undefined;
1946
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1947
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1948
+ readonly displayValue?: boolean | undefined;
1949
+ readonly allowScanning?: boolean | undefined;
1950
+ readonly currencyConfig?: {
1951
+ precision: number;
1952
+ currencyMode: "fixed" | "dynamic";
1953
+ defaultCurrency: string;
1954
+ } | undefined;
1955
+ readonly vectorConfig?: {
1956
+ dimensions: number;
1957
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
1958
+ normalized: boolean;
1959
+ indexed: boolean;
1960
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
1961
+ } | undefined;
1962
+ readonly fileAttachmentConfig?: {
1963
+ virusScan: boolean;
1964
+ virusScanOnUpload: boolean;
1965
+ quarantineOnThreat: boolean;
1966
+ allowMultiple: boolean;
1967
+ allowReplace: boolean;
1968
+ allowDelete: boolean;
1969
+ requireUpload: boolean;
1970
+ extractMetadata: boolean;
1971
+ extractText: boolean;
1972
+ versioningEnabled: boolean;
1973
+ publicRead: boolean;
1974
+ presignedUrlExpiry: number;
1975
+ minSize?: number | undefined;
1976
+ maxSize?: number | undefined;
1977
+ allowedTypes?: string[] | undefined;
1978
+ blockedTypes?: string[] | undefined;
1979
+ allowedMimeTypes?: string[] | undefined;
1980
+ blockedMimeTypes?: string[] | undefined;
1981
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
1982
+ storageProvider?: string | undefined;
1983
+ storageBucket?: string | undefined;
1984
+ storagePrefix?: string | undefined;
1985
+ imageValidation?: {
1986
+ generateThumbnails: boolean;
1987
+ preserveMetadata: boolean;
1988
+ autoRotate: boolean;
1989
+ minWidth?: number | undefined;
1990
+ maxWidth?: number | undefined;
1991
+ minHeight?: number | undefined;
1992
+ maxHeight?: number | undefined;
1993
+ aspectRatio?: string | undefined;
1994
+ thumbnailSizes?: {
1995
+ name: string;
1996
+ width: number;
1997
+ height: number;
1998
+ crop: boolean;
1999
+ }[] | undefined;
2000
+ } | undefined;
2001
+ maxVersions?: number | undefined;
2002
+ } | undefined;
2003
+ readonly maskingRule?: {
2004
+ field: string;
2005
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2006
+ preserveFormat: boolean;
2007
+ preserveLength: boolean;
2008
+ pattern?: string | undefined;
2009
+ roles?: string[] | undefined;
2010
+ exemptRoles?: string[] | undefined;
2011
+ } | undefined;
2012
+ readonly auditTrail?: boolean | undefined;
2013
+ readonly cached?: {
2014
+ enabled: boolean;
2015
+ ttl: number;
2016
+ invalidateOn: string[];
2017
+ } | undefined;
2018
+ readonly dataQuality?: {
2019
+ uniqueness: boolean;
2020
+ completeness: number;
2021
+ accuracy?: {
2022
+ source: string;
2023
+ threshold: number;
2024
+ } | undefined;
2025
+ } | undefined;
2026
+ readonly conditionalRequired?: {
2027
+ dialect: "cel" | "js" | "cron" | "template";
2028
+ source?: string | undefined;
2029
+ ast?: unknown;
2030
+ meta?: {
2031
+ rationale?: string | undefined;
2032
+ generatedBy?: string | undefined;
2033
+ } | undefined;
2034
+ } | undefined;
2035
+ readonly sortable?: boolean | undefined;
2036
+ readonly inlineHelpText?: string | undefined;
2037
+ readonly trackFeedHistory?: boolean | undefined;
2038
+ readonly caseSensitive?: boolean | undefined;
2039
+ readonly autonumberFormat?: string | undefined;
2040
+ readonly index?: boolean | undefined;
2041
+ readonly type: "text";
2042
+ };
2043
+ readonly description: {
2044
+ readonly readonly?: boolean | undefined;
2045
+ readonly format?: string | undefined;
2046
+ readonly options?: {
2047
+ label: string;
2048
+ value: string;
2049
+ color?: string | undefined;
2050
+ default?: boolean | undefined;
2051
+ }[] | undefined;
2052
+ readonly description?: string | undefined;
2053
+ readonly label?: string | undefined;
2054
+ readonly name?: string | undefined;
2055
+ readonly precision?: number | undefined;
2056
+ readonly required?: boolean | undefined;
2057
+ readonly multiple?: boolean | undefined;
2058
+ readonly dependencies?: string[] | undefined;
2059
+ readonly theme?: string | undefined;
2060
+ readonly externalId?: boolean | undefined;
2061
+ readonly defaultValue?: unknown;
2062
+ readonly group?: string | undefined;
2063
+ readonly hidden?: boolean | undefined;
2064
+ readonly system?: boolean | undefined;
2065
+ readonly min?: number | undefined;
2066
+ readonly max?: number | undefined;
2067
+ readonly encryptionConfig?: {
2068
+ enabled: boolean;
2069
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2070
+ keyManagement: {
2071
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2072
+ keyId?: string | undefined;
2073
+ rotationPolicy?: {
2074
+ enabled: boolean;
2075
+ frequencyDays: number;
2076
+ retainOldVersions: number;
2077
+ autoRotate: boolean;
2078
+ } | undefined;
2079
+ };
2080
+ scope: "record" | "field" | "table" | "database";
2081
+ deterministicEncryption: boolean;
2082
+ searchableEncryption: boolean;
2083
+ } | undefined;
2084
+ readonly columnName?: string | undefined;
2085
+ readonly searchable?: boolean | undefined;
2086
+ readonly unique?: boolean | undefined;
2087
+ readonly maxLength?: number | undefined;
2088
+ readonly minLength?: number | undefined;
2089
+ readonly scale?: number | undefined;
2090
+ readonly reference?: string | undefined;
2091
+ readonly referenceFilters?: string[] | undefined;
2092
+ readonly writeRequiresMasterRead?: boolean | undefined;
2093
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2094
+ readonly expression?: {
2095
+ dialect: "cel" | "js" | "cron" | "template";
2096
+ source?: string | undefined;
2097
+ ast?: unknown;
2098
+ meta?: {
2099
+ rationale?: string | undefined;
2100
+ generatedBy?: string | undefined;
2101
+ } | undefined;
2102
+ } | undefined;
2103
+ readonly summaryOperations?: {
2104
+ object: string;
2105
+ field: string;
2106
+ function: "min" | "max" | "count" | "sum" | "avg";
2107
+ } | undefined;
2108
+ readonly language?: string | undefined;
2109
+ readonly lineNumbers?: boolean | undefined;
2110
+ readonly maxRating?: number | undefined;
2111
+ readonly allowHalf?: boolean | undefined;
2112
+ readonly displayMap?: boolean | undefined;
2113
+ readonly allowGeocoding?: boolean | undefined;
2114
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
2115
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2116
+ readonly allowAlpha?: boolean | undefined;
2117
+ readonly presetColors?: string[] | undefined;
2118
+ readonly step?: number | undefined;
2119
+ readonly showValue?: boolean | undefined;
2120
+ readonly marks?: Record<string, string> | undefined;
2121
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2122
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2123
+ readonly displayValue?: boolean | undefined;
2124
+ readonly allowScanning?: boolean | undefined;
2125
+ readonly currencyConfig?: {
2126
+ precision: number;
2127
+ currencyMode: "fixed" | "dynamic";
2128
+ defaultCurrency: string;
2129
+ } | undefined;
2130
+ readonly vectorConfig?: {
2131
+ dimensions: number;
2132
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2133
+ normalized: boolean;
2134
+ indexed: boolean;
2135
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2136
+ } | undefined;
2137
+ readonly fileAttachmentConfig?: {
2138
+ virusScan: boolean;
2139
+ virusScanOnUpload: boolean;
2140
+ quarantineOnThreat: boolean;
2141
+ allowMultiple: boolean;
2142
+ allowReplace: boolean;
2143
+ allowDelete: boolean;
2144
+ requireUpload: boolean;
2145
+ extractMetadata: boolean;
2146
+ extractText: boolean;
2147
+ versioningEnabled: boolean;
2148
+ publicRead: boolean;
2149
+ presignedUrlExpiry: number;
2150
+ minSize?: number | undefined;
2151
+ maxSize?: number | undefined;
2152
+ allowedTypes?: string[] | undefined;
2153
+ blockedTypes?: string[] | undefined;
2154
+ allowedMimeTypes?: string[] | undefined;
2155
+ blockedMimeTypes?: string[] | undefined;
2156
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2157
+ storageProvider?: string | undefined;
2158
+ storageBucket?: string | undefined;
2159
+ storagePrefix?: string | undefined;
2160
+ imageValidation?: {
2161
+ generateThumbnails: boolean;
2162
+ preserveMetadata: boolean;
2163
+ autoRotate: boolean;
2164
+ minWidth?: number | undefined;
2165
+ maxWidth?: number | undefined;
2166
+ minHeight?: number | undefined;
2167
+ maxHeight?: number | undefined;
2168
+ aspectRatio?: string | undefined;
2169
+ thumbnailSizes?: {
2170
+ name: string;
2171
+ width: number;
2172
+ height: number;
2173
+ crop: boolean;
2174
+ }[] | undefined;
2175
+ } | undefined;
2176
+ maxVersions?: number | undefined;
2177
+ } | undefined;
2178
+ readonly maskingRule?: {
2179
+ field: string;
2180
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2181
+ preserveFormat: boolean;
2182
+ preserveLength: boolean;
2183
+ pattern?: string | undefined;
2184
+ roles?: string[] | undefined;
2185
+ exemptRoles?: string[] | undefined;
2186
+ } | undefined;
2187
+ readonly auditTrail?: boolean | undefined;
2188
+ readonly cached?: {
2189
+ enabled: boolean;
2190
+ ttl: number;
2191
+ invalidateOn: string[];
2192
+ } | undefined;
2193
+ readonly dataQuality?: {
2194
+ uniqueness: boolean;
2195
+ completeness: number;
2196
+ accuracy?: {
2197
+ source: string;
2198
+ threshold: number;
2199
+ } | undefined;
2200
+ } | undefined;
2201
+ readonly conditionalRequired?: {
2202
+ dialect: "cel" | "js" | "cron" | "template";
2203
+ source?: string | undefined;
2204
+ ast?: unknown;
2205
+ meta?: {
2206
+ rationale?: string | undefined;
2207
+ generatedBy?: string | undefined;
2208
+ } | undefined;
2209
+ } | undefined;
2210
+ readonly sortable?: boolean | undefined;
2211
+ readonly inlineHelpText?: string | undefined;
2212
+ readonly trackFeedHistory?: boolean | undefined;
2213
+ readonly caseSensitive?: boolean | undefined;
2214
+ readonly autonumberFormat?: string | undefined;
2215
+ readonly index?: boolean | undefined;
2216
+ readonly type: "textarea";
2217
+ };
2218
+ readonly active: {
2219
+ readonly readonly?: boolean | undefined;
2220
+ readonly format?: string | undefined;
2221
+ readonly options?: {
2222
+ label: string;
2223
+ value: string;
2224
+ color?: string | undefined;
2225
+ default?: boolean | undefined;
2226
+ }[] | undefined;
2227
+ readonly description?: string | undefined;
2228
+ readonly label?: string | undefined;
2229
+ readonly name?: string | undefined;
2230
+ readonly precision?: number | undefined;
2231
+ readonly required?: boolean | undefined;
2232
+ readonly multiple?: boolean | undefined;
2233
+ readonly dependencies?: string[] | undefined;
2234
+ readonly theme?: string | undefined;
2235
+ readonly externalId?: boolean | undefined;
2236
+ readonly defaultValue?: unknown;
2237
+ readonly group?: string | undefined;
2238
+ readonly hidden?: boolean | undefined;
2239
+ readonly system?: boolean | undefined;
2240
+ readonly min?: number | undefined;
2241
+ readonly max?: number | undefined;
2242
+ readonly encryptionConfig?: {
2243
+ enabled: boolean;
2244
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2245
+ keyManagement: {
2246
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2247
+ keyId?: string | undefined;
2248
+ rotationPolicy?: {
2249
+ enabled: boolean;
2250
+ frequencyDays: number;
2251
+ retainOldVersions: number;
2252
+ autoRotate: boolean;
2253
+ } | undefined;
2254
+ };
2255
+ scope: "record" | "field" | "table" | "database";
2256
+ deterministicEncryption: boolean;
2257
+ searchableEncryption: boolean;
2258
+ } | undefined;
2259
+ readonly columnName?: string | undefined;
2260
+ readonly searchable?: boolean | undefined;
2261
+ readonly unique?: boolean | undefined;
2262
+ readonly maxLength?: number | undefined;
2263
+ readonly minLength?: number | undefined;
2264
+ readonly scale?: number | undefined;
2265
+ readonly reference?: string | undefined;
2266
+ readonly referenceFilters?: string[] | undefined;
2267
+ readonly writeRequiresMasterRead?: boolean | undefined;
2268
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2269
+ readonly expression?: {
2270
+ dialect: "cel" | "js" | "cron" | "template";
2271
+ source?: string | undefined;
2272
+ ast?: unknown;
2273
+ meta?: {
2274
+ rationale?: string | undefined;
2275
+ generatedBy?: string | undefined;
2276
+ } | undefined;
2277
+ } | undefined;
2278
+ readonly summaryOperations?: {
2279
+ object: string;
2280
+ field: string;
2281
+ function: "min" | "max" | "count" | "sum" | "avg";
2282
+ } | undefined;
2283
+ readonly language?: string | undefined;
2284
+ readonly lineNumbers?: boolean | undefined;
2285
+ readonly maxRating?: number | undefined;
2286
+ readonly allowHalf?: boolean | undefined;
2287
+ readonly displayMap?: boolean | undefined;
2288
+ readonly allowGeocoding?: boolean | undefined;
2289
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
2290
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2291
+ readonly allowAlpha?: boolean | undefined;
2292
+ readonly presetColors?: string[] | undefined;
2293
+ readonly step?: number | undefined;
2294
+ readonly showValue?: boolean | undefined;
2295
+ readonly marks?: Record<string, string> | undefined;
2296
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2297
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2298
+ readonly displayValue?: boolean | undefined;
2299
+ readonly allowScanning?: boolean | undefined;
2300
+ readonly currencyConfig?: {
2301
+ precision: number;
2302
+ currencyMode: "fixed" | "dynamic";
2303
+ defaultCurrency: string;
2304
+ } | undefined;
2305
+ readonly vectorConfig?: {
2306
+ dimensions: number;
2307
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2308
+ normalized: boolean;
2309
+ indexed: boolean;
2310
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2311
+ } | undefined;
2312
+ readonly fileAttachmentConfig?: {
2313
+ virusScan: boolean;
2314
+ virusScanOnUpload: boolean;
2315
+ quarantineOnThreat: boolean;
2316
+ allowMultiple: boolean;
2317
+ allowReplace: boolean;
2318
+ allowDelete: boolean;
2319
+ requireUpload: boolean;
2320
+ extractMetadata: boolean;
2321
+ extractText: boolean;
2322
+ versioningEnabled: boolean;
2323
+ publicRead: boolean;
2324
+ presignedUrlExpiry: number;
2325
+ minSize?: number | undefined;
2326
+ maxSize?: number | undefined;
2327
+ allowedTypes?: string[] | undefined;
2328
+ blockedTypes?: string[] | undefined;
2329
+ allowedMimeTypes?: string[] | undefined;
2330
+ blockedMimeTypes?: string[] | undefined;
2331
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2332
+ storageProvider?: string | undefined;
2333
+ storageBucket?: string | undefined;
2334
+ storagePrefix?: string | undefined;
2335
+ imageValidation?: {
2336
+ generateThumbnails: boolean;
2337
+ preserveMetadata: boolean;
2338
+ autoRotate: boolean;
2339
+ minWidth?: number | undefined;
2340
+ maxWidth?: number | undefined;
2341
+ minHeight?: number | undefined;
2342
+ maxHeight?: number | undefined;
2343
+ aspectRatio?: string | undefined;
2344
+ thumbnailSizes?: {
2345
+ name: string;
2346
+ width: number;
2347
+ height: number;
2348
+ crop: boolean;
2349
+ }[] | undefined;
2350
+ } | undefined;
2351
+ maxVersions?: number | undefined;
2352
+ } | undefined;
2353
+ readonly maskingRule?: {
2354
+ field: string;
2355
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2356
+ preserveFormat: boolean;
2357
+ preserveLength: boolean;
2358
+ pattern?: string | undefined;
2359
+ roles?: string[] | undefined;
2360
+ exemptRoles?: string[] | undefined;
2361
+ } | undefined;
2362
+ readonly auditTrail?: boolean | undefined;
2363
+ readonly cached?: {
2364
+ enabled: boolean;
2365
+ ttl: number;
2366
+ invalidateOn: string[];
2367
+ } | undefined;
2368
+ readonly dataQuality?: {
2369
+ uniqueness: boolean;
2370
+ completeness: number;
2371
+ accuracy?: {
2372
+ source: string;
2373
+ threshold: number;
2374
+ } | undefined;
2375
+ } | undefined;
2376
+ readonly conditionalRequired?: {
2377
+ dialect: "cel" | "js" | "cron" | "template";
2378
+ source?: string | undefined;
2379
+ ast?: unknown;
2380
+ meta?: {
2381
+ rationale?: string | undefined;
2382
+ generatedBy?: string | undefined;
2383
+ } | undefined;
2384
+ } | undefined;
2385
+ readonly sortable?: boolean | undefined;
2386
+ readonly inlineHelpText?: string | undefined;
2387
+ readonly trackFeedHistory?: boolean | undefined;
2388
+ readonly caseSensitive?: boolean | undefined;
2389
+ readonly autonumberFormat?: string | undefined;
2390
+ readonly index?: boolean | undefined;
2391
+ readonly type: "boolean";
2392
+ };
2393
+ readonly definition_json: {
2394
+ readonly readonly?: boolean | undefined;
2395
+ readonly format?: string | undefined;
2396
+ readonly options?: {
2397
+ label: string;
2398
+ value: string;
2399
+ color?: string | undefined;
2400
+ default?: boolean | undefined;
2401
+ }[] | undefined;
2402
+ readonly description?: string | undefined;
2403
+ readonly label?: string | undefined;
2404
+ readonly name?: string | undefined;
2405
+ readonly precision?: number | undefined;
2406
+ readonly required?: boolean | undefined;
2407
+ readonly multiple?: boolean | undefined;
2408
+ readonly dependencies?: string[] | undefined;
2409
+ readonly theme?: string | undefined;
2410
+ readonly externalId?: boolean | undefined;
2411
+ readonly defaultValue?: unknown;
2412
+ readonly group?: string | undefined;
2413
+ readonly hidden?: boolean | undefined;
2414
+ readonly system?: boolean | undefined;
2415
+ readonly min?: number | undefined;
2416
+ readonly max?: number | undefined;
2417
+ readonly encryptionConfig?: {
2418
+ enabled: boolean;
2419
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2420
+ keyManagement: {
2421
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2422
+ keyId?: string | undefined;
2423
+ rotationPolicy?: {
2424
+ enabled: boolean;
2425
+ frequencyDays: number;
2426
+ retainOldVersions: number;
2427
+ autoRotate: boolean;
2428
+ } | undefined;
2429
+ };
2430
+ scope: "record" | "field" | "table" | "database";
2431
+ deterministicEncryption: boolean;
2432
+ searchableEncryption: boolean;
2433
+ } | undefined;
2434
+ readonly columnName?: string | undefined;
2435
+ readonly searchable?: boolean | undefined;
2436
+ readonly unique?: boolean | undefined;
2437
+ readonly maxLength?: number | undefined;
2438
+ readonly minLength?: number | undefined;
2439
+ readonly scale?: number | undefined;
2440
+ readonly reference?: string | undefined;
2441
+ readonly referenceFilters?: string[] | undefined;
2442
+ readonly writeRequiresMasterRead?: boolean | undefined;
2443
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2444
+ readonly expression?: {
2445
+ dialect: "cel" | "js" | "cron" | "template";
2446
+ source?: string | undefined;
2447
+ ast?: unknown;
2448
+ meta?: {
2449
+ rationale?: string | undefined;
2450
+ generatedBy?: string | undefined;
2451
+ } | undefined;
2452
+ } | undefined;
2453
+ readonly summaryOperations?: {
2454
+ object: string;
2455
+ field: string;
2456
+ function: "min" | "max" | "count" | "sum" | "avg";
2457
+ } | undefined;
2458
+ readonly language?: string | undefined;
2459
+ readonly lineNumbers?: boolean | undefined;
2460
+ readonly maxRating?: number | undefined;
2461
+ readonly allowHalf?: boolean | undefined;
2462
+ readonly displayMap?: boolean | undefined;
2463
+ readonly allowGeocoding?: boolean | undefined;
2464
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
2465
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2466
+ readonly allowAlpha?: boolean | undefined;
2467
+ readonly presetColors?: string[] | undefined;
2468
+ readonly step?: number | undefined;
2469
+ readonly showValue?: boolean | undefined;
2470
+ readonly marks?: Record<string, string> | undefined;
2471
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2472
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2473
+ readonly displayValue?: boolean | undefined;
2474
+ readonly allowScanning?: boolean | undefined;
2475
+ readonly currencyConfig?: {
2476
+ precision: number;
2477
+ currencyMode: "fixed" | "dynamic";
2478
+ defaultCurrency: string;
2479
+ } | undefined;
2480
+ readonly vectorConfig?: {
2481
+ dimensions: number;
2482
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2483
+ normalized: boolean;
2484
+ indexed: boolean;
2485
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2486
+ } | undefined;
2487
+ readonly fileAttachmentConfig?: {
2488
+ virusScan: boolean;
2489
+ virusScanOnUpload: boolean;
2490
+ quarantineOnThreat: boolean;
2491
+ allowMultiple: boolean;
2492
+ allowReplace: boolean;
2493
+ allowDelete: boolean;
2494
+ requireUpload: boolean;
2495
+ extractMetadata: boolean;
2496
+ extractText: boolean;
2497
+ versioningEnabled: boolean;
2498
+ publicRead: boolean;
2499
+ presignedUrlExpiry: number;
2500
+ minSize?: number | undefined;
2501
+ maxSize?: number | undefined;
2502
+ allowedTypes?: string[] | undefined;
2503
+ blockedTypes?: string[] | undefined;
2504
+ allowedMimeTypes?: string[] | undefined;
2505
+ blockedMimeTypes?: string[] | undefined;
2506
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2507
+ storageProvider?: string | undefined;
2508
+ storageBucket?: string | undefined;
2509
+ storagePrefix?: string | undefined;
2510
+ imageValidation?: {
2511
+ generateThumbnails: boolean;
2512
+ preserveMetadata: boolean;
2513
+ autoRotate: boolean;
2514
+ minWidth?: number | undefined;
2515
+ maxWidth?: number | undefined;
2516
+ minHeight?: number | undefined;
2517
+ maxHeight?: number | undefined;
2518
+ aspectRatio?: string | undefined;
2519
+ thumbnailSizes?: {
2520
+ name: string;
2521
+ width: number;
2522
+ height: number;
2523
+ crop: boolean;
2524
+ }[] | undefined;
2525
+ } | undefined;
2526
+ maxVersions?: number | undefined;
2527
+ } | undefined;
2528
+ readonly maskingRule?: {
2529
+ field: string;
2530
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2531
+ preserveFormat: boolean;
2532
+ preserveLength: boolean;
2533
+ pattern?: string | undefined;
2534
+ roles?: string[] | undefined;
2535
+ exemptRoles?: string[] | undefined;
2536
+ } | undefined;
2537
+ readonly auditTrail?: boolean | undefined;
2538
+ readonly cached?: {
2539
+ enabled: boolean;
2540
+ ttl: number;
2541
+ invalidateOn: string[];
2542
+ } | undefined;
2543
+ readonly dataQuality?: {
2544
+ uniqueness: boolean;
2545
+ completeness: number;
2546
+ accuracy?: {
2547
+ source: string;
2548
+ threshold: number;
2549
+ } | undefined;
2550
+ } | undefined;
2551
+ readonly conditionalRequired?: {
2552
+ dialect: "cel" | "js" | "cron" | "template";
2553
+ source?: string | undefined;
2554
+ ast?: unknown;
2555
+ meta?: {
2556
+ rationale?: string | undefined;
2557
+ generatedBy?: string | undefined;
2558
+ } | undefined;
2559
+ } | undefined;
2560
+ readonly sortable?: boolean | undefined;
2561
+ readonly inlineHelpText?: string | undefined;
2562
+ readonly trackFeedHistory?: boolean | undefined;
2563
+ readonly caseSensitive?: boolean | undefined;
2564
+ readonly autonumberFormat?: string | undefined;
2565
+ readonly index?: boolean | undefined;
2566
+ readonly type: "textarea";
2567
+ };
2568
+ readonly created_at: {
2569
+ readonly readonly?: boolean | undefined;
2570
+ readonly format?: string | undefined;
2571
+ readonly options?: {
2572
+ label: string;
2573
+ value: string;
2574
+ color?: string | undefined;
2575
+ default?: boolean | undefined;
2576
+ }[] | undefined;
2577
+ readonly description?: string | undefined;
2578
+ readonly label?: string | undefined;
2579
+ readonly name?: string | undefined;
2580
+ readonly precision?: number | undefined;
2581
+ readonly required?: boolean | undefined;
2582
+ readonly multiple?: boolean | undefined;
2583
+ readonly dependencies?: string[] | undefined;
2584
+ readonly theme?: string | undefined;
2585
+ readonly externalId?: boolean | undefined;
2586
+ readonly defaultValue?: unknown;
2587
+ readonly group?: string | undefined;
2588
+ readonly hidden?: boolean | undefined;
2589
+ readonly system?: boolean | undefined;
2590
+ readonly min?: number | undefined;
2591
+ readonly max?: number | undefined;
2592
+ readonly encryptionConfig?: {
2593
+ enabled: boolean;
2594
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2595
+ keyManagement: {
2596
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2597
+ keyId?: string | undefined;
2598
+ rotationPolicy?: {
2599
+ enabled: boolean;
2600
+ frequencyDays: number;
2601
+ retainOldVersions: number;
2602
+ autoRotate: boolean;
2603
+ } | undefined;
2604
+ };
2605
+ scope: "record" | "field" | "table" | "database";
2606
+ deterministicEncryption: boolean;
2607
+ searchableEncryption: boolean;
2608
+ } | undefined;
2609
+ readonly columnName?: string | undefined;
2610
+ readonly searchable?: boolean | undefined;
2611
+ readonly unique?: boolean | undefined;
2612
+ readonly maxLength?: number | undefined;
2613
+ readonly minLength?: number | undefined;
2614
+ readonly scale?: number | undefined;
2615
+ readonly reference?: string | undefined;
2616
+ readonly referenceFilters?: string[] | undefined;
2617
+ readonly writeRequiresMasterRead?: boolean | undefined;
2618
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2619
+ readonly expression?: {
2620
+ dialect: "cel" | "js" | "cron" | "template";
2621
+ source?: string | undefined;
2622
+ ast?: unknown;
2623
+ meta?: {
2624
+ rationale?: string | undefined;
2625
+ generatedBy?: string | undefined;
2626
+ } | undefined;
2627
+ } | undefined;
2628
+ readonly summaryOperations?: {
2629
+ object: string;
2630
+ field: string;
2631
+ function: "min" | "max" | "count" | "sum" | "avg";
2632
+ } | undefined;
2633
+ readonly language?: string | undefined;
2634
+ readonly lineNumbers?: boolean | undefined;
2635
+ readonly maxRating?: number | undefined;
2636
+ readonly allowHalf?: boolean | undefined;
2637
+ readonly displayMap?: boolean | undefined;
2638
+ readonly allowGeocoding?: boolean | undefined;
2639
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
2640
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2641
+ readonly allowAlpha?: boolean | undefined;
2642
+ readonly presetColors?: string[] | undefined;
2643
+ readonly step?: number | undefined;
2644
+ readonly showValue?: boolean | undefined;
2645
+ readonly marks?: Record<string, string> | undefined;
2646
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2647
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2648
+ readonly displayValue?: boolean | undefined;
2649
+ readonly allowScanning?: boolean | undefined;
2650
+ readonly currencyConfig?: {
2651
+ precision: number;
2652
+ currencyMode: "fixed" | "dynamic";
2653
+ defaultCurrency: string;
2654
+ } | undefined;
2655
+ readonly vectorConfig?: {
2656
+ dimensions: number;
2657
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2658
+ normalized: boolean;
2659
+ indexed: boolean;
2660
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2661
+ } | undefined;
2662
+ readonly fileAttachmentConfig?: {
2663
+ virusScan: boolean;
2664
+ virusScanOnUpload: boolean;
2665
+ quarantineOnThreat: boolean;
2666
+ allowMultiple: boolean;
2667
+ allowReplace: boolean;
2668
+ allowDelete: boolean;
2669
+ requireUpload: boolean;
2670
+ extractMetadata: boolean;
2671
+ extractText: boolean;
2672
+ versioningEnabled: boolean;
2673
+ publicRead: boolean;
2674
+ presignedUrlExpiry: number;
2675
+ minSize?: number | undefined;
2676
+ maxSize?: number | undefined;
2677
+ allowedTypes?: string[] | undefined;
2678
+ blockedTypes?: string[] | undefined;
2679
+ allowedMimeTypes?: string[] | undefined;
2680
+ blockedMimeTypes?: string[] | undefined;
2681
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2682
+ storageProvider?: string | undefined;
2683
+ storageBucket?: string | undefined;
2684
+ storagePrefix?: string | undefined;
2685
+ imageValidation?: {
2686
+ generateThumbnails: boolean;
2687
+ preserveMetadata: boolean;
2688
+ autoRotate: boolean;
2689
+ minWidth?: number | undefined;
2690
+ maxWidth?: number | undefined;
2691
+ minHeight?: number | undefined;
2692
+ maxHeight?: number | undefined;
2693
+ aspectRatio?: string | undefined;
2694
+ thumbnailSizes?: {
2695
+ name: string;
2696
+ width: number;
2697
+ height: number;
2698
+ crop: boolean;
2699
+ }[] | undefined;
2700
+ } | undefined;
2701
+ maxVersions?: number | undefined;
2702
+ } | undefined;
2703
+ readonly maskingRule?: {
2704
+ field: string;
2705
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2706
+ preserveFormat: boolean;
2707
+ preserveLength: boolean;
2708
+ pattern?: string | undefined;
2709
+ roles?: string[] | undefined;
2710
+ exemptRoles?: string[] | undefined;
2711
+ } | undefined;
2712
+ readonly auditTrail?: boolean | undefined;
2713
+ readonly cached?: {
2714
+ enabled: boolean;
2715
+ ttl: number;
2716
+ invalidateOn: string[];
2717
+ } | undefined;
2718
+ readonly dataQuality?: {
2719
+ uniqueness: boolean;
2720
+ completeness: number;
2721
+ accuracy?: {
2722
+ source: string;
2723
+ threshold: number;
2724
+ } | undefined;
2725
+ } | undefined;
2726
+ readonly conditionalRequired?: {
2727
+ dialect: "cel" | "js" | "cron" | "template";
2728
+ source?: string | undefined;
2729
+ ast?: unknown;
2730
+ meta?: {
2731
+ rationale?: string | undefined;
2732
+ generatedBy?: string | undefined;
2733
+ } | undefined;
2734
+ } | undefined;
2735
+ readonly sortable?: boolean | undefined;
2736
+ readonly inlineHelpText?: string | undefined;
2737
+ readonly trackFeedHistory?: boolean | undefined;
2738
+ readonly caseSensitive?: boolean | undefined;
2739
+ readonly autonumberFormat?: string | undefined;
2740
+ readonly index?: boolean | undefined;
2741
+ readonly type: "datetime";
2742
+ };
2743
+ readonly updated_at: {
2744
+ readonly readonly?: boolean | undefined;
2745
+ readonly format?: string | undefined;
2746
+ readonly options?: {
2747
+ label: string;
2748
+ value: string;
2749
+ color?: string | undefined;
2750
+ default?: boolean | undefined;
2751
+ }[] | undefined;
2752
+ readonly description?: string | undefined;
2753
+ readonly label?: string | undefined;
2754
+ readonly name?: string | undefined;
2755
+ readonly precision?: number | undefined;
2756
+ readonly required?: boolean | undefined;
2757
+ readonly multiple?: boolean | undefined;
2758
+ readonly dependencies?: string[] | undefined;
2759
+ readonly theme?: string | undefined;
2760
+ readonly externalId?: boolean | undefined;
2761
+ readonly defaultValue?: unknown;
2762
+ readonly group?: string | undefined;
2763
+ readonly hidden?: boolean | undefined;
2764
+ readonly system?: boolean | undefined;
2765
+ readonly min?: number | undefined;
2766
+ readonly max?: number | undefined;
2767
+ readonly encryptionConfig?: {
2768
+ enabled: boolean;
2769
+ algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2770
+ keyManagement: {
2771
+ provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2772
+ keyId?: string | undefined;
2773
+ rotationPolicy?: {
2774
+ enabled: boolean;
2775
+ frequencyDays: number;
2776
+ retainOldVersions: number;
2777
+ autoRotate: boolean;
2778
+ } | undefined;
2779
+ };
2780
+ scope: "record" | "field" | "table" | "database";
2781
+ deterministicEncryption: boolean;
2782
+ searchableEncryption: boolean;
2783
+ } | undefined;
2784
+ readonly columnName?: string | undefined;
2785
+ readonly searchable?: boolean | undefined;
2786
+ readonly unique?: boolean | undefined;
2787
+ readonly maxLength?: number | undefined;
2788
+ readonly minLength?: number | undefined;
2789
+ readonly scale?: number | undefined;
2790
+ readonly reference?: string | undefined;
2791
+ readonly referenceFilters?: string[] | undefined;
2792
+ readonly writeRequiresMasterRead?: boolean | undefined;
2793
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2794
+ readonly expression?: {
2795
+ dialect: "cel" | "js" | "cron" | "template";
2796
+ source?: string | undefined;
2797
+ ast?: unknown;
2798
+ meta?: {
2799
+ rationale?: string | undefined;
2800
+ generatedBy?: string | undefined;
2801
+ } | undefined;
2802
+ } | undefined;
2803
+ readonly summaryOperations?: {
2804
+ object: string;
2805
+ field: string;
2806
+ function: "min" | "max" | "count" | "sum" | "avg";
2807
+ } | undefined;
2808
+ readonly language?: string | undefined;
2809
+ readonly lineNumbers?: boolean | undefined;
2810
+ readonly maxRating?: number | undefined;
2811
+ readonly allowHalf?: boolean | undefined;
2812
+ readonly displayMap?: boolean | undefined;
2813
+ readonly allowGeocoding?: boolean | undefined;
2814
+ readonly addressFormat?: "us" | "uk" | "international" | undefined;
2815
+ readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2816
+ readonly allowAlpha?: boolean | undefined;
2817
+ readonly presetColors?: string[] | undefined;
2818
+ readonly step?: number | undefined;
2819
+ readonly showValue?: boolean | undefined;
2820
+ readonly marks?: Record<string, string> | undefined;
2821
+ readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2822
+ readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2823
+ readonly displayValue?: boolean | undefined;
2824
+ readonly allowScanning?: boolean | undefined;
2825
+ readonly currencyConfig?: {
2826
+ precision: number;
2827
+ currencyMode: "fixed" | "dynamic";
2828
+ defaultCurrency: string;
2829
+ } | undefined;
2830
+ readonly vectorConfig?: {
2831
+ dimensions: number;
2832
+ distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
2833
+ normalized: boolean;
2834
+ indexed: boolean;
2835
+ indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
2836
+ } | undefined;
2837
+ readonly fileAttachmentConfig?: {
2838
+ virusScan: boolean;
2839
+ virusScanOnUpload: boolean;
2840
+ quarantineOnThreat: boolean;
2841
+ allowMultiple: boolean;
2842
+ allowReplace: boolean;
2843
+ allowDelete: boolean;
2844
+ requireUpload: boolean;
2845
+ extractMetadata: boolean;
2846
+ extractText: boolean;
2847
+ versioningEnabled: boolean;
2848
+ publicRead: boolean;
2849
+ presignedUrlExpiry: number;
2850
+ minSize?: number | undefined;
2851
+ maxSize?: number | undefined;
2852
+ allowedTypes?: string[] | undefined;
2853
+ blockedTypes?: string[] | undefined;
2854
+ allowedMimeTypes?: string[] | undefined;
2855
+ blockedMimeTypes?: string[] | undefined;
2856
+ virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
2857
+ storageProvider?: string | undefined;
2858
+ storageBucket?: string | undefined;
2859
+ storagePrefix?: string | undefined;
2860
+ imageValidation?: {
2861
+ generateThumbnails: boolean;
2862
+ preserveMetadata: boolean;
2863
+ autoRotate: boolean;
2864
+ minWidth?: number | undefined;
2865
+ maxWidth?: number | undefined;
2866
+ minHeight?: number | undefined;
2867
+ maxHeight?: number | undefined;
2868
+ aspectRatio?: string | undefined;
2869
+ thumbnailSizes?: {
2870
+ name: string;
2871
+ width: number;
2872
+ height: number;
2873
+ crop: boolean;
2874
+ }[] | undefined;
2875
+ } | undefined;
2876
+ maxVersions?: number | undefined;
2877
+ } | undefined;
2878
+ readonly maskingRule?: {
2879
+ field: string;
2880
+ strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2881
+ preserveFormat: boolean;
2882
+ preserveLength: boolean;
2883
+ pattern?: string | undefined;
2884
+ roles?: string[] | undefined;
2885
+ exemptRoles?: string[] | undefined;
2886
+ } | undefined;
2887
+ readonly auditTrail?: boolean | undefined;
2888
+ readonly cached?: {
2889
+ enabled: boolean;
2890
+ ttl: number;
2891
+ invalidateOn: string[];
2892
+ } | undefined;
2893
+ readonly dataQuality?: {
2894
+ uniqueness: boolean;
2895
+ completeness: number;
2896
+ accuracy?: {
2897
+ source: string;
2898
+ threshold: number;
2899
+ } | undefined;
2900
+ } | undefined;
2901
+ readonly conditionalRequired?: {
2902
+ dialect: "cel" | "js" | "cron" | "template";
2903
+ source?: string | undefined;
2904
+ ast?: unknown;
2905
+ meta?: {
2906
+ rationale?: string | undefined;
2907
+ generatedBy?: string | undefined;
2908
+ } | undefined;
2909
+ } | undefined;
2910
+ readonly sortable?: boolean | undefined;
2911
+ readonly inlineHelpText?: string | undefined;
2912
+ readonly trackFeedHistory?: boolean | undefined;
2913
+ readonly caseSensitive?: boolean | undefined;
2914
+ readonly autonumberFormat?: string | undefined;
2915
+ readonly index?: boolean | undefined;
2916
+ readonly type: "datetime";
2917
+ };
39
2918
  };
40
- };
2919
+ readonly indexes: [{
2920
+ readonly fields: ["name"];
2921
+ readonly unique: true;
2922
+ }, {
2923
+ readonly fields: ["object_name"];
2924
+ }, {
2925
+ readonly fields: ["active", "object_name"];
2926
+ }];
2927
+ }, "fields">;
41
2928
 
42
2929
  /**
43
2930
  * sys_webhook_delivery — Durable outbox row for one HTTP attempt.
@@ -72,7 +2959,7 @@ declare const SysWebhookDelivery: Omit<{
72
2959
  abstract: boolean;
73
2960
  datasource: string;
74
2961
  fields: Record<string, {
75
- type: "number" | "boolean" | "date" | "record" | "file" | "url" | "tags" | "code" | "datetime" | "signature" | "progress" | "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";
2962
+ type: "number" | "boolean" | "date" | "record" | "file" | "secret" | "url" | "tags" | "code" | "datetime" | "signature" | "progress" | "currency" | "percent" | "password" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "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";
76
2963
  required: boolean;
77
2964
  searchable: boolean;
78
2965
  multiple: boolean;
@@ -287,6 +3174,14 @@ declare const SysWebhookDelivery: Omit<{
287
3174
  owner?: boolean | undefined;
288
3175
  audit?: boolean | undefined;
289
3176
  } | undefined;
3177
+ external?: {
3178
+ writable: boolean;
3179
+ remoteName?: string | undefined;
3180
+ remoteSchema?: string | undefined;
3181
+ columnMap?: Record<string, string> | undefined;
3182
+ introspectedAt?: string | undefined;
3183
+ ignoreColumns?: string[] | undefined;
3184
+ } | undefined;
290
3185
  indexes?: {
291
3186
  fields: string[];
292
3187
  type: "hash" | "btree" | "gin" | "gist" | "fulltext";
@@ -347,36 +3242,6 @@ declare const SysWebhookDelivery: Omit<{
347
3242
  destination: string;
348
3243
  } | undefined;
349
3244
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
350
- stateMachines?: Record<string, {
351
- id: string;
352
- initial: string;
353
- states: Record<string, StateNodeConfig>;
354
- description?: string | undefined;
355
- contextSchema?: Record<string, unknown> | undefined;
356
- on?: Record<string, string | {
357
- target?: string | undefined;
358
- cond?: string | {
359
- type: string;
360
- params?: Record<string, unknown> | undefined;
361
- } | undefined;
362
- actions?: (string | {
363
- type: string;
364
- params?: Record<string, unknown> | undefined;
365
- })[] | undefined;
366
- description?: string | undefined;
367
- } | {
368
- target?: string | undefined;
369
- cond?: string | {
370
- type: string;
371
- params?: Record<string, unknown> | undefined;
372
- } | undefined;
373
- actions?: (string | {
374
- type: string;
375
- params?: Record<string, unknown> | undefined;
376
- })[] | undefined;
377
- description?: string | undefined;
378
- }[]> | undefined;
379
- }> | undefined;
380
3245
  displayNameField?: string | undefined;
381
3246
  recordName?: {
382
3247
  type: "text" | "autonumber";
@@ -466,7 +3331,7 @@ declare const SysWebhookDelivery: Omit<{
466
3331
  type: "none" | "multiple" | "single";
467
3332
  } | undefined;
468
3333
  navigation?: {
469
- mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
3334
+ mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
470
3335
  preventNavigation: boolean;
471
3336
  openNewTab: boolean;
472
3337
  view?: string | undefined;
@@ -655,7 +3520,7 @@ declare const SysWebhookDelivery: Omit<{
655
3520
  trash: boolean;
656
3521
  mru: boolean;
657
3522
  clone: boolean;
658
- apiMethods?: ("create" | "update" | "delete" | "search" | "import" | "list" | "get" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
3523
+ apiMethods?: ("create" | "update" | "delete" | "search" | "import" | "list" | "get" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
659
3524
  } | undefined;
660
3525
  recordTypes?: string[] | undefined;
661
3526
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
@@ -701,7 +3566,7 @@ declare const SysWebhookDelivery: Omit<{
701
3566
  field?: string | undefined;
702
3567
  objectOverride?: string | undefined;
703
3568
  label?: string | undefined;
704
- 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;
3569
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "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;
705
3570
  options?: {
706
3571
  label: string;
707
3572
  value: string;
@@ -753,7 +3618,7 @@ declare const SysWebhookDelivery: Omit<{
753
3618
  } | undefined;
754
3619
  method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
755
3620
  bodyExtra?: Record<string, unknown> | undefined;
756
- mode?: "custom" | "delete" | "create" | "edit" | undefined;
3621
+ mode?: "custom" | "delete" | "edit" | "create" | undefined;
757
3622
  timeout?: number | undefined;
758
3623
  aria?: {
759
3624
  ariaLabel?: string | undefined;
@@ -973,10 +3838,12 @@ declare const SysWebhookDelivery: Omit<{
973
3838
  readonly dependencies?: string[] | undefined;
974
3839
  readonly theme?: string | undefined;
975
3840
  readonly externalId?: boolean | undefined;
3841
+ readonly defaultValue?: unknown;
3842
+ readonly group?: string | undefined;
3843
+ readonly hidden?: boolean | undefined;
976
3844
  readonly system?: boolean | undefined;
977
3845
  readonly min?: number | undefined;
978
3846
  readonly max?: number | undefined;
979
- readonly group?: string | undefined;
980
3847
  readonly encryptionConfig?: {
981
3848
  enabled: boolean;
982
3849
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -997,7 +3864,6 @@ declare const SysWebhookDelivery: Omit<{
997
3864
  readonly columnName?: string | undefined;
998
3865
  readonly searchable?: boolean | undefined;
999
3866
  readonly unique?: boolean | undefined;
1000
- readonly defaultValue?: unknown;
1001
3867
  readonly maxLength?: number | undefined;
1002
3868
  readonly minLength?: number | undefined;
1003
3869
  readonly scale?: number | undefined;
@@ -1121,7 +3987,6 @@ declare const SysWebhookDelivery: Omit<{
1121
3987
  generatedBy?: string | undefined;
1122
3988
  } | undefined;
1123
3989
  } | undefined;
1124
- readonly hidden?: boolean | undefined;
1125
3990
  readonly sortable?: boolean | undefined;
1126
3991
  readonly inlineHelpText?: string | undefined;
1127
3992
  readonly trackFeedHistory?: boolean | undefined;
@@ -1148,10 +4013,12 @@ declare const SysWebhookDelivery: Omit<{
1148
4013
  readonly dependencies?: string[] | undefined;
1149
4014
  readonly theme?: string | undefined;
1150
4015
  readonly externalId?: boolean | undefined;
4016
+ readonly defaultValue?: unknown;
4017
+ readonly group?: string | undefined;
4018
+ readonly hidden?: boolean | undefined;
1151
4019
  readonly system?: boolean | undefined;
1152
4020
  readonly min?: number | undefined;
1153
4021
  readonly max?: number | undefined;
1154
- readonly group?: string | undefined;
1155
4022
  readonly encryptionConfig?: {
1156
4023
  enabled: boolean;
1157
4024
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -1172,7 +4039,6 @@ declare const SysWebhookDelivery: Omit<{
1172
4039
  readonly columnName?: string | undefined;
1173
4040
  readonly searchable?: boolean | undefined;
1174
4041
  readonly unique?: boolean | undefined;
1175
- readonly defaultValue?: unknown;
1176
4042
  readonly maxLength?: number | undefined;
1177
4043
  readonly minLength?: number | undefined;
1178
4044
  readonly scale?: number | undefined;
@@ -1296,7 +4162,6 @@ declare const SysWebhookDelivery: Omit<{
1296
4162
  generatedBy?: string | undefined;
1297
4163
  } | undefined;
1298
4164
  } | undefined;
1299
- readonly hidden?: boolean | undefined;
1300
4165
  readonly sortable?: boolean | undefined;
1301
4166
  readonly inlineHelpText?: string | undefined;
1302
4167
  readonly trackFeedHistory?: boolean | undefined;
@@ -1323,10 +4188,12 @@ declare const SysWebhookDelivery: Omit<{
1323
4188
  readonly dependencies?: string[] | undefined;
1324
4189
  readonly theme?: string | undefined;
1325
4190
  readonly externalId?: boolean | undefined;
4191
+ readonly defaultValue?: unknown;
4192
+ readonly group?: string | undefined;
4193
+ readonly hidden?: boolean | undefined;
1326
4194
  readonly system?: boolean | undefined;
1327
4195
  readonly min?: number | undefined;
1328
4196
  readonly max?: number | undefined;
1329
- readonly group?: string | undefined;
1330
4197
  readonly encryptionConfig?: {
1331
4198
  enabled: boolean;
1332
4199
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -1347,7 +4214,6 @@ declare const SysWebhookDelivery: Omit<{
1347
4214
  readonly columnName?: string | undefined;
1348
4215
  readonly searchable?: boolean | undefined;
1349
4216
  readonly unique?: boolean | undefined;
1350
- readonly defaultValue?: unknown;
1351
4217
  readonly maxLength?: number | undefined;
1352
4218
  readonly minLength?: number | undefined;
1353
4219
  readonly scale?: number | undefined;
@@ -1471,7 +4337,6 @@ declare const SysWebhookDelivery: Omit<{
1471
4337
  generatedBy?: string | undefined;
1472
4338
  } | undefined;
1473
4339
  } | undefined;
1474
- readonly hidden?: boolean | undefined;
1475
4340
  readonly sortable?: boolean | undefined;
1476
4341
  readonly inlineHelpText?: string | undefined;
1477
4342
  readonly trackFeedHistory?: boolean | undefined;
@@ -1498,10 +4363,12 @@ declare const SysWebhookDelivery: Omit<{
1498
4363
  readonly dependencies?: string[] | undefined;
1499
4364
  readonly theme?: string | undefined;
1500
4365
  readonly externalId?: boolean | undefined;
4366
+ readonly defaultValue?: unknown;
4367
+ readonly group?: string | undefined;
4368
+ readonly hidden?: boolean | undefined;
1501
4369
  readonly system?: boolean | undefined;
1502
4370
  readonly min?: number | undefined;
1503
4371
  readonly max?: number | undefined;
1504
- readonly group?: string | undefined;
1505
4372
  readonly encryptionConfig?: {
1506
4373
  enabled: boolean;
1507
4374
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -1522,7 +4389,6 @@ declare const SysWebhookDelivery: Omit<{
1522
4389
  readonly columnName?: string | undefined;
1523
4390
  readonly searchable?: boolean | undefined;
1524
4391
  readonly unique?: boolean | undefined;
1525
- readonly defaultValue?: unknown;
1526
4392
  readonly maxLength?: number | undefined;
1527
4393
  readonly minLength?: number | undefined;
1528
4394
  readonly scale?: number | undefined;
@@ -1646,7 +4512,6 @@ declare const SysWebhookDelivery: Omit<{
1646
4512
  generatedBy?: string | undefined;
1647
4513
  } | undefined;
1648
4514
  } | undefined;
1649
- readonly hidden?: boolean | undefined;
1650
4515
  readonly sortable?: boolean | undefined;
1651
4516
  readonly inlineHelpText?: string | undefined;
1652
4517
  readonly trackFeedHistory?: boolean | undefined;
@@ -1673,10 +4538,12 @@ declare const SysWebhookDelivery: Omit<{
1673
4538
  readonly dependencies?: string[] | undefined;
1674
4539
  readonly theme?: string | undefined;
1675
4540
  readonly externalId?: boolean | undefined;
4541
+ readonly defaultValue?: unknown;
4542
+ readonly group?: string | undefined;
4543
+ readonly hidden?: boolean | undefined;
1676
4544
  readonly system?: boolean | undefined;
1677
4545
  readonly min?: number | undefined;
1678
4546
  readonly max?: number | undefined;
1679
- readonly group?: string | undefined;
1680
4547
  readonly encryptionConfig?: {
1681
4548
  enabled: boolean;
1682
4549
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -1697,7 +4564,6 @@ declare const SysWebhookDelivery: Omit<{
1697
4564
  readonly columnName?: string | undefined;
1698
4565
  readonly searchable?: boolean | undefined;
1699
4566
  readonly unique?: boolean | undefined;
1700
- readonly defaultValue?: unknown;
1701
4567
  readonly maxLength?: number | undefined;
1702
4568
  readonly minLength?: number | undefined;
1703
4569
  readonly scale?: number | undefined;
@@ -1821,7 +4687,6 @@ declare const SysWebhookDelivery: Omit<{
1821
4687
  generatedBy?: string | undefined;
1822
4688
  } | undefined;
1823
4689
  } | undefined;
1824
- readonly hidden?: boolean | undefined;
1825
4690
  readonly sortable?: boolean | undefined;
1826
4691
  readonly inlineHelpText?: string | undefined;
1827
4692
  readonly trackFeedHistory?: boolean | undefined;
@@ -1848,10 +4713,12 @@ declare const SysWebhookDelivery: Omit<{
1848
4713
  readonly dependencies?: string[] | undefined;
1849
4714
  readonly theme?: string | undefined;
1850
4715
  readonly externalId?: boolean | undefined;
4716
+ readonly defaultValue?: unknown;
4717
+ readonly group?: string | undefined;
4718
+ readonly hidden?: boolean | undefined;
1851
4719
  readonly system?: boolean | undefined;
1852
4720
  readonly min?: number | undefined;
1853
4721
  readonly max?: number | undefined;
1854
- readonly group?: string | undefined;
1855
4722
  readonly encryptionConfig?: {
1856
4723
  enabled: boolean;
1857
4724
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -1872,7 +4739,6 @@ declare const SysWebhookDelivery: Omit<{
1872
4739
  readonly columnName?: string | undefined;
1873
4740
  readonly searchable?: boolean | undefined;
1874
4741
  readonly unique?: boolean | undefined;
1875
- readonly defaultValue?: unknown;
1876
4742
  readonly maxLength?: number | undefined;
1877
4743
  readonly minLength?: number | undefined;
1878
4744
  readonly scale?: number | undefined;
@@ -1996,7 +4862,6 @@ declare const SysWebhookDelivery: Omit<{
1996
4862
  generatedBy?: string | undefined;
1997
4863
  } | undefined;
1998
4864
  } | undefined;
1999
- readonly hidden?: boolean | undefined;
2000
4865
  readonly sortable?: boolean | undefined;
2001
4866
  readonly inlineHelpText?: string | undefined;
2002
4867
  readonly trackFeedHistory?: boolean | undefined;
@@ -2023,10 +4888,12 @@ declare const SysWebhookDelivery: Omit<{
2023
4888
  readonly dependencies?: string[] | undefined;
2024
4889
  readonly theme?: string | undefined;
2025
4890
  readonly externalId?: boolean | undefined;
4891
+ readonly defaultValue?: unknown;
4892
+ readonly group?: string | undefined;
4893
+ readonly hidden?: boolean | undefined;
2026
4894
  readonly system?: boolean | undefined;
2027
4895
  readonly min?: number | undefined;
2028
4896
  readonly max?: number | undefined;
2029
- readonly group?: string | undefined;
2030
4897
  readonly encryptionConfig?: {
2031
4898
  enabled: boolean;
2032
4899
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2047,7 +4914,6 @@ declare const SysWebhookDelivery: Omit<{
2047
4914
  readonly columnName?: string | undefined;
2048
4915
  readonly searchable?: boolean | undefined;
2049
4916
  readonly unique?: boolean | undefined;
2050
- readonly defaultValue?: unknown;
2051
4917
  readonly maxLength?: number | undefined;
2052
4918
  readonly minLength?: number | undefined;
2053
4919
  readonly scale?: number | undefined;
@@ -2171,7 +5037,6 @@ declare const SysWebhookDelivery: Omit<{
2171
5037
  generatedBy?: string | undefined;
2172
5038
  } | undefined;
2173
5039
  } | undefined;
2174
- readonly hidden?: boolean | undefined;
2175
5040
  readonly sortable?: boolean | undefined;
2176
5041
  readonly inlineHelpText?: string | undefined;
2177
5042
  readonly trackFeedHistory?: boolean | undefined;
@@ -2198,10 +5063,12 @@ declare const SysWebhookDelivery: Omit<{
2198
5063
  readonly dependencies?: string[] | undefined;
2199
5064
  readonly theme?: string | undefined;
2200
5065
  readonly externalId?: boolean | undefined;
5066
+ readonly defaultValue?: unknown;
5067
+ readonly group?: string | undefined;
5068
+ readonly hidden?: boolean | undefined;
2201
5069
  readonly system?: boolean | undefined;
2202
5070
  readonly min?: number | undefined;
2203
5071
  readonly max?: number | undefined;
2204
- readonly group?: string | undefined;
2205
5072
  readonly encryptionConfig?: {
2206
5073
  enabled: boolean;
2207
5074
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2222,7 +5089,6 @@ declare const SysWebhookDelivery: Omit<{
2222
5089
  readonly columnName?: string | undefined;
2223
5090
  readonly searchable?: boolean | undefined;
2224
5091
  readonly unique?: boolean | undefined;
2225
- readonly defaultValue?: unknown;
2226
5092
  readonly maxLength?: number | undefined;
2227
5093
  readonly minLength?: number | undefined;
2228
5094
  readonly scale?: number | undefined;
@@ -2346,7 +5212,6 @@ declare const SysWebhookDelivery: Omit<{
2346
5212
  generatedBy?: string | undefined;
2347
5213
  } | undefined;
2348
5214
  } | undefined;
2349
- readonly hidden?: boolean | undefined;
2350
5215
  readonly sortable?: boolean | undefined;
2351
5216
  readonly inlineHelpText?: string | undefined;
2352
5217
  readonly trackFeedHistory?: boolean | undefined;
@@ -2373,10 +5238,12 @@ declare const SysWebhookDelivery: Omit<{
2373
5238
  readonly dependencies?: string[] | undefined;
2374
5239
  readonly theme?: string | undefined;
2375
5240
  readonly externalId?: boolean | undefined;
5241
+ readonly defaultValue?: unknown;
5242
+ readonly group?: string | undefined;
5243
+ readonly hidden?: boolean | undefined;
2376
5244
  readonly system?: boolean | undefined;
2377
5245
  readonly min?: number | undefined;
2378
5246
  readonly max?: number | undefined;
2379
- readonly group?: string | undefined;
2380
5247
  readonly encryptionConfig?: {
2381
5248
  enabled: boolean;
2382
5249
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2397,7 +5264,6 @@ declare const SysWebhookDelivery: Omit<{
2397
5264
  readonly columnName?: string | undefined;
2398
5265
  readonly searchable?: boolean | undefined;
2399
5266
  readonly unique?: boolean | undefined;
2400
- readonly defaultValue?: unknown;
2401
5267
  readonly maxLength?: number | undefined;
2402
5268
  readonly minLength?: number | undefined;
2403
5269
  readonly scale?: number | undefined;
@@ -2521,7 +5387,6 @@ declare const SysWebhookDelivery: Omit<{
2521
5387
  generatedBy?: string | undefined;
2522
5388
  } | undefined;
2523
5389
  } | undefined;
2524
- readonly hidden?: boolean | undefined;
2525
5390
  readonly sortable?: boolean | undefined;
2526
5391
  readonly inlineHelpText?: string | undefined;
2527
5392
  readonly trackFeedHistory?: boolean | undefined;
@@ -2548,10 +5413,12 @@ declare const SysWebhookDelivery: Omit<{
2548
5413
  readonly dependencies?: string[] | undefined;
2549
5414
  readonly theme?: string | undefined;
2550
5415
  readonly externalId?: boolean | undefined;
5416
+ readonly defaultValue?: unknown;
5417
+ readonly group?: string | undefined;
5418
+ readonly hidden?: boolean | undefined;
2551
5419
  readonly system?: boolean | undefined;
2552
5420
  readonly min?: number | undefined;
2553
5421
  readonly max?: number | undefined;
2554
- readonly group?: string | undefined;
2555
5422
  readonly encryptionConfig?: {
2556
5423
  enabled: boolean;
2557
5424
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2572,7 +5439,6 @@ declare const SysWebhookDelivery: Omit<{
2572
5439
  readonly columnName?: string | undefined;
2573
5440
  readonly searchable?: boolean | undefined;
2574
5441
  readonly unique?: boolean | undefined;
2575
- readonly defaultValue?: unknown;
2576
5442
  readonly maxLength?: number | undefined;
2577
5443
  readonly minLength?: number | undefined;
2578
5444
  readonly scale?: number | undefined;
@@ -2696,7 +5562,6 @@ declare const SysWebhookDelivery: Omit<{
2696
5562
  generatedBy?: string | undefined;
2697
5563
  } | undefined;
2698
5564
  } | undefined;
2699
- readonly hidden?: boolean | undefined;
2700
5565
  readonly sortable?: boolean | undefined;
2701
5566
  readonly inlineHelpText?: string | undefined;
2702
5567
  readonly trackFeedHistory?: boolean | undefined;
@@ -2723,10 +5588,12 @@ declare const SysWebhookDelivery: Omit<{
2723
5588
  readonly dependencies?: string[] | undefined;
2724
5589
  readonly theme?: string | undefined;
2725
5590
  readonly externalId?: boolean | undefined;
5591
+ readonly defaultValue?: unknown;
5592
+ readonly group?: string | undefined;
5593
+ readonly hidden?: boolean | undefined;
2726
5594
  readonly system?: boolean | undefined;
2727
5595
  readonly min?: number | undefined;
2728
5596
  readonly max?: number | undefined;
2729
- readonly group?: string | undefined;
2730
5597
  readonly encryptionConfig?: {
2731
5598
  enabled: boolean;
2732
5599
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2747,7 +5614,6 @@ declare const SysWebhookDelivery: Omit<{
2747
5614
  readonly columnName?: string | undefined;
2748
5615
  readonly searchable?: boolean | undefined;
2749
5616
  readonly unique?: boolean | undefined;
2750
- readonly defaultValue?: unknown;
2751
5617
  readonly maxLength?: number | undefined;
2752
5618
  readonly minLength?: number | undefined;
2753
5619
  readonly scale?: number | undefined;
@@ -2871,7 +5737,6 @@ declare const SysWebhookDelivery: Omit<{
2871
5737
  generatedBy?: string | undefined;
2872
5738
  } | undefined;
2873
5739
  } | undefined;
2874
- readonly hidden?: boolean | undefined;
2875
5740
  readonly sortable?: boolean | undefined;
2876
5741
  readonly inlineHelpText?: string | undefined;
2877
5742
  readonly trackFeedHistory?: boolean | undefined;
@@ -2898,10 +5763,12 @@ declare const SysWebhookDelivery: Omit<{
2898
5763
  readonly dependencies?: string[] | undefined;
2899
5764
  readonly theme?: string | undefined;
2900
5765
  readonly externalId?: boolean | undefined;
5766
+ readonly defaultValue?: unknown;
5767
+ readonly group?: string | undefined;
5768
+ readonly hidden?: boolean | undefined;
2901
5769
  readonly system?: boolean | undefined;
2902
5770
  readonly min?: number | undefined;
2903
5771
  readonly max?: number | undefined;
2904
- readonly group?: string | undefined;
2905
5772
  readonly encryptionConfig?: {
2906
5773
  enabled: boolean;
2907
5774
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -2922,7 +5789,6 @@ declare const SysWebhookDelivery: Omit<{
2922
5789
  readonly columnName?: string | undefined;
2923
5790
  readonly searchable?: boolean | undefined;
2924
5791
  readonly unique?: boolean | undefined;
2925
- readonly defaultValue?: unknown;
2926
5792
  readonly maxLength?: number | undefined;
2927
5793
  readonly minLength?: number | undefined;
2928
5794
  readonly scale?: number | undefined;
@@ -3046,7 +5912,6 @@ declare const SysWebhookDelivery: Omit<{
3046
5912
  generatedBy?: string | undefined;
3047
5913
  } | undefined;
3048
5914
  } | undefined;
3049
- readonly hidden?: boolean | undefined;
3050
5915
  readonly sortable?: boolean | undefined;
3051
5916
  readonly inlineHelpText?: string | undefined;
3052
5917
  readonly trackFeedHistory?: boolean | undefined;
@@ -3073,10 +5938,12 @@ declare const SysWebhookDelivery: Omit<{
3073
5938
  readonly dependencies?: string[] | undefined;
3074
5939
  readonly theme?: string | undefined;
3075
5940
  readonly externalId?: boolean | undefined;
5941
+ readonly defaultValue?: unknown;
5942
+ readonly group?: string | undefined;
5943
+ readonly hidden?: boolean | undefined;
3076
5944
  readonly system?: boolean | undefined;
3077
5945
  readonly min?: number | undefined;
3078
5946
  readonly max?: number | undefined;
3079
- readonly group?: string | undefined;
3080
5947
  readonly encryptionConfig?: {
3081
5948
  enabled: boolean;
3082
5949
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3097,7 +5964,6 @@ declare const SysWebhookDelivery: Omit<{
3097
5964
  readonly columnName?: string | undefined;
3098
5965
  readonly searchable?: boolean | undefined;
3099
5966
  readonly unique?: boolean | undefined;
3100
- readonly defaultValue?: unknown;
3101
5967
  readonly maxLength?: number | undefined;
3102
5968
  readonly minLength?: number | undefined;
3103
5969
  readonly scale?: number | undefined;
@@ -3221,7 +6087,6 @@ declare const SysWebhookDelivery: Omit<{
3221
6087
  generatedBy?: string | undefined;
3222
6088
  } | undefined;
3223
6089
  } | undefined;
3224
- readonly hidden?: boolean | undefined;
3225
6090
  readonly sortable?: boolean | undefined;
3226
6091
  readonly inlineHelpText?: string | undefined;
3227
6092
  readonly trackFeedHistory?: boolean | undefined;
@@ -3248,10 +6113,12 @@ declare const SysWebhookDelivery: Omit<{
3248
6113
  readonly dependencies?: string[] | undefined;
3249
6114
  readonly theme?: string | undefined;
3250
6115
  readonly externalId?: boolean | undefined;
6116
+ readonly defaultValue?: unknown;
6117
+ readonly group?: string | undefined;
6118
+ readonly hidden?: boolean | undefined;
3251
6119
  readonly system?: boolean | undefined;
3252
6120
  readonly min?: number | undefined;
3253
6121
  readonly max?: number | undefined;
3254
- readonly group?: string | undefined;
3255
6122
  readonly encryptionConfig?: {
3256
6123
  enabled: boolean;
3257
6124
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3272,7 +6139,6 @@ declare const SysWebhookDelivery: Omit<{
3272
6139
  readonly columnName?: string | undefined;
3273
6140
  readonly searchable?: boolean | undefined;
3274
6141
  readonly unique?: boolean | undefined;
3275
- readonly defaultValue?: unknown;
3276
6142
  readonly maxLength?: number | undefined;
3277
6143
  readonly minLength?: number | undefined;
3278
6144
  readonly scale?: number | undefined;
@@ -3396,7 +6262,6 @@ declare const SysWebhookDelivery: Omit<{
3396
6262
  generatedBy?: string | undefined;
3397
6263
  } | undefined;
3398
6264
  } | undefined;
3399
- readonly hidden?: boolean | undefined;
3400
6265
  readonly sortable?: boolean | undefined;
3401
6266
  readonly inlineHelpText?: string | undefined;
3402
6267
  readonly trackFeedHistory?: boolean | undefined;
@@ -3423,10 +6288,12 @@ declare const SysWebhookDelivery: Omit<{
3423
6288
  readonly dependencies?: string[] | undefined;
3424
6289
  readonly theme?: string | undefined;
3425
6290
  readonly externalId?: boolean | undefined;
6291
+ readonly defaultValue?: unknown;
6292
+ readonly group?: string | undefined;
6293
+ readonly hidden?: boolean | undefined;
3426
6294
  readonly system?: boolean | undefined;
3427
6295
  readonly min?: number | undefined;
3428
6296
  readonly max?: number | undefined;
3429
- readonly group?: string | undefined;
3430
6297
  readonly encryptionConfig?: {
3431
6298
  enabled: boolean;
3432
6299
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3447,7 +6314,6 @@ declare const SysWebhookDelivery: Omit<{
3447
6314
  readonly columnName?: string | undefined;
3448
6315
  readonly searchable?: boolean | undefined;
3449
6316
  readonly unique?: boolean | undefined;
3450
- readonly defaultValue?: unknown;
3451
6317
  readonly maxLength?: number | undefined;
3452
6318
  readonly minLength?: number | undefined;
3453
6319
  readonly scale?: number | undefined;
@@ -3571,7 +6437,6 @@ declare const SysWebhookDelivery: Omit<{
3571
6437
  generatedBy?: string | undefined;
3572
6438
  } | undefined;
3573
6439
  } | undefined;
3574
- readonly hidden?: boolean | undefined;
3575
6440
  readonly sortable?: boolean | undefined;
3576
6441
  readonly inlineHelpText?: string | undefined;
3577
6442
  readonly trackFeedHistory?: boolean | undefined;
@@ -3598,10 +6463,12 @@ declare const SysWebhookDelivery: Omit<{
3598
6463
  readonly dependencies?: string[] | undefined;
3599
6464
  readonly theme?: string | undefined;
3600
6465
  readonly externalId?: boolean | undefined;
6466
+ readonly defaultValue?: unknown;
6467
+ readonly group?: string | undefined;
6468
+ readonly hidden?: boolean | undefined;
3601
6469
  readonly system?: boolean | undefined;
3602
6470
  readonly min?: number | undefined;
3603
6471
  readonly max?: number | undefined;
3604
- readonly group?: string | undefined;
3605
6472
  readonly encryptionConfig?: {
3606
6473
  enabled: boolean;
3607
6474
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3622,7 +6489,6 @@ declare const SysWebhookDelivery: Omit<{
3622
6489
  readonly columnName?: string | undefined;
3623
6490
  readonly searchable?: boolean | undefined;
3624
6491
  readonly unique?: boolean | undefined;
3625
- readonly defaultValue?: unknown;
3626
6492
  readonly maxLength?: number | undefined;
3627
6493
  readonly minLength?: number | undefined;
3628
6494
  readonly scale?: number | undefined;
@@ -3746,7 +6612,6 @@ declare const SysWebhookDelivery: Omit<{
3746
6612
  generatedBy?: string | undefined;
3747
6613
  } | undefined;
3748
6614
  } | undefined;
3749
- readonly hidden?: boolean | undefined;
3750
6615
  readonly sortable?: boolean | undefined;
3751
6616
  readonly inlineHelpText?: string | undefined;
3752
6617
  readonly trackFeedHistory?: boolean | undefined;
@@ -3773,10 +6638,12 @@ declare const SysWebhookDelivery: Omit<{
3773
6638
  readonly dependencies?: string[] | undefined;
3774
6639
  readonly theme?: string | undefined;
3775
6640
  readonly externalId?: boolean | undefined;
6641
+ readonly defaultValue?: unknown;
6642
+ readonly group?: string | undefined;
6643
+ readonly hidden?: boolean | undefined;
3776
6644
  readonly system?: boolean | undefined;
3777
6645
  readonly min?: number | undefined;
3778
6646
  readonly max?: number | undefined;
3779
- readonly group?: string | undefined;
3780
6647
  readonly encryptionConfig?: {
3781
6648
  enabled: boolean;
3782
6649
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3797,7 +6664,6 @@ declare const SysWebhookDelivery: Omit<{
3797
6664
  readonly columnName?: string | undefined;
3798
6665
  readonly searchable?: boolean | undefined;
3799
6666
  readonly unique?: boolean | undefined;
3800
- readonly defaultValue?: unknown;
3801
6667
  readonly maxLength?: number | undefined;
3802
6668
  readonly minLength?: number | undefined;
3803
6669
  readonly scale?: number | undefined;
@@ -3921,7 +6787,6 @@ declare const SysWebhookDelivery: Omit<{
3921
6787
  generatedBy?: string | undefined;
3922
6788
  } | undefined;
3923
6789
  } | undefined;
3924
- readonly hidden?: boolean | undefined;
3925
6790
  readonly sortable?: boolean | undefined;
3926
6791
  readonly inlineHelpText?: string | undefined;
3927
6792
  readonly trackFeedHistory?: boolean | undefined;
@@ -3948,10 +6813,12 @@ declare const SysWebhookDelivery: Omit<{
3948
6813
  readonly dependencies?: string[] | undefined;
3949
6814
  readonly theme?: string | undefined;
3950
6815
  readonly externalId?: boolean | undefined;
6816
+ readonly defaultValue?: unknown;
6817
+ readonly group?: string | undefined;
6818
+ readonly hidden?: boolean | undefined;
3951
6819
  readonly system?: boolean | undefined;
3952
6820
  readonly min?: number | undefined;
3953
6821
  readonly max?: number | undefined;
3954
- readonly group?: string | undefined;
3955
6822
  readonly encryptionConfig?: {
3956
6823
  enabled: boolean;
3957
6824
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -3972,7 +6839,6 @@ declare const SysWebhookDelivery: Omit<{
3972
6839
  readonly columnName?: string | undefined;
3973
6840
  readonly searchable?: boolean | undefined;
3974
6841
  readonly unique?: boolean | undefined;
3975
- readonly defaultValue?: unknown;
3976
6842
  readonly maxLength?: number | undefined;
3977
6843
  readonly minLength?: number | undefined;
3978
6844
  readonly scale?: number | undefined;
@@ -4096,7 +6962,6 @@ declare const SysWebhookDelivery: Omit<{
4096
6962
  generatedBy?: string | undefined;
4097
6963
  } | undefined;
4098
6964
  } | undefined;
4099
- readonly hidden?: boolean | undefined;
4100
6965
  readonly sortable?: boolean | undefined;
4101
6966
  readonly inlineHelpText?: string | undefined;
4102
6967
  readonly trackFeedHistory?: boolean | undefined;
@@ -4123,10 +6988,12 @@ declare const SysWebhookDelivery: Omit<{
4123
6988
  readonly dependencies?: string[] | undefined;
4124
6989
  readonly theme?: string | undefined;
4125
6990
  readonly externalId?: boolean | undefined;
6991
+ readonly defaultValue?: unknown;
6992
+ readonly group?: string | undefined;
6993
+ readonly hidden?: boolean | undefined;
4126
6994
  readonly system?: boolean | undefined;
4127
6995
  readonly min?: number | undefined;
4128
6996
  readonly max?: number | undefined;
4129
- readonly group?: string | undefined;
4130
6997
  readonly encryptionConfig?: {
4131
6998
  enabled: boolean;
4132
6999
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -4147,7 +7014,6 @@ declare const SysWebhookDelivery: Omit<{
4147
7014
  readonly columnName?: string | undefined;
4148
7015
  readonly searchable?: boolean | undefined;
4149
7016
  readonly unique?: boolean | undefined;
4150
- readonly defaultValue?: unknown;
4151
7017
  readonly maxLength?: number | undefined;
4152
7018
  readonly minLength?: number | undefined;
4153
7019
  readonly scale?: number | undefined;
@@ -4271,7 +7137,6 @@ declare const SysWebhookDelivery: Omit<{
4271
7137
  generatedBy?: string | undefined;
4272
7138
  } | undefined;
4273
7139
  } | undefined;
4274
- readonly hidden?: boolean | undefined;
4275
7140
  readonly sortable?: boolean | undefined;
4276
7141
  readonly inlineHelpText?: string | undefined;
4277
7142
  readonly trackFeedHistory?: boolean | undefined;
@@ -4298,10 +7163,12 @@ declare const SysWebhookDelivery: Omit<{
4298
7163
  readonly dependencies?: string[] | undefined;
4299
7164
  readonly theme?: string | undefined;
4300
7165
  readonly externalId?: boolean | undefined;
7166
+ readonly defaultValue?: unknown;
7167
+ readonly group?: string | undefined;
7168
+ readonly hidden?: boolean | undefined;
4301
7169
  readonly system?: boolean | undefined;
4302
7170
  readonly min?: number | undefined;
4303
7171
  readonly max?: number | undefined;
4304
- readonly group?: string | undefined;
4305
7172
  readonly encryptionConfig?: {
4306
7173
  enabled: boolean;
4307
7174
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -4322,7 +7189,6 @@ declare const SysWebhookDelivery: Omit<{
4322
7189
  readonly columnName?: string | undefined;
4323
7190
  readonly searchable?: boolean | undefined;
4324
7191
  readonly unique?: boolean | undefined;
4325
- readonly defaultValue?: unknown;
4326
7192
  readonly maxLength?: number | undefined;
4327
7193
  readonly minLength?: number | undefined;
4328
7194
  readonly scale?: number | undefined;
@@ -4446,7 +7312,6 @@ declare const SysWebhookDelivery: Omit<{
4446
7312
  generatedBy?: string | undefined;
4447
7313
  } | undefined;
4448
7314
  } | undefined;
4449
- readonly hidden?: boolean | undefined;
4450
7315
  readonly sortable?: boolean | undefined;
4451
7316
  readonly inlineHelpText?: string | undefined;
4452
7317
  readonly trackFeedHistory?: boolean | undefined;
@@ -4473,10 +7338,12 @@ declare const SysWebhookDelivery: Omit<{
4473
7338
  readonly dependencies?: string[] | undefined;
4474
7339
  readonly theme?: string | undefined;
4475
7340
  readonly externalId?: boolean | undefined;
7341
+ readonly defaultValue?: unknown;
7342
+ readonly group?: string | undefined;
7343
+ readonly hidden?: boolean | undefined;
4476
7344
  readonly system?: boolean | undefined;
4477
7345
  readonly min?: number | undefined;
4478
7346
  readonly max?: number | undefined;
4479
- readonly group?: string | undefined;
4480
7347
  readonly encryptionConfig?: {
4481
7348
  enabled: boolean;
4482
7349
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -4497,7 +7364,6 @@ declare const SysWebhookDelivery: Omit<{
4497
7364
  readonly columnName?: string | undefined;
4498
7365
  readonly searchable?: boolean | undefined;
4499
7366
  readonly unique?: boolean | undefined;
4500
- readonly defaultValue?: unknown;
4501
7367
  readonly maxLength?: number | undefined;
4502
7368
  readonly minLength?: number | undefined;
4503
7369
  readonly scale?: number | undefined;
@@ -4621,7 +7487,6 @@ declare const SysWebhookDelivery: Omit<{
4621
7487
  generatedBy?: string | undefined;
4622
7488
  } | undefined;
4623
7489
  } | undefined;
4624
- readonly hidden?: boolean | undefined;
4625
7490
  readonly sortable?: boolean | undefined;
4626
7491
  readonly inlineHelpText?: string | undefined;
4627
7492
  readonly trackFeedHistory?: boolean | undefined;
@@ -4648,10 +7513,12 @@ declare const SysWebhookDelivery: Omit<{
4648
7513
  readonly dependencies?: string[] | undefined;
4649
7514
  readonly theme?: string | undefined;
4650
7515
  readonly externalId?: boolean | undefined;
7516
+ readonly defaultValue?: unknown;
7517
+ readonly group?: string | undefined;
7518
+ readonly hidden?: boolean | undefined;
4651
7519
  readonly system?: boolean | undefined;
4652
7520
  readonly min?: number | undefined;
4653
7521
  readonly max?: number | undefined;
4654
- readonly group?: string | undefined;
4655
7522
  readonly encryptionConfig?: {
4656
7523
  enabled: boolean;
4657
7524
  algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
@@ -4672,7 +7539,6 @@ declare const SysWebhookDelivery: Omit<{
4672
7539
  readonly columnName?: string | undefined;
4673
7540
  readonly searchable?: boolean | undefined;
4674
7541
  readonly unique?: boolean | undefined;
4675
- readonly defaultValue?: unknown;
4676
7542
  readonly maxLength?: number | undefined;
4677
7543
  readonly minLength?: number | undefined;
4678
7544
  readonly scale?: number | undefined;
@@ -4796,7 +7662,6 @@ declare const SysWebhookDelivery: Omit<{
4796
7662
  generatedBy?: string | undefined;
4797
7663
  } | undefined;
4798
7664
  } | undefined;
4799
- readonly hidden?: boolean | undefined;
4800
7665
  readonly sortable?: boolean | undefined;
4801
7666
  readonly inlineHelpText?: string | undefined;
4802
7667
  readonly trackFeedHistory?: boolean | undefined;
@@ -4820,4 +7685,4 @@ declare const SysWebhookDelivery: Omit<{
4820
7685
  /** Canonical object name — exported so SqlWebhookOutbox callers can override if needed. */
4821
7686
  declare const SYS_WEBHOOK_DELIVERY: "sys_webhook_delivery";
4822
7687
 
4823
- export { SYS_WEBHOOK_DELIVERY, SysWebhookDelivery };
7688
+ export { SYS_WEBHOOK_DELIVERY, SysWebhook, SysWebhookDelivery };