@objectstack/plugin-webhooks 7.4.1 → 7.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +20 -32
- package/CHANGELOG.md +59 -0
- package/dist/chunk-HWFTXTTI.js +138 -0
- package/dist/chunk-HWFTXTTI.js.map +1 -0
- package/dist/chunk-KPKLAXNA.cjs +138 -0
- package/dist/chunk-KPKLAXNA.cjs.map +1 -0
- package/dist/index.cjs +62 -616
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +41 -325
- package/dist/index.d.ts +41 -325
- package/dist/index.js +52 -606
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -6
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +5 -4764
- package/dist/schema.d.ts +5 -4764
- package/dist/schema.js +3 -7
- package/package.json +5 -12
- package/src/auto-enqueuer.test.ts +83 -116
- package/src/auto-enqueuer.ts +38 -27
- package/src/index.ts +13 -40
- package/src/schema.ts +11 -16
- package/src/webhook-outbox-plugin.ts +80 -296
- package/tsup.config.ts +1 -1
- package/dist/chunk-7HS5DLU2.js +0 -319
- package/dist/chunk-7HS5DLU2.js.map +0 -1
- package/dist/chunk-HF7CCDPB.cjs +0 -256
- package/dist/chunk-HF7CCDPB.cjs.map +0 -1
- package/dist/chunk-KNGLLSSP.js +0 -256
- package/dist/chunk-KNGLLSSP.js.map +0 -1
- package/dist/chunk-TDSI7UHY.cjs +0 -319
- package/dist/chunk-TDSI7UHY.cjs.map +0 -1
- package/dist/outbox-CIn7LSyB.d.cts +0 -155
- package/dist/outbox-CIn7LSyB.d.ts +0 -155
- package/dist/sql-outbox.cjs +0 -8
- package/dist/sql-outbox.cjs.map +0 -1
- package/dist/sql-outbox.d.cts +0 -55
- package/dist/sql-outbox.d.ts +0 -55
- package/dist/sql-outbox.js +0 -8
- package/dist/sql-outbox.js.map +0 -1
- package/src/dispatcher.test.ts +0 -324
- package/src/dispatcher.ts +0 -218
- package/src/http-sender.ts +0 -187
- package/src/memory-outbox.test.ts +0 -86
- package/src/memory-outbox.ts +0 -155
- package/src/outbox.ts +0 -175
- package/src/partition.ts +0 -19
- package/src/retention.test.ts +0 -116
- package/src/retention.ts +0 -144
- package/src/sql-outbox.test.ts +0 -490
- package/src/sql-outbox.ts +0 -343
- package/src/sys-webhook-delivery.object.ts +0 -224
package/dist/schema.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ declare const SysWebhook: Omit<{
|
|
|
35
35
|
abstract: boolean;
|
|
36
36
|
datasource: string;
|
|
37
37
|
fields: Record<string, {
|
|
38
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "secret" | "
|
|
38
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "secret" | "tags" | "code" | "datetime" | "signature" | "progress" | "url" | "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
39
|
required: boolean;
|
|
40
40
|
searchable: boolean;
|
|
41
41
|
multiple: boolean;
|
|
@@ -237,7 +237,7 @@ declare const SysWebhook: Omit<{
|
|
|
237
237
|
description?: string | undefined;
|
|
238
238
|
icon?: string | undefined;
|
|
239
239
|
tags?: string[] | undefined;
|
|
240
|
-
managedBy?: "
|
|
240
|
+
managedBy?: "platform" | "system" | "config" | "append-only" | "better-auth" | undefined;
|
|
241
241
|
userActions?: {
|
|
242
242
|
create?: boolean | undefined;
|
|
243
243
|
import?: boolean | undefined;
|
|
@@ -368,14 +368,14 @@ declare const SysWebhook: Omit<{
|
|
|
368
368
|
provider: "api";
|
|
369
369
|
read?: {
|
|
370
370
|
url: string;
|
|
371
|
-
method: "POST" | "
|
|
371
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
372
372
|
headers?: Record<string, string> | undefined;
|
|
373
373
|
params?: Record<string, unknown> | undefined;
|
|
374
374
|
body?: unknown;
|
|
375
375
|
} | undefined;
|
|
376
376
|
write?: {
|
|
377
377
|
url: string;
|
|
378
|
-
method: "POST" | "
|
|
378
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
379
379
|
headers?: Record<string, string> | undefined;
|
|
380
380
|
params?: Record<string, unknown> | undefined;
|
|
381
381
|
body?: unknown;
|
|
@@ -2926,4763 +2926,4 @@ declare const SysWebhook: Omit<{
|
|
|
2926
2926
|
}];
|
|
2927
2927
|
}, "fields">;
|
|
2928
2928
|
|
|
2929
|
-
|
|
2930
|
-
* sys_webhook_delivery — Durable outbox row for one HTTP attempt.
|
|
2931
|
-
*
|
|
2932
|
-
* Schema is owned by `@objectstack/plugin-webhooks`. Add it to your stack
|
|
2933
|
-
* via:
|
|
2934
|
-
*
|
|
2935
|
-
* import { SysWebhookDelivery } from '@objectstack/plugin-webhooks/schema';
|
|
2936
|
-
* defineStack({ objects: [SysWebhookDelivery, ...], plugins: [...] });
|
|
2937
|
-
*
|
|
2938
|
-
* Designed for the SqlWebhookOutbox claim algorithm:
|
|
2939
|
-
*
|
|
2940
|
-
* 1. Producers INSERT pending rows (dedup'd by (event_id, webhook_id)).
|
|
2941
|
-
* 2. The dispatcher's per-partition lock-holder runs:
|
|
2942
|
-
* SELECT id WHERE status='pending' AND partition_key=? AND (next_retry_at <= now OR null)
|
|
2943
|
-
* UPDATE SET status='in_flight' WHERE id IN (...) AND status='pending' ← atomic claim
|
|
2944
|
-
* POST to target URL
|
|
2945
|
-
* UPDATE SET status=success/pending/dead, attempts=attempts+1, ...
|
|
2946
|
-
*
|
|
2947
|
-
* `partition_key` is precomputed on enqueue (hash(webhook_id) mod N) so the
|
|
2948
|
-
* dispatcher can filter cheaply without DB-side hash functions.
|
|
2949
|
-
*
|
|
2950
|
-
* Indexes are tuned for the hot path: `(status, partition_key, next_retry_at)`
|
|
2951
|
-
* is the claim query; `(event_id, webhook_id)` is the dedup uniqueness.
|
|
2952
|
-
*
|
|
2953
|
-
* @namespace sys
|
|
2954
|
-
*/
|
|
2955
|
-
declare const SysWebhookDelivery: Omit<{
|
|
2956
|
-
name: string;
|
|
2957
|
-
active: boolean;
|
|
2958
|
-
isSystem: boolean;
|
|
2959
|
-
abstract: boolean;
|
|
2960
|
-
datasource: string;
|
|
2961
|
-
fields: Record<string, {
|
|
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";
|
|
2963
|
-
required: boolean;
|
|
2964
|
-
searchable: boolean;
|
|
2965
|
-
multiple: boolean;
|
|
2966
|
-
unique: boolean;
|
|
2967
|
-
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
2968
|
-
auditTrail: boolean;
|
|
2969
|
-
hidden: boolean;
|
|
2970
|
-
readonly: boolean;
|
|
2971
|
-
sortable: boolean;
|
|
2972
|
-
index: boolean;
|
|
2973
|
-
externalId: boolean;
|
|
2974
|
-
name?: string | undefined;
|
|
2975
|
-
label?: string | undefined;
|
|
2976
|
-
description?: string | undefined;
|
|
2977
|
-
format?: string | undefined;
|
|
2978
|
-
columnName?: string | undefined;
|
|
2979
|
-
defaultValue?: unknown;
|
|
2980
|
-
maxLength?: number | undefined;
|
|
2981
|
-
minLength?: number | undefined;
|
|
2982
|
-
precision?: number | undefined;
|
|
2983
|
-
scale?: number | undefined;
|
|
2984
|
-
min?: number | undefined;
|
|
2985
|
-
max?: number | undefined;
|
|
2986
|
-
options?: {
|
|
2987
|
-
label: string;
|
|
2988
|
-
value: string;
|
|
2989
|
-
color?: string | undefined;
|
|
2990
|
-
default?: boolean | undefined;
|
|
2991
|
-
}[] | undefined;
|
|
2992
|
-
reference?: string | undefined;
|
|
2993
|
-
referenceFilters?: string[] | undefined;
|
|
2994
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
2995
|
-
expression?: {
|
|
2996
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2997
|
-
source?: string | undefined;
|
|
2998
|
-
ast?: unknown;
|
|
2999
|
-
meta?: {
|
|
3000
|
-
rationale?: string | undefined;
|
|
3001
|
-
generatedBy?: string | undefined;
|
|
3002
|
-
} | undefined;
|
|
3003
|
-
} | {
|
|
3004
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3005
|
-
source?: string | undefined;
|
|
3006
|
-
ast?: unknown;
|
|
3007
|
-
meta?: {
|
|
3008
|
-
rationale?: string | undefined;
|
|
3009
|
-
generatedBy?: string | undefined;
|
|
3010
|
-
} | undefined;
|
|
3011
|
-
} | undefined;
|
|
3012
|
-
summaryOperations?: {
|
|
3013
|
-
object: string;
|
|
3014
|
-
field: string;
|
|
3015
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3016
|
-
} | undefined;
|
|
3017
|
-
language?: string | undefined;
|
|
3018
|
-
theme?: string | undefined;
|
|
3019
|
-
lineNumbers?: boolean | undefined;
|
|
3020
|
-
maxRating?: number | undefined;
|
|
3021
|
-
allowHalf?: boolean | undefined;
|
|
3022
|
-
displayMap?: boolean | undefined;
|
|
3023
|
-
allowGeocoding?: boolean | undefined;
|
|
3024
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3025
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3026
|
-
allowAlpha?: boolean | undefined;
|
|
3027
|
-
presetColors?: string[] | undefined;
|
|
3028
|
-
step?: number | undefined;
|
|
3029
|
-
showValue?: boolean | undefined;
|
|
3030
|
-
marks?: Record<string, string> | undefined;
|
|
3031
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3032
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3033
|
-
displayValue?: boolean | undefined;
|
|
3034
|
-
allowScanning?: boolean | undefined;
|
|
3035
|
-
currencyConfig?: {
|
|
3036
|
-
precision: number;
|
|
3037
|
-
currencyMode: "fixed" | "dynamic";
|
|
3038
|
-
defaultCurrency: string;
|
|
3039
|
-
} | undefined;
|
|
3040
|
-
vectorConfig?: {
|
|
3041
|
-
dimensions: number;
|
|
3042
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3043
|
-
normalized: boolean;
|
|
3044
|
-
indexed: boolean;
|
|
3045
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3046
|
-
} | undefined;
|
|
3047
|
-
fileAttachmentConfig?: {
|
|
3048
|
-
virusScan: boolean;
|
|
3049
|
-
virusScanOnUpload: boolean;
|
|
3050
|
-
quarantineOnThreat: boolean;
|
|
3051
|
-
allowMultiple: boolean;
|
|
3052
|
-
allowReplace: boolean;
|
|
3053
|
-
allowDelete: boolean;
|
|
3054
|
-
requireUpload: boolean;
|
|
3055
|
-
extractMetadata: boolean;
|
|
3056
|
-
extractText: boolean;
|
|
3057
|
-
versioningEnabled: boolean;
|
|
3058
|
-
publicRead: boolean;
|
|
3059
|
-
presignedUrlExpiry: number;
|
|
3060
|
-
minSize?: number | undefined;
|
|
3061
|
-
maxSize?: number | undefined;
|
|
3062
|
-
allowedTypes?: string[] | undefined;
|
|
3063
|
-
blockedTypes?: string[] | undefined;
|
|
3064
|
-
allowedMimeTypes?: string[] | undefined;
|
|
3065
|
-
blockedMimeTypes?: string[] | undefined;
|
|
3066
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3067
|
-
storageProvider?: string | undefined;
|
|
3068
|
-
storageBucket?: string | undefined;
|
|
3069
|
-
storagePrefix?: string | undefined;
|
|
3070
|
-
imageValidation?: {
|
|
3071
|
-
generateThumbnails: boolean;
|
|
3072
|
-
preserveMetadata: boolean;
|
|
3073
|
-
autoRotate: boolean;
|
|
3074
|
-
minWidth?: number | undefined;
|
|
3075
|
-
maxWidth?: number | undefined;
|
|
3076
|
-
minHeight?: number | undefined;
|
|
3077
|
-
maxHeight?: number | undefined;
|
|
3078
|
-
aspectRatio?: string | undefined;
|
|
3079
|
-
thumbnailSizes?: {
|
|
3080
|
-
name: string;
|
|
3081
|
-
width: number;
|
|
3082
|
-
height: number;
|
|
3083
|
-
crop: boolean;
|
|
3084
|
-
}[] | undefined;
|
|
3085
|
-
} | undefined;
|
|
3086
|
-
maxVersions?: number | undefined;
|
|
3087
|
-
} | undefined;
|
|
3088
|
-
encryptionConfig?: {
|
|
3089
|
-
enabled: boolean;
|
|
3090
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3091
|
-
keyManagement: {
|
|
3092
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3093
|
-
keyId?: string | undefined;
|
|
3094
|
-
rotationPolicy?: {
|
|
3095
|
-
enabled: boolean;
|
|
3096
|
-
frequencyDays: number;
|
|
3097
|
-
retainOldVersions: number;
|
|
3098
|
-
autoRotate: boolean;
|
|
3099
|
-
} | undefined;
|
|
3100
|
-
};
|
|
3101
|
-
scope: "field" | "record" | "table" | "database";
|
|
3102
|
-
deterministicEncryption: boolean;
|
|
3103
|
-
searchableEncryption: boolean;
|
|
3104
|
-
} | undefined;
|
|
3105
|
-
maskingRule?: {
|
|
3106
|
-
field: string;
|
|
3107
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3108
|
-
preserveFormat: boolean;
|
|
3109
|
-
preserveLength: boolean;
|
|
3110
|
-
pattern?: string | undefined;
|
|
3111
|
-
roles?: string[] | undefined;
|
|
3112
|
-
exemptRoles?: string[] | undefined;
|
|
3113
|
-
} | undefined;
|
|
3114
|
-
dependencies?: string[] | undefined;
|
|
3115
|
-
cached?: {
|
|
3116
|
-
enabled: boolean;
|
|
3117
|
-
ttl: number;
|
|
3118
|
-
invalidateOn: string[];
|
|
3119
|
-
} | undefined;
|
|
3120
|
-
dataQuality?: {
|
|
3121
|
-
uniqueness: boolean;
|
|
3122
|
-
completeness: number;
|
|
3123
|
-
accuracy?: {
|
|
3124
|
-
source: string;
|
|
3125
|
-
threshold: number;
|
|
3126
|
-
} | undefined;
|
|
3127
|
-
} | undefined;
|
|
3128
|
-
group?: string | undefined;
|
|
3129
|
-
conditionalRequired?: {
|
|
3130
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3131
|
-
source?: string | undefined;
|
|
3132
|
-
ast?: unknown;
|
|
3133
|
-
meta?: {
|
|
3134
|
-
rationale?: string | undefined;
|
|
3135
|
-
generatedBy?: string | undefined;
|
|
3136
|
-
} | undefined;
|
|
3137
|
-
} | {
|
|
3138
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3139
|
-
source?: string | undefined;
|
|
3140
|
-
ast?: unknown;
|
|
3141
|
-
meta?: {
|
|
3142
|
-
rationale?: string | undefined;
|
|
3143
|
-
generatedBy?: string | undefined;
|
|
3144
|
-
} | undefined;
|
|
3145
|
-
} | undefined;
|
|
3146
|
-
system?: boolean | undefined;
|
|
3147
|
-
inlineHelpText?: string | undefined;
|
|
3148
|
-
trackFeedHistory?: boolean | undefined;
|
|
3149
|
-
caseSensitive?: boolean | undefined;
|
|
3150
|
-
autonumberFormat?: string | undefined;
|
|
3151
|
-
}>;
|
|
3152
|
-
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3153
|
-
_lockReason?: string | undefined;
|
|
3154
|
-
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3155
|
-
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3156
|
-
_packageId?: string | undefined;
|
|
3157
|
-
_packageVersion?: string | undefined;
|
|
3158
|
-
_lockDocsUrl?: string | undefined;
|
|
3159
|
-
label?: string | undefined;
|
|
3160
|
-
pluralLabel?: string | undefined;
|
|
3161
|
-
description?: string | undefined;
|
|
3162
|
-
icon?: string | undefined;
|
|
3163
|
-
tags?: string[] | undefined;
|
|
3164
|
-
managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
|
|
3165
|
-
userActions?: {
|
|
3166
|
-
create?: boolean | undefined;
|
|
3167
|
-
import?: boolean | undefined;
|
|
3168
|
-
edit?: boolean | undefined;
|
|
3169
|
-
delete?: boolean | undefined;
|
|
3170
|
-
exportCsv?: boolean | undefined;
|
|
3171
|
-
} | undefined;
|
|
3172
|
-
systemFields?: false | {
|
|
3173
|
-
tenant?: boolean | undefined;
|
|
3174
|
-
owner?: boolean | undefined;
|
|
3175
|
-
audit?: boolean | undefined;
|
|
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;
|
|
3185
|
-
indexes?: {
|
|
3186
|
-
fields: string[];
|
|
3187
|
-
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
3188
|
-
unique: boolean;
|
|
3189
|
-
name?: string | undefined;
|
|
3190
|
-
partial?: string | undefined;
|
|
3191
|
-
}[] | undefined;
|
|
3192
|
-
fieldGroups?: {
|
|
3193
|
-
key: string;
|
|
3194
|
-
label: string;
|
|
3195
|
-
defaultExpanded: boolean;
|
|
3196
|
-
icon?: string | undefined;
|
|
3197
|
-
description?: string | undefined;
|
|
3198
|
-
visibleOn?: {
|
|
3199
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3200
|
-
source?: string | undefined;
|
|
3201
|
-
ast?: unknown;
|
|
3202
|
-
meta?: {
|
|
3203
|
-
rationale?: string | undefined;
|
|
3204
|
-
generatedBy?: string | undefined;
|
|
3205
|
-
} | undefined;
|
|
3206
|
-
} | {
|
|
3207
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3208
|
-
source?: string | undefined;
|
|
3209
|
-
ast?: unknown;
|
|
3210
|
-
meta?: {
|
|
3211
|
-
rationale?: string | undefined;
|
|
3212
|
-
generatedBy?: string | undefined;
|
|
3213
|
-
} | undefined;
|
|
3214
|
-
} | undefined;
|
|
3215
|
-
}[] | undefined;
|
|
3216
|
-
tenancy?: {
|
|
3217
|
-
enabled: boolean;
|
|
3218
|
-
strategy: "hybrid" | "shared" | "isolated";
|
|
3219
|
-
tenantField: string;
|
|
3220
|
-
crossTenantAccess: boolean;
|
|
3221
|
-
} | undefined;
|
|
3222
|
-
softDelete?: {
|
|
3223
|
-
enabled: boolean;
|
|
3224
|
-
field: string;
|
|
3225
|
-
cascadeDelete: boolean;
|
|
3226
|
-
} | undefined;
|
|
3227
|
-
versioning?: {
|
|
3228
|
-
enabled: boolean;
|
|
3229
|
-
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
3230
|
-
versionField: string;
|
|
3231
|
-
retentionDays?: number | undefined;
|
|
3232
|
-
} | undefined;
|
|
3233
|
-
partitioning?: {
|
|
3234
|
-
enabled: boolean;
|
|
3235
|
-
strategy: "hash" | "list" | "range";
|
|
3236
|
-
key: string;
|
|
3237
|
-
interval?: string | undefined;
|
|
3238
|
-
} | undefined;
|
|
3239
|
-
cdc?: {
|
|
3240
|
-
enabled: boolean;
|
|
3241
|
-
events: ("update" | "delete" | "insert")[];
|
|
3242
|
-
destination: string;
|
|
3243
|
-
} | undefined;
|
|
3244
|
-
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3245
|
-
displayNameField?: string | undefined;
|
|
3246
|
-
recordName?: {
|
|
3247
|
-
type: "text" | "autonumber";
|
|
3248
|
-
displayFormat?: string | undefined;
|
|
3249
|
-
startNumber?: number | undefined;
|
|
3250
|
-
} | undefined;
|
|
3251
|
-
titleFormat?: {
|
|
3252
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3253
|
-
source?: string | undefined;
|
|
3254
|
-
ast?: unknown;
|
|
3255
|
-
meta?: {
|
|
3256
|
-
rationale?: string | undefined;
|
|
3257
|
-
generatedBy?: string | undefined;
|
|
3258
|
-
} | undefined;
|
|
3259
|
-
} | {
|
|
3260
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3261
|
-
source?: string | undefined;
|
|
3262
|
-
ast?: unknown;
|
|
3263
|
-
meta?: {
|
|
3264
|
-
rationale?: string | undefined;
|
|
3265
|
-
generatedBy?: string | undefined;
|
|
3266
|
-
} | undefined;
|
|
3267
|
-
} | undefined;
|
|
3268
|
-
compactLayout?: string[] | undefined;
|
|
3269
|
-
listViews?: Record<string, {
|
|
3270
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
3271
|
-
columns: string[] | {
|
|
3272
|
-
field: string;
|
|
3273
|
-
label?: string | undefined;
|
|
3274
|
-
width?: number | undefined;
|
|
3275
|
-
align?: "left" | "center" | "right" | undefined;
|
|
3276
|
-
hidden?: boolean | undefined;
|
|
3277
|
-
sortable?: boolean | undefined;
|
|
3278
|
-
resizable?: boolean | undefined;
|
|
3279
|
-
wrap?: boolean | undefined;
|
|
3280
|
-
type?: string | undefined;
|
|
3281
|
-
pinned?: "left" | "right" | undefined;
|
|
3282
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3283
|
-
link?: boolean | undefined;
|
|
3284
|
-
action?: string | undefined;
|
|
3285
|
-
}[];
|
|
3286
|
-
name?: string | undefined;
|
|
3287
|
-
label?: string | undefined;
|
|
3288
|
-
data?: {
|
|
3289
|
-
provider: "object";
|
|
3290
|
-
object: string;
|
|
3291
|
-
} | {
|
|
3292
|
-
provider: "api";
|
|
3293
|
-
read?: {
|
|
3294
|
-
url: string;
|
|
3295
|
-
method: "POST" | "GET" | "PATCH" | "PUT" | "DELETE";
|
|
3296
|
-
headers?: Record<string, string> | undefined;
|
|
3297
|
-
params?: Record<string, unknown> | undefined;
|
|
3298
|
-
body?: unknown;
|
|
3299
|
-
} | undefined;
|
|
3300
|
-
write?: {
|
|
3301
|
-
url: string;
|
|
3302
|
-
method: "POST" | "GET" | "PATCH" | "PUT" | "DELETE";
|
|
3303
|
-
headers?: Record<string, string> | undefined;
|
|
3304
|
-
params?: Record<string, unknown> | undefined;
|
|
3305
|
-
body?: unknown;
|
|
3306
|
-
} | undefined;
|
|
3307
|
-
} | {
|
|
3308
|
-
provider: "value";
|
|
3309
|
-
items: unknown[];
|
|
3310
|
-
} | {
|
|
3311
|
-
provider: "schema";
|
|
3312
|
-
schemaId: string;
|
|
3313
|
-
schema?: Record<string, unknown> | undefined;
|
|
3314
|
-
} | undefined;
|
|
3315
|
-
filter?: {
|
|
3316
|
-
field: string;
|
|
3317
|
-
operator: string;
|
|
3318
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3319
|
-
}[] | undefined;
|
|
3320
|
-
sort?: string | {
|
|
3321
|
-
field: string;
|
|
3322
|
-
order: "asc" | "desc";
|
|
3323
|
-
}[] | undefined;
|
|
3324
|
-
searchableFields?: string[] | undefined;
|
|
3325
|
-
filterableFields?: string[] | undefined;
|
|
3326
|
-
resizable?: boolean | undefined;
|
|
3327
|
-
striped?: boolean | undefined;
|
|
3328
|
-
bordered?: boolean | undefined;
|
|
3329
|
-
compactToolbar?: boolean | undefined;
|
|
3330
|
-
selection?: {
|
|
3331
|
-
type: "none" | "multiple" | "single";
|
|
3332
|
-
} | undefined;
|
|
3333
|
-
navigation?: {
|
|
3334
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3335
|
-
preventNavigation: boolean;
|
|
3336
|
-
openNewTab: boolean;
|
|
3337
|
-
view?: string | undefined;
|
|
3338
|
-
width?: string | number | undefined;
|
|
3339
|
-
} | undefined;
|
|
3340
|
-
pagination?: {
|
|
3341
|
-
pageSize: number;
|
|
3342
|
-
pageSizeOptions?: number[] | undefined;
|
|
3343
|
-
} | undefined;
|
|
3344
|
-
kanban?: {
|
|
3345
|
-
groupByField: string;
|
|
3346
|
-
columns: string[];
|
|
3347
|
-
summarizeField?: string | undefined;
|
|
3348
|
-
} | undefined;
|
|
3349
|
-
calendar?: {
|
|
3350
|
-
startDateField: string;
|
|
3351
|
-
titleField: string;
|
|
3352
|
-
endDateField?: string | undefined;
|
|
3353
|
-
colorField?: string | undefined;
|
|
3354
|
-
} | undefined;
|
|
3355
|
-
gantt?: {
|
|
3356
|
-
startDateField: string;
|
|
3357
|
-
endDateField: string;
|
|
3358
|
-
titleField: string;
|
|
3359
|
-
progressField?: string | undefined;
|
|
3360
|
-
dependenciesField?: string | undefined;
|
|
3361
|
-
} | undefined;
|
|
3362
|
-
gallery?: {
|
|
3363
|
-
coverFit: "cover" | "contain";
|
|
3364
|
-
cardSize: "small" | "medium" | "large";
|
|
3365
|
-
coverField?: string | undefined;
|
|
3366
|
-
titleField?: string | undefined;
|
|
3367
|
-
visibleFields?: string[] | undefined;
|
|
3368
|
-
} | undefined;
|
|
3369
|
-
timeline?: {
|
|
3370
|
-
startDateField: string;
|
|
3371
|
-
titleField: string;
|
|
3372
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
3373
|
-
endDateField?: string | undefined;
|
|
3374
|
-
groupByField?: string | undefined;
|
|
3375
|
-
colorField?: string | undefined;
|
|
3376
|
-
} | undefined;
|
|
3377
|
-
chart?: {
|
|
3378
|
-
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
3379
|
-
xAxisField: string;
|
|
3380
|
-
yAxisFields: string[];
|
|
3381
|
-
aggregation?: "min" | "max" | "count" | "sum" | "avg" | undefined;
|
|
3382
|
-
groupByField?: string | undefined;
|
|
3383
|
-
} | undefined;
|
|
3384
|
-
description?: string | undefined;
|
|
3385
|
-
sharing?: {
|
|
3386
|
-
type: "personal" | "collaborative";
|
|
3387
|
-
lockedBy?: string | undefined;
|
|
3388
|
-
} | undefined;
|
|
3389
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
3390
|
-
grouping?: {
|
|
3391
|
-
fields: {
|
|
3392
|
-
field: string;
|
|
3393
|
-
order: "asc" | "desc";
|
|
3394
|
-
collapsed: boolean;
|
|
3395
|
-
}[];
|
|
3396
|
-
} | undefined;
|
|
3397
|
-
rowColor?: {
|
|
3398
|
-
field: string;
|
|
3399
|
-
colors?: Record<string, string> | undefined;
|
|
3400
|
-
} | undefined;
|
|
3401
|
-
hiddenFields?: string[] | undefined;
|
|
3402
|
-
fieldOrder?: string[] | undefined;
|
|
3403
|
-
rowActions?: string[] | undefined;
|
|
3404
|
-
bulkActions?: string[] | undefined;
|
|
3405
|
-
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
3406
|
-
virtualScroll?: boolean | undefined;
|
|
3407
|
-
conditionalFormatting?: {
|
|
3408
|
-
condition: {
|
|
3409
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3410
|
-
source?: string | undefined;
|
|
3411
|
-
ast?: unknown;
|
|
3412
|
-
meta?: {
|
|
3413
|
-
rationale?: string | undefined;
|
|
3414
|
-
generatedBy?: string | undefined;
|
|
3415
|
-
} | undefined;
|
|
3416
|
-
} | {
|
|
3417
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3418
|
-
source?: string | undefined;
|
|
3419
|
-
ast?: unknown;
|
|
3420
|
-
meta?: {
|
|
3421
|
-
rationale?: string | undefined;
|
|
3422
|
-
generatedBy?: string | undefined;
|
|
3423
|
-
} | undefined;
|
|
3424
|
-
};
|
|
3425
|
-
style: Record<string, string>;
|
|
3426
|
-
}[] | undefined;
|
|
3427
|
-
inlineEdit?: boolean | undefined;
|
|
3428
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
3429
|
-
userActions?: {
|
|
3430
|
-
sort: boolean;
|
|
3431
|
-
search: boolean;
|
|
3432
|
-
filter: boolean;
|
|
3433
|
-
rowHeight: boolean;
|
|
3434
|
-
addRecordForm: boolean;
|
|
3435
|
-
buttons?: string[] | undefined;
|
|
3436
|
-
} | undefined;
|
|
3437
|
-
appearance?: {
|
|
3438
|
-
showDescription: boolean;
|
|
3439
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
3440
|
-
} | undefined;
|
|
3441
|
-
tabs?: {
|
|
3442
|
-
name: string;
|
|
3443
|
-
pinned: boolean;
|
|
3444
|
-
isDefault: boolean;
|
|
3445
|
-
visible: boolean;
|
|
3446
|
-
label?: string | undefined;
|
|
3447
|
-
icon?: string | undefined;
|
|
3448
|
-
view?: string | undefined;
|
|
3449
|
-
filter?: {
|
|
3450
|
-
field: string;
|
|
3451
|
-
operator: string;
|
|
3452
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3453
|
-
}[] | undefined;
|
|
3454
|
-
order?: number | undefined;
|
|
3455
|
-
}[] | undefined;
|
|
3456
|
-
addRecord?: {
|
|
3457
|
-
enabled: boolean;
|
|
3458
|
-
position: "top" | "bottom" | "both";
|
|
3459
|
-
mode: "modal" | "form" | "inline";
|
|
3460
|
-
formView?: string | undefined;
|
|
3461
|
-
} | undefined;
|
|
3462
|
-
showRecordCount?: boolean | undefined;
|
|
3463
|
-
allowPrinting?: boolean | undefined;
|
|
3464
|
-
emptyState?: {
|
|
3465
|
-
title?: string | undefined;
|
|
3466
|
-
message?: string | undefined;
|
|
3467
|
-
icon?: string | undefined;
|
|
3468
|
-
} | undefined;
|
|
3469
|
-
aria?: {
|
|
3470
|
-
ariaLabel?: string | undefined;
|
|
3471
|
-
ariaDescribedBy?: string | undefined;
|
|
3472
|
-
role?: string | undefined;
|
|
3473
|
-
} | undefined;
|
|
3474
|
-
responsive?: {
|
|
3475
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3476
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3477
|
-
columns?: {
|
|
3478
|
-
xs?: number | undefined;
|
|
3479
|
-
sm?: number | undefined;
|
|
3480
|
-
md?: number | undefined;
|
|
3481
|
-
lg?: number | undefined;
|
|
3482
|
-
xl?: number | undefined;
|
|
3483
|
-
'2xl'?: number | undefined;
|
|
3484
|
-
} | undefined;
|
|
3485
|
-
order?: {
|
|
3486
|
-
xs?: number | undefined;
|
|
3487
|
-
sm?: number | undefined;
|
|
3488
|
-
md?: number | undefined;
|
|
3489
|
-
lg?: number | undefined;
|
|
3490
|
-
xl?: number | undefined;
|
|
3491
|
-
'2xl'?: number | undefined;
|
|
3492
|
-
} | undefined;
|
|
3493
|
-
} | undefined;
|
|
3494
|
-
performance?: {
|
|
3495
|
-
lazyLoad?: boolean | undefined;
|
|
3496
|
-
virtualScroll?: {
|
|
3497
|
-
enabled: boolean;
|
|
3498
|
-
itemHeight?: number | undefined;
|
|
3499
|
-
overscan?: number | undefined;
|
|
3500
|
-
} | undefined;
|
|
3501
|
-
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
3502
|
-
prefetch?: boolean | undefined;
|
|
3503
|
-
pageSize?: number | undefined;
|
|
3504
|
-
debounceMs?: number | undefined;
|
|
3505
|
-
} | undefined;
|
|
3506
|
-
}> | undefined;
|
|
3507
|
-
defaultDetailForm?: string | undefined;
|
|
3508
|
-
search?: {
|
|
3509
|
-
fields: string[];
|
|
3510
|
-
displayFields?: string[] | undefined;
|
|
3511
|
-
filters?: string[] | undefined;
|
|
3512
|
-
} | undefined;
|
|
3513
|
-
enable?: {
|
|
3514
|
-
trackHistory: boolean;
|
|
3515
|
-
searchable: boolean;
|
|
3516
|
-
apiEnabled: boolean;
|
|
3517
|
-
files: boolean;
|
|
3518
|
-
feeds: boolean;
|
|
3519
|
-
activities: boolean;
|
|
3520
|
-
trash: boolean;
|
|
3521
|
-
mru: boolean;
|
|
3522
|
-
clone: boolean;
|
|
3523
|
-
apiMethods?: ("create" | "update" | "delete" | "search" | "import" | "list" | "get" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3524
|
-
} | undefined;
|
|
3525
|
-
recordTypes?: string[] | undefined;
|
|
3526
|
-
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3527
|
-
publicSharing?: {
|
|
3528
|
-
enabled: boolean;
|
|
3529
|
-
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
3530
|
-
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
3531
|
-
maxExpiryDays?: number | undefined;
|
|
3532
|
-
redactFields?: string[] | undefined;
|
|
3533
|
-
eligibility?: string | undefined;
|
|
3534
|
-
} | undefined;
|
|
3535
|
-
keyPrefix?: string | undefined;
|
|
3536
|
-
detail?: {
|
|
3537
|
-
[x: string]: unknown;
|
|
3538
|
-
renderViaSchema?: boolean | undefined;
|
|
3539
|
-
hideReferenceRail?: boolean | undefined;
|
|
3540
|
-
hideRelatedTab?: boolean | undefined;
|
|
3541
|
-
} | undefined;
|
|
3542
|
-
actions?: {
|
|
3543
|
-
name: string;
|
|
3544
|
-
label: string;
|
|
3545
|
-
type: "url" | "flow" | "api" | "script" | "modal" | "form";
|
|
3546
|
-
refreshAfter: boolean;
|
|
3547
|
-
objectName?: string | undefined;
|
|
3548
|
-
icon?: string | undefined;
|
|
3549
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
3550
|
-
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
3551
|
-
target?: string | undefined;
|
|
3552
|
-
body?: {
|
|
3553
|
-
language: "expression";
|
|
3554
|
-
source: string;
|
|
3555
|
-
} | {
|
|
3556
|
-
language: "js";
|
|
3557
|
-
source: string;
|
|
3558
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
3559
|
-
timeoutMs?: number | undefined;
|
|
3560
|
-
memoryMb?: number | undefined;
|
|
3561
|
-
} | undefined;
|
|
3562
|
-
execute?: string | undefined;
|
|
3563
|
-
params?: {
|
|
3564
|
-
required: boolean;
|
|
3565
|
-
name?: string | undefined;
|
|
3566
|
-
field?: string | undefined;
|
|
3567
|
-
objectOverride?: string | undefined;
|
|
3568
|
-
label?: string | 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;
|
|
3570
|
-
options?: {
|
|
3571
|
-
label: string;
|
|
3572
|
-
value: string;
|
|
3573
|
-
}[] | undefined;
|
|
3574
|
-
placeholder?: string | undefined;
|
|
3575
|
-
helpText?: string | undefined;
|
|
3576
|
-
defaultValue?: unknown;
|
|
3577
|
-
defaultFromRow?: boolean | undefined;
|
|
3578
|
-
}[] | undefined;
|
|
3579
|
-
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
3580
|
-
confirmText?: string | undefined;
|
|
3581
|
-
successMessage?: string | undefined;
|
|
3582
|
-
resultDialog?: {
|
|
3583
|
-
title?: string | undefined;
|
|
3584
|
-
description?: string | undefined;
|
|
3585
|
-
acknowledge?: string | undefined;
|
|
3586
|
-
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3587
|
-
fields?: {
|
|
3588
|
-
path: string;
|
|
3589
|
-
label?: string | undefined;
|
|
3590
|
-
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3591
|
-
}[] | undefined;
|
|
3592
|
-
} | undefined;
|
|
3593
|
-
visible?: {
|
|
3594
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3595
|
-
source?: string | undefined;
|
|
3596
|
-
ast?: unknown;
|
|
3597
|
-
meta?: {
|
|
3598
|
-
rationale?: string | undefined;
|
|
3599
|
-
generatedBy?: string | undefined;
|
|
3600
|
-
} | undefined;
|
|
3601
|
-
} | undefined;
|
|
3602
|
-
disabled?: boolean | {
|
|
3603
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3604
|
-
source?: string | undefined;
|
|
3605
|
-
ast?: unknown;
|
|
3606
|
-
meta?: {
|
|
3607
|
-
rationale?: string | undefined;
|
|
3608
|
-
generatedBy?: string | undefined;
|
|
3609
|
-
} | undefined;
|
|
3610
|
-
} | undefined;
|
|
3611
|
-
shortcut?: string | undefined;
|
|
3612
|
-
bulkEnabled?: boolean | undefined;
|
|
3613
|
-
aiExposed?: boolean | undefined;
|
|
3614
|
-
recordIdParam?: string | undefined;
|
|
3615
|
-
recordIdField?: string | undefined;
|
|
3616
|
-
bodyShape?: "flat" | {
|
|
3617
|
-
wrap: string;
|
|
3618
|
-
} | undefined;
|
|
3619
|
-
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
3620
|
-
bodyExtra?: Record<string, unknown> | undefined;
|
|
3621
|
-
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
3622
|
-
timeout?: number | undefined;
|
|
3623
|
-
aria?: {
|
|
3624
|
-
ariaLabel?: string | undefined;
|
|
3625
|
-
ariaDescribedBy?: string | undefined;
|
|
3626
|
-
role?: string | undefined;
|
|
3627
|
-
} | undefined;
|
|
3628
|
-
}[] | undefined;
|
|
3629
|
-
protection?: {
|
|
3630
|
-
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
3631
|
-
reason: string;
|
|
3632
|
-
docsUrl?: string | undefined;
|
|
3633
|
-
} | undefined;
|
|
3634
|
-
}, "fields"> & Pick<{
|
|
3635
|
-
readonly name: "sys_webhook_delivery";
|
|
3636
|
-
readonly label: "Webhook Delivery";
|
|
3637
|
-
readonly pluralLabel: "Webhook Deliveries";
|
|
3638
|
-
readonly icon: "package";
|
|
3639
|
-
readonly isSystem: true;
|
|
3640
|
-
readonly managedBy: "config";
|
|
3641
|
-
readonly userActions: {
|
|
3642
|
-
readonly create: false;
|
|
3643
|
-
readonly edit: false;
|
|
3644
|
-
readonly delete: false;
|
|
3645
|
-
readonly import: false;
|
|
3646
|
-
};
|
|
3647
|
-
readonly description: "Durable outbox row for one webhook attempt. Managed by @objectstack/plugin-webhooks; do not write directly.";
|
|
3648
|
-
readonly displayNameField: "id";
|
|
3649
|
-
readonly titleFormat: "{event_type} → {url}";
|
|
3650
|
-
readonly compactLayout: ["event_type", "url", "status", "attempts", "next_retry_at"];
|
|
3651
|
-
readonly actions: [{
|
|
3652
|
-
readonly name: "redeliver";
|
|
3653
|
-
readonly label: "Redeliver";
|
|
3654
|
-
readonly icon: "refresh-cw";
|
|
3655
|
-
readonly variant: "secondary";
|
|
3656
|
-
readonly locations: ["list_item", "record_header"];
|
|
3657
|
-
readonly type: "api";
|
|
3658
|
-
readonly target: "/api/v1/webhooks/redeliver";
|
|
3659
|
-
readonly method: "POST";
|
|
3660
|
-
readonly recordIdParam: "deliveryId";
|
|
3661
|
-
readonly confirmText: "Replay this delivery? The receiver will get the original payload again — they must be idempotent on the X-Objectstack-Delivery header.";
|
|
3662
|
-
readonly successMessage: "Queued for redelivery";
|
|
3663
|
-
readonly refreshAfter: true;
|
|
3664
|
-
readonly disabled: "!(status in ['success', 'failed', 'dead'])";
|
|
3665
|
-
}];
|
|
3666
|
-
readonly listViews: {
|
|
3667
|
-
readonly recent: {
|
|
3668
|
-
readonly type: "grid";
|
|
3669
|
-
readonly name: "recent";
|
|
3670
|
-
readonly label: "Recent";
|
|
3671
|
-
readonly data: {
|
|
3672
|
-
readonly provider: "object";
|
|
3673
|
-
readonly object: "sys_webhook_delivery";
|
|
3674
|
-
};
|
|
3675
|
-
readonly columns: ["event_type", "url", "status", "attempts", "response_code", "updated_at"];
|
|
3676
|
-
readonly sort: [{
|
|
3677
|
-
readonly field: "updated_at";
|
|
3678
|
-
readonly order: "desc";
|
|
3679
|
-
}];
|
|
3680
|
-
readonly pagination: {
|
|
3681
|
-
readonly pageSize: 50;
|
|
3682
|
-
};
|
|
3683
|
-
};
|
|
3684
|
-
readonly failures: {
|
|
3685
|
-
readonly type: "grid";
|
|
3686
|
-
readonly name: "failures";
|
|
3687
|
-
readonly label: "Failures";
|
|
3688
|
-
readonly data: {
|
|
3689
|
-
readonly provider: "object";
|
|
3690
|
-
readonly object: "sys_webhook_delivery";
|
|
3691
|
-
};
|
|
3692
|
-
readonly columns: ["event_type", "url", "status", "attempts", "response_code", "error", "updated_at"];
|
|
3693
|
-
readonly filter: [{
|
|
3694
|
-
readonly field: "status";
|
|
3695
|
-
readonly operator: "in";
|
|
3696
|
-
readonly value: ["failed", "dead"];
|
|
3697
|
-
}];
|
|
3698
|
-
readonly sort: [{
|
|
3699
|
-
readonly field: "updated_at";
|
|
3700
|
-
readonly order: "desc";
|
|
3701
|
-
}];
|
|
3702
|
-
readonly pagination: {
|
|
3703
|
-
readonly pageSize: 50;
|
|
3704
|
-
};
|
|
3705
|
-
};
|
|
3706
|
-
readonly in_flight: {
|
|
3707
|
-
readonly type: "grid";
|
|
3708
|
-
readonly name: "in_flight";
|
|
3709
|
-
readonly label: "In Flight";
|
|
3710
|
-
readonly data: {
|
|
3711
|
-
readonly provider: "object";
|
|
3712
|
-
readonly object: "sys_webhook_delivery";
|
|
3713
|
-
};
|
|
3714
|
-
readonly columns: ["event_type", "url", "attempts", "claimed_by", "claimed_at"];
|
|
3715
|
-
readonly filter: [{
|
|
3716
|
-
readonly field: "status";
|
|
3717
|
-
readonly operator: "equals";
|
|
3718
|
-
readonly value: "in_flight";
|
|
3719
|
-
}];
|
|
3720
|
-
readonly sort: [{
|
|
3721
|
-
readonly field: "claimed_at";
|
|
3722
|
-
readonly order: "desc";
|
|
3723
|
-
}];
|
|
3724
|
-
readonly pagination: {
|
|
3725
|
-
readonly pageSize: 50;
|
|
3726
|
-
};
|
|
3727
|
-
};
|
|
3728
|
-
readonly pending: {
|
|
3729
|
-
readonly type: "grid";
|
|
3730
|
-
readonly name: "pending";
|
|
3731
|
-
readonly label: "Pending";
|
|
3732
|
-
readonly data: {
|
|
3733
|
-
readonly provider: "object";
|
|
3734
|
-
readonly object: "sys_webhook_delivery";
|
|
3735
|
-
};
|
|
3736
|
-
readonly columns: ["event_type", "url", "attempts", "next_retry_at", "updated_at"];
|
|
3737
|
-
readonly filter: [{
|
|
3738
|
-
readonly field: "status";
|
|
3739
|
-
readonly operator: "equals";
|
|
3740
|
-
readonly value: "pending";
|
|
3741
|
-
}];
|
|
3742
|
-
readonly sort: [{
|
|
3743
|
-
readonly field: "next_retry_at";
|
|
3744
|
-
readonly order: "asc";
|
|
3745
|
-
}];
|
|
3746
|
-
readonly pagination: {
|
|
3747
|
-
readonly pageSize: 50;
|
|
3748
|
-
};
|
|
3749
|
-
};
|
|
3750
|
-
readonly by_status: {
|
|
3751
|
-
readonly type: "grid";
|
|
3752
|
-
readonly name: "by_status";
|
|
3753
|
-
readonly label: "By Status";
|
|
3754
|
-
readonly data: {
|
|
3755
|
-
readonly provider: "object";
|
|
3756
|
-
readonly object: "sys_webhook_delivery";
|
|
3757
|
-
};
|
|
3758
|
-
readonly columns: ["status", "event_type", "url", "attempts", "updated_at"];
|
|
3759
|
-
readonly sort: [{
|
|
3760
|
-
readonly field: "status";
|
|
3761
|
-
readonly order: "asc";
|
|
3762
|
-
}, {
|
|
3763
|
-
readonly field: "updated_at";
|
|
3764
|
-
readonly order: "desc";
|
|
3765
|
-
}];
|
|
3766
|
-
readonly grouping: {
|
|
3767
|
-
readonly fields: [{
|
|
3768
|
-
readonly field: "status";
|
|
3769
|
-
readonly order: "asc";
|
|
3770
|
-
readonly collapsed: false;
|
|
3771
|
-
}];
|
|
3772
|
-
};
|
|
3773
|
-
readonly pagination: {
|
|
3774
|
-
readonly pageSize: 100;
|
|
3775
|
-
};
|
|
3776
|
-
};
|
|
3777
|
-
readonly by_webhook: {
|
|
3778
|
-
readonly type: "grid";
|
|
3779
|
-
readonly name: "by_webhook";
|
|
3780
|
-
readonly label: "By Webhook";
|
|
3781
|
-
readonly data: {
|
|
3782
|
-
readonly provider: "object";
|
|
3783
|
-
readonly object: "sys_webhook_delivery";
|
|
3784
|
-
};
|
|
3785
|
-
readonly columns: ["webhook_id", "event_type", "status", "attempts", "updated_at"];
|
|
3786
|
-
readonly sort: [{
|
|
3787
|
-
readonly field: "webhook_id";
|
|
3788
|
-
readonly order: "asc";
|
|
3789
|
-
}, {
|
|
3790
|
-
readonly field: "updated_at";
|
|
3791
|
-
readonly order: "desc";
|
|
3792
|
-
}];
|
|
3793
|
-
readonly grouping: {
|
|
3794
|
-
readonly fields: [{
|
|
3795
|
-
readonly field: "webhook_id";
|
|
3796
|
-
readonly order: "asc";
|
|
3797
|
-
readonly collapsed: true;
|
|
3798
|
-
}];
|
|
3799
|
-
};
|
|
3800
|
-
readonly pagination: {
|
|
3801
|
-
readonly pageSize: 100;
|
|
3802
|
-
};
|
|
3803
|
-
};
|
|
3804
|
-
readonly all_deliveries: {
|
|
3805
|
-
readonly type: "grid";
|
|
3806
|
-
readonly name: "all_deliveries";
|
|
3807
|
-
readonly label: "All";
|
|
3808
|
-
readonly data: {
|
|
3809
|
-
readonly provider: "object";
|
|
3810
|
-
readonly object: "sys_webhook_delivery";
|
|
3811
|
-
};
|
|
3812
|
-
readonly columns: ["event_type", "url", "status", "attempts", "response_code", "updated_at"];
|
|
3813
|
-
readonly sort: [{
|
|
3814
|
-
readonly field: "updated_at";
|
|
3815
|
-
readonly order: "desc";
|
|
3816
|
-
}];
|
|
3817
|
-
readonly pagination: {
|
|
3818
|
-
readonly pageSize: 100;
|
|
3819
|
-
};
|
|
3820
|
-
};
|
|
3821
|
-
};
|
|
3822
|
-
readonly fields: {
|
|
3823
|
-
readonly id: {
|
|
3824
|
-
readonly readonly?: boolean | undefined;
|
|
3825
|
-
readonly format?: string | undefined;
|
|
3826
|
-
readonly options?: {
|
|
3827
|
-
label: string;
|
|
3828
|
-
value: string;
|
|
3829
|
-
color?: string | undefined;
|
|
3830
|
-
default?: boolean | undefined;
|
|
3831
|
-
}[] | undefined;
|
|
3832
|
-
readonly description?: string | undefined;
|
|
3833
|
-
readonly label?: string | undefined;
|
|
3834
|
-
readonly name?: string | undefined;
|
|
3835
|
-
readonly precision?: number | undefined;
|
|
3836
|
-
readonly required?: boolean | undefined;
|
|
3837
|
-
readonly multiple?: boolean | undefined;
|
|
3838
|
-
readonly dependencies?: string[] | undefined;
|
|
3839
|
-
readonly theme?: string | undefined;
|
|
3840
|
-
readonly externalId?: boolean | undefined;
|
|
3841
|
-
readonly defaultValue?: unknown;
|
|
3842
|
-
readonly group?: string | undefined;
|
|
3843
|
-
readonly hidden?: boolean | undefined;
|
|
3844
|
-
readonly system?: boolean | undefined;
|
|
3845
|
-
readonly min?: number | undefined;
|
|
3846
|
-
readonly max?: number | undefined;
|
|
3847
|
-
readonly encryptionConfig?: {
|
|
3848
|
-
enabled: boolean;
|
|
3849
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3850
|
-
keyManagement: {
|
|
3851
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3852
|
-
keyId?: string | undefined;
|
|
3853
|
-
rotationPolicy?: {
|
|
3854
|
-
enabled: boolean;
|
|
3855
|
-
frequencyDays: number;
|
|
3856
|
-
retainOldVersions: number;
|
|
3857
|
-
autoRotate: boolean;
|
|
3858
|
-
} | undefined;
|
|
3859
|
-
};
|
|
3860
|
-
scope: "record" | "field" | "table" | "database";
|
|
3861
|
-
deterministicEncryption: boolean;
|
|
3862
|
-
searchableEncryption: boolean;
|
|
3863
|
-
} | undefined;
|
|
3864
|
-
readonly columnName?: string | undefined;
|
|
3865
|
-
readonly searchable?: boolean | undefined;
|
|
3866
|
-
readonly unique?: boolean | undefined;
|
|
3867
|
-
readonly maxLength?: number | undefined;
|
|
3868
|
-
readonly minLength?: number | undefined;
|
|
3869
|
-
readonly scale?: number | undefined;
|
|
3870
|
-
readonly reference?: string | undefined;
|
|
3871
|
-
readonly referenceFilters?: string[] | undefined;
|
|
3872
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3873
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3874
|
-
readonly expression?: {
|
|
3875
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3876
|
-
source?: string | undefined;
|
|
3877
|
-
ast?: unknown;
|
|
3878
|
-
meta?: {
|
|
3879
|
-
rationale?: string | undefined;
|
|
3880
|
-
generatedBy?: string | undefined;
|
|
3881
|
-
} | undefined;
|
|
3882
|
-
} | undefined;
|
|
3883
|
-
readonly summaryOperations?: {
|
|
3884
|
-
object: string;
|
|
3885
|
-
field: string;
|
|
3886
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3887
|
-
} | undefined;
|
|
3888
|
-
readonly language?: string | undefined;
|
|
3889
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3890
|
-
readonly maxRating?: number | undefined;
|
|
3891
|
-
readonly allowHalf?: boolean | undefined;
|
|
3892
|
-
readonly displayMap?: boolean | undefined;
|
|
3893
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3894
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3895
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3896
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3897
|
-
readonly presetColors?: string[] | undefined;
|
|
3898
|
-
readonly step?: number | undefined;
|
|
3899
|
-
readonly showValue?: boolean | undefined;
|
|
3900
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3901
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3902
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3903
|
-
readonly displayValue?: boolean | undefined;
|
|
3904
|
-
readonly allowScanning?: boolean | undefined;
|
|
3905
|
-
readonly currencyConfig?: {
|
|
3906
|
-
precision: number;
|
|
3907
|
-
currencyMode: "fixed" | "dynamic";
|
|
3908
|
-
defaultCurrency: string;
|
|
3909
|
-
} | undefined;
|
|
3910
|
-
readonly vectorConfig?: {
|
|
3911
|
-
dimensions: number;
|
|
3912
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3913
|
-
normalized: boolean;
|
|
3914
|
-
indexed: boolean;
|
|
3915
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3916
|
-
} | undefined;
|
|
3917
|
-
readonly fileAttachmentConfig?: {
|
|
3918
|
-
virusScan: boolean;
|
|
3919
|
-
virusScanOnUpload: boolean;
|
|
3920
|
-
quarantineOnThreat: boolean;
|
|
3921
|
-
allowMultiple: boolean;
|
|
3922
|
-
allowReplace: boolean;
|
|
3923
|
-
allowDelete: boolean;
|
|
3924
|
-
requireUpload: boolean;
|
|
3925
|
-
extractMetadata: boolean;
|
|
3926
|
-
extractText: boolean;
|
|
3927
|
-
versioningEnabled: boolean;
|
|
3928
|
-
publicRead: boolean;
|
|
3929
|
-
presignedUrlExpiry: number;
|
|
3930
|
-
minSize?: number | undefined;
|
|
3931
|
-
maxSize?: number | undefined;
|
|
3932
|
-
allowedTypes?: string[] | undefined;
|
|
3933
|
-
blockedTypes?: string[] | undefined;
|
|
3934
|
-
allowedMimeTypes?: string[] | undefined;
|
|
3935
|
-
blockedMimeTypes?: string[] | undefined;
|
|
3936
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3937
|
-
storageProvider?: string | undefined;
|
|
3938
|
-
storageBucket?: string | undefined;
|
|
3939
|
-
storagePrefix?: string | undefined;
|
|
3940
|
-
imageValidation?: {
|
|
3941
|
-
generateThumbnails: boolean;
|
|
3942
|
-
preserveMetadata: boolean;
|
|
3943
|
-
autoRotate: boolean;
|
|
3944
|
-
minWidth?: number | undefined;
|
|
3945
|
-
maxWidth?: number | undefined;
|
|
3946
|
-
minHeight?: number | undefined;
|
|
3947
|
-
maxHeight?: number | undefined;
|
|
3948
|
-
aspectRatio?: string | undefined;
|
|
3949
|
-
thumbnailSizes?: {
|
|
3950
|
-
name: string;
|
|
3951
|
-
width: number;
|
|
3952
|
-
height: number;
|
|
3953
|
-
crop: boolean;
|
|
3954
|
-
}[] | undefined;
|
|
3955
|
-
} | undefined;
|
|
3956
|
-
maxVersions?: number | undefined;
|
|
3957
|
-
} | undefined;
|
|
3958
|
-
readonly maskingRule?: {
|
|
3959
|
-
field: string;
|
|
3960
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3961
|
-
preserveFormat: boolean;
|
|
3962
|
-
preserveLength: boolean;
|
|
3963
|
-
pattern?: string | undefined;
|
|
3964
|
-
roles?: string[] | undefined;
|
|
3965
|
-
exemptRoles?: string[] | undefined;
|
|
3966
|
-
} | undefined;
|
|
3967
|
-
readonly auditTrail?: boolean | undefined;
|
|
3968
|
-
readonly cached?: {
|
|
3969
|
-
enabled: boolean;
|
|
3970
|
-
ttl: number;
|
|
3971
|
-
invalidateOn: string[];
|
|
3972
|
-
} | undefined;
|
|
3973
|
-
readonly dataQuality?: {
|
|
3974
|
-
uniqueness: boolean;
|
|
3975
|
-
completeness: number;
|
|
3976
|
-
accuracy?: {
|
|
3977
|
-
source: string;
|
|
3978
|
-
threshold: number;
|
|
3979
|
-
} | undefined;
|
|
3980
|
-
} | undefined;
|
|
3981
|
-
readonly conditionalRequired?: {
|
|
3982
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3983
|
-
source?: string | undefined;
|
|
3984
|
-
ast?: unknown;
|
|
3985
|
-
meta?: {
|
|
3986
|
-
rationale?: string | undefined;
|
|
3987
|
-
generatedBy?: string | undefined;
|
|
3988
|
-
} | undefined;
|
|
3989
|
-
} | undefined;
|
|
3990
|
-
readonly sortable?: boolean | undefined;
|
|
3991
|
-
readonly inlineHelpText?: string | undefined;
|
|
3992
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3993
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3994
|
-
readonly autonumberFormat?: string | undefined;
|
|
3995
|
-
readonly index?: boolean | undefined;
|
|
3996
|
-
readonly type: "text";
|
|
3997
|
-
};
|
|
3998
|
-
readonly webhook_id: {
|
|
3999
|
-
readonly readonly?: boolean | undefined;
|
|
4000
|
-
readonly format?: string | undefined;
|
|
4001
|
-
readonly options?: {
|
|
4002
|
-
label: string;
|
|
4003
|
-
value: string;
|
|
4004
|
-
color?: string | undefined;
|
|
4005
|
-
default?: boolean | undefined;
|
|
4006
|
-
}[] | undefined;
|
|
4007
|
-
readonly description?: string | undefined;
|
|
4008
|
-
readonly label?: string | undefined;
|
|
4009
|
-
readonly name?: string | undefined;
|
|
4010
|
-
readonly precision?: number | undefined;
|
|
4011
|
-
readonly required?: boolean | undefined;
|
|
4012
|
-
readonly multiple?: boolean | undefined;
|
|
4013
|
-
readonly dependencies?: string[] | undefined;
|
|
4014
|
-
readonly theme?: string | undefined;
|
|
4015
|
-
readonly externalId?: boolean | undefined;
|
|
4016
|
-
readonly defaultValue?: unknown;
|
|
4017
|
-
readonly group?: string | undefined;
|
|
4018
|
-
readonly hidden?: boolean | undefined;
|
|
4019
|
-
readonly system?: boolean | undefined;
|
|
4020
|
-
readonly min?: number | undefined;
|
|
4021
|
-
readonly max?: number | undefined;
|
|
4022
|
-
readonly encryptionConfig?: {
|
|
4023
|
-
enabled: boolean;
|
|
4024
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4025
|
-
keyManagement: {
|
|
4026
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4027
|
-
keyId?: string | undefined;
|
|
4028
|
-
rotationPolicy?: {
|
|
4029
|
-
enabled: boolean;
|
|
4030
|
-
frequencyDays: number;
|
|
4031
|
-
retainOldVersions: number;
|
|
4032
|
-
autoRotate: boolean;
|
|
4033
|
-
} | undefined;
|
|
4034
|
-
};
|
|
4035
|
-
scope: "record" | "field" | "table" | "database";
|
|
4036
|
-
deterministicEncryption: boolean;
|
|
4037
|
-
searchableEncryption: boolean;
|
|
4038
|
-
} | undefined;
|
|
4039
|
-
readonly columnName?: string | undefined;
|
|
4040
|
-
readonly searchable?: boolean | undefined;
|
|
4041
|
-
readonly unique?: boolean | undefined;
|
|
4042
|
-
readonly maxLength?: number | undefined;
|
|
4043
|
-
readonly minLength?: number | undefined;
|
|
4044
|
-
readonly scale?: number | undefined;
|
|
4045
|
-
readonly reference?: string | undefined;
|
|
4046
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4047
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4048
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4049
|
-
readonly expression?: {
|
|
4050
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4051
|
-
source?: string | undefined;
|
|
4052
|
-
ast?: unknown;
|
|
4053
|
-
meta?: {
|
|
4054
|
-
rationale?: string | undefined;
|
|
4055
|
-
generatedBy?: string | undefined;
|
|
4056
|
-
} | undefined;
|
|
4057
|
-
} | undefined;
|
|
4058
|
-
readonly summaryOperations?: {
|
|
4059
|
-
object: string;
|
|
4060
|
-
field: string;
|
|
4061
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4062
|
-
} | undefined;
|
|
4063
|
-
readonly language?: string | undefined;
|
|
4064
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4065
|
-
readonly maxRating?: number | undefined;
|
|
4066
|
-
readonly allowHalf?: boolean | undefined;
|
|
4067
|
-
readonly displayMap?: boolean | undefined;
|
|
4068
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4069
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4070
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4071
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4072
|
-
readonly presetColors?: string[] | undefined;
|
|
4073
|
-
readonly step?: number | undefined;
|
|
4074
|
-
readonly showValue?: boolean | undefined;
|
|
4075
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4076
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4077
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4078
|
-
readonly displayValue?: boolean | undefined;
|
|
4079
|
-
readonly allowScanning?: boolean | undefined;
|
|
4080
|
-
readonly currencyConfig?: {
|
|
4081
|
-
precision: number;
|
|
4082
|
-
currencyMode: "fixed" | "dynamic";
|
|
4083
|
-
defaultCurrency: string;
|
|
4084
|
-
} | undefined;
|
|
4085
|
-
readonly vectorConfig?: {
|
|
4086
|
-
dimensions: number;
|
|
4087
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4088
|
-
normalized: boolean;
|
|
4089
|
-
indexed: boolean;
|
|
4090
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4091
|
-
} | undefined;
|
|
4092
|
-
readonly fileAttachmentConfig?: {
|
|
4093
|
-
virusScan: boolean;
|
|
4094
|
-
virusScanOnUpload: boolean;
|
|
4095
|
-
quarantineOnThreat: boolean;
|
|
4096
|
-
allowMultiple: boolean;
|
|
4097
|
-
allowReplace: boolean;
|
|
4098
|
-
allowDelete: boolean;
|
|
4099
|
-
requireUpload: boolean;
|
|
4100
|
-
extractMetadata: boolean;
|
|
4101
|
-
extractText: boolean;
|
|
4102
|
-
versioningEnabled: boolean;
|
|
4103
|
-
publicRead: boolean;
|
|
4104
|
-
presignedUrlExpiry: number;
|
|
4105
|
-
minSize?: number | undefined;
|
|
4106
|
-
maxSize?: number | undefined;
|
|
4107
|
-
allowedTypes?: string[] | undefined;
|
|
4108
|
-
blockedTypes?: string[] | undefined;
|
|
4109
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4110
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4111
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4112
|
-
storageProvider?: string | undefined;
|
|
4113
|
-
storageBucket?: string | undefined;
|
|
4114
|
-
storagePrefix?: string | undefined;
|
|
4115
|
-
imageValidation?: {
|
|
4116
|
-
generateThumbnails: boolean;
|
|
4117
|
-
preserveMetadata: boolean;
|
|
4118
|
-
autoRotate: boolean;
|
|
4119
|
-
minWidth?: number | undefined;
|
|
4120
|
-
maxWidth?: number | undefined;
|
|
4121
|
-
minHeight?: number | undefined;
|
|
4122
|
-
maxHeight?: number | undefined;
|
|
4123
|
-
aspectRatio?: string | undefined;
|
|
4124
|
-
thumbnailSizes?: {
|
|
4125
|
-
name: string;
|
|
4126
|
-
width: number;
|
|
4127
|
-
height: number;
|
|
4128
|
-
crop: boolean;
|
|
4129
|
-
}[] | undefined;
|
|
4130
|
-
} | undefined;
|
|
4131
|
-
maxVersions?: number | undefined;
|
|
4132
|
-
} | undefined;
|
|
4133
|
-
readonly maskingRule?: {
|
|
4134
|
-
field: string;
|
|
4135
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4136
|
-
preserveFormat: boolean;
|
|
4137
|
-
preserveLength: boolean;
|
|
4138
|
-
pattern?: string | undefined;
|
|
4139
|
-
roles?: string[] | undefined;
|
|
4140
|
-
exemptRoles?: string[] | undefined;
|
|
4141
|
-
} | undefined;
|
|
4142
|
-
readonly auditTrail?: boolean | undefined;
|
|
4143
|
-
readonly cached?: {
|
|
4144
|
-
enabled: boolean;
|
|
4145
|
-
ttl: number;
|
|
4146
|
-
invalidateOn: string[];
|
|
4147
|
-
} | undefined;
|
|
4148
|
-
readonly dataQuality?: {
|
|
4149
|
-
uniqueness: boolean;
|
|
4150
|
-
completeness: number;
|
|
4151
|
-
accuracy?: {
|
|
4152
|
-
source: string;
|
|
4153
|
-
threshold: number;
|
|
4154
|
-
} | undefined;
|
|
4155
|
-
} | undefined;
|
|
4156
|
-
readonly conditionalRequired?: {
|
|
4157
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4158
|
-
source?: string | undefined;
|
|
4159
|
-
ast?: unknown;
|
|
4160
|
-
meta?: {
|
|
4161
|
-
rationale?: string | undefined;
|
|
4162
|
-
generatedBy?: string | undefined;
|
|
4163
|
-
} | undefined;
|
|
4164
|
-
} | undefined;
|
|
4165
|
-
readonly sortable?: boolean | undefined;
|
|
4166
|
-
readonly inlineHelpText?: string | undefined;
|
|
4167
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4168
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4169
|
-
readonly autonumberFormat?: string | undefined;
|
|
4170
|
-
readonly index?: boolean | undefined;
|
|
4171
|
-
readonly type: "text";
|
|
4172
|
-
};
|
|
4173
|
-
readonly event_id: {
|
|
4174
|
-
readonly readonly?: boolean | undefined;
|
|
4175
|
-
readonly format?: string | undefined;
|
|
4176
|
-
readonly options?: {
|
|
4177
|
-
label: string;
|
|
4178
|
-
value: string;
|
|
4179
|
-
color?: string | undefined;
|
|
4180
|
-
default?: boolean | undefined;
|
|
4181
|
-
}[] | undefined;
|
|
4182
|
-
readonly description?: string | undefined;
|
|
4183
|
-
readonly label?: string | undefined;
|
|
4184
|
-
readonly name?: string | undefined;
|
|
4185
|
-
readonly precision?: number | undefined;
|
|
4186
|
-
readonly required?: boolean | undefined;
|
|
4187
|
-
readonly multiple?: boolean | undefined;
|
|
4188
|
-
readonly dependencies?: string[] | undefined;
|
|
4189
|
-
readonly theme?: string | undefined;
|
|
4190
|
-
readonly externalId?: boolean | undefined;
|
|
4191
|
-
readonly defaultValue?: unknown;
|
|
4192
|
-
readonly group?: string | undefined;
|
|
4193
|
-
readonly hidden?: boolean | undefined;
|
|
4194
|
-
readonly system?: boolean | undefined;
|
|
4195
|
-
readonly min?: number | undefined;
|
|
4196
|
-
readonly max?: number | undefined;
|
|
4197
|
-
readonly encryptionConfig?: {
|
|
4198
|
-
enabled: boolean;
|
|
4199
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4200
|
-
keyManagement: {
|
|
4201
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4202
|
-
keyId?: string | undefined;
|
|
4203
|
-
rotationPolicy?: {
|
|
4204
|
-
enabled: boolean;
|
|
4205
|
-
frequencyDays: number;
|
|
4206
|
-
retainOldVersions: number;
|
|
4207
|
-
autoRotate: boolean;
|
|
4208
|
-
} | undefined;
|
|
4209
|
-
};
|
|
4210
|
-
scope: "record" | "field" | "table" | "database";
|
|
4211
|
-
deterministicEncryption: boolean;
|
|
4212
|
-
searchableEncryption: boolean;
|
|
4213
|
-
} | undefined;
|
|
4214
|
-
readonly columnName?: string | undefined;
|
|
4215
|
-
readonly searchable?: boolean | undefined;
|
|
4216
|
-
readonly unique?: boolean | undefined;
|
|
4217
|
-
readonly maxLength?: number | undefined;
|
|
4218
|
-
readonly minLength?: number | undefined;
|
|
4219
|
-
readonly scale?: number | undefined;
|
|
4220
|
-
readonly reference?: string | undefined;
|
|
4221
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4222
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4223
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4224
|
-
readonly expression?: {
|
|
4225
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4226
|
-
source?: string | undefined;
|
|
4227
|
-
ast?: unknown;
|
|
4228
|
-
meta?: {
|
|
4229
|
-
rationale?: string | undefined;
|
|
4230
|
-
generatedBy?: string | undefined;
|
|
4231
|
-
} | undefined;
|
|
4232
|
-
} | undefined;
|
|
4233
|
-
readonly summaryOperations?: {
|
|
4234
|
-
object: string;
|
|
4235
|
-
field: string;
|
|
4236
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4237
|
-
} | undefined;
|
|
4238
|
-
readonly language?: string | undefined;
|
|
4239
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4240
|
-
readonly maxRating?: number | undefined;
|
|
4241
|
-
readonly allowHalf?: boolean | undefined;
|
|
4242
|
-
readonly displayMap?: boolean | undefined;
|
|
4243
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4244
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4245
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4246
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4247
|
-
readonly presetColors?: string[] | undefined;
|
|
4248
|
-
readonly step?: number | undefined;
|
|
4249
|
-
readonly showValue?: boolean | undefined;
|
|
4250
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4251
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4252
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4253
|
-
readonly displayValue?: boolean | undefined;
|
|
4254
|
-
readonly allowScanning?: boolean | undefined;
|
|
4255
|
-
readonly currencyConfig?: {
|
|
4256
|
-
precision: number;
|
|
4257
|
-
currencyMode: "fixed" | "dynamic";
|
|
4258
|
-
defaultCurrency: string;
|
|
4259
|
-
} | undefined;
|
|
4260
|
-
readonly vectorConfig?: {
|
|
4261
|
-
dimensions: number;
|
|
4262
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4263
|
-
normalized: boolean;
|
|
4264
|
-
indexed: boolean;
|
|
4265
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4266
|
-
} | undefined;
|
|
4267
|
-
readonly fileAttachmentConfig?: {
|
|
4268
|
-
virusScan: boolean;
|
|
4269
|
-
virusScanOnUpload: boolean;
|
|
4270
|
-
quarantineOnThreat: boolean;
|
|
4271
|
-
allowMultiple: boolean;
|
|
4272
|
-
allowReplace: boolean;
|
|
4273
|
-
allowDelete: boolean;
|
|
4274
|
-
requireUpload: boolean;
|
|
4275
|
-
extractMetadata: boolean;
|
|
4276
|
-
extractText: boolean;
|
|
4277
|
-
versioningEnabled: boolean;
|
|
4278
|
-
publicRead: boolean;
|
|
4279
|
-
presignedUrlExpiry: number;
|
|
4280
|
-
minSize?: number | undefined;
|
|
4281
|
-
maxSize?: number | undefined;
|
|
4282
|
-
allowedTypes?: string[] | undefined;
|
|
4283
|
-
blockedTypes?: string[] | undefined;
|
|
4284
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4285
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4286
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4287
|
-
storageProvider?: string | undefined;
|
|
4288
|
-
storageBucket?: string | undefined;
|
|
4289
|
-
storagePrefix?: string | undefined;
|
|
4290
|
-
imageValidation?: {
|
|
4291
|
-
generateThumbnails: boolean;
|
|
4292
|
-
preserveMetadata: boolean;
|
|
4293
|
-
autoRotate: boolean;
|
|
4294
|
-
minWidth?: number | undefined;
|
|
4295
|
-
maxWidth?: number | undefined;
|
|
4296
|
-
minHeight?: number | undefined;
|
|
4297
|
-
maxHeight?: number | undefined;
|
|
4298
|
-
aspectRatio?: string | undefined;
|
|
4299
|
-
thumbnailSizes?: {
|
|
4300
|
-
name: string;
|
|
4301
|
-
width: number;
|
|
4302
|
-
height: number;
|
|
4303
|
-
crop: boolean;
|
|
4304
|
-
}[] | undefined;
|
|
4305
|
-
} | undefined;
|
|
4306
|
-
maxVersions?: number | undefined;
|
|
4307
|
-
} | undefined;
|
|
4308
|
-
readonly maskingRule?: {
|
|
4309
|
-
field: string;
|
|
4310
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4311
|
-
preserveFormat: boolean;
|
|
4312
|
-
preserveLength: boolean;
|
|
4313
|
-
pattern?: string | undefined;
|
|
4314
|
-
roles?: string[] | undefined;
|
|
4315
|
-
exemptRoles?: string[] | undefined;
|
|
4316
|
-
} | undefined;
|
|
4317
|
-
readonly auditTrail?: boolean | undefined;
|
|
4318
|
-
readonly cached?: {
|
|
4319
|
-
enabled: boolean;
|
|
4320
|
-
ttl: number;
|
|
4321
|
-
invalidateOn: string[];
|
|
4322
|
-
} | undefined;
|
|
4323
|
-
readonly dataQuality?: {
|
|
4324
|
-
uniqueness: boolean;
|
|
4325
|
-
completeness: number;
|
|
4326
|
-
accuracy?: {
|
|
4327
|
-
source: string;
|
|
4328
|
-
threshold: number;
|
|
4329
|
-
} | undefined;
|
|
4330
|
-
} | undefined;
|
|
4331
|
-
readonly conditionalRequired?: {
|
|
4332
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4333
|
-
source?: string | undefined;
|
|
4334
|
-
ast?: unknown;
|
|
4335
|
-
meta?: {
|
|
4336
|
-
rationale?: string | undefined;
|
|
4337
|
-
generatedBy?: string | undefined;
|
|
4338
|
-
} | undefined;
|
|
4339
|
-
} | undefined;
|
|
4340
|
-
readonly sortable?: boolean | undefined;
|
|
4341
|
-
readonly inlineHelpText?: string | undefined;
|
|
4342
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4343
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4344
|
-
readonly autonumberFormat?: string | undefined;
|
|
4345
|
-
readonly index?: boolean | undefined;
|
|
4346
|
-
readonly type: "text";
|
|
4347
|
-
};
|
|
4348
|
-
readonly event_type: {
|
|
4349
|
-
readonly readonly?: boolean | undefined;
|
|
4350
|
-
readonly format?: string | undefined;
|
|
4351
|
-
readonly options?: {
|
|
4352
|
-
label: string;
|
|
4353
|
-
value: string;
|
|
4354
|
-
color?: string | undefined;
|
|
4355
|
-
default?: boolean | undefined;
|
|
4356
|
-
}[] | undefined;
|
|
4357
|
-
readonly description?: string | undefined;
|
|
4358
|
-
readonly label?: string | undefined;
|
|
4359
|
-
readonly name?: string | undefined;
|
|
4360
|
-
readonly precision?: number | undefined;
|
|
4361
|
-
readonly required?: boolean | undefined;
|
|
4362
|
-
readonly multiple?: boolean | undefined;
|
|
4363
|
-
readonly dependencies?: string[] | undefined;
|
|
4364
|
-
readonly theme?: string | undefined;
|
|
4365
|
-
readonly externalId?: boolean | undefined;
|
|
4366
|
-
readonly defaultValue?: unknown;
|
|
4367
|
-
readonly group?: string | undefined;
|
|
4368
|
-
readonly hidden?: boolean | undefined;
|
|
4369
|
-
readonly system?: boolean | undefined;
|
|
4370
|
-
readonly min?: number | undefined;
|
|
4371
|
-
readonly max?: number | undefined;
|
|
4372
|
-
readonly encryptionConfig?: {
|
|
4373
|
-
enabled: boolean;
|
|
4374
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4375
|
-
keyManagement: {
|
|
4376
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4377
|
-
keyId?: string | undefined;
|
|
4378
|
-
rotationPolicy?: {
|
|
4379
|
-
enabled: boolean;
|
|
4380
|
-
frequencyDays: number;
|
|
4381
|
-
retainOldVersions: number;
|
|
4382
|
-
autoRotate: boolean;
|
|
4383
|
-
} | undefined;
|
|
4384
|
-
};
|
|
4385
|
-
scope: "record" | "field" | "table" | "database";
|
|
4386
|
-
deterministicEncryption: boolean;
|
|
4387
|
-
searchableEncryption: boolean;
|
|
4388
|
-
} | undefined;
|
|
4389
|
-
readonly columnName?: string | undefined;
|
|
4390
|
-
readonly searchable?: boolean | undefined;
|
|
4391
|
-
readonly unique?: boolean | undefined;
|
|
4392
|
-
readonly maxLength?: number | undefined;
|
|
4393
|
-
readonly minLength?: number | undefined;
|
|
4394
|
-
readonly scale?: number | undefined;
|
|
4395
|
-
readonly reference?: string | undefined;
|
|
4396
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4397
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4398
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4399
|
-
readonly expression?: {
|
|
4400
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4401
|
-
source?: string | undefined;
|
|
4402
|
-
ast?: unknown;
|
|
4403
|
-
meta?: {
|
|
4404
|
-
rationale?: string | undefined;
|
|
4405
|
-
generatedBy?: string | undefined;
|
|
4406
|
-
} | undefined;
|
|
4407
|
-
} | undefined;
|
|
4408
|
-
readonly summaryOperations?: {
|
|
4409
|
-
object: string;
|
|
4410
|
-
field: string;
|
|
4411
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4412
|
-
} | undefined;
|
|
4413
|
-
readonly language?: string | undefined;
|
|
4414
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4415
|
-
readonly maxRating?: number | undefined;
|
|
4416
|
-
readonly allowHalf?: boolean | undefined;
|
|
4417
|
-
readonly displayMap?: boolean | undefined;
|
|
4418
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4419
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4420
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4421
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4422
|
-
readonly presetColors?: string[] | undefined;
|
|
4423
|
-
readonly step?: number | undefined;
|
|
4424
|
-
readonly showValue?: boolean | undefined;
|
|
4425
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4426
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4427
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4428
|
-
readonly displayValue?: boolean | undefined;
|
|
4429
|
-
readonly allowScanning?: boolean | undefined;
|
|
4430
|
-
readonly currencyConfig?: {
|
|
4431
|
-
precision: number;
|
|
4432
|
-
currencyMode: "fixed" | "dynamic";
|
|
4433
|
-
defaultCurrency: string;
|
|
4434
|
-
} | undefined;
|
|
4435
|
-
readonly vectorConfig?: {
|
|
4436
|
-
dimensions: number;
|
|
4437
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4438
|
-
normalized: boolean;
|
|
4439
|
-
indexed: boolean;
|
|
4440
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4441
|
-
} | undefined;
|
|
4442
|
-
readonly fileAttachmentConfig?: {
|
|
4443
|
-
virusScan: boolean;
|
|
4444
|
-
virusScanOnUpload: boolean;
|
|
4445
|
-
quarantineOnThreat: boolean;
|
|
4446
|
-
allowMultiple: boolean;
|
|
4447
|
-
allowReplace: boolean;
|
|
4448
|
-
allowDelete: boolean;
|
|
4449
|
-
requireUpload: boolean;
|
|
4450
|
-
extractMetadata: boolean;
|
|
4451
|
-
extractText: boolean;
|
|
4452
|
-
versioningEnabled: boolean;
|
|
4453
|
-
publicRead: boolean;
|
|
4454
|
-
presignedUrlExpiry: number;
|
|
4455
|
-
minSize?: number | undefined;
|
|
4456
|
-
maxSize?: number | undefined;
|
|
4457
|
-
allowedTypes?: string[] | undefined;
|
|
4458
|
-
blockedTypes?: string[] | undefined;
|
|
4459
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4460
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4461
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4462
|
-
storageProvider?: string | undefined;
|
|
4463
|
-
storageBucket?: string | undefined;
|
|
4464
|
-
storagePrefix?: string | undefined;
|
|
4465
|
-
imageValidation?: {
|
|
4466
|
-
generateThumbnails: boolean;
|
|
4467
|
-
preserveMetadata: boolean;
|
|
4468
|
-
autoRotate: boolean;
|
|
4469
|
-
minWidth?: number | undefined;
|
|
4470
|
-
maxWidth?: number | undefined;
|
|
4471
|
-
minHeight?: number | undefined;
|
|
4472
|
-
maxHeight?: number | undefined;
|
|
4473
|
-
aspectRatio?: string | undefined;
|
|
4474
|
-
thumbnailSizes?: {
|
|
4475
|
-
name: string;
|
|
4476
|
-
width: number;
|
|
4477
|
-
height: number;
|
|
4478
|
-
crop: boolean;
|
|
4479
|
-
}[] | undefined;
|
|
4480
|
-
} | undefined;
|
|
4481
|
-
maxVersions?: number | undefined;
|
|
4482
|
-
} | undefined;
|
|
4483
|
-
readonly maskingRule?: {
|
|
4484
|
-
field: string;
|
|
4485
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4486
|
-
preserveFormat: boolean;
|
|
4487
|
-
preserveLength: boolean;
|
|
4488
|
-
pattern?: string | undefined;
|
|
4489
|
-
roles?: string[] | undefined;
|
|
4490
|
-
exemptRoles?: string[] | undefined;
|
|
4491
|
-
} | undefined;
|
|
4492
|
-
readonly auditTrail?: boolean | undefined;
|
|
4493
|
-
readonly cached?: {
|
|
4494
|
-
enabled: boolean;
|
|
4495
|
-
ttl: number;
|
|
4496
|
-
invalidateOn: string[];
|
|
4497
|
-
} | undefined;
|
|
4498
|
-
readonly dataQuality?: {
|
|
4499
|
-
uniqueness: boolean;
|
|
4500
|
-
completeness: number;
|
|
4501
|
-
accuracy?: {
|
|
4502
|
-
source: string;
|
|
4503
|
-
threshold: number;
|
|
4504
|
-
} | undefined;
|
|
4505
|
-
} | undefined;
|
|
4506
|
-
readonly conditionalRequired?: {
|
|
4507
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4508
|
-
source?: string | undefined;
|
|
4509
|
-
ast?: unknown;
|
|
4510
|
-
meta?: {
|
|
4511
|
-
rationale?: string | undefined;
|
|
4512
|
-
generatedBy?: string | undefined;
|
|
4513
|
-
} | undefined;
|
|
4514
|
-
} | undefined;
|
|
4515
|
-
readonly sortable?: boolean | undefined;
|
|
4516
|
-
readonly inlineHelpText?: string | undefined;
|
|
4517
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4518
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4519
|
-
readonly autonumberFormat?: string | undefined;
|
|
4520
|
-
readonly index?: boolean | undefined;
|
|
4521
|
-
readonly type: "text";
|
|
4522
|
-
};
|
|
4523
|
-
readonly url: {
|
|
4524
|
-
readonly readonly?: boolean | undefined;
|
|
4525
|
-
readonly format?: string | undefined;
|
|
4526
|
-
readonly options?: {
|
|
4527
|
-
label: string;
|
|
4528
|
-
value: string;
|
|
4529
|
-
color?: string | undefined;
|
|
4530
|
-
default?: boolean | undefined;
|
|
4531
|
-
}[] | undefined;
|
|
4532
|
-
readonly description?: string | undefined;
|
|
4533
|
-
readonly label?: string | undefined;
|
|
4534
|
-
readonly name?: string | undefined;
|
|
4535
|
-
readonly precision?: number | undefined;
|
|
4536
|
-
readonly required?: boolean | undefined;
|
|
4537
|
-
readonly multiple?: boolean | undefined;
|
|
4538
|
-
readonly dependencies?: string[] | undefined;
|
|
4539
|
-
readonly theme?: string | undefined;
|
|
4540
|
-
readonly externalId?: boolean | undefined;
|
|
4541
|
-
readonly defaultValue?: unknown;
|
|
4542
|
-
readonly group?: string | undefined;
|
|
4543
|
-
readonly hidden?: boolean | undefined;
|
|
4544
|
-
readonly system?: boolean | undefined;
|
|
4545
|
-
readonly min?: number | undefined;
|
|
4546
|
-
readonly max?: number | undefined;
|
|
4547
|
-
readonly encryptionConfig?: {
|
|
4548
|
-
enabled: boolean;
|
|
4549
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4550
|
-
keyManagement: {
|
|
4551
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4552
|
-
keyId?: string | undefined;
|
|
4553
|
-
rotationPolicy?: {
|
|
4554
|
-
enabled: boolean;
|
|
4555
|
-
frequencyDays: number;
|
|
4556
|
-
retainOldVersions: number;
|
|
4557
|
-
autoRotate: boolean;
|
|
4558
|
-
} | undefined;
|
|
4559
|
-
};
|
|
4560
|
-
scope: "record" | "field" | "table" | "database";
|
|
4561
|
-
deterministicEncryption: boolean;
|
|
4562
|
-
searchableEncryption: boolean;
|
|
4563
|
-
} | undefined;
|
|
4564
|
-
readonly columnName?: string | undefined;
|
|
4565
|
-
readonly searchable?: boolean | undefined;
|
|
4566
|
-
readonly unique?: boolean | undefined;
|
|
4567
|
-
readonly maxLength?: number | undefined;
|
|
4568
|
-
readonly minLength?: number | undefined;
|
|
4569
|
-
readonly scale?: number | undefined;
|
|
4570
|
-
readonly reference?: string | undefined;
|
|
4571
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4572
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4573
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4574
|
-
readonly expression?: {
|
|
4575
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4576
|
-
source?: string | undefined;
|
|
4577
|
-
ast?: unknown;
|
|
4578
|
-
meta?: {
|
|
4579
|
-
rationale?: string | undefined;
|
|
4580
|
-
generatedBy?: string | undefined;
|
|
4581
|
-
} | undefined;
|
|
4582
|
-
} | undefined;
|
|
4583
|
-
readonly summaryOperations?: {
|
|
4584
|
-
object: string;
|
|
4585
|
-
field: string;
|
|
4586
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4587
|
-
} | undefined;
|
|
4588
|
-
readonly language?: string | undefined;
|
|
4589
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4590
|
-
readonly maxRating?: number | undefined;
|
|
4591
|
-
readonly allowHalf?: boolean | undefined;
|
|
4592
|
-
readonly displayMap?: boolean | undefined;
|
|
4593
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4594
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4595
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4596
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4597
|
-
readonly presetColors?: string[] | undefined;
|
|
4598
|
-
readonly step?: number | undefined;
|
|
4599
|
-
readonly showValue?: boolean | undefined;
|
|
4600
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4601
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4602
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4603
|
-
readonly displayValue?: boolean | undefined;
|
|
4604
|
-
readonly allowScanning?: boolean | undefined;
|
|
4605
|
-
readonly currencyConfig?: {
|
|
4606
|
-
precision: number;
|
|
4607
|
-
currencyMode: "fixed" | "dynamic";
|
|
4608
|
-
defaultCurrency: string;
|
|
4609
|
-
} | undefined;
|
|
4610
|
-
readonly vectorConfig?: {
|
|
4611
|
-
dimensions: number;
|
|
4612
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4613
|
-
normalized: boolean;
|
|
4614
|
-
indexed: boolean;
|
|
4615
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4616
|
-
} | undefined;
|
|
4617
|
-
readonly fileAttachmentConfig?: {
|
|
4618
|
-
virusScan: boolean;
|
|
4619
|
-
virusScanOnUpload: boolean;
|
|
4620
|
-
quarantineOnThreat: boolean;
|
|
4621
|
-
allowMultiple: boolean;
|
|
4622
|
-
allowReplace: boolean;
|
|
4623
|
-
allowDelete: boolean;
|
|
4624
|
-
requireUpload: boolean;
|
|
4625
|
-
extractMetadata: boolean;
|
|
4626
|
-
extractText: boolean;
|
|
4627
|
-
versioningEnabled: boolean;
|
|
4628
|
-
publicRead: boolean;
|
|
4629
|
-
presignedUrlExpiry: number;
|
|
4630
|
-
minSize?: number | undefined;
|
|
4631
|
-
maxSize?: number | undefined;
|
|
4632
|
-
allowedTypes?: string[] | undefined;
|
|
4633
|
-
blockedTypes?: string[] | undefined;
|
|
4634
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4635
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4636
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4637
|
-
storageProvider?: string | undefined;
|
|
4638
|
-
storageBucket?: string | undefined;
|
|
4639
|
-
storagePrefix?: string | undefined;
|
|
4640
|
-
imageValidation?: {
|
|
4641
|
-
generateThumbnails: boolean;
|
|
4642
|
-
preserveMetadata: boolean;
|
|
4643
|
-
autoRotate: boolean;
|
|
4644
|
-
minWidth?: number | undefined;
|
|
4645
|
-
maxWidth?: number | undefined;
|
|
4646
|
-
minHeight?: number | undefined;
|
|
4647
|
-
maxHeight?: number | undefined;
|
|
4648
|
-
aspectRatio?: string | undefined;
|
|
4649
|
-
thumbnailSizes?: {
|
|
4650
|
-
name: string;
|
|
4651
|
-
width: number;
|
|
4652
|
-
height: number;
|
|
4653
|
-
crop: boolean;
|
|
4654
|
-
}[] | undefined;
|
|
4655
|
-
} | undefined;
|
|
4656
|
-
maxVersions?: number | undefined;
|
|
4657
|
-
} | undefined;
|
|
4658
|
-
readonly maskingRule?: {
|
|
4659
|
-
field: string;
|
|
4660
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4661
|
-
preserveFormat: boolean;
|
|
4662
|
-
preserveLength: boolean;
|
|
4663
|
-
pattern?: string | undefined;
|
|
4664
|
-
roles?: string[] | undefined;
|
|
4665
|
-
exemptRoles?: string[] | undefined;
|
|
4666
|
-
} | undefined;
|
|
4667
|
-
readonly auditTrail?: boolean | undefined;
|
|
4668
|
-
readonly cached?: {
|
|
4669
|
-
enabled: boolean;
|
|
4670
|
-
ttl: number;
|
|
4671
|
-
invalidateOn: string[];
|
|
4672
|
-
} | undefined;
|
|
4673
|
-
readonly dataQuality?: {
|
|
4674
|
-
uniqueness: boolean;
|
|
4675
|
-
completeness: number;
|
|
4676
|
-
accuracy?: {
|
|
4677
|
-
source: string;
|
|
4678
|
-
threshold: number;
|
|
4679
|
-
} | undefined;
|
|
4680
|
-
} | undefined;
|
|
4681
|
-
readonly conditionalRequired?: {
|
|
4682
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4683
|
-
source?: string | undefined;
|
|
4684
|
-
ast?: unknown;
|
|
4685
|
-
meta?: {
|
|
4686
|
-
rationale?: string | undefined;
|
|
4687
|
-
generatedBy?: string | undefined;
|
|
4688
|
-
} | undefined;
|
|
4689
|
-
} | undefined;
|
|
4690
|
-
readonly sortable?: boolean | undefined;
|
|
4691
|
-
readonly inlineHelpText?: string | undefined;
|
|
4692
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4693
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4694
|
-
readonly autonumberFormat?: string | undefined;
|
|
4695
|
-
readonly index?: boolean | undefined;
|
|
4696
|
-
readonly type: "text";
|
|
4697
|
-
};
|
|
4698
|
-
readonly method: {
|
|
4699
|
-
readonly readonly?: boolean | undefined;
|
|
4700
|
-
readonly format?: string | undefined;
|
|
4701
|
-
readonly options?: {
|
|
4702
|
-
label: string;
|
|
4703
|
-
value: string;
|
|
4704
|
-
color?: string | undefined;
|
|
4705
|
-
default?: boolean | undefined;
|
|
4706
|
-
}[] | undefined;
|
|
4707
|
-
readonly description?: string | undefined;
|
|
4708
|
-
readonly label?: string | undefined;
|
|
4709
|
-
readonly name?: string | undefined;
|
|
4710
|
-
readonly precision?: number | undefined;
|
|
4711
|
-
readonly required?: boolean | undefined;
|
|
4712
|
-
readonly multiple?: boolean | undefined;
|
|
4713
|
-
readonly dependencies?: string[] | undefined;
|
|
4714
|
-
readonly theme?: string | undefined;
|
|
4715
|
-
readonly externalId?: boolean | undefined;
|
|
4716
|
-
readonly defaultValue?: unknown;
|
|
4717
|
-
readonly group?: string | undefined;
|
|
4718
|
-
readonly hidden?: boolean | undefined;
|
|
4719
|
-
readonly system?: boolean | undefined;
|
|
4720
|
-
readonly min?: number | undefined;
|
|
4721
|
-
readonly max?: number | undefined;
|
|
4722
|
-
readonly encryptionConfig?: {
|
|
4723
|
-
enabled: boolean;
|
|
4724
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4725
|
-
keyManagement: {
|
|
4726
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4727
|
-
keyId?: string | undefined;
|
|
4728
|
-
rotationPolicy?: {
|
|
4729
|
-
enabled: boolean;
|
|
4730
|
-
frequencyDays: number;
|
|
4731
|
-
retainOldVersions: number;
|
|
4732
|
-
autoRotate: boolean;
|
|
4733
|
-
} | undefined;
|
|
4734
|
-
};
|
|
4735
|
-
scope: "record" | "field" | "table" | "database";
|
|
4736
|
-
deterministicEncryption: boolean;
|
|
4737
|
-
searchableEncryption: boolean;
|
|
4738
|
-
} | undefined;
|
|
4739
|
-
readonly columnName?: string | undefined;
|
|
4740
|
-
readonly searchable?: boolean | undefined;
|
|
4741
|
-
readonly unique?: boolean | undefined;
|
|
4742
|
-
readonly maxLength?: number | undefined;
|
|
4743
|
-
readonly minLength?: number | undefined;
|
|
4744
|
-
readonly scale?: number | undefined;
|
|
4745
|
-
readonly reference?: string | undefined;
|
|
4746
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4747
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4748
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4749
|
-
readonly expression?: {
|
|
4750
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4751
|
-
source?: string | undefined;
|
|
4752
|
-
ast?: unknown;
|
|
4753
|
-
meta?: {
|
|
4754
|
-
rationale?: string | undefined;
|
|
4755
|
-
generatedBy?: string | undefined;
|
|
4756
|
-
} | undefined;
|
|
4757
|
-
} | undefined;
|
|
4758
|
-
readonly summaryOperations?: {
|
|
4759
|
-
object: string;
|
|
4760
|
-
field: string;
|
|
4761
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4762
|
-
} | undefined;
|
|
4763
|
-
readonly language?: string | undefined;
|
|
4764
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4765
|
-
readonly maxRating?: number | undefined;
|
|
4766
|
-
readonly allowHalf?: boolean | undefined;
|
|
4767
|
-
readonly displayMap?: boolean | undefined;
|
|
4768
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4769
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4770
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4771
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4772
|
-
readonly presetColors?: string[] | undefined;
|
|
4773
|
-
readonly step?: number | undefined;
|
|
4774
|
-
readonly showValue?: boolean | undefined;
|
|
4775
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4776
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4777
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4778
|
-
readonly displayValue?: boolean | undefined;
|
|
4779
|
-
readonly allowScanning?: boolean | undefined;
|
|
4780
|
-
readonly currencyConfig?: {
|
|
4781
|
-
precision: number;
|
|
4782
|
-
currencyMode: "fixed" | "dynamic";
|
|
4783
|
-
defaultCurrency: string;
|
|
4784
|
-
} | undefined;
|
|
4785
|
-
readonly vectorConfig?: {
|
|
4786
|
-
dimensions: number;
|
|
4787
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4788
|
-
normalized: boolean;
|
|
4789
|
-
indexed: boolean;
|
|
4790
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4791
|
-
} | undefined;
|
|
4792
|
-
readonly fileAttachmentConfig?: {
|
|
4793
|
-
virusScan: boolean;
|
|
4794
|
-
virusScanOnUpload: boolean;
|
|
4795
|
-
quarantineOnThreat: boolean;
|
|
4796
|
-
allowMultiple: boolean;
|
|
4797
|
-
allowReplace: boolean;
|
|
4798
|
-
allowDelete: boolean;
|
|
4799
|
-
requireUpload: boolean;
|
|
4800
|
-
extractMetadata: boolean;
|
|
4801
|
-
extractText: boolean;
|
|
4802
|
-
versioningEnabled: boolean;
|
|
4803
|
-
publicRead: boolean;
|
|
4804
|
-
presignedUrlExpiry: number;
|
|
4805
|
-
minSize?: number | undefined;
|
|
4806
|
-
maxSize?: number | undefined;
|
|
4807
|
-
allowedTypes?: string[] | undefined;
|
|
4808
|
-
blockedTypes?: string[] | undefined;
|
|
4809
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4810
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4811
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4812
|
-
storageProvider?: string | undefined;
|
|
4813
|
-
storageBucket?: string | undefined;
|
|
4814
|
-
storagePrefix?: string | undefined;
|
|
4815
|
-
imageValidation?: {
|
|
4816
|
-
generateThumbnails: boolean;
|
|
4817
|
-
preserveMetadata: boolean;
|
|
4818
|
-
autoRotate: boolean;
|
|
4819
|
-
minWidth?: number | undefined;
|
|
4820
|
-
maxWidth?: number | undefined;
|
|
4821
|
-
minHeight?: number | undefined;
|
|
4822
|
-
maxHeight?: number | undefined;
|
|
4823
|
-
aspectRatio?: string | undefined;
|
|
4824
|
-
thumbnailSizes?: {
|
|
4825
|
-
name: string;
|
|
4826
|
-
width: number;
|
|
4827
|
-
height: number;
|
|
4828
|
-
crop: boolean;
|
|
4829
|
-
}[] | undefined;
|
|
4830
|
-
} | undefined;
|
|
4831
|
-
maxVersions?: number | undefined;
|
|
4832
|
-
} | undefined;
|
|
4833
|
-
readonly maskingRule?: {
|
|
4834
|
-
field: string;
|
|
4835
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4836
|
-
preserveFormat: boolean;
|
|
4837
|
-
preserveLength: boolean;
|
|
4838
|
-
pattern?: string | undefined;
|
|
4839
|
-
roles?: string[] | undefined;
|
|
4840
|
-
exemptRoles?: string[] | undefined;
|
|
4841
|
-
} | undefined;
|
|
4842
|
-
readonly auditTrail?: boolean | undefined;
|
|
4843
|
-
readonly cached?: {
|
|
4844
|
-
enabled: boolean;
|
|
4845
|
-
ttl: number;
|
|
4846
|
-
invalidateOn: string[];
|
|
4847
|
-
} | undefined;
|
|
4848
|
-
readonly dataQuality?: {
|
|
4849
|
-
uniqueness: boolean;
|
|
4850
|
-
completeness: number;
|
|
4851
|
-
accuracy?: {
|
|
4852
|
-
source: string;
|
|
4853
|
-
threshold: number;
|
|
4854
|
-
} | undefined;
|
|
4855
|
-
} | undefined;
|
|
4856
|
-
readonly conditionalRequired?: {
|
|
4857
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4858
|
-
source?: string | undefined;
|
|
4859
|
-
ast?: unknown;
|
|
4860
|
-
meta?: {
|
|
4861
|
-
rationale?: string | undefined;
|
|
4862
|
-
generatedBy?: string | undefined;
|
|
4863
|
-
} | undefined;
|
|
4864
|
-
} | undefined;
|
|
4865
|
-
readonly sortable?: boolean | undefined;
|
|
4866
|
-
readonly inlineHelpText?: string | undefined;
|
|
4867
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4868
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4869
|
-
readonly autonumberFormat?: string | undefined;
|
|
4870
|
-
readonly index?: boolean | undefined;
|
|
4871
|
-
readonly type: "text";
|
|
4872
|
-
};
|
|
4873
|
-
readonly headers_json: {
|
|
4874
|
-
readonly readonly?: boolean | undefined;
|
|
4875
|
-
readonly format?: string | undefined;
|
|
4876
|
-
readonly options?: {
|
|
4877
|
-
label: string;
|
|
4878
|
-
value: string;
|
|
4879
|
-
color?: string | undefined;
|
|
4880
|
-
default?: boolean | undefined;
|
|
4881
|
-
}[] | undefined;
|
|
4882
|
-
readonly description?: string | undefined;
|
|
4883
|
-
readonly label?: string | undefined;
|
|
4884
|
-
readonly name?: string | undefined;
|
|
4885
|
-
readonly precision?: number | undefined;
|
|
4886
|
-
readonly required?: boolean | undefined;
|
|
4887
|
-
readonly multiple?: boolean | undefined;
|
|
4888
|
-
readonly dependencies?: string[] | undefined;
|
|
4889
|
-
readonly theme?: string | undefined;
|
|
4890
|
-
readonly externalId?: boolean | undefined;
|
|
4891
|
-
readonly defaultValue?: unknown;
|
|
4892
|
-
readonly group?: string | undefined;
|
|
4893
|
-
readonly hidden?: boolean | undefined;
|
|
4894
|
-
readonly system?: boolean | undefined;
|
|
4895
|
-
readonly min?: number | undefined;
|
|
4896
|
-
readonly max?: number | undefined;
|
|
4897
|
-
readonly encryptionConfig?: {
|
|
4898
|
-
enabled: boolean;
|
|
4899
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4900
|
-
keyManagement: {
|
|
4901
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4902
|
-
keyId?: string | undefined;
|
|
4903
|
-
rotationPolicy?: {
|
|
4904
|
-
enabled: boolean;
|
|
4905
|
-
frequencyDays: number;
|
|
4906
|
-
retainOldVersions: number;
|
|
4907
|
-
autoRotate: boolean;
|
|
4908
|
-
} | undefined;
|
|
4909
|
-
};
|
|
4910
|
-
scope: "record" | "field" | "table" | "database";
|
|
4911
|
-
deterministicEncryption: boolean;
|
|
4912
|
-
searchableEncryption: boolean;
|
|
4913
|
-
} | undefined;
|
|
4914
|
-
readonly columnName?: string | undefined;
|
|
4915
|
-
readonly searchable?: boolean | undefined;
|
|
4916
|
-
readonly unique?: boolean | undefined;
|
|
4917
|
-
readonly maxLength?: number | undefined;
|
|
4918
|
-
readonly minLength?: number | undefined;
|
|
4919
|
-
readonly scale?: number | undefined;
|
|
4920
|
-
readonly reference?: string | undefined;
|
|
4921
|
-
readonly referenceFilters?: string[] | undefined;
|
|
4922
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4923
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4924
|
-
readonly expression?: {
|
|
4925
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4926
|
-
source?: string | undefined;
|
|
4927
|
-
ast?: unknown;
|
|
4928
|
-
meta?: {
|
|
4929
|
-
rationale?: string | undefined;
|
|
4930
|
-
generatedBy?: string | undefined;
|
|
4931
|
-
} | undefined;
|
|
4932
|
-
} | undefined;
|
|
4933
|
-
readonly summaryOperations?: {
|
|
4934
|
-
object: string;
|
|
4935
|
-
field: string;
|
|
4936
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4937
|
-
} | undefined;
|
|
4938
|
-
readonly language?: string | undefined;
|
|
4939
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4940
|
-
readonly maxRating?: number | undefined;
|
|
4941
|
-
readonly allowHalf?: boolean | undefined;
|
|
4942
|
-
readonly displayMap?: boolean | undefined;
|
|
4943
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4944
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4945
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4946
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4947
|
-
readonly presetColors?: string[] | undefined;
|
|
4948
|
-
readonly step?: number | undefined;
|
|
4949
|
-
readonly showValue?: boolean | undefined;
|
|
4950
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4951
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4952
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4953
|
-
readonly displayValue?: boolean | undefined;
|
|
4954
|
-
readonly allowScanning?: boolean | undefined;
|
|
4955
|
-
readonly currencyConfig?: {
|
|
4956
|
-
precision: number;
|
|
4957
|
-
currencyMode: "fixed" | "dynamic";
|
|
4958
|
-
defaultCurrency: string;
|
|
4959
|
-
} | undefined;
|
|
4960
|
-
readonly vectorConfig?: {
|
|
4961
|
-
dimensions: number;
|
|
4962
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
4963
|
-
normalized: boolean;
|
|
4964
|
-
indexed: boolean;
|
|
4965
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
4966
|
-
} | undefined;
|
|
4967
|
-
readonly fileAttachmentConfig?: {
|
|
4968
|
-
virusScan: boolean;
|
|
4969
|
-
virusScanOnUpload: boolean;
|
|
4970
|
-
quarantineOnThreat: boolean;
|
|
4971
|
-
allowMultiple: boolean;
|
|
4972
|
-
allowReplace: boolean;
|
|
4973
|
-
allowDelete: boolean;
|
|
4974
|
-
requireUpload: boolean;
|
|
4975
|
-
extractMetadata: boolean;
|
|
4976
|
-
extractText: boolean;
|
|
4977
|
-
versioningEnabled: boolean;
|
|
4978
|
-
publicRead: boolean;
|
|
4979
|
-
presignedUrlExpiry: number;
|
|
4980
|
-
minSize?: number | undefined;
|
|
4981
|
-
maxSize?: number | undefined;
|
|
4982
|
-
allowedTypes?: string[] | undefined;
|
|
4983
|
-
blockedTypes?: string[] | undefined;
|
|
4984
|
-
allowedMimeTypes?: string[] | undefined;
|
|
4985
|
-
blockedMimeTypes?: string[] | undefined;
|
|
4986
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
4987
|
-
storageProvider?: string | undefined;
|
|
4988
|
-
storageBucket?: string | undefined;
|
|
4989
|
-
storagePrefix?: string | undefined;
|
|
4990
|
-
imageValidation?: {
|
|
4991
|
-
generateThumbnails: boolean;
|
|
4992
|
-
preserveMetadata: boolean;
|
|
4993
|
-
autoRotate: boolean;
|
|
4994
|
-
minWidth?: number | undefined;
|
|
4995
|
-
maxWidth?: number | undefined;
|
|
4996
|
-
minHeight?: number | undefined;
|
|
4997
|
-
maxHeight?: number | undefined;
|
|
4998
|
-
aspectRatio?: string | undefined;
|
|
4999
|
-
thumbnailSizes?: {
|
|
5000
|
-
name: string;
|
|
5001
|
-
width: number;
|
|
5002
|
-
height: number;
|
|
5003
|
-
crop: boolean;
|
|
5004
|
-
}[] | undefined;
|
|
5005
|
-
} | undefined;
|
|
5006
|
-
maxVersions?: number | undefined;
|
|
5007
|
-
} | undefined;
|
|
5008
|
-
readonly maskingRule?: {
|
|
5009
|
-
field: string;
|
|
5010
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5011
|
-
preserveFormat: boolean;
|
|
5012
|
-
preserveLength: boolean;
|
|
5013
|
-
pattern?: string | undefined;
|
|
5014
|
-
roles?: string[] | undefined;
|
|
5015
|
-
exemptRoles?: string[] | undefined;
|
|
5016
|
-
} | undefined;
|
|
5017
|
-
readonly auditTrail?: boolean | undefined;
|
|
5018
|
-
readonly cached?: {
|
|
5019
|
-
enabled: boolean;
|
|
5020
|
-
ttl: number;
|
|
5021
|
-
invalidateOn: string[];
|
|
5022
|
-
} | undefined;
|
|
5023
|
-
readonly dataQuality?: {
|
|
5024
|
-
uniqueness: boolean;
|
|
5025
|
-
completeness: number;
|
|
5026
|
-
accuracy?: {
|
|
5027
|
-
source: string;
|
|
5028
|
-
threshold: number;
|
|
5029
|
-
} | undefined;
|
|
5030
|
-
} | undefined;
|
|
5031
|
-
readonly conditionalRequired?: {
|
|
5032
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5033
|
-
source?: string | undefined;
|
|
5034
|
-
ast?: unknown;
|
|
5035
|
-
meta?: {
|
|
5036
|
-
rationale?: string | undefined;
|
|
5037
|
-
generatedBy?: string | undefined;
|
|
5038
|
-
} | undefined;
|
|
5039
|
-
} | undefined;
|
|
5040
|
-
readonly sortable?: boolean | undefined;
|
|
5041
|
-
readonly inlineHelpText?: string | undefined;
|
|
5042
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5043
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5044
|
-
readonly autonumberFormat?: string | undefined;
|
|
5045
|
-
readonly index?: boolean | undefined;
|
|
5046
|
-
readonly type: "textarea";
|
|
5047
|
-
};
|
|
5048
|
-
readonly secret: {
|
|
5049
|
-
readonly readonly?: boolean | undefined;
|
|
5050
|
-
readonly format?: string | undefined;
|
|
5051
|
-
readonly options?: {
|
|
5052
|
-
label: string;
|
|
5053
|
-
value: string;
|
|
5054
|
-
color?: string | undefined;
|
|
5055
|
-
default?: boolean | undefined;
|
|
5056
|
-
}[] | undefined;
|
|
5057
|
-
readonly description?: string | undefined;
|
|
5058
|
-
readonly label?: string | undefined;
|
|
5059
|
-
readonly name?: string | undefined;
|
|
5060
|
-
readonly precision?: number | undefined;
|
|
5061
|
-
readonly required?: boolean | undefined;
|
|
5062
|
-
readonly multiple?: boolean | undefined;
|
|
5063
|
-
readonly dependencies?: string[] | undefined;
|
|
5064
|
-
readonly theme?: string | undefined;
|
|
5065
|
-
readonly externalId?: boolean | undefined;
|
|
5066
|
-
readonly defaultValue?: unknown;
|
|
5067
|
-
readonly group?: string | undefined;
|
|
5068
|
-
readonly hidden?: boolean | undefined;
|
|
5069
|
-
readonly system?: boolean | undefined;
|
|
5070
|
-
readonly min?: number | undefined;
|
|
5071
|
-
readonly max?: number | undefined;
|
|
5072
|
-
readonly encryptionConfig?: {
|
|
5073
|
-
enabled: boolean;
|
|
5074
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5075
|
-
keyManagement: {
|
|
5076
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5077
|
-
keyId?: string | undefined;
|
|
5078
|
-
rotationPolicy?: {
|
|
5079
|
-
enabled: boolean;
|
|
5080
|
-
frequencyDays: number;
|
|
5081
|
-
retainOldVersions: number;
|
|
5082
|
-
autoRotate: boolean;
|
|
5083
|
-
} | undefined;
|
|
5084
|
-
};
|
|
5085
|
-
scope: "record" | "field" | "table" | "database";
|
|
5086
|
-
deterministicEncryption: boolean;
|
|
5087
|
-
searchableEncryption: boolean;
|
|
5088
|
-
} | undefined;
|
|
5089
|
-
readonly columnName?: string | undefined;
|
|
5090
|
-
readonly searchable?: boolean | undefined;
|
|
5091
|
-
readonly unique?: boolean | undefined;
|
|
5092
|
-
readonly maxLength?: number | undefined;
|
|
5093
|
-
readonly minLength?: number | undefined;
|
|
5094
|
-
readonly scale?: number | undefined;
|
|
5095
|
-
readonly reference?: string | undefined;
|
|
5096
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5097
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5098
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5099
|
-
readonly expression?: {
|
|
5100
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5101
|
-
source?: string | undefined;
|
|
5102
|
-
ast?: unknown;
|
|
5103
|
-
meta?: {
|
|
5104
|
-
rationale?: string | undefined;
|
|
5105
|
-
generatedBy?: string | undefined;
|
|
5106
|
-
} | undefined;
|
|
5107
|
-
} | undefined;
|
|
5108
|
-
readonly summaryOperations?: {
|
|
5109
|
-
object: string;
|
|
5110
|
-
field: string;
|
|
5111
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5112
|
-
} | undefined;
|
|
5113
|
-
readonly language?: string | undefined;
|
|
5114
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5115
|
-
readonly maxRating?: number | undefined;
|
|
5116
|
-
readonly allowHalf?: boolean | undefined;
|
|
5117
|
-
readonly displayMap?: boolean | undefined;
|
|
5118
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5119
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5120
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5121
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5122
|
-
readonly presetColors?: string[] | undefined;
|
|
5123
|
-
readonly step?: number | undefined;
|
|
5124
|
-
readonly showValue?: boolean | undefined;
|
|
5125
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5126
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5127
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5128
|
-
readonly displayValue?: boolean | undefined;
|
|
5129
|
-
readonly allowScanning?: boolean | undefined;
|
|
5130
|
-
readonly currencyConfig?: {
|
|
5131
|
-
precision: number;
|
|
5132
|
-
currencyMode: "fixed" | "dynamic";
|
|
5133
|
-
defaultCurrency: string;
|
|
5134
|
-
} | undefined;
|
|
5135
|
-
readonly vectorConfig?: {
|
|
5136
|
-
dimensions: number;
|
|
5137
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5138
|
-
normalized: boolean;
|
|
5139
|
-
indexed: boolean;
|
|
5140
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5141
|
-
} | undefined;
|
|
5142
|
-
readonly fileAttachmentConfig?: {
|
|
5143
|
-
virusScan: boolean;
|
|
5144
|
-
virusScanOnUpload: boolean;
|
|
5145
|
-
quarantineOnThreat: boolean;
|
|
5146
|
-
allowMultiple: boolean;
|
|
5147
|
-
allowReplace: boolean;
|
|
5148
|
-
allowDelete: boolean;
|
|
5149
|
-
requireUpload: boolean;
|
|
5150
|
-
extractMetadata: boolean;
|
|
5151
|
-
extractText: boolean;
|
|
5152
|
-
versioningEnabled: boolean;
|
|
5153
|
-
publicRead: boolean;
|
|
5154
|
-
presignedUrlExpiry: number;
|
|
5155
|
-
minSize?: number | undefined;
|
|
5156
|
-
maxSize?: number | undefined;
|
|
5157
|
-
allowedTypes?: string[] | undefined;
|
|
5158
|
-
blockedTypes?: string[] | undefined;
|
|
5159
|
-
allowedMimeTypes?: string[] | undefined;
|
|
5160
|
-
blockedMimeTypes?: string[] | undefined;
|
|
5161
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5162
|
-
storageProvider?: string | undefined;
|
|
5163
|
-
storageBucket?: string | undefined;
|
|
5164
|
-
storagePrefix?: string | undefined;
|
|
5165
|
-
imageValidation?: {
|
|
5166
|
-
generateThumbnails: boolean;
|
|
5167
|
-
preserveMetadata: boolean;
|
|
5168
|
-
autoRotate: boolean;
|
|
5169
|
-
minWidth?: number | undefined;
|
|
5170
|
-
maxWidth?: number | undefined;
|
|
5171
|
-
minHeight?: number | undefined;
|
|
5172
|
-
maxHeight?: number | undefined;
|
|
5173
|
-
aspectRatio?: string | undefined;
|
|
5174
|
-
thumbnailSizes?: {
|
|
5175
|
-
name: string;
|
|
5176
|
-
width: number;
|
|
5177
|
-
height: number;
|
|
5178
|
-
crop: boolean;
|
|
5179
|
-
}[] | undefined;
|
|
5180
|
-
} | undefined;
|
|
5181
|
-
maxVersions?: number | undefined;
|
|
5182
|
-
} | undefined;
|
|
5183
|
-
readonly maskingRule?: {
|
|
5184
|
-
field: string;
|
|
5185
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5186
|
-
preserveFormat: boolean;
|
|
5187
|
-
preserveLength: boolean;
|
|
5188
|
-
pattern?: string | undefined;
|
|
5189
|
-
roles?: string[] | undefined;
|
|
5190
|
-
exemptRoles?: string[] | undefined;
|
|
5191
|
-
} | undefined;
|
|
5192
|
-
readonly auditTrail?: boolean | undefined;
|
|
5193
|
-
readonly cached?: {
|
|
5194
|
-
enabled: boolean;
|
|
5195
|
-
ttl: number;
|
|
5196
|
-
invalidateOn: string[];
|
|
5197
|
-
} | undefined;
|
|
5198
|
-
readonly dataQuality?: {
|
|
5199
|
-
uniqueness: boolean;
|
|
5200
|
-
completeness: number;
|
|
5201
|
-
accuracy?: {
|
|
5202
|
-
source: string;
|
|
5203
|
-
threshold: number;
|
|
5204
|
-
} | undefined;
|
|
5205
|
-
} | undefined;
|
|
5206
|
-
readonly conditionalRequired?: {
|
|
5207
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5208
|
-
source?: string | undefined;
|
|
5209
|
-
ast?: unknown;
|
|
5210
|
-
meta?: {
|
|
5211
|
-
rationale?: string | undefined;
|
|
5212
|
-
generatedBy?: string | undefined;
|
|
5213
|
-
} | undefined;
|
|
5214
|
-
} | undefined;
|
|
5215
|
-
readonly sortable?: boolean | undefined;
|
|
5216
|
-
readonly inlineHelpText?: string | undefined;
|
|
5217
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5218
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5219
|
-
readonly autonumberFormat?: string | undefined;
|
|
5220
|
-
readonly index?: boolean | undefined;
|
|
5221
|
-
readonly type: "text";
|
|
5222
|
-
};
|
|
5223
|
-
readonly timeout_ms: {
|
|
5224
|
-
readonly readonly?: boolean | undefined;
|
|
5225
|
-
readonly format?: string | undefined;
|
|
5226
|
-
readonly options?: {
|
|
5227
|
-
label: string;
|
|
5228
|
-
value: string;
|
|
5229
|
-
color?: string | undefined;
|
|
5230
|
-
default?: boolean | undefined;
|
|
5231
|
-
}[] | undefined;
|
|
5232
|
-
readonly description?: string | undefined;
|
|
5233
|
-
readonly label?: string | undefined;
|
|
5234
|
-
readonly name?: string | undefined;
|
|
5235
|
-
readonly precision?: number | undefined;
|
|
5236
|
-
readonly required?: boolean | undefined;
|
|
5237
|
-
readonly multiple?: boolean | undefined;
|
|
5238
|
-
readonly dependencies?: string[] | undefined;
|
|
5239
|
-
readonly theme?: string | undefined;
|
|
5240
|
-
readonly externalId?: boolean | undefined;
|
|
5241
|
-
readonly defaultValue?: unknown;
|
|
5242
|
-
readonly group?: string | undefined;
|
|
5243
|
-
readonly hidden?: boolean | undefined;
|
|
5244
|
-
readonly system?: boolean | undefined;
|
|
5245
|
-
readonly min?: number | undefined;
|
|
5246
|
-
readonly max?: number | undefined;
|
|
5247
|
-
readonly encryptionConfig?: {
|
|
5248
|
-
enabled: boolean;
|
|
5249
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5250
|
-
keyManagement: {
|
|
5251
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5252
|
-
keyId?: string | undefined;
|
|
5253
|
-
rotationPolicy?: {
|
|
5254
|
-
enabled: boolean;
|
|
5255
|
-
frequencyDays: number;
|
|
5256
|
-
retainOldVersions: number;
|
|
5257
|
-
autoRotate: boolean;
|
|
5258
|
-
} | undefined;
|
|
5259
|
-
};
|
|
5260
|
-
scope: "record" | "field" | "table" | "database";
|
|
5261
|
-
deterministicEncryption: boolean;
|
|
5262
|
-
searchableEncryption: boolean;
|
|
5263
|
-
} | undefined;
|
|
5264
|
-
readonly columnName?: string | undefined;
|
|
5265
|
-
readonly searchable?: boolean | undefined;
|
|
5266
|
-
readonly unique?: boolean | undefined;
|
|
5267
|
-
readonly maxLength?: number | undefined;
|
|
5268
|
-
readonly minLength?: number | undefined;
|
|
5269
|
-
readonly scale?: number | undefined;
|
|
5270
|
-
readonly reference?: string | undefined;
|
|
5271
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5272
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5273
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5274
|
-
readonly expression?: {
|
|
5275
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5276
|
-
source?: string | undefined;
|
|
5277
|
-
ast?: unknown;
|
|
5278
|
-
meta?: {
|
|
5279
|
-
rationale?: string | undefined;
|
|
5280
|
-
generatedBy?: string | undefined;
|
|
5281
|
-
} | undefined;
|
|
5282
|
-
} | undefined;
|
|
5283
|
-
readonly summaryOperations?: {
|
|
5284
|
-
object: string;
|
|
5285
|
-
field: string;
|
|
5286
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5287
|
-
} | undefined;
|
|
5288
|
-
readonly language?: string | undefined;
|
|
5289
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5290
|
-
readonly maxRating?: number | undefined;
|
|
5291
|
-
readonly allowHalf?: boolean | undefined;
|
|
5292
|
-
readonly displayMap?: boolean | undefined;
|
|
5293
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5294
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5295
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5296
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5297
|
-
readonly presetColors?: string[] | undefined;
|
|
5298
|
-
readonly step?: number | undefined;
|
|
5299
|
-
readonly showValue?: boolean | undefined;
|
|
5300
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5301
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5302
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5303
|
-
readonly displayValue?: boolean | undefined;
|
|
5304
|
-
readonly allowScanning?: boolean | undefined;
|
|
5305
|
-
readonly currencyConfig?: {
|
|
5306
|
-
precision: number;
|
|
5307
|
-
currencyMode: "fixed" | "dynamic";
|
|
5308
|
-
defaultCurrency: string;
|
|
5309
|
-
} | undefined;
|
|
5310
|
-
readonly vectorConfig?: {
|
|
5311
|
-
dimensions: number;
|
|
5312
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5313
|
-
normalized: boolean;
|
|
5314
|
-
indexed: boolean;
|
|
5315
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5316
|
-
} | undefined;
|
|
5317
|
-
readonly fileAttachmentConfig?: {
|
|
5318
|
-
virusScan: boolean;
|
|
5319
|
-
virusScanOnUpload: boolean;
|
|
5320
|
-
quarantineOnThreat: boolean;
|
|
5321
|
-
allowMultiple: boolean;
|
|
5322
|
-
allowReplace: boolean;
|
|
5323
|
-
allowDelete: boolean;
|
|
5324
|
-
requireUpload: boolean;
|
|
5325
|
-
extractMetadata: boolean;
|
|
5326
|
-
extractText: boolean;
|
|
5327
|
-
versioningEnabled: boolean;
|
|
5328
|
-
publicRead: boolean;
|
|
5329
|
-
presignedUrlExpiry: number;
|
|
5330
|
-
minSize?: number | undefined;
|
|
5331
|
-
maxSize?: number | undefined;
|
|
5332
|
-
allowedTypes?: string[] | undefined;
|
|
5333
|
-
blockedTypes?: string[] | undefined;
|
|
5334
|
-
allowedMimeTypes?: string[] | undefined;
|
|
5335
|
-
blockedMimeTypes?: string[] | undefined;
|
|
5336
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5337
|
-
storageProvider?: string | undefined;
|
|
5338
|
-
storageBucket?: string | undefined;
|
|
5339
|
-
storagePrefix?: string | undefined;
|
|
5340
|
-
imageValidation?: {
|
|
5341
|
-
generateThumbnails: boolean;
|
|
5342
|
-
preserveMetadata: boolean;
|
|
5343
|
-
autoRotate: boolean;
|
|
5344
|
-
minWidth?: number | undefined;
|
|
5345
|
-
maxWidth?: number | undefined;
|
|
5346
|
-
minHeight?: number | undefined;
|
|
5347
|
-
maxHeight?: number | undefined;
|
|
5348
|
-
aspectRatio?: string | undefined;
|
|
5349
|
-
thumbnailSizes?: {
|
|
5350
|
-
name: string;
|
|
5351
|
-
width: number;
|
|
5352
|
-
height: number;
|
|
5353
|
-
crop: boolean;
|
|
5354
|
-
}[] | undefined;
|
|
5355
|
-
} | undefined;
|
|
5356
|
-
maxVersions?: number | undefined;
|
|
5357
|
-
} | undefined;
|
|
5358
|
-
readonly maskingRule?: {
|
|
5359
|
-
field: string;
|
|
5360
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5361
|
-
preserveFormat: boolean;
|
|
5362
|
-
preserveLength: boolean;
|
|
5363
|
-
pattern?: string | undefined;
|
|
5364
|
-
roles?: string[] | undefined;
|
|
5365
|
-
exemptRoles?: string[] | undefined;
|
|
5366
|
-
} | undefined;
|
|
5367
|
-
readonly auditTrail?: boolean | undefined;
|
|
5368
|
-
readonly cached?: {
|
|
5369
|
-
enabled: boolean;
|
|
5370
|
-
ttl: number;
|
|
5371
|
-
invalidateOn: string[];
|
|
5372
|
-
} | undefined;
|
|
5373
|
-
readonly dataQuality?: {
|
|
5374
|
-
uniqueness: boolean;
|
|
5375
|
-
completeness: number;
|
|
5376
|
-
accuracy?: {
|
|
5377
|
-
source: string;
|
|
5378
|
-
threshold: number;
|
|
5379
|
-
} | undefined;
|
|
5380
|
-
} | undefined;
|
|
5381
|
-
readonly conditionalRequired?: {
|
|
5382
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5383
|
-
source?: string | undefined;
|
|
5384
|
-
ast?: unknown;
|
|
5385
|
-
meta?: {
|
|
5386
|
-
rationale?: string | undefined;
|
|
5387
|
-
generatedBy?: string | undefined;
|
|
5388
|
-
} | undefined;
|
|
5389
|
-
} | undefined;
|
|
5390
|
-
readonly sortable?: boolean | undefined;
|
|
5391
|
-
readonly inlineHelpText?: string | undefined;
|
|
5392
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5393
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5394
|
-
readonly autonumberFormat?: string | undefined;
|
|
5395
|
-
readonly index?: boolean | undefined;
|
|
5396
|
-
readonly type: "number";
|
|
5397
|
-
};
|
|
5398
|
-
readonly payload_json: {
|
|
5399
|
-
readonly readonly?: boolean | undefined;
|
|
5400
|
-
readonly format?: string | undefined;
|
|
5401
|
-
readonly options?: {
|
|
5402
|
-
label: string;
|
|
5403
|
-
value: string;
|
|
5404
|
-
color?: string | undefined;
|
|
5405
|
-
default?: boolean | undefined;
|
|
5406
|
-
}[] | undefined;
|
|
5407
|
-
readonly description?: string | undefined;
|
|
5408
|
-
readonly label?: string | undefined;
|
|
5409
|
-
readonly name?: string | undefined;
|
|
5410
|
-
readonly precision?: number | undefined;
|
|
5411
|
-
readonly required?: boolean | undefined;
|
|
5412
|
-
readonly multiple?: boolean | undefined;
|
|
5413
|
-
readonly dependencies?: string[] | undefined;
|
|
5414
|
-
readonly theme?: string | undefined;
|
|
5415
|
-
readonly externalId?: boolean | undefined;
|
|
5416
|
-
readonly defaultValue?: unknown;
|
|
5417
|
-
readonly group?: string | undefined;
|
|
5418
|
-
readonly hidden?: boolean | undefined;
|
|
5419
|
-
readonly system?: boolean | undefined;
|
|
5420
|
-
readonly min?: number | undefined;
|
|
5421
|
-
readonly max?: number | undefined;
|
|
5422
|
-
readonly encryptionConfig?: {
|
|
5423
|
-
enabled: boolean;
|
|
5424
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5425
|
-
keyManagement: {
|
|
5426
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5427
|
-
keyId?: string | undefined;
|
|
5428
|
-
rotationPolicy?: {
|
|
5429
|
-
enabled: boolean;
|
|
5430
|
-
frequencyDays: number;
|
|
5431
|
-
retainOldVersions: number;
|
|
5432
|
-
autoRotate: boolean;
|
|
5433
|
-
} | undefined;
|
|
5434
|
-
};
|
|
5435
|
-
scope: "record" | "field" | "table" | "database";
|
|
5436
|
-
deterministicEncryption: boolean;
|
|
5437
|
-
searchableEncryption: boolean;
|
|
5438
|
-
} | undefined;
|
|
5439
|
-
readonly columnName?: string | undefined;
|
|
5440
|
-
readonly searchable?: boolean | undefined;
|
|
5441
|
-
readonly unique?: boolean | undefined;
|
|
5442
|
-
readonly maxLength?: number | undefined;
|
|
5443
|
-
readonly minLength?: number | undefined;
|
|
5444
|
-
readonly scale?: number | undefined;
|
|
5445
|
-
readonly reference?: string | undefined;
|
|
5446
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5447
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5448
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5449
|
-
readonly expression?: {
|
|
5450
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5451
|
-
source?: string | undefined;
|
|
5452
|
-
ast?: unknown;
|
|
5453
|
-
meta?: {
|
|
5454
|
-
rationale?: string | undefined;
|
|
5455
|
-
generatedBy?: string | undefined;
|
|
5456
|
-
} | undefined;
|
|
5457
|
-
} | undefined;
|
|
5458
|
-
readonly summaryOperations?: {
|
|
5459
|
-
object: string;
|
|
5460
|
-
field: string;
|
|
5461
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5462
|
-
} | undefined;
|
|
5463
|
-
readonly language?: string | undefined;
|
|
5464
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5465
|
-
readonly maxRating?: number | undefined;
|
|
5466
|
-
readonly allowHalf?: boolean | undefined;
|
|
5467
|
-
readonly displayMap?: boolean | undefined;
|
|
5468
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5469
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5470
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5471
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5472
|
-
readonly presetColors?: string[] | undefined;
|
|
5473
|
-
readonly step?: number | undefined;
|
|
5474
|
-
readonly showValue?: boolean | undefined;
|
|
5475
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5476
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5477
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5478
|
-
readonly displayValue?: boolean | undefined;
|
|
5479
|
-
readonly allowScanning?: boolean | undefined;
|
|
5480
|
-
readonly currencyConfig?: {
|
|
5481
|
-
precision: number;
|
|
5482
|
-
currencyMode: "fixed" | "dynamic";
|
|
5483
|
-
defaultCurrency: string;
|
|
5484
|
-
} | undefined;
|
|
5485
|
-
readonly vectorConfig?: {
|
|
5486
|
-
dimensions: number;
|
|
5487
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5488
|
-
normalized: boolean;
|
|
5489
|
-
indexed: boolean;
|
|
5490
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5491
|
-
} | undefined;
|
|
5492
|
-
readonly fileAttachmentConfig?: {
|
|
5493
|
-
virusScan: boolean;
|
|
5494
|
-
virusScanOnUpload: boolean;
|
|
5495
|
-
quarantineOnThreat: boolean;
|
|
5496
|
-
allowMultiple: boolean;
|
|
5497
|
-
allowReplace: boolean;
|
|
5498
|
-
allowDelete: boolean;
|
|
5499
|
-
requireUpload: boolean;
|
|
5500
|
-
extractMetadata: boolean;
|
|
5501
|
-
extractText: boolean;
|
|
5502
|
-
versioningEnabled: boolean;
|
|
5503
|
-
publicRead: boolean;
|
|
5504
|
-
presignedUrlExpiry: number;
|
|
5505
|
-
minSize?: number | undefined;
|
|
5506
|
-
maxSize?: number | undefined;
|
|
5507
|
-
allowedTypes?: string[] | undefined;
|
|
5508
|
-
blockedTypes?: string[] | undefined;
|
|
5509
|
-
allowedMimeTypes?: string[] | undefined;
|
|
5510
|
-
blockedMimeTypes?: string[] | undefined;
|
|
5511
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5512
|
-
storageProvider?: string | undefined;
|
|
5513
|
-
storageBucket?: string | undefined;
|
|
5514
|
-
storagePrefix?: string | undefined;
|
|
5515
|
-
imageValidation?: {
|
|
5516
|
-
generateThumbnails: boolean;
|
|
5517
|
-
preserveMetadata: boolean;
|
|
5518
|
-
autoRotate: boolean;
|
|
5519
|
-
minWidth?: number | undefined;
|
|
5520
|
-
maxWidth?: number | undefined;
|
|
5521
|
-
minHeight?: number | undefined;
|
|
5522
|
-
maxHeight?: number | undefined;
|
|
5523
|
-
aspectRatio?: string | undefined;
|
|
5524
|
-
thumbnailSizes?: {
|
|
5525
|
-
name: string;
|
|
5526
|
-
width: number;
|
|
5527
|
-
height: number;
|
|
5528
|
-
crop: boolean;
|
|
5529
|
-
}[] | undefined;
|
|
5530
|
-
} | undefined;
|
|
5531
|
-
maxVersions?: number | undefined;
|
|
5532
|
-
} | undefined;
|
|
5533
|
-
readonly maskingRule?: {
|
|
5534
|
-
field: string;
|
|
5535
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5536
|
-
preserveFormat: boolean;
|
|
5537
|
-
preserveLength: boolean;
|
|
5538
|
-
pattern?: string | undefined;
|
|
5539
|
-
roles?: string[] | undefined;
|
|
5540
|
-
exemptRoles?: string[] | undefined;
|
|
5541
|
-
} | undefined;
|
|
5542
|
-
readonly auditTrail?: boolean | undefined;
|
|
5543
|
-
readonly cached?: {
|
|
5544
|
-
enabled: boolean;
|
|
5545
|
-
ttl: number;
|
|
5546
|
-
invalidateOn: string[];
|
|
5547
|
-
} | undefined;
|
|
5548
|
-
readonly dataQuality?: {
|
|
5549
|
-
uniqueness: boolean;
|
|
5550
|
-
completeness: number;
|
|
5551
|
-
accuracy?: {
|
|
5552
|
-
source: string;
|
|
5553
|
-
threshold: number;
|
|
5554
|
-
} | undefined;
|
|
5555
|
-
} | undefined;
|
|
5556
|
-
readonly conditionalRequired?: {
|
|
5557
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5558
|
-
source?: string | undefined;
|
|
5559
|
-
ast?: unknown;
|
|
5560
|
-
meta?: {
|
|
5561
|
-
rationale?: string | undefined;
|
|
5562
|
-
generatedBy?: string | undefined;
|
|
5563
|
-
} | undefined;
|
|
5564
|
-
} | undefined;
|
|
5565
|
-
readonly sortable?: boolean | undefined;
|
|
5566
|
-
readonly inlineHelpText?: string | undefined;
|
|
5567
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5568
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5569
|
-
readonly autonumberFormat?: string | undefined;
|
|
5570
|
-
readonly index?: boolean | undefined;
|
|
5571
|
-
readonly type: "textarea";
|
|
5572
|
-
};
|
|
5573
|
-
readonly partition_key: {
|
|
5574
|
-
readonly readonly?: boolean | undefined;
|
|
5575
|
-
readonly format?: string | undefined;
|
|
5576
|
-
readonly options?: {
|
|
5577
|
-
label: string;
|
|
5578
|
-
value: string;
|
|
5579
|
-
color?: string | undefined;
|
|
5580
|
-
default?: boolean | undefined;
|
|
5581
|
-
}[] | undefined;
|
|
5582
|
-
readonly description?: string | undefined;
|
|
5583
|
-
readonly label?: string | undefined;
|
|
5584
|
-
readonly name?: string | undefined;
|
|
5585
|
-
readonly precision?: number | undefined;
|
|
5586
|
-
readonly required?: boolean | undefined;
|
|
5587
|
-
readonly multiple?: boolean | undefined;
|
|
5588
|
-
readonly dependencies?: string[] | undefined;
|
|
5589
|
-
readonly theme?: string | undefined;
|
|
5590
|
-
readonly externalId?: boolean | undefined;
|
|
5591
|
-
readonly defaultValue?: unknown;
|
|
5592
|
-
readonly group?: string | undefined;
|
|
5593
|
-
readonly hidden?: boolean | undefined;
|
|
5594
|
-
readonly system?: boolean | undefined;
|
|
5595
|
-
readonly min?: number | undefined;
|
|
5596
|
-
readonly max?: number | undefined;
|
|
5597
|
-
readonly encryptionConfig?: {
|
|
5598
|
-
enabled: boolean;
|
|
5599
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5600
|
-
keyManagement: {
|
|
5601
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5602
|
-
keyId?: string | undefined;
|
|
5603
|
-
rotationPolicy?: {
|
|
5604
|
-
enabled: boolean;
|
|
5605
|
-
frequencyDays: number;
|
|
5606
|
-
retainOldVersions: number;
|
|
5607
|
-
autoRotate: boolean;
|
|
5608
|
-
} | undefined;
|
|
5609
|
-
};
|
|
5610
|
-
scope: "record" | "field" | "table" | "database";
|
|
5611
|
-
deterministicEncryption: boolean;
|
|
5612
|
-
searchableEncryption: boolean;
|
|
5613
|
-
} | undefined;
|
|
5614
|
-
readonly columnName?: string | undefined;
|
|
5615
|
-
readonly searchable?: boolean | undefined;
|
|
5616
|
-
readonly unique?: boolean | undefined;
|
|
5617
|
-
readonly maxLength?: number | undefined;
|
|
5618
|
-
readonly minLength?: number | undefined;
|
|
5619
|
-
readonly scale?: number | undefined;
|
|
5620
|
-
readonly reference?: string | undefined;
|
|
5621
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5622
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5623
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5624
|
-
readonly expression?: {
|
|
5625
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5626
|
-
source?: string | undefined;
|
|
5627
|
-
ast?: unknown;
|
|
5628
|
-
meta?: {
|
|
5629
|
-
rationale?: string | undefined;
|
|
5630
|
-
generatedBy?: string | undefined;
|
|
5631
|
-
} | undefined;
|
|
5632
|
-
} | undefined;
|
|
5633
|
-
readonly summaryOperations?: {
|
|
5634
|
-
object: string;
|
|
5635
|
-
field: string;
|
|
5636
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5637
|
-
} | undefined;
|
|
5638
|
-
readonly language?: string | undefined;
|
|
5639
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5640
|
-
readonly maxRating?: number | undefined;
|
|
5641
|
-
readonly allowHalf?: boolean | undefined;
|
|
5642
|
-
readonly displayMap?: boolean | undefined;
|
|
5643
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5644
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5645
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5646
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5647
|
-
readonly presetColors?: string[] | undefined;
|
|
5648
|
-
readonly step?: number | undefined;
|
|
5649
|
-
readonly showValue?: boolean | undefined;
|
|
5650
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5651
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5652
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5653
|
-
readonly displayValue?: boolean | undefined;
|
|
5654
|
-
readonly allowScanning?: boolean | undefined;
|
|
5655
|
-
readonly currencyConfig?: {
|
|
5656
|
-
precision: number;
|
|
5657
|
-
currencyMode: "fixed" | "dynamic";
|
|
5658
|
-
defaultCurrency: string;
|
|
5659
|
-
} | undefined;
|
|
5660
|
-
readonly vectorConfig?: {
|
|
5661
|
-
dimensions: number;
|
|
5662
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5663
|
-
normalized: boolean;
|
|
5664
|
-
indexed: boolean;
|
|
5665
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5666
|
-
} | undefined;
|
|
5667
|
-
readonly fileAttachmentConfig?: {
|
|
5668
|
-
virusScan: boolean;
|
|
5669
|
-
virusScanOnUpload: boolean;
|
|
5670
|
-
quarantineOnThreat: boolean;
|
|
5671
|
-
allowMultiple: boolean;
|
|
5672
|
-
allowReplace: boolean;
|
|
5673
|
-
allowDelete: boolean;
|
|
5674
|
-
requireUpload: boolean;
|
|
5675
|
-
extractMetadata: boolean;
|
|
5676
|
-
extractText: boolean;
|
|
5677
|
-
versioningEnabled: boolean;
|
|
5678
|
-
publicRead: boolean;
|
|
5679
|
-
presignedUrlExpiry: number;
|
|
5680
|
-
minSize?: number | undefined;
|
|
5681
|
-
maxSize?: number | undefined;
|
|
5682
|
-
allowedTypes?: string[] | undefined;
|
|
5683
|
-
blockedTypes?: string[] | undefined;
|
|
5684
|
-
allowedMimeTypes?: string[] | undefined;
|
|
5685
|
-
blockedMimeTypes?: string[] | undefined;
|
|
5686
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5687
|
-
storageProvider?: string | undefined;
|
|
5688
|
-
storageBucket?: string | undefined;
|
|
5689
|
-
storagePrefix?: string | undefined;
|
|
5690
|
-
imageValidation?: {
|
|
5691
|
-
generateThumbnails: boolean;
|
|
5692
|
-
preserveMetadata: boolean;
|
|
5693
|
-
autoRotate: boolean;
|
|
5694
|
-
minWidth?: number | undefined;
|
|
5695
|
-
maxWidth?: number | undefined;
|
|
5696
|
-
minHeight?: number | undefined;
|
|
5697
|
-
maxHeight?: number | undefined;
|
|
5698
|
-
aspectRatio?: string | undefined;
|
|
5699
|
-
thumbnailSizes?: {
|
|
5700
|
-
name: string;
|
|
5701
|
-
width: number;
|
|
5702
|
-
height: number;
|
|
5703
|
-
crop: boolean;
|
|
5704
|
-
}[] | undefined;
|
|
5705
|
-
} | undefined;
|
|
5706
|
-
maxVersions?: number | undefined;
|
|
5707
|
-
} | undefined;
|
|
5708
|
-
readonly maskingRule?: {
|
|
5709
|
-
field: string;
|
|
5710
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5711
|
-
preserveFormat: boolean;
|
|
5712
|
-
preserveLength: boolean;
|
|
5713
|
-
pattern?: string | undefined;
|
|
5714
|
-
roles?: string[] | undefined;
|
|
5715
|
-
exemptRoles?: string[] | undefined;
|
|
5716
|
-
} | undefined;
|
|
5717
|
-
readonly auditTrail?: boolean | undefined;
|
|
5718
|
-
readonly cached?: {
|
|
5719
|
-
enabled: boolean;
|
|
5720
|
-
ttl: number;
|
|
5721
|
-
invalidateOn: string[];
|
|
5722
|
-
} | undefined;
|
|
5723
|
-
readonly dataQuality?: {
|
|
5724
|
-
uniqueness: boolean;
|
|
5725
|
-
completeness: number;
|
|
5726
|
-
accuracy?: {
|
|
5727
|
-
source: string;
|
|
5728
|
-
threshold: number;
|
|
5729
|
-
} | undefined;
|
|
5730
|
-
} | undefined;
|
|
5731
|
-
readonly conditionalRequired?: {
|
|
5732
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5733
|
-
source?: string | undefined;
|
|
5734
|
-
ast?: unknown;
|
|
5735
|
-
meta?: {
|
|
5736
|
-
rationale?: string | undefined;
|
|
5737
|
-
generatedBy?: string | undefined;
|
|
5738
|
-
} | undefined;
|
|
5739
|
-
} | undefined;
|
|
5740
|
-
readonly sortable?: boolean | undefined;
|
|
5741
|
-
readonly inlineHelpText?: string | undefined;
|
|
5742
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5743
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5744
|
-
readonly autonumberFormat?: string | undefined;
|
|
5745
|
-
readonly index?: boolean | undefined;
|
|
5746
|
-
readonly type: "number";
|
|
5747
|
-
};
|
|
5748
|
-
readonly status: {
|
|
5749
|
-
readonly readonly?: boolean | undefined;
|
|
5750
|
-
readonly format?: string | undefined;
|
|
5751
|
-
readonly options?: {
|
|
5752
|
-
label: string;
|
|
5753
|
-
value: string;
|
|
5754
|
-
color?: string | undefined;
|
|
5755
|
-
default?: boolean | undefined;
|
|
5756
|
-
}[] | undefined;
|
|
5757
|
-
readonly description?: string | undefined;
|
|
5758
|
-
readonly label?: string | undefined;
|
|
5759
|
-
readonly name?: string | undefined;
|
|
5760
|
-
readonly precision?: number | undefined;
|
|
5761
|
-
readonly required?: boolean | undefined;
|
|
5762
|
-
readonly multiple?: boolean | undefined;
|
|
5763
|
-
readonly dependencies?: string[] | undefined;
|
|
5764
|
-
readonly theme?: string | undefined;
|
|
5765
|
-
readonly externalId?: boolean | undefined;
|
|
5766
|
-
readonly defaultValue?: unknown;
|
|
5767
|
-
readonly group?: string | undefined;
|
|
5768
|
-
readonly hidden?: boolean | undefined;
|
|
5769
|
-
readonly system?: boolean | undefined;
|
|
5770
|
-
readonly min?: number | undefined;
|
|
5771
|
-
readonly max?: number | undefined;
|
|
5772
|
-
readonly encryptionConfig?: {
|
|
5773
|
-
enabled: boolean;
|
|
5774
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5775
|
-
keyManagement: {
|
|
5776
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5777
|
-
keyId?: string | undefined;
|
|
5778
|
-
rotationPolicy?: {
|
|
5779
|
-
enabled: boolean;
|
|
5780
|
-
frequencyDays: number;
|
|
5781
|
-
retainOldVersions: number;
|
|
5782
|
-
autoRotate: boolean;
|
|
5783
|
-
} | undefined;
|
|
5784
|
-
};
|
|
5785
|
-
scope: "record" | "field" | "table" | "database";
|
|
5786
|
-
deterministicEncryption: boolean;
|
|
5787
|
-
searchableEncryption: boolean;
|
|
5788
|
-
} | undefined;
|
|
5789
|
-
readonly columnName?: string | undefined;
|
|
5790
|
-
readonly searchable?: boolean | undefined;
|
|
5791
|
-
readonly unique?: boolean | undefined;
|
|
5792
|
-
readonly maxLength?: number | undefined;
|
|
5793
|
-
readonly minLength?: number | undefined;
|
|
5794
|
-
readonly scale?: number | undefined;
|
|
5795
|
-
readonly reference?: string | undefined;
|
|
5796
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5797
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5798
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5799
|
-
readonly expression?: {
|
|
5800
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5801
|
-
source?: string | undefined;
|
|
5802
|
-
ast?: unknown;
|
|
5803
|
-
meta?: {
|
|
5804
|
-
rationale?: string | undefined;
|
|
5805
|
-
generatedBy?: string | undefined;
|
|
5806
|
-
} | undefined;
|
|
5807
|
-
} | undefined;
|
|
5808
|
-
readonly summaryOperations?: {
|
|
5809
|
-
object: string;
|
|
5810
|
-
field: string;
|
|
5811
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5812
|
-
} | undefined;
|
|
5813
|
-
readonly language?: string | undefined;
|
|
5814
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5815
|
-
readonly maxRating?: number | undefined;
|
|
5816
|
-
readonly allowHalf?: boolean | undefined;
|
|
5817
|
-
readonly displayMap?: boolean | undefined;
|
|
5818
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5819
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5820
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5821
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5822
|
-
readonly presetColors?: string[] | undefined;
|
|
5823
|
-
readonly step?: number | undefined;
|
|
5824
|
-
readonly showValue?: boolean | undefined;
|
|
5825
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5826
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5827
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5828
|
-
readonly displayValue?: boolean | undefined;
|
|
5829
|
-
readonly allowScanning?: boolean | undefined;
|
|
5830
|
-
readonly currencyConfig?: {
|
|
5831
|
-
precision: number;
|
|
5832
|
-
currencyMode: "fixed" | "dynamic";
|
|
5833
|
-
defaultCurrency: string;
|
|
5834
|
-
} | undefined;
|
|
5835
|
-
readonly vectorConfig?: {
|
|
5836
|
-
dimensions: number;
|
|
5837
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5838
|
-
normalized: boolean;
|
|
5839
|
-
indexed: boolean;
|
|
5840
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5841
|
-
} | undefined;
|
|
5842
|
-
readonly fileAttachmentConfig?: {
|
|
5843
|
-
virusScan: boolean;
|
|
5844
|
-
virusScanOnUpload: boolean;
|
|
5845
|
-
quarantineOnThreat: boolean;
|
|
5846
|
-
allowMultiple: boolean;
|
|
5847
|
-
allowReplace: boolean;
|
|
5848
|
-
allowDelete: boolean;
|
|
5849
|
-
requireUpload: boolean;
|
|
5850
|
-
extractMetadata: boolean;
|
|
5851
|
-
extractText: boolean;
|
|
5852
|
-
versioningEnabled: boolean;
|
|
5853
|
-
publicRead: boolean;
|
|
5854
|
-
presignedUrlExpiry: number;
|
|
5855
|
-
minSize?: number | undefined;
|
|
5856
|
-
maxSize?: number | undefined;
|
|
5857
|
-
allowedTypes?: string[] | undefined;
|
|
5858
|
-
blockedTypes?: string[] | undefined;
|
|
5859
|
-
allowedMimeTypes?: string[] | undefined;
|
|
5860
|
-
blockedMimeTypes?: string[] | undefined;
|
|
5861
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5862
|
-
storageProvider?: string | undefined;
|
|
5863
|
-
storageBucket?: string | undefined;
|
|
5864
|
-
storagePrefix?: string | undefined;
|
|
5865
|
-
imageValidation?: {
|
|
5866
|
-
generateThumbnails: boolean;
|
|
5867
|
-
preserveMetadata: boolean;
|
|
5868
|
-
autoRotate: boolean;
|
|
5869
|
-
minWidth?: number | undefined;
|
|
5870
|
-
maxWidth?: number | undefined;
|
|
5871
|
-
minHeight?: number | undefined;
|
|
5872
|
-
maxHeight?: number | undefined;
|
|
5873
|
-
aspectRatio?: string | undefined;
|
|
5874
|
-
thumbnailSizes?: {
|
|
5875
|
-
name: string;
|
|
5876
|
-
width: number;
|
|
5877
|
-
height: number;
|
|
5878
|
-
crop: boolean;
|
|
5879
|
-
}[] | undefined;
|
|
5880
|
-
} | undefined;
|
|
5881
|
-
maxVersions?: number | undefined;
|
|
5882
|
-
} | undefined;
|
|
5883
|
-
readonly maskingRule?: {
|
|
5884
|
-
field: string;
|
|
5885
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5886
|
-
preserveFormat: boolean;
|
|
5887
|
-
preserveLength: boolean;
|
|
5888
|
-
pattern?: string | undefined;
|
|
5889
|
-
roles?: string[] | undefined;
|
|
5890
|
-
exemptRoles?: string[] | undefined;
|
|
5891
|
-
} | undefined;
|
|
5892
|
-
readonly auditTrail?: boolean | undefined;
|
|
5893
|
-
readonly cached?: {
|
|
5894
|
-
enabled: boolean;
|
|
5895
|
-
ttl: number;
|
|
5896
|
-
invalidateOn: string[];
|
|
5897
|
-
} | undefined;
|
|
5898
|
-
readonly dataQuality?: {
|
|
5899
|
-
uniqueness: boolean;
|
|
5900
|
-
completeness: number;
|
|
5901
|
-
accuracy?: {
|
|
5902
|
-
source: string;
|
|
5903
|
-
threshold: number;
|
|
5904
|
-
} | undefined;
|
|
5905
|
-
} | undefined;
|
|
5906
|
-
readonly conditionalRequired?: {
|
|
5907
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5908
|
-
source?: string | undefined;
|
|
5909
|
-
ast?: unknown;
|
|
5910
|
-
meta?: {
|
|
5911
|
-
rationale?: string | undefined;
|
|
5912
|
-
generatedBy?: string | undefined;
|
|
5913
|
-
} | undefined;
|
|
5914
|
-
} | undefined;
|
|
5915
|
-
readonly sortable?: boolean | undefined;
|
|
5916
|
-
readonly inlineHelpText?: string | undefined;
|
|
5917
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5918
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5919
|
-
readonly autonumberFormat?: string | undefined;
|
|
5920
|
-
readonly index?: boolean | undefined;
|
|
5921
|
-
readonly type: "text";
|
|
5922
|
-
};
|
|
5923
|
-
readonly attempts: {
|
|
5924
|
-
readonly readonly?: boolean | undefined;
|
|
5925
|
-
readonly format?: string | undefined;
|
|
5926
|
-
readonly options?: {
|
|
5927
|
-
label: string;
|
|
5928
|
-
value: string;
|
|
5929
|
-
color?: string | undefined;
|
|
5930
|
-
default?: boolean | undefined;
|
|
5931
|
-
}[] | undefined;
|
|
5932
|
-
readonly description?: string | undefined;
|
|
5933
|
-
readonly label?: string | undefined;
|
|
5934
|
-
readonly name?: string | undefined;
|
|
5935
|
-
readonly precision?: number | undefined;
|
|
5936
|
-
readonly required?: boolean | undefined;
|
|
5937
|
-
readonly multiple?: boolean | undefined;
|
|
5938
|
-
readonly dependencies?: string[] | undefined;
|
|
5939
|
-
readonly theme?: string | undefined;
|
|
5940
|
-
readonly externalId?: boolean | undefined;
|
|
5941
|
-
readonly defaultValue?: unknown;
|
|
5942
|
-
readonly group?: string | undefined;
|
|
5943
|
-
readonly hidden?: boolean | undefined;
|
|
5944
|
-
readonly system?: boolean | undefined;
|
|
5945
|
-
readonly min?: number | undefined;
|
|
5946
|
-
readonly max?: number | undefined;
|
|
5947
|
-
readonly encryptionConfig?: {
|
|
5948
|
-
enabled: boolean;
|
|
5949
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5950
|
-
keyManagement: {
|
|
5951
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5952
|
-
keyId?: string | undefined;
|
|
5953
|
-
rotationPolicy?: {
|
|
5954
|
-
enabled: boolean;
|
|
5955
|
-
frequencyDays: number;
|
|
5956
|
-
retainOldVersions: number;
|
|
5957
|
-
autoRotate: boolean;
|
|
5958
|
-
} | undefined;
|
|
5959
|
-
};
|
|
5960
|
-
scope: "record" | "field" | "table" | "database";
|
|
5961
|
-
deterministicEncryption: boolean;
|
|
5962
|
-
searchableEncryption: boolean;
|
|
5963
|
-
} | undefined;
|
|
5964
|
-
readonly columnName?: string | undefined;
|
|
5965
|
-
readonly searchable?: boolean | undefined;
|
|
5966
|
-
readonly unique?: boolean | undefined;
|
|
5967
|
-
readonly maxLength?: number | undefined;
|
|
5968
|
-
readonly minLength?: number | undefined;
|
|
5969
|
-
readonly scale?: number | undefined;
|
|
5970
|
-
readonly reference?: string | undefined;
|
|
5971
|
-
readonly referenceFilters?: string[] | undefined;
|
|
5972
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5973
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5974
|
-
readonly expression?: {
|
|
5975
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5976
|
-
source?: string | undefined;
|
|
5977
|
-
ast?: unknown;
|
|
5978
|
-
meta?: {
|
|
5979
|
-
rationale?: string | undefined;
|
|
5980
|
-
generatedBy?: string | undefined;
|
|
5981
|
-
} | undefined;
|
|
5982
|
-
} | undefined;
|
|
5983
|
-
readonly summaryOperations?: {
|
|
5984
|
-
object: string;
|
|
5985
|
-
field: string;
|
|
5986
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5987
|
-
} | undefined;
|
|
5988
|
-
readonly language?: string | undefined;
|
|
5989
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5990
|
-
readonly maxRating?: number | undefined;
|
|
5991
|
-
readonly allowHalf?: boolean | undefined;
|
|
5992
|
-
readonly displayMap?: boolean | undefined;
|
|
5993
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5994
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5995
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5996
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5997
|
-
readonly presetColors?: string[] | undefined;
|
|
5998
|
-
readonly step?: number | undefined;
|
|
5999
|
-
readonly showValue?: boolean | undefined;
|
|
6000
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6001
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6002
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6003
|
-
readonly displayValue?: boolean | undefined;
|
|
6004
|
-
readonly allowScanning?: boolean | undefined;
|
|
6005
|
-
readonly currencyConfig?: {
|
|
6006
|
-
precision: number;
|
|
6007
|
-
currencyMode: "fixed" | "dynamic";
|
|
6008
|
-
defaultCurrency: string;
|
|
6009
|
-
} | undefined;
|
|
6010
|
-
readonly vectorConfig?: {
|
|
6011
|
-
dimensions: number;
|
|
6012
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6013
|
-
normalized: boolean;
|
|
6014
|
-
indexed: boolean;
|
|
6015
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6016
|
-
} | undefined;
|
|
6017
|
-
readonly fileAttachmentConfig?: {
|
|
6018
|
-
virusScan: boolean;
|
|
6019
|
-
virusScanOnUpload: boolean;
|
|
6020
|
-
quarantineOnThreat: boolean;
|
|
6021
|
-
allowMultiple: boolean;
|
|
6022
|
-
allowReplace: boolean;
|
|
6023
|
-
allowDelete: boolean;
|
|
6024
|
-
requireUpload: boolean;
|
|
6025
|
-
extractMetadata: boolean;
|
|
6026
|
-
extractText: boolean;
|
|
6027
|
-
versioningEnabled: boolean;
|
|
6028
|
-
publicRead: boolean;
|
|
6029
|
-
presignedUrlExpiry: number;
|
|
6030
|
-
minSize?: number | undefined;
|
|
6031
|
-
maxSize?: number | undefined;
|
|
6032
|
-
allowedTypes?: string[] | undefined;
|
|
6033
|
-
blockedTypes?: string[] | undefined;
|
|
6034
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6035
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6036
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6037
|
-
storageProvider?: string | undefined;
|
|
6038
|
-
storageBucket?: string | undefined;
|
|
6039
|
-
storagePrefix?: string | undefined;
|
|
6040
|
-
imageValidation?: {
|
|
6041
|
-
generateThumbnails: boolean;
|
|
6042
|
-
preserveMetadata: boolean;
|
|
6043
|
-
autoRotate: boolean;
|
|
6044
|
-
minWidth?: number | undefined;
|
|
6045
|
-
maxWidth?: number | undefined;
|
|
6046
|
-
minHeight?: number | undefined;
|
|
6047
|
-
maxHeight?: number | undefined;
|
|
6048
|
-
aspectRatio?: string | undefined;
|
|
6049
|
-
thumbnailSizes?: {
|
|
6050
|
-
name: string;
|
|
6051
|
-
width: number;
|
|
6052
|
-
height: number;
|
|
6053
|
-
crop: boolean;
|
|
6054
|
-
}[] | undefined;
|
|
6055
|
-
} | undefined;
|
|
6056
|
-
maxVersions?: number | undefined;
|
|
6057
|
-
} | undefined;
|
|
6058
|
-
readonly maskingRule?: {
|
|
6059
|
-
field: string;
|
|
6060
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6061
|
-
preserveFormat: boolean;
|
|
6062
|
-
preserveLength: boolean;
|
|
6063
|
-
pattern?: string | undefined;
|
|
6064
|
-
roles?: string[] | undefined;
|
|
6065
|
-
exemptRoles?: string[] | undefined;
|
|
6066
|
-
} | undefined;
|
|
6067
|
-
readonly auditTrail?: boolean | undefined;
|
|
6068
|
-
readonly cached?: {
|
|
6069
|
-
enabled: boolean;
|
|
6070
|
-
ttl: number;
|
|
6071
|
-
invalidateOn: string[];
|
|
6072
|
-
} | undefined;
|
|
6073
|
-
readonly dataQuality?: {
|
|
6074
|
-
uniqueness: boolean;
|
|
6075
|
-
completeness: number;
|
|
6076
|
-
accuracy?: {
|
|
6077
|
-
source: string;
|
|
6078
|
-
threshold: number;
|
|
6079
|
-
} | undefined;
|
|
6080
|
-
} | undefined;
|
|
6081
|
-
readonly conditionalRequired?: {
|
|
6082
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6083
|
-
source?: string | undefined;
|
|
6084
|
-
ast?: unknown;
|
|
6085
|
-
meta?: {
|
|
6086
|
-
rationale?: string | undefined;
|
|
6087
|
-
generatedBy?: string | undefined;
|
|
6088
|
-
} | undefined;
|
|
6089
|
-
} | undefined;
|
|
6090
|
-
readonly sortable?: boolean | undefined;
|
|
6091
|
-
readonly inlineHelpText?: string | undefined;
|
|
6092
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6093
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6094
|
-
readonly autonumberFormat?: string | undefined;
|
|
6095
|
-
readonly index?: boolean | undefined;
|
|
6096
|
-
readonly type: "number";
|
|
6097
|
-
};
|
|
6098
|
-
readonly claimed_by: {
|
|
6099
|
-
readonly readonly?: boolean | undefined;
|
|
6100
|
-
readonly format?: string | undefined;
|
|
6101
|
-
readonly options?: {
|
|
6102
|
-
label: string;
|
|
6103
|
-
value: string;
|
|
6104
|
-
color?: string | undefined;
|
|
6105
|
-
default?: boolean | undefined;
|
|
6106
|
-
}[] | undefined;
|
|
6107
|
-
readonly description?: string | undefined;
|
|
6108
|
-
readonly label?: string | undefined;
|
|
6109
|
-
readonly name?: string | undefined;
|
|
6110
|
-
readonly precision?: number | undefined;
|
|
6111
|
-
readonly required?: boolean | undefined;
|
|
6112
|
-
readonly multiple?: boolean | undefined;
|
|
6113
|
-
readonly dependencies?: string[] | undefined;
|
|
6114
|
-
readonly theme?: string | undefined;
|
|
6115
|
-
readonly externalId?: boolean | undefined;
|
|
6116
|
-
readonly defaultValue?: unknown;
|
|
6117
|
-
readonly group?: string | undefined;
|
|
6118
|
-
readonly hidden?: boolean | undefined;
|
|
6119
|
-
readonly system?: boolean | undefined;
|
|
6120
|
-
readonly min?: number | undefined;
|
|
6121
|
-
readonly max?: number | undefined;
|
|
6122
|
-
readonly encryptionConfig?: {
|
|
6123
|
-
enabled: boolean;
|
|
6124
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6125
|
-
keyManagement: {
|
|
6126
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6127
|
-
keyId?: string | undefined;
|
|
6128
|
-
rotationPolicy?: {
|
|
6129
|
-
enabled: boolean;
|
|
6130
|
-
frequencyDays: number;
|
|
6131
|
-
retainOldVersions: number;
|
|
6132
|
-
autoRotate: boolean;
|
|
6133
|
-
} | undefined;
|
|
6134
|
-
};
|
|
6135
|
-
scope: "record" | "field" | "table" | "database";
|
|
6136
|
-
deterministicEncryption: boolean;
|
|
6137
|
-
searchableEncryption: boolean;
|
|
6138
|
-
} | undefined;
|
|
6139
|
-
readonly columnName?: string | undefined;
|
|
6140
|
-
readonly searchable?: boolean | undefined;
|
|
6141
|
-
readonly unique?: boolean | undefined;
|
|
6142
|
-
readonly maxLength?: number | undefined;
|
|
6143
|
-
readonly minLength?: number | undefined;
|
|
6144
|
-
readonly scale?: number | undefined;
|
|
6145
|
-
readonly reference?: string | undefined;
|
|
6146
|
-
readonly referenceFilters?: string[] | undefined;
|
|
6147
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6148
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6149
|
-
readonly expression?: {
|
|
6150
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6151
|
-
source?: string | undefined;
|
|
6152
|
-
ast?: unknown;
|
|
6153
|
-
meta?: {
|
|
6154
|
-
rationale?: string | undefined;
|
|
6155
|
-
generatedBy?: string | undefined;
|
|
6156
|
-
} | undefined;
|
|
6157
|
-
} | undefined;
|
|
6158
|
-
readonly summaryOperations?: {
|
|
6159
|
-
object: string;
|
|
6160
|
-
field: string;
|
|
6161
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6162
|
-
} | undefined;
|
|
6163
|
-
readonly language?: string | undefined;
|
|
6164
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6165
|
-
readonly maxRating?: number | undefined;
|
|
6166
|
-
readonly allowHalf?: boolean | undefined;
|
|
6167
|
-
readonly displayMap?: boolean | undefined;
|
|
6168
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6169
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6170
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6171
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6172
|
-
readonly presetColors?: string[] | undefined;
|
|
6173
|
-
readonly step?: number | undefined;
|
|
6174
|
-
readonly showValue?: boolean | undefined;
|
|
6175
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6176
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6177
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6178
|
-
readonly displayValue?: boolean | undefined;
|
|
6179
|
-
readonly allowScanning?: boolean | undefined;
|
|
6180
|
-
readonly currencyConfig?: {
|
|
6181
|
-
precision: number;
|
|
6182
|
-
currencyMode: "fixed" | "dynamic";
|
|
6183
|
-
defaultCurrency: string;
|
|
6184
|
-
} | undefined;
|
|
6185
|
-
readonly vectorConfig?: {
|
|
6186
|
-
dimensions: number;
|
|
6187
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6188
|
-
normalized: boolean;
|
|
6189
|
-
indexed: boolean;
|
|
6190
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6191
|
-
} | undefined;
|
|
6192
|
-
readonly fileAttachmentConfig?: {
|
|
6193
|
-
virusScan: boolean;
|
|
6194
|
-
virusScanOnUpload: boolean;
|
|
6195
|
-
quarantineOnThreat: boolean;
|
|
6196
|
-
allowMultiple: boolean;
|
|
6197
|
-
allowReplace: boolean;
|
|
6198
|
-
allowDelete: boolean;
|
|
6199
|
-
requireUpload: boolean;
|
|
6200
|
-
extractMetadata: boolean;
|
|
6201
|
-
extractText: boolean;
|
|
6202
|
-
versioningEnabled: boolean;
|
|
6203
|
-
publicRead: boolean;
|
|
6204
|
-
presignedUrlExpiry: number;
|
|
6205
|
-
minSize?: number | undefined;
|
|
6206
|
-
maxSize?: number | undefined;
|
|
6207
|
-
allowedTypes?: string[] | undefined;
|
|
6208
|
-
blockedTypes?: string[] | undefined;
|
|
6209
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6210
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6211
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6212
|
-
storageProvider?: string | undefined;
|
|
6213
|
-
storageBucket?: string | undefined;
|
|
6214
|
-
storagePrefix?: string | undefined;
|
|
6215
|
-
imageValidation?: {
|
|
6216
|
-
generateThumbnails: boolean;
|
|
6217
|
-
preserveMetadata: boolean;
|
|
6218
|
-
autoRotate: boolean;
|
|
6219
|
-
minWidth?: number | undefined;
|
|
6220
|
-
maxWidth?: number | undefined;
|
|
6221
|
-
minHeight?: number | undefined;
|
|
6222
|
-
maxHeight?: number | undefined;
|
|
6223
|
-
aspectRatio?: string | undefined;
|
|
6224
|
-
thumbnailSizes?: {
|
|
6225
|
-
name: string;
|
|
6226
|
-
width: number;
|
|
6227
|
-
height: number;
|
|
6228
|
-
crop: boolean;
|
|
6229
|
-
}[] | undefined;
|
|
6230
|
-
} | undefined;
|
|
6231
|
-
maxVersions?: number | undefined;
|
|
6232
|
-
} | undefined;
|
|
6233
|
-
readonly maskingRule?: {
|
|
6234
|
-
field: string;
|
|
6235
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6236
|
-
preserveFormat: boolean;
|
|
6237
|
-
preserveLength: boolean;
|
|
6238
|
-
pattern?: string | undefined;
|
|
6239
|
-
roles?: string[] | undefined;
|
|
6240
|
-
exemptRoles?: string[] | undefined;
|
|
6241
|
-
} | undefined;
|
|
6242
|
-
readonly auditTrail?: boolean | undefined;
|
|
6243
|
-
readonly cached?: {
|
|
6244
|
-
enabled: boolean;
|
|
6245
|
-
ttl: number;
|
|
6246
|
-
invalidateOn: string[];
|
|
6247
|
-
} | undefined;
|
|
6248
|
-
readonly dataQuality?: {
|
|
6249
|
-
uniqueness: boolean;
|
|
6250
|
-
completeness: number;
|
|
6251
|
-
accuracy?: {
|
|
6252
|
-
source: string;
|
|
6253
|
-
threshold: number;
|
|
6254
|
-
} | undefined;
|
|
6255
|
-
} | undefined;
|
|
6256
|
-
readonly conditionalRequired?: {
|
|
6257
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6258
|
-
source?: string | undefined;
|
|
6259
|
-
ast?: unknown;
|
|
6260
|
-
meta?: {
|
|
6261
|
-
rationale?: string | undefined;
|
|
6262
|
-
generatedBy?: string | undefined;
|
|
6263
|
-
} | undefined;
|
|
6264
|
-
} | undefined;
|
|
6265
|
-
readonly sortable?: boolean | undefined;
|
|
6266
|
-
readonly inlineHelpText?: string | undefined;
|
|
6267
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6268
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6269
|
-
readonly autonumberFormat?: string | undefined;
|
|
6270
|
-
readonly index?: boolean | undefined;
|
|
6271
|
-
readonly type: "text";
|
|
6272
|
-
};
|
|
6273
|
-
readonly claimed_at: {
|
|
6274
|
-
readonly readonly?: boolean | undefined;
|
|
6275
|
-
readonly format?: string | undefined;
|
|
6276
|
-
readonly options?: {
|
|
6277
|
-
label: string;
|
|
6278
|
-
value: string;
|
|
6279
|
-
color?: string | undefined;
|
|
6280
|
-
default?: boolean | undefined;
|
|
6281
|
-
}[] | undefined;
|
|
6282
|
-
readonly description?: string | undefined;
|
|
6283
|
-
readonly label?: string | undefined;
|
|
6284
|
-
readonly name?: string | undefined;
|
|
6285
|
-
readonly precision?: number | undefined;
|
|
6286
|
-
readonly required?: boolean | undefined;
|
|
6287
|
-
readonly multiple?: boolean | undefined;
|
|
6288
|
-
readonly dependencies?: string[] | undefined;
|
|
6289
|
-
readonly theme?: string | undefined;
|
|
6290
|
-
readonly externalId?: boolean | undefined;
|
|
6291
|
-
readonly defaultValue?: unknown;
|
|
6292
|
-
readonly group?: string | undefined;
|
|
6293
|
-
readonly hidden?: boolean | undefined;
|
|
6294
|
-
readonly system?: boolean | undefined;
|
|
6295
|
-
readonly min?: number | undefined;
|
|
6296
|
-
readonly max?: number | undefined;
|
|
6297
|
-
readonly encryptionConfig?: {
|
|
6298
|
-
enabled: boolean;
|
|
6299
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6300
|
-
keyManagement: {
|
|
6301
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6302
|
-
keyId?: string | undefined;
|
|
6303
|
-
rotationPolicy?: {
|
|
6304
|
-
enabled: boolean;
|
|
6305
|
-
frequencyDays: number;
|
|
6306
|
-
retainOldVersions: number;
|
|
6307
|
-
autoRotate: boolean;
|
|
6308
|
-
} | undefined;
|
|
6309
|
-
};
|
|
6310
|
-
scope: "record" | "field" | "table" | "database";
|
|
6311
|
-
deterministicEncryption: boolean;
|
|
6312
|
-
searchableEncryption: boolean;
|
|
6313
|
-
} | undefined;
|
|
6314
|
-
readonly columnName?: string | undefined;
|
|
6315
|
-
readonly searchable?: boolean | undefined;
|
|
6316
|
-
readonly unique?: boolean | undefined;
|
|
6317
|
-
readonly maxLength?: number | undefined;
|
|
6318
|
-
readonly minLength?: number | undefined;
|
|
6319
|
-
readonly scale?: number | undefined;
|
|
6320
|
-
readonly reference?: string | undefined;
|
|
6321
|
-
readonly referenceFilters?: string[] | undefined;
|
|
6322
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6323
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6324
|
-
readonly expression?: {
|
|
6325
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6326
|
-
source?: string | undefined;
|
|
6327
|
-
ast?: unknown;
|
|
6328
|
-
meta?: {
|
|
6329
|
-
rationale?: string | undefined;
|
|
6330
|
-
generatedBy?: string | undefined;
|
|
6331
|
-
} | undefined;
|
|
6332
|
-
} | undefined;
|
|
6333
|
-
readonly summaryOperations?: {
|
|
6334
|
-
object: string;
|
|
6335
|
-
field: string;
|
|
6336
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6337
|
-
} | undefined;
|
|
6338
|
-
readonly language?: string | undefined;
|
|
6339
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6340
|
-
readonly maxRating?: number | undefined;
|
|
6341
|
-
readonly allowHalf?: boolean | undefined;
|
|
6342
|
-
readonly displayMap?: boolean | undefined;
|
|
6343
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6344
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6345
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6346
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6347
|
-
readonly presetColors?: string[] | undefined;
|
|
6348
|
-
readonly step?: number | undefined;
|
|
6349
|
-
readonly showValue?: boolean | undefined;
|
|
6350
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6351
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6352
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6353
|
-
readonly displayValue?: boolean | undefined;
|
|
6354
|
-
readonly allowScanning?: boolean | undefined;
|
|
6355
|
-
readonly currencyConfig?: {
|
|
6356
|
-
precision: number;
|
|
6357
|
-
currencyMode: "fixed" | "dynamic";
|
|
6358
|
-
defaultCurrency: string;
|
|
6359
|
-
} | undefined;
|
|
6360
|
-
readonly vectorConfig?: {
|
|
6361
|
-
dimensions: number;
|
|
6362
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6363
|
-
normalized: boolean;
|
|
6364
|
-
indexed: boolean;
|
|
6365
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6366
|
-
} | undefined;
|
|
6367
|
-
readonly fileAttachmentConfig?: {
|
|
6368
|
-
virusScan: boolean;
|
|
6369
|
-
virusScanOnUpload: boolean;
|
|
6370
|
-
quarantineOnThreat: boolean;
|
|
6371
|
-
allowMultiple: boolean;
|
|
6372
|
-
allowReplace: boolean;
|
|
6373
|
-
allowDelete: boolean;
|
|
6374
|
-
requireUpload: boolean;
|
|
6375
|
-
extractMetadata: boolean;
|
|
6376
|
-
extractText: boolean;
|
|
6377
|
-
versioningEnabled: boolean;
|
|
6378
|
-
publicRead: boolean;
|
|
6379
|
-
presignedUrlExpiry: number;
|
|
6380
|
-
minSize?: number | undefined;
|
|
6381
|
-
maxSize?: number | undefined;
|
|
6382
|
-
allowedTypes?: string[] | undefined;
|
|
6383
|
-
blockedTypes?: string[] | undefined;
|
|
6384
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6385
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6386
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6387
|
-
storageProvider?: string | undefined;
|
|
6388
|
-
storageBucket?: string | undefined;
|
|
6389
|
-
storagePrefix?: string | undefined;
|
|
6390
|
-
imageValidation?: {
|
|
6391
|
-
generateThumbnails: boolean;
|
|
6392
|
-
preserveMetadata: boolean;
|
|
6393
|
-
autoRotate: boolean;
|
|
6394
|
-
minWidth?: number | undefined;
|
|
6395
|
-
maxWidth?: number | undefined;
|
|
6396
|
-
minHeight?: number | undefined;
|
|
6397
|
-
maxHeight?: number | undefined;
|
|
6398
|
-
aspectRatio?: string | undefined;
|
|
6399
|
-
thumbnailSizes?: {
|
|
6400
|
-
name: string;
|
|
6401
|
-
width: number;
|
|
6402
|
-
height: number;
|
|
6403
|
-
crop: boolean;
|
|
6404
|
-
}[] | undefined;
|
|
6405
|
-
} | undefined;
|
|
6406
|
-
maxVersions?: number | undefined;
|
|
6407
|
-
} | undefined;
|
|
6408
|
-
readonly maskingRule?: {
|
|
6409
|
-
field: string;
|
|
6410
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6411
|
-
preserveFormat: boolean;
|
|
6412
|
-
preserveLength: boolean;
|
|
6413
|
-
pattern?: string | undefined;
|
|
6414
|
-
roles?: string[] | undefined;
|
|
6415
|
-
exemptRoles?: string[] | undefined;
|
|
6416
|
-
} | undefined;
|
|
6417
|
-
readonly auditTrail?: boolean | undefined;
|
|
6418
|
-
readonly cached?: {
|
|
6419
|
-
enabled: boolean;
|
|
6420
|
-
ttl: number;
|
|
6421
|
-
invalidateOn: string[];
|
|
6422
|
-
} | undefined;
|
|
6423
|
-
readonly dataQuality?: {
|
|
6424
|
-
uniqueness: boolean;
|
|
6425
|
-
completeness: number;
|
|
6426
|
-
accuracy?: {
|
|
6427
|
-
source: string;
|
|
6428
|
-
threshold: number;
|
|
6429
|
-
} | undefined;
|
|
6430
|
-
} | undefined;
|
|
6431
|
-
readonly conditionalRequired?: {
|
|
6432
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6433
|
-
source?: string | undefined;
|
|
6434
|
-
ast?: unknown;
|
|
6435
|
-
meta?: {
|
|
6436
|
-
rationale?: string | undefined;
|
|
6437
|
-
generatedBy?: string | undefined;
|
|
6438
|
-
} | undefined;
|
|
6439
|
-
} | undefined;
|
|
6440
|
-
readonly sortable?: boolean | undefined;
|
|
6441
|
-
readonly inlineHelpText?: string | undefined;
|
|
6442
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6443
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6444
|
-
readonly autonumberFormat?: string | undefined;
|
|
6445
|
-
readonly index?: boolean | undefined;
|
|
6446
|
-
readonly type: "number";
|
|
6447
|
-
};
|
|
6448
|
-
readonly next_retry_at: {
|
|
6449
|
-
readonly readonly?: boolean | undefined;
|
|
6450
|
-
readonly format?: string | undefined;
|
|
6451
|
-
readonly options?: {
|
|
6452
|
-
label: string;
|
|
6453
|
-
value: string;
|
|
6454
|
-
color?: string | undefined;
|
|
6455
|
-
default?: boolean | undefined;
|
|
6456
|
-
}[] | undefined;
|
|
6457
|
-
readonly description?: string | undefined;
|
|
6458
|
-
readonly label?: string | undefined;
|
|
6459
|
-
readonly name?: string | undefined;
|
|
6460
|
-
readonly precision?: number | undefined;
|
|
6461
|
-
readonly required?: boolean | undefined;
|
|
6462
|
-
readonly multiple?: boolean | undefined;
|
|
6463
|
-
readonly dependencies?: string[] | undefined;
|
|
6464
|
-
readonly theme?: string | undefined;
|
|
6465
|
-
readonly externalId?: boolean | undefined;
|
|
6466
|
-
readonly defaultValue?: unknown;
|
|
6467
|
-
readonly group?: string | undefined;
|
|
6468
|
-
readonly hidden?: boolean | undefined;
|
|
6469
|
-
readonly system?: boolean | undefined;
|
|
6470
|
-
readonly min?: number | undefined;
|
|
6471
|
-
readonly max?: number | undefined;
|
|
6472
|
-
readonly encryptionConfig?: {
|
|
6473
|
-
enabled: boolean;
|
|
6474
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6475
|
-
keyManagement: {
|
|
6476
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6477
|
-
keyId?: string | undefined;
|
|
6478
|
-
rotationPolicy?: {
|
|
6479
|
-
enabled: boolean;
|
|
6480
|
-
frequencyDays: number;
|
|
6481
|
-
retainOldVersions: number;
|
|
6482
|
-
autoRotate: boolean;
|
|
6483
|
-
} | undefined;
|
|
6484
|
-
};
|
|
6485
|
-
scope: "record" | "field" | "table" | "database";
|
|
6486
|
-
deterministicEncryption: boolean;
|
|
6487
|
-
searchableEncryption: boolean;
|
|
6488
|
-
} | undefined;
|
|
6489
|
-
readonly columnName?: string | undefined;
|
|
6490
|
-
readonly searchable?: boolean | undefined;
|
|
6491
|
-
readonly unique?: boolean | undefined;
|
|
6492
|
-
readonly maxLength?: number | undefined;
|
|
6493
|
-
readonly minLength?: number | undefined;
|
|
6494
|
-
readonly scale?: number | undefined;
|
|
6495
|
-
readonly reference?: string | undefined;
|
|
6496
|
-
readonly referenceFilters?: string[] | undefined;
|
|
6497
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6498
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6499
|
-
readonly expression?: {
|
|
6500
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6501
|
-
source?: string | undefined;
|
|
6502
|
-
ast?: unknown;
|
|
6503
|
-
meta?: {
|
|
6504
|
-
rationale?: string | undefined;
|
|
6505
|
-
generatedBy?: string | undefined;
|
|
6506
|
-
} | undefined;
|
|
6507
|
-
} | undefined;
|
|
6508
|
-
readonly summaryOperations?: {
|
|
6509
|
-
object: string;
|
|
6510
|
-
field: string;
|
|
6511
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6512
|
-
} | undefined;
|
|
6513
|
-
readonly language?: string | undefined;
|
|
6514
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6515
|
-
readonly maxRating?: number | undefined;
|
|
6516
|
-
readonly allowHalf?: boolean | undefined;
|
|
6517
|
-
readonly displayMap?: boolean | undefined;
|
|
6518
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6519
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6520
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6521
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6522
|
-
readonly presetColors?: string[] | undefined;
|
|
6523
|
-
readonly step?: number | undefined;
|
|
6524
|
-
readonly showValue?: boolean | undefined;
|
|
6525
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6526
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6527
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6528
|
-
readonly displayValue?: boolean | undefined;
|
|
6529
|
-
readonly allowScanning?: boolean | undefined;
|
|
6530
|
-
readonly currencyConfig?: {
|
|
6531
|
-
precision: number;
|
|
6532
|
-
currencyMode: "fixed" | "dynamic";
|
|
6533
|
-
defaultCurrency: string;
|
|
6534
|
-
} | undefined;
|
|
6535
|
-
readonly vectorConfig?: {
|
|
6536
|
-
dimensions: number;
|
|
6537
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6538
|
-
normalized: boolean;
|
|
6539
|
-
indexed: boolean;
|
|
6540
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6541
|
-
} | undefined;
|
|
6542
|
-
readonly fileAttachmentConfig?: {
|
|
6543
|
-
virusScan: boolean;
|
|
6544
|
-
virusScanOnUpload: boolean;
|
|
6545
|
-
quarantineOnThreat: boolean;
|
|
6546
|
-
allowMultiple: boolean;
|
|
6547
|
-
allowReplace: boolean;
|
|
6548
|
-
allowDelete: boolean;
|
|
6549
|
-
requireUpload: boolean;
|
|
6550
|
-
extractMetadata: boolean;
|
|
6551
|
-
extractText: boolean;
|
|
6552
|
-
versioningEnabled: boolean;
|
|
6553
|
-
publicRead: boolean;
|
|
6554
|
-
presignedUrlExpiry: number;
|
|
6555
|
-
minSize?: number | undefined;
|
|
6556
|
-
maxSize?: number | undefined;
|
|
6557
|
-
allowedTypes?: string[] | undefined;
|
|
6558
|
-
blockedTypes?: string[] | undefined;
|
|
6559
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6560
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6561
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6562
|
-
storageProvider?: string | undefined;
|
|
6563
|
-
storageBucket?: string | undefined;
|
|
6564
|
-
storagePrefix?: string | undefined;
|
|
6565
|
-
imageValidation?: {
|
|
6566
|
-
generateThumbnails: boolean;
|
|
6567
|
-
preserveMetadata: boolean;
|
|
6568
|
-
autoRotate: boolean;
|
|
6569
|
-
minWidth?: number | undefined;
|
|
6570
|
-
maxWidth?: number | undefined;
|
|
6571
|
-
minHeight?: number | undefined;
|
|
6572
|
-
maxHeight?: number | undefined;
|
|
6573
|
-
aspectRatio?: string | undefined;
|
|
6574
|
-
thumbnailSizes?: {
|
|
6575
|
-
name: string;
|
|
6576
|
-
width: number;
|
|
6577
|
-
height: number;
|
|
6578
|
-
crop: boolean;
|
|
6579
|
-
}[] | undefined;
|
|
6580
|
-
} | undefined;
|
|
6581
|
-
maxVersions?: number | undefined;
|
|
6582
|
-
} | undefined;
|
|
6583
|
-
readonly maskingRule?: {
|
|
6584
|
-
field: string;
|
|
6585
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6586
|
-
preserveFormat: boolean;
|
|
6587
|
-
preserveLength: boolean;
|
|
6588
|
-
pattern?: string | undefined;
|
|
6589
|
-
roles?: string[] | undefined;
|
|
6590
|
-
exemptRoles?: string[] | undefined;
|
|
6591
|
-
} | undefined;
|
|
6592
|
-
readonly auditTrail?: boolean | undefined;
|
|
6593
|
-
readonly cached?: {
|
|
6594
|
-
enabled: boolean;
|
|
6595
|
-
ttl: number;
|
|
6596
|
-
invalidateOn: string[];
|
|
6597
|
-
} | undefined;
|
|
6598
|
-
readonly dataQuality?: {
|
|
6599
|
-
uniqueness: boolean;
|
|
6600
|
-
completeness: number;
|
|
6601
|
-
accuracy?: {
|
|
6602
|
-
source: string;
|
|
6603
|
-
threshold: number;
|
|
6604
|
-
} | undefined;
|
|
6605
|
-
} | undefined;
|
|
6606
|
-
readonly conditionalRequired?: {
|
|
6607
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6608
|
-
source?: string | undefined;
|
|
6609
|
-
ast?: unknown;
|
|
6610
|
-
meta?: {
|
|
6611
|
-
rationale?: string | undefined;
|
|
6612
|
-
generatedBy?: string | undefined;
|
|
6613
|
-
} | undefined;
|
|
6614
|
-
} | undefined;
|
|
6615
|
-
readonly sortable?: boolean | undefined;
|
|
6616
|
-
readonly inlineHelpText?: string | undefined;
|
|
6617
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6618
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6619
|
-
readonly autonumberFormat?: string | undefined;
|
|
6620
|
-
readonly index?: boolean | undefined;
|
|
6621
|
-
readonly type: "number";
|
|
6622
|
-
};
|
|
6623
|
-
readonly last_attempted_at: {
|
|
6624
|
-
readonly readonly?: boolean | undefined;
|
|
6625
|
-
readonly format?: string | undefined;
|
|
6626
|
-
readonly options?: {
|
|
6627
|
-
label: string;
|
|
6628
|
-
value: string;
|
|
6629
|
-
color?: string | undefined;
|
|
6630
|
-
default?: boolean | undefined;
|
|
6631
|
-
}[] | undefined;
|
|
6632
|
-
readonly description?: string | undefined;
|
|
6633
|
-
readonly label?: string | undefined;
|
|
6634
|
-
readonly name?: string | undefined;
|
|
6635
|
-
readonly precision?: number | undefined;
|
|
6636
|
-
readonly required?: boolean | undefined;
|
|
6637
|
-
readonly multiple?: boolean | undefined;
|
|
6638
|
-
readonly dependencies?: string[] | undefined;
|
|
6639
|
-
readonly theme?: string | undefined;
|
|
6640
|
-
readonly externalId?: boolean | undefined;
|
|
6641
|
-
readonly defaultValue?: unknown;
|
|
6642
|
-
readonly group?: string | undefined;
|
|
6643
|
-
readonly hidden?: boolean | undefined;
|
|
6644
|
-
readonly system?: boolean | undefined;
|
|
6645
|
-
readonly min?: number | undefined;
|
|
6646
|
-
readonly max?: number | undefined;
|
|
6647
|
-
readonly encryptionConfig?: {
|
|
6648
|
-
enabled: boolean;
|
|
6649
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6650
|
-
keyManagement: {
|
|
6651
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6652
|
-
keyId?: string | undefined;
|
|
6653
|
-
rotationPolicy?: {
|
|
6654
|
-
enabled: boolean;
|
|
6655
|
-
frequencyDays: number;
|
|
6656
|
-
retainOldVersions: number;
|
|
6657
|
-
autoRotate: boolean;
|
|
6658
|
-
} | undefined;
|
|
6659
|
-
};
|
|
6660
|
-
scope: "record" | "field" | "table" | "database";
|
|
6661
|
-
deterministicEncryption: boolean;
|
|
6662
|
-
searchableEncryption: boolean;
|
|
6663
|
-
} | undefined;
|
|
6664
|
-
readonly columnName?: string | undefined;
|
|
6665
|
-
readonly searchable?: boolean | undefined;
|
|
6666
|
-
readonly unique?: boolean | undefined;
|
|
6667
|
-
readonly maxLength?: number | undefined;
|
|
6668
|
-
readonly minLength?: number | undefined;
|
|
6669
|
-
readonly scale?: number | undefined;
|
|
6670
|
-
readonly reference?: string | undefined;
|
|
6671
|
-
readonly referenceFilters?: string[] | undefined;
|
|
6672
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6673
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6674
|
-
readonly expression?: {
|
|
6675
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6676
|
-
source?: string | undefined;
|
|
6677
|
-
ast?: unknown;
|
|
6678
|
-
meta?: {
|
|
6679
|
-
rationale?: string | undefined;
|
|
6680
|
-
generatedBy?: string | undefined;
|
|
6681
|
-
} | undefined;
|
|
6682
|
-
} | undefined;
|
|
6683
|
-
readonly summaryOperations?: {
|
|
6684
|
-
object: string;
|
|
6685
|
-
field: string;
|
|
6686
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6687
|
-
} | undefined;
|
|
6688
|
-
readonly language?: string | undefined;
|
|
6689
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6690
|
-
readonly maxRating?: number | undefined;
|
|
6691
|
-
readonly allowHalf?: boolean | undefined;
|
|
6692
|
-
readonly displayMap?: boolean | undefined;
|
|
6693
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6694
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6695
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6696
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6697
|
-
readonly presetColors?: string[] | undefined;
|
|
6698
|
-
readonly step?: number | undefined;
|
|
6699
|
-
readonly showValue?: boolean | undefined;
|
|
6700
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6701
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6702
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6703
|
-
readonly displayValue?: boolean | undefined;
|
|
6704
|
-
readonly allowScanning?: boolean | undefined;
|
|
6705
|
-
readonly currencyConfig?: {
|
|
6706
|
-
precision: number;
|
|
6707
|
-
currencyMode: "fixed" | "dynamic";
|
|
6708
|
-
defaultCurrency: string;
|
|
6709
|
-
} | undefined;
|
|
6710
|
-
readonly vectorConfig?: {
|
|
6711
|
-
dimensions: number;
|
|
6712
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6713
|
-
normalized: boolean;
|
|
6714
|
-
indexed: boolean;
|
|
6715
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6716
|
-
} | undefined;
|
|
6717
|
-
readonly fileAttachmentConfig?: {
|
|
6718
|
-
virusScan: boolean;
|
|
6719
|
-
virusScanOnUpload: boolean;
|
|
6720
|
-
quarantineOnThreat: boolean;
|
|
6721
|
-
allowMultiple: boolean;
|
|
6722
|
-
allowReplace: boolean;
|
|
6723
|
-
allowDelete: boolean;
|
|
6724
|
-
requireUpload: boolean;
|
|
6725
|
-
extractMetadata: boolean;
|
|
6726
|
-
extractText: boolean;
|
|
6727
|
-
versioningEnabled: boolean;
|
|
6728
|
-
publicRead: boolean;
|
|
6729
|
-
presignedUrlExpiry: number;
|
|
6730
|
-
minSize?: number | undefined;
|
|
6731
|
-
maxSize?: number | undefined;
|
|
6732
|
-
allowedTypes?: string[] | undefined;
|
|
6733
|
-
blockedTypes?: string[] | undefined;
|
|
6734
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6735
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6736
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6737
|
-
storageProvider?: string | undefined;
|
|
6738
|
-
storageBucket?: string | undefined;
|
|
6739
|
-
storagePrefix?: string | undefined;
|
|
6740
|
-
imageValidation?: {
|
|
6741
|
-
generateThumbnails: boolean;
|
|
6742
|
-
preserveMetadata: boolean;
|
|
6743
|
-
autoRotate: boolean;
|
|
6744
|
-
minWidth?: number | undefined;
|
|
6745
|
-
maxWidth?: number | undefined;
|
|
6746
|
-
minHeight?: number | undefined;
|
|
6747
|
-
maxHeight?: number | undefined;
|
|
6748
|
-
aspectRatio?: string | undefined;
|
|
6749
|
-
thumbnailSizes?: {
|
|
6750
|
-
name: string;
|
|
6751
|
-
width: number;
|
|
6752
|
-
height: number;
|
|
6753
|
-
crop: boolean;
|
|
6754
|
-
}[] | undefined;
|
|
6755
|
-
} | undefined;
|
|
6756
|
-
maxVersions?: number | undefined;
|
|
6757
|
-
} | undefined;
|
|
6758
|
-
readonly maskingRule?: {
|
|
6759
|
-
field: string;
|
|
6760
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6761
|
-
preserveFormat: boolean;
|
|
6762
|
-
preserveLength: boolean;
|
|
6763
|
-
pattern?: string | undefined;
|
|
6764
|
-
roles?: string[] | undefined;
|
|
6765
|
-
exemptRoles?: string[] | undefined;
|
|
6766
|
-
} | undefined;
|
|
6767
|
-
readonly auditTrail?: boolean | undefined;
|
|
6768
|
-
readonly cached?: {
|
|
6769
|
-
enabled: boolean;
|
|
6770
|
-
ttl: number;
|
|
6771
|
-
invalidateOn: string[];
|
|
6772
|
-
} | undefined;
|
|
6773
|
-
readonly dataQuality?: {
|
|
6774
|
-
uniqueness: boolean;
|
|
6775
|
-
completeness: number;
|
|
6776
|
-
accuracy?: {
|
|
6777
|
-
source: string;
|
|
6778
|
-
threshold: number;
|
|
6779
|
-
} | undefined;
|
|
6780
|
-
} | undefined;
|
|
6781
|
-
readonly conditionalRequired?: {
|
|
6782
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6783
|
-
source?: string | undefined;
|
|
6784
|
-
ast?: unknown;
|
|
6785
|
-
meta?: {
|
|
6786
|
-
rationale?: string | undefined;
|
|
6787
|
-
generatedBy?: string | undefined;
|
|
6788
|
-
} | undefined;
|
|
6789
|
-
} | undefined;
|
|
6790
|
-
readonly sortable?: boolean | undefined;
|
|
6791
|
-
readonly inlineHelpText?: string | undefined;
|
|
6792
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6793
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6794
|
-
readonly autonumberFormat?: string | undefined;
|
|
6795
|
-
readonly index?: boolean | undefined;
|
|
6796
|
-
readonly type: "number";
|
|
6797
|
-
};
|
|
6798
|
-
readonly response_code: {
|
|
6799
|
-
readonly readonly?: boolean | undefined;
|
|
6800
|
-
readonly format?: string | undefined;
|
|
6801
|
-
readonly options?: {
|
|
6802
|
-
label: string;
|
|
6803
|
-
value: string;
|
|
6804
|
-
color?: string | undefined;
|
|
6805
|
-
default?: boolean | undefined;
|
|
6806
|
-
}[] | undefined;
|
|
6807
|
-
readonly description?: string | undefined;
|
|
6808
|
-
readonly label?: string | undefined;
|
|
6809
|
-
readonly name?: string | undefined;
|
|
6810
|
-
readonly precision?: number | undefined;
|
|
6811
|
-
readonly required?: boolean | undefined;
|
|
6812
|
-
readonly multiple?: boolean | undefined;
|
|
6813
|
-
readonly dependencies?: string[] | undefined;
|
|
6814
|
-
readonly theme?: string | undefined;
|
|
6815
|
-
readonly externalId?: boolean | undefined;
|
|
6816
|
-
readonly defaultValue?: unknown;
|
|
6817
|
-
readonly group?: string | undefined;
|
|
6818
|
-
readonly hidden?: boolean | undefined;
|
|
6819
|
-
readonly system?: boolean | undefined;
|
|
6820
|
-
readonly min?: number | undefined;
|
|
6821
|
-
readonly max?: number | undefined;
|
|
6822
|
-
readonly encryptionConfig?: {
|
|
6823
|
-
enabled: boolean;
|
|
6824
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6825
|
-
keyManagement: {
|
|
6826
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6827
|
-
keyId?: string | undefined;
|
|
6828
|
-
rotationPolicy?: {
|
|
6829
|
-
enabled: boolean;
|
|
6830
|
-
frequencyDays: number;
|
|
6831
|
-
retainOldVersions: number;
|
|
6832
|
-
autoRotate: boolean;
|
|
6833
|
-
} | undefined;
|
|
6834
|
-
};
|
|
6835
|
-
scope: "record" | "field" | "table" | "database";
|
|
6836
|
-
deterministicEncryption: boolean;
|
|
6837
|
-
searchableEncryption: boolean;
|
|
6838
|
-
} | undefined;
|
|
6839
|
-
readonly columnName?: string | undefined;
|
|
6840
|
-
readonly searchable?: boolean | undefined;
|
|
6841
|
-
readonly unique?: boolean | undefined;
|
|
6842
|
-
readonly maxLength?: number | undefined;
|
|
6843
|
-
readonly minLength?: number | undefined;
|
|
6844
|
-
readonly scale?: number | undefined;
|
|
6845
|
-
readonly reference?: string | undefined;
|
|
6846
|
-
readonly referenceFilters?: string[] | undefined;
|
|
6847
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6848
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6849
|
-
readonly expression?: {
|
|
6850
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6851
|
-
source?: string | undefined;
|
|
6852
|
-
ast?: unknown;
|
|
6853
|
-
meta?: {
|
|
6854
|
-
rationale?: string | undefined;
|
|
6855
|
-
generatedBy?: string | undefined;
|
|
6856
|
-
} | undefined;
|
|
6857
|
-
} | undefined;
|
|
6858
|
-
readonly summaryOperations?: {
|
|
6859
|
-
object: string;
|
|
6860
|
-
field: string;
|
|
6861
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6862
|
-
} | undefined;
|
|
6863
|
-
readonly language?: string | undefined;
|
|
6864
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6865
|
-
readonly maxRating?: number | undefined;
|
|
6866
|
-
readonly allowHalf?: boolean | undefined;
|
|
6867
|
-
readonly displayMap?: boolean | undefined;
|
|
6868
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6869
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6870
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6871
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6872
|
-
readonly presetColors?: string[] | undefined;
|
|
6873
|
-
readonly step?: number | undefined;
|
|
6874
|
-
readonly showValue?: boolean | undefined;
|
|
6875
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6876
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6877
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6878
|
-
readonly displayValue?: boolean | undefined;
|
|
6879
|
-
readonly allowScanning?: boolean | undefined;
|
|
6880
|
-
readonly currencyConfig?: {
|
|
6881
|
-
precision: number;
|
|
6882
|
-
currencyMode: "fixed" | "dynamic";
|
|
6883
|
-
defaultCurrency: string;
|
|
6884
|
-
} | undefined;
|
|
6885
|
-
readonly vectorConfig?: {
|
|
6886
|
-
dimensions: number;
|
|
6887
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
6888
|
-
normalized: boolean;
|
|
6889
|
-
indexed: boolean;
|
|
6890
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
6891
|
-
} | undefined;
|
|
6892
|
-
readonly fileAttachmentConfig?: {
|
|
6893
|
-
virusScan: boolean;
|
|
6894
|
-
virusScanOnUpload: boolean;
|
|
6895
|
-
quarantineOnThreat: boolean;
|
|
6896
|
-
allowMultiple: boolean;
|
|
6897
|
-
allowReplace: boolean;
|
|
6898
|
-
allowDelete: boolean;
|
|
6899
|
-
requireUpload: boolean;
|
|
6900
|
-
extractMetadata: boolean;
|
|
6901
|
-
extractText: boolean;
|
|
6902
|
-
versioningEnabled: boolean;
|
|
6903
|
-
publicRead: boolean;
|
|
6904
|
-
presignedUrlExpiry: number;
|
|
6905
|
-
minSize?: number | undefined;
|
|
6906
|
-
maxSize?: number | undefined;
|
|
6907
|
-
allowedTypes?: string[] | undefined;
|
|
6908
|
-
blockedTypes?: string[] | undefined;
|
|
6909
|
-
allowedMimeTypes?: string[] | undefined;
|
|
6910
|
-
blockedMimeTypes?: string[] | undefined;
|
|
6911
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
6912
|
-
storageProvider?: string | undefined;
|
|
6913
|
-
storageBucket?: string | undefined;
|
|
6914
|
-
storagePrefix?: string | undefined;
|
|
6915
|
-
imageValidation?: {
|
|
6916
|
-
generateThumbnails: boolean;
|
|
6917
|
-
preserveMetadata: boolean;
|
|
6918
|
-
autoRotate: boolean;
|
|
6919
|
-
minWidth?: number | undefined;
|
|
6920
|
-
maxWidth?: number | undefined;
|
|
6921
|
-
minHeight?: number | undefined;
|
|
6922
|
-
maxHeight?: number | undefined;
|
|
6923
|
-
aspectRatio?: string | undefined;
|
|
6924
|
-
thumbnailSizes?: {
|
|
6925
|
-
name: string;
|
|
6926
|
-
width: number;
|
|
6927
|
-
height: number;
|
|
6928
|
-
crop: boolean;
|
|
6929
|
-
}[] | undefined;
|
|
6930
|
-
} | undefined;
|
|
6931
|
-
maxVersions?: number | undefined;
|
|
6932
|
-
} | undefined;
|
|
6933
|
-
readonly maskingRule?: {
|
|
6934
|
-
field: string;
|
|
6935
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6936
|
-
preserveFormat: boolean;
|
|
6937
|
-
preserveLength: boolean;
|
|
6938
|
-
pattern?: string | undefined;
|
|
6939
|
-
roles?: string[] | undefined;
|
|
6940
|
-
exemptRoles?: string[] | undefined;
|
|
6941
|
-
} | undefined;
|
|
6942
|
-
readonly auditTrail?: boolean | undefined;
|
|
6943
|
-
readonly cached?: {
|
|
6944
|
-
enabled: boolean;
|
|
6945
|
-
ttl: number;
|
|
6946
|
-
invalidateOn: string[];
|
|
6947
|
-
} | undefined;
|
|
6948
|
-
readonly dataQuality?: {
|
|
6949
|
-
uniqueness: boolean;
|
|
6950
|
-
completeness: number;
|
|
6951
|
-
accuracy?: {
|
|
6952
|
-
source: string;
|
|
6953
|
-
threshold: number;
|
|
6954
|
-
} | undefined;
|
|
6955
|
-
} | undefined;
|
|
6956
|
-
readonly conditionalRequired?: {
|
|
6957
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6958
|
-
source?: string | undefined;
|
|
6959
|
-
ast?: unknown;
|
|
6960
|
-
meta?: {
|
|
6961
|
-
rationale?: string | undefined;
|
|
6962
|
-
generatedBy?: string | undefined;
|
|
6963
|
-
} | undefined;
|
|
6964
|
-
} | undefined;
|
|
6965
|
-
readonly sortable?: boolean | undefined;
|
|
6966
|
-
readonly inlineHelpText?: string | undefined;
|
|
6967
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6968
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6969
|
-
readonly autonumberFormat?: string | undefined;
|
|
6970
|
-
readonly index?: boolean | undefined;
|
|
6971
|
-
readonly type: "number";
|
|
6972
|
-
};
|
|
6973
|
-
readonly response_body: {
|
|
6974
|
-
readonly readonly?: boolean | undefined;
|
|
6975
|
-
readonly format?: string | undefined;
|
|
6976
|
-
readonly options?: {
|
|
6977
|
-
label: string;
|
|
6978
|
-
value: string;
|
|
6979
|
-
color?: string | undefined;
|
|
6980
|
-
default?: boolean | undefined;
|
|
6981
|
-
}[] | undefined;
|
|
6982
|
-
readonly description?: string | undefined;
|
|
6983
|
-
readonly label?: string | undefined;
|
|
6984
|
-
readonly name?: string | undefined;
|
|
6985
|
-
readonly precision?: number | undefined;
|
|
6986
|
-
readonly required?: boolean | undefined;
|
|
6987
|
-
readonly multiple?: boolean | undefined;
|
|
6988
|
-
readonly dependencies?: string[] | undefined;
|
|
6989
|
-
readonly theme?: string | undefined;
|
|
6990
|
-
readonly externalId?: boolean | undefined;
|
|
6991
|
-
readonly defaultValue?: unknown;
|
|
6992
|
-
readonly group?: string | undefined;
|
|
6993
|
-
readonly hidden?: boolean | undefined;
|
|
6994
|
-
readonly system?: boolean | undefined;
|
|
6995
|
-
readonly min?: number | undefined;
|
|
6996
|
-
readonly max?: number | undefined;
|
|
6997
|
-
readonly encryptionConfig?: {
|
|
6998
|
-
enabled: boolean;
|
|
6999
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7000
|
-
keyManagement: {
|
|
7001
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7002
|
-
keyId?: string | undefined;
|
|
7003
|
-
rotationPolicy?: {
|
|
7004
|
-
enabled: boolean;
|
|
7005
|
-
frequencyDays: number;
|
|
7006
|
-
retainOldVersions: number;
|
|
7007
|
-
autoRotate: boolean;
|
|
7008
|
-
} | undefined;
|
|
7009
|
-
};
|
|
7010
|
-
scope: "record" | "field" | "table" | "database";
|
|
7011
|
-
deterministicEncryption: boolean;
|
|
7012
|
-
searchableEncryption: boolean;
|
|
7013
|
-
} | undefined;
|
|
7014
|
-
readonly columnName?: string | undefined;
|
|
7015
|
-
readonly searchable?: boolean | undefined;
|
|
7016
|
-
readonly unique?: boolean | undefined;
|
|
7017
|
-
readonly maxLength?: number | undefined;
|
|
7018
|
-
readonly minLength?: number | undefined;
|
|
7019
|
-
readonly scale?: number | undefined;
|
|
7020
|
-
readonly reference?: string | undefined;
|
|
7021
|
-
readonly referenceFilters?: string[] | undefined;
|
|
7022
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7023
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7024
|
-
readonly expression?: {
|
|
7025
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7026
|
-
source?: string | undefined;
|
|
7027
|
-
ast?: unknown;
|
|
7028
|
-
meta?: {
|
|
7029
|
-
rationale?: string | undefined;
|
|
7030
|
-
generatedBy?: string | undefined;
|
|
7031
|
-
} | undefined;
|
|
7032
|
-
} | undefined;
|
|
7033
|
-
readonly summaryOperations?: {
|
|
7034
|
-
object: string;
|
|
7035
|
-
field: string;
|
|
7036
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7037
|
-
} | undefined;
|
|
7038
|
-
readonly language?: string | undefined;
|
|
7039
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7040
|
-
readonly maxRating?: number | undefined;
|
|
7041
|
-
readonly allowHalf?: boolean | undefined;
|
|
7042
|
-
readonly displayMap?: boolean | undefined;
|
|
7043
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7044
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7045
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7046
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7047
|
-
readonly presetColors?: string[] | undefined;
|
|
7048
|
-
readonly step?: number | undefined;
|
|
7049
|
-
readonly showValue?: boolean | undefined;
|
|
7050
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7051
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7052
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7053
|
-
readonly displayValue?: boolean | undefined;
|
|
7054
|
-
readonly allowScanning?: boolean | undefined;
|
|
7055
|
-
readonly currencyConfig?: {
|
|
7056
|
-
precision: number;
|
|
7057
|
-
currencyMode: "fixed" | "dynamic";
|
|
7058
|
-
defaultCurrency: string;
|
|
7059
|
-
} | undefined;
|
|
7060
|
-
readonly vectorConfig?: {
|
|
7061
|
-
dimensions: number;
|
|
7062
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
7063
|
-
normalized: boolean;
|
|
7064
|
-
indexed: boolean;
|
|
7065
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
7066
|
-
} | undefined;
|
|
7067
|
-
readonly fileAttachmentConfig?: {
|
|
7068
|
-
virusScan: boolean;
|
|
7069
|
-
virusScanOnUpload: boolean;
|
|
7070
|
-
quarantineOnThreat: boolean;
|
|
7071
|
-
allowMultiple: boolean;
|
|
7072
|
-
allowReplace: boolean;
|
|
7073
|
-
allowDelete: boolean;
|
|
7074
|
-
requireUpload: boolean;
|
|
7075
|
-
extractMetadata: boolean;
|
|
7076
|
-
extractText: boolean;
|
|
7077
|
-
versioningEnabled: boolean;
|
|
7078
|
-
publicRead: boolean;
|
|
7079
|
-
presignedUrlExpiry: number;
|
|
7080
|
-
minSize?: number | undefined;
|
|
7081
|
-
maxSize?: number | undefined;
|
|
7082
|
-
allowedTypes?: string[] | undefined;
|
|
7083
|
-
blockedTypes?: string[] | undefined;
|
|
7084
|
-
allowedMimeTypes?: string[] | undefined;
|
|
7085
|
-
blockedMimeTypes?: string[] | undefined;
|
|
7086
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
7087
|
-
storageProvider?: string | undefined;
|
|
7088
|
-
storageBucket?: string | undefined;
|
|
7089
|
-
storagePrefix?: string | undefined;
|
|
7090
|
-
imageValidation?: {
|
|
7091
|
-
generateThumbnails: boolean;
|
|
7092
|
-
preserveMetadata: boolean;
|
|
7093
|
-
autoRotate: boolean;
|
|
7094
|
-
minWidth?: number | undefined;
|
|
7095
|
-
maxWidth?: number | undefined;
|
|
7096
|
-
minHeight?: number | undefined;
|
|
7097
|
-
maxHeight?: number | undefined;
|
|
7098
|
-
aspectRatio?: string | undefined;
|
|
7099
|
-
thumbnailSizes?: {
|
|
7100
|
-
name: string;
|
|
7101
|
-
width: number;
|
|
7102
|
-
height: number;
|
|
7103
|
-
crop: boolean;
|
|
7104
|
-
}[] | undefined;
|
|
7105
|
-
} | undefined;
|
|
7106
|
-
maxVersions?: number | undefined;
|
|
7107
|
-
} | undefined;
|
|
7108
|
-
readonly maskingRule?: {
|
|
7109
|
-
field: string;
|
|
7110
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7111
|
-
preserveFormat: boolean;
|
|
7112
|
-
preserveLength: boolean;
|
|
7113
|
-
pattern?: string | undefined;
|
|
7114
|
-
roles?: string[] | undefined;
|
|
7115
|
-
exemptRoles?: string[] | undefined;
|
|
7116
|
-
} | undefined;
|
|
7117
|
-
readonly auditTrail?: boolean | undefined;
|
|
7118
|
-
readonly cached?: {
|
|
7119
|
-
enabled: boolean;
|
|
7120
|
-
ttl: number;
|
|
7121
|
-
invalidateOn: string[];
|
|
7122
|
-
} | undefined;
|
|
7123
|
-
readonly dataQuality?: {
|
|
7124
|
-
uniqueness: boolean;
|
|
7125
|
-
completeness: number;
|
|
7126
|
-
accuracy?: {
|
|
7127
|
-
source: string;
|
|
7128
|
-
threshold: number;
|
|
7129
|
-
} | undefined;
|
|
7130
|
-
} | undefined;
|
|
7131
|
-
readonly conditionalRequired?: {
|
|
7132
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7133
|
-
source?: string | undefined;
|
|
7134
|
-
ast?: unknown;
|
|
7135
|
-
meta?: {
|
|
7136
|
-
rationale?: string | undefined;
|
|
7137
|
-
generatedBy?: string | undefined;
|
|
7138
|
-
} | undefined;
|
|
7139
|
-
} | undefined;
|
|
7140
|
-
readonly sortable?: boolean | undefined;
|
|
7141
|
-
readonly inlineHelpText?: string | undefined;
|
|
7142
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7143
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7144
|
-
readonly autonumberFormat?: string | undefined;
|
|
7145
|
-
readonly index?: boolean | undefined;
|
|
7146
|
-
readonly type: "textarea";
|
|
7147
|
-
};
|
|
7148
|
-
readonly error: {
|
|
7149
|
-
readonly readonly?: boolean | undefined;
|
|
7150
|
-
readonly format?: string | undefined;
|
|
7151
|
-
readonly options?: {
|
|
7152
|
-
label: string;
|
|
7153
|
-
value: string;
|
|
7154
|
-
color?: string | undefined;
|
|
7155
|
-
default?: boolean | undefined;
|
|
7156
|
-
}[] | undefined;
|
|
7157
|
-
readonly description?: string | undefined;
|
|
7158
|
-
readonly label?: string | undefined;
|
|
7159
|
-
readonly name?: string | undefined;
|
|
7160
|
-
readonly precision?: number | undefined;
|
|
7161
|
-
readonly required?: boolean | undefined;
|
|
7162
|
-
readonly multiple?: boolean | undefined;
|
|
7163
|
-
readonly dependencies?: string[] | undefined;
|
|
7164
|
-
readonly theme?: string | undefined;
|
|
7165
|
-
readonly externalId?: boolean | undefined;
|
|
7166
|
-
readonly defaultValue?: unknown;
|
|
7167
|
-
readonly group?: string | undefined;
|
|
7168
|
-
readonly hidden?: boolean | undefined;
|
|
7169
|
-
readonly system?: boolean | undefined;
|
|
7170
|
-
readonly min?: number | undefined;
|
|
7171
|
-
readonly max?: number | undefined;
|
|
7172
|
-
readonly encryptionConfig?: {
|
|
7173
|
-
enabled: boolean;
|
|
7174
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7175
|
-
keyManagement: {
|
|
7176
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7177
|
-
keyId?: string | undefined;
|
|
7178
|
-
rotationPolicy?: {
|
|
7179
|
-
enabled: boolean;
|
|
7180
|
-
frequencyDays: number;
|
|
7181
|
-
retainOldVersions: number;
|
|
7182
|
-
autoRotate: boolean;
|
|
7183
|
-
} | undefined;
|
|
7184
|
-
};
|
|
7185
|
-
scope: "record" | "field" | "table" | "database";
|
|
7186
|
-
deterministicEncryption: boolean;
|
|
7187
|
-
searchableEncryption: boolean;
|
|
7188
|
-
} | undefined;
|
|
7189
|
-
readonly columnName?: string | undefined;
|
|
7190
|
-
readonly searchable?: boolean | undefined;
|
|
7191
|
-
readonly unique?: boolean | undefined;
|
|
7192
|
-
readonly maxLength?: number | undefined;
|
|
7193
|
-
readonly minLength?: number | undefined;
|
|
7194
|
-
readonly scale?: number | undefined;
|
|
7195
|
-
readonly reference?: string | undefined;
|
|
7196
|
-
readonly referenceFilters?: string[] | undefined;
|
|
7197
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7198
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7199
|
-
readonly expression?: {
|
|
7200
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7201
|
-
source?: string | undefined;
|
|
7202
|
-
ast?: unknown;
|
|
7203
|
-
meta?: {
|
|
7204
|
-
rationale?: string | undefined;
|
|
7205
|
-
generatedBy?: string | undefined;
|
|
7206
|
-
} | undefined;
|
|
7207
|
-
} | undefined;
|
|
7208
|
-
readonly summaryOperations?: {
|
|
7209
|
-
object: string;
|
|
7210
|
-
field: string;
|
|
7211
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7212
|
-
} | undefined;
|
|
7213
|
-
readonly language?: string | undefined;
|
|
7214
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7215
|
-
readonly maxRating?: number | undefined;
|
|
7216
|
-
readonly allowHalf?: boolean | undefined;
|
|
7217
|
-
readonly displayMap?: boolean | undefined;
|
|
7218
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7219
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7220
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7221
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7222
|
-
readonly presetColors?: string[] | undefined;
|
|
7223
|
-
readonly step?: number | undefined;
|
|
7224
|
-
readonly showValue?: boolean | undefined;
|
|
7225
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7226
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7227
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7228
|
-
readonly displayValue?: boolean | undefined;
|
|
7229
|
-
readonly allowScanning?: boolean | undefined;
|
|
7230
|
-
readonly currencyConfig?: {
|
|
7231
|
-
precision: number;
|
|
7232
|
-
currencyMode: "fixed" | "dynamic";
|
|
7233
|
-
defaultCurrency: string;
|
|
7234
|
-
} | undefined;
|
|
7235
|
-
readonly vectorConfig?: {
|
|
7236
|
-
dimensions: number;
|
|
7237
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
7238
|
-
normalized: boolean;
|
|
7239
|
-
indexed: boolean;
|
|
7240
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
7241
|
-
} | undefined;
|
|
7242
|
-
readonly fileAttachmentConfig?: {
|
|
7243
|
-
virusScan: boolean;
|
|
7244
|
-
virusScanOnUpload: boolean;
|
|
7245
|
-
quarantineOnThreat: boolean;
|
|
7246
|
-
allowMultiple: boolean;
|
|
7247
|
-
allowReplace: boolean;
|
|
7248
|
-
allowDelete: boolean;
|
|
7249
|
-
requireUpload: boolean;
|
|
7250
|
-
extractMetadata: boolean;
|
|
7251
|
-
extractText: boolean;
|
|
7252
|
-
versioningEnabled: boolean;
|
|
7253
|
-
publicRead: boolean;
|
|
7254
|
-
presignedUrlExpiry: number;
|
|
7255
|
-
minSize?: number | undefined;
|
|
7256
|
-
maxSize?: number | undefined;
|
|
7257
|
-
allowedTypes?: string[] | undefined;
|
|
7258
|
-
blockedTypes?: string[] | undefined;
|
|
7259
|
-
allowedMimeTypes?: string[] | undefined;
|
|
7260
|
-
blockedMimeTypes?: string[] | undefined;
|
|
7261
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
7262
|
-
storageProvider?: string | undefined;
|
|
7263
|
-
storageBucket?: string | undefined;
|
|
7264
|
-
storagePrefix?: string | undefined;
|
|
7265
|
-
imageValidation?: {
|
|
7266
|
-
generateThumbnails: boolean;
|
|
7267
|
-
preserveMetadata: boolean;
|
|
7268
|
-
autoRotate: boolean;
|
|
7269
|
-
minWidth?: number | undefined;
|
|
7270
|
-
maxWidth?: number | undefined;
|
|
7271
|
-
minHeight?: number | undefined;
|
|
7272
|
-
maxHeight?: number | undefined;
|
|
7273
|
-
aspectRatio?: string | undefined;
|
|
7274
|
-
thumbnailSizes?: {
|
|
7275
|
-
name: string;
|
|
7276
|
-
width: number;
|
|
7277
|
-
height: number;
|
|
7278
|
-
crop: boolean;
|
|
7279
|
-
}[] | undefined;
|
|
7280
|
-
} | undefined;
|
|
7281
|
-
maxVersions?: number | undefined;
|
|
7282
|
-
} | undefined;
|
|
7283
|
-
readonly maskingRule?: {
|
|
7284
|
-
field: string;
|
|
7285
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7286
|
-
preserveFormat: boolean;
|
|
7287
|
-
preserveLength: boolean;
|
|
7288
|
-
pattern?: string | undefined;
|
|
7289
|
-
roles?: string[] | undefined;
|
|
7290
|
-
exemptRoles?: string[] | undefined;
|
|
7291
|
-
} | undefined;
|
|
7292
|
-
readonly auditTrail?: boolean | undefined;
|
|
7293
|
-
readonly cached?: {
|
|
7294
|
-
enabled: boolean;
|
|
7295
|
-
ttl: number;
|
|
7296
|
-
invalidateOn: string[];
|
|
7297
|
-
} | undefined;
|
|
7298
|
-
readonly dataQuality?: {
|
|
7299
|
-
uniqueness: boolean;
|
|
7300
|
-
completeness: number;
|
|
7301
|
-
accuracy?: {
|
|
7302
|
-
source: string;
|
|
7303
|
-
threshold: number;
|
|
7304
|
-
} | undefined;
|
|
7305
|
-
} | undefined;
|
|
7306
|
-
readonly conditionalRequired?: {
|
|
7307
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7308
|
-
source?: string | undefined;
|
|
7309
|
-
ast?: unknown;
|
|
7310
|
-
meta?: {
|
|
7311
|
-
rationale?: string | undefined;
|
|
7312
|
-
generatedBy?: string | undefined;
|
|
7313
|
-
} | undefined;
|
|
7314
|
-
} | undefined;
|
|
7315
|
-
readonly sortable?: boolean | undefined;
|
|
7316
|
-
readonly inlineHelpText?: string | undefined;
|
|
7317
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7318
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7319
|
-
readonly autonumberFormat?: string | undefined;
|
|
7320
|
-
readonly index?: boolean | undefined;
|
|
7321
|
-
readonly type: "textarea";
|
|
7322
|
-
};
|
|
7323
|
-
readonly created_at: {
|
|
7324
|
-
readonly readonly?: boolean | undefined;
|
|
7325
|
-
readonly format?: string | undefined;
|
|
7326
|
-
readonly options?: {
|
|
7327
|
-
label: string;
|
|
7328
|
-
value: string;
|
|
7329
|
-
color?: string | undefined;
|
|
7330
|
-
default?: boolean | undefined;
|
|
7331
|
-
}[] | undefined;
|
|
7332
|
-
readonly description?: string | undefined;
|
|
7333
|
-
readonly label?: string | undefined;
|
|
7334
|
-
readonly name?: string | undefined;
|
|
7335
|
-
readonly precision?: number | undefined;
|
|
7336
|
-
readonly required?: boolean | undefined;
|
|
7337
|
-
readonly multiple?: boolean | undefined;
|
|
7338
|
-
readonly dependencies?: string[] | undefined;
|
|
7339
|
-
readonly theme?: string | undefined;
|
|
7340
|
-
readonly externalId?: boolean | undefined;
|
|
7341
|
-
readonly defaultValue?: unknown;
|
|
7342
|
-
readonly group?: string | undefined;
|
|
7343
|
-
readonly hidden?: boolean | undefined;
|
|
7344
|
-
readonly system?: boolean | undefined;
|
|
7345
|
-
readonly min?: number | undefined;
|
|
7346
|
-
readonly max?: number | undefined;
|
|
7347
|
-
readonly encryptionConfig?: {
|
|
7348
|
-
enabled: boolean;
|
|
7349
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7350
|
-
keyManagement: {
|
|
7351
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7352
|
-
keyId?: string | undefined;
|
|
7353
|
-
rotationPolicy?: {
|
|
7354
|
-
enabled: boolean;
|
|
7355
|
-
frequencyDays: number;
|
|
7356
|
-
retainOldVersions: number;
|
|
7357
|
-
autoRotate: boolean;
|
|
7358
|
-
} | undefined;
|
|
7359
|
-
};
|
|
7360
|
-
scope: "record" | "field" | "table" | "database";
|
|
7361
|
-
deterministicEncryption: boolean;
|
|
7362
|
-
searchableEncryption: boolean;
|
|
7363
|
-
} | undefined;
|
|
7364
|
-
readonly columnName?: string | undefined;
|
|
7365
|
-
readonly searchable?: boolean | undefined;
|
|
7366
|
-
readonly unique?: boolean | undefined;
|
|
7367
|
-
readonly maxLength?: number | undefined;
|
|
7368
|
-
readonly minLength?: number | undefined;
|
|
7369
|
-
readonly scale?: number | undefined;
|
|
7370
|
-
readonly reference?: string | undefined;
|
|
7371
|
-
readonly referenceFilters?: string[] | undefined;
|
|
7372
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7373
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7374
|
-
readonly expression?: {
|
|
7375
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7376
|
-
source?: string | undefined;
|
|
7377
|
-
ast?: unknown;
|
|
7378
|
-
meta?: {
|
|
7379
|
-
rationale?: string | undefined;
|
|
7380
|
-
generatedBy?: string | undefined;
|
|
7381
|
-
} | undefined;
|
|
7382
|
-
} | undefined;
|
|
7383
|
-
readonly summaryOperations?: {
|
|
7384
|
-
object: string;
|
|
7385
|
-
field: string;
|
|
7386
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7387
|
-
} | undefined;
|
|
7388
|
-
readonly language?: string | undefined;
|
|
7389
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7390
|
-
readonly maxRating?: number | undefined;
|
|
7391
|
-
readonly allowHalf?: boolean | undefined;
|
|
7392
|
-
readonly displayMap?: boolean | undefined;
|
|
7393
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7394
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7395
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7396
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7397
|
-
readonly presetColors?: string[] | undefined;
|
|
7398
|
-
readonly step?: number | undefined;
|
|
7399
|
-
readonly showValue?: boolean | undefined;
|
|
7400
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7401
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7402
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7403
|
-
readonly displayValue?: boolean | undefined;
|
|
7404
|
-
readonly allowScanning?: boolean | undefined;
|
|
7405
|
-
readonly currencyConfig?: {
|
|
7406
|
-
precision: number;
|
|
7407
|
-
currencyMode: "fixed" | "dynamic";
|
|
7408
|
-
defaultCurrency: string;
|
|
7409
|
-
} | undefined;
|
|
7410
|
-
readonly vectorConfig?: {
|
|
7411
|
-
dimensions: number;
|
|
7412
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
7413
|
-
normalized: boolean;
|
|
7414
|
-
indexed: boolean;
|
|
7415
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
7416
|
-
} | undefined;
|
|
7417
|
-
readonly fileAttachmentConfig?: {
|
|
7418
|
-
virusScan: boolean;
|
|
7419
|
-
virusScanOnUpload: boolean;
|
|
7420
|
-
quarantineOnThreat: boolean;
|
|
7421
|
-
allowMultiple: boolean;
|
|
7422
|
-
allowReplace: boolean;
|
|
7423
|
-
allowDelete: boolean;
|
|
7424
|
-
requireUpload: boolean;
|
|
7425
|
-
extractMetadata: boolean;
|
|
7426
|
-
extractText: boolean;
|
|
7427
|
-
versioningEnabled: boolean;
|
|
7428
|
-
publicRead: boolean;
|
|
7429
|
-
presignedUrlExpiry: number;
|
|
7430
|
-
minSize?: number | undefined;
|
|
7431
|
-
maxSize?: number | undefined;
|
|
7432
|
-
allowedTypes?: string[] | undefined;
|
|
7433
|
-
blockedTypes?: string[] | undefined;
|
|
7434
|
-
allowedMimeTypes?: string[] | undefined;
|
|
7435
|
-
blockedMimeTypes?: string[] | undefined;
|
|
7436
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
7437
|
-
storageProvider?: string | undefined;
|
|
7438
|
-
storageBucket?: string | undefined;
|
|
7439
|
-
storagePrefix?: string | undefined;
|
|
7440
|
-
imageValidation?: {
|
|
7441
|
-
generateThumbnails: boolean;
|
|
7442
|
-
preserveMetadata: boolean;
|
|
7443
|
-
autoRotate: boolean;
|
|
7444
|
-
minWidth?: number | undefined;
|
|
7445
|
-
maxWidth?: number | undefined;
|
|
7446
|
-
minHeight?: number | undefined;
|
|
7447
|
-
maxHeight?: number | undefined;
|
|
7448
|
-
aspectRatio?: string | undefined;
|
|
7449
|
-
thumbnailSizes?: {
|
|
7450
|
-
name: string;
|
|
7451
|
-
width: number;
|
|
7452
|
-
height: number;
|
|
7453
|
-
crop: boolean;
|
|
7454
|
-
}[] | undefined;
|
|
7455
|
-
} | undefined;
|
|
7456
|
-
maxVersions?: number | undefined;
|
|
7457
|
-
} | undefined;
|
|
7458
|
-
readonly maskingRule?: {
|
|
7459
|
-
field: string;
|
|
7460
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7461
|
-
preserveFormat: boolean;
|
|
7462
|
-
preserveLength: boolean;
|
|
7463
|
-
pattern?: string | undefined;
|
|
7464
|
-
roles?: string[] | undefined;
|
|
7465
|
-
exemptRoles?: string[] | undefined;
|
|
7466
|
-
} | undefined;
|
|
7467
|
-
readonly auditTrail?: boolean | undefined;
|
|
7468
|
-
readonly cached?: {
|
|
7469
|
-
enabled: boolean;
|
|
7470
|
-
ttl: number;
|
|
7471
|
-
invalidateOn: string[];
|
|
7472
|
-
} | undefined;
|
|
7473
|
-
readonly dataQuality?: {
|
|
7474
|
-
uniqueness: boolean;
|
|
7475
|
-
completeness: number;
|
|
7476
|
-
accuracy?: {
|
|
7477
|
-
source: string;
|
|
7478
|
-
threshold: number;
|
|
7479
|
-
} | undefined;
|
|
7480
|
-
} | undefined;
|
|
7481
|
-
readonly conditionalRequired?: {
|
|
7482
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7483
|
-
source?: string | undefined;
|
|
7484
|
-
ast?: unknown;
|
|
7485
|
-
meta?: {
|
|
7486
|
-
rationale?: string | undefined;
|
|
7487
|
-
generatedBy?: string | undefined;
|
|
7488
|
-
} | undefined;
|
|
7489
|
-
} | undefined;
|
|
7490
|
-
readonly sortable?: boolean | undefined;
|
|
7491
|
-
readonly inlineHelpText?: string | undefined;
|
|
7492
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7493
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7494
|
-
readonly autonumberFormat?: string | undefined;
|
|
7495
|
-
readonly index?: boolean | undefined;
|
|
7496
|
-
readonly type: "number";
|
|
7497
|
-
};
|
|
7498
|
-
readonly updated_at: {
|
|
7499
|
-
readonly readonly?: boolean | undefined;
|
|
7500
|
-
readonly format?: string | undefined;
|
|
7501
|
-
readonly options?: {
|
|
7502
|
-
label: string;
|
|
7503
|
-
value: string;
|
|
7504
|
-
color?: string | undefined;
|
|
7505
|
-
default?: boolean | undefined;
|
|
7506
|
-
}[] | undefined;
|
|
7507
|
-
readonly description?: string | undefined;
|
|
7508
|
-
readonly label?: string | undefined;
|
|
7509
|
-
readonly name?: string | undefined;
|
|
7510
|
-
readonly precision?: number | undefined;
|
|
7511
|
-
readonly required?: boolean | undefined;
|
|
7512
|
-
readonly multiple?: boolean | undefined;
|
|
7513
|
-
readonly dependencies?: string[] | undefined;
|
|
7514
|
-
readonly theme?: string | undefined;
|
|
7515
|
-
readonly externalId?: boolean | undefined;
|
|
7516
|
-
readonly defaultValue?: unknown;
|
|
7517
|
-
readonly group?: string | undefined;
|
|
7518
|
-
readonly hidden?: boolean | undefined;
|
|
7519
|
-
readonly system?: boolean | undefined;
|
|
7520
|
-
readonly min?: number | undefined;
|
|
7521
|
-
readonly max?: number | undefined;
|
|
7522
|
-
readonly encryptionConfig?: {
|
|
7523
|
-
enabled: boolean;
|
|
7524
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7525
|
-
keyManagement: {
|
|
7526
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7527
|
-
keyId?: string | undefined;
|
|
7528
|
-
rotationPolicy?: {
|
|
7529
|
-
enabled: boolean;
|
|
7530
|
-
frequencyDays: number;
|
|
7531
|
-
retainOldVersions: number;
|
|
7532
|
-
autoRotate: boolean;
|
|
7533
|
-
} | undefined;
|
|
7534
|
-
};
|
|
7535
|
-
scope: "record" | "field" | "table" | "database";
|
|
7536
|
-
deterministicEncryption: boolean;
|
|
7537
|
-
searchableEncryption: boolean;
|
|
7538
|
-
} | undefined;
|
|
7539
|
-
readonly columnName?: string | undefined;
|
|
7540
|
-
readonly searchable?: boolean | undefined;
|
|
7541
|
-
readonly unique?: boolean | undefined;
|
|
7542
|
-
readonly maxLength?: number | undefined;
|
|
7543
|
-
readonly minLength?: number | undefined;
|
|
7544
|
-
readonly scale?: number | undefined;
|
|
7545
|
-
readonly reference?: string | undefined;
|
|
7546
|
-
readonly referenceFilters?: string[] | undefined;
|
|
7547
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7548
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7549
|
-
readonly expression?: {
|
|
7550
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7551
|
-
source?: string | undefined;
|
|
7552
|
-
ast?: unknown;
|
|
7553
|
-
meta?: {
|
|
7554
|
-
rationale?: string | undefined;
|
|
7555
|
-
generatedBy?: string | undefined;
|
|
7556
|
-
} | undefined;
|
|
7557
|
-
} | undefined;
|
|
7558
|
-
readonly summaryOperations?: {
|
|
7559
|
-
object: string;
|
|
7560
|
-
field: string;
|
|
7561
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7562
|
-
} | undefined;
|
|
7563
|
-
readonly language?: string | undefined;
|
|
7564
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7565
|
-
readonly maxRating?: number | undefined;
|
|
7566
|
-
readonly allowHalf?: boolean | undefined;
|
|
7567
|
-
readonly displayMap?: boolean | undefined;
|
|
7568
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7569
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7570
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7571
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7572
|
-
readonly presetColors?: string[] | undefined;
|
|
7573
|
-
readonly step?: number | undefined;
|
|
7574
|
-
readonly showValue?: boolean | undefined;
|
|
7575
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7576
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7577
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7578
|
-
readonly displayValue?: boolean | undefined;
|
|
7579
|
-
readonly allowScanning?: boolean | undefined;
|
|
7580
|
-
readonly currencyConfig?: {
|
|
7581
|
-
precision: number;
|
|
7582
|
-
currencyMode: "fixed" | "dynamic";
|
|
7583
|
-
defaultCurrency: string;
|
|
7584
|
-
} | undefined;
|
|
7585
|
-
readonly vectorConfig?: {
|
|
7586
|
-
dimensions: number;
|
|
7587
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
7588
|
-
normalized: boolean;
|
|
7589
|
-
indexed: boolean;
|
|
7590
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
7591
|
-
} | undefined;
|
|
7592
|
-
readonly fileAttachmentConfig?: {
|
|
7593
|
-
virusScan: boolean;
|
|
7594
|
-
virusScanOnUpload: boolean;
|
|
7595
|
-
quarantineOnThreat: boolean;
|
|
7596
|
-
allowMultiple: boolean;
|
|
7597
|
-
allowReplace: boolean;
|
|
7598
|
-
allowDelete: boolean;
|
|
7599
|
-
requireUpload: boolean;
|
|
7600
|
-
extractMetadata: boolean;
|
|
7601
|
-
extractText: boolean;
|
|
7602
|
-
versioningEnabled: boolean;
|
|
7603
|
-
publicRead: boolean;
|
|
7604
|
-
presignedUrlExpiry: number;
|
|
7605
|
-
minSize?: number | undefined;
|
|
7606
|
-
maxSize?: number | undefined;
|
|
7607
|
-
allowedTypes?: string[] | undefined;
|
|
7608
|
-
blockedTypes?: string[] | undefined;
|
|
7609
|
-
allowedMimeTypes?: string[] | undefined;
|
|
7610
|
-
blockedMimeTypes?: string[] | undefined;
|
|
7611
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
7612
|
-
storageProvider?: string | undefined;
|
|
7613
|
-
storageBucket?: string | undefined;
|
|
7614
|
-
storagePrefix?: string | undefined;
|
|
7615
|
-
imageValidation?: {
|
|
7616
|
-
generateThumbnails: boolean;
|
|
7617
|
-
preserveMetadata: boolean;
|
|
7618
|
-
autoRotate: boolean;
|
|
7619
|
-
minWidth?: number | undefined;
|
|
7620
|
-
maxWidth?: number | undefined;
|
|
7621
|
-
minHeight?: number | undefined;
|
|
7622
|
-
maxHeight?: number | undefined;
|
|
7623
|
-
aspectRatio?: string | undefined;
|
|
7624
|
-
thumbnailSizes?: {
|
|
7625
|
-
name: string;
|
|
7626
|
-
width: number;
|
|
7627
|
-
height: number;
|
|
7628
|
-
crop: boolean;
|
|
7629
|
-
}[] | undefined;
|
|
7630
|
-
} | undefined;
|
|
7631
|
-
maxVersions?: number | undefined;
|
|
7632
|
-
} | undefined;
|
|
7633
|
-
readonly maskingRule?: {
|
|
7634
|
-
field: string;
|
|
7635
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7636
|
-
preserveFormat: boolean;
|
|
7637
|
-
preserveLength: boolean;
|
|
7638
|
-
pattern?: string | undefined;
|
|
7639
|
-
roles?: string[] | undefined;
|
|
7640
|
-
exemptRoles?: string[] | undefined;
|
|
7641
|
-
} | undefined;
|
|
7642
|
-
readonly auditTrail?: boolean | undefined;
|
|
7643
|
-
readonly cached?: {
|
|
7644
|
-
enabled: boolean;
|
|
7645
|
-
ttl: number;
|
|
7646
|
-
invalidateOn: string[];
|
|
7647
|
-
} | undefined;
|
|
7648
|
-
readonly dataQuality?: {
|
|
7649
|
-
uniqueness: boolean;
|
|
7650
|
-
completeness: number;
|
|
7651
|
-
accuracy?: {
|
|
7652
|
-
source: string;
|
|
7653
|
-
threshold: number;
|
|
7654
|
-
} | undefined;
|
|
7655
|
-
} | undefined;
|
|
7656
|
-
readonly conditionalRequired?: {
|
|
7657
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7658
|
-
source?: string | undefined;
|
|
7659
|
-
ast?: unknown;
|
|
7660
|
-
meta?: {
|
|
7661
|
-
rationale?: string | undefined;
|
|
7662
|
-
generatedBy?: string | undefined;
|
|
7663
|
-
} | undefined;
|
|
7664
|
-
} | undefined;
|
|
7665
|
-
readonly sortable?: boolean | undefined;
|
|
7666
|
-
readonly inlineHelpText?: string | undefined;
|
|
7667
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7668
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7669
|
-
readonly autonumberFormat?: string | undefined;
|
|
7670
|
-
readonly index?: boolean | undefined;
|
|
7671
|
-
readonly type: "number";
|
|
7672
|
-
};
|
|
7673
|
-
};
|
|
7674
|
-
readonly indexes: [{
|
|
7675
|
-
readonly fields: ["event_id", "webhook_id"];
|
|
7676
|
-
readonly unique: true;
|
|
7677
|
-
}, {
|
|
7678
|
-
readonly fields: ["status", "partition_key", "next_retry_at"];
|
|
7679
|
-
}, {
|
|
7680
|
-
readonly fields: ["status", "claimed_at"];
|
|
7681
|
-
}, {
|
|
7682
|
-
readonly fields: ["webhook_id"];
|
|
7683
|
-
}];
|
|
7684
|
-
}, "fields">;
|
|
7685
|
-
/** Canonical object name — exported so SqlWebhookOutbox callers can override if needed. */
|
|
7686
|
-
declare const SYS_WEBHOOK_DELIVERY: "sys_webhook_delivery";
|
|
7687
|
-
|
|
7688
|
-
export { SYS_WEBHOOK_DELIVERY, SysWebhook, SysWebhookDelivery };
|
|
2929
|
+
export { SysWebhook };
|