@objectstack/platform-objects 11.4.0 → 11.5.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/dist/audit/index.d.mts +4301 -1
- package/dist/audit/index.d.ts +4301 -1
- package/dist/audit/index.js +81 -0
- package/dist/audit/index.js.map +1 -1
- package/dist/audit/index.mjs +81 -1
- package/dist/audit/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +81 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +81 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/audit/index.d.ts
CHANGED
|
@@ -29724,4 +29724,4304 @@ declare const SysJobQueue: Omit<{
|
|
|
29724
29724
|
}];
|
|
29725
29725
|
}, "fields">;
|
|
29726
29726
|
|
|
29727
|
-
|
|
29727
|
+
/**
|
|
29728
|
+
* sys_import_job — Asynchronous Data Import Job
|
|
29729
|
+
*
|
|
29730
|
+
* Each row tracks one bulk import submitted through the async import API
|
|
29731
|
+
* (`POST /data/:object/import/jobs`). The client sends the whole payload
|
|
29732
|
+
* (rows[] or a base64 xlsx) in one request; the server persists this row,
|
|
29733
|
+
* processes the batch in the background, and streams progress by updating the
|
|
29734
|
+
* counters below. Readers poll `progress` / `results` and list history.
|
|
29735
|
+
*
|
|
29736
|
+
* Persisting to the DB (rather than in-memory) means progress and history
|
|
29737
|
+
* survive a server restart and are queryable per object / per user.
|
|
29738
|
+
*
|
|
29739
|
+
* Writers: the rest-server import-job worker.
|
|
29740
|
+
* Readers: the Import Wizard (progress + history), dashboards.
|
|
29741
|
+
*
|
|
29742
|
+
* @namespace sys
|
|
29743
|
+
*/
|
|
29744
|
+
declare const SysImportJob: Omit<{
|
|
29745
|
+
name: string;
|
|
29746
|
+
active: boolean;
|
|
29747
|
+
isSystem: boolean;
|
|
29748
|
+
abstract: boolean;
|
|
29749
|
+
datasource: string;
|
|
29750
|
+
fields: Record<string, {
|
|
29751
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
29752
|
+
required: boolean;
|
|
29753
|
+
searchable: boolean;
|
|
29754
|
+
multiple: boolean;
|
|
29755
|
+
unique: boolean;
|
|
29756
|
+
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
29757
|
+
hidden: boolean;
|
|
29758
|
+
readonly: boolean;
|
|
29759
|
+
sortable: boolean;
|
|
29760
|
+
index: boolean;
|
|
29761
|
+
externalId: boolean;
|
|
29762
|
+
name?: string | undefined;
|
|
29763
|
+
label?: string | undefined;
|
|
29764
|
+
description?: string | undefined;
|
|
29765
|
+
format?: string | undefined;
|
|
29766
|
+
columnName?: string | undefined;
|
|
29767
|
+
defaultValue?: unknown;
|
|
29768
|
+
maxLength?: number | undefined;
|
|
29769
|
+
minLength?: number | undefined;
|
|
29770
|
+
precision?: number | undefined;
|
|
29771
|
+
scale?: number | undefined;
|
|
29772
|
+
min?: number | undefined;
|
|
29773
|
+
max?: number | undefined;
|
|
29774
|
+
options?: {
|
|
29775
|
+
label: string;
|
|
29776
|
+
value: string;
|
|
29777
|
+
color?: string | undefined;
|
|
29778
|
+
default?: boolean | undefined;
|
|
29779
|
+
}[] | undefined;
|
|
29780
|
+
reference?: string | undefined;
|
|
29781
|
+
referenceFilters?: string[] | undefined;
|
|
29782
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
29783
|
+
inlineTitle?: string | undefined;
|
|
29784
|
+
inlineColumns?: any[] | undefined;
|
|
29785
|
+
inlineAmountField?: string | undefined;
|
|
29786
|
+
relatedList?: boolean | undefined;
|
|
29787
|
+
relatedListTitle?: string | undefined;
|
|
29788
|
+
relatedListColumns?: any[] | undefined;
|
|
29789
|
+
displayField?: string | undefined;
|
|
29790
|
+
descriptionField?: string | undefined;
|
|
29791
|
+
lookupColumns?: (string | {
|
|
29792
|
+
field: string;
|
|
29793
|
+
label?: string | undefined;
|
|
29794
|
+
width?: string | undefined;
|
|
29795
|
+
type?: string | undefined;
|
|
29796
|
+
})[] | undefined;
|
|
29797
|
+
lookupPageSize?: number | undefined;
|
|
29798
|
+
lookupFilters?: {
|
|
29799
|
+
field: string;
|
|
29800
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
29801
|
+
value: any;
|
|
29802
|
+
}[] | undefined;
|
|
29803
|
+
dependsOn?: (string | {
|
|
29804
|
+
field: string;
|
|
29805
|
+
param?: string | undefined;
|
|
29806
|
+
})[] | undefined;
|
|
29807
|
+
allowCreate?: boolean | undefined;
|
|
29808
|
+
expression?: {
|
|
29809
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29810
|
+
source?: string | undefined;
|
|
29811
|
+
ast?: unknown;
|
|
29812
|
+
meta?: {
|
|
29813
|
+
rationale?: string | undefined;
|
|
29814
|
+
generatedBy?: string | undefined;
|
|
29815
|
+
} | undefined;
|
|
29816
|
+
} | {
|
|
29817
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29818
|
+
source?: string | undefined;
|
|
29819
|
+
ast?: unknown;
|
|
29820
|
+
meta?: {
|
|
29821
|
+
rationale?: string | undefined;
|
|
29822
|
+
generatedBy?: string | undefined;
|
|
29823
|
+
} | undefined;
|
|
29824
|
+
} | undefined;
|
|
29825
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29826
|
+
summaryOperations?: {
|
|
29827
|
+
object: string;
|
|
29828
|
+
field: string;
|
|
29829
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
29830
|
+
relationshipField?: string | undefined;
|
|
29831
|
+
} | undefined;
|
|
29832
|
+
language?: string | undefined;
|
|
29833
|
+
step?: number | undefined;
|
|
29834
|
+
currencyConfig?: {
|
|
29835
|
+
precision: number;
|
|
29836
|
+
currencyMode: "fixed" | "dynamic";
|
|
29837
|
+
defaultCurrency: string;
|
|
29838
|
+
} | undefined;
|
|
29839
|
+
dimensions?: number | undefined;
|
|
29840
|
+
vectorConfig?: {
|
|
29841
|
+
dimensions: number;
|
|
29842
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
29843
|
+
normalized: boolean;
|
|
29844
|
+
indexed: boolean;
|
|
29845
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
29846
|
+
} | undefined;
|
|
29847
|
+
fileAttachmentConfig?: {
|
|
29848
|
+
virusScan: boolean;
|
|
29849
|
+
virusScanOnUpload: boolean;
|
|
29850
|
+
quarantineOnThreat: boolean;
|
|
29851
|
+
allowMultiple: boolean;
|
|
29852
|
+
allowReplace: boolean;
|
|
29853
|
+
allowDelete: boolean;
|
|
29854
|
+
requireUpload: boolean;
|
|
29855
|
+
extractMetadata: boolean;
|
|
29856
|
+
extractText: boolean;
|
|
29857
|
+
versioningEnabled: boolean;
|
|
29858
|
+
publicRead: boolean;
|
|
29859
|
+
presignedUrlExpiry: number;
|
|
29860
|
+
minSize?: number | undefined;
|
|
29861
|
+
maxSize?: number | undefined;
|
|
29862
|
+
allowedTypes?: string[] | undefined;
|
|
29863
|
+
blockedTypes?: string[] | undefined;
|
|
29864
|
+
allowedMimeTypes?: string[] | undefined;
|
|
29865
|
+
blockedMimeTypes?: string[] | undefined;
|
|
29866
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
29867
|
+
storageProvider?: string | undefined;
|
|
29868
|
+
storageBucket?: string | undefined;
|
|
29869
|
+
storagePrefix?: string | undefined;
|
|
29870
|
+
imageValidation?: {
|
|
29871
|
+
generateThumbnails: boolean;
|
|
29872
|
+
preserveMetadata: boolean;
|
|
29873
|
+
autoRotate: boolean;
|
|
29874
|
+
minWidth?: number | undefined;
|
|
29875
|
+
maxWidth?: number | undefined;
|
|
29876
|
+
minHeight?: number | undefined;
|
|
29877
|
+
maxHeight?: number | undefined;
|
|
29878
|
+
aspectRatio?: string | undefined;
|
|
29879
|
+
thumbnailSizes?: {
|
|
29880
|
+
name: string;
|
|
29881
|
+
width: number;
|
|
29882
|
+
height: number;
|
|
29883
|
+
crop: boolean;
|
|
29884
|
+
}[] | undefined;
|
|
29885
|
+
} | undefined;
|
|
29886
|
+
maxVersions?: number | undefined;
|
|
29887
|
+
} | undefined;
|
|
29888
|
+
trackHistory?: boolean | undefined;
|
|
29889
|
+
dependencies?: string[] | undefined;
|
|
29890
|
+
group?: string | undefined;
|
|
29891
|
+
visibleWhen?: {
|
|
29892
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29893
|
+
source?: string | undefined;
|
|
29894
|
+
ast?: unknown;
|
|
29895
|
+
meta?: {
|
|
29896
|
+
rationale?: string | undefined;
|
|
29897
|
+
generatedBy?: string | undefined;
|
|
29898
|
+
} | undefined;
|
|
29899
|
+
} | {
|
|
29900
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29901
|
+
source?: string | undefined;
|
|
29902
|
+
ast?: unknown;
|
|
29903
|
+
meta?: {
|
|
29904
|
+
rationale?: string | undefined;
|
|
29905
|
+
generatedBy?: string | undefined;
|
|
29906
|
+
} | undefined;
|
|
29907
|
+
} | undefined;
|
|
29908
|
+
readonlyWhen?: {
|
|
29909
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29910
|
+
source?: string | undefined;
|
|
29911
|
+
ast?: unknown;
|
|
29912
|
+
meta?: {
|
|
29913
|
+
rationale?: string | undefined;
|
|
29914
|
+
generatedBy?: string | undefined;
|
|
29915
|
+
} | undefined;
|
|
29916
|
+
} | {
|
|
29917
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29918
|
+
source?: string | undefined;
|
|
29919
|
+
ast?: unknown;
|
|
29920
|
+
meta?: {
|
|
29921
|
+
rationale?: string | undefined;
|
|
29922
|
+
generatedBy?: string | undefined;
|
|
29923
|
+
} | undefined;
|
|
29924
|
+
} | undefined;
|
|
29925
|
+
requiredWhen?: {
|
|
29926
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29927
|
+
source?: string | undefined;
|
|
29928
|
+
ast?: unknown;
|
|
29929
|
+
meta?: {
|
|
29930
|
+
rationale?: string | undefined;
|
|
29931
|
+
generatedBy?: string | undefined;
|
|
29932
|
+
} | undefined;
|
|
29933
|
+
} | {
|
|
29934
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29935
|
+
source?: string | undefined;
|
|
29936
|
+
ast?: unknown;
|
|
29937
|
+
meta?: {
|
|
29938
|
+
rationale?: string | undefined;
|
|
29939
|
+
generatedBy?: string | undefined;
|
|
29940
|
+
} | undefined;
|
|
29941
|
+
} | undefined;
|
|
29942
|
+
conditionalRequired?: {
|
|
29943
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29944
|
+
source?: string | undefined;
|
|
29945
|
+
ast?: unknown;
|
|
29946
|
+
meta?: {
|
|
29947
|
+
rationale?: string | undefined;
|
|
29948
|
+
generatedBy?: string | undefined;
|
|
29949
|
+
} | undefined;
|
|
29950
|
+
} | {
|
|
29951
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
29952
|
+
source?: string | undefined;
|
|
29953
|
+
ast?: unknown;
|
|
29954
|
+
meta?: {
|
|
29955
|
+
rationale?: string | undefined;
|
|
29956
|
+
generatedBy?: string | undefined;
|
|
29957
|
+
} | undefined;
|
|
29958
|
+
} | undefined;
|
|
29959
|
+
requiredPermissions?: string[] | undefined;
|
|
29960
|
+
system?: boolean | undefined;
|
|
29961
|
+
inlineHelpText?: string | undefined;
|
|
29962
|
+
autonumberFormat?: string | undefined;
|
|
29963
|
+
}>;
|
|
29964
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
29965
|
+
_lockReason?: string | undefined;
|
|
29966
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
29967
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
29968
|
+
_packageId?: string | undefined;
|
|
29969
|
+
_packageVersion?: string | undefined;
|
|
29970
|
+
_lockDocsUrl?: string | undefined;
|
|
29971
|
+
label?: string | undefined;
|
|
29972
|
+
pluralLabel?: string | undefined;
|
|
29973
|
+
description?: string | undefined;
|
|
29974
|
+
icon?: string | undefined;
|
|
29975
|
+
tags?: string[] | undefined;
|
|
29976
|
+
managedBy?: "platform" | "system" | "config" | "append-only" | "better-auth" | undefined;
|
|
29977
|
+
userActions?: {
|
|
29978
|
+
create?: boolean | undefined;
|
|
29979
|
+
import?: boolean | undefined;
|
|
29980
|
+
edit?: boolean | undefined;
|
|
29981
|
+
delete?: boolean | undefined;
|
|
29982
|
+
exportCsv?: boolean | undefined;
|
|
29983
|
+
} | undefined;
|
|
29984
|
+
systemFields?: false | {
|
|
29985
|
+
tenant?: boolean | undefined;
|
|
29986
|
+
owner?: boolean | undefined;
|
|
29987
|
+
audit?: boolean | undefined;
|
|
29988
|
+
} | undefined;
|
|
29989
|
+
external?: {
|
|
29990
|
+
writable: boolean;
|
|
29991
|
+
remoteName?: string | undefined;
|
|
29992
|
+
remoteSchema?: string | undefined;
|
|
29993
|
+
columnMap?: Record<string, string> | undefined;
|
|
29994
|
+
introspectedAt?: string | undefined;
|
|
29995
|
+
ignoreColumns?: string[] | undefined;
|
|
29996
|
+
} | undefined;
|
|
29997
|
+
indexes?: {
|
|
29998
|
+
fields: string[];
|
|
29999
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
30000
|
+
unique: boolean;
|
|
30001
|
+
name?: string | undefined;
|
|
30002
|
+
partial?: string | undefined;
|
|
30003
|
+
}[] | undefined;
|
|
30004
|
+
fieldGroups?: {
|
|
30005
|
+
key: string;
|
|
30006
|
+
label: string;
|
|
30007
|
+
defaultExpanded: boolean;
|
|
30008
|
+
icon?: string | undefined;
|
|
30009
|
+
description?: string | undefined;
|
|
30010
|
+
visibleOn?: {
|
|
30011
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30012
|
+
source?: string | undefined;
|
|
30013
|
+
ast?: unknown;
|
|
30014
|
+
meta?: {
|
|
30015
|
+
rationale?: string | undefined;
|
|
30016
|
+
generatedBy?: string | undefined;
|
|
30017
|
+
} | undefined;
|
|
30018
|
+
} | {
|
|
30019
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30020
|
+
source?: string | undefined;
|
|
30021
|
+
ast?: unknown;
|
|
30022
|
+
meta?: {
|
|
30023
|
+
rationale?: string | undefined;
|
|
30024
|
+
generatedBy?: string | undefined;
|
|
30025
|
+
} | undefined;
|
|
30026
|
+
} | undefined;
|
|
30027
|
+
}[] | undefined;
|
|
30028
|
+
tenancy?: {
|
|
30029
|
+
enabled: boolean;
|
|
30030
|
+
strategy: "hybrid" | "shared" | "isolated";
|
|
30031
|
+
tenantField: string;
|
|
30032
|
+
crossTenantAccess: boolean;
|
|
30033
|
+
} | undefined;
|
|
30034
|
+
access?: {
|
|
30035
|
+
default: "public" | "private";
|
|
30036
|
+
} | undefined;
|
|
30037
|
+
requiredPermissions?: string[] | undefined;
|
|
30038
|
+
softDelete?: {
|
|
30039
|
+
enabled: boolean;
|
|
30040
|
+
field: string;
|
|
30041
|
+
cascadeDelete: boolean;
|
|
30042
|
+
} | undefined;
|
|
30043
|
+
versioning?: {
|
|
30044
|
+
enabled: boolean;
|
|
30045
|
+
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
30046
|
+
versionField: string;
|
|
30047
|
+
retentionDays?: number | undefined;
|
|
30048
|
+
} | undefined;
|
|
30049
|
+
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
30050
|
+
activityMilestones?: {
|
|
30051
|
+
field: string;
|
|
30052
|
+
value: string;
|
|
30053
|
+
summary: string;
|
|
30054
|
+
type?: string | undefined;
|
|
30055
|
+
}[] | undefined;
|
|
30056
|
+
nameField?: string | undefined;
|
|
30057
|
+
displayNameField?: string | undefined;
|
|
30058
|
+
recordName?: {
|
|
30059
|
+
type: "text" | "autonumber";
|
|
30060
|
+
displayFormat?: string | undefined;
|
|
30061
|
+
startNumber?: number | undefined;
|
|
30062
|
+
} | undefined;
|
|
30063
|
+
titleFormat?: {
|
|
30064
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30065
|
+
source?: string | undefined;
|
|
30066
|
+
ast?: unknown;
|
|
30067
|
+
meta?: {
|
|
30068
|
+
rationale?: string | undefined;
|
|
30069
|
+
generatedBy?: string | undefined;
|
|
30070
|
+
} | undefined;
|
|
30071
|
+
} | {
|
|
30072
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30073
|
+
source?: string | undefined;
|
|
30074
|
+
ast?: unknown;
|
|
30075
|
+
meta?: {
|
|
30076
|
+
rationale?: string | undefined;
|
|
30077
|
+
generatedBy?: string | undefined;
|
|
30078
|
+
} | undefined;
|
|
30079
|
+
} | undefined;
|
|
30080
|
+
compactLayout?: string[] | undefined;
|
|
30081
|
+
listViews?: Record<string, {
|
|
30082
|
+
type: "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
30083
|
+
columns: string[] | {
|
|
30084
|
+
field: string;
|
|
30085
|
+
label?: string | undefined;
|
|
30086
|
+
width?: number | undefined;
|
|
30087
|
+
align?: "left" | "center" | "right" | undefined;
|
|
30088
|
+
hidden?: boolean | undefined;
|
|
30089
|
+
sortable?: boolean | undefined;
|
|
30090
|
+
resizable?: boolean | undefined;
|
|
30091
|
+
wrap?: boolean | undefined;
|
|
30092
|
+
type?: string | undefined;
|
|
30093
|
+
pinned?: "left" | "right" | undefined;
|
|
30094
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
30095
|
+
link?: boolean | undefined;
|
|
30096
|
+
action?: string | undefined;
|
|
30097
|
+
}[];
|
|
30098
|
+
name?: string | undefined;
|
|
30099
|
+
label?: string | undefined;
|
|
30100
|
+
data?: {
|
|
30101
|
+
provider: "object";
|
|
30102
|
+
object: string;
|
|
30103
|
+
} | {
|
|
30104
|
+
provider: "api";
|
|
30105
|
+
read?: {
|
|
30106
|
+
url: string;
|
|
30107
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
30108
|
+
headers?: Record<string, string> | undefined;
|
|
30109
|
+
params?: Record<string, unknown> | undefined;
|
|
30110
|
+
body?: unknown;
|
|
30111
|
+
} | undefined;
|
|
30112
|
+
write?: {
|
|
30113
|
+
url: string;
|
|
30114
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
30115
|
+
headers?: Record<string, string> | undefined;
|
|
30116
|
+
params?: Record<string, unknown> | undefined;
|
|
30117
|
+
body?: unknown;
|
|
30118
|
+
} | undefined;
|
|
30119
|
+
} | {
|
|
30120
|
+
provider: "value";
|
|
30121
|
+
items: unknown[];
|
|
30122
|
+
} | {
|
|
30123
|
+
provider: "schema";
|
|
30124
|
+
schemaId: string;
|
|
30125
|
+
schema?: Record<string, unknown> | undefined;
|
|
30126
|
+
} | undefined;
|
|
30127
|
+
filter?: {
|
|
30128
|
+
field: string;
|
|
30129
|
+
operator: string;
|
|
30130
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
30131
|
+
}[] | undefined;
|
|
30132
|
+
sort?: string | {
|
|
30133
|
+
field: string;
|
|
30134
|
+
order: "asc" | "desc";
|
|
30135
|
+
}[] | undefined;
|
|
30136
|
+
searchableFields?: string[] | undefined;
|
|
30137
|
+
filterableFields?: string[] | undefined;
|
|
30138
|
+
userFilters?: {
|
|
30139
|
+
element: "toggle" | "tabs" | "dropdown";
|
|
30140
|
+
fields?: {
|
|
30141
|
+
field: string;
|
|
30142
|
+
label?: string | undefined;
|
|
30143
|
+
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
30144
|
+
options?: {
|
|
30145
|
+
value: string | number | boolean;
|
|
30146
|
+
label: string;
|
|
30147
|
+
color?: string | undefined;
|
|
30148
|
+
}[] | undefined;
|
|
30149
|
+
showCount?: boolean | undefined;
|
|
30150
|
+
defaultValues?: (string | number | boolean)[] | undefined;
|
|
30151
|
+
}[] | undefined;
|
|
30152
|
+
tabs?: {
|
|
30153
|
+
name: string;
|
|
30154
|
+
pinned: boolean;
|
|
30155
|
+
isDefault: boolean;
|
|
30156
|
+
visible: boolean;
|
|
30157
|
+
label?: string | undefined;
|
|
30158
|
+
icon?: string | undefined;
|
|
30159
|
+
view?: string | undefined;
|
|
30160
|
+
filter?: {
|
|
30161
|
+
field: string;
|
|
30162
|
+
operator: string;
|
|
30163
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
30164
|
+
}[] | undefined;
|
|
30165
|
+
order?: number | undefined;
|
|
30166
|
+
}[] | undefined;
|
|
30167
|
+
showAllRecords?: boolean | undefined;
|
|
30168
|
+
} | undefined;
|
|
30169
|
+
resizable?: boolean | undefined;
|
|
30170
|
+
striped?: boolean | undefined;
|
|
30171
|
+
bordered?: boolean | undefined;
|
|
30172
|
+
compactToolbar?: boolean | undefined;
|
|
30173
|
+
selection?: {
|
|
30174
|
+
type: "none" | "multiple" | "single";
|
|
30175
|
+
} | undefined;
|
|
30176
|
+
navigation?: {
|
|
30177
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
30178
|
+
preventNavigation: boolean;
|
|
30179
|
+
openNewTab: boolean;
|
|
30180
|
+
view?: string | undefined;
|
|
30181
|
+
width?: string | number | undefined;
|
|
30182
|
+
} | undefined;
|
|
30183
|
+
pagination?: {
|
|
30184
|
+
pageSize: number;
|
|
30185
|
+
pageSizeOptions?: number[] | undefined;
|
|
30186
|
+
} | undefined;
|
|
30187
|
+
kanban?: {
|
|
30188
|
+
groupByField: string;
|
|
30189
|
+
columns: string[];
|
|
30190
|
+
summarizeField?: string | undefined;
|
|
30191
|
+
} | undefined;
|
|
30192
|
+
calendar?: {
|
|
30193
|
+
startDateField: string;
|
|
30194
|
+
titleField: string;
|
|
30195
|
+
endDateField?: string | undefined;
|
|
30196
|
+
colorField?: string | undefined;
|
|
30197
|
+
} | undefined;
|
|
30198
|
+
gantt?: {
|
|
30199
|
+
[x: string]: unknown;
|
|
30200
|
+
startDateField: string;
|
|
30201
|
+
endDateField: string;
|
|
30202
|
+
titleField: string;
|
|
30203
|
+
progressField?: string | undefined;
|
|
30204
|
+
dependenciesField?: string | undefined;
|
|
30205
|
+
colorField?: string | undefined;
|
|
30206
|
+
parentField?: string | undefined;
|
|
30207
|
+
typeField?: string | undefined;
|
|
30208
|
+
baselineStartField?: string | undefined;
|
|
30209
|
+
baselineEndField?: string | undefined;
|
|
30210
|
+
groupByField?: string | undefined;
|
|
30211
|
+
resourceView?: boolean | undefined;
|
|
30212
|
+
assigneeField?: string | undefined;
|
|
30213
|
+
effortField?: string | undefined;
|
|
30214
|
+
capacity?: number | undefined;
|
|
30215
|
+
tooltipFields?: (string | {
|
|
30216
|
+
field: string;
|
|
30217
|
+
label?: string | undefined;
|
|
30218
|
+
})[] | undefined;
|
|
30219
|
+
quickFilters?: {
|
|
30220
|
+
field: string;
|
|
30221
|
+
label?: string | undefined;
|
|
30222
|
+
options?: (string | {
|
|
30223
|
+
value: string | number;
|
|
30224
|
+
label?: string | undefined;
|
|
30225
|
+
})[] | undefined;
|
|
30226
|
+
}[] | undefined;
|
|
30227
|
+
autoZoomToFilter?: boolean | undefined;
|
|
30228
|
+
} | undefined;
|
|
30229
|
+
gallery?: {
|
|
30230
|
+
coverFit: "cover" | "contain";
|
|
30231
|
+
cardSize: "small" | "medium" | "large";
|
|
30232
|
+
coverField?: string | undefined;
|
|
30233
|
+
titleField?: string | undefined;
|
|
30234
|
+
visibleFields?: string[] | undefined;
|
|
30235
|
+
} | undefined;
|
|
30236
|
+
timeline?: {
|
|
30237
|
+
startDateField: string;
|
|
30238
|
+
titleField: string;
|
|
30239
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
30240
|
+
endDateField?: string | undefined;
|
|
30241
|
+
groupByField?: string | undefined;
|
|
30242
|
+
colorField?: string | undefined;
|
|
30243
|
+
} | undefined;
|
|
30244
|
+
chart?: {
|
|
30245
|
+
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
30246
|
+
dataset: string;
|
|
30247
|
+
values: string[];
|
|
30248
|
+
dimensions?: string[] | undefined;
|
|
30249
|
+
} | undefined;
|
|
30250
|
+
tree?: {
|
|
30251
|
+
[x: string]: unknown;
|
|
30252
|
+
parentField?: string | undefined;
|
|
30253
|
+
labelField?: string | undefined;
|
|
30254
|
+
fields?: string[] | undefined;
|
|
30255
|
+
defaultExpandedDepth?: number | undefined;
|
|
30256
|
+
} | undefined;
|
|
30257
|
+
description?: string | undefined;
|
|
30258
|
+
sharing?: {
|
|
30259
|
+
type: "personal" | "collaborative";
|
|
30260
|
+
lockedBy?: string | undefined;
|
|
30261
|
+
} | undefined;
|
|
30262
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
30263
|
+
grouping?: {
|
|
30264
|
+
fields: {
|
|
30265
|
+
field: string;
|
|
30266
|
+
order: "asc" | "desc";
|
|
30267
|
+
collapsed: boolean;
|
|
30268
|
+
}[];
|
|
30269
|
+
} | undefined;
|
|
30270
|
+
rowColor?: {
|
|
30271
|
+
field: string;
|
|
30272
|
+
colors?: Record<string, string> | undefined;
|
|
30273
|
+
} | undefined;
|
|
30274
|
+
hiddenFields?: string[] | undefined;
|
|
30275
|
+
fieldOrder?: string[] | undefined;
|
|
30276
|
+
rowActions?: string[] | undefined;
|
|
30277
|
+
bulkActions?: string[] | undefined;
|
|
30278
|
+
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
30279
|
+
virtualScroll?: boolean | undefined;
|
|
30280
|
+
conditionalFormatting?: {
|
|
30281
|
+
condition: {
|
|
30282
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30283
|
+
source?: string | undefined;
|
|
30284
|
+
ast?: unknown;
|
|
30285
|
+
meta?: {
|
|
30286
|
+
rationale?: string | undefined;
|
|
30287
|
+
generatedBy?: string | undefined;
|
|
30288
|
+
} | undefined;
|
|
30289
|
+
} | {
|
|
30290
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30291
|
+
source?: string | undefined;
|
|
30292
|
+
ast?: unknown;
|
|
30293
|
+
meta?: {
|
|
30294
|
+
rationale?: string | undefined;
|
|
30295
|
+
generatedBy?: string | undefined;
|
|
30296
|
+
} | undefined;
|
|
30297
|
+
};
|
|
30298
|
+
style: Record<string, string>;
|
|
30299
|
+
}[] | undefined;
|
|
30300
|
+
inlineEdit?: boolean | undefined;
|
|
30301
|
+
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
30302
|
+
userActions?: {
|
|
30303
|
+
sort: boolean;
|
|
30304
|
+
search: boolean;
|
|
30305
|
+
filter: boolean;
|
|
30306
|
+
rowHeight: boolean;
|
|
30307
|
+
addRecordForm: boolean;
|
|
30308
|
+
editInline: boolean;
|
|
30309
|
+
buttons?: string[] | undefined;
|
|
30310
|
+
} | undefined;
|
|
30311
|
+
appearance?: {
|
|
30312
|
+
showDescription: boolean;
|
|
30313
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map")[] | undefined;
|
|
30314
|
+
} | undefined;
|
|
30315
|
+
tabs?: {
|
|
30316
|
+
name: string;
|
|
30317
|
+
pinned: boolean;
|
|
30318
|
+
isDefault: boolean;
|
|
30319
|
+
visible: boolean;
|
|
30320
|
+
label?: string | undefined;
|
|
30321
|
+
icon?: string | undefined;
|
|
30322
|
+
view?: string | undefined;
|
|
30323
|
+
filter?: {
|
|
30324
|
+
field: string;
|
|
30325
|
+
operator: string;
|
|
30326
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
30327
|
+
}[] | undefined;
|
|
30328
|
+
order?: number | undefined;
|
|
30329
|
+
}[] | undefined;
|
|
30330
|
+
addRecord?: {
|
|
30331
|
+
enabled: boolean;
|
|
30332
|
+
position: "top" | "bottom" | "both";
|
|
30333
|
+
mode: "form" | "modal" | "inline";
|
|
30334
|
+
formView?: string | undefined;
|
|
30335
|
+
} | undefined;
|
|
30336
|
+
showRecordCount?: boolean | undefined;
|
|
30337
|
+
allowPrinting?: boolean | undefined;
|
|
30338
|
+
emptyState?: {
|
|
30339
|
+
title?: string | undefined;
|
|
30340
|
+
message?: string | undefined;
|
|
30341
|
+
icon?: string | undefined;
|
|
30342
|
+
} | undefined;
|
|
30343
|
+
aria?: {
|
|
30344
|
+
ariaLabel?: string | undefined;
|
|
30345
|
+
ariaDescribedBy?: string | undefined;
|
|
30346
|
+
role?: string | undefined;
|
|
30347
|
+
} | undefined;
|
|
30348
|
+
responsive?: {
|
|
30349
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
30350
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
30351
|
+
columns?: {
|
|
30352
|
+
xs?: number | undefined;
|
|
30353
|
+
sm?: number | undefined;
|
|
30354
|
+
md?: number | undefined;
|
|
30355
|
+
lg?: number | undefined;
|
|
30356
|
+
xl?: number | undefined;
|
|
30357
|
+
'2xl'?: number | undefined;
|
|
30358
|
+
} | undefined;
|
|
30359
|
+
order?: {
|
|
30360
|
+
xs?: number | undefined;
|
|
30361
|
+
sm?: number | undefined;
|
|
30362
|
+
md?: number | undefined;
|
|
30363
|
+
lg?: number | undefined;
|
|
30364
|
+
xl?: number | undefined;
|
|
30365
|
+
'2xl'?: number | undefined;
|
|
30366
|
+
} | undefined;
|
|
30367
|
+
} | undefined;
|
|
30368
|
+
performance?: {
|
|
30369
|
+
lazyLoad?: boolean | undefined;
|
|
30370
|
+
virtualScroll?: {
|
|
30371
|
+
enabled: boolean;
|
|
30372
|
+
itemHeight?: number | undefined;
|
|
30373
|
+
overscan?: number | undefined;
|
|
30374
|
+
} | undefined;
|
|
30375
|
+
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
30376
|
+
prefetch?: boolean | undefined;
|
|
30377
|
+
pageSize?: number | undefined;
|
|
30378
|
+
debounceMs?: number | undefined;
|
|
30379
|
+
} | undefined;
|
|
30380
|
+
}> | undefined;
|
|
30381
|
+
searchableFields?: string[] | undefined;
|
|
30382
|
+
search?: {
|
|
30383
|
+
fields: string[];
|
|
30384
|
+
displayFields?: string[] | undefined;
|
|
30385
|
+
filters?: string[] | undefined;
|
|
30386
|
+
} | undefined;
|
|
30387
|
+
enable?: {
|
|
30388
|
+
trackHistory: boolean;
|
|
30389
|
+
searchable: boolean;
|
|
30390
|
+
apiEnabled: boolean;
|
|
30391
|
+
files: boolean;
|
|
30392
|
+
feeds: boolean;
|
|
30393
|
+
activities: boolean;
|
|
30394
|
+
trash: boolean;
|
|
30395
|
+
mru: boolean;
|
|
30396
|
+
clone: boolean;
|
|
30397
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
30398
|
+
} | undefined;
|
|
30399
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
30400
|
+
publicSharing?: {
|
|
30401
|
+
enabled: boolean;
|
|
30402
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
30403
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
30404
|
+
maxExpiryDays?: number | undefined;
|
|
30405
|
+
redactFields?: string[] | undefined;
|
|
30406
|
+
eligibility?: string | undefined;
|
|
30407
|
+
} | undefined;
|
|
30408
|
+
keyPrefix?: string | undefined;
|
|
30409
|
+
detail?: {
|
|
30410
|
+
[x: string]: unknown;
|
|
30411
|
+
renderViaSchema?: boolean | undefined;
|
|
30412
|
+
hideReferenceRail?: boolean | undefined;
|
|
30413
|
+
hideRelatedTab?: boolean | undefined;
|
|
30414
|
+
} | undefined;
|
|
30415
|
+
actions?: {
|
|
30416
|
+
name: string;
|
|
30417
|
+
label: string;
|
|
30418
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
30419
|
+
refreshAfter: boolean;
|
|
30420
|
+
objectName?: string | undefined;
|
|
30421
|
+
icon?: string | undefined;
|
|
30422
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
30423
|
+
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
30424
|
+
target?: string | undefined;
|
|
30425
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
30426
|
+
body?: {
|
|
30427
|
+
language: "expression";
|
|
30428
|
+
source: string;
|
|
30429
|
+
} | {
|
|
30430
|
+
language: "js";
|
|
30431
|
+
source: string;
|
|
30432
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
30433
|
+
timeoutMs?: number | undefined;
|
|
30434
|
+
memoryMb?: number | undefined;
|
|
30435
|
+
} | undefined;
|
|
30436
|
+
execute?: string | undefined;
|
|
30437
|
+
params?: {
|
|
30438
|
+
required: boolean;
|
|
30439
|
+
name?: string | undefined;
|
|
30440
|
+
field?: string | undefined;
|
|
30441
|
+
objectOverride?: string | undefined;
|
|
30442
|
+
label?: string | undefined;
|
|
30443
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
30444
|
+
options?: {
|
|
30445
|
+
label: string;
|
|
30446
|
+
value: string;
|
|
30447
|
+
}[] | undefined;
|
|
30448
|
+
placeholder?: string | undefined;
|
|
30449
|
+
helpText?: string | undefined;
|
|
30450
|
+
defaultValue?: unknown;
|
|
30451
|
+
defaultFromRow?: boolean | undefined;
|
|
30452
|
+
}[] | undefined;
|
|
30453
|
+
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
30454
|
+
confirmText?: string | undefined;
|
|
30455
|
+
successMessage?: string | undefined;
|
|
30456
|
+
errorMessage?: string | undefined;
|
|
30457
|
+
undoable?: boolean | undefined;
|
|
30458
|
+
resultDialog?: {
|
|
30459
|
+
title?: string | undefined;
|
|
30460
|
+
description?: string | undefined;
|
|
30461
|
+
acknowledge?: string | undefined;
|
|
30462
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
30463
|
+
fields?: {
|
|
30464
|
+
path: string;
|
|
30465
|
+
label?: string | undefined;
|
|
30466
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
30467
|
+
}[] | undefined;
|
|
30468
|
+
} | undefined;
|
|
30469
|
+
visible?: {
|
|
30470
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30471
|
+
source?: string | undefined;
|
|
30472
|
+
ast?: unknown;
|
|
30473
|
+
meta?: {
|
|
30474
|
+
rationale?: string | undefined;
|
|
30475
|
+
generatedBy?: string | undefined;
|
|
30476
|
+
} | undefined;
|
|
30477
|
+
} | undefined;
|
|
30478
|
+
disabled?: boolean | {
|
|
30479
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30480
|
+
source?: string | undefined;
|
|
30481
|
+
ast?: unknown;
|
|
30482
|
+
meta?: {
|
|
30483
|
+
rationale?: string | undefined;
|
|
30484
|
+
generatedBy?: string | undefined;
|
|
30485
|
+
} | undefined;
|
|
30486
|
+
} | undefined;
|
|
30487
|
+
requiredPermissions?: string[] | undefined;
|
|
30488
|
+
shortcut?: string | undefined;
|
|
30489
|
+
bulkEnabled?: boolean | undefined;
|
|
30490
|
+
ai?: {
|
|
30491
|
+
exposed: boolean;
|
|
30492
|
+
description?: string | undefined;
|
|
30493
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
30494
|
+
paramHints?: Record<string, {
|
|
30495
|
+
description?: string | undefined;
|
|
30496
|
+
enum?: (string | number)[] | undefined;
|
|
30497
|
+
examples?: unknown[] | undefined;
|
|
30498
|
+
}> | undefined;
|
|
30499
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
30500
|
+
requiresConfirmation?: boolean | undefined;
|
|
30501
|
+
} | undefined;
|
|
30502
|
+
recordIdParam?: string | undefined;
|
|
30503
|
+
recordIdField?: string | undefined;
|
|
30504
|
+
bodyShape?: "flat" | {
|
|
30505
|
+
wrap: string;
|
|
30506
|
+
} | undefined;
|
|
30507
|
+
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
30508
|
+
bodyExtra?: Record<string, unknown> | undefined;
|
|
30509
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
30510
|
+
opensInNewTab?: boolean | undefined;
|
|
30511
|
+
newTabUrl?: string | undefined;
|
|
30512
|
+
timeout?: number | undefined;
|
|
30513
|
+
aria?: {
|
|
30514
|
+
ariaLabel?: string | undefined;
|
|
30515
|
+
ariaDescribedBy?: string | undefined;
|
|
30516
|
+
role?: string | undefined;
|
|
30517
|
+
} | undefined;
|
|
30518
|
+
}[] | undefined;
|
|
30519
|
+
protection?: {
|
|
30520
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
30521
|
+
reason: string;
|
|
30522
|
+
docsUrl?: string | undefined;
|
|
30523
|
+
} | undefined;
|
|
30524
|
+
}, "fields"> & Pick<{
|
|
30525
|
+
readonly name: "sys_import_job";
|
|
30526
|
+
readonly label: "Import Job";
|
|
30527
|
+
readonly pluralLabel: "Import Jobs";
|
|
30528
|
+
readonly icon: "upload";
|
|
30529
|
+
readonly isSystem: true;
|
|
30530
|
+
readonly managedBy: "system";
|
|
30531
|
+
readonly description: "Asynchronous bulk-import job state, progress, and history";
|
|
30532
|
+
readonly displayNameField: "object_name";
|
|
30533
|
+
readonly nameField: "object_name";
|
|
30534
|
+
readonly titleFormat: "{object_name} import @ {created_at}";
|
|
30535
|
+
readonly compactLayout: ["object_name", "status", "processed_rows", "total_rows", "created_at"];
|
|
30536
|
+
readonly fields: {
|
|
30537
|
+
readonly id: {
|
|
30538
|
+
readonly readonly?: boolean | undefined;
|
|
30539
|
+
readonly format?: string | undefined;
|
|
30540
|
+
readonly options?: {
|
|
30541
|
+
label: string;
|
|
30542
|
+
value: string;
|
|
30543
|
+
color?: string | undefined;
|
|
30544
|
+
default?: boolean | undefined;
|
|
30545
|
+
}[] | undefined;
|
|
30546
|
+
readonly description?: string | undefined;
|
|
30547
|
+
readonly label?: string | undefined;
|
|
30548
|
+
readonly name?: string | undefined;
|
|
30549
|
+
readonly precision?: number | undefined;
|
|
30550
|
+
readonly required?: boolean | undefined;
|
|
30551
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
30552
|
+
readonly multiple?: boolean | undefined;
|
|
30553
|
+
readonly dependencies?: string[] | undefined;
|
|
30554
|
+
readonly externalId?: boolean | undefined;
|
|
30555
|
+
readonly defaultValue?: unknown;
|
|
30556
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
30557
|
+
readonly group?: string | undefined;
|
|
30558
|
+
readonly hidden?: boolean | undefined;
|
|
30559
|
+
readonly system?: boolean | undefined;
|
|
30560
|
+
readonly min?: number | undefined;
|
|
30561
|
+
readonly max?: number | undefined;
|
|
30562
|
+
readonly dimensions?: number | undefined;
|
|
30563
|
+
readonly columnName?: string | undefined;
|
|
30564
|
+
readonly searchable?: boolean | undefined;
|
|
30565
|
+
readonly unique?: boolean | undefined;
|
|
30566
|
+
readonly maxLength?: number | undefined;
|
|
30567
|
+
readonly minLength?: number | undefined;
|
|
30568
|
+
readonly scale?: number | undefined;
|
|
30569
|
+
readonly reference?: string | undefined;
|
|
30570
|
+
readonly referenceFilters?: string[] | undefined;
|
|
30571
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
30572
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
30573
|
+
readonly inlineTitle?: string | undefined;
|
|
30574
|
+
readonly inlineColumns?: any[] | undefined;
|
|
30575
|
+
readonly inlineAmountField?: string | undefined;
|
|
30576
|
+
readonly relatedList?: boolean | undefined;
|
|
30577
|
+
readonly relatedListTitle?: string | undefined;
|
|
30578
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
30579
|
+
readonly displayField?: string | undefined;
|
|
30580
|
+
readonly descriptionField?: string | undefined;
|
|
30581
|
+
readonly lookupColumns?: (string | {
|
|
30582
|
+
field: string;
|
|
30583
|
+
label?: string | undefined;
|
|
30584
|
+
width?: string | undefined;
|
|
30585
|
+
type?: string | undefined;
|
|
30586
|
+
})[] | undefined;
|
|
30587
|
+
readonly lookupPageSize?: number | undefined;
|
|
30588
|
+
readonly lookupFilters?: {
|
|
30589
|
+
field: string;
|
|
30590
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
30591
|
+
value: any;
|
|
30592
|
+
}[] | undefined;
|
|
30593
|
+
readonly dependsOn?: (string | {
|
|
30594
|
+
field: string;
|
|
30595
|
+
param?: string | undefined;
|
|
30596
|
+
})[] | undefined;
|
|
30597
|
+
readonly allowCreate?: boolean | undefined;
|
|
30598
|
+
readonly expression?: {
|
|
30599
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30600
|
+
source?: string | undefined;
|
|
30601
|
+
ast?: unknown;
|
|
30602
|
+
meta?: {
|
|
30603
|
+
rationale?: string | undefined;
|
|
30604
|
+
generatedBy?: string | undefined;
|
|
30605
|
+
} | undefined;
|
|
30606
|
+
} | undefined;
|
|
30607
|
+
readonly summaryOperations?: {
|
|
30608
|
+
object: string;
|
|
30609
|
+
field: string;
|
|
30610
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
30611
|
+
relationshipField?: string | undefined;
|
|
30612
|
+
} | undefined;
|
|
30613
|
+
readonly language?: string | undefined;
|
|
30614
|
+
readonly step?: number | undefined;
|
|
30615
|
+
readonly currencyConfig?: {
|
|
30616
|
+
precision: number;
|
|
30617
|
+
currencyMode: "fixed" | "dynamic";
|
|
30618
|
+
defaultCurrency: string;
|
|
30619
|
+
} | undefined;
|
|
30620
|
+
readonly vectorConfig?: {
|
|
30621
|
+
dimensions: number;
|
|
30622
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
30623
|
+
normalized: boolean;
|
|
30624
|
+
indexed: boolean;
|
|
30625
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
30626
|
+
} | undefined;
|
|
30627
|
+
readonly fileAttachmentConfig?: {
|
|
30628
|
+
virusScan: boolean;
|
|
30629
|
+
virusScanOnUpload: boolean;
|
|
30630
|
+
quarantineOnThreat: boolean;
|
|
30631
|
+
allowMultiple: boolean;
|
|
30632
|
+
allowReplace: boolean;
|
|
30633
|
+
allowDelete: boolean;
|
|
30634
|
+
requireUpload: boolean;
|
|
30635
|
+
extractMetadata: boolean;
|
|
30636
|
+
extractText: boolean;
|
|
30637
|
+
versioningEnabled: boolean;
|
|
30638
|
+
publicRead: boolean;
|
|
30639
|
+
presignedUrlExpiry: number;
|
|
30640
|
+
minSize?: number | undefined;
|
|
30641
|
+
maxSize?: number | undefined;
|
|
30642
|
+
allowedTypes?: string[] | undefined;
|
|
30643
|
+
blockedTypes?: string[] | undefined;
|
|
30644
|
+
allowedMimeTypes?: string[] | undefined;
|
|
30645
|
+
blockedMimeTypes?: string[] | undefined;
|
|
30646
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
30647
|
+
storageProvider?: string | undefined;
|
|
30648
|
+
storageBucket?: string | undefined;
|
|
30649
|
+
storagePrefix?: string | undefined;
|
|
30650
|
+
imageValidation?: {
|
|
30651
|
+
generateThumbnails: boolean;
|
|
30652
|
+
preserveMetadata: boolean;
|
|
30653
|
+
autoRotate: boolean;
|
|
30654
|
+
minWidth?: number | undefined;
|
|
30655
|
+
maxWidth?: number | undefined;
|
|
30656
|
+
minHeight?: number | undefined;
|
|
30657
|
+
maxHeight?: number | undefined;
|
|
30658
|
+
aspectRatio?: string | undefined;
|
|
30659
|
+
thumbnailSizes?: {
|
|
30660
|
+
name: string;
|
|
30661
|
+
width: number;
|
|
30662
|
+
height: number;
|
|
30663
|
+
crop: boolean;
|
|
30664
|
+
}[] | undefined;
|
|
30665
|
+
} | undefined;
|
|
30666
|
+
maxVersions?: number | undefined;
|
|
30667
|
+
} | undefined;
|
|
30668
|
+
readonly trackHistory?: boolean | undefined;
|
|
30669
|
+
readonly visibleWhen?: {
|
|
30670
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30671
|
+
source?: string | undefined;
|
|
30672
|
+
ast?: unknown;
|
|
30673
|
+
meta?: {
|
|
30674
|
+
rationale?: string | undefined;
|
|
30675
|
+
generatedBy?: string | undefined;
|
|
30676
|
+
} | undefined;
|
|
30677
|
+
} | undefined;
|
|
30678
|
+
readonly readonlyWhen?: {
|
|
30679
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30680
|
+
source?: string | undefined;
|
|
30681
|
+
ast?: unknown;
|
|
30682
|
+
meta?: {
|
|
30683
|
+
rationale?: string | undefined;
|
|
30684
|
+
generatedBy?: string | undefined;
|
|
30685
|
+
} | undefined;
|
|
30686
|
+
} | undefined;
|
|
30687
|
+
readonly requiredWhen?: {
|
|
30688
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30689
|
+
source?: string | undefined;
|
|
30690
|
+
ast?: unknown;
|
|
30691
|
+
meta?: {
|
|
30692
|
+
rationale?: string | undefined;
|
|
30693
|
+
generatedBy?: string | undefined;
|
|
30694
|
+
} | undefined;
|
|
30695
|
+
} | undefined;
|
|
30696
|
+
readonly conditionalRequired?: {
|
|
30697
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30698
|
+
source?: string | undefined;
|
|
30699
|
+
ast?: unknown;
|
|
30700
|
+
meta?: {
|
|
30701
|
+
rationale?: string | undefined;
|
|
30702
|
+
generatedBy?: string | undefined;
|
|
30703
|
+
} | undefined;
|
|
30704
|
+
} | undefined;
|
|
30705
|
+
readonly sortable?: boolean | undefined;
|
|
30706
|
+
readonly inlineHelpText?: string | undefined;
|
|
30707
|
+
readonly autonumberFormat?: string | undefined;
|
|
30708
|
+
readonly index?: boolean | undefined;
|
|
30709
|
+
readonly type: "text";
|
|
30710
|
+
};
|
|
30711
|
+
readonly object_name: {
|
|
30712
|
+
readonly readonly?: boolean | undefined;
|
|
30713
|
+
readonly format?: string | undefined;
|
|
30714
|
+
readonly options?: {
|
|
30715
|
+
label: string;
|
|
30716
|
+
value: string;
|
|
30717
|
+
color?: string | undefined;
|
|
30718
|
+
default?: boolean | undefined;
|
|
30719
|
+
}[] | undefined;
|
|
30720
|
+
readonly description?: string | undefined;
|
|
30721
|
+
readonly label?: string | undefined;
|
|
30722
|
+
readonly name?: string | undefined;
|
|
30723
|
+
readonly precision?: number | undefined;
|
|
30724
|
+
readonly required?: boolean | undefined;
|
|
30725
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
30726
|
+
readonly multiple?: boolean | undefined;
|
|
30727
|
+
readonly dependencies?: string[] | undefined;
|
|
30728
|
+
readonly externalId?: boolean | undefined;
|
|
30729
|
+
readonly defaultValue?: unknown;
|
|
30730
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
30731
|
+
readonly group?: string | undefined;
|
|
30732
|
+
readonly hidden?: boolean | undefined;
|
|
30733
|
+
readonly system?: boolean | undefined;
|
|
30734
|
+
readonly min?: number | undefined;
|
|
30735
|
+
readonly max?: number | undefined;
|
|
30736
|
+
readonly dimensions?: number | undefined;
|
|
30737
|
+
readonly columnName?: string | undefined;
|
|
30738
|
+
readonly searchable?: boolean | undefined;
|
|
30739
|
+
readonly unique?: boolean | undefined;
|
|
30740
|
+
readonly maxLength?: number | undefined;
|
|
30741
|
+
readonly minLength?: number | undefined;
|
|
30742
|
+
readonly scale?: number | undefined;
|
|
30743
|
+
readonly reference?: string | undefined;
|
|
30744
|
+
readonly referenceFilters?: string[] | undefined;
|
|
30745
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
30746
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
30747
|
+
readonly inlineTitle?: string | undefined;
|
|
30748
|
+
readonly inlineColumns?: any[] | undefined;
|
|
30749
|
+
readonly inlineAmountField?: string | undefined;
|
|
30750
|
+
readonly relatedList?: boolean | undefined;
|
|
30751
|
+
readonly relatedListTitle?: string | undefined;
|
|
30752
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
30753
|
+
readonly displayField?: string | undefined;
|
|
30754
|
+
readonly descriptionField?: string | undefined;
|
|
30755
|
+
readonly lookupColumns?: (string | {
|
|
30756
|
+
field: string;
|
|
30757
|
+
label?: string | undefined;
|
|
30758
|
+
width?: string | undefined;
|
|
30759
|
+
type?: string | undefined;
|
|
30760
|
+
})[] | undefined;
|
|
30761
|
+
readonly lookupPageSize?: number | undefined;
|
|
30762
|
+
readonly lookupFilters?: {
|
|
30763
|
+
field: string;
|
|
30764
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
30765
|
+
value: any;
|
|
30766
|
+
}[] | undefined;
|
|
30767
|
+
readonly dependsOn?: (string | {
|
|
30768
|
+
field: string;
|
|
30769
|
+
param?: string | undefined;
|
|
30770
|
+
})[] | undefined;
|
|
30771
|
+
readonly allowCreate?: boolean | undefined;
|
|
30772
|
+
readonly expression?: {
|
|
30773
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30774
|
+
source?: string | undefined;
|
|
30775
|
+
ast?: unknown;
|
|
30776
|
+
meta?: {
|
|
30777
|
+
rationale?: string | undefined;
|
|
30778
|
+
generatedBy?: string | undefined;
|
|
30779
|
+
} | undefined;
|
|
30780
|
+
} | undefined;
|
|
30781
|
+
readonly summaryOperations?: {
|
|
30782
|
+
object: string;
|
|
30783
|
+
field: string;
|
|
30784
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
30785
|
+
relationshipField?: string | undefined;
|
|
30786
|
+
} | undefined;
|
|
30787
|
+
readonly language?: string | undefined;
|
|
30788
|
+
readonly step?: number | undefined;
|
|
30789
|
+
readonly currencyConfig?: {
|
|
30790
|
+
precision: number;
|
|
30791
|
+
currencyMode: "fixed" | "dynamic";
|
|
30792
|
+
defaultCurrency: string;
|
|
30793
|
+
} | undefined;
|
|
30794
|
+
readonly vectorConfig?: {
|
|
30795
|
+
dimensions: number;
|
|
30796
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
30797
|
+
normalized: boolean;
|
|
30798
|
+
indexed: boolean;
|
|
30799
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
30800
|
+
} | undefined;
|
|
30801
|
+
readonly fileAttachmentConfig?: {
|
|
30802
|
+
virusScan: boolean;
|
|
30803
|
+
virusScanOnUpload: boolean;
|
|
30804
|
+
quarantineOnThreat: boolean;
|
|
30805
|
+
allowMultiple: boolean;
|
|
30806
|
+
allowReplace: boolean;
|
|
30807
|
+
allowDelete: boolean;
|
|
30808
|
+
requireUpload: boolean;
|
|
30809
|
+
extractMetadata: boolean;
|
|
30810
|
+
extractText: boolean;
|
|
30811
|
+
versioningEnabled: boolean;
|
|
30812
|
+
publicRead: boolean;
|
|
30813
|
+
presignedUrlExpiry: number;
|
|
30814
|
+
minSize?: number | undefined;
|
|
30815
|
+
maxSize?: number | undefined;
|
|
30816
|
+
allowedTypes?: string[] | undefined;
|
|
30817
|
+
blockedTypes?: string[] | undefined;
|
|
30818
|
+
allowedMimeTypes?: string[] | undefined;
|
|
30819
|
+
blockedMimeTypes?: string[] | undefined;
|
|
30820
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
30821
|
+
storageProvider?: string | undefined;
|
|
30822
|
+
storageBucket?: string | undefined;
|
|
30823
|
+
storagePrefix?: string | undefined;
|
|
30824
|
+
imageValidation?: {
|
|
30825
|
+
generateThumbnails: boolean;
|
|
30826
|
+
preserveMetadata: boolean;
|
|
30827
|
+
autoRotate: boolean;
|
|
30828
|
+
minWidth?: number | undefined;
|
|
30829
|
+
maxWidth?: number | undefined;
|
|
30830
|
+
minHeight?: number | undefined;
|
|
30831
|
+
maxHeight?: number | undefined;
|
|
30832
|
+
aspectRatio?: string | undefined;
|
|
30833
|
+
thumbnailSizes?: {
|
|
30834
|
+
name: string;
|
|
30835
|
+
width: number;
|
|
30836
|
+
height: number;
|
|
30837
|
+
crop: boolean;
|
|
30838
|
+
}[] | undefined;
|
|
30839
|
+
} | undefined;
|
|
30840
|
+
maxVersions?: number | undefined;
|
|
30841
|
+
} | undefined;
|
|
30842
|
+
readonly trackHistory?: boolean | undefined;
|
|
30843
|
+
readonly visibleWhen?: {
|
|
30844
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30845
|
+
source?: string | undefined;
|
|
30846
|
+
ast?: unknown;
|
|
30847
|
+
meta?: {
|
|
30848
|
+
rationale?: string | undefined;
|
|
30849
|
+
generatedBy?: string | undefined;
|
|
30850
|
+
} | undefined;
|
|
30851
|
+
} | undefined;
|
|
30852
|
+
readonly readonlyWhen?: {
|
|
30853
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30854
|
+
source?: string | undefined;
|
|
30855
|
+
ast?: unknown;
|
|
30856
|
+
meta?: {
|
|
30857
|
+
rationale?: string | undefined;
|
|
30858
|
+
generatedBy?: string | undefined;
|
|
30859
|
+
} | undefined;
|
|
30860
|
+
} | undefined;
|
|
30861
|
+
readonly requiredWhen?: {
|
|
30862
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30863
|
+
source?: string | undefined;
|
|
30864
|
+
ast?: unknown;
|
|
30865
|
+
meta?: {
|
|
30866
|
+
rationale?: string | undefined;
|
|
30867
|
+
generatedBy?: string | undefined;
|
|
30868
|
+
} | undefined;
|
|
30869
|
+
} | undefined;
|
|
30870
|
+
readonly conditionalRequired?: {
|
|
30871
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30872
|
+
source?: string | undefined;
|
|
30873
|
+
ast?: unknown;
|
|
30874
|
+
meta?: {
|
|
30875
|
+
rationale?: string | undefined;
|
|
30876
|
+
generatedBy?: string | undefined;
|
|
30877
|
+
} | undefined;
|
|
30878
|
+
} | undefined;
|
|
30879
|
+
readonly sortable?: boolean | undefined;
|
|
30880
|
+
readonly inlineHelpText?: string | undefined;
|
|
30881
|
+
readonly autonumberFormat?: string | undefined;
|
|
30882
|
+
readonly index?: boolean | undefined;
|
|
30883
|
+
readonly type: "text";
|
|
30884
|
+
};
|
|
30885
|
+
readonly status: {
|
|
30886
|
+
readonly readonly?: boolean | undefined;
|
|
30887
|
+
readonly format?: string | undefined;
|
|
30888
|
+
options: {
|
|
30889
|
+
label: string;
|
|
30890
|
+
value: string;
|
|
30891
|
+
color?: string | undefined;
|
|
30892
|
+
default?: boolean | undefined;
|
|
30893
|
+
}[];
|
|
30894
|
+
readonly description?: string | undefined;
|
|
30895
|
+
readonly label?: string | undefined;
|
|
30896
|
+
readonly name?: string | undefined;
|
|
30897
|
+
readonly precision?: number | undefined;
|
|
30898
|
+
readonly required?: boolean | undefined;
|
|
30899
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
30900
|
+
readonly multiple?: boolean | undefined;
|
|
30901
|
+
readonly dependencies?: string[] | undefined;
|
|
30902
|
+
readonly externalId?: boolean | undefined;
|
|
30903
|
+
readonly defaultValue?: unknown;
|
|
30904
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
30905
|
+
readonly group?: string | undefined;
|
|
30906
|
+
readonly hidden?: boolean | undefined;
|
|
30907
|
+
readonly system?: boolean | undefined;
|
|
30908
|
+
readonly min?: number | undefined;
|
|
30909
|
+
readonly max?: number | undefined;
|
|
30910
|
+
readonly dimensions?: number | undefined;
|
|
30911
|
+
readonly columnName?: string | undefined;
|
|
30912
|
+
readonly searchable?: boolean | undefined;
|
|
30913
|
+
readonly unique?: boolean | undefined;
|
|
30914
|
+
readonly maxLength?: number | undefined;
|
|
30915
|
+
readonly minLength?: number | undefined;
|
|
30916
|
+
readonly scale?: number | undefined;
|
|
30917
|
+
readonly reference?: string | undefined;
|
|
30918
|
+
readonly referenceFilters?: string[] | undefined;
|
|
30919
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
30920
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
30921
|
+
readonly inlineTitle?: string | undefined;
|
|
30922
|
+
readonly inlineColumns?: any[] | undefined;
|
|
30923
|
+
readonly inlineAmountField?: string | undefined;
|
|
30924
|
+
readonly relatedList?: boolean | undefined;
|
|
30925
|
+
readonly relatedListTitle?: string | undefined;
|
|
30926
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
30927
|
+
readonly displayField?: string | undefined;
|
|
30928
|
+
readonly descriptionField?: string | undefined;
|
|
30929
|
+
readonly lookupColumns?: (string | {
|
|
30930
|
+
field: string;
|
|
30931
|
+
label?: string | undefined;
|
|
30932
|
+
width?: string | undefined;
|
|
30933
|
+
type?: string | undefined;
|
|
30934
|
+
})[] | undefined;
|
|
30935
|
+
readonly lookupPageSize?: number | undefined;
|
|
30936
|
+
readonly lookupFilters?: {
|
|
30937
|
+
field: string;
|
|
30938
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
30939
|
+
value: any;
|
|
30940
|
+
}[] | undefined;
|
|
30941
|
+
readonly dependsOn?: (string | {
|
|
30942
|
+
field: string;
|
|
30943
|
+
param?: string | undefined;
|
|
30944
|
+
})[] | undefined;
|
|
30945
|
+
readonly allowCreate?: boolean | undefined;
|
|
30946
|
+
readonly expression?: {
|
|
30947
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30948
|
+
source?: string | undefined;
|
|
30949
|
+
ast?: unknown;
|
|
30950
|
+
meta?: {
|
|
30951
|
+
rationale?: string | undefined;
|
|
30952
|
+
generatedBy?: string | undefined;
|
|
30953
|
+
} | undefined;
|
|
30954
|
+
} | undefined;
|
|
30955
|
+
readonly summaryOperations?: {
|
|
30956
|
+
object: string;
|
|
30957
|
+
field: string;
|
|
30958
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
30959
|
+
relationshipField?: string | undefined;
|
|
30960
|
+
} | undefined;
|
|
30961
|
+
readonly language?: string | undefined;
|
|
30962
|
+
readonly step?: number | undefined;
|
|
30963
|
+
readonly currencyConfig?: {
|
|
30964
|
+
precision: number;
|
|
30965
|
+
currencyMode: "fixed" | "dynamic";
|
|
30966
|
+
defaultCurrency: string;
|
|
30967
|
+
} | undefined;
|
|
30968
|
+
readonly vectorConfig?: {
|
|
30969
|
+
dimensions: number;
|
|
30970
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
30971
|
+
normalized: boolean;
|
|
30972
|
+
indexed: boolean;
|
|
30973
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
30974
|
+
} | undefined;
|
|
30975
|
+
readonly fileAttachmentConfig?: {
|
|
30976
|
+
virusScan: boolean;
|
|
30977
|
+
virusScanOnUpload: boolean;
|
|
30978
|
+
quarantineOnThreat: boolean;
|
|
30979
|
+
allowMultiple: boolean;
|
|
30980
|
+
allowReplace: boolean;
|
|
30981
|
+
allowDelete: boolean;
|
|
30982
|
+
requireUpload: boolean;
|
|
30983
|
+
extractMetadata: boolean;
|
|
30984
|
+
extractText: boolean;
|
|
30985
|
+
versioningEnabled: boolean;
|
|
30986
|
+
publicRead: boolean;
|
|
30987
|
+
presignedUrlExpiry: number;
|
|
30988
|
+
minSize?: number | undefined;
|
|
30989
|
+
maxSize?: number | undefined;
|
|
30990
|
+
allowedTypes?: string[] | undefined;
|
|
30991
|
+
blockedTypes?: string[] | undefined;
|
|
30992
|
+
allowedMimeTypes?: string[] | undefined;
|
|
30993
|
+
blockedMimeTypes?: string[] | undefined;
|
|
30994
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
30995
|
+
storageProvider?: string | undefined;
|
|
30996
|
+
storageBucket?: string | undefined;
|
|
30997
|
+
storagePrefix?: string | undefined;
|
|
30998
|
+
imageValidation?: {
|
|
30999
|
+
generateThumbnails: boolean;
|
|
31000
|
+
preserveMetadata: boolean;
|
|
31001
|
+
autoRotate: boolean;
|
|
31002
|
+
minWidth?: number | undefined;
|
|
31003
|
+
maxWidth?: number | undefined;
|
|
31004
|
+
minHeight?: number | undefined;
|
|
31005
|
+
maxHeight?: number | undefined;
|
|
31006
|
+
aspectRatio?: string | undefined;
|
|
31007
|
+
thumbnailSizes?: {
|
|
31008
|
+
name: string;
|
|
31009
|
+
width: number;
|
|
31010
|
+
height: number;
|
|
31011
|
+
crop: boolean;
|
|
31012
|
+
}[] | undefined;
|
|
31013
|
+
} | undefined;
|
|
31014
|
+
maxVersions?: number | undefined;
|
|
31015
|
+
} | undefined;
|
|
31016
|
+
readonly trackHistory?: boolean | undefined;
|
|
31017
|
+
readonly visibleWhen?: {
|
|
31018
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31019
|
+
source?: string | undefined;
|
|
31020
|
+
ast?: unknown;
|
|
31021
|
+
meta?: {
|
|
31022
|
+
rationale?: string | undefined;
|
|
31023
|
+
generatedBy?: string | undefined;
|
|
31024
|
+
} | undefined;
|
|
31025
|
+
} | undefined;
|
|
31026
|
+
readonly readonlyWhen?: {
|
|
31027
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31028
|
+
source?: string | undefined;
|
|
31029
|
+
ast?: unknown;
|
|
31030
|
+
meta?: {
|
|
31031
|
+
rationale?: string | undefined;
|
|
31032
|
+
generatedBy?: string | undefined;
|
|
31033
|
+
} | undefined;
|
|
31034
|
+
} | undefined;
|
|
31035
|
+
readonly requiredWhen?: {
|
|
31036
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31037
|
+
source?: string | undefined;
|
|
31038
|
+
ast?: unknown;
|
|
31039
|
+
meta?: {
|
|
31040
|
+
rationale?: string | undefined;
|
|
31041
|
+
generatedBy?: string | undefined;
|
|
31042
|
+
} | undefined;
|
|
31043
|
+
} | undefined;
|
|
31044
|
+
readonly conditionalRequired?: {
|
|
31045
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31046
|
+
source?: string | undefined;
|
|
31047
|
+
ast?: unknown;
|
|
31048
|
+
meta?: {
|
|
31049
|
+
rationale?: string | undefined;
|
|
31050
|
+
generatedBy?: string | undefined;
|
|
31051
|
+
} | undefined;
|
|
31052
|
+
} | undefined;
|
|
31053
|
+
readonly sortable?: boolean | undefined;
|
|
31054
|
+
readonly inlineHelpText?: string | undefined;
|
|
31055
|
+
readonly autonumberFormat?: string | undefined;
|
|
31056
|
+
readonly index?: boolean | undefined;
|
|
31057
|
+
readonly type: "select";
|
|
31058
|
+
};
|
|
31059
|
+
readonly total_rows: {
|
|
31060
|
+
readonly readonly?: boolean | undefined;
|
|
31061
|
+
readonly format?: string | undefined;
|
|
31062
|
+
readonly options?: {
|
|
31063
|
+
label: string;
|
|
31064
|
+
value: string;
|
|
31065
|
+
color?: string | undefined;
|
|
31066
|
+
default?: boolean | undefined;
|
|
31067
|
+
}[] | undefined;
|
|
31068
|
+
readonly description?: string | undefined;
|
|
31069
|
+
readonly label?: string | undefined;
|
|
31070
|
+
readonly name?: string | undefined;
|
|
31071
|
+
readonly precision?: number | undefined;
|
|
31072
|
+
readonly required?: boolean | undefined;
|
|
31073
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31074
|
+
readonly multiple?: boolean | undefined;
|
|
31075
|
+
readonly dependencies?: string[] | undefined;
|
|
31076
|
+
readonly externalId?: boolean | undefined;
|
|
31077
|
+
readonly defaultValue?: unknown;
|
|
31078
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31079
|
+
readonly group?: string | undefined;
|
|
31080
|
+
readonly hidden?: boolean | undefined;
|
|
31081
|
+
readonly system?: boolean | undefined;
|
|
31082
|
+
readonly min?: number | undefined;
|
|
31083
|
+
readonly max?: number | undefined;
|
|
31084
|
+
readonly dimensions?: number | undefined;
|
|
31085
|
+
readonly columnName?: string | undefined;
|
|
31086
|
+
readonly searchable?: boolean | undefined;
|
|
31087
|
+
readonly unique?: boolean | undefined;
|
|
31088
|
+
readonly maxLength?: number | undefined;
|
|
31089
|
+
readonly minLength?: number | undefined;
|
|
31090
|
+
readonly scale?: number | undefined;
|
|
31091
|
+
readonly reference?: string | undefined;
|
|
31092
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31093
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31094
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31095
|
+
readonly inlineTitle?: string | undefined;
|
|
31096
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31097
|
+
readonly inlineAmountField?: string | undefined;
|
|
31098
|
+
readonly relatedList?: boolean | undefined;
|
|
31099
|
+
readonly relatedListTitle?: string | undefined;
|
|
31100
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31101
|
+
readonly displayField?: string | undefined;
|
|
31102
|
+
readonly descriptionField?: string | undefined;
|
|
31103
|
+
readonly lookupColumns?: (string | {
|
|
31104
|
+
field: string;
|
|
31105
|
+
label?: string | undefined;
|
|
31106
|
+
width?: string | undefined;
|
|
31107
|
+
type?: string | undefined;
|
|
31108
|
+
})[] | undefined;
|
|
31109
|
+
readonly lookupPageSize?: number | undefined;
|
|
31110
|
+
readonly lookupFilters?: {
|
|
31111
|
+
field: string;
|
|
31112
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31113
|
+
value: any;
|
|
31114
|
+
}[] | undefined;
|
|
31115
|
+
readonly dependsOn?: (string | {
|
|
31116
|
+
field: string;
|
|
31117
|
+
param?: string | undefined;
|
|
31118
|
+
})[] | undefined;
|
|
31119
|
+
readonly allowCreate?: boolean | undefined;
|
|
31120
|
+
readonly expression?: {
|
|
31121
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31122
|
+
source?: string | undefined;
|
|
31123
|
+
ast?: unknown;
|
|
31124
|
+
meta?: {
|
|
31125
|
+
rationale?: string | undefined;
|
|
31126
|
+
generatedBy?: string | undefined;
|
|
31127
|
+
} | undefined;
|
|
31128
|
+
} | undefined;
|
|
31129
|
+
readonly summaryOperations?: {
|
|
31130
|
+
object: string;
|
|
31131
|
+
field: string;
|
|
31132
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
31133
|
+
relationshipField?: string | undefined;
|
|
31134
|
+
} | undefined;
|
|
31135
|
+
readonly language?: string | undefined;
|
|
31136
|
+
readonly step?: number | undefined;
|
|
31137
|
+
readonly currencyConfig?: {
|
|
31138
|
+
precision: number;
|
|
31139
|
+
currencyMode: "fixed" | "dynamic";
|
|
31140
|
+
defaultCurrency: string;
|
|
31141
|
+
} | undefined;
|
|
31142
|
+
readonly vectorConfig?: {
|
|
31143
|
+
dimensions: number;
|
|
31144
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
31145
|
+
normalized: boolean;
|
|
31146
|
+
indexed: boolean;
|
|
31147
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
31148
|
+
} | undefined;
|
|
31149
|
+
readonly fileAttachmentConfig?: {
|
|
31150
|
+
virusScan: boolean;
|
|
31151
|
+
virusScanOnUpload: boolean;
|
|
31152
|
+
quarantineOnThreat: boolean;
|
|
31153
|
+
allowMultiple: boolean;
|
|
31154
|
+
allowReplace: boolean;
|
|
31155
|
+
allowDelete: boolean;
|
|
31156
|
+
requireUpload: boolean;
|
|
31157
|
+
extractMetadata: boolean;
|
|
31158
|
+
extractText: boolean;
|
|
31159
|
+
versioningEnabled: boolean;
|
|
31160
|
+
publicRead: boolean;
|
|
31161
|
+
presignedUrlExpiry: number;
|
|
31162
|
+
minSize?: number | undefined;
|
|
31163
|
+
maxSize?: number | undefined;
|
|
31164
|
+
allowedTypes?: string[] | undefined;
|
|
31165
|
+
blockedTypes?: string[] | undefined;
|
|
31166
|
+
allowedMimeTypes?: string[] | undefined;
|
|
31167
|
+
blockedMimeTypes?: string[] | undefined;
|
|
31168
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
31169
|
+
storageProvider?: string | undefined;
|
|
31170
|
+
storageBucket?: string | undefined;
|
|
31171
|
+
storagePrefix?: string | undefined;
|
|
31172
|
+
imageValidation?: {
|
|
31173
|
+
generateThumbnails: boolean;
|
|
31174
|
+
preserveMetadata: boolean;
|
|
31175
|
+
autoRotate: boolean;
|
|
31176
|
+
minWidth?: number | undefined;
|
|
31177
|
+
maxWidth?: number | undefined;
|
|
31178
|
+
minHeight?: number | undefined;
|
|
31179
|
+
maxHeight?: number | undefined;
|
|
31180
|
+
aspectRatio?: string | undefined;
|
|
31181
|
+
thumbnailSizes?: {
|
|
31182
|
+
name: string;
|
|
31183
|
+
width: number;
|
|
31184
|
+
height: number;
|
|
31185
|
+
crop: boolean;
|
|
31186
|
+
}[] | undefined;
|
|
31187
|
+
} | undefined;
|
|
31188
|
+
maxVersions?: number | undefined;
|
|
31189
|
+
} | undefined;
|
|
31190
|
+
readonly trackHistory?: boolean | undefined;
|
|
31191
|
+
readonly visibleWhen?: {
|
|
31192
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31193
|
+
source?: string | undefined;
|
|
31194
|
+
ast?: unknown;
|
|
31195
|
+
meta?: {
|
|
31196
|
+
rationale?: string | undefined;
|
|
31197
|
+
generatedBy?: string | undefined;
|
|
31198
|
+
} | undefined;
|
|
31199
|
+
} | undefined;
|
|
31200
|
+
readonly readonlyWhen?: {
|
|
31201
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31202
|
+
source?: string | undefined;
|
|
31203
|
+
ast?: unknown;
|
|
31204
|
+
meta?: {
|
|
31205
|
+
rationale?: string | undefined;
|
|
31206
|
+
generatedBy?: string | undefined;
|
|
31207
|
+
} | undefined;
|
|
31208
|
+
} | undefined;
|
|
31209
|
+
readonly requiredWhen?: {
|
|
31210
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31211
|
+
source?: string | undefined;
|
|
31212
|
+
ast?: unknown;
|
|
31213
|
+
meta?: {
|
|
31214
|
+
rationale?: string | undefined;
|
|
31215
|
+
generatedBy?: string | undefined;
|
|
31216
|
+
} | undefined;
|
|
31217
|
+
} | undefined;
|
|
31218
|
+
readonly conditionalRequired?: {
|
|
31219
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31220
|
+
source?: string | undefined;
|
|
31221
|
+
ast?: unknown;
|
|
31222
|
+
meta?: {
|
|
31223
|
+
rationale?: string | undefined;
|
|
31224
|
+
generatedBy?: string | undefined;
|
|
31225
|
+
} | undefined;
|
|
31226
|
+
} | undefined;
|
|
31227
|
+
readonly sortable?: boolean | undefined;
|
|
31228
|
+
readonly inlineHelpText?: string | undefined;
|
|
31229
|
+
readonly autonumberFormat?: string | undefined;
|
|
31230
|
+
readonly index?: boolean | undefined;
|
|
31231
|
+
readonly type: "number";
|
|
31232
|
+
};
|
|
31233
|
+
readonly processed_rows: {
|
|
31234
|
+
readonly readonly?: boolean | undefined;
|
|
31235
|
+
readonly format?: string | undefined;
|
|
31236
|
+
readonly options?: {
|
|
31237
|
+
label: string;
|
|
31238
|
+
value: string;
|
|
31239
|
+
color?: string | undefined;
|
|
31240
|
+
default?: boolean | undefined;
|
|
31241
|
+
}[] | undefined;
|
|
31242
|
+
readonly description?: string | undefined;
|
|
31243
|
+
readonly label?: string | undefined;
|
|
31244
|
+
readonly name?: string | undefined;
|
|
31245
|
+
readonly precision?: number | undefined;
|
|
31246
|
+
readonly required?: boolean | undefined;
|
|
31247
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31248
|
+
readonly multiple?: boolean | undefined;
|
|
31249
|
+
readonly dependencies?: string[] | undefined;
|
|
31250
|
+
readonly externalId?: boolean | undefined;
|
|
31251
|
+
readonly defaultValue?: unknown;
|
|
31252
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31253
|
+
readonly group?: string | undefined;
|
|
31254
|
+
readonly hidden?: boolean | undefined;
|
|
31255
|
+
readonly system?: boolean | undefined;
|
|
31256
|
+
readonly min?: number | undefined;
|
|
31257
|
+
readonly max?: number | undefined;
|
|
31258
|
+
readonly dimensions?: number | undefined;
|
|
31259
|
+
readonly columnName?: string | undefined;
|
|
31260
|
+
readonly searchable?: boolean | undefined;
|
|
31261
|
+
readonly unique?: boolean | undefined;
|
|
31262
|
+
readonly maxLength?: number | undefined;
|
|
31263
|
+
readonly minLength?: number | undefined;
|
|
31264
|
+
readonly scale?: number | undefined;
|
|
31265
|
+
readonly reference?: string | undefined;
|
|
31266
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31267
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31268
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31269
|
+
readonly inlineTitle?: string | undefined;
|
|
31270
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31271
|
+
readonly inlineAmountField?: string | undefined;
|
|
31272
|
+
readonly relatedList?: boolean | undefined;
|
|
31273
|
+
readonly relatedListTitle?: string | undefined;
|
|
31274
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31275
|
+
readonly displayField?: string | undefined;
|
|
31276
|
+
readonly descriptionField?: string | undefined;
|
|
31277
|
+
readonly lookupColumns?: (string | {
|
|
31278
|
+
field: string;
|
|
31279
|
+
label?: string | undefined;
|
|
31280
|
+
width?: string | undefined;
|
|
31281
|
+
type?: string | undefined;
|
|
31282
|
+
})[] | undefined;
|
|
31283
|
+
readonly lookupPageSize?: number | undefined;
|
|
31284
|
+
readonly lookupFilters?: {
|
|
31285
|
+
field: string;
|
|
31286
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31287
|
+
value: any;
|
|
31288
|
+
}[] | undefined;
|
|
31289
|
+
readonly dependsOn?: (string | {
|
|
31290
|
+
field: string;
|
|
31291
|
+
param?: string | undefined;
|
|
31292
|
+
})[] | undefined;
|
|
31293
|
+
readonly allowCreate?: boolean | undefined;
|
|
31294
|
+
readonly expression?: {
|
|
31295
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31296
|
+
source?: string | undefined;
|
|
31297
|
+
ast?: unknown;
|
|
31298
|
+
meta?: {
|
|
31299
|
+
rationale?: string | undefined;
|
|
31300
|
+
generatedBy?: string | undefined;
|
|
31301
|
+
} | undefined;
|
|
31302
|
+
} | undefined;
|
|
31303
|
+
readonly summaryOperations?: {
|
|
31304
|
+
object: string;
|
|
31305
|
+
field: string;
|
|
31306
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
31307
|
+
relationshipField?: string | undefined;
|
|
31308
|
+
} | undefined;
|
|
31309
|
+
readonly language?: string | undefined;
|
|
31310
|
+
readonly step?: number | undefined;
|
|
31311
|
+
readonly currencyConfig?: {
|
|
31312
|
+
precision: number;
|
|
31313
|
+
currencyMode: "fixed" | "dynamic";
|
|
31314
|
+
defaultCurrency: string;
|
|
31315
|
+
} | undefined;
|
|
31316
|
+
readonly vectorConfig?: {
|
|
31317
|
+
dimensions: number;
|
|
31318
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
31319
|
+
normalized: boolean;
|
|
31320
|
+
indexed: boolean;
|
|
31321
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
31322
|
+
} | undefined;
|
|
31323
|
+
readonly fileAttachmentConfig?: {
|
|
31324
|
+
virusScan: boolean;
|
|
31325
|
+
virusScanOnUpload: boolean;
|
|
31326
|
+
quarantineOnThreat: boolean;
|
|
31327
|
+
allowMultiple: boolean;
|
|
31328
|
+
allowReplace: boolean;
|
|
31329
|
+
allowDelete: boolean;
|
|
31330
|
+
requireUpload: boolean;
|
|
31331
|
+
extractMetadata: boolean;
|
|
31332
|
+
extractText: boolean;
|
|
31333
|
+
versioningEnabled: boolean;
|
|
31334
|
+
publicRead: boolean;
|
|
31335
|
+
presignedUrlExpiry: number;
|
|
31336
|
+
minSize?: number | undefined;
|
|
31337
|
+
maxSize?: number | undefined;
|
|
31338
|
+
allowedTypes?: string[] | undefined;
|
|
31339
|
+
blockedTypes?: string[] | undefined;
|
|
31340
|
+
allowedMimeTypes?: string[] | undefined;
|
|
31341
|
+
blockedMimeTypes?: string[] | undefined;
|
|
31342
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
31343
|
+
storageProvider?: string | undefined;
|
|
31344
|
+
storageBucket?: string | undefined;
|
|
31345
|
+
storagePrefix?: string | undefined;
|
|
31346
|
+
imageValidation?: {
|
|
31347
|
+
generateThumbnails: boolean;
|
|
31348
|
+
preserveMetadata: boolean;
|
|
31349
|
+
autoRotate: boolean;
|
|
31350
|
+
minWidth?: number | undefined;
|
|
31351
|
+
maxWidth?: number | undefined;
|
|
31352
|
+
minHeight?: number | undefined;
|
|
31353
|
+
maxHeight?: number | undefined;
|
|
31354
|
+
aspectRatio?: string | undefined;
|
|
31355
|
+
thumbnailSizes?: {
|
|
31356
|
+
name: string;
|
|
31357
|
+
width: number;
|
|
31358
|
+
height: number;
|
|
31359
|
+
crop: boolean;
|
|
31360
|
+
}[] | undefined;
|
|
31361
|
+
} | undefined;
|
|
31362
|
+
maxVersions?: number | undefined;
|
|
31363
|
+
} | undefined;
|
|
31364
|
+
readonly trackHistory?: boolean | undefined;
|
|
31365
|
+
readonly visibleWhen?: {
|
|
31366
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31367
|
+
source?: string | undefined;
|
|
31368
|
+
ast?: unknown;
|
|
31369
|
+
meta?: {
|
|
31370
|
+
rationale?: string | undefined;
|
|
31371
|
+
generatedBy?: string | undefined;
|
|
31372
|
+
} | undefined;
|
|
31373
|
+
} | undefined;
|
|
31374
|
+
readonly readonlyWhen?: {
|
|
31375
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31376
|
+
source?: string | undefined;
|
|
31377
|
+
ast?: unknown;
|
|
31378
|
+
meta?: {
|
|
31379
|
+
rationale?: string | undefined;
|
|
31380
|
+
generatedBy?: string | undefined;
|
|
31381
|
+
} | undefined;
|
|
31382
|
+
} | undefined;
|
|
31383
|
+
readonly requiredWhen?: {
|
|
31384
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31385
|
+
source?: string | undefined;
|
|
31386
|
+
ast?: unknown;
|
|
31387
|
+
meta?: {
|
|
31388
|
+
rationale?: string | undefined;
|
|
31389
|
+
generatedBy?: string | undefined;
|
|
31390
|
+
} | undefined;
|
|
31391
|
+
} | undefined;
|
|
31392
|
+
readonly conditionalRequired?: {
|
|
31393
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31394
|
+
source?: string | undefined;
|
|
31395
|
+
ast?: unknown;
|
|
31396
|
+
meta?: {
|
|
31397
|
+
rationale?: string | undefined;
|
|
31398
|
+
generatedBy?: string | undefined;
|
|
31399
|
+
} | undefined;
|
|
31400
|
+
} | undefined;
|
|
31401
|
+
readonly sortable?: boolean | undefined;
|
|
31402
|
+
readonly inlineHelpText?: string | undefined;
|
|
31403
|
+
readonly autonumberFormat?: string | undefined;
|
|
31404
|
+
readonly index?: boolean | undefined;
|
|
31405
|
+
readonly type: "number";
|
|
31406
|
+
};
|
|
31407
|
+
readonly created_count: {
|
|
31408
|
+
readonly readonly?: boolean | undefined;
|
|
31409
|
+
readonly format?: string | undefined;
|
|
31410
|
+
readonly options?: {
|
|
31411
|
+
label: string;
|
|
31412
|
+
value: string;
|
|
31413
|
+
color?: string | undefined;
|
|
31414
|
+
default?: boolean | undefined;
|
|
31415
|
+
}[] | undefined;
|
|
31416
|
+
readonly description?: string | undefined;
|
|
31417
|
+
readonly label?: string | undefined;
|
|
31418
|
+
readonly name?: string | undefined;
|
|
31419
|
+
readonly precision?: number | undefined;
|
|
31420
|
+
readonly required?: boolean | undefined;
|
|
31421
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31422
|
+
readonly multiple?: boolean | undefined;
|
|
31423
|
+
readonly dependencies?: string[] | undefined;
|
|
31424
|
+
readonly externalId?: boolean | undefined;
|
|
31425
|
+
readonly defaultValue?: unknown;
|
|
31426
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31427
|
+
readonly group?: string | undefined;
|
|
31428
|
+
readonly hidden?: boolean | undefined;
|
|
31429
|
+
readonly system?: boolean | undefined;
|
|
31430
|
+
readonly min?: number | undefined;
|
|
31431
|
+
readonly max?: number | undefined;
|
|
31432
|
+
readonly dimensions?: number | undefined;
|
|
31433
|
+
readonly columnName?: string | undefined;
|
|
31434
|
+
readonly searchable?: boolean | undefined;
|
|
31435
|
+
readonly unique?: boolean | undefined;
|
|
31436
|
+
readonly maxLength?: number | undefined;
|
|
31437
|
+
readonly minLength?: number | undefined;
|
|
31438
|
+
readonly scale?: number | undefined;
|
|
31439
|
+
readonly reference?: string | undefined;
|
|
31440
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31441
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31442
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31443
|
+
readonly inlineTitle?: string | undefined;
|
|
31444
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31445
|
+
readonly inlineAmountField?: string | undefined;
|
|
31446
|
+
readonly relatedList?: boolean | undefined;
|
|
31447
|
+
readonly relatedListTitle?: string | undefined;
|
|
31448
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31449
|
+
readonly displayField?: string | undefined;
|
|
31450
|
+
readonly descriptionField?: string | undefined;
|
|
31451
|
+
readonly lookupColumns?: (string | {
|
|
31452
|
+
field: string;
|
|
31453
|
+
label?: string | undefined;
|
|
31454
|
+
width?: string | undefined;
|
|
31455
|
+
type?: string | undefined;
|
|
31456
|
+
})[] | undefined;
|
|
31457
|
+
readonly lookupPageSize?: number | undefined;
|
|
31458
|
+
readonly lookupFilters?: {
|
|
31459
|
+
field: string;
|
|
31460
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31461
|
+
value: any;
|
|
31462
|
+
}[] | undefined;
|
|
31463
|
+
readonly dependsOn?: (string | {
|
|
31464
|
+
field: string;
|
|
31465
|
+
param?: string | undefined;
|
|
31466
|
+
})[] | undefined;
|
|
31467
|
+
readonly allowCreate?: boolean | undefined;
|
|
31468
|
+
readonly expression?: {
|
|
31469
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31470
|
+
source?: string | undefined;
|
|
31471
|
+
ast?: unknown;
|
|
31472
|
+
meta?: {
|
|
31473
|
+
rationale?: string | undefined;
|
|
31474
|
+
generatedBy?: string | undefined;
|
|
31475
|
+
} | undefined;
|
|
31476
|
+
} | undefined;
|
|
31477
|
+
readonly summaryOperations?: {
|
|
31478
|
+
object: string;
|
|
31479
|
+
field: string;
|
|
31480
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
31481
|
+
relationshipField?: string | undefined;
|
|
31482
|
+
} | undefined;
|
|
31483
|
+
readonly language?: string | undefined;
|
|
31484
|
+
readonly step?: number | undefined;
|
|
31485
|
+
readonly currencyConfig?: {
|
|
31486
|
+
precision: number;
|
|
31487
|
+
currencyMode: "fixed" | "dynamic";
|
|
31488
|
+
defaultCurrency: string;
|
|
31489
|
+
} | undefined;
|
|
31490
|
+
readonly vectorConfig?: {
|
|
31491
|
+
dimensions: number;
|
|
31492
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
31493
|
+
normalized: boolean;
|
|
31494
|
+
indexed: boolean;
|
|
31495
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
31496
|
+
} | undefined;
|
|
31497
|
+
readonly fileAttachmentConfig?: {
|
|
31498
|
+
virusScan: boolean;
|
|
31499
|
+
virusScanOnUpload: boolean;
|
|
31500
|
+
quarantineOnThreat: boolean;
|
|
31501
|
+
allowMultiple: boolean;
|
|
31502
|
+
allowReplace: boolean;
|
|
31503
|
+
allowDelete: boolean;
|
|
31504
|
+
requireUpload: boolean;
|
|
31505
|
+
extractMetadata: boolean;
|
|
31506
|
+
extractText: boolean;
|
|
31507
|
+
versioningEnabled: boolean;
|
|
31508
|
+
publicRead: boolean;
|
|
31509
|
+
presignedUrlExpiry: number;
|
|
31510
|
+
minSize?: number | undefined;
|
|
31511
|
+
maxSize?: number | undefined;
|
|
31512
|
+
allowedTypes?: string[] | undefined;
|
|
31513
|
+
blockedTypes?: string[] | undefined;
|
|
31514
|
+
allowedMimeTypes?: string[] | undefined;
|
|
31515
|
+
blockedMimeTypes?: string[] | undefined;
|
|
31516
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
31517
|
+
storageProvider?: string | undefined;
|
|
31518
|
+
storageBucket?: string | undefined;
|
|
31519
|
+
storagePrefix?: string | undefined;
|
|
31520
|
+
imageValidation?: {
|
|
31521
|
+
generateThumbnails: boolean;
|
|
31522
|
+
preserveMetadata: boolean;
|
|
31523
|
+
autoRotate: boolean;
|
|
31524
|
+
minWidth?: number | undefined;
|
|
31525
|
+
maxWidth?: number | undefined;
|
|
31526
|
+
minHeight?: number | undefined;
|
|
31527
|
+
maxHeight?: number | undefined;
|
|
31528
|
+
aspectRatio?: string | undefined;
|
|
31529
|
+
thumbnailSizes?: {
|
|
31530
|
+
name: string;
|
|
31531
|
+
width: number;
|
|
31532
|
+
height: number;
|
|
31533
|
+
crop: boolean;
|
|
31534
|
+
}[] | undefined;
|
|
31535
|
+
} | undefined;
|
|
31536
|
+
maxVersions?: number | undefined;
|
|
31537
|
+
} | undefined;
|
|
31538
|
+
readonly trackHistory?: boolean | undefined;
|
|
31539
|
+
readonly visibleWhen?: {
|
|
31540
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31541
|
+
source?: string | undefined;
|
|
31542
|
+
ast?: unknown;
|
|
31543
|
+
meta?: {
|
|
31544
|
+
rationale?: string | undefined;
|
|
31545
|
+
generatedBy?: string | undefined;
|
|
31546
|
+
} | undefined;
|
|
31547
|
+
} | undefined;
|
|
31548
|
+
readonly readonlyWhen?: {
|
|
31549
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31550
|
+
source?: string | undefined;
|
|
31551
|
+
ast?: unknown;
|
|
31552
|
+
meta?: {
|
|
31553
|
+
rationale?: string | undefined;
|
|
31554
|
+
generatedBy?: string | undefined;
|
|
31555
|
+
} | undefined;
|
|
31556
|
+
} | undefined;
|
|
31557
|
+
readonly requiredWhen?: {
|
|
31558
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31559
|
+
source?: string | undefined;
|
|
31560
|
+
ast?: unknown;
|
|
31561
|
+
meta?: {
|
|
31562
|
+
rationale?: string | undefined;
|
|
31563
|
+
generatedBy?: string | undefined;
|
|
31564
|
+
} | undefined;
|
|
31565
|
+
} | undefined;
|
|
31566
|
+
readonly conditionalRequired?: {
|
|
31567
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31568
|
+
source?: string | undefined;
|
|
31569
|
+
ast?: unknown;
|
|
31570
|
+
meta?: {
|
|
31571
|
+
rationale?: string | undefined;
|
|
31572
|
+
generatedBy?: string | undefined;
|
|
31573
|
+
} | undefined;
|
|
31574
|
+
} | undefined;
|
|
31575
|
+
readonly sortable?: boolean | undefined;
|
|
31576
|
+
readonly inlineHelpText?: string | undefined;
|
|
31577
|
+
readonly autonumberFormat?: string | undefined;
|
|
31578
|
+
readonly index?: boolean | undefined;
|
|
31579
|
+
readonly type: "number";
|
|
31580
|
+
};
|
|
31581
|
+
readonly updated_count: {
|
|
31582
|
+
readonly readonly?: boolean | undefined;
|
|
31583
|
+
readonly format?: string | undefined;
|
|
31584
|
+
readonly options?: {
|
|
31585
|
+
label: string;
|
|
31586
|
+
value: string;
|
|
31587
|
+
color?: string | undefined;
|
|
31588
|
+
default?: boolean | undefined;
|
|
31589
|
+
}[] | undefined;
|
|
31590
|
+
readonly description?: string | undefined;
|
|
31591
|
+
readonly label?: string | undefined;
|
|
31592
|
+
readonly name?: string | undefined;
|
|
31593
|
+
readonly precision?: number | undefined;
|
|
31594
|
+
readonly required?: boolean | undefined;
|
|
31595
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31596
|
+
readonly multiple?: boolean | undefined;
|
|
31597
|
+
readonly dependencies?: string[] | undefined;
|
|
31598
|
+
readonly externalId?: boolean | undefined;
|
|
31599
|
+
readonly defaultValue?: unknown;
|
|
31600
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31601
|
+
readonly group?: string | undefined;
|
|
31602
|
+
readonly hidden?: boolean | undefined;
|
|
31603
|
+
readonly system?: boolean | undefined;
|
|
31604
|
+
readonly min?: number | undefined;
|
|
31605
|
+
readonly max?: number | undefined;
|
|
31606
|
+
readonly dimensions?: number | undefined;
|
|
31607
|
+
readonly columnName?: string | undefined;
|
|
31608
|
+
readonly searchable?: boolean | undefined;
|
|
31609
|
+
readonly unique?: boolean | undefined;
|
|
31610
|
+
readonly maxLength?: number | undefined;
|
|
31611
|
+
readonly minLength?: number | undefined;
|
|
31612
|
+
readonly scale?: number | undefined;
|
|
31613
|
+
readonly reference?: string | undefined;
|
|
31614
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31615
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31616
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31617
|
+
readonly inlineTitle?: string | undefined;
|
|
31618
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31619
|
+
readonly inlineAmountField?: string | undefined;
|
|
31620
|
+
readonly relatedList?: boolean | undefined;
|
|
31621
|
+
readonly relatedListTitle?: string | undefined;
|
|
31622
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31623
|
+
readonly displayField?: string | undefined;
|
|
31624
|
+
readonly descriptionField?: string | undefined;
|
|
31625
|
+
readonly lookupColumns?: (string | {
|
|
31626
|
+
field: string;
|
|
31627
|
+
label?: string | undefined;
|
|
31628
|
+
width?: string | undefined;
|
|
31629
|
+
type?: string | undefined;
|
|
31630
|
+
})[] | undefined;
|
|
31631
|
+
readonly lookupPageSize?: number | undefined;
|
|
31632
|
+
readonly lookupFilters?: {
|
|
31633
|
+
field: string;
|
|
31634
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31635
|
+
value: any;
|
|
31636
|
+
}[] | undefined;
|
|
31637
|
+
readonly dependsOn?: (string | {
|
|
31638
|
+
field: string;
|
|
31639
|
+
param?: string | undefined;
|
|
31640
|
+
})[] | undefined;
|
|
31641
|
+
readonly allowCreate?: boolean | undefined;
|
|
31642
|
+
readonly expression?: {
|
|
31643
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31644
|
+
source?: string | undefined;
|
|
31645
|
+
ast?: unknown;
|
|
31646
|
+
meta?: {
|
|
31647
|
+
rationale?: string | undefined;
|
|
31648
|
+
generatedBy?: string | undefined;
|
|
31649
|
+
} | undefined;
|
|
31650
|
+
} | undefined;
|
|
31651
|
+
readonly summaryOperations?: {
|
|
31652
|
+
object: string;
|
|
31653
|
+
field: string;
|
|
31654
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
31655
|
+
relationshipField?: string | undefined;
|
|
31656
|
+
} | undefined;
|
|
31657
|
+
readonly language?: string | undefined;
|
|
31658
|
+
readonly step?: number | undefined;
|
|
31659
|
+
readonly currencyConfig?: {
|
|
31660
|
+
precision: number;
|
|
31661
|
+
currencyMode: "fixed" | "dynamic";
|
|
31662
|
+
defaultCurrency: string;
|
|
31663
|
+
} | undefined;
|
|
31664
|
+
readonly vectorConfig?: {
|
|
31665
|
+
dimensions: number;
|
|
31666
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
31667
|
+
normalized: boolean;
|
|
31668
|
+
indexed: boolean;
|
|
31669
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
31670
|
+
} | undefined;
|
|
31671
|
+
readonly fileAttachmentConfig?: {
|
|
31672
|
+
virusScan: boolean;
|
|
31673
|
+
virusScanOnUpload: boolean;
|
|
31674
|
+
quarantineOnThreat: boolean;
|
|
31675
|
+
allowMultiple: boolean;
|
|
31676
|
+
allowReplace: boolean;
|
|
31677
|
+
allowDelete: boolean;
|
|
31678
|
+
requireUpload: boolean;
|
|
31679
|
+
extractMetadata: boolean;
|
|
31680
|
+
extractText: boolean;
|
|
31681
|
+
versioningEnabled: boolean;
|
|
31682
|
+
publicRead: boolean;
|
|
31683
|
+
presignedUrlExpiry: number;
|
|
31684
|
+
minSize?: number | undefined;
|
|
31685
|
+
maxSize?: number | undefined;
|
|
31686
|
+
allowedTypes?: string[] | undefined;
|
|
31687
|
+
blockedTypes?: string[] | undefined;
|
|
31688
|
+
allowedMimeTypes?: string[] | undefined;
|
|
31689
|
+
blockedMimeTypes?: string[] | undefined;
|
|
31690
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
31691
|
+
storageProvider?: string | undefined;
|
|
31692
|
+
storageBucket?: string | undefined;
|
|
31693
|
+
storagePrefix?: string | undefined;
|
|
31694
|
+
imageValidation?: {
|
|
31695
|
+
generateThumbnails: boolean;
|
|
31696
|
+
preserveMetadata: boolean;
|
|
31697
|
+
autoRotate: boolean;
|
|
31698
|
+
minWidth?: number | undefined;
|
|
31699
|
+
maxWidth?: number | undefined;
|
|
31700
|
+
minHeight?: number | undefined;
|
|
31701
|
+
maxHeight?: number | undefined;
|
|
31702
|
+
aspectRatio?: string | undefined;
|
|
31703
|
+
thumbnailSizes?: {
|
|
31704
|
+
name: string;
|
|
31705
|
+
width: number;
|
|
31706
|
+
height: number;
|
|
31707
|
+
crop: boolean;
|
|
31708
|
+
}[] | undefined;
|
|
31709
|
+
} | undefined;
|
|
31710
|
+
maxVersions?: number | undefined;
|
|
31711
|
+
} | undefined;
|
|
31712
|
+
readonly trackHistory?: boolean | undefined;
|
|
31713
|
+
readonly visibleWhen?: {
|
|
31714
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31715
|
+
source?: string | undefined;
|
|
31716
|
+
ast?: unknown;
|
|
31717
|
+
meta?: {
|
|
31718
|
+
rationale?: string | undefined;
|
|
31719
|
+
generatedBy?: string | undefined;
|
|
31720
|
+
} | undefined;
|
|
31721
|
+
} | undefined;
|
|
31722
|
+
readonly readonlyWhen?: {
|
|
31723
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31724
|
+
source?: string | undefined;
|
|
31725
|
+
ast?: unknown;
|
|
31726
|
+
meta?: {
|
|
31727
|
+
rationale?: string | undefined;
|
|
31728
|
+
generatedBy?: string | undefined;
|
|
31729
|
+
} | undefined;
|
|
31730
|
+
} | undefined;
|
|
31731
|
+
readonly requiredWhen?: {
|
|
31732
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31733
|
+
source?: string | undefined;
|
|
31734
|
+
ast?: unknown;
|
|
31735
|
+
meta?: {
|
|
31736
|
+
rationale?: string | undefined;
|
|
31737
|
+
generatedBy?: string | undefined;
|
|
31738
|
+
} | undefined;
|
|
31739
|
+
} | undefined;
|
|
31740
|
+
readonly conditionalRequired?: {
|
|
31741
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31742
|
+
source?: string | undefined;
|
|
31743
|
+
ast?: unknown;
|
|
31744
|
+
meta?: {
|
|
31745
|
+
rationale?: string | undefined;
|
|
31746
|
+
generatedBy?: string | undefined;
|
|
31747
|
+
} | undefined;
|
|
31748
|
+
} | undefined;
|
|
31749
|
+
readonly sortable?: boolean | undefined;
|
|
31750
|
+
readonly inlineHelpText?: string | undefined;
|
|
31751
|
+
readonly autonumberFormat?: string | undefined;
|
|
31752
|
+
readonly index?: boolean | undefined;
|
|
31753
|
+
readonly type: "number";
|
|
31754
|
+
};
|
|
31755
|
+
readonly skipped_count: {
|
|
31756
|
+
readonly readonly?: boolean | undefined;
|
|
31757
|
+
readonly format?: string | undefined;
|
|
31758
|
+
readonly options?: {
|
|
31759
|
+
label: string;
|
|
31760
|
+
value: string;
|
|
31761
|
+
color?: string | undefined;
|
|
31762
|
+
default?: boolean | undefined;
|
|
31763
|
+
}[] | undefined;
|
|
31764
|
+
readonly description?: string | undefined;
|
|
31765
|
+
readonly label?: string | undefined;
|
|
31766
|
+
readonly name?: string | undefined;
|
|
31767
|
+
readonly precision?: number | undefined;
|
|
31768
|
+
readonly required?: boolean | undefined;
|
|
31769
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31770
|
+
readonly multiple?: boolean | undefined;
|
|
31771
|
+
readonly dependencies?: string[] | undefined;
|
|
31772
|
+
readonly externalId?: boolean | undefined;
|
|
31773
|
+
readonly defaultValue?: unknown;
|
|
31774
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31775
|
+
readonly group?: string | undefined;
|
|
31776
|
+
readonly hidden?: boolean | undefined;
|
|
31777
|
+
readonly system?: boolean | undefined;
|
|
31778
|
+
readonly min?: number | undefined;
|
|
31779
|
+
readonly max?: number | undefined;
|
|
31780
|
+
readonly dimensions?: number | undefined;
|
|
31781
|
+
readonly columnName?: string | undefined;
|
|
31782
|
+
readonly searchable?: boolean | undefined;
|
|
31783
|
+
readonly unique?: boolean | undefined;
|
|
31784
|
+
readonly maxLength?: number | undefined;
|
|
31785
|
+
readonly minLength?: number | undefined;
|
|
31786
|
+
readonly scale?: number | undefined;
|
|
31787
|
+
readonly reference?: string | undefined;
|
|
31788
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31789
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31790
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31791
|
+
readonly inlineTitle?: string | undefined;
|
|
31792
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31793
|
+
readonly inlineAmountField?: string | undefined;
|
|
31794
|
+
readonly relatedList?: boolean | undefined;
|
|
31795
|
+
readonly relatedListTitle?: string | undefined;
|
|
31796
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31797
|
+
readonly displayField?: string | undefined;
|
|
31798
|
+
readonly descriptionField?: string | undefined;
|
|
31799
|
+
readonly lookupColumns?: (string | {
|
|
31800
|
+
field: string;
|
|
31801
|
+
label?: string | undefined;
|
|
31802
|
+
width?: string | undefined;
|
|
31803
|
+
type?: string | undefined;
|
|
31804
|
+
})[] | undefined;
|
|
31805
|
+
readonly lookupPageSize?: number | undefined;
|
|
31806
|
+
readonly lookupFilters?: {
|
|
31807
|
+
field: string;
|
|
31808
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31809
|
+
value: any;
|
|
31810
|
+
}[] | undefined;
|
|
31811
|
+
readonly dependsOn?: (string | {
|
|
31812
|
+
field: string;
|
|
31813
|
+
param?: string | undefined;
|
|
31814
|
+
})[] | undefined;
|
|
31815
|
+
readonly allowCreate?: boolean | undefined;
|
|
31816
|
+
readonly expression?: {
|
|
31817
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31818
|
+
source?: string | undefined;
|
|
31819
|
+
ast?: unknown;
|
|
31820
|
+
meta?: {
|
|
31821
|
+
rationale?: string | undefined;
|
|
31822
|
+
generatedBy?: string | undefined;
|
|
31823
|
+
} | undefined;
|
|
31824
|
+
} | undefined;
|
|
31825
|
+
readonly summaryOperations?: {
|
|
31826
|
+
object: string;
|
|
31827
|
+
field: string;
|
|
31828
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
31829
|
+
relationshipField?: string | undefined;
|
|
31830
|
+
} | undefined;
|
|
31831
|
+
readonly language?: string | undefined;
|
|
31832
|
+
readonly step?: number | undefined;
|
|
31833
|
+
readonly currencyConfig?: {
|
|
31834
|
+
precision: number;
|
|
31835
|
+
currencyMode: "fixed" | "dynamic";
|
|
31836
|
+
defaultCurrency: string;
|
|
31837
|
+
} | undefined;
|
|
31838
|
+
readonly vectorConfig?: {
|
|
31839
|
+
dimensions: number;
|
|
31840
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
31841
|
+
normalized: boolean;
|
|
31842
|
+
indexed: boolean;
|
|
31843
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
31844
|
+
} | undefined;
|
|
31845
|
+
readonly fileAttachmentConfig?: {
|
|
31846
|
+
virusScan: boolean;
|
|
31847
|
+
virusScanOnUpload: boolean;
|
|
31848
|
+
quarantineOnThreat: boolean;
|
|
31849
|
+
allowMultiple: boolean;
|
|
31850
|
+
allowReplace: boolean;
|
|
31851
|
+
allowDelete: boolean;
|
|
31852
|
+
requireUpload: boolean;
|
|
31853
|
+
extractMetadata: boolean;
|
|
31854
|
+
extractText: boolean;
|
|
31855
|
+
versioningEnabled: boolean;
|
|
31856
|
+
publicRead: boolean;
|
|
31857
|
+
presignedUrlExpiry: number;
|
|
31858
|
+
minSize?: number | undefined;
|
|
31859
|
+
maxSize?: number | undefined;
|
|
31860
|
+
allowedTypes?: string[] | undefined;
|
|
31861
|
+
blockedTypes?: string[] | undefined;
|
|
31862
|
+
allowedMimeTypes?: string[] | undefined;
|
|
31863
|
+
blockedMimeTypes?: string[] | undefined;
|
|
31864
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
31865
|
+
storageProvider?: string | undefined;
|
|
31866
|
+
storageBucket?: string | undefined;
|
|
31867
|
+
storagePrefix?: string | undefined;
|
|
31868
|
+
imageValidation?: {
|
|
31869
|
+
generateThumbnails: boolean;
|
|
31870
|
+
preserveMetadata: boolean;
|
|
31871
|
+
autoRotate: boolean;
|
|
31872
|
+
minWidth?: number | undefined;
|
|
31873
|
+
maxWidth?: number | undefined;
|
|
31874
|
+
minHeight?: number | undefined;
|
|
31875
|
+
maxHeight?: number | undefined;
|
|
31876
|
+
aspectRatio?: string | undefined;
|
|
31877
|
+
thumbnailSizes?: {
|
|
31878
|
+
name: string;
|
|
31879
|
+
width: number;
|
|
31880
|
+
height: number;
|
|
31881
|
+
crop: boolean;
|
|
31882
|
+
}[] | undefined;
|
|
31883
|
+
} | undefined;
|
|
31884
|
+
maxVersions?: number | undefined;
|
|
31885
|
+
} | undefined;
|
|
31886
|
+
readonly trackHistory?: boolean | undefined;
|
|
31887
|
+
readonly visibleWhen?: {
|
|
31888
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31889
|
+
source?: string | undefined;
|
|
31890
|
+
ast?: unknown;
|
|
31891
|
+
meta?: {
|
|
31892
|
+
rationale?: string | undefined;
|
|
31893
|
+
generatedBy?: string | undefined;
|
|
31894
|
+
} | undefined;
|
|
31895
|
+
} | undefined;
|
|
31896
|
+
readonly readonlyWhen?: {
|
|
31897
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31898
|
+
source?: string | undefined;
|
|
31899
|
+
ast?: unknown;
|
|
31900
|
+
meta?: {
|
|
31901
|
+
rationale?: string | undefined;
|
|
31902
|
+
generatedBy?: string | undefined;
|
|
31903
|
+
} | undefined;
|
|
31904
|
+
} | undefined;
|
|
31905
|
+
readonly requiredWhen?: {
|
|
31906
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31907
|
+
source?: string | undefined;
|
|
31908
|
+
ast?: unknown;
|
|
31909
|
+
meta?: {
|
|
31910
|
+
rationale?: string | undefined;
|
|
31911
|
+
generatedBy?: string | undefined;
|
|
31912
|
+
} | undefined;
|
|
31913
|
+
} | undefined;
|
|
31914
|
+
readonly conditionalRequired?: {
|
|
31915
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31916
|
+
source?: string | undefined;
|
|
31917
|
+
ast?: unknown;
|
|
31918
|
+
meta?: {
|
|
31919
|
+
rationale?: string | undefined;
|
|
31920
|
+
generatedBy?: string | undefined;
|
|
31921
|
+
} | undefined;
|
|
31922
|
+
} | undefined;
|
|
31923
|
+
readonly sortable?: boolean | undefined;
|
|
31924
|
+
readonly inlineHelpText?: string | undefined;
|
|
31925
|
+
readonly autonumberFormat?: string | undefined;
|
|
31926
|
+
readonly index?: boolean | undefined;
|
|
31927
|
+
readonly type: "number";
|
|
31928
|
+
};
|
|
31929
|
+
readonly error_count: {
|
|
31930
|
+
readonly readonly?: boolean | undefined;
|
|
31931
|
+
readonly format?: string | undefined;
|
|
31932
|
+
readonly options?: {
|
|
31933
|
+
label: string;
|
|
31934
|
+
value: string;
|
|
31935
|
+
color?: string | undefined;
|
|
31936
|
+
default?: boolean | undefined;
|
|
31937
|
+
}[] | undefined;
|
|
31938
|
+
readonly description?: string | undefined;
|
|
31939
|
+
readonly label?: string | undefined;
|
|
31940
|
+
readonly name?: string | undefined;
|
|
31941
|
+
readonly precision?: number | undefined;
|
|
31942
|
+
readonly required?: boolean | undefined;
|
|
31943
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
31944
|
+
readonly multiple?: boolean | undefined;
|
|
31945
|
+
readonly dependencies?: string[] | undefined;
|
|
31946
|
+
readonly externalId?: boolean | undefined;
|
|
31947
|
+
readonly defaultValue?: unknown;
|
|
31948
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31949
|
+
readonly group?: string | undefined;
|
|
31950
|
+
readonly hidden?: boolean | undefined;
|
|
31951
|
+
readonly system?: boolean | undefined;
|
|
31952
|
+
readonly min?: number | undefined;
|
|
31953
|
+
readonly max?: number | undefined;
|
|
31954
|
+
readonly dimensions?: number | undefined;
|
|
31955
|
+
readonly columnName?: string | undefined;
|
|
31956
|
+
readonly searchable?: boolean | undefined;
|
|
31957
|
+
readonly unique?: boolean | undefined;
|
|
31958
|
+
readonly maxLength?: number | undefined;
|
|
31959
|
+
readonly minLength?: number | undefined;
|
|
31960
|
+
readonly scale?: number | undefined;
|
|
31961
|
+
readonly reference?: string | undefined;
|
|
31962
|
+
readonly referenceFilters?: string[] | undefined;
|
|
31963
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
31964
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
31965
|
+
readonly inlineTitle?: string | undefined;
|
|
31966
|
+
readonly inlineColumns?: any[] | undefined;
|
|
31967
|
+
readonly inlineAmountField?: string | undefined;
|
|
31968
|
+
readonly relatedList?: boolean | undefined;
|
|
31969
|
+
readonly relatedListTitle?: string | undefined;
|
|
31970
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
31971
|
+
readonly displayField?: string | undefined;
|
|
31972
|
+
readonly descriptionField?: string | undefined;
|
|
31973
|
+
readonly lookupColumns?: (string | {
|
|
31974
|
+
field: string;
|
|
31975
|
+
label?: string | undefined;
|
|
31976
|
+
width?: string | undefined;
|
|
31977
|
+
type?: string | undefined;
|
|
31978
|
+
})[] | undefined;
|
|
31979
|
+
readonly lookupPageSize?: number | undefined;
|
|
31980
|
+
readonly lookupFilters?: {
|
|
31981
|
+
field: string;
|
|
31982
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
31983
|
+
value: any;
|
|
31984
|
+
}[] | undefined;
|
|
31985
|
+
readonly dependsOn?: (string | {
|
|
31986
|
+
field: string;
|
|
31987
|
+
param?: string | undefined;
|
|
31988
|
+
})[] | undefined;
|
|
31989
|
+
readonly allowCreate?: boolean | undefined;
|
|
31990
|
+
readonly expression?: {
|
|
31991
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
31992
|
+
source?: string | undefined;
|
|
31993
|
+
ast?: unknown;
|
|
31994
|
+
meta?: {
|
|
31995
|
+
rationale?: string | undefined;
|
|
31996
|
+
generatedBy?: string | undefined;
|
|
31997
|
+
} | undefined;
|
|
31998
|
+
} | undefined;
|
|
31999
|
+
readonly summaryOperations?: {
|
|
32000
|
+
object: string;
|
|
32001
|
+
field: string;
|
|
32002
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32003
|
+
relationshipField?: string | undefined;
|
|
32004
|
+
} | undefined;
|
|
32005
|
+
readonly language?: string | undefined;
|
|
32006
|
+
readonly step?: number | undefined;
|
|
32007
|
+
readonly currencyConfig?: {
|
|
32008
|
+
precision: number;
|
|
32009
|
+
currencyMode: "fixed" | "dynamic";
|
|
32010
|
+
defaultCurrency: string;
|
|
32011
|
+
} | undefined;
|
|
32012
|
+
readonly vectorConfig?: {
|
|
32013
|
+
dimensions: number;
|
|
32014
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32015
|
+
normalized: boolean;
|
|
32016
|
+
indexed: boolean;
|
|
32017
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32018
|
+
} | undefined;
|
|
32019
|
+
readonly fileAttachmentConfig?: {
|
|
32020
|
+
virusScan: boolean;
|
|
32021
|
+
virusScanOnUpload: boolean;
|
|
32022
|
+
quarantineOnThreat: boolean;
|
|
32023
|
+
allowMultiple: boolean;
|
|
32024
|
+
allowReplace: boolean;
|
|
32025
|
+
allowDelete: boolean;
|
|
32026
|
+
requireUpload: boolean;
|
|
32027
|
+
extractMetadata: boolean;
|
|
32028
|
+
extractText: boolean;
|
|
32029
|
+
versioningEnabled: boolean;
|
|
32030
|
+
publicRead: boolean;
|
|
32031
|
+
presignedUrlExpiry: number;
|
|
32032
|
+
minSize?: number | undefined;
|
|
32033
|
+
maxSize?: number | undefined;
|
|
32034
|
+
allowedTypes?: string[] | undefined;
|
|
32035
|
+
blockedTypes?: string[] | undefined;
|
|
32036
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32037
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32038
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32039
|
+
storageProvider?: string | undefined;
|
|
32040
|
+
storageBucket?: string | undefined;
|
|
32041
|
+
storagePrefix?: string | undefined;
|
|
32042
|
+
imageValidation?: {
|
|
32043
|
+
generateThumbnails: boolean;
|
|
32044
|
+
preserveMetadata: boolean;
|
|
32045
|
+
autoRotate: boolean;
|
|
32046
|
+
minWidth?: number | undefined;
|
|
32047
|
+
maxWidth?: number | undefined;
|
|
32048
|
+
minHeight?: number | undefined;
|
|
32049
|
+
maxHeight?: number | undefined;
|
|
32050
|
+
aspectRatio?: string | undefined;
|
|
32051
|
+
thumbnailSizes?: {
|
|
32052
|
+
name: string;
|
|
32053
|
+
width: number;
|
|
32054
|
+
height: number;
|
|
32055
|
+
crop: boolean;
|
|
32056
|
+
}[] | undefined;
|
|
32057
|
+
} | undefined;
|
|
32058
|
+
maxVersions?: number | undefined;
|
|
32059
|
+
} | undefined;
|
|
32060
|
+
readonly trackHistory?: boolean | undefined;
|
|
32061
|
+
readonly visibleWhen?: {
|
|
32062
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32063
|
+
source?: string | undefined;
|
|
32064
|
+
ast?: unknown;
|
|
32065
|
+
meta?: {
|
|
32066
|
+
rationale?: string | undefined;
|
|
32067
|
+
generatedBy?: string | undefined;
|
|
32068
|
+
} | undefined;
|
|
32069
|
+
} | undefined;
|
|
32070
|
+
readonly readonlyWhen?: {
|
|
32071
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32072
|
+
source?: string | undefined;
|
|
32073
|
+
ast?: unknown;
|
|
32074
|
+
meta?: {
|
|
32075
|
+
rationale?: string | undefined;
|
|
32076
|
+
generatedBy?: string | undefined;
|
|
32077
|
+
} | undefined;
|
|
32078
|
+
} | undefined;
|
|
32079
|
+
readonly requiredWhen?: {
|
|
32080
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32081
|
+
source?: string | undefined;
|
|
32082
|
+
ast?: unknown;
|
|
32083
|
+
meta?: {
|
|
32084
|
+
rationale?: string | undefined;
|
|
32085
|
+
generatedBy?: string | undefined;
|
|
32086
|
+
} | undefined;
|
|
32087
|
+
} | undefined;
|
|
32088
|
+
readonly conditionalRequired?: {
|
|
32089
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32090
|
+
source?: string | undefined;
|
|
32091
|
+
ast?: unknown;
|
|
32092
|
+
meta?: {
|
|
32093
|
+
rationale?: string | undefined;
|
|
32094
|
+
generatedBy?: string | undefined;
|
|
32095
|
+
} | undefined;
|
|
32096
|
+
} | undefined;
|
|
32097
|
+
readonly sortable?: boolean | undefined;
|
|
32098
|
+
readonly inlineHelpText?: string | undefined;
|
|
32099
|
+
readonly autonumberFormat?: string | undefined;
|
|
32100
|
+
readonly index?: boolean | undefined;
|
|
32101
|
+
readonly type: "number";
|
|
32102
|
+
};
|
|
32103
|
+
readonly write_mode: {
|
|
32104
|
+
readonly readonly?: boolean | undefined;
|
|
32105
|
+
readonly format?: string | undefined;
|
|
32106
|
+
options: {
|
|
32107
|
+
label: string;
|
|
32108
|
+
value: string;
|
|
32109
|
+
color?: string | undefined;
|
|
32110
|
+
default?: boolean | undefined;
|
|
32111
|
+
}[];
|
|
32112
|
+
readonly description?: string | undefined;
|
|
32113
|
+
readonly label?: string | undefined;
|
|
32114
|
+
readonly name?: string | undefined;
|
|
32115
|
+
readonly precision?: number | undefined;
|
|
32116
|
+
readonly required?: boolean | undefined;
|
|
32117
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32118
|
+
readonly multiple?: boolean | undefined;
|
|
32119
|
+
readonly dependencies?: string[] | undefined;
|
|
32120
|
+
readonly externalId?: boolean | undefined;
|
|
32121
|
+
readonly defaultValue?: unknown;
|
|
32122
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32123
|
+
readonly group?: string | undefined;
|
|
32124
|
+
readonly hidden?: boolean | undefined;
|
|
32125
|
+
readonly system?: boolean | undefined;
|
|
32126
|
+
readonly min?: number | undefined;
|
|
32127
|
+
readonly max?: number | undefined;
|
|
32128
|
+
readonly dimensions?: number | undefined;
|
|
32129
|
+
readonly columnName?: string | undefined;
|
|
32130
|
+
readonly searchable?: boolean | undefined;
|
|
32131
|
+
readonly unique?: boolean | undefined;
|
|
32132
|
+
readonly maxLength?: number | undefined;
|
|
32133
|
+
readonly minLength?: number | undefined;
|
|
32134
|
+
readonly scale?: number | undefined;
|
|
32135
|
+
readonly reference?: string | undefined;
|
|
32136
|
+
readonly referenceFilters?: string[] | undefined;
|
|
32137
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
32138
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
32139
|
+
readonly inlineTitle?: string | undefined;
|
|
32140
|
+
readonly inlineColumns?: any[] | undefined;
|
|
32141
|
+
readonly inlineAmountField?: string | undefined;
|
|
32142
|
+
readonly relatedList?: boolean | undefined;
|
|
32143
|
+
readonly relatedListTitle?: string | undefined;
|
|
32144
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
32145
|
+
readonly displayField?: string | undefined;
|
|
32146
|
+
readonly descriptionField?: string | undefined;
|
|
32147
|
+
readonly lookupColumns?: (string | {
|
|
32148
|
+
field: string;
|
|
32149
|
+
label?: string | undefined;
|
|
32150
|
+
width?: string | undefined;
|
|
32151
|
+
type?: string | undefined;
|
|
32152
|
+
})[] | undefined;
|
|
32153
|
+
readonly lookupPageSize?: number | undefined;
|
|
32154
|
+
readonly lookupFilters?: {
|
|
32155
|
+
field: string;
|
|
32156
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
32157
|
+
value: any;
|
|
32158
|
+
}[] | undefined;
|
|
32159
|
+
readonly dependsOn?: (string | {
|
|
32160
|
+
field: string;
|
|
32161
|
+
param?: string | undefined;
|
|
32162
|
+
})[] | undefined;
|
|
32163
|
+
readonly allowCreate?: boolean | undefined;
|
|
32164
|
+
readonly expression?: {
|
|
32165
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32166
|
+
source?: string | undefined;
|
|
32167
|
+
ast?: unknown;
|
|
32168
|
+
meta?: {
|
|
32169
|
+
rationale?: string | undefined;
|
|
32170
|
+
generatedBy?: string | undefined;
|
|
32171
|
+
} | undefined;
|
|
32172
|
+
} | undefined;
|
|
32173
|
+
readonly summaryOperations?: {
|
|
32174
|
+
object: string;
|
|
32175
|
+
field: string;
|
|
32176
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32177
|
+
relationshipField?: string | undefined;
|
|
32178
|
+
} | undefined;
|
|
32179
|
+
readonly language?: string | undefined;
|
|
32180
|
+
readonly step?: number | undefined;
|
|
32181
|
+
readonly currencyConfig?: {
|
|
32182
|
+
precision: number;
|
|
32183
|
+
currencyMode: "fixed" | "dynamic";
|
|
32184
|
+
defaultCurrency: string;
|
|
32185
|
+
} | undefined;
|
|
32186
|
+
readonly vectorConfig?: {
|
|
32187
|
+
dimensions: number;
|
|
32188
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32189
|
+
normalized: boolean;
|
|
32190
|
+
indexed: boolean;
|
|
32191
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32192
|
+
} | undefined;
|
|
32193
|
+
readonly fileAttachmentConfig?: {
|
|
32194
|
+
virusScan: boolean;
|
|
32195
|
+
virusScanOnUpload: boolean;
|
|
32196
|
+
quarantineOnThreat: boolean;
|
|
32197
|
+
allowMultiple: boolean;
|
|
32198
|
+
allowReplace: boolean;
|
|
32199
|
+
allowDelete: boolean;
|
|
32200
|
+
requireUpload: boolean;
|
|
32201
|
+
extractMetadata: boolean;
|
|
32202
|
+
extractText: boolean;
|
|
32203
|
+
versioningEnabled: boolean;
|
|
32204
|
+
publicRead: boolean;
|
|
32205
|
+
presignedUrlExpiry: number;
|
|
32206
|
+
minSize?: number | undefined;
|
|
32207
|
+
maxSize?: number | undefined;
|
|
32208
|
+
allowedTypes?: string[] | undefined;
|
|
32209
|
+
blockedTypes?: string[] | undefined;
|
|
32210
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32211
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32212
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32213
|
+
storageProvider?: string | undefined;
|
|
32214
|
+
storageBucket?: string | undefined;
|
|
32215
|
+
storagePrefix?: string | undefined;
|
|
32216
|
+
imageValidation?: {
|
|
32217
|
+
generateThumbnails: boolean;
|
|
32218
|
+
preserveMetadata: boolean;
|
|
32219
|
+
autoRotate: boolean;
|
|
32220
|
+
minWidth?: number | undefined;
|
|
32221
|
+
maxWidth?: number | undefined;
|
|
32222
|
+
minHeight?: number | undefined;
|
|
32223
|
+
maxHeight?: number | undefined;
|
|
32224
|
+
aspectRatio?: string | undefined;
|
|
32225
|
+
thumbnailSizes?: {
|
|
32226
|
+
name: string;
|
|
32227
|
+
width: number;
|
|
32228
|
+
height: number;
|
|
32229
|
+
crop: boolean;
|
|
32230
|
+
}[] | undefined;
|
|
32231
|
+
} | undefined;
|
|
32232
|
+
maxVersions?: number | undefined;
|
|
32233
|
+
} | undefined;
|
|
32234
|
+
readonly trackHistory?: boolean | undefined;
|
|
32235
|
+
readonly visibleWhen?: {
|
|
32236
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32237
|
+
source?: string | undefined;
|
|
32238
|
+
ast?: unknown;
|
|
32239
|
+
meta?: {
|
|
32240
|
+
rationale?: string | undefined;
|
|
32241
|
+
generatedBy?: string | undefined;
|
|
32242
|
+
} | undefined;
|
|
32243
|
+
} | undefined;
|
|
32244
|
+
readonly readonlyWhen?: {
|
|
32245
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32246
|
+
source?: string | undefined;
|
|
32247
|
+
ast?: unknown;
|
|
32248
|
+
meta?: {
|
|
32249
|
+
rationale?: string | undefined;
|
|
32250
|
+
generatedBy?: string | undefined;
|
|
32251
|
+
} | undefined;
|
|
32252
|
+
} | undefined;
|
|
32253
|
+
readonly requiredWhen?: {
|
|
32254
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32255
|
+
source?: string | undefined;
|
|
32256
|
+
ast?: unknown;
|
|
32257
|
+
meta?: {
|
|
32258
|
+
rationale?: string | undefined;
|
|
32259
|
+
generatedBy?: string | undefined;
|
|
32260
|
+
} | undefined;
|
|
32261
|
+
} | undefined;
|
|
32262
|
+
readonly conditionalRequired?: {
|
|
32263
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32264
|
+
source?: string | undefined;
|
|
32265
|
+
ast?: unknown;
|
|
32266
|
+
meta?: {
|
|
32267
|
+
rationale?: string | undefined;
|
|
32268
|
+
generatedBy?: string | undefined;
|
|
32269
|
+
} | undefined;
|
|
32270
|
+
} | undefined;
|
|
32271
|
+
readonly sortable?: boolean | undefined;
|
|
32272
|
+
readonly inlineHelpText?: string | undefined;
|
|
32273
|
+
readonly autonumberFormat?: string | undefined;
|
|
32274
|
+
readonly index?: boolean | undefined;
|
|
32275
|
+
readonly type: "select";
|
|
32276
|
+
};
|
|
32277
|
+
readonly dry_run: {
|
|
32278
|
+
readonly readonly?: boolean | undefined;
|
|
32279
|
+
readonly format?: string | undefined;
|
|
32280
|
+
readonly options?: {
|
|
32281
|
+
label: string;
|
|
32282
|
+
value: string;
|
|
32283
|
+
color?: string | undefined;
|
|
32284
|
+
default?: boolean | undefined;
|
|
32285
|
+
}[] | undefined;
|
|
32286
|
+
readonly description?: string | undefined;
|
|
32287
|
+
readonly label?: string | undefined;
|
|
32288
|
+
readonly name?: string | undefined;
|
|
32289
|
+
readonly precision?: number | undefined;
|
|
32290
|
+
readonly required?: boolean | undefined;
|
|
32291
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32292
|
+
readonly multiple?: boolean | undefined;
|
|
32293
|
+
readonly dependencies?: string[] | undefined;
|
|
32294
|
+
readonly externalId?: boolean | undefined;
|
|
32295
|
+
readonly defaultValue?: unknown;
|
|
32296
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32297
|
+
readonly group?: string | undefined;
|
|
32298
|
+
readonly hidden?: boolean | undefined;
|
|
32299
|
+
readonly system?: boolean | undefined;
|
|
32300
|
+
readonly min?: number | undefined;
|
|
32301
|
+
readonly max?: number | undefined;
|
|
32302
|
+
readonly dimensions?: number | undefined;
|
|
32303
|
+
readonly columnName?: string | undefined;
|
|
32304
|
+
readonly searchable?: boolean | undefined;
|
|
32305
|
+
readonly unique?: boolean | undefined;
|
|
32306
|
+
readonly maxLength?: number | undefined;
|
|
32307
|
+
readonly minLength?: number | undefined;
|
|
32308
|
+
readonly scale?: number | undefined;
|
|
32309
|
+
readonly reference?: string | undefined;
|
|
32310
|
+
readonly referenceFilters?: string[] | undefined;
|
|
32311
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
32312
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
32313
|
+
readonly inlineTitle?: string | undefined;
|
|
32314
|
+
readonly inlineColumns?: any[] | undefined;
|
|
32315
|
+
readonly inlineAmountField?: string | undefined;
|
|
32316
|
+
readonly relatedList?: boolean | undefined;
|
|
32317
|
+
readonly relatedListTitle?: string | undefined;
|
|
32318
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
32319
|
+
readonly displayField?: string | undefined;
|
|
32320
|
+
readonly descriptionField?: string | undefined;
|
|
32321
|
+
readonly lookupColumns?: (string | {
|
|
32322
|
+
field: string;
|
|
32323
|
+
label?: string | undefined;
|
|
32324
|
+
width?: string | undefined;
|
|
32325
|
+
type?: string | undefined;
|
|
32326
|
+
})[] | undefined;
|
|
32327
|
+
readonly lookupPageSize?: number | undefined;
|
|
32328
|
+
readonly lookupFilters?: {
|
|
32329
|
+
field: string;
|
|
32330
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
32331
|
+
value: any;
|
|
32332
|
+
}[] | undefined;
|
|
32333
|
+
readonly dependsOn?: (string | {
|
|
32334
|
+
field: string;
|
|
32335
|
+
param?: string | undefined;
|
|
32336
|
+
})[] | undefined;
|
|
32337
|
+
readonly allowCreate?: boolean | undefined;
|
|
32338
|
+
readonly expression?: {
|
|
32339
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32340
|
+
source?: string | undefined;
|
|
32341
|
+
ast?: unknown;
|
|
32342
|
+
meta?: {
|
|
32343
|
+
rationale?: string | undefined;
|
|
32344
|
+
generatedBy?: string | undefined;
|
|
32345
|
+
} | undefined;
|
|
32346
|
+
} | undefined;
|
|
32347
|
+
readonly summaryOperations?: {
|
|
32348
|
+
object: string;
|
|
32349
|
+
field: string;
|
|
32350
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32351
|
+
relationshipField?: string | undefined;
|
|
32352
|
+
} | undefined;
|
|
32353
|
+
readonly language?: string | undefined;
|
|
32354
|
+
readonly step?: number | undefined;
|
|
32355
|
+
readonly currencyConfig?: {
|
|
32356
|
+
precision: number;
|
|
32357
|
+
currencyMode: "fixed" | "dynamic";
|
|
32358
|
+
defaultCurrency: string;
|
|
32359
|
+
} | undefined;
|
|
32360
|
+
readonly vectorConfig?: {
|
|
32361
|
+
dimensions: number;
|
|
32362
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32363
|
+
normalized: boolean;
|
|
32364
|
+
indexed: boolean;
|
|
32365
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32366
|
+
} | undefined;
|
|
32367
|
+
readonly fileAttachmentConfig?: {
|
|
32368
|
+
virusScan: boolean;
|
|
32369
|
+
virusScanOnUpload: boolean;
|
|
32370
|
+
quarantineOnThreat: boolean;
|
|
32371
|
+
allowMultiple: boolean;
|
|
32372
|
+
allowReplace: boolean;
|
|
32373
|
+
allowDelete: boolean;
|
|
32374
|
+
requireUpload: boolean;
|
|
32375
|
+
extractMetadata: boolean;
|
|
32376
|
+
extractText: boolean;
|
|
32377
|
+
versioningEnabled: boolean;
|
|
32378
|
+
publicRead: boolean;
|
|
32379
|
+
presignedUrlExpiry: number;
|
|
32380
|
+
minSize?: number | undefined;
|
|
32381
|
+
maxSize?: number | undefined;
|
|
32382
|
+
allowedTypes?: string[] | undefined;
|
|
32383
|
+
blockedTypes?: string[] | undefined;
|
|
32384
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32385
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32386
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32387
|
+
storageProvider?: string | undefined;
|
|
32388
|
+
storageBucket?: string | undefined;
|
|
32389
|
+
storagePrefix?: string | undefined;
|
|
32390
|
+
imageValidation?: {
|
|
32391
|
+
generateThumbnails: boolean;
|
|
32392
|
+
preserveMetadata: boolean;
|
|
32393
|
+
autoRotate: boolean;
|
|
32394
|
+
minWidth?: number | undefined;
|
|
32395
|
+
maxWidth?: number | undefined;
|
|
32396
|
+
minHeight?: number | undefined;
|
|
32397
|
+
maxHeight?: number | undefined;
|
|
32398
|
+
aspectRatio?: string | undefined;
|
|
32399
|
+
thumbnailSizes?: {
|
|
32400
|
+
name: string;
|
|
32401
|
+
width: number;
|
|
32402
|
+
height: number;
|
|
32403
|
+
crop: boolean;
|
|
32404
|
+
}[] | undefined;
|
|
32405
|
+
} | undefined;
|
|
32406
|
+
maxVersions?: number | undefined;
|
|
32407
|
+
} | undefined;
|
|
32408
|
+
readonly trackHistory?: boolean | undefined;
|
|
32409
|
+
readonly visibleWhen?: {
|
|
32410
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32411
|
+
source?: string | undefined;
|
|
32412
|
+
ast?: unknown;
|
|
32413
|
+
meta?: {
|
|
32414
|
+
rationale?: string | undefined;
|
|
32415
|
+
generatedBy?: string | undefined;
|
|
32416
|
+
} | undefined;
|
|
32417
|
+
} | undefined;
|
|
32418
|
+
readonly readonlyWhen?: {
|
|
32419
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32420
|
+
source?: string | undefined;
|
|
32421
|
+
ast?: unknown;
|
|
32422
|
+
meta?: {
|
|
32423
|
+
rationale?: string | undefined;
|
|
32424
|
+
generatedBy?: string | undefined;
|
|
32425
|
+
} | undefined;
|
|
32426
|
+
} | undefined;
|
|
32427
|
+
readonly requiredWhen?: {
|
|
32428
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32429
|
+
source?: string | undefined;
|
|
32430
|
+
ast?: unknown;
|
|
32431
|
+
meta?: {
|
|
32432
|
+
rationale?: string | undefined;
|
|
32433
|
+
generatedBy?: string | undefined;
|
|
32434
|
+
} | undefined;
|
|
32435
|
+
} | undefined;
|
|
32436
|
+
readonly conditionalRequired?: {
|
|
32437
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32438
|
+
source?: string | undefined;
|
|
32439
|
+
ast?: unknown;
|
|
32440
|
+
meta?: {
|
|
32441
|
+
rationale?: string | undefined;
|
|
32442
|
+
generatedBy?: string | undefined;
|
|
32443
|
+
} | undefined;
|
|
32444
|
+
} | undefined;
|
|
32445
|
+
readonly sortable?: boolean | undefined;
|
|
32446
|
+
readonly inlineHelpText?: string | undefined;
|
|
32447
|
+
readonly autonumberFormat?: string | undefined;
|
|
32448
|
+
readonly index?: boolean | undefined;
|
|
32449
|
+
readonly type: "boolean";
|
|
32450
|
+
};
|
|
32451
|
+
readonly run_automations: {
|
|
32452
|
+
readonly readonly?: boolean | undefined;
|
|
32453
|
+
readonly format?: string | undefined;
|
|
32454
|
+
readonly options?: {
|
|
32455
|
+
label: string;
|
|
32456
|
+
value: string;
|
|
32457
|
+
color?: string | undefined;
|
|
32458
|
+
default?: boolean | undefined;
|
|
32459
|
+
}[] | undefined;
|
|
32460
|
+
readonly description?: string | undefined;
|
|
32461
|
+
readonly label?: string | undefined;
|
|
32462
|
+
readonly name?: string | undefined;
|
|
32463
|
+
readonly precision?: number | undefined;
|
|
32464
|
+
readonly required?: boolean | undefined;
|
|
32465
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32466
|
+
readonly multiple?: boolean | undefined;
|
|
32467
|
+
readonly dependencies?: string[] | undefined;
|
|
32468
|
+
readonly externalId?: boolean | undefined;
|
|
32469
|
+
readonly defaultValue?: unknown;
|
|
32470
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32471
|
+
readonly group?: string | undefined;
|
|
32472
|
+
readonly hidden?: boolean | undefined;
|
|
32473
|
+
readonly system?: boolean | undefined;
|
|
32474
|
+
readonly min?: number | undefined;
|
|
32475
|
+
readonly max?: number | undefined;
|
|
32476
|
+
readonly dimensions?: number | undefined;
|
|
32477
|
+
readonly columnName?: string | undefined;
|
|
32478
|
+
readonly searchable?: boolean | undefined;
|
|
32479
|
+
readonly unique?: boolean | undefined;
|
|
32480
|
+
readonly maxLength?: number | undefined;
|
|
32481
|
+
readonly minLength?: number | undefined;
|
|
32482
|
+
readonly scale?: number | undefined;
|
|
32483
|
+
readonly reference?: string | undefined;
|
|
32484
|
+
readonly referenceFilters?: string[] | undefined;
|
|
32485
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
32486
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
32487
|
+
readonly inlineTitle?: string | undefined;
|
|
32488
|
+
readonly inlineColumns?: any[] | undefined;
|
|
32489
|
+
readonly inlineAmountField?: string | undefined;
|
|
32490
|
+
readonly relatedList?: boolean | undefined;
|
|
32491
|
+
readonly relatedListTitle?: string | undefined;
|
|
32492
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
32493
|
+
readonly displayField?: string | undefined;
|
|
32494
|
+
readonly descriptionField?: string | undefined;
|
|
32495
|
+
readonly lookupColumns?: (string | {
|
|
32496
|
+
field: string;
|
|
32497
|
+
label?: string | undefined;
|
|
32498
|
+
width?: string | undefined;
|
|
32499
|
+
type?: string | undefined;
|
|
32500
|
+
})[] | undefined;
|
|
32501
|
+
readonly lookupPageSize?: number | undefined;
|
|
32502
|
+
readonly lookupFilters?: {
|
|
32503
|
+
field: string;
|
|
32504
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
32505
|
+
value: any;
|
|
32506
|
+
}[] | undefined;
|
|
32507
|
+
readonly dependsOn?: (string | {
|
|
32508
|
+
field: string;
|
|
32509
|
+
param?: string | undefined;
|
|
32510
|
+
})[] | undefined;
|
|
32511
|
+
readonly allowCreate?: boolean | undefined;
|
|
32512
|
+
readonly expression?: {
|
|
32513
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32514
|
+
source?: string | undefined;
|
|
32515
|
+
ast?: unknown;
|
|
32516
|
+
meta?: {
|
|
32517
|
+
rationale?: string | undefined;
|
|
32518
|
+
generatedBy?: string | undefined;
|
|
32519
|
+
} | undefined;
|
|
32520
|
+
} | undefined;
|
|
32521
|
+
readonly summaryOperations?: {
|
|
32522
|
+
object: string;
|
|
32523
|
+
field: string;
|
|
32524
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32525
|
+
relationshipField?: string | undefined;
|
|
32526
|
+
} | undefined;
|
|
32527
|
+
readonly language?: string | undefined;
|
|
32528
|
+
readonly step?: number | undefined;
|
|
32529
|
+
readonly currencyConfig?: {
|
|
32530
|
+
precision: number;
|
|
32531
|
+
currencyMode: "fixed" | "dynamic";
|
|
32532
|
+
defaultCurrency: string;
|
|
32533
|
+
} | undefined;
|
|
32534
|
+
readonly vectorConfig?: {
|
|
32535
|
+
dimensions: number;
|
|
32536
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32537
|
+
normalized: boolean;
|
|
32538
|
+
indexed: boolean;
|
|
32539
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32540
|
+
} | undefined;
|
|
32541
|
+
readonly fileAttachmentConfig?: {
|
|
32542
|
+
virusScan: boolean;
|
|
32543
|
+
virusScanOnUpload: boolean;
|
|
32544
|
+
quarantineOnThreat: boolean;
|
|
32545
|
+
allowMultiple: boolean;
|
|
32546
|
+
allowReplace: boolean;
|
|
32547
|
+
allowDelete: boolean;
|
|
32548
|
+
requireUpload: boolean;
|
|
32549
|
+
extractMetadata: boolean;
|
|
32550
|
+
extractText: boolean;
|
|
32551
|
+
versioningEnabled: boolean;
|
|
32552
|
+
publicRead: boolean;
|
|
32553
|
+
presignedUrlExpiry: number;
|
|
32554
|
+
minSize?: number | undefined;
|
|
32555
|
+
maxSize?: number | undefined;
|
|
32556
|
+
allowedTypes?: string[] | undefined;
|
|
32557
|
+
blockedTypes?: string[] | undefined;
|
|
32558
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32559
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32560
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32561
|
+
storageProvider?: string | undefined;
|
|
32562
|
+
storageBucket?: string | undefined;
|
|
32563
|
+
storagePrefix?: string | undefined;
|
|
32564
|
+
imageValidation?: {
|
|
32565
|
+
generateThumbnails: boolean;
|
|
32566
|
+
preserveMetadata: boolean;
|
|
32567
|
+
autoRotate: boolean;
|
|
32568
|
+
minWidth?: number | undefined;
|
|
32569
|
+
maxWidth?: number | undefined;
|
|
32570
|
+
minHeight?: number | undefined;
|
|
32571
|
+
maxHeight?: number | undefined;
|
|
32572
|
+
aspectRatio?: string | undefined;
|
|
32573
|
+
thumbnailSizes?: {
|
|
32574
|
+
name: string;
|
|
32575
|
+
width: number;
|
|
32576
|
+
height: number;
|
|
32577
|
+
crop: boolean;
|
|
32578
|
+
}[] | undefined;
|
|
32579
|
+
} | undefined;
|
|
32580
|
+
maxVersions?: number | undefined;
|
|
32581
|
+
} | undefined;
|
|
32582
|
+
readonly trackHistory?: boolean | undefined;
|
|
32583
|
+
readonly visibleWhen?: {
|
|
32584
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32585
|
+
source?: string | undefined;
|
|
32586
|
+
ast?: unknown;
|
|
32587
|
+
meta?: {
|
|
32588
|
+
rationale?: string | undefined;
|
|
32589
|
+
generatedBy?: string | undefined;
|
|
32590
|
+
} | undefined;
|
|
32591
|
+
} | undefined;
|
|
32592
|
+
readonly readonlyWhen?: {
|
|
32593
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32594
|
+
source?: string | undefined;
|
|
32595
|
+
ast?: unknown;
|
|
32596
|
+
meta?: {
|
|
32597
|
+
rationale?: string | undefined;
|
|
32598
|
+
generatedBy?: string | undefined;
|
|
32599
|
+
} | undefined;
|
|
32600
|
+
} | undefined;
|
|
32601
|
+
readonly requiredWhen?: {
|
|
32602
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32603
|
+
source?: string | undefined;
|
|
32604
|
+
ast?: unknown;
|
|
32605
|
+
meta?: {
|
|
32606
|
+
rationale?: string | undefined;
|
|
32607
|
+
generatedBy?: string | undefined;
|
|
32608
|
+
} | undefined;
|
|
32609
|
+
} | undefined;
|
|
32610
|
+
readonly conditionalRequired?: {
|
|
32611
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32612
|
+
source?: string | undefined;
|
|
32613
|
+
ast?: unknown;
|
|
32614
|
+
meta?: {
|
|
32615
|
+
rationale?: string | undefined;
|
|
32616
|
+
generatedBy?: string | undefined;
|
|
32617
|
+
} | undefined;
|
|
32618
|
+
} | undefined;
|
|
32619
|
+
readonly sortable?: boolean | undefined;
|
|
32620
|
+
readonly inlineHelpText?: string | undefined;
|
|
32621
|
+
readonly autonumberFormat?: string | undefined;
|
|
32622
|
+
readonly index?: boolean | undefined;
|
|
32623
|
+
readonly type: "boolean";
|
|
32624
|
+
};
|
|
32625
|
+
readonly error: {
|
|
32626
|
+
readonly readonly?: boolean | undefined;
|
|
32627
|
+
readonly format?: string | undefined;
|
|
32628
|
+
readonly options?: {
|
|
32629
|
+
label: string;
|
|
32630
|
+
value: string;
|
|
32631
|
+
color?: string | undefined;
|
|
32632
|
+
default?: boolean | undefined;
|
|
32633
|
+
}[] | undefined;
|
|
32634
|
+
readonly description?: string | undefined;
|
|
32635
|
+
readonly label?: string | undefined;
|
|
32636
|
+
readonly name?: string | undefined;
|
|
32637
|
+
readonly precision?: number | undefined;
|
|
32638
|
+
readonly required?: boolean | undefined;
|
|
32639
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32640
|
+
readonly multiple?: boolean | undefined;
|
|
32641
|
+
readonly dependencies?: string[] | undefined;
|
|
32642
|
+
readonly externalId?: boolean | undefined;
|
|
32643
|
+
readonly defaultValue?: unknown;
|
|
32644
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32645
|
+
readonly group?: string | undefined;
|
|
32646
|
+
readonly hidden?: boolean | undefined;
|
|
32647
|
+
readonly system?: boolean | undefined;
|
|
32648
|
+
readonly min?: number | undefined;
|
|
32649
|
+
readonly max?: number | undefined;
|
|
32650
|
+
readonly dimensions?: number | undefined;
|
|
32651
|
+
readonly columnName?: string | undefined;
|
|
32652
|
+
readonly searchable?: boolean | undefined;
|
|
32653
|
+
readonly unique?: boolean | undefined;
|
|
32654
|
+
readonly maxLength?: number | undefined;
|
|
32655
|
+
readonly minLength?: number | undefined;
|
|
32656
|
+
readonly scale?: number | undefined;
|
|
32657
|
+
readonly reference?: string | undefined;
|
|
32658
|
+
readonly referenceFilters?: string[] | undefined;
|
|
32659
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
32660
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
32661
|
+
readonly inlineTitle?: string | undefined;
|
|
32662
|
+
readonly inlineColumns?: any[] | undefined;
|
|
32663
|
+
readonly inlineAmountField?: string | undefined;
|
|
32664
|
+
readonly relatedList?: boolean | undefined;
|
|
32665
|
+
readonly relatedListTitle?: string | undefined;
|
|
32666
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
32667
|
+
readonly displayField?: string | undefined;
|
|
32668
|
+
readonly descriptionField?: string | undefined;
|
|
32669
|
+
readonly lookupColumns?: (string | {
|
|
32670
|
+
field: string;
|
|
32671
|
+
label?: string | undefined;
|
|
32672
|
+
width?: string | undefined;
|
|
32673
|
+
type?: string | undefined;
|
|
32674
|
+
})[] | undefined;
|
|
32675
|
+
readonly lookupPageSize?: number | undefined;
|
|
32676
|
+
readonly lookupFilters?: {
|
|
32677
|
+
field: string;
|
|
32678
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
32679
|
+
value: any;
|
|
32680
|
+
}[] | undefined;
|
|
32681
|
+
readonly dependsOn?: (string | {
|
|
32682
|
+
field: string;
|
|
32683
|
+
param?: string | undefined;
|
|
32684
|
+
})[] | undefined;
|
|
32685
|
+
readonly allowCreate?: boolean | undefined;
|
|
32686
|
+
readonly expression?: {
|
|
32687
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32688
|
+
source?: string | undefined;
|
|
32689
|
+
ast?: unknown;
|
|
32690
|
+
meta?: {
|
|
32691
|
+
rationale?: string | undefined;
|
|
32692
|
+
generatedBy?: string | undefined;
|
|
32693
|
+
} | undefined;
|
|
32694
|
+
} | undefined;
|
|
32695
|
+
readonly summaryOperations?: {
|
|
32696
|
+
object: string;
|
|
32697
|
+
field: string;
|
|
32698
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32699
|
+
relationshipField?: string | undefined;
|
|
32700
|
+
} | undefined;
|
|
32701
|
+
readonly language?: string | undefined;
|
|
32702
|
+
readonly step?: number | undefined;
|
|
32703
|
+
readonly currencyConfig?: {
|
|
32704
|
+
precision: number;
|
|
32705
|
+
currencyMode: "fixed" | "dynamic";
|
|
32706
|
+
defaultCurrency: string;
|
|
32707
|
+
} | undefined;
|
|
32708
|
+
readonly vectorConfig?: {
|
|
32709
|
+
dimensions: number;
|
|
32710
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32711
|
+
normalized: boolean;
|
|
32712
|
+
indexed: boolean;
|
|
32713
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32714
|
+
} | undefined;
|
|
32715
|
+
readonly fileAttachmentConfig?: {
|
|
32716
|
+
virusScan: boolean;
|
|
32717
|
+
virusScanOnUpload: boolean;
|
|
32718
|
+
quarantineOnThreat: boolean;
|
|
32719
|
+
allowMultiple: boolean;
|
|
32720
|
+
allowReplace: boolean;
|
|
32721
|
+
allowDelete: boolean;
|
|
32722
|
+
requireUpload: boolean;
|
|
32723
|
+
extractMetadata: boolean;
|
|
32724
|
+
extractText: boolean;
|
|
32725
|
+
versioningEnabled: boolean;
|
|
32726
|
+
publicRead: boolean;
|
|
32727
|
+
presignedUrlExpiry: number;
|
|
32728
|
+
minSize?: number | undefined;
|
|
32729
|
+
maxSize?: number | undefined;
|
|
32730
|
+
allowedTypes?: string[] | undefined;
|
|
32731
|
+
blockedTypes?: string[] | undefined;
|
|
32732
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32733
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32734
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32735
|
+
storageProvider?: string | undefined;
|
|
32736
|
+
storageBucket?: string | undefined;
|
|
32737
|
+
storagePrefix?: string | undefined;
|
|
32738
|
+
imageValidation?: {
|
|
32739
|
+
generateThumbnails: boolean;
|
|
32740
|
+
preserveMetadata: boolean;
|
|
32741
|
+
autoRotate: boolean;
|
|
32742
|
+
minWidth?: number | undefined;
|
|
32743
|
+
maxWidth?: number | undefined;
|
|
32744
|
+
minHeight?: number | undefined;
|
|
32745
|
+
maxHeight?: number | undefined;
|
|
32746
|
+
aspectRatio?: string | undefined;
|
|
32747
|
+
thumbnailSizes?: {
|
|
32748
|
+
name: string;
|
|
32749
|
+
width: number;
|
|
32750
|
+
height: number;
|
|
32751
|
+
crop: boolean;
|
|
32752
|
+
}[] | undefined;
|
|
32753
|
+
} | undefined;
|
|
32754
|
+
maxVersions?: number | undefined;
|
|
32755
|
+
} | undefined;
|
|
32756
|
+
readonly trackHistory?: boolean | undefined;
|
|
32757
|
+
readonly visibleWhen?: {
|
|
32758
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32759
|
+
source?: string | undefined;
|
|
32760
|
+
ast?: unknown;
|
|
32761
|
+
meta?: {
|
|
32762
|
+
rationale?: string | undefined;
|
|
32763
|
+
generatedBy?: string | undefined;
|
|
32764
|
+
} | undefined;
|
|
32765
|
+
} | undefined;
|
|
32766
|
+
readonly readonlyWhen?: {
|
|
32767
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32768
|
+
source?: string | undefined;
|
|
32769
|
+
ast?: unknown;
|
|
32770
|
+
meta?: {
|
|
32771
|
+
rationale?: string | undefined;
|
|
32772
|
+
generatedBy?: string | undefined;
|
|
32773
|
+
} | undefined;
|
|
32774
|
+
} | undefined;
|
|
32775
|
+
readonly requiredWhen?: {
|
|
32776
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32777
|
+
source?: string | undefined;
|
|
32778
|
+
ast?: unknown;
|
|
32779
|
+
meta?: {
|
|
32780
|
+
rationale?: string | undefined;
|
|
32781
|
+
generatedBy?: string | undefined;
|
|
32782
|
+
} | undefined;
|
|
32783
|
+
} | undefined;
|
|
32784
|
+
readonly conditionalRequired?: {
|
|
32785
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32786
|
+
source?: string | undefined;
|
|
32787
|
+
ast?: unknown;
|
|
32788
|
+
meta?: {
|
|
32789
|
+
rationale?: string | undefined;
|
|
32790
|
+
generatedBy?: string | undefined;
|
|
32791
|
+
} | undefined;
|
|
32792
|
+
} | undefined;
|
|
32793
|
+
readonly sortable?: boolean | undefined;
|
|
32794
|
+
readonly inlineHelpText?: string | undefined;
|
|
32795
|
+
readonly autonumberFormat?: string | undefined;
|
|
32796
|
+
readonly index?: boolean | undefined;
|
|
32797
|
+
readonly type: "textarea";
|
|
32798
|
+
};
|
|
32799
|
+
readonly results: {
|
|
32800
|
+
readonly readonly?: boolean | undefined;
|
|
32801
|
+
readonly format?: string | undefined;
|
|
32802
|
+
readonly options?: {
|
|
32803
|
+
label: string;
|
|
32804
|
+
value: string;
|
|
32805
|
+
color?: string | undefined;
|
|
32806
|
+
default?: boolean | undefined;
|
|
32807
|
+
}[] | undefined;
|
|
32808
|
+
readonly description?: string | undefined;
|
|
32809
|
+
readonly label?: string | undefined;
|
|
32810
|
+
readonly name?: string | undefined;
|
|
32811
|
+
readonly precision?: number | undefined;
|
|
32812
|
+
readonly required?: boolean | undefined;
|
|
32813
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32814
|
+
readonly multiple?: boolean | undefined;
|
|
32815
|
+
readonly dependencies?: string[] | undefined;
|
|
32816
|
+
readonly externalId?: boolean | undefined;
|
|
32817
|
+
readonly defaultValue?: unknown;
|
|
32818
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32819
|
+
readonly group?: string | undefined;
|
|
32820
|
+
readonly hidden?: boolean | undefined;
|
|
32821
|
+
readonly system?: boolean | undefined;
|
|
32822
|
+
readonly min?: number | undefined;
|
|
32823
|
+
readonly max?: number | undefined;
|
|
32824
|
+
readonly dimensions?: number | undefined;
|
|
32825
|
+
readonly columnName?: string | undefined;
|
|
32826
|
+
readonly searchable?: boolean | undefined;
|
|
32827
|
+
readonly unique?: boolean | undefined;
|
|
32828
|
+
readonly maxLength?: number | undefined;
|
|
32829
|
+
readonly minLength?: number | undefined;
|
|
32830
|
+
readonly scale?: number | undefined;
|
|
32831
|
+
readonly reference?: string | undefined;
|
|
32832
|
+
readonly referenceFilters?: string[] | undefined;
|
|
32833
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
32834
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
32835
|
+
readonly inlineTitle?: string | undefined;
|
|
32836
|
+
readonly inlineColumns?: any[] | undefined;
|
|
32837
|
+
readonly inlineAmountField?: string | undefined;
|
|
32838
|
+
readonly relatedList?: boolean | undefined;
|
|
32839
|
+
readonly relatedListTitle?: string | undefined;
|
|
32840
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
32841
|
+
readonly displayField?: string | undefined;
|
|
32842
|
+
readonly descriptionField?: string | undefined;
|
|
32843
|
+
readonly lookupColumns?: (string | {
|
|
32844
|
+
field: string;
|
|
32845
|
+
label?: string | undefined;
|
|
32846
|
+
width?: string | undefined;
|
|
32847
|
+
type?: string | undefined;
|
|
32848
|
+
})[] | undefined;
|
|
32849
|
+
readonly lookupPageSize?: number | undefined;
|
|
32850
|
+
readonly lookupFilters?: {
|
|
32851
|
+
field: string;
|
|
32852
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
32853
|
+
value: any;
|
|
32854
|
+
}[] | undefined;
|
|
32855
|
+
readonly dependsOn?: (string | {
|
|
32856
|
+
field: string;
|
|
32857
|
+
param?: string | undefined;
|
|
32858
|
+
})[] | undefined;
|
|
32859
|
+
readonly allowCreate?: boolean | undefined;
|
|
32860
|
+
readonly expression?: {
|
|
32861
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32862
|
+
source?: string | undefined;
|
|
32863
|
+
ast?: unknown;
|
|
32864
|
+
meta?: {
|
|
32865
|
+
rationale?: string | undefined;
|
|
32866
|
+
generatedBy?: string | undefined;
|
|
32867
|
+
} | undefined;
|
|
32868
|
+
} | undefined;
|
|
32869
|
+
readonly summaryOperations?: {
|
|
32870
|
+
object: string;
|
|
32871
|
+
field: string;
|
|
32872
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
32873
|
+
relationshipField?: string | undefined;
|
|
32874
|
+
} | undefined;
|
|
32875
|
+
readonly language?: string | undefined;
|
|
32876
|
+
readonly step?: number | undefined;
|
|
32877
|
+
readonly currencyConfig?: {
|
|
32878
|
+
precision: number;
|
|
32879
|
+
currencyMode: "fixed" | "dynamic";
|
|
32880
|
+
defaultCurrency: string;
|
|
32881
|
+
} | undefined;
|
|
32882
|
+
readonly vectorConfig?: {
|
|
32883
|
+
dimensions: number;
|
|
32884
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
32885
|
+
normalized: boolean;
|
|
32886
|
+
indexed: boolean;
|
|
32887
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
32888
|
+
} | undefined;
|
|
32889
|
+
readonly fileAttachmentConfig?: {
|
|
32890
|
+
virusScan: boolean;
|
|
32891
|
+
virusScanOnUpload: boolean;
|
|
32892
|
+
quarantineOnThreat: boolean;
|
|
32893
|
+
allowMultiple: boolean;
|
|
32894
|
+
allowReplace: boolean;
|
|
32895
|
+
allowDelete: boolean;
|
|
32896
|
+
requireUpload: boolean;
|
|
32897
|
+
extractMetadata: boolean;
|
|
32898
|
+
extractText: boolean;
|
|
32899
|
+
versioningEnabled: boolean;
|
|
32900
|
+
publicRead: boolean;
|
|
32901
|
+
presignedUrlExpiry: number;
|
|
32902
|
+
minSize?: number | undefined;
|
|
32903
|
+
maxSize?: number | undefined;
|
|
32904
|
+
allowedTypes?: string[] | undefined;
|
|
32905
|
+
blockedTypes?: string[] | undefined;
|
|
32906
|
+
allowedMimeTypes?: string[] | undefined;
|
|
32907
|
+
blockedMimeTypes?: string[] | undefined;
|
|
32908
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
32909
|
+
storageProvider?: string | undefined;
|
|
32910
|
+
storageBucket?: string | undefined;
|
|
32911
|
+
storagePrefix?: string | undefined;
|
|
32912
|
+
imageValidation?: {
|
|
32913
|
+
generateThumbnails: boolean;
|
|
32914
|
+
preserveMetadata: boolean;
|
|
32915
|
+
autoRotate: boolean;
|
|
32916
|
+
minWidth?: number | undefined;
|
|
32917
|
+
maxWidth?: number | undefined;
|
|
32918
|
+
minHeight?: number | undefined;
|
|
32919
|
+
maxHeight?: number | undefined;
|
|
32920
|
+
aspectRatio?: string | undefined;
|
|
32921
|
+
thumbnailSizes?: {
|
|
32922
|
+
name: string;
|
|
32923
|
+
width: number;
|
|
32924
|
+
height: number;
|
|
32925
|
+
crop: boolean;
|
|
32926
|
+
}[] | undefined;
|
|
32927
|
+
} | undefined;
|
|
32928
|
+
maxVersions?: number | undefined;
|
|
32929
|
+
} | undefined;
|
|
32930
|
+
readonly trackHistory?: boolean | undefined;
|
|
32931
|
+
readonly visibleWhen?: {
|
|
32932
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32933
|
+
source?: string | undefined;
|
|
32934
|
+
ast?: unknown;
|
|
32935
|
+
meta?: {
|
|
32936
|
+
rationale?: string | undefined;
|
|
32937
|
+
generatedBy?: string | undefined;
|
|
32938
|
+
} | undefined;
|
|
32939
|
+
} | undefined;
|
|
32940
|
+
readonly readonlyWhen?: {
|
|
32941
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32942
|
+
source?: string | undefined;
|
|
32943
|
+
ast?: unknown;
|
|
32944
|
+
meta?: {
|
|
32945
|
+
rationale?: string | undefined;
|
|
32946
|
+
generatedBy?: string | undefined;
|
|
32947
|
+
} | undefined;
|
|
32948
|
+
} | undefined;
|
|
32949
|
+
readonly requiredWhen?: {
|
|
32950
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32951
|
+
source?: string | undefined;
|
|
32952
|
+
ast?: unknown;
|
|
32953
|
+
meta?: {
|
|
32954
|
+
rationale?: string | undefined;
|
|
32955
|
+
generatedBy?: string | undefined;
|
|
32956
|
+
} | undefined;
|
|
32957
|
+
} | undefined;
|
|
32958
|
+
readonly conditionalRequired?: {
|
|
32959
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
32960
|
+
source?: string | undefined;
|
|
32961
|
+
ast?: unknown;
|
|
32962
|
+
meta?: {
|
|
32963
|
+
rationale?: string | undefined;
|
|
32964
|
+
generatedBy?: string | undefined;
|
|
32965
|
+
} | undefined;
|
|
32966
|
+
} | undefined;
|
|
32967
|
+
readonly sortable?: boolean | undefined;
|
|
32968
|
+
readonly inlineHelpText?: string | undefined;
|
|
32969
|
+
readonly autonumberFormat?: string | undefined;
|
|
32970
|
+
readonly index?: boolean | undefined;
|
|
32971
|
+
readonly type: "json";
|
|
32972
|
+
};
|
|
32973
|
+
readonly undo_log: {
|
|
32974
|
+
readonly readonly?: boolean | undefined;
|
|
32975
|
+
readonly format?: string | undefined;
|
|
32976
|
+
readonly options?: {
|
|
32977
|
+
label: string;
|
|
32978
|
+
value: string;
|
|
32979
|
+
color?: string | undefined;
|
|
32980
|
+
default?: boolean | undefined;
|
|
32981
|
+
}[] | undefined;
|
|
32982
|
+
readonly description?: string | undefined;
|
|
32983
|
+
readonly label?: string | undefined;
|
|
32984
|
+
readonly name?: string | undefined;
|
|
32985
|
+
readonly precision?: number | undefined;
|
|
32986
|
+
readonly required?: boolean | undefined;
|
|
32987
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
32988
|
+
readonly multiple?: boolean | undefined;
|
|
32989
|
+
readonly dependencies?: string[] | undefined;
|
|
32990
|
+
readonly externalId?: boolean | undefined;
|
|
32991
|
+
readonly defaultValue?: unknown;
|
|
32992
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32993
|
+
readonly group?: string | undefined;
|
|
32994
|
+
readonly hidden?: boolean | undefined;
|
|
32995
|
+
readonly system?: boolean | undefined;
|
|
32996
|
+
readonly min?: number | undefined;
|
|
32997
|
+
readonly max?: number | undefined;
|
|
32998
|
+
readonly dimensions?: number | undefined;
|
|
32999
|
+
readonly columnName?: string | undefined;
|
|
33000
|
+
readonly searchable?: boolean | undefined;
|
|
33001
|
+
readonly unique?: boolean | undefined;
|
|
33002
|
+
readonly maxLength?: number | undefined;
|
|
33003
|
+
readonly minLength?: number | undefined;
|
|
33004
|
+
readonly scale?: number | undefined;
|
|
33005
|
+
readonly reference?: string | undefined;
|
|
33006
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33007
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33008
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33009
|
+
readonly inlineTitle?: string | undefined;
|
|
33010
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33011
|
+
readonly inlineAmountField?: string | undefined;
|
|
33012
|
+
readonly relatedList?: boolean | undefined;
|
|
33013
|
+
readonly relatedListTitle?: string | undefined;
|
|
33014
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33015
|
+
readonly displayField?: string | undefined;
|
|
33016
|
+
readonly descriptionField?: string | undefined;
|
|
33017
|
+
readonly lookupColumns?: (string | {
|
|
33018
|
+
field: string;
|
|
33019
|
+
label?: string | undefined;
|
|
33020
|
+
width?: string | undefined;
|
|
33021
|
+
type?: string | undefined;
|
|
33022
|
+
})[] | undefined;
|
|
33023
|
+
readonly lookupPageSize?: number | undefined;
|
|
33024
|
+
readonly lookupFilters?: {
|
|
33025
|
+
field: string;
|
|
33026
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33027
|
+
value: any;
|
|
33028
|
+
}[] | undefined;
|
|
33029
|
+
readonly dependsOn?: (string | {
|
|
33030
|
+
field: string;
|
|
33031
|
+
param?: string | undefined;
|
|
33032
|
+
})[] | undefined;
|
|
33033
|
+
readonly allowCreate?: boolean | undefined;
|
|
33034
|
+
readonly expression?: {
|
|
33035
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33036
|
+
source?: string | undefined;
|
|
33037
|
+
ast?: unknown;
|
|
33038
|
+
meta?: {
|
|
33039
|
+
rationale?: string | undefined;
|
|
33040
|
+
generatedBy?: string | undefined;
|
|
33041
|
+
} | undefined;
|
|
33042
|
+
} | undefined;
|
|
33043
|
+
readonly summaryOperations?: {
|
|
33044
|
+
object: string;
|
|
33045
|
+
field: string;
|
|
33046
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33047
|
+
relationshipField?: string | undefined;
|
|
33048
|
+
} | undefined;
|
|
33049
|
+
readonly language?: string | undefined;
|
|
33050
|
+
readonly step?: number | undefined;
|
|
33051
|
+
readonly currencyConfig?: {
|
|
33052
|
+
precision: number;
|
|
33053
|
+
currencyMode: "fixed" | "dynamic";
|
|
33054
|
+
defaultCurrency: string;
|
|
33055
|
+
} | undefined;
|
|
33056
|
+
readonly vectorConfig?: {
|
|
33057
|
+
dimensions: number;
|
|
33058
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33059
|
+
normalized: boolean;
|
|
33060
|
+
indexed: boolean;
|
|
33061
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33062
|
+
} | undefined;
|
|
33063
|
+
readonly fileAttachmentConfig?: {
|
|
33064
|
+
virusScan: boolean;
|
|
33065
|
+
virusScanOnUpload: boolean;
|
|
33066
|
+
quarantineOnThreat: boolean;
|
|
33067
|
+
allowMultiple: boolean;
|
|
33068
|
+
allowReplace: boolean;
|
|
33069
|
+
allowDelete: boolean;
|
|
33070
|
+
requireUpload: boolean;
|
|
33071
|
+
extractMetadata: boolean;
|
|
33072
|
+
extractText: boolean;
|
|
33073
|
+
versioningEnabled: boolean;
|
|
33074
|
+
publicRead: boolean;
|
|
33075
|
+
presignedUrlExpiry: number;
|
|
33076
|
+
minSize?: number | undefined;
|
|
33077
|
+
maxSize?: number | undefined;
|
|
33078
|
+
allowedTypes?: string[] | undefined;
|
|
33079
|
+
blockedTypes?: string[] | undefined;
|
|
33080
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33081
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33082
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33083
|
+
storageProvider?: string | undefined;
|
|
33084
|
+
storageBucket?: string | undefined;
|
|
33085
|
+
storagePrefix?: string | undefined;
|
|
33086
|
+
imageValidation?: {
|
|
33087
|
+
generateThumbnails: boolean;
|
|
33088
|
+
preserveMetadata: boolean;
|
|
33089
|
+
autoRotate: boolean;
|
|
33090
|
+
minWidth?: number | undefined;
|
|
33091
|
+
maxWidth?: number | undefined;
|
|
33092
|
+
minHeight?: number | undefined;
|
|
33093
|
+
maxHeight?: number | undefined;
|
|
33094
|
+
aspectRatio?: string | undefined;
|
|
33095
|
+
thumbnailSizes?: {
|
|
33096
|
+
name: string;
|
|
33097
|
+
width: number;
|
|
33098
|
+
height: number;
|
|
33099
|
+
crop: boolean;
|
|
33100
|
+
}[] | undefined;
|
|
33101
|
+
} | undefined;
|
|
33102
|
+
maxVersions?: number | undefined;
|
|
33103
|
+
} | undefined;
|
|
33104
|
+
readonly trackHistory?: boolean | undefined;
|
|
33105
|
+
readonly visibleWhen?: {
|
|
33106
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33107
|
+
source?: string | undefined;
|
|
33108
|
+
ast?: unknown;
|
|
33109
|
+
meta?: {
|
|
33110
|
+
rationale?: string | undefined;
|
|
33111
|
+
generatedBy?: string | undefined;
|
|
33112
|
+
} | undefined;
|
|
33113
|
+
} | undefined;
|
|
33114
|
+
readonly readonlyWhen?: {
|
|
33115
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33116
|
+
source?: string | undefined;
|
|
33117
|
+
ast?: unknown;
|
|
33118
|
+
meta?: {
|
|
33119
|
+
rationale?: string | undefined;
|
|
33120
|
+
generatedBy?: string | undefined;
|
|
33121
|
+
} | undefined;
|
|
33122
|
+
} | undefined;
|
|
33123
|
+
readonly requiredWhen?: {
|
|
33124
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33125
|
+
source?: string | undefined;
|
|
33126
|
+
ast?: unknown;
|
|
33127
|
+
meta?: {
|
|
33128
|
+
rationale?: string | undefined;
|
|
33129
|
+
generatedBy?: string | undefined;
|
|
33130
|
+
} | undefined;
|
|
33131
|
+
} | undefined;
|
|
33132
|
+
readonly conditionalRequired?: {
|
|
33133
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33134
|
+
source?: string | undefined;
|
|
33135
|
+
ast?: unknown;
|
|
33136
|
+
meta?: {
|
|
33137
|
+
rationale?: string | undefined;
|
|
33138
|
+
generatedBy?: string | undefined;
|
|
33139
|
+
} | undefined;
|
|
33140
|
+
} | undefined;
|
|
33141
|
+
readonly sortable?: boolean | undefined;
|
|
33142
|
+
readonly inlineHelpText?: string | undefined;
|
|
33143
|
+
readonly autonumberFormat?: string | undefined;
|
|
33144
|
+
readonly index?: boolean | undefined;
|
|
33145
|
+
readonly type: "json";
|
|
33146
|
+
};
|
|
33147
|
+
readonly reverted_at: {
|
|
33148
|
+
readonly readonly?: boolean | undefined;
|
|
33149
|
+
readonly format?: string | undefined;
|
|
33150
|
+
readonly options?: {
|
|
33151
|
+
label: string;
|
|
33152
|
+
value: string;
|
|
33153
|
+
color?: string | undefined;
|
|
33154
|
+
default?: boolean | undefined;
|
|
33155
|
+
}[] | undefined;
|
|
33156
|
+
readonly description?: string | undefined;
|
|
33157
|
+
readonly label?: string | undefined;
|
|
33158
|
+
readonly name?: string | undefined;
|
|
33159
|
+
readonly precision?: number | undefined;
|
|
33160
|
+
readonly required?: boolean | undefined;
|
|
33161
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
33162
|
+
readonly multiple?: boolean | undefined;
|
|
33163
|
+
readonly dependencies?: string[] | undefined;
|
|
33164
|
+
readonly externalId?: boolean | undefined;
|
|
33165
|
+
readonly defaultValue?: unknown;
|
|
33166
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33167
|
+
readonly group?: string | undefined;
|
|
33168
|
+
readonly hidden?: boolean | undefined;
|
|
33169
|
+
readonly system?: boolean | undefined;
|
|
33170
|
+
readonly min?: number | undefined;
|
|
33171
|
+
readonly max?: number | undefined;
|
|
33172
|
+
readonly dimensions?: number | undefined;
|
|
33173
|
+
readonly columnName?: string | undefined;
|
|
33174
|
+
readonly searchable?: boolean | undefined;
|
|
33175
|
+
readonly unique?: boolean | undefined;
|
|
33176
|
+
readonly maxLength?: number | undefined;
|
|
33177
|
+
readonly minLength?: number | undefined;
|
|
33178
|
+
readonly scale?: number | undefined;
|
|
33179
|
+
readonly reference?: string | undefined;
|
|
33180
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33181
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33182
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33183
|
+
readonly inlineTitle?: string | undefined;
|
|
33184
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33185
|
+
readonly inlineAmountField?: string | undefined;
|
|
33186
|
+
readonly relatedList?: boolean | undefined;
|
|
33187
|
+
readonly relatedListTitle?: string | undefined;
|
|
33188
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33189
|
+
readonly displayField?: string | undefined;
|
|
33190
|
+
readonly descriptionField?: string | undefined;
|
|
33191
|
+
readonly lookupColumns?: (string | {
|
|
33192
|
+
field: string;
|
|
33193
|
+
label?: string | undefined;
|
|
33194
|
+
width?: string | undefined;
|
|
33195
|
+
type?: string | undefined;
|
|
33196
|
+
})[] | undefined;
|
|
33197
|
+
readonly lookupPageSize?: number | undefined;
|
|
33198
|
+
readonly lookupFilters?: {
|
|
33199
|
+
field: string;
|
|
33200
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33201
|
+
value: any;
|
|
33202
|
+
}[] | undefined;
|
|
33203
|
+
readonly dependsOn?: (string | {
|
|
33204
|
+
field: string;
|
|
33205
|
+
param?: string | undefined;
|
|
33206
|
+
})[] | undefined;
|
|
33207
|
+
readonly allowCreate?: boolean | undefined;
|
|
33208
|
+
readonly expression?: {
|
|
33209
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33210
|
+
source?: string | undefined;
|
|
33211
|
+
ast?: unknown;
|
|
33212
|
+
meta?: {
|
|
33213
|
+
rationale?: string | undefined;
|
|
33214
|
+
generatedBy?: string | undefined;
|
|
33215
|
+
} | undefined;
|
|
33216
|
+
} | undefined;
|
|
33217
|
+
readonly summaryOperations?: {
|
|
33218
|
+
object: string;
|
|
33219
|
+
field: string;
|
|
33220
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33221
|
+
relationshipField?: string | undefined;
|
|
33222
|
+
} | undefined;
|
|
33223
|
+
readonly language?: string | undefined;
|
|
33224
|
+
readonly step?: number | undefined;
|
|
33225
|
+
readonly currencyConfig?: {
|
|
33226
|
+
precision: number;
|
|
33227
|
+
currencyMode: "fixed" | "dynamic";
|
|
33228
|
+
defaultCurrency: string;
|
|
33229
|
+
} | undefined;
|
|
33230
|
+
readonly vectorConfig?: {
|
|
33231
|
+
dimensions: number;
|
|
33232
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33233
|
+
normalized: boolean;
|
|
33234
|
+
indexed: boolean;
|
|
33235
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33236
|
+
} | undefined;
|
|
33237
|
+
readonly fileAttachmentConfig?: {
|
|
33238
|
+
virusScan: boolean;
|
|
33239
|
+
virusScanOnUpload: boolean;
|
|
33240
|
+
quarantineOnThreat: boolean;
|
|
33241
|
+
allowMultiple: boolean;
|
|
33242
|
+
allowReplace: boolean;
|
|
33243
|
+
allowDelete: boolean;
|
|
33244
|
+
requireUpload: boolean;
|
|
33245
|
+
extractMetadata: boolean;
|
|
33246
|
+
extractText: boolean;
|
|
33247
|
+
versioningEnabled: boolean;
|
|
33248
|
+
publicRead: boolean;
|
|
33249
|
+
presignedUrlExpiry: number;
|
|
33250
|
+
minSize?: number | undefined;
|
|
33251
|
+
maxSize?: number | undefined;
|
|
33252
|
+
allowedTypes?: string[] | undefined;
|
|
33253
|
+
blockedTypes?: string[] | undefined;
|
|
33254
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33255
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33256
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33257
|
+
storageProvider?: string | undefined;
|
|
33258
|
+
storageBucket?: string | undefined;
|
|
33259
|
+
storagePrefix?: string | undefined;
|
|
33260
|
+
imageValidation?: {
|
|
33261
|
+
generateThumbnails: boolean;
|
|
33262
|
+
preserveMetadata: boolean;
|
|
33263
|
+
autoRotate: boolean;
|
|
33264
|
+
minWidth?: number | undefined;
|
|
33265
|
+
maxWidth?: number | undefined;
|
|
33266
|
+
minHeight?: number | undefined;
|
|
33267
|
+
maxHeight?: number | undefined;
|
|
33268
|
+
aspectRatio?: string | undefined;
|
|
33269
|
+
thumbnailSizes?: {
|
|
33270
|
+
name: string;
|
|
33271
|
+
width: number;
|
|
33272
|
+
height: number;
|
|
33273
|
+
crop: boolean;
|
|
33274
|
+
}[] | undefined;
|
|
33275
|
+
} | undefined;
|
|
33276
|
+
maxVersions?: number | undefined;
|
|
33277
|
+
} | undefined;
|
|
33278
|
+
readonly trackHistory?: boolean | undefined;
|
|
33279
|
+
readonly visibleWhen?: {
|
|
33280
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33281
|
+
source?: string | undefined;
|
|
33282
|
+
ast?: unknown;
|
|
33283
|
+
meta?: {
|
|
33284
|
+
rationale?: string | undefined;
|
|
33285
|
+
generatedBy?: string | undefined;
|
|
33286
|
+
} | undefined;
|
|
33287
|
+
} | undefined;
|
|
33288
|
+
readonly readonlyWhen?: {
|
|
33289
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33290
|
+
source?: string | undefined;
|
|
33291
|
+
ast?: unknown;
|
|
33292
|
+
meta?: {
|
|
33293
|
+
rationale?: string | undefined;
|
|
33294
|
+
generatedBy?: string | undefined;
|
|
33295
|
+
} | undefined;
|
|
33296
|
+
} | undefined;
|
|
33297
|
+
readonly requiredWhen?: {
|
|
33298
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33299
|
+
source?: string | undefined;
|
|
33300
|
+
ast?: unknown;
|
|
33301
|
+
meta?: {
|
|
33302
|
+
rationale?: string | undefined;
|
|
33303
|
+
generatedBy?: string | undefined;
|
|
33304
|
+
} | undefined;
|
|
33305
|
+
} | undefined;
|
|
33306
|
+
readonly conditionalRequired?: {
|
|
33307
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33308
|
+
source?: string | undefined;
|
|
33309
|
+
ast?: unknown;
|
|
33310
|
+
meta?: {
|
|
33311
|
+
rationale?: string | undefined;
|
|
33312
|
+
generatedBy?: string | undefined;
|
|
33313
|
+
} | undefined;
|
|
33314
|
+
} | undefined;
|
|
33315
|
+
readonly sortable?: boolean | undefined;
|
|
33316
|
+
readonly inlineHelpText?: string | undefined;
|
|
33317
|
+
readonly autonumberFormat?: string | undefined;
|
|
33318
|
+
readonly index?: boolean | undefined;
|
|
33319
|
+
readonly type: "datetime";
|
|
33320
|
+
};
|
|
33321
|
+
readonly started_at: {
|
|
33322
|
+
readonly readonly?: boolean | undefined;
|
|
33323
|
+
readonly format?: string | undefined;
|
|
33324
|
+
readonly options?: {
|
|
33325
|
+
label: string;
|
|
33326
|
+
value: string;
|
|
33327
|
+
color?: string | undefined;
|
|
33328
|
+
default?: boolean | undefined;
|
|
33329
|
+
}[] | undefined;
|
|
33330
|
+
readonly description?: string | undefined;
|
|
33331
|
+
readonly label?: string | undefined;
|
|
33332
|
+
readonly name?: string | undefined;
|
|
33333
|
+
readonly precision?: number | undefined;
|
|
33334
|
+
readonly required?: boolean | undefined;
|
|
33335
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
33336
|
+
readonly multiple?: boolean | undefined;
|
|
33337
|
+
readonly dependencies?: string[] | undefined;
|
|
33338
|
+
readonly externalId?: boolean | undefined;
|
|
33339
|
+
readonly defaultValue?: unknown;
|
|
33340
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33341
|
+
readonly group?: string | undefined;
|
|
33342
|
+
readonly hidden?: boolean | undefined;
|
|
33343
|
+
readonly system?: boolean | undefined;
|
|
33344
|
+
readonly min?: number | undefined;
|
|
33345
|
+
readonly max?: number | undefined;
|
|
33346
|
+
readonly dimensions?: number | undefined;
|
|
33347
|
+
readonly columnName?: string | undefined;
|
|
33348
|
+
readonly searchable?: boolean | undefined;
|
|
33349
|
+
readonly unique?: boolean | undefined;
|
|
33350
|
+
readonly maxLength?: number | undefined;
|
|
33351
|
+
readonly minLength?: number | undefined;
|
|
33352
|
+
readonly scale?: number | undefined;
|
|
33353
|
+
readonly reference?: string | undefined;
|
|
33354
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33355
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33356
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33357
|
+
readonly inlineTitle?: string | undefined;
|
|
33358
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33359
|
+
readonly inlineAmountField?: string | undefined;
|
|
33360
|
+
readonly relatedList?: boolean | undefined;
|
|
33361
|
+
readonly relatedListTitle?: string | undefined;
|
|
33362
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33363
|
+
readonly displayField?: string | undefined;
|
|
33364
|
+
readonly descriptionField?: string | undefined;
|
|
33365
|
+
readonly lookupColumns?: (string | {
|
|
33366
|
+
field: string;
|
|
33367
|
+
label?: string | undefined;
|
|
33368
|
+
width?: string | undefined;
|
|
33369
|
+
type?: string | undefined;
|
|
33370
|
+
})[] | undefined;
|
|
33371
|
+
readonly lookupPageSize?: number | undefined;
|
|
33372
|
+
readonly lookupFilters?: {
|
|
33373
|
+
field: string;
|
|
33374
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33375
|
+
value: any;
|
|
33376
|
+
}[] | undefined;
|
|
33377
|
+
readonly dependsOn?: (string | {
|
|
33378
|
+
field: string;
|
|
33379
|
+
param?: string | undefined;
|
|
33380
|
+
})[] | undefined;
|
|
33381
|
+
readonly allowCreate?: boolean | undefined;
|
|
33382
|
+
readonly expression?: {
|
|
33383
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33384
|
+
source?: string | undefined;
|
|
33385
|
+
ast?: unknown;
|
|
33386
|
+
meta?: {
|
|
33387
|
+
rationale?: string | undefined;
|
|
33388
|
+
generatedBy?: string | undefined;
|
|
33389
|
+
} | undefined;
|
|
33390
|
+
} | undefined;
|
|
33391
|
+
readonly summaryOperations?: {
|
|
33392
|
+
object: string;
|
|
33393
|
+
field: string;
|
|
33394
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33395
|
+
relationshipField?: string | undefined;
|
|
33396
|
+
} | undefined;
|
|
33397
|
+
readonly language?: string | undefined;
|
|
33398
|
+
readonly step?: number | undefined;
|
|
33399
|
+
readonly currencyConfig?: {
|
|
33400
|
+
precision: number;
|
|
33401
|
+
currencyMode: "fixed" | "dynamic";
|
|
33402
|
+
defaultCurrency: string;
|
|
33403
|
+
} | undefined;
|
|
33404
|
+
readonly vectorConfig?: {
|
|
33405
|
+
dimensions: number;
|
|
33406
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33407
|
+
normalized: boolean;
|
|
33408
|
+
indexed: boolean;
|
|
33409
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33410
|
+
} | undefined;
|
|
33411
|
+
readonly fileAttachmentConfig?: {
|
|
33412
|
+
virusScan: boolean;
|
|
33413
|
+
virusScanOnUpload: boolean;
|
|
33414
|
+
quarantineOnThreat: boolean;
|
|
33415
|
+
allowMultiple: boolean;
|
|
33416
|
+
allowReplace: boolean;
|
|
33417
|
+
allowDelete: boolean;
|
|
33418
|
+
requireUpload: boolean;
|
|
33419
|
+
extractMetadata: boolean;
|
|
33420
|
+
extractText: boolean;
|
|
33421
|
+
versioningEnabled: boolean;
|
|
33422
|
+
publicRead: boolean;
|
|
33423
|
+
presignedUrlExpiry: number;
|
|
33424
|
+
minSize?: number | undefined;
|
|
33425
|
+
maxSize?: number | undefined;
|
|
33426
|
+
allowedTypes?: string[] | undefined;
|
|
33427
|
+
blockedTypes?: string[] | undefined;
|
|
33428
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33429
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33430
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33431
|
+
storageProvider?: string | undefined;
|
|
33432
|
+
storageBucket?: string | undefined;
|
|
33433
|
+
storagePrefix?: string | undefined;
|
|
33434
|
+
imageValidation?: {
|
|
33435
|
+
generateThumbnails: boolean;
|
|
33436
|
+
preserveMetadata: boolean;
|
|
33437
|
+
autoRotate: boolean;
|
|
33438
|
+
minWidth?: number | undefined;
|
|
33439
|
+
maxWidth?: number | undefined;
|
|
33440
|
+
minHeight?: number | undefined;
|
|
33441
|
+
maxHeight?: number | undefined;
|
|
33442
|
+
aspectRatio?: string | undefined;
|
|
33443
|
+
thumbnailSizes?: {
|
|
33444
|
+
name: string;
|
|
33445
|
+
width: number;
|
|
33446
|
+
height: number;
|
|
33447
|
+
crop: boolean;
|
|
33448
|
+
}[] | undefined;
|
|
33449
|
+
} | undefined;
|
|
33450
|
+
maxVersions?: number | undefined;
|
|
33451
|
+
} | undefined;
|
|
33452
|
+
readonly trackHistory?: boolean | undefined;
|
|
33453
|
+
readonly visibleWhen?: {
|
|
33454
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33455
|
+
source?: string | undefined;
|
|
33456
|
+
ast?: unknown;
|
|
33457
|
+
meta?: {
|
|
33458
|
+
rationale?: string | undefined;
|
|
33459
|
+
generatedBy?: string | undefined;
|
|
33460
|
+
} | undefined;
|
|
33461
|
+
} | undefined;
|
|
33462
|
+
readonly readonlyWhen?: {
|
|
33463
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33464
|
+
source?: string | undefined;
|
|
33465
|
+
ast?: unknown;
|
|
33466
|
+
meta?: {
|
|
33467
|
+
rationale?: string | undefined;
|
|
33468
|
+
generatedBy?: string | undefined;
|
|
33469
|
+
} | undefined;
|
|
33470
|
+
} | undefined;
|
|
33471
|
+
readonly requiredWhen?: {
|
|
33472
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33473
|
+
source?: string | undefined;
|
|
33474
|
+
ast?: unknown;
|
|
33475
|
+
meta?: {
|
|
33476
|
+
rationale?: string | undefined;
|
|
33477
|
+
generatedBy?: string | undefined;
|
|
33478
|
+
} | undefined;
|
|
33479
|
+
} | undefined;
|
|
33480
|
+
readonly conditionalRequired?: {
|
|
33481
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33482
|
+
source?: string | undefined;
|
|
33483
|
+
ast?: unknown;
|
|
33484
|
+
meta?: {
|
|
33485
|
+
rationale?: string | undefined;
|
|
33486
|
+
generatedBy?: string | undefined;
|
|
33487
|
+
} | undefined;
|
|
33488
|
+
} | undefined;
|
|
33489
|
+
readonly sortable?: boolean | undefined;
|
|
33490
|
+
readonly inlineHelpText?: string | undefined;
|
|
33491
|
+
readonly autonumberFormat?: string | undefined;
|
|
33492
|
+
readonly index?: boolean | undefined;
|
|
33493
|
+
readonly type: "datetime";
|
|
33494
|
+
};
|
|
33495
|
+
readonly completed_at: {
|
|
33496
|
+
readonly readonly?: boolean | undefined;
|
|
33497
|
+
readonly format?: string | undefined;
|
|
33498
|
+
readonly options?: {
|
|
33499
|
+
label: string;
|
|
33500
|
+
value: string;
|
|
33501
|
+
color?: string | undefined;
|
|
33502
|
+
default?: boolean | undefined;
|
|
33503
|
+
}[] | undefined;
|
|
33504
|
+
readonly description?: string | undefined;
|
|
33505
|
+
readonly label?: string | undefined;
|
|
33506
|
+
readonly name?: string | undefined;
|
|
33507
|
+
readonly precision?: number | undefined;
|
|
33508
|
+
readonly required?: boolean | undefined;
|
|
33509
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
33510
|
+
readonly multiple?: boolean | undefined;
|
|
33511
|
+
readonly dependencies?: string[] | undefined;
|
|
33512
|
+
readonly externalId?: boolean | undefined;
|
|
33513
|
+
readonly defaultValue?: unknown;
|
|
33514
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33515
|
+
readonly group?: string | undefined;
|
|
33516
|
+
readonly hidden?: boolean | undefined;
|
|
33517
|
+
readonly system?: boolean | undefined;
|
|
33518
|
+
readonly min?: number | undefined;
|
|
33519
|
+
readonly max?: number | undefined;
|
|
33520
|
+
readonly dimensions?: number | undefined;
|
|
33521
|
+
readonly columnName?: string | undefined;
|
|
33522
|
+
readonly searchable?: boolean | undefined;
|
|
33523
|
+
readonly unique?: boolean | undefined;
|
|
33524
|
+
readonly maxLength?: number | undefined;
|
|
33525
|
+
readonly minLength?: number | undefined;
|
|
33526
|
+
readonly scale?: number | undefined;
|
|
33527
|
+
readonly reference?: string | undefined;
|
|
33528
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33529
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33530
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33531
|
+
readonly inlineTitle?: string | undefined;
|
|
33532
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33533
|
+
readonly inlineAmountField?: string | undefined;
|
|
33534
|
+
readonly relatedList?: boolean | undefined;
|
|
33535
|
+
readonly relatedListTitle?: string | undefined;
|
|
33536
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33537
|
+
readonly displayField?: string | undefined;
|
|
33538
|
+
readonly descriptionField?: string | undefined;
|
|
33539
|
+
readonly lookupColumns?: (string | {
|
|
33540
|
+
field: string;
|
|
33541
|
+
label?: string | undefined;
|
|
33542
|
+
width?: string | undefined;
|
|
33543
|
+
type?: string | undefined;
|
|
33544
|
+
})[] | undefined;
|
|
33545
|
+
readonly lookupPageSize?: number | undefined;
|
|
33546
|
+
readonly lookupFilters?: {
|
|
33547
|
+
field: string;
|
|
33548
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33549
|
+
value: any;
|
|
33550
|
+
}[] | undefined;
|
|
33551
|
+
readonly dependsOn?: (string | {
|
|
33552
|
+
field: string;
|
|
33553
|
+
param?: string | undefined;
|
|
33554
|
+
})[] | undefined;
|
|
33555
|
+
readonly allowCreate?: boolean | undefined;
|
|
33556
|
+
readonly expression?: {
|
|
33557
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33558
|
+
source?: string | undefined;
|
|
33559
|
+
ast?: unknown;
|
|
33560
|
+
meta?: {
|
|
33561
|
+
rationale?: string | undefined;
|
|
33562
|
+
generatedBy?: string | undefined;
|
|
33563
|
+
} | undefined;
|
|
33564
|
+
} | undefined;
|
|
33565
|
+
readonly summaryOperations?: {
|
|
33566
|
+
object: string;
|
|
33567
|
+
field: string;
|
|
33568
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33569
|
+
relationshipField?: string | undefined;
|
|
33570
|
+
} | undefined;
|
|
33571
|
+
readonly language?: string | undefined;
|
|
33572
|
+
readonly step?: number | undefined;
|
|
33573
|
+
readonly currencyConfig?: {
|
|
33574
|
+
precision: number;
|
|
33575
|
+
currencyMode: "fixed" | "dynamic";
|
|
33576
|
+
defaultCurrency: string;
|
|
33577
|
+
} | undefined;
|
|
33578
|
+
readonly vectorConfig?: {
|
|
33579
|
+
dimensions: number;
|
|
33580
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33581
|
+
normalized: boolean;
|
|
33582
|
+
indexed: boolean;
|
|
33583
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33584
|
+
} | undefined;
|
|
33585
|
+
readonly fileAttachmentConfig?: {
|
|
33586
|
+
virusScan: boolean;
|
|
33587
|
+
virusScanOnUpload: boolean;
|
|
33588
|
+
quarantineOnThreat: boolean;
|
|
33589
|
+
allowMultiple: boolean;
|
|
33590
|
+
allowReplace: boolean;
|
|
33591
|
+
allowDelete: boolean;
|
|
33592
|
+
requireUpload: boolean;
|
|
33593
|
+
extractMetadata: boolean;
|
|
33594
|
+
extractText: boolean;
|
|
33595
|
+
versioningEnabled: boolean;
|
|
33596
|
+
publicRead: boolean;
|
|
33597
|
+
presignedUrlExpiry: number;
|
|
33598
|
+
minSize?: number | undefined;
|
|
33599
|
+
maxSize?: number | undefined;
|
|
33600
|
+
allowedTypes?: string[] | undefined;
|
|
33601
|
+
blockedTypes?: string[] | undefined;
|
|
33602
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33603
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33604
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33605
|
+
storageProvider?: string | undefined;
|
|
33606
|
+
storageBucket?: string | undefined;
|
|
33607
|
+
storagePrefix?: string | undefined;
|
|
33608
|
+
imageValidation?: {
|
|
33609
|
+
generateThumbnails: boolean;
|
|
33610
|
+
preserveMetadata: boolean;
|
|
33611
|
+
autoRotate: boolean;
|
|
33612
|
+
minWidth?: number | undefined;
|
|
33613
|
+
maxWidth?: number | undefined;
|
|
33614
|
+
minHeight?: number | undefined;
|
|
33615
|
+
maxHeight?: number | undefined;
|
|
33616
|
+
aspectRatio?: string | undefined;
|
|
33617
|
+
thumbnailSizes?: {
|
|
33618
|
+
name: string;
|
|
33619
|
+
width: number;
|
|
33620
|
+
height: number;
|
|
33621
|
+
crop: boolean;
|
|
33622
|
+
}[] | undefined;
|
|
33623
|
+
} | undefined;
|
|
33624
|
+
maxVersions?: number | undefined;
|
|
33625
|
+
} | undefined;
|
|
33626
|
+
readonly trackHistory?: boolean | undefined;
|
|
33627
|
+
readonly visibleWhen?: {
|
|
33628
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33629
|
+
source?: string | undefined;
|
|
33630
|
+
ast?: unknown;
|
|
33631
|
+
meta?: {
|
|
33632
|
+
rationale?: string | undefined;
|
|
33633
|
+
generatedBy?: string | undefined;
|
|
33634
|
+
} | undefined;
|
|
33635
|
+
} | undefined;
|
|
33636
|
+
readonly readonlyWhen?: {
|
|
33637
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33638
|
+
source?: string | undefined;
|
|
33639
|
+
ast?: unknown;
|
|
33640
|
+
meta?: {
|
|
33641
|
+
rationale?: string | undefined;
|
|
33642
|
+
generatedBy?: string | undefined;
|
|
33643
|
+
} | undefined;
|
|
33644
|
+
} | undefined;
|
|
33645
|
+
readonly requiredWhen?: {
|
|
33646
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33647
|
+
source?: string | undefined;
|
|
33648
|
+
ast?: unknown;
|
|
33649
|
+
meta?: {
|
|
33650
|
+
rationale?: string | undefined;
|
|
33651
|
+
generatedBy?: string | undefined;
|
|
33652
|
+
} | undefined;
|
|
33653
|
+
} | undefined;
|
|
33654
|
+
readonly conditionalRequired?: {
|
|
33655
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33656
|
+
source?: string | undefined;
|
|
33657
|
+
ast?: unknown;
|
|
33658
|
+
meta?: {
|
|
33659
|
+
rationale?: string | undefined;
|
|
33660
|
+
generatedBy?: string | undefined;
|
|
33661
|
+
} | undefined;
|
|
33662
|
+
} | undefined;
|
|
33663
|
+
readonly sortable?: boolean | undefined;
|
|
33664
|
+
readonly inlineHelpText?: string | undefined;
|
|
33665
|
+
readonly autonumberFormat?: string | undefined;
|
|
33666
|
+
readonly index?: boolean | undefined;
|
|
33667
|
+
readonly type: "datetime";
|
|
33668
|
+
};
|
|
33669
|
+
readonly created_by: {
|
|
33670
|
+
readonly readonly?: boolean | undefined;
|
|
33671
|
+
readonly format?: string | undefined;
|
|
33672
|
+
readonly options?: {
|
|
33673
|
+
label: string;
|
|
33674
|
+
value: string;
|
|
33675
|
+
color?: string | undefined;
|
|
33676
|
+
default?: boolean | undefined;
|
|
33677
|
+
}[] | undefined;
|
|
33678
|
+
readonly description?: string | undefined;
|
|
33679
|
+
readonly label?: string | undefined;
|
|
33680
|
+
readonly name?: string | undefined;
|
|
33681
|
+
readonly precision?: number | undefined;
|
|
33682
|
+
readonly required?: boolean | undefined;
|
|
33683
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
33684
|
+
readonly multiple?: boolean | undefined;
|
|
33685
|
+
readonly dependencies?: string[] | undefined;
|
|
33686
|
+
readonly externalId?: boolean | undefined;
|
|
33687
|
+
readonly defaultValue?: unknown;
|
|
33688
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33689
|
+
readonly group?: string | undefined;
|
|
33690
|
+
readonly hidden?: boolean | undefined;
|
|
33691
|
+
readonly system?: boolean | undefined;
|
|
33692
|
+
readonly min?: number | undefined;
|
|
33693
|
+
readonly max?: number | undefined;
|
|
33694
|
+
readonly dimensions?: number | undefined;
|
|
33695
|
+
readonly columnName?: string | undefined;
|
|
33696
|
+
readonly searchable?: boolean | undefined;
|
|
33697
|
+
readonly unique?: boolean | undefined;
|
|
33698
|
+
readonly maxLength?: number | undefined;
|
|
33699
|
+
readonly minLength?: number | undefined;
|
|
33700
|
+
readonly scale?: number | undefined;
|
|
33701
|
+
readonly reference?: string | undefined;
|
|
33702
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33703
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33704
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33705
|
+
readonly inlineTitle?: string | undefined;
|
|
33706
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33707
|
+
readonly inlineAmountField?: string | undefined;
|
|
33708
|
+
readonly relatedList?: boolean | undefined;
|
|
33709
|
+
readonly relatedListTitle?: string | undefined;
|
|
33710
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33711
|
+
readonly displayField?: string | undefined;
|
|
33712
|
+
readonly descriptionField?: string | undefined;
|
|
33713
|
+
readonly lookupColumns?: (string | {
|
|
33714
|
+
field: string;
|
|
33715
|
+
label?: string | undefined;
|
|
33716
|
+
width?: string | undefined;
|
|
33717
|
+
type?: string | undefined;
|
|
33718
|
+
})[] | undefined;
|
|
33719
|
+
readonly lookupPageSize?: number | undefined;
|
|
33720
|
+
readonly lookupFilters?: {
|
|
33721
|
+
field: string;
|
|
33722
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33723
|
+
value: any;
|
|
33724
|
+
}[] | undefined;
|
|
33725
|
+
readonly dependsOn?: (string | {
|
|
33726
|
+
field: string;
|
|
33727
|
+
param?: string | undefined;
|
|
33728
|
+
})[] | undefined;
|
|
33729
|
+
readonly allowCreate?: boolean | undefined;
|
|
33730
|
+
readonly expression?: {
|
|
33731
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33732
|
+
source?: string | undefined;
|
|
33733
|
+
ast?: unknown;
|
|
33734
|
+
meta?: {
|
|
33735
|
+
rationale?: string | undefined;
|
|
33736
|
+
generatedBy?: string | undefined;
|
|
33737
|
+
} | undefined;
|
|
33738
|
+
} | undefined;
|
|
33739
|
+
readonly summaryOperations?: {
|
|
33740
|
+
object: string;
|
|
33741
|
+
field: string;
|
|
33742
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33743
|
+
relationshipField?: string | undefined;
|
|
33744
|
+
} | undefined;
|
|
33745
|
+
readonly language?: string | undefined;
|
|
33746
|
+
readonly step?: number | undefined;
|
|
33747
|
+
readonly currencyConfig?: {
|
|
33748
|
+
precision: number;
|
|
33749
|
+
currencyMode: "fixed" | "dynamic";
|
|
33750
|
+
defaultCurrency: string;
|
|
33751
|
+
} | undefined;
|
|
33752
|
+
readonly vectorConfig?: {
|
|
33753
|
+
dimensions: number;
|
|
33754
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33755
|
+
normalized: boolean;
|
|
33756
|
+
indexed: boolean;
|
|
33757
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33758
|
+
} | undefined;
|
|
33759
|
+
readonly fileAttachmentConfig?: {
|
|
33760
|
+
virusScan: boolean;
|
|
33761
|
+
virusScanOnUpload: boolean;
|
|
33762
|
+
quarantineOnThreat: boolean;
|
|
33763
|
+
allowMultiple: boolean;
|
|
33764
|
+
allowReplace: boolean;
|
|
33765
|
+
allowDelete: boolean;
|
|
33766
|
+
requireUpload: boolean;
|
|
33767
|
+
extractMetadata: boolean;
|
|
33768
|
+
extractText: boolean;
|
|
33769
|
+
versioningEnabled: boolean;
|
|
33770
|
+
publicRead: boolean;
|
|
33771
|
+
presignedUrlExpiry: number;
|
|
33772
|
+
minSize?: number | undefined;
|
|
33773
|
+
maxSize?: number | undefined;
|
|
33774
|
+
allowedTypes?: string[] | undefined;
|
|
33775
|
+
blockedTypes?: string[] | undefined;
|
|
33776
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33777
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33778
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33779
|
+
storageProvider?: string | undefined;
|
|
33780
|
+
storageBucket?: string | undefined;
|
|
33781
|
+
storagePrefix?: string | undefined;
|
|
33782
|
+
imageValidation?: {
|
|
33783
|
+
generateThumbnails: boolean;
|
|
33784
|
+
preserveMetadata: boolean;
|
|
33785
|
+
autoRotate: boolean;
|
|
33786
|
+
minWidth?: number | undefined;
|
|
33787
|
+
maxWidth?: number | undefined;
|
|
33788
|
+
minHeight?: number | undefined;
|
|
33789
|
+
maxHeight?: number | undefined;
|
|
33790
|
+
aspectRatio?: string | undefined;
|
|
33791
|
+
thumbnailSizes?: {
|
|
33792
|
+
name: string;
|
|
33793
|
+
width: number;
|
|
33794
|
+
height: number;
|
|
33795
|
+
crop: boolean;
|
|
33796
|
+
}[] | undefined;
|
|
33797
|
+
} | undefined;
|
|
33798
|
+
maxVersions?: number | undefined;
|
|
33799
|
+
} | undefined;
|
|
33800
|
+
readonly trackHistory?: boolean | undefined;
|
|
33801
|
+
readonly visibleWhen?: {
|
|
33802
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33803
|
+
source?: string | undefined;
|
|
33804
|
+
ast?: unknown;
|
|
33805
|
+
meta?: {
|
|
33806
|
+
rationale?: string | undefined;
|
|
33807
|
+
generatedBy?: string | undefined;
|
|
33808
|
+
} | undefined;
|
|
33809
|
+
} | undefined;
|
|
33810
|
+
readonly readonlyWhen?: {
|
|
33811
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33812
|
+
source?: string | undefined;
|
|
33813
|
+
ast?: unknown;
|
|
33814
|
+
meta?: {
|
|
33815
|
+
rationale?: string | undefined;
|
|
33816
|
+
generatedBy?: string | undefined;
|
|
33817
|
+
} | undefined;
|
|
33818
|
+
} | undefined;
|
|
33819
|
+
readonly requiredWhen?: {
|
|
33820
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33821
|
+
source?: string | undefined;
|
|
33822
|
+
ast?: unknown;
|
|
33823
|
+
meta?: {
|
|
33824
|
+
rationale?: string | undefined;
|
|
33825
|
+
generatedBy?: string | undefined;
|
|
33826
|
+
} | undefined;
|
|
33827
|
+
} | undefined;
|
|
33828
|
+
readonly conditionalRequired?: {
|
|
33829
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33830
|
+
source?: string | undefined;
|
|
33831
|
+
ast?: unknown;
|
|
33832
|
+
meta?: {
|
|
33833
|
+
rationale?: string | undefined;
|
|
33834
|
+
generatedBy?: string | undefined;
|
|
33835
|
+
} | undefined;
|
|
33836
|
+
} | undefined;
|
|
33837
|
+
readonly sortable?: boolean | undefined;
|
|
33838
|
+
readonly inlineHelpText?: string | undefined;
|
|
33839
|
+
readonly autonumberFormat?: string | undefined;
|
|
33840
|
+
readonly index?: boolean | undefined;
|
|
33841
|
+
readonly type: "text";
|
|
33842
|
+
};
|
|
33843
|
+
readonly created_at: {
|
|
33844
|
+
readonly readonly?: boolean | undefined;
|
|
33845
|
+
readonly format?: string | undefined;
|
|
33846
|
+
readonly options?: {
|
|
33847
|
+
label: string;
|
|
33848
|
+
value: string;
|
|
33849
|
+
color?: string | undefined;
|
|
33850
|
+
default?: boolean | undefined;
|
|
33851
|
+
}[] | undefined;
|
|
33852
|
+
readonly description?: string | undefined;
|
|
33853
|
+
readonly label?: string | undefined;
|
|
33854
|
+
readonly name?: string | undefined;
|
|
33855
|
+
readonly precision?: number | undefined;
|
|
33856
|
+
readonly required?: boolean | undefined;
|
|
33857
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
33858
|
+
readonly multiple?: boolean | undefined;
|
|
33859
|
+
readonly dependencies?: string[] | undefined;
|
|
33860
|
+
readonly externalId?: boolean | undefined;
|
|
33861
|
+
readonly defaultValue?: unknown;
|
|
33862
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33863
|
+
readonly group?: string | undefined;
|
|
33864
|
+
readonly hidden?: boolean | undefined;
|
|
33865
|
+
readonly system?: boolean | undefined;
|
|
33866
|
+
readonly min?: number | undefined;
|
|
33867
|
+
readonly max?: number | undefined;
|
|
33868
|
+
readonly dimensions?: number | undefined;
|
|
33869
|
+
readonly columnName?: string | undefined;
|
|
33870
|
+
readonly searchable?: boolean | undefined;
|
|
33871
|
+
readonly unique?: boolean | undefined;
|
|
33872
|
+
readonly maxLength?: number | undefined;
|
|
33873
|
+
readonly minLength?: number | undefined;
|
|
33874
|
+
readonly scale?: number | undefined;
|
|
33875
|
+
readonly reference?: string | undefined;
|
|
33876
|
+
readonly referenceFilters?: string[] | undefined;
|
|
33877
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
33878
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
33879
|
+
readonly inlineTitle?: string | undefined;
|
|
33880
|
+
readonly inlineColumns?: any[] | undefined;
|
|
33881
|
+
readonly inlineAmountField?: string | undefined;
|
|
33882
|
+
readonly relatedList?: boolean | undefined;
|
|
33883
|
+
readonly relatedListTitle?: string | undefined;
|
|
33884
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
33885
|
+
readonly displayField?: string | undefined;
|
|
33886
|
+
readonly descriptionField?: string | undefined;
|
|
33887
|
+
readonly lookupColumns?: (string | {
|
|
33888
|
+
field: string;
|
|
33889
|
+
label?: string | undefined;
|
|
33890
|
+
width?: string | undefined;
|
|
33891
|
+
type?: string | undefined;
|
|
33892
|
+
})[] | undefined;
|
|
33893
|
+
readonly lookupPageSize?: number | undefined;
|
|
33894
|
+
readonly lookupFilters?: {
|
|
33895
|
+
field: string;
|
|
33896
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
33897
|
+
value: any;
|
|
33898
|
+
}[] | undefined;
|
|
33899
|
+
readonly dependsOn?: (string | {
|
|
33900
|
+
field: string;
|
|
33901
|
+
param?: string | undefined;
|
|
33902
|
+
})[] | undefined;
|
|
33903
|
+
readonly allowCreate?: boolean | undefined;
|
|
33904
|
+
readonly expression?: {
|
|
33905
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33906
|
+
source?: string | undefined;
|
|
33907
|
+
ast?: unknown;
|
|
33908
|
+
meta?: {
|
|
33909
|
+
rationale?: string | undefined;
|
|
33910
|
+
generatedBy?: string | undefined;
|
|
33911
|
+
} | undefined;
|
|
33912
|
+
} | undefined;
|
|
33913
|
+
readonly summaryOperations?: {
|
|
33914
|
+
object: string;
|
|
33915
|
+
field: string;
|
|
33916
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
33917
|
+
relationshipField?: string | undefined;
|
|
33918
|
+
} | undefined;
|
|
33919
|
+
readonly language?: string | undefined;
|
|
33920
|
+
readonly step?: number | undefined;
|
|
33921
|
+
readonly currencyConfig?: {
|
|
33922
|
+
precision: number;
|
|
33923
|
+
currencyMode: "fixed" | "dynamic";
|
|
33924
|
+
defaultCurrency: string;
|
|
33925
|
+
} | undefined;
|
|
33926
|
+
readonly vectorConfig?: {
|
|
33927
|
+
dimensions: number;
|
|
33928
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
33929
|
+
normalized: boolean;
|
|
33930
|
+
indexed: boolean;
|
|
33931
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
33932
|
+
} | undefined;
|
|
33933
|
+
readonly fileAttachmentConfig?: {
|
|
33934
|
+
virusScan: boolean;
|
|
33935
|
+
virusScanOnUpload: boolean;
|
|
33936
|
+
quarantineOnThreat: boolean;
|
|
33937
|
+
allowMultiple: boolean;
|
|
33938
|
+
allowReplace: boolean;
|
|
33939
|
+
allowDelete: boolean;
|
|
33940
|
+
requireUpload: boolean;
|
|
33941
|
+
extractMetadata: boolean;
|
|
33942
|
+
extractText: boolean;
|
|
33943
|
+
versioningEnabled: boolean;
|
|
33944
|
+
publicRead: boolean;
|
|
33945
|
+
presignedUrlExpiry: number;
|
|
33946
|
+
minSize?: number | undefined;
|
|
33947
|
+
maxSize?: number | undefined;
|
|
33948
|
+
allowedTypes?: string[] | undefined;
|
|
33949
|
+
blockedTypes?: string[] | undefined;
|
|
33950
|
+
allowedMimeTypes?: string[] | undefined;
|
|
33951
|
+
blockedMimeTypes?: string[] | undefined;
|
|
33952
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
33953
|
+
storageProvider?: string | undefined;
|
|
33954
|
+
storageBucket?: string | undefined;
|
|
33955
|
+
storagePrefix?: string | undefined;
|
|
33956
|
+
imageValidation?: {
|
|
33957
|
+
generateThumbnails: boolean;
|
|
33958
|
+
preserveMetadata: boolean;
|
|
33959
|
+
autoRotate: boolean;
|
|
33960
|
+
minWidth?: number | undefined;
|
|
33961
|
+
maxWidth?: number | undefined;
|
|
33962
|
+
minHeight?: number | undefined;
|
|
33963
|
+
maxHeight?: number | undefined;
|
|
33964
|
+
aspectRatio?: string | undefined;
|
|
33965
|
+
thumbnailSizes?: {
|
|
33966
|
+
name: string;
|
|
33967
|
+
width: number;
|
|
33968
|
+
height: number;
|
|
33969
|
+
crop: boolean;
|
|
33970
|
+
}[] | undefined;
|
|
33971
|
+
} | undefined;
|
|
33972
|
+
maxVersions?: number | undefined;
|
|
33973
|
+
} | undefined;
|
|
33974
|
+
readonly trackHistory?: boolean | undefined;
|
|
33975
|
+
readonly visibleWhen?: {
|
|
33976
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33977
|
+
source?: string | undefined;
|
|
33978
|
+
ast?: unknown;
|
|
33979
|
+
meta?: {
|
|
33980
|
+
rationale?: string | undefined;
|
|
33981
|
+
generatedBy?: string | undefined;
|
|
33982
|
+
} | undefined;
|
|
33983
|
+
} | undefined;
|
|
33984
|
+
readonly readonlyWhen?: {
|
|
33985
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33986
|
+
source?: string | undefined;
|
|
33987
|
+
ast?: unknown;
|
|
33988
|
+
meta?: {
|
|
33989
|
+
rationale?: string | undefined;
|
|
33990
|
+
generatedBy?: string | undefined;
|
|
33991
|
+
} | undefined;
|
|
33992
|
+
} | undefined;
|
|
33993
|
+
readonly requiredWhen?: {
|
|
33994
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
33995
|
+
source?: string | undefined;
|
|
33996
|
+
ast?: unknown;
|
|
33997
|
+
meta?: {
|
|
33998
|
+
rationale?: string | undefined;
|
|
33999
|
+
generatedBy?: string | undefined;
|
|
34000
|
+
} | undefined;
|
|
34001
|
+
} | undefined;
|
|
34002
|
+
readonly conditionalRequired?: {
|
|
34003
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
34004
|
+
source?: string | undefined;
|
|
34005
|
+
ast?: unknown;
|
|
34006
|
+
meta?: {
|
|
34007
|
+
rationale?: string | undefined;
|
|
34008
|
+
generatedBy?: string | undefined;
|
|
34009
|
+
} | undefined;
|
|
34010
|
+
} | undefined;
|
|
34011
|
+
readonly sortable?: boolean | undefined;
|
|
34012
|
+
readonly inlineHelpText?: string | undefined;
|
|
34013
|
+
readonly autonumberFormat?: string | undefined;
|
|
34014
|
+
readonly index?: boolean | undefined;
|
|
34015
|
+
readonly type: "datetime";
|
|
34016
|
+
};
|
|
34017
|
+
};
|
|
34018
|
+
readonly indexes: [{
|
|
34019
|
+
readonly fields: ["object_name", "created_at"];
|
|
34020
|
+
}, {
|
|
34021
|
+
readonly fields: ["status", "created_at"];
|
|
34022
|
+
}, {
|
|
34023
|
+
readonly fields: ["created_by", "created_at"];
|
|
34024
|
+
}];
|
|
34025
|
+
}, "fields">;
|
|
34026
|
+
|
|
34027
|
+
export { SysAttachment, SysEmail, SysEmailTemplate, SysImportJob, SysJob, SysJobQueue, SysJobRun, SysNotification, SysReportSchedule, SysSavedReport };
|