@objectstack/plugin-webhooks 15.1.1 → 16.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +20 -20
- package/CHANGELOG.md +51 -0
- package/dist/{chunk-I63ISOGO.cjs → chunk-PTMJ5BLL.cjs} +4 -4
- package/dist/chunk-PTMJ5BLL.cjs.map +1 -0
- package/dist/{chunk-YQG6SUP3.js → chunk-RBCYKJVL.js} +4 -4
- package/dist/chunk-RBCYKJVL.js.map +1 -0
- package/dist/index.cjs +35 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12 -5
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +145 -830
- package/dist/schema.d.ts +145 -830
- package/dist/schema.js +1 -1
- package/dist/{translations-AV47AVPV.js → translations-EPJYANXJ.js} +9 -9
- package/dist/translations-EPJYANXJ.js.map +1 -0
- package/dist/{translations-OAKKANSP.cjs → translations-L2JAQDJB.cjs} +9 -9
- package/dist/translations-L2JAQDJB.cjs.map +1 -0
- package/package.json +4 -4
- package/src/auto-enqueuer.test.ts +37 -0
- package/src/auto-enqueuer.ts +24 -10
- package/src/sys-webhook.object.ts +3 -3
- package/src/translations/en.objects.generated.ts +2 -2
- package/src/translations/es-ES.objects.generated.ts +2 -2
- package/src/translations/ja-JP.objects.generated.ts +2 -2
- package/src/translations/zh-CN.objects.generated.ts +2 -2
- package/dist/chunk-I63ISOGO.cjs.map +0 -1
- package/dist/chunk-YQG6SUP3.js.map +0 -1
- package/dist/translations-AV47AVPV.js.map +0 -1
- package/dist/translations-OAKKANSP.cjs.map +0 -1
package/dist/schema.d.ts
CHANGED
|
@@ -30,12 +30,10 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
|
30
30
|
*/
|
|
31
31
|
declare const SysWebhook: Omit<{
|
|
32
32
|
name: string;
|
|
33
|
-
active: boolean;
|
|
34
33
|
isSystem: boolean;
|
|
35
|
-
abstract: boolean;
|
|
36
34
|
datasource: string;
|
|
37
35
|
fields: Record<string, {
|
|
38
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "
|
|
36
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "time" | "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";
|
|
39
37
|
required: boolean;
|
|
40
38
|
searchable: boolean;
|
|
41
39
|
multiple: boolean;
|
|
@@ -44,13 +42,11 @@ declare const SysWebhook: Omit<{
|
|
|
44
42
|
hidden: boolean;
|
|
45
43
|
readonly: boolean;
|
|
46
44
|
sortable: boolean;
|
|
47
|
-
index: boolean;
|
|
48
45
|
externalId: boolean;
|
|
49
46
|
name?: string | undefined;
|
|
50
47
|
label?: string | undefined;
|
|
51
48
|
description?: string | undefined;
|
|
52
49
|
format?: string | undefined;
|
|
53
|
-
columnName?: string | undefined;
|
|
54
50
|
defaultValue?: unknown;
|
|
55
51
|
maxLength?: number | undefined;
|
|
56
52
|
minLength?: number | undefined;
|
|
@@ -64,7 +60,7 @@ declare const SysWebhook: Omit<{
|
|
|
64
60
|
color?: string | undefined;
|
|
65
61
|
default?: boolean | undefined;
|
|
66
62
|
visibleWhen?: {
|
|
67
|
-
dialect: "cel" | "
|
|
63
|
+
dialect: "cel" | "cron" | "template";
|
|
68
64
|
source?: string | undefined;
|
|
69
65
|
ast?: unknown;
|
|
70
66
|
meta?: {
|
|
@@ -72,7 +68,7 @@ declare const SysWebhook: Omit<{
|
|
|
72
68
|
generatedBy?: string | undefined;
|
|
73
69
|
} | undefined;
|
|
74
70
|
} | {
|
|
75
|
-
dialect: "cel" | "
|
|
71
|
+
dialect: "cel" | "cron" | "template";
|
|
76
72
|
source?: string | undefined;
|
|
77
73
|
ast?: unknown;
|
|
78
74
|
meta?: {
|
|
@@ -82,7 +78,6 @@ declare const SysWebhook: Omit<{
|
|
|
82
78
|
} | undefined;
|
|
83
79
|
}[] | undefined;
|
|
84
80
|
reference?: string | undefined;
|
|
85
|
-
referenceFilters?: string[] | undefined;
|
|
86
81
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
87
82
|
inlineTitle?: string | undefined;
|
|
88
83
|
inlineColumns?: any[] | undefined;
|
|
@@ -101,7 +96,7 @@ declare const SysWebhook: Omit<{
|
|
|
101
96
|
lookupPageSize?: number | undefined;
|
|
102
97
|
lookupFilters?: {
|
|
103
98
|
field: string;
|
|
104
|
-
operator: "in" | "eq" | "ne" | "
|
|
99
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
105
100
|
value: any;
|
|
106
101
|
}[] | undefined;
|
|
107
102
|
dependsOn?: (string | {
|
|
@@ -110,7 +105,7 @@ declare const SysWebhook: Omit<{
|
|
|
110
105
|
})[] | undefined;
|
|
111
106
|
allowCreate?: boolean | undefined;
|
|
112
107
|
expression?: {
|
|
113
|
-
dialect: "cel" | "
|
|
108
|
+
dialect: "cel" | "cron" | "template";
|
|
114
109
|
source?: string | undefined;
|
|
115
110
|
ast?: unknown;
|
|
116
111
|
meta?: {
|
|
@@ -118,7 +113,7 @@ declare const SysWebhook: Omit<{
|
|
|
118
113
|
generatedBy?: string | undefined;
|
|
119
114
|
} | undefined;
|
|
120
115
|
} | {
|
|
121
|
-
dialect: "cel" | "
|
|
116
|
+
dialect: "cel" | "cron" | "template";
|
|
122
117
|
source?: string | undefined;
|
|
123
118
|
ast?: unknown;
|
|
124
119
|
meta?: {
|
|
@@ -132,6 +127,7 @@ declare const SysWebhook: Omit<{
|
|
|
132
127
|
field: string;
|
|
133
128
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
134
129
|
relationshipField?: string | undefined;
|
|
130
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
135
131
|
} | undefined;
|
|
136
132
|
language?: string | undefined;
|
|
137
133
|
step?: number | undefined;
|
|
@@ -141,59 +137,10 @@ declare const SysWebhook: Omit<{
|
|
|
141
137
|
defaultCurrency: string;
|
|
142
138
|
} | undefined;
|
|
143
139
|
dimensions?: number | undefined;
|
|
144
|
-
vectorConfig?: {
|
|
145
|
-
dimensions: number;
|
|
146
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
147
|
-
normalized: boolean;
|
|
148
|
-
indexed: boolean;
|
|
149
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
150
|
-
} | undefined;
|
|
151
|
-
fileAttachmentConfig?: {
|
|
152
|
-
virusScan: boolean;
|
|
153
|
-
virusScanOnUpload: boolean;
|
|
154
|
-
quarantineOnThreat: boolean;
|
|
155
|
-
allowMultiple: boolean;
|
|
156
|
-
allowReplace: boolean;
|
|
157
|
-
allowDelete: boolean;
|
|
158
|
-
requireUpload: boolean;
|
|
159
|
-
extractMetadata: boolean;
|
|
160
|
-
extractText: boolean;
|
|
161
|
-
versioningEnabled: boolean;
|
|
162
|
-
publicRead: boolean;
|
|
163
|
-
presignedUrlExpiry: number;
|
|
164
|
-
minSize?: number | undefined;
|
|
165
|
-
maxSize?: number | undefined;
|
|
166
|
-
allowedTypes?: string[] | undefined;
|
|
167
|
-
blockedTypes?: string[] | undefined;
|
|
168
|
-
allowedMimeTypes?: string[] | undefined;
|
|
169
|
-
blockedMimeTypes?: string[] | undefined;
|
|
170
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
171
|
-
storageProvider?: string | undefined;
|
|
172
|
-
storageBucket?: string | undefined;
|
|
173
|
-
storagePrefix?: string | undefined;
|
|
174
|
-
imageValidation?: {
|
|
175
|
-
generateThumbnails: boolean;
|
|
176
|
-
preserveMetadata: boolean;
|
|
177
|
-
autoRotate: boolean;
|
|
178
|
-
minWidth?: number | undefined;
|
|
179
|
-
maxWidth?: number | undefined;
|
|
180
|
-
minHeight?: number | undefined;
|
|
181
|
-
maxHeight?: number | undefined;
|
|
182
|
-
aspectRatio?: string | undefined;
|
|
183
|
-
thumbnailSizes?: {
|
|
184
|
-
name: string;
|
|
185
|
-
width: number;
|
|
186
|
-
height: number;
|
|
187
|
-
crop: boolean;
|
|
188
|
-
}[] | undefined;
|
|
189
|
-
} | undefined;
|
|
190
|
-
maxVersions?: number | undefined;
|
|
191
|
-
} | undefined;
|
|
192
140
|
trackHistory?: boolean | undefined;
|
|
193
|
-
dependencies?: string[] | undefined;
|
|
194
141
|
group?: string | undefined;
|
|
195
142
|
visibleWhen?: {
|
|
196
|
-
dialect: "cel" | "
|
|
143
|
+
dialect: "cel" | "cron" | "template";
|
|
197
144
|
source?: string | undefined;
|
|
198
145
|
ast?: unknown;
|
|
199
146
|
meta?: {
|
|
@@ -201,7 +148,7 @@ declare const SysWebhook: Omit<{
|
|
|
201
148
|
generatedBy?: string | undefined;
|
|
202
149
|
} | undefined;
|
|
203
150
|
} | {
|
|
204
|
-
dialect: "cel" | "
|
|
151
|
+
dialect: "cel" | "cron" | "template";
|
|
205
152
|
source?: string | undefined;
|
|
206
153
|
ast?: unknown;
|
|
207
154
|
meta?: {
|
|
@@ -210,7 +157,7 @@ declare const SysWebhook: Omit<{
|
|
|
210
157
|
} | undefined;
|
|
211
158
|
} | undefined;
|
|
212
159
|
readonlyWhen?: {
|
|
213
|
-
dialect: "cel" | "
|
|
160
|
+
dialect: "cel" | "cron" | "template";
|
|
214
161
|
source?: string | undefined;
|
|
215
162
|
ast?: unknown;
|
|
216
163
|
meta?: {
|
|
@@ -218,7 +165,7 @@ declare const SysWebhook: Omit<{
|
|
|
218
165
|
generatedBy?: string | undefined;
|
|
219
166
|
} | undefined;
|
|
220
167
|
} | {
|
|
221
|
-
dialect: "cel" | "
|
|
168
|
+
dialect: "cel" | "cron" | "template";
|
|
222
169
|
source?: string | undefined;
|
|
223
170
|
ast?: unknown;
|
|
224
171
|
meta?: {
|
|
@@ -227,7 +174,7 @@ declare const SysWebhook: Omit<{
|
|
|
227
174
|
} | undefined;
|
|
228
175
|
} | undefined;
|
|
229
176
|
requiredWhen?: {
|
|
230
|
-
dialect: "cel" | "
|
|
177
|
+
dialect: "cel" | "cron" | "template";
|
|
231
178
|
source?: string | undefined;
|
|
232
179
|
ast?: unknown;
|
|
233
180
|
meta?: {
|
|
@@ -235,7 +182,7 @@ declare const SysWebhook: Omit<{
|
|
|
235
182
|
generatedBy?: string | undefined;
|
|
236
183
|
} | undefined;
|
|
237
184
|
} | {
|
|
238
|
-
dialect: "cel" | "
|
|
185
|
+
dialect: "cel" | "cron" | "template";
|
|
239
186
|
source?: string | undefined;
|
|
240
187
|
ast?: unknown;
|
|
241
188
|
meta?: {
|
|
@@ -244,7 +191,7 @@ declare const SysWebhook: Omit<{
|
|
|
244
191
|
} | undefined;
|
|
245
192
|
} | undefined;
|
|
246
193
|
conditionalRequired?: {
|
|
247
|
-
dialect: "cel" | "
|
|
194
|
+
dialect: "cel" | "cron" | "template";
|
|
248
195
|
source?: string | undefined;
|
|
249
196
|
ast?: unknown;
|
|
250
197
|
meta?: {
|
|
@@ -252,7 +199,7 @@ declare const SysWebhook: Omit<{
|
|
|
252
199
|
generatedBy?: string | undefined;
|
|
253
200
|
} | undefined;
|
|
254
201
|
} | {
|
|
255
|
-
dialect: "cel" | "
|
|
202
|
+
dialect: "cel" | "cron" | "template";
|
|
256
203
|
source?: string | undefined;
|
|
257
204
|
ast?: unknown;
|
|
258
205
|
meta?: {
|
|
@@ -277,15 +224,15 @@ declare const SysWebhook: Omit<{
|
|
|
277
224
|
pluralLabel?: string | undefined;
|
|
278
225
|
description?: string | undefined;
|
|
279
226
|
icon?: string | undefined;
|
|
280
|
-
tags?: string[] | undefined;
|
|
281
227
|
managedBy?: "system" | "platform" | "config" | "append-only" | "better-auth" | undefined;
|
|
228
|
+
ownership?: "none" | "org" | "user" | undefined;
|
|
282
229
|
userActions?: {
|
|
283
230
|
create?: boolean | undefined;
|
|
284
231
|
import?: boolean | undefined;
|
|
285
232
|
edit?: boolean | {
|
|
286
233
|
enabled?: boolean | undefined;
|
|
287
234
|
visibleWhen?: {
|
|
288
|
-
dialect: "cel" | "
|
|
235
|
+
dialect: "cel" | "cron" | "template";
|
|
289
236
|
source?: string | undefined;
|
|
290
237
|
ast?: unknown;
|
|
291
238
|
meta?: {
|
|
@@ -293,7 +240,7 @@ declare const SysWebhook: Omit<{
|
|
|
293
240
|
generatedBy?: string | undefined;
|
|
294
241
|
} | undefined;
|
|
295
242
|
} | {
|
|
296
|
-
dialect: "cel" | "
|
|
243
|
+
dialect: "cel" | "cron" | "template";
|
|
297
244
|
source?: string | undefined;
|
|
298
245
|
ast?: unknown;
|
|
299
246
|
meta?: {
|
|
@@ -302,7 +249,7 @@ declare const SysWebhook: Omit<{
|
|
|
302
249
|
} | undefined;
|
|
303
250
|
} | undefined;
|
|
304
251
|
disabledWhen?: {
|
|
305
|
-
dialect: "cel" | "
|
|
252
|
+
dialect: "cel" | "cron" | "template";
|
|
306
253
|
source?: string | undefined;
|
|
307
254
|
ast?: unknown;
|
|
308
255
|
meta?: {
|
|
@@ -310,7 +257,7 @@ declare const SysWebhook: Omit<{
|
|
|
310
257
|
generatedBy?: string | undefined;
|
|
311
258
|
} | undefined;
|
|
312
259
|
} | {
|
|
313
|
-
dialect: "cel" | "
|
|
260
|
+
dialect: "cel" | "cron" | "template";
|
|
314
261
|
source?: string | undefined;
|
|
315
262
|
ast?: unknown;
|
|
316
263
|
meta?: {
|
|
@@ -322,7 +269,7 @@ declare const SysWebhook: Omit<{
|
|
|
322
269
|
delete?: boolean | {
|
|
323
270
|
enabled?: boolean | undefined;
|
|
324
271
|
visibleWhen?: {
|
|
325
|
-
dialect: "cel" | "
|
|
272
|
+
dialect: "cel" | "cron" | "template";
|
|
326
273
|
source?: string | undefined;
|
|
327
274
|
ast?: unknown;
|
|
328
275
|
meta?: {
|
|
@@ -330,7 +277,7 @@ declare const SysWebhook: Omit<{
|
|
|
330
277
|
generatedBy?: string | undefined;
|
|
331
278
|
} | undefined;
|
|
332
279
|
} | {
|
|
333
|
-
dialect: "cel" | "
|
|
280
|
+
dialect: "cel" | "cron" | "template";
|
|
334
281
|
source?: string | undefined;
|
|
335
282
|
ast?: unknown;
|
|
336
283
|
meta?: {
|
|
@@ -339,7 +286,7 @@ declare const SysWebhook: Omit<{
|
|
|
339
286
|
} | undefined;
|
|
340
287
|
} | undefined;
|
|
341
288
|
disabledWhen?: {
|
|
342
|
-
dialect: "cel" | "
|
|
289
|
+
dialect: "cel" | "cron" | "template";
|
|
343
290
|
source?: string | undefined;
|
|
344
291
|
ast?: unknown;
|
|
345
292
|
meta?: {
|
|
@@ -347,7 +294,7 @@ declare const SysWebhook: Omit<{
|
|
|
347
294
|
generatedBy?: string | undefined;
|
|
348
295
|
} | undefined;
|
|
349
296
|
} | {
|
|
350
|
-
dialect: "cel" | "
|
|
297
|
+
dialect: "cel" | "cron" | "template";
|
|
351
298
|
source?: string | undefined;
|
|
352
299
|
ast?: unknown;
|
|
353
300
|
meta?: {
|
|
@@ -360,7 +307,6 @@ declare const SysWebhook: Omit<{
|
|
|
360
307
|
} | undefined;
|
|
361
308
|
systemFields?: false | {
|
|
362
309
|
tenant?: boolean | undefined;
|
|
363
|
-
owner?: boolean | undefined;
|
|
364
310
|
audit?: boolean | undefined;
|
|
365
311
|
} | undefined;
|
|
366
312
|
external?: {
|
|
@@ -401,17 +347,6 @@ declare const SysWebhook: Omit<{
|
|
|
401
347
|
update?: string[] | undefined;
|
|
402
348
|
delete?: string[] | undefined;
|
|
403
349
|
} | undefined;
|
|
404
|
-
softDelete?: {
|
|
405
|
-
enabled: boolean;
|
|
406
|
-
field: string;
|
|
407
|
-
cascadeDelete: boolean;
|
|
408
|
-
} | undefined;
|
|
409
|
-
versioning?: {
|
|
410
|
-
enabled: boolean;
|
|
411
|
-
strategy: "snapshot" | "delta" | "event-sourcing";
|
|
412
|
-
versionField: string;
|
|
413
|
-
retentionDays?: number | undefined;
|
|
414
|
-
} | undefined;
|
|
415
350
|
lifecycle?: {
|
|
416
351
|
class: "record" | "audit" | "telemetry" | "transient" | "event";
|
|
417
352
|
retention?: {
|
|
@@ -445,13 +380,8 @@ declare const SysWebhook: Omit<{
|
|
|
445
380
|
}[] | undefined;
|
|
446
381
|
nameField?: string | undefined;
|
|
447
382
|
displayNameField?: string | undefined;
|
|
448
|
-
recordName?: {
|
|
449
|
-
type: "text" | "autonumber";
|
|
450
|
-
displayFormat?: string | undefined;
|
|
451
|
-
startNumber?: number | undefined;
|
|
452
|
-
} | undefined;
|
|
453
383
|
titleFormat?: {
|
|
454
|
-
dialect: "cel" | "
|
|
384
|
+
dialect: "cel" | "cron" | "template";
|
|
455
385
|
source?: string | undefined;
|
|
456
386
|
ast?: unknown;
|
|
457
387
|
meta?: {
|
|
@@ -459,7 +389,7 @@ declare const SysWebhook: Omit<{
|
|
|
459
389
|
generatedBy?: string | undefined;
|
|
460
390
|
} | undefined;
|
|
461
391
|
} | {
|
|
462
|
-
dialect: "cel" | "
|
|
392
|
+
dialect: "cel" | "cron" | "template";
|
|
463
393
|
source?: string | undefined;
|
|
464
394
|
ast?: unknown;
|
|
465
395
|
meta?: {
|
|
@@ -686,7 +616,7 @@ declare const SysWebhook: Omit<{
|
|
|
686
616
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
687
617
|
conditionalFormatting?: {
|
|
688
618
|
condition: {
|
|
689
|
-
dialect: "cel" | "
|
|
619
|
+
dialect: "cel" | "cron" | "template";
|
|
690
620
|
source?: string | undefined;
|
|
691
621
|
ast?: unknown;
|
|
692
622
|
meta?: {
|
|
@@ -694,7 +624,7 @@ declare const SysWebhook: Omit<{
|
|
|
694
624
|
generatedBy?: string | undefined;
|
|
695
625
|
} | undefined;
|
|
696
626
|
} | {
|
|
697
|
-
dialect: "cel" | "
|
|
627
|
+
dialect: "cel" | "cron" | "template";
|
|
698
628
|
source?: string | undefined;
|
|
699
629
|
ast?: unknown;
|
|
700
630
|
meta?: {
|
|
@@ -709,6 +639,7 @@ declare const SysWebhook: Omit<{
|
|
|
709
639
|
sort: boolean;
|
|
710
640
|
search: boolean;
|
|
711
641
|
filter: boolean;
|
|
642
|
+
refresh: boolean;
|
|
712
643
|
rowHeight: boolean;
|
|
713
644
|
addRecordForm: boolean;
|
|
714
645
|
editInline: boolean;
|
|
@@ -755,11 +686,6 @@ declare const SysWebhook: Omit<{
|
|
|
755
686
|
} | undefined;
|
|
756
687
|
}> | undefined;
|
|
757
688
|
searchableFields?: string[] | undefined;
|
|
758
|
-
search?: {
|
|
759
|
-
fields: string[];
|
|
760
|
-
displayFields?: string[] | undefined;
|
|
761
|
-
filters?: string[] | undefined;
|
|
762
|
-
} | undefined;
|
|
763
689
|
enable?: {
|
|
764
690
|
trackHistory: boolean;
|
|
765
691
|
searchable: boolean;
|
|
@@ -782,7 +708,6 @@ declare const SysWebhook: Omit<{
|
|
|
782
708
|
redactFields?: string[] | undefined;
|
|
783
709
|
eligibility?: string | undefined;
|
|
784
710
|
} | undefined;
|
|
785
|
-
keyPrefix?: string | undefined;
|
|
786
711
|
actions?: Omit<{
|
|
787
712
|
name: string;
|
|
788
713
|
label: string;
|
|
@@ -819,9 +744,12 @@ declare const SysWebhook: Omit<{
|
|
|
819
744
|
placeholder?: string | undefined;
|
|
820
745
|
helpText?: string | undefined;
|
|
821
746
|
defaultValue?: unknown;
|
|
747
|
+
multiple?: boolean | undefined;
|
|
748
|
+
accept?: string[] | undefined;
|
|
749
|
+
maxSize?: number | undefined;
|
|
822
750
|
defaultFromRow?: boolean | undefined;
|
|
823
751
|
visible?: {
|
|
824
|
-
dialect: "cel" | "
|
|
752
|
+
dialect: "cel" | "cron" | "template";
|
|
825
753
|
source?: string | undefined;
|
|
826
754
|
ast?: unknown;
|
|
827
755
|
meta?: {
|
|
@@ -831,7 +759,7 @@ declare const SysWebhook: Omit<{
|
|
|
831
759
|
} | undefined;
|
|
832
760
|
requiresFeature?: "twoFactor" | "passkeys" | "magicLink" | "organization" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
833
761
|
}, "requiresFeature">[] | undefined;
|
|
834
|
-
variant?: "link" | "
|
|
762
|
+
variant?: "link" | "secondary" | "primary" | "danger" | "ghost" | undefined;
|
|
835
763
|
order?: number | undefined;
|
|
836
764
|
confirmText?: string | undefined;
|
|
837
765
|
successMessage?: string | undefined;
|
|
@@ -849,7 +777,7 @@ declare const SysWebhook: Omit<{
|
|
|
849
777
|
}[] | undefined;
|
|
850
778
|
} | undefined;
|
|
851
779
|
visible?: {
|
|
852
|
-
dialect: "cel" | "
|
|
780
|
+
dialect: "cel" | "cron" | "template";
|
|
853
781
|
source?: string | undefined;
|
|
854
782
|
ast?: unknown;
|
|
855
783
|
meta?: {
|
|
@@ -859,7 +787,7 @@ declare const SysWebhook: Omit<{
|
|
|
859
787
|
} | undefined;
|
|
860
788
|
requiresFeature?: "twoFactor" | "passkeys" | "magicLink" | "organization" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
861
789
|
disabled?: boolean | {
|
|
862
|
-
dialect: "cel" | "
|
|
790
|
+
dialect: "cel" | "cron" | "template";
|
|
863
791
|
source?: string | undefined;
|
|
864
792
|
ast?: unknown;
|
|
865
793
|
meta?: {
|
|
@@ -873,7 +801,7 @@ declare const SysWebhook: Omit<{
|
|
|
873
801
|
ai?: {
|
|
874
802
|
exposed: boolean;
|
|
875
803
|
description?: string | undefined;
|
|
876
|
-
category?: "action" | "data" | "
|
|
804
|
+
category?: "action" | "data" | "analytics" | "flow" | "integration" | "vector_search" | "utility" | undefined;
|
|
877
805
|
paramHints?: Record<string, {
|
|
878
806
|
description?: string | undefined;
|
|
879
807
|
enum?: (string | number)[] | undefined;
|
|
@@ -892,7 +820,6 @@ declare const SysWebhook: Omit<{
|
|
|
892
820
|
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
893
821
|
opensInNewTab?: boolean | undefined;
|
|
894
822
|
newTabUrl?: string | undefined;
|
|
895
|
-
timeout?: number | undefined;
|
|
896
823
|
aria?: {
|
|
897
824
|
ariaLabel?: string | undefined;
|
|
898
825
|
ariaDescribedBy?: string | undefined;
|
|
@@ -1022,7 +949,7 @@ declare const SysWebhook: Omit<{
|
|
|
1022
949
|
color?: string | undefined;
|
|
1023
950
|
default?: boolean | undefined;
|
|
1024
951
|
visibleWhen?: {
|
|
1025
|
-
dialect: "cel" | "
|
|
952
|
+
dialect: "cel" | "cron" | "template";
|
|
1026
953
|
source?: string | undefined;
|
|
1027
954
|
ast?: unknown;
|
|
1028
955
|
meta?: {
|
|
@@ -1039,7 +966,6 @@ declare const SysWebhook: Omit<{
|
|
|
1039
966
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1040
967
|
readonly widget?: string | undefined;
|
|
1041
968
|
readonly multiple?: boolean | undefined;
|
|
1042
|
-
readonly dependencies?: string[] | undefined;
|
|
1043
969
|
readonly externalId?: boolean | undefined;
|
|
1044
970
|
readonly defaultValue?: unknown;
|
|
1045
971
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1049,7 +975,7 @@ declare const SysWebhook: Omit<{
|
|
|
1049
975
|
readonly min?: number | undefined;
|
|
1050
976
|
readonly max?: number | undefined;
|
|
1051
977
|
readonly visibleWhen?: {
|
|
1052
|
-
dialect: "cel" | "
|
|
978
|
+
dialect: "cel" | "cron" | "template";
|
|
1053
979
|
source?: string | undefined;
|
|
1054
980
|
ast?: unknown;
|
|
1055
981
|
meta?: {
|
|
@@ -1057,15 +983,12 @@ declare const SysWebhook: Omit<{
|
|
|
1057
983
|
generatedBy?: string | undefined;
|
|
1058
984
|
} | undefined;
|
|
1059
985
|
} | undefined;
|
|
1060
|
-
readonly dimensions?: number | undefined;
|
|
1061
|
-
readonly columnName?: string | undefined;
|
|
1062
986
|
readonly searchable?: boolean | undefined;
|
|
1063
987
|
readonly unique?: boolean | undefined;
|
|
1064
988
|
readonly maxLength?: number | undefined;
|
|
1065
989
|
readonly minLength?: number | undefined;
|
|
1066
990
|
readonly scale?: number | undefined;
|
|
1067
991
|
readonly reference?: string | undefined;
|
|
1068
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1069
992
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1070
993
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1071
994
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1085,7 +1008,7 @@ declare const SysWebhook: Omit<{
|
|
|
1085
1008
|
readonly lookupPageSize?: number | undefined;
|
|
1086
1009
|
readonly lookupFilters?: {
|
|
1087
1010
|
field: string;
|
|
1088
|
-
operator: "in" | "eq" | "ne" | "
|
|
1011
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
1089
1012
|
value: any;
|
|
1090
1013
|
}[] | undefined;
|
|
1091
1014
|
readonly dependsOn?: (string | {
|
|
@@ -1094,7 +1017,7 @@ declare const SysWebhook: Omit<{
|
|
|
1094
1017
|
})[] | undefined;
|
|
1095
1018
|
readonly allowCreate?: boolean | undefined;
|
|
1096
1019
|
readonly expression?: {
|
|
1097
|
-
dialect: "cel" | "
|
|
1020
|
+
dialect: "cel" | "cron" | "template";
|
|
1098
1021
|
source?: string | undefined;
|
|
1099
1022
|
ast?: unknown;
|
|
1100
1023
|
meta?: {
|
|
@@ -1107,6 +1030,7 @@ declare const SysWebhook: Omit<{
|
|
|
1107
1030
|
field: string;
|
|
1108
1031
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1109
1032
|
relationshipField?: string | undefined;
|
|
1033
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1110
1034
|
} | undefined;
|
|
1111
1035
|
readonly language?: string | undefined;
|
|
1112
1036
|
readonly step?: number | undefined;
|
|
@@ -1115,57 +1039,10 @@ declare const SysWebhook: Omit<{
|
|
|
1115
1039
|
currencyMode: "fixed" | "dynamic";
|
|
1116
1040
|
defaultCurrency: string;
|
|
1117
1041
|
} | undefined;
|
|
1118
|
-
readonly
|
|
1119
|
-
dimensions: number;
|
|
1120
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1121
|
-
normalized: boolean;
|
|
1122
|
-
indexed: boolean;
|
|
1123
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1124
|
-
} | undefined;
|
|
1125
|
-
readonly fileAttachmentConfig?: {
|
|
1126
|
-
virusScan: boolean;
|
|
1127
|
-
virusScanOnUpload: boolean;
|
|
1128
|
-
quarantineOnThreat: boolean;
|
|
1129
|
-
allowMultiple: boolean;
|
|
1130
|
-
allowReplace: boolean;
|
|
1131
|
-
allowDelete: boolean;
|
|
1132
|
-
requireUpload: boolean;
|
|
1133
|
-
extractMetadata: boolean;
|
|
1134
|
-
extractText: boolean;
|
|
1135
|
-
versioningEnabled: boolean;
|
|
1136
|
-
publicRead: boolean;
|
|
1137
|
-
presignedUrlExpiry: number;
|
|
1138
|
-
minSize?: number | undefined;
|
|
1139
|
-
maxSize?: number | undefined;
|
|
1140
|
-
allowedTypes?: string[] | undefined;
|
|
1141
|
-
blockedTypes?: string[] | undefined;
|
|
1142
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1143
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1144
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1145
|
-
storageProvider?: string | undefined;
|
|
1146
|
-
storageBucket?: string | undefined;
|
|
1147
|
-
storagePrefix?: string | undefined;
|
|
1148
|
-
imageValidation?: {
|
|
1149
|
-
generateThumbnails: boolean;
|
|
1150
|
-
preserveMetadata: boolean;
|
|
1151
|
-
autoRotate: boolean;
|
|
1152
|
-
minWidth?: number | undefined;
|
|
1153
|
-
maxWidth?: number | undefined;
|
|
1154
|
-
minHeight?: number | undefined;
|
|
1155
|
-
maxHeight?: number | undefined;
|
|
1156
|
-
aspectRatio?: string | undefined;
|
|
1157
|
-
thumbnailSizes?: {
|
|
1158
|
-
name: string;
|
|
1159
|
-
width: number;
|
|
1160
|
-
height: number;
|
|
1161
|
-
crop: boolean;
|
|
1162
|
-
}[] | undefined;
|
|
1163
|
-
} | undefined;
|
|
1164
|
-
maxVersions?: number | undefined;
|
|
1165
|
-
} | undefined;
|
|
1042
|
+
readonly dimensions?: number | undefined;
|
|
1166
1043
|
readonly trackHistory?: boolean | undefined;
|
|
1167
1044
|
readonly readonlyWhen?: {
|
|
1168
|
-
dialect: "cel" | "
|
|
1045
|
+
dialect: "cel" | "cron" | "template";
|
|
1169
1046
|
source?: string | undefined;
|
|
1170
1047
|
ast?: unknown;
|
|
1171
1048
|
meta?: {
|
|
@@ -1174,7 +1051,7 @@ declare const SysWebhook: Omit<{
|
|
|
1174
1051
|
} | undefined;
|
|
1175
1052
|
} | undefined;
|
|
1176
1053
|
readonly requiredWhen?: {
|
|
1177
|
-
dialect: "cel" | "
|
|
1054
|
+
dialect: "cel" | "cron" | "template";
|
|
1178
1055
|
source?: string | undefined;
|
|
1179
1056
|
ast?: unknown;
|
|
1180
1057
|
meta?: {
|
|
@@ -1183,7 +1060,7 @@ declare const SysWebhook: Omit<{
|
|
|
1183
1060
|
} | undefined;
|
|
1184
1061
|
} | undefined;
|
|
1185
1062
|
readonly conditionalRequired?: {
|
|
1186
|
-
dialect: "cel" | "
|
|
1063
|
+
dialect: "cel" | "cron" | "template";
|
|
1187
1064
|
source?: string | undefined;
|
|
1188
1065
|
ast?: unknown;
|
|
1189
1066
|
meta?: {
|
|
@@ -1194,7 +1071,6 @@ declare const SysWebhook: Omit<{
|
|
|
1194
1071
|
readonly sortable?: boolean | undefined;
|
|
1195
1072
|
readonly inlineHelpText?: string | undefined;
|
|
1196
1073
|
readonly autonumberFormat?: string | undefined;
|
|
1197
|
-
readonly index?: boolean | undefined;
|
|
1198
1074
|
readonly type: "text";
|
|
1199
1075
|
};
|
|
1200
1076
|
readonly name: {
|
|
@@ -1206,7 +1082,7 @@ declare const SysWebhook: Omit<{
|
|
|
1206
1082
|
color?: string | undefined;
|
|
1207
1083
|
default?: boolean | undefined;
|
|
1208
1084
|
visibleWhen?: {
|
|
1209
|
-
dialect: "cel" | "
|
|
1085
|
+
dialect: "cel" | "cron" | "template";
|
|
1210
1086
|
source?: string | undefined;
|
|
1211
1087
|
ast?: unknown;
|
|
1212
1088
|
meta?: {
|
|
@@ -1223,7 +1099,6 @@ declare const SysWebhook: Omit<{
|
|
|
1223
1099
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1224
1100
|
readonly widget?: string | undefined;
|
|
1225
1101
|
readonly multiple?: boolean | undefined;
|
|
1226
|
-
readonly dependencies?: string[] | undefined;
|
|
1227
1102
|
readonly externalId?: boolean | undefined;
|
|
1228
1103
|
readonly defaultValue?: unknown;
|
|
1229
1104
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1233,7 +1108,7 @@ declare const SysWebhook: Omit<{
|
|
|
1233
1108
|
readonly min?: number | undefined;
|
|
1234
1109
|
readonly max?: number | undefined;
|
|
1235
1110
|
readonly visibleWhen?: {
|
|
1236
|
-
dialect: "cel" | "
|
|
1111
|
+
dialect: "cel" | "cron" | "template";
|
|
1237
1112
|
source?: string | undefined;
|
|
1238
1113
|
ast?: unknown;
|
|
1239
1114
|
meta?: {
|
|
@@ -1241,15 +1116,12 @@ declare const SysWebhook: Omit<{
|
|
|
1241
1116
|
generatedBy?: string | undefined;
|
|
1242
1117
|
} | undefined;
|
|
1243
1118
|
} | undefined;
|
|
1244
|
-
readonly dimensions?: number | undefined;
|
|
1245
|
-
readonly columnName?: string | undefined;
|
|
1246
1119
|
readonly searchable?: boolean | undefined;
|
|
1247
1120
|
readonly unique?: boolean | undefined;
|
|
1248
1121
|
readonly maxLength?: number | undefined;
|
|
1249
1122
|
readonly minLength?: number | undefined;
|
|
1250
1123
|
readonly scale?: number | undefined;
|
|
1251
1124
|
readonly reference?: string | undefined;
|
|
1252
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1253
1125
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1254
1126
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1255
1127
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1269,7 +1141,7 @@ declare const SysWebhook: Omit<{
|
|
|
1269
1141
|
readonly lookupPageSize?: number | undefined;
|
|
1270
1142
|
readonly lookupFilters?: {
|
|
1271
1143
|
field: string;
|
|
1272
|
-
operator: "in" | "eq" | "ne" | "
|
|
1144
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
1273
1145
|
value: any;
|
|
1274
1146
|
}[] | undefined;
|
|
1275
1147
|
readonly dependsOn?: (string | {
|
|
@@ -1278,7 +1150,7 @@ declare const SysWebhook: Omit<{
|
|
|
1278
1150
|
})[] | undefined;
|
|
1279
1151
|
readonly allowCreate?: boolean | undefined;
|
|
1280
1152
|
readonly expression?: {
|
|
1281
|
-
dialect: "cel" | "
|
|
1153
|
+
dialect: "cel" | "cron" | "template";
|
|
1282
1154
|
source?: string | undefined;
|
|
1283
1155
|
ast?: unknown;
|
|
1284
1156
|
meta?: {
|
|
@@ -1291,6 +1163,7 @@ declare const SysWebhook: Omit<{
|
|
|
1291
1163
|
field: string;
|
|
1292
1164
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1293
1165
|
relationshipField?: string | undefined;
|
|
1166
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1294
1167
|
} | undefined;
|
|
1295
1168
|
readonly language?: string | undefined;
|
|
1296
1169
|
readonly step?: number | undefined;
|
|
@@ -1299,57 +1172,10 @@ declare const SysWebhook: Omit<{
|
|
|
1299
1172
|
currencyMode: "fixed" | "dynamic";
|
|
1300
1173
|
defaultCurrency: string;
|
|
1301
1174
|
} | undefined;
|
|
1302
|
-
readonly
|
|
1303
|
-
dimensions: number;
|
|
1304
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1305
|
-
normalized: boolean;
|
|
1306
|
-
indexed: boolean;
|
|
1307
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1308
|
-
} | undefined;
|
|
1309
|
-
readonly fileAttachmentConfig?: {
|
|
1310
|
-
virusScan: boolean;
|
|
1311
|
-
virusScanOnUpload: boolean;
|
|
1312
|
-
quarantineOnThreat: boolean;
|
|
1313
|
-
allowMultiple: boolean;
|
|
1314
|
-
allowReplace: boolean;
|
|
1315
|
-
allowDelete: boolean;
|
|
1316
|
-
requireUpload: boolean;
|
|
1317
|
-
extractMetadata: boolean;
|
|
1318
|
-
extractText: boolean;
|
|
1319
|
-
versioningEnabled: boolean;
|
|
1320
|
-
publicRead: boolean;
|
|
1321
|
-
presignedUrlExpiry: number;
|
|
1322
|
-
minSize?: number | undefined;
|
|
1323
|
-
maxSize?: number | undefined;
|
|
1324
|
-
allowedTypes?: string[] | undefined;
|
|
1325
|
-
blockedTypes?: string[] | undefined;
|
|
1326
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1327
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1328
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1329
|
-
storageProvider?: string | undefined;
|
|
1330
|
-
storageBucket?: string | undefined;
|
|
1331
|
-
storagePrefix?: string | undefined;
|
|
1332
|
-
imageValidation?: {
|
|
1333
|
-
generateThumbnails: boolean;
|
|
1334
|
-
preserveMetadata: boolean;
|
|
1335
|
-
autoRotate: boolean;
|
|
1336
|
-
minWidth?: number | undefined;
|
|
1337
|
-
maxWidth?: number | undefined;
|
|
1338
|
-
minHeight?: number | undefined;
|
|
1339
|
-
maxHeight?: number | undefined;
|
|
1340
|
-
aspectRatio?: string | undefined;
|
|
1341
|
-
thumbnailSizes?: {
|
|
1342
|
-
name: string;
|
|
1343
|
-
width: number;
|
|
1344
|
-
height: number;
|
|
1345
|
-
crop: boolean;
|
|
1346
|
-
}[] | undefined;
|
|
1347
|
-
} | undefined;
|
|
1348
|
-
maxVersions?: number | undefined;
|
|
1349
|
-
} | undefined;
|
|
1175
|
+
readonly dimensions?: number | undefined;
|
|
1350
1176
|
readonly trackHistory?: boolean | undefined;
|
|
1351
1177
|
readonly readonlyWhen?: {
|
|
1352
|
-
dialect: "cel" | "
|
|
1178
|
+
dialect: "cel" | "cron" | "template";
|
|
1353
1179
|
source?: string | undefined;
|
|
1354
1180
|
ast?: unknown;
|
|
1355
1181
|
meta?: {
|
|
@@ -1358,7 +1184,7 @@ declare const SysWebhook: Omit<{
|
|
|
1358
1184
|
} | undefined;
|
|
1359
1185
|
} | undefined;
|
|
1360
1186
|
readonly requiredWhen?: {
|
|
1361
|
-
dialect: "cel" | "
|
|
1187
|
+
dialect: "cel" | "cron" | "template";
|
|
1362
1188
|
source?: string | undefined;
|
|
1363
1189
|
ast?: unknown;
|
|
1364
1190
|
meta?: {
|
|
@@ -1367,7 +1193,7 @@ declare const SysWebhook: Omit<{
|
|
|
1367
1193
|
} | undefined;
|
|
1368
1194
|
} | undefined;
|
|
1369
1195
|
readonly conditionalRequired?: {
|
|
1370
|
-
dialect: "cel" | "
|
|
1196
|
+
dialect: "cel" | "cron" | "template";
|
|
1371
1197
|
source?: string | undefined;
|
|
1372
1198
|
ast?: unknown;
|
|
1373
1199
|
meta?: {
|
|
@@ -1378,7 +1204,6 @@ declare const SysWebhook: Omit<{
|
|
|
1378
1204
|
readonly sortable?: boolean | undefined;
|
|
1379
1205
|
readonly inlineHelpText?: string | undefined;
|
|
1380
1206
|
readonly autonumberFormat?: string | undefined;
|
|
1381
|
-
readonly index?: boolean | undefined;
|
|
1382
1207
|
readonly type: "text";
|
|
1383
1208
|
};
|
|
1384
1209
|
readonly label: {
|
|
@@ -1390,7 +1215,7 @@ declare const SysWebhook: Omit<{
|
|
|
1390
1215
|
color?: string | undefined;
|
|
1391
1216
|
default?: boolean | undefined;
|
|
1392
1217
|
visibleWhen?: {
|
|
1393
|
-
dialect: "cel" | "
|
|
1218
|
+
dialect: "cel" | "cron" | "template";
|
|
1394
1219
|
source?: string | undefined;
|
|
1395
1220
|
ast?: unknown;
|
|
1396
1221
|
meta?: {
|
|
@@ -1407,7 +1232,6 @@ declare const SysWebhook: Omit<{
|
|
|
1407
1232
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1408
1233
|
readonly widget?: string | undefined;
|
|
1409
1234
|
readonly multiple?: boolean | undefined;
|
|
1410
|
-
readonly dependencies?: string[] | undefined;
|
|
1411
1235
|
readonly externalId?: boolean | undefined;
|
|
1412
1236
|
readonly defaultValue?: unknown;
|
|
1413
1237
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1417,7 +1241,7 @@ declare const SysWebhook: Omit<{
|
|
|
1417
1241
|
readonly min?: number | undefined;
|
|
1418
1242
|
readonly max?: number | undefined;
|
|
1419
1243
|
readonly visibleWhen?: {
|
|
1420
|
-
dialect: "cel" | "
|
|
1244
|
+
dialect: "cel" | "cron" | "template";
|
|
1421
1245
|
source?: string | undefined;
|
|
1422
1246
|
ast?: unknown;
|
|
1423
1247
|
meta?: {
|
|
@@ -1425,15 +1249,12 @@ declare const SysWebhook: Omit<{
|
|
|
1425
1249
|
generatedBy?: string | undefined;
|
|
1426
1250
|
} | undefined;
|
|
1427
1251
|
} | undefined;
|
|
1428
|
-
readonly dimensions?: number | undefined;
|
|
1429
|
-
readonly columnName?: string | undefined;
|
|
1430
1252
|
readonly searchable?: boolean | undefined;
|
|
1431
1253
|
readonly unique?: boolean | undefined;
|
|
1432
1254
|
readonly maxLength?: number | undefined;
|
|
1433
1255
|
readonly minLength?: number | undefined;
|
|
1434
1256
|
readonly scale?: number | undefined;
|
|
1435
1257
|
readonly reference?: string | undefined;
|
|
1436
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1437
1258
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1438
1259
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1439
1260
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1453,7 +1274,7 @@ declare const SysWebhook: Omit<{
|
|
|
1453
1274
|
readonly lookupPageSize?: number | undefined;
|
|
1454
1275
|
readonly lookupFilters?: {
|
|
1455
1276
|
field: string;
|
|
1456
|
-
operator: "in" | "eq" | "ne" | "
|
|
1277
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
1457
1278
|
value: any;
|
|
1458
1279
|
}[] | undefined;
|
|
1459
1280
|
readonly dependsOn?: (string | {
|
|
@@ -1462,7 +1283,7 @@ declare const SysWebhook: Omit<{
|
|
|
1462
1283
|
})[] | undefined;
|
|
1463
1284
|
readonly allowCreate?: boolean | undefined;
|
|
1464
1285
|
readonly expression?: {
|
|
1465
|
-
dialect: "cel" | "
|
|
1286
|
+
dialect: "cel" | "cron" | "template";
|
|
1466
1287
|
source?: string | undefined;
|
|
1467
1288
|
ast?: unknown;
|
|
1468
1289
|
meta?: {
|
|
@@ -1475,6 +1296,7 @@ declare const SysWebhook: Omit<{
|
|
|
1475
1296
|
field: string;
|
|
1476
1297
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1477
1298
|
relationshipField?: string | undefined;
|
|
1299
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1478
1300
|
} | undefined;
|
|
1479
1301
|
readonly language?: string | undefined;
|
|
1480
1302
|
readonly step?: number | undefined;
|
|
@@ -1483,57 +1305,10 @@ declare const SysWebhook: Omit<{
|
|
|
1483
1305
|
currencyMode: "fixed" | "dynamic";
|
|
1484
1306
|
defaultCurrency: string;
|
|
1485
1307
|
} | undefined;
|
|
1486
|
-
readonly
|
|
1487
|
-
dimensions: number;
|
|
1488
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1489
|
-
normalized: boolean;
|
|
1490
|
-
indexed: boolean;
|
|
1491
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1492
|
-
} | undefined;
|
|
1493
|
-
readonly fileAttachmentConfig?: {
|
|
1494
|
-
virusScan: boolean;
|
|
1495
|
-
virusScanOnUpload: boolean;
|
|
1496
|
-
quarantineOnThreat: boolean;
|
|
1497
|
-
allowMultiple: boolean;
|
|
1498
|
-
allowReplace: boolean;
|
|
1499
|
-
allowDelete: boolean;
|
|
1500
|
-
requireUpload: boolean;
|
|
1501
|
-
extractMetadata: boolean;
|
|
1502
|
-
extractText: boolean;
|
|
1503
|
-
versioningEnabled: boolean;
|
|
1504
|
-
publicRead: boolean;
|
|
1505
|
-
presignedUrlExpiry: number;
|
|
1506
|
-
minSize?: number | undefined;
|
|
1507
|
-
maxSize?: number | undefined;
|
|
1508
|
-
allowedTypes?: string[] | undefined;
|
|
1509
|
-
blockedTypes?: string[] | undefined;
|
|
1510
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1511
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1512
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1513
|
-
storageProvider?: string | undefined;
|
|
1514
|
-
storageBucket?: string | undefined;
|
|
1515
|
-
storagePrefix?: string | undefined;
|
|
1516
|
-
imageValidation?: {
|
|
1517
|
-
generateThumbnails: boolean;
|
|
1518
|
-
preserveMetadata: boolean;
|
|
1519
|
-
autoRotate: boolean;
|
|
1520
|
-
minWidth?: number | undefined;
|
|
1521
|
-
maxWidth?: number | undefined;
|
|
1522
|
-
minHeight?: number | undefined;
|
|
1523
|
-
maxHeight?: number | undefined;
|
|
1524
|
-
aspectRatio?: string | undefined;
|
|
1525
|
-
thumbnailSizes?: {
|
|
1526
|
-
name: string;
|
|
1527
|
-
width: number;
|
|
1528
|
-
height: number;
|
|
1529
|
-
crop: boolean;
|
|
1530
|
-
}[] | undefined;
|
|
1531
|
-
} | undefined;
|
|
1532
|
-
maxVersions?: number | undefined;
|
|
1533
|
-
} | undefined;
|
|
1308
|
+
readonly dimensions?: number | undefined;
|
|
1534
1309
|
readonly trackHistory?: boolean | undefined;
|
|
1535
1310
|
readonly readonlyWhen?: {
|
|
1536
|
-
dialect: "cel" | "
|
|
1311
|
+
dialect: "cel" | "cron" | "template";
|
|
1537
1312
|
source?: string | undefined;
|
|
1538
1313
|
ast?: unknown;
|
|
1539
1314
|
meta?: {
|
|
@@ -1542,7 +1317,7 @@ declare const SysWebhook: Omit<{
|
|
|
1542
1317
|
} | undefined;
|
|
1543
1318
|
} | undefined;
|
|
1544
1319
|
readonly requiredWhen?: {
|
|
1545
|
-
dialect: "cel" | "
|
|
1320
|
+
dialect: "cel" | "cron" | "template";
|
|
1546
1321
|
source?: string | undefined;
|
|
1547
1322
|
ast?: unknown;
|
|
1548
1323
|
meta?: {
|
|
@@ -1551,7 +1326,7 @@ declare const SysWebhook: Omit<{
|
|
|
1551
1326
|
} | undefined;
|
|
1552
1327
|
} | undefined;
|
|
1553
1328
|
readonly conditionalRequired?: {
|
|
1554
|
-
dialect: "cel" | "
|
|
1329
|
+
dialect: "cel" | "cron" | "template";
|
|
1555
1330
|
source?: string | undefined;
|
|
1556
1331
|
ast?: unknown;
|
|
1557
1332
|
meta?: {
|
|
@@ -1562,7 +1337,6 @@ declare const SysWebhook: Omit<{
|
|
|
1562
1337
|
readonly sortable?: boolean | undefined;
|
|
1563
1338
|
readonly inlineHelpText?: string | undefined;
|
|
1564
1339
|
readonly autonumberFormat?: string | undefined;
|
|
1565
|
-
readonly index?: boolean | undefined;
|
|
1566
1340
|
readonly type: "text";
|
|
1567
1341
|
};
|
|
1568
1342
|
readonly object_name: {
|
|
@@ -1574,7 +1348,7 @@ declare const SysWebhook: Omit<{
|
|
|
1574
1348
|
color?: string | undefined;
|
|
1575
1349
|
default?: boolean | undefined;
|
|
1576
1350
|
visibleWhen?: {
|
|
1577
|
-
dialect: "cel" | "
|
|
1351
|
+
dialect: "cel" | "cron" | "template";
|
|
1578
1352
|
source?: string | undefined;
|
|
1579
1353
|
ast?: unknown;
|
|
1580
1354
|
meta?: {
|
|
@@ -1591,7 +1365,6 @@ declare const SysWebhook: Omit<{
|
|
|
1591
1365
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1592
1366
|
readonly widget?: string | undefined;
|
|
1593
1367
|
readonly multiple?: boolean | undefined;
|
|
1594
|
-
readonly dependencies?: string[] | undefined;
|
|
1595
1368
|
readonly externalId?: boolean | undefined;
|
|
1596
1369
|
readonly defaultValue?: unknown;
|
|
1597
1370
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1601,7 +1374,7 @@ declare const SysWebhook: Omit<{
|
|
|
1601
1374
|
readonly min?: number | undefined;
|
|
1602
1375
|
readonly max?: number | undefined;
|
|
1603
1376
|
readonly visibleWhen?: {
|
|
1604
|
-
dialect: "cel" | "
|
|
1377
|
+
dialect: "cel" | "cron" | "template";
|
|
1605
1378
|
source?: string | undefined;
|
|
1606
1379
|
ast?: unknown;
|
|
1607
1380
|
meta?: {
|
|
@@ -1609,15 +1382,12 @@ declare const SysWebhook: Omit<{
|
|
|
1609
1382
|
generatedBy?: string | undefined;
|
|
1610
1383
|
} | undefined;
|
|
1611
1384
|
} | undefined;
|
|
1612
|
-
readonly dimensions?: number | undefined;
|
|
1613
|
-
readonly columnName?: string | undefined;
|
|
1614
1385
|
readonly searchable?: boolean | undefined;
|
|
1615
1386
|
readonly unique?: boolean | undefined;
|
|
1616
1387
|
readonly maxLength?: number | undefined;
|
|
1617
1388
|
readonly minLength?: number | undefined;
|
|
1618
1389
|
readonly scale?: number | undefined;
|
|
1619
1390
|
readonly reference?: string | undefined;
|
|
1620
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1621
1391
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1622
1392
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1623
1393
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1637,7 +1407,7 @@ declare const SysWebhook: Omit<{
|
|
|
1637
1407
|
readonly lookupPageSize?: number | undefined;
|
|
1638
1408
|
readonly lookupFilters?: {
|
|
1639
1409
|
field: string;
|
|
1640
|
-
operator: "in" | "eq" | "ne" | "
|
|
1410
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
1641
1411
|
value: any;
|
|
1642
1412
|
}[] | undefined;
|
|
1643
1413
|
readonly dependsOn?: (string | {
|
|
@@ -1646,7 +1416,7 @@ declare const SysWebhook: Omit<{
|
|
|
1646
1416
|
})[] | undefined;
|
|
1647
1417
|
readonly allowCreate?: boolean | undefined;
|
|
1648
1418
|
readonly expression?: {
|
|
1649
|
-
dialect: "cel" | "
|
|
1419
|
+
dialect: "cel" | "cron" | "template";
|
|
1650
1420
|
source?: string | undefined;
|
|
1651
1421
|
ast?: unknown;
|
|
1652
1422
|
meta?: {
|
|
@@ -1659,6 +1429,7 @@ declare const SysWebhook: Omit<{
|
|
|
1659
1429
|
field: string;
|
|
1660
1430
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1661
1431
|
relationshipField?: string | undefined;
|
|
1432
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1662
1433
|
} | undefined;
|
|
1663
1434
|
readonly language?: string | undefined;
|
|
1664
1435
|
readonly step?: number | undefined;
|
|
@@ -1667,57 +1438,10 @@ declare const SysWebhook: Omit<{
|
|
|
1667
1438
|
currencyMode: "fixed" | "dynamic";
|
|
1668
1439
|
defaultCurrency: string;
|
|
1669
1440
|
} | undefined;
|
|
1670
|
-
readonly
|
|
1671
|
-
dimensions: number;
|
|
1672
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1673
|
-
normalized: boolean;
|
|
1674
|
-
indexed: boolean;
|
|
1675
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1676
|
-
} | undefined;
|
|
1677
|
-
readonly fileAttachmentConfig?: {
|
|
1678
|
-
virusScan: boolean;
|
|
1679
|
-
virusScanOnUpload: boolean;
|
|
1680
|
-
quarantineOnThreat: boolean;
|
|
1681
|
-
allowMultiple: boolean;
|
|
1682
|
-
allowReplace: boolean;
|
|
1683
|
-
allowDelete: boolean;
|
|
1684
|
-
requireUpload: boolean;
|
|
1685
|
-
extractMetadata: boolean;
|
|
1686
|
-
extractText: boolean;
|
|
1687
|
-
versioningEnabled: boolean;
|
|
1688
|
-
publicRead: boolean;
|
|
1689
|
-
presignedUrlExpiry: number;
|
|
1690
|
-
minSize?: number | undefined;
|
|
1691
|
-
maxSize?: number | undefined;
|
|
1692
|
-
allowedTypes?: string[] | undefined;
|
|
1693
|
-
blockedTypes?: string[] | undefined;
|
|
1694
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1695
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1696
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1697
|
-
storageProvider?: string | undefined;
|
|
1698
|
-
storageBucket?: string | undefined;
|
|
1699
|
-
storagePrefix?: string | undefined;
|
|
1700
|
-
imageValidation?: {
|
|
1701
|
-
generateThumbnails: boolean;
|
|
1702
|
-
preserveMetadata: boolean;
|
|
1703
|
-
autoRotate: boolean;
|
|
1704
|
-
minWidth?: number | undefined;
|
|
1705
|
-
maxWidth?: number | undefined;
|
|
1706
|
-
minHeight?: number | undefined;
|
|
1707
|
-
maxHeight?: number | undefined;
|
|
1708
|
-
aspectRatio?: string | undefined;
|
|
1709
|
-
thumbnailSizes?: {
|
|
1710
|
-
name: string;
|
|
1711
|
-
width: number;
|
|
1712
|
-
height: number;
|
|
1713
|
-
crop: boolean;
|
|
1714
|
-
}[] | undefined;
|
|
1715
|
-
} | undefined;
|
|
1716
|
-
maxVersions?: number | undefined;
|
|
1717
|
-
} | undefined;
|
|
1441
|
+
readonly dimensions?: number | undefined;
|
|
1718
1442
|
readonly trackHistory?: boolean | undefined;
|
|
1719
1443
|
readonly readonlyWhen?: {
|
|
1720
|
-
dialect: "cel" | "
|
|
1444
|
+
dialect: "cel" | "cron" | "template";
|
|
1721
1445
|
source?: string | undefined;
|
|
1722
1446
|
ast?: unknown;
|
|
1723
1447
|
meta?: {
|
|
@@ -1726,7 +1450,7 @@ declare const SysWebhook: Omit<{
|
|
|
1726
1450
|
} | undefined;
|
|
1727
1451
|
} | undefined;
|
|
1728
1452
|
readonly requiredWhen?: {
|
|
1729
|
-
dialect: "cel" | "
|
|
1453
|
+
dialect: "cel" | "cron" | "template";
|
|
1730
1454
|
source?: string | undefined;
|
|
1731
1455
|
ast?: unknown;
|
|
1732
1456
|
meta?: {
|
|
@@ -1735,7 +1459,7 @@ declare const SysWebhook: Omit<{
|
|
|
1735
1459
|
} | undefined;
|
|
1736
1460
|
} | undefined;
|
|
1737
1461
|
readonly conditionalRequired?: {
|
|
1738
|
-
dialect: "cel" | "
|
|
1462
|
+
dialect: "cel" | "cron" | "template";
|
|
1739
1463
|
source?: string | undefined;
|
|
1740
1464
|
ast?: unknown;
|
|
1741
1465
|
meta?: {
|
|
@@ -1746,7 +1470,6 @@ declare const SysWebhook: Omit<{
|
|
|
1746
1470
|
readonly sortable?: boolean | undefined;
|
|
1747
1471
|
readonly inlineHelpText?: string | undefined;
|
|
1748
1472
|
readonly autonumberFormat?: string | undefined;
|
|
1749
|
-
readonly index?: boolean | undefined;
|
|
1750
1473
|
readonly type: "text";
|
|
1751
1474
|
};
|
|
1752
1475
|
readonly triggers: {
|
|
@@ -1758,7 +1481,7 @@ declare const SysWebhook: Omit<{
|
|
|
1758
1481
|
color?: string | undefined;
|
|
1759
1482
|
default?: boolean | undefined;
|
|
1760
1483
|
visibleWhen?: {
|
|
1761
|
-
dialect: "cel" | "
|
|
1484
|
+
dialect: "cel" | "cron" | "template";
|
|
1762
1485
|
source?: string | undefined;
|
|
1763
1486
|
ast?: unknown;
|
|
1764
1487
|
meta?: {
|
|
@@ -1775,7 +1498,6 @@ declare const SysWebhook: Omit<{
|
|
|
1775
1498
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1776
1499
|
readonly widget?: string | undefined;
|
|
1777
1500
|
readonly multiple?: boolean | undefined;
|
|
1778
|
-
readonly dependencies?: string[] | undefined;
|
|
1779
1501
|
readonly externalId?: boolean | undefined;
|
|
1780
1502
|
readonly defaultValue?: unknown;
|
|
1781
1503
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1785,7 +1507,7 @@ declare const SysWebhook: Omit<{
|
|
|
1785
1507
|
readonly min?: number | undefined;
|
|
1786
1508
|
readonly max?: number | undefined;
|
|
1787
1509
|
readonly visibleWhen?: {
|
|
1788
|
-
dialect: "cel" | "
|
|
1510
|
+
dialect: "cel" | "cron" | "template";
|
|
1789
1511
|
source?: string | undefined;
|
|
1790
1512
|
ast?: unknown;
|
|
1791
1513
|
meta?: {
|
|
@@ -1793,15 +1515,12 @@ declare const SysWebhook: Omit<{
|
|
|
1793
1515
|
generatedBy?: string | undefined;
|
|
1794
1516
|
} | undefined;
|
|
1795
1517
|
} | undefined;
|
|
1796
|
-
readonly dimensions?: number | undefined;
|
|
1797
|
-
readonly columnName?: string | undefined;
|
|
1798
1518
|
readonly searchable?: boolean | undefined;
|
|
1799
1519
|
readonly unique?: boolean | undefined;
|
|
1800
1520
|
readonly maxLength?: number | undefined;
|
|
1801
1521
|
readonly minLength?: number | undefined;
|
|
1802
1522
|
readonly scale?: number | undefined;
|
|
1803
1523
|
readonly reference?: string | undefined;
|
|
1804
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1805
1524
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1806
1525
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1807
1526
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1821,7 +1540,7 @@ declare const SysWebhook: Omit<{
|
|
|
1821
1540
|
readonly lookupPageSize?: number | undefined;
|
|
1822
1541
|
readonly lookupFilters?: {
|
|
1823
1542
|
field: string;
|
|
1824
|
-
operator: "in" | "eq" | "ne" | "
|
|
1543
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
1825
1544
|
value: any;
|
|
1826
1545
|
}[] | undefined;
|
|
1827
1546
|
readonly dependsOn?: (string | {
|
|
@@ -1830,7 +1549,7 @@ declare const SysWebhook: Omit<{
|
|
|
1830
1549
|
})[] | undefined;
|
|
1831
1550
|
readonly allowCreate?: boolean | undefined;
|
|
1832
1551
|
readonly expression?: {
|
|
1833
|
-
dialect: "cel" | "
|
|
1552
|
+
dialect: "cel" | "cron" | "template";
|
|
1834
1553
|
source?: string | undefined;
|
|
1835
1554
|
ast?: unknown;
|
|
1836
1555
|
meta?: {
|
|
@@ -1843,6 +1562,7 @@ declare const SysWebhook: Omit<{
|
|
|
1843
1562
|
field: string;
|
|
1844
1563
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1845
1564
|
relationshipField?: string | undefined;
|
|
1565
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1846
1566
|
} | undefined;
|
|
1847
1567
|
readonly language?: string | undefined;
|
|
1848
1568
|
readonly step?: number | undefined;
|
|
@@ -1851,57 +1571,10 @@ declare const SysWebhook: Omit<{
|
|
|
1851
1571
|
currencyMode: "fixed" | "dynamic";
|
|
1852
1572
|
defaultCurrency: string;
|
|
1853
1573
|
} | undefined;
|
|
1854
|
-
readonly
|
|
1855
|
-
dimensions: number;
|
|
1856
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
1857
|
-
normalized: boolean;
|
|
1858
|
-
indexed: boolean;
|
|
1859
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
1860
|
-
} | undefined;
|
|
1861
|
-
readonly fileAttachmentConfig?: {
|
|
1862
|
-
virusScan: boolean;
|
|
1863
|
-
virusScanOnUpload: boolean;
|
|
1864
|
-
quarantineOnThreat: boolean;
|
|
1865
|
-
allowMultiple: boolean;
|
|
1866
|
-
allowReplace: boolean;
|
|
1867
|
-
allowDelete: boolean;
|
|
1868
|
-
requireUpload: boolean;
|
|
1869
|
-
extractMetadata: boolean;
|
|
1870
|
-
extractText: boolean;
|
|
1871
|
-
versioningEnabled: boolean;
|
|
1872
|
-
publicRead: boolean;
|
|
1873
|
-
presignedUrlExpiry: number;
|
|
1874
|
-
minSize?: number | undefined;
|
|
1875
|
-
maxSize?: number | undefined;
|
|
1876
|
-
allowedTypes?: string[] | undefined;
|
|
1877
|
-
blockedTypes?: string[] | undefined;
|
|
1878
|
-
allowedMimeTypes?: string[] | undefined;
|
|
1879
|
-
blockedMimeTypes?: string[] | undefined;
|
|
1880
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
1881
|
-
storageProvider?: string | undefined;
|
|
1882
|
-
storageBucket?: string | undefined;
|
|
1883
|
-
storagePrefix?: string | undefined;
|
|
1884
|
-
imageValidation?: {
|
|
1885
|
-
generateThumbnails: boolean;
|
|
1886
|
-
preserveMetadata: boolean;
|
|
1887
|
-
autoRotate: boolean;
|
|
1888
|
-
minWidth?: number | undefined;
|
|
1889
|
-
maxWidth?: number | undefined;
|
|
1890
|
-
minHeight?: number | undefined;
|
|
1891
|
-
maxHeight?: number | undefined;
|
|
1892
|
-
aspectRatio?: string | undefined;
|
|
1893
|
-
thumbnailSizes?: {
|
|
1894
|
-
name: string;
|
|
1895
|
-
width: number;
|
|
1896
|
-
height: number;
|
|
1897
|
-
crop: boolean;
|
|
1898
|
-
}[] | undefined;
|
|
1899
|
-
} | undefined;
|
|
1900
|
-
maxVersions?: number | undefined;
|
|
1901
|
-
} | undefined;
|
|
1574
|
+
readonly dimensions?: number | undefined;
|
|
1902
1575
|
readonly trackHistory?: boolean | undefined;
|
|
1903
1576
|
readonly readonlyWhen?: {
|
|
1904
|
-
dialect: "cel" | "
|
|
1577
|
+
dialect: "cel" | "cron" | "template";
|
|
1905
1578
|
source?: string | undefined;
|
|
1906
1579
|
ast?: unknown;
|
|
1907
1580
|
meta?: {
|
|
@@ -1910,7 +1583,7 @@ declare const SysWebhook: Omit<{
|
|
|
1910
1583
|
} | undefined;
|
|
1911
1584
|
} | undefined;
|
|
1912
1585
|
readonly requiredWhen?: {
|
|
1913
|
-
dialect: "cel" | "
|
|
1586
|
+
dialect: "cel" | "cron" | "template";
|
|
1914
1587
|
source?: string | undefined;
|
|
1915
1588
|
ast?: unknown;
|
|
1916
1589
|
meta?: {
|
|
@@ -1919,7 +1592,7 @@ declare const SysWebhook: Omit<{
|
|
|
1919
1592
|
} | undefined;
|
|
1920
1593
|
} | undefined;
|
|
1921
1594
|
readonly conditionalRequired?: {
|
|
1922
|
-
dialect: "cel" | "
|
|
1595
|
+
dialect: "cel" | "cron" | "template";
|
|
1923
1596
|
source?: string | undefined;
|
|
1924
1597
|
ast?: unknown;
|
|
1925
1598
|
meta?: {
|
|
@@ -1930,7 +1603,6 @@ declare const SysWebhook: Omit<{
|
|
|
1930
1603
|
readonly sortable?: boolean | undefined;
|
|
1931
1604
|
readonly inlineHelpText?: string | undefined;
|
|
1932
1605
|
readonly autonumberFormat?: string | undefined;
|
|
1933
|
-
readonly index?: boolean | undefined;
|
|
1934
1606
|
readonly type: "select";
|
|
1935
1607
|
};
|
|
1936
1608
|
readonly url: {
|
|
@@ -1942,7 +1614,7 @@ declare const SysWebhook: Omit<{
|
|
|
1942
1614
|
color?: string | undefined;
|
|
1943
1615
|
default?: boolean | undefined;
|
|
1944
1616
|
visibleWhen?: {
|
|
1945
|
-
dialect: "cel" | "
|
|
1617
|
+
dialect: "cel" | "cron" | "template";
|
|
1946
1618
|
source?: string | undefined;
|
|
1947
1619
|
ast?: unknown;
|
|
1948
1620
|
meta?: {
|
|
@@ -1959,7 +1631,6 @@ declare const SysWebhook: Omit<{
|
|
|
1959
1631
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1960
1632
|
readonly widget?: string | undefined;
|
|
1961
1633
|
readonly multiple?: boolean | undefined;
|
|
1962
|
-
readonly dependencies?: string[] | undefined;
|
|
1963
1634
|
readonly externalId?: boolean | undefined;
|
|
1964
1635
|
readonly defaultValue?: unknown;
|
|
1965
1636
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -1969,7 +1640,7 @@ declare const SysWebhook: Omit<{
|
|
|
1969
1640
|
readonly min?: number | undefined;
|
|
1970
1641
|
readonly max?: number | undefined;
|
|
1971
1642
|
readonly visibleWhen?: {
|
|
1972
|
-
dialect: "cel" | "
|
|
1643
|
+
dialect: "cel" | "cron" | "template";
|
|
1973
1644
|
source?: string | undefined;
|
|
1974
1645
|
ast?: unknown;
|
|
1975
1646
|
meta?: {
|
|
@@ -1977,15 +1648,12 @@ declare const SysWebhook: Omit<{
|
|
|
1977
1648
|
generatedBy?: string | undefined;
|
|
1978
1649
|
} | undefined;
|
|
1979
1650
|
} | undefined;
|
|
1980
|
-
readonly dimensions?: number | undefined;
|
|
1981
|
-
readonly columnName?: string | undefined;
|
|
1982
1651
|
readonly searchable?: boolean | undefined;
|
|
1983
1652
|
readonly unique?: boolean | undefined;
|
|
1984
1653
|
readonly maxLength?: number | undefined;
|
|
1985
1654
|
readonly minLength?: number | undefined;
|
|
1986
1655
|
readonly scale?: number | undefined;
|
|
1987
1656
|
readonly reference?: string | undefined;
|
|
1988
|
-
readonly referenceFilters?: string[] | undefined;
|
|
1989
1657
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1990
1658
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1991
1659
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2005,7 +1673,7 @@ declare const SysWebhook: Omit<{
|
|
|
2005
1673
|
readonly lookupPageSize?: number | undefined;
|
|
2006
1674
|
readonly lookupFilters?: {
|
|
2007
1675
|
field: string;
|
|
2008
|
-
operator: "in" | "eq" | "ne" | "
|
|
1676
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2009
1677
|
value: any;
|
|
2010
1678
|
}[] | undefined;
|
|
2011
1679
|
readonly dependsOn?: (string | {
|
|
@@ -2014,7 +1682,7 @@ declare const SysWebhook: Omit<{
|
|
|
2014
1682
|
})[] | undefined;
|
|
2015
1683
|
readonly allowCreate?: boolean | undefined;
|
|
2016
1684
|
readonly expression?: {
|
|
2017
|
-
dialect: "cel" | "
|
|
1685
|
+
dialect: "cel" | "cron" | "template";
|
|
2018
1686
|
source?: string | undefined;
|
|
2019
1687
|
ast?: unknown;
|
|
2020
1688
|
meta?: {
|
|
@@ -2027,6 +1695,7 @@ declare const SysWebhook: Omit<{
|
|
|
2027
1695
|
field: string;
|
|
2028
1696
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2029
1697
|
relationshipField?: string | undefined;
|
|
1698
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2030
1699
|
} | undefined;
|
|
2031
1700
|
readonly language?: string | undefined;
|
|
2032
1701
|
readonly step?: number | undefined;
|
|
@@ -2035,57 +1704,10 @@ declare const SysWebhook: Omit<{
|
|
|
2035
1704
|
currencyMode: "fixed" | "dynamic";
|
|
2036
1705
|
defaultCurrency: string;
|
|
2037
1706
|
} | undefined;
|
|
2038
|
-
readonly
|
|
2039
|
-
dimensions: number;
|
|
2040
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2041
|
-
normalized: boolean;
|
|
2042
|
-
indexed: boolean;
|
|
2043
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2044
|
-
} | undefined;
|
|
2045
|
-
readonly fileAttachmentConfig?: {
|
|
2046
|
-
virusScan: boolean;
|
|
2047
|
-
virusScanOnUpload: boolean;
|
|
2048
|
-
quarantineOnThreat: boolean;
|
|
2049
|
-
allowMultiple: boolean;
|
|
2050
|
-
allowReplace: boolean;
|
|
2051
|
-
allowDelete: boolean;
|
|
2052
|
-
requireUpload: boolean;
|
|
2053
|
-
extractMetadata: boolean;
|
|
2054
|
-
extractText: boolean;
|
|
2055
|
-
versioningEnabled: boolean;
|
|
2056
|
-
publicRead: boolean;
|
|
2057
|
-
presignedUrlExpiry: number;
|
|
2058
|
-
minSize?: number | undefined;
|
|
2059
|
-
maxSize?: number | undefined;
|
|
2060
|
-
allowedTypes?: string[] | undefined;
|
|
2061
|
-
blockedTypes?: string[] | undefined;
|
|
2062
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2063
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2064
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2065
|
-
storageProvider?: string | undefined;
|
|
2066
|
-
storageBucket?: string | undefined;
|
|
2067
|
-
storagePrefix?: string | undefined;
|
|
2068
|
-
imageValidation?: {
|
|
2069
|
-
generateThumbnails: boolean;
|
|
2070
|
-
preserveMetadata: boolean;
|
|
2071
|
-
autoRotate: boolean;
|
|
2072
|
-
minWidth?: number | undefined;
|
|
2073
|
-
maxWidth?: number | undefined;
|
|
2074
|
-
minHeight?: number | undefined;
|
|
2075
|
-
maxHeight?: number | undefined;
|
|
2076
|
-
aspectRatio?: string | undefined;
|
|
2077
|
-
thumbnailSizes?: {
|
|
2078
|
-
name: string;
|
|
2079
|
-
width: number;
|
|
2080
|
-
height: number;
|
|
2081
|
-
crop: boolean;
|
|
2082
|
-
}[] | undefined;
|
|
2083
|
-
} | undefined;
|
|
2084
|
-
maxVersions?: number | undefined;
|
|
2085
|
-
} | undefined;
|
|
1707
|
+
readonly dimensions?: number | undefined;
|
|
2086
1708
|
readonly trackHistory?: boolean | undefined;
|
|
2087
1709
|
readonly readonlyWhen?: {
|
|
2088
|
-
dialect: "cel" | "
|
|
1710
|
+
dialect: "cel" | "cron" | "template";
|
|
2089
1711
|
source?: string | undefined;
|
|
2090
1712
|
ast?: unknown;
|
|
2091
1713
|
meta?: {
|
|
@@ -2094,7 +1716,7 @@ declare const SysWebhook: Omit<{
|
|
|
2094
1716
|
} | undefined;
|
|
2095
1717
|
} | undefined;
|
|
2096
1718
|
readonly requiredWhen?: {
|
|
2097
|
-
dialect: "cel" | "
|
|
1719
|
+
dialect: "cel" | "cron" | "template";
|
|
2098
1720
|
source?: string | undefined;
|
|
2099
1721
|
ast?: unknown;
|
|
2100
1722
|
meta?: {
|
|
@@ -2103,7 +1725,7 @@ declare const SysWebhook: Omit<{
|
|
|
2103
1725
|
} | undefined;
|
|
2104
1726
|
} | undefined;
|
|
2105
1727
|
readonly conditionalRequired?: {
|
|
2106
|
-
dialect: "cel" | "
|
|
1728
|
+
dialect: "cel" | "cron" | "template";
|
|
2107
1729
|
source?: string | undefined;
|
|
2108
1730
|
ast?: unknown;
|
|
2109
1731
|
meta?: {
|
|
@@ -2114,7 +1736,6 @@ declare const SysWebhook: Omit<{
|
|
|
2114
1736
|
readonly sortable?: boolean | undefined;
|
|
2115
1737
|
readonly inlineHelpText?: string | undefined;
|
|
2116
1738
|
readonly autonumberFormat?: string | undefined;
|
|
2117
|
-
readonly index?: boolean | undefined;
|
|
2118
1739
|
readonly type: "text";
|
|
2119
1740
|
};
|
|
2120
1741
|
readonly method: {
|
|
@@ -2126,7 +1747,7 @@ declare const SysWebhook: Omit<{
|
|
|
2126
1747
|
color?: string | undefined;
|
|
2127
1748
|
default?: boolean | undefined;
|
|
2128
1749
|
visibleWhen?: {
|
|
2129
|
-
dialect: "cel" | "
|
|
1750
|
+
dialect: "cel" | "cron" | "template";
|
|
2130
1751
|
source?: string | undefined;
|
|
2131
1752
|
ast?: unknown;
|
|
2132
1753
|
meta?: {
|
|
@@ -2143,7 +1764,6 @@ declare const SysWebhook: Omit<{
|
|
|
2143
1764
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2144
1765
|
readonly widget?: string | undefined;
|
|
2145
1766
|
readonly multiple?: boolean | undefined;
|
|
2146
|
-
readonly dependencies?: string[] | undefined;
|
|
2147
1767
|
readonly externalId?: boolean | undefined;
|
|
2148
1768
|
readonly defaultValue?: unknown;
|
|
2149
1769
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -2153,7 +1773,7 @@ declare const SysWebhook: Omit<{
|
|
|
2153
1773
|
readonly min?: number | undefined;
|
|
2154
1774
|
readonly max?: number | undefined;
|
|
2155
1775
|
readonly visibleWhen?: {
|
|
2156
|
-
dialect: "cel" | "
|
|
1776
|
+
dialect: "cel" | "cron" | "template";
|
|
2157
1777
|
source?: string | undefined;
|
|
2158
1778
|
ast?: unknown;
|
|
2159
1779
|
meta?: {
|
|
@@ -2161,15 +1781,12 @@ declare const SysWebhook: Omit<{
|
|
|
2161
1781
|
generatedBy?: string | undefined;
|
|
2162
1782
|
} | undefined;
|
|
2163
1783
|
} | undefined;
|
|
2164
|
-
readonly dimensions?: number | undefined;
|
|
2165
|
-
readonly columnName?: string | undefined;
|
|
2166
1784
|
readonly searchable?: boolean | undefined;
|
|
2167
1785
|
readonly unique?: boolean | undefined;
|
|
2168
1786
|
readonly maxLength?: number | undefined;
|
|
2169
1787
|
readonly minLength?: number | undefined;
|
|
2170
1788
|
readonly scale?: number | undefined;
|
|
2171
1789
|
readonly reference?: string | undefined;
|
|
2172
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2173
1790
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2174
1791
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2175
1792
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2189,7 +1806,7 @@ declare const SysWebhook: Omit<{
|
|
|
2189
1806
|
readonly lookupPageSize?: number | undefined;
|
|
2190
1807
|
readonly lookupFilters?: {
|
|
2191
1808
|
field: string;
|
|
2192
|
-
operator: "in" | "eq" | "ne" | "
|
|
1809
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2193
1810
|
value: any;
|
|
2194
1811
|
}[] | undefined;
|
|
2195
1812
|
readonly dependsOn?: (string | {
|
|
@@ -2198,7 +1815,7 @@ declare const SysWebhook: Omit<{
|
|
|
2198
1815
|
})[] | undefined;
|
|
2199
1816
|
readonly allowCreate?: boolean | undefined;
|
|
2200
1817
|
readonly expression?: {
|
|
2201
|
-
dialect: "cel" | "
|
|
1818
|
+
dialect: "cel" | "cron" | "template";
|
|
2202
1819
|
source?: string | undefined;
|
|
2203
1820
|
ast?: unknown;
|
|
2204
1821
|
meta?: {
|
|
@@ -2211,6 +1828,7 @@ declare const SysWebhook: Omit<{
|
|
|
2211
1828
|
field: string;
|
|
2212
1829
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2213
1830
|
relationshipField?: string | undefined;
|
|
1831
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2214
1832
|
} | undefined;
|
|
2215
1833
|
readonly language?: string | undefined;
|
|
2216
1834
|
readonly step?: number | undefined;
|
|
@@ -2219,57 +1837,10 @@ declare const SysWebhook: Omit<{
|
|
|
2219
1837
|
currencyMode: "fixed" | "dynamic";
|
|
2220
1838
|
defaultCurrency: string;
|
|
2221
1839
|
} | undefined;
|
|
2222
|
-
readonly
|
|
2223
|
-
dimensions: number;
|
|
2224
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2225
|
-
normalized: boolean;
|
|
2226
|
-
indexed: boolean;
|
|
2227
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2228
|
-
} | undefined;
|
|
2229
|
-
readonly fileAttachmentConfig?: {
|
|
2230
|
-
virusScan: boolean;
|
|
2231
|
-
virusScanOnUpload: boolean;
|
|
2232
|
-
quarantineOnThreat: boolean;
|
|
2233
|
-
allowMultiple: boolean;
|
|
2234
|
-
allowReplace: boolean;
|
|
2235
|
-
allowDelete: boolean;
|
|
2236
|
-
requireUpload: boolean;
|
|
2237
|
-
extractMetadata: boolean;
|
|
2238
|
-
extractText: boolean;
|
|
2239
|
-
versioningEnabled: boolean;
|
|
2240
|
-
publicRead: boolean;
|
|
2241
|
-
presignedUrlExpiry: number;
|
|
2242
|
-
minSize?: number | undefined;
|
|
2243
|
-
maxSize?: number | undefined;
|
|
2244
|
-
allowedTypes?: string[] | undefined;
|
|
2245
|
-
blockedTypes?: string[] | undefined;
|
|
2246
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2247
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2248
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2249
|
-
storageProvider?: string | undefined;
|
|
2250
|
-
storageBucket?: string | undefined;
|
|
2251
|
-
storagePrefix?: string | undefined;
|
|
2252
|
-
imageValidation?: {
|
|
2253
|
-
generateThumbnails: boolean;
|
|
2254
|
-
preserveMetadata: boolean;
|
|
2255
|
-
autoRotate: boolean;
|
|
2256
|
-
minWidth?: number | undefined;
|
|
2257
|
-
maxWidth?: number | undefined;
|
|
2258
|
-
minHeight?: number | undefined;
|
|
2259
|
-
maxHeight?: number | undefined;
|
|
2260
|
-
aspectRatio?: string | undefined;
|
|
2261
|
-
thumbnailSizes?: {
|
|
2262
|
-
name: string;
|
|
2263
|
-
width: number;
|
|
2264
|
-
height: number;
|
|
2265
|
-
crop: boolean;
|
|
2266
|
-
}[] | undefined;
|
|
2267
|
-
} | undefined;
|
|
2268
|
-
maxVersions?: number | undefined;
|
|
2269
|
-
} | undefined;
|
|
1840
|
+
readonly dimensions?: number | undefined;
|
|
2270
1841
|
readonly trackHistory?: boolean | undefined;
|
|
2271
1842
|
readonly readonlyWhen?: {
|
|
2272
|
-
dialect: "cel" | "
|
|
1843
|
+
dialect: "cel" | "cron" | "template";
|
|
2273
1844
|
source?: string | undefined;
|
|
2274
1845
|
ast?: unknown;
|
|
2275
1846
|
meta?: {
|
|
@@ -2278,7 +1849,7 @@ declare const SysWebhook: Omit<{
|
|
|
2278
1849
|
} | undefined;
|
|
2279
1850
|
} | undefined;
|
|
2280
1851
|
readonly requiredWhen?: {
|
|
2281
|
-
dialect: "cel" | "
|
|
1852
|
+
dialect: "cel" | "cron" | "template";
|
|
2282
1853
|
source?: string | undefined;
|
|
2283
1854
|
ast?: unknown;
|
|
2284
1855
|
meta?: {
|
|
@@ -2287,7 +1858,7 @@ declare const SysWebhook: Omit<{
|
|
|
2287
1858
|
} | undefined;
|
|
2288
1859
|
} | undefined;
|
|
2289
1860
|
readonly conditionalRequired?: {
|
|
2290
|
-
dialect: "cel" | "
|
|
1861
|
+
dialect: "cel" | "cron" | "template";
|
|
2291
1862
|
source?: string | undefined;
|
|
2292
1863
|
ast?: unknown;
|
|
2293
1864
|
meta?: {
|
|
@@ -2298,7 +1869,6 @@ declare const SysWebhook: Omit<{
|
|
|
2298
1869
|
readonly sortable?: boolean | undefined;
|
|
2299
1870
|
readonly inlineHelpText?: string | undefined;
|
|
2300
1871
|
readonly autonumberFormat?: string | undefined;
|
|
2301
|
-
readonly index?: boolean | undefined;
|
|
2302
1872
|
readonly type: "select";
|
|
2303
1873
|
};
|
|
2304
1874
|
readonly description: {
|
|
@@ -2310,7 +1880,7 @@ declare const SysWebhook: Omit<{
|
|
|
2310
1880
|
color?: string | undefined;
|
|
2311
1881
|
default?: boolean | undefined;
|
|
2312
1882
|
visibleWhen?: {
|
|
2313
|
-
dialect: "cel" | "
|
|
1883
|
+
dialect: "cel" | "cron" | "template";
|
|
2314
1884
|
source?: string | undefined;
|
|
2315
1885
|
ast?: unknown;
|
|
2316
1886
|
meta?: {
|
|
@@ -2327,7 +1897,6 @@ declare const SysWebhook: Omit<{
|
|
|
2327
1897
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2328
1898
|
readonly widget?: string | undefined;
|
|
2329
1899
|
readonly multiple?: boolean | undefined;
|
|
2330
|
-
readonly dependencies?: string[] | undefined;
|
|
2331
1900
|
readonly externalId?: boolean | undefined;
|
|
2332
1901
|
readonly defaultValue?: unknown;
|
|
2333
1902
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -2337,7 +1906,7 @@ declare const SysWebhook: Omit<{
|
|
|
2337
1906
|
readonly min?: number | undefined;
|
|
2338
1907
|
readonly max?: number | undefined;
|
|
2339
1908
|
readonly visibleWhen?: {
|
|
2340
|
-
dialect: "cel" | "
|
|
1909
|
+
dialect: "cel" | "cron" | "template";
|
|
2341
1910
|
source?: string | undefined;
|
|
2342
1911
|
ast?: unknown;
|
|
2343
1912
|
meta?: {
|
|
@@ -2345,15 +1914,12 @@ declare const SysWebhook: Omit<{
|
|
|
2345
1914
|
generatedBy?: string | undefined;
|
|
2346
1915
|
} | undefined;
|
|
2347
1916
|
} | undefined;
|
|
2348
|
-
readonly dimensions?: number | undefined;
|
|
2349
|
-
readonly columnName?: string | undefined;
|
|
2350
1917
|
readonly searchable?: boolean | undefined;
|
|
2351
1918
|
readonly unique?: boolean | undefined;
|
|
2352
1919
|
readonly maxLength?: number | undefined;
|
|
2353
1920
|
readonly minLength?: number | undefined;
|
|
2354
1921
|
readonly scale?: number | undefined;
|
|
2355
1922
|
readonly reference?: string | undefined;
|
|
2356
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2357
1923
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2358
1924
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2359
1925
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2373,7 +1939,7 @@ declare const SysWebhook: Omit<{
|
|
|
2373
1939
|
readonly lookupPageSize?: number | undefined;
|
|
2374
1940
|
readonly lookupFilters?: {
|
|
2375
1941
|
field: string;
|
|
2376
|
-
operator: "in" | "eq" | "ne" | "
|
|
1942
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2377
1943
|
value: any;
|
|
2378
1944
|
}[] | undefined;
|
|
2379
1945
|
readonly dependsOn?: (string | {
|
|
@@ -2382,7 +1948,7 @@ declare const SysWebhook: Omit<{
|
|
|
2382
1948
|
})[] | undefined;
|
|
2383
1949
|
readonly allowCreate?: boolean | undefined;
|
|
2384
1950
|
readonly expression?: {
|
|
2385
|
-
dialect: "cel" | "
|
|
1951
|
+
dialect: "cel" | "cron" | "template";
|
|
2386
1952
|
source?: string | undefined;
|
|
2387
1953
|
ast?: unknown;
|
|
2388
1954
|
meta?: {
|
|
@@ -2395,6 +1961,7 @@ declare const SysWebhook: Omit<{
|
|
|
2395
1961
|
field: string;
|
|
2396
1962
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2397
1963
|
relationshipField?: string | undefined;
|
|
1964
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2398
1965
|
} | undefined;
|
|
2399
1966
|
readonly language?: string | undefined;
|
|
2400
1967
|
readonly step?: number | undefined;
|
|
@@ -2403,57 +1970,10 @@ declare const SysWebhook: Omit<{
|
|
|
2403
1970
|
currencyMode: "fixed" | "dynamic";
|
|
2404
1971
|
defaultCurrency: string;
|
|
2405
1972
|
} | undefined;
|
|
2406
|
-
readonly
|
|
2407
|
-
dimensions: number;
|
|
2408
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2409
|
-
normalized: boolean;
|
|
2410
|
-
indexed: boolean;
|
|
2411
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2412
|
-
} | undefined;
|
|
2413
|
-
readonly fileAttachmentConfig?: {
|
|
2414
|
-
virusScan: boolean;
|
|
2415
|
-
virusScanOnUpload: boolean;
|
|
2416
|
-
quarantineOnThreat: boolean;
|
|
2417
|
-
allowMultiple: boolean;
|
|
2418
|
-
allowReplace: boolean;
|
|
2419
|
-
allowDelete: boolean;
|
|
2420
|
-
requireUpload: boolean;
|
|
2421
|
-
extractMetadata: boolean;
|
|
2422
|
-
extractText: boolean;
|
|
2423
|
-
versioningEnabled: boolean;
|
|
2424
|
-
publicRead: boolean;
|
|
2425
|
-
presignedUrlExpiry: number;
|
|
2426
|
-
minSize?: number | undefined;
|
|
2427
|
-
maxSize?: number | undefined;
|
|
2428
|
-
allowedTypes?: string[] | undefined;
|
|
2429
|
-
blockedTypes?: string[] | undefined;
|
|
2430
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2431
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2432
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2433
|
-
storageProvider?: string | undefined;
|
|
2434
|
-
storageBucket?: string | undefined;
|
|
2435
|
-
storagePrefix?: string | undefined;
|
|
2436
|
-
imageValidation?: {
|
|
2437
|
-
generateThumbnails: boolean;
|
|
2438
|
-
preserveMetadata: boolean;
|
|
2439
|
-
autoRotate: boolean;
|
|
2440
|
-
minWidth?: number | undefined;
|
|
2441
|
-
maxWidth?: number | undefined;
|
|
2442
|
-
minHeight?: number | undefined;
|
|
2443
|
-
maxHeight?: number | undefined;
|
|
2444
|
-
aspectRatio?: string | undefined;
|
|
2445
|
-
thumbnailSizes?: {
|
|
2446
|
-
name: string;
|
|
2447
|
-
width: number;
|
|
2448
|
-
height: number;
|
|
2449
|
-
crop: boolean;
|
|
2450
|
-
}[] | undefined;
|
|
2451
|
-
} | undefined;
|
|
2452
|
-
maxVersions?: number | undefined;
|
|
2453
|
-
} | undefined;
|
|
1973
|
+
readonly dimensions?: number | undefined;
|
|
2454
1974
|
readonly trackHistory?: boolean | undefined;
|
|
2455
1975
|
readonly readonlyWhen?: {
|
|
2456
|
-
dialect: "cel" | "
|
|
1976
|
+
dialect: "cel" | "cron" | "template";
|
|
2457
1977
|
source?: string | undefined;
|
|
2458
1978
|
ast?: unknown;
|
|
2459
1979
|
meta?: {
|
|
@@ -2462,7 +1982,7 @@ declare const SysWebhook: Omit<{
|
|
|
2462
1982
|
} | undefined;
|
|
2463
1983
|
} | undefined;
|
|
2464
1984
|
readonly requiredWhen?: {
|
|
2465
|
-
dialect: "cel" | "
|
|
1985
|
+
dialect: "cel" | "cron" | "template";
|
|
2466
1986
|
source?: string | undefined;
|
|
2467
1987
|
ast?: unknown;
|
|
2468
1988
|
meta?: {
|
|
@@ -2471,7 +1991,7 @@ declare const SysWebhook: Omit<{
|
|
|
2471
1991
|
} | undefined;
|
|
2472
1992
|
} | undefined;
|
|
2473
1993
|
readonly conditionalRequired?: {
|
|
2474
|
-
dialect: "cel" | "
|
|
1994
|
+
dialect: "cel" | "cron" | "template";
|
|
2475
1995
|
source?: string | undefined;
|
|
2476
1996
|
ast?: unknown;
|
|
2477
1997
|
meta?: {
|
|
@@ -2482,7 +2002,6 @@ declare const SysWebhook: Omit<{
|
|
|
2482
2002
|
readonly sortable?: boolean | undefined;
|
|
2483
2003
|
readonly inlineHelpText?: string | undefined;
|
|
2484
2004
|
readonly autonumberFormat?: string | undefined;
|
|
2485
|
-
readonly index?: boolean | undefined;
|
|
2486
2005
|
readonly type: "textarea";
|
|
2487
2006
|
};
|
|
2488
2007
|
readonly active: {
|
|
@@ -2494,7 +2013,7 @@ declare const SysWebhook: Omit<{
|
|
|
2494
2013
|
color?: string | undefined;
|
|
2495
2014
|
default?: boolean | undefined;
|
|
2496
2015
|
visibleWhen?: {
|
|
2497
|
-
dialect: "cel" | "
|
|
2016
|
+
dialect: "cel" | "cron" | "template";
|
|
2498
2017
|
source?: string | undefined;
|
|
2499
2018
|
ast?: unknown;
|
|
2500
2019
|
meta?: {
|
|
@@ -2511,7 +2030,6 @@ declare const SysWebhook: Omit<{
|
|
|
2511
2030
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2512
2031
|
readonly widget?: string | undefined;
|
|
2513
2032
|
readonly multiple?: boolean | undefined;
|
|
2514
|
-
readonly dependencies?: string[] | undefined;
|
|
2515
2033
|
readonly externalId?: boolean | undefined;
|
|
2516
2034
|
readonly defaultValue?: unknown;
|
|
2517
2035
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -2521,7 +2039,7 @@ declare const SysWebhook: Omit<{
|
|
|
2521
2039
|
readonly min?: number | undefined;
|
|
2522
2040
|
readonly max?: number | undefined;
|
|
2523
2041
|
readonly visibleWhen?: {
|
|
2524
|
-
dialect: "cel" | "
|
|
2042
|
+
dialect: "cel" | "cron" | "template";
|
|
2525
2043
|
source?: string | undefined;
|
|
2526
2044
|
ast?: unknown;
|
|
2527
2045
|
meta?: {
|
|
@@ -2529,15 +2047,12 @@ declare const SysWebhook: Omit<{
|
|
|
2529
2047
|
generatedBy?: string | undefined;
|
|
2530
2048
|
} | undefined;
|
|
2531
2049
|
} | undefined;
|
|
2532
|
-
readonly dimensions?: number | undefined;
|
|
2533
|
-
readonly columnName?: string | undefined;
|
|
2534
2050
|
readonly searchable?: boolean | undefined;
|
|
2535
2051
|
readonly unique?: boolean | undefined;
|
|
2536
2052
|
readonly maxLength?: number | undefined;
|
|
2537
2053
|
readonly minLength?: number | undefined;
|
|
2538
2054
|
readonly scale?: number | undefined;
|
|
2539
2055
|
readonly reference?: string | undefined;
|
|
2540
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2541
2056
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2542
2057
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2543
2058
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2557,7 +2072,7 @@ declare const SysWebhook: Omit<{
|
|
|
2557
2072
|
readonly lookupPageSize?: number | undefined;
|
|
2558
2073
|
readonly lookupFilters?: {
|
|
2559
2074
|
field: string;
|
|
2560
|
-
operator: "in" | "eq" | "ne" | "
|
|
2075
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2561
2076
|
value: any;
|
|
2562
2077
|
}[] | undefined;
|
|
2563
2078
|
readonly dependsOn?: (string | {
|
|
@@ -2566,7 +2081,7 @@ declare const SysWebhook: Omit<{
|
|
|
2566
2081
|
})[] | undefined;
|
|
2567
2082
|
readonly allowCreate?: boolean | undefined;
|
|
2568
2083
|
readonly expression?: {
|
|
2569
|
-
dialect: "cel" | "
|
|
2084
|
+
dialect: "cel" | "cron" | "template";
|
|
2570
2085
|
source?: string | undefined;
|
|
2571
2086
|
ast?: unknown;
|
|
2572
2087
|
meta?: {
|
|
@@ -2579,6 +2094,7 @@ declare const SysWebhook: Omit<{
|
|
|
2579
2094
|
field: string;
|
|
2580
2095
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2581
2096
|
relationshipField?: string | undefined;
|
|
2097
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2582
2098
|
} | undefined;
|
|
2583
2099
|
readonly language?: string | undefined;
|
|
2584
2100
|
readonly step?: number | undefined;
|
|
@@ -2587,57 +2103,10 @@ declare const SysWebhook: Omit<{
|
|
|
2587
2103
|
currencyMode: "fixed" | "dynamic";
|
|
2588
2104
|
defaultCurrency: string;
|
|
2589
2105
|
} | undefined;
|
|
2590
|
-
readonly
|
|
2591
|
-
dimensions: number;
|
|
2592
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2593
|
-
normalized: boolean;
|
|
2594
|
-
indexed: boolean;
|
|
2595
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2596
|
-
} | undefined;
|
|
2597
|
-
readonly fileAttachmentConfig?: {
|
|
2598
|
-
virusScan: boolean;
|
|
2599
|
-
virusScanOnUpload: boolean;
|
|
2600
|
-
quarantineOnThreat: boolean;
|
|
2601
|
-
allowMultiple: boolean;
|
|
2602
|
-
allowReplace: boolean;
|
|
2603
|
-
allowDelete: boolean;
|
|
2604
|
-
requireUpload: boolean;
|
|
2605
|
-
extractMetadata: boolean;
|
|
2606
|
-
extractText: boolean;
|
|
2607
|
-
versioningEnabled: boolean;
|
|
2608
|
-
publicRead: boolean;
|
|
2609
|
-
presignedUrlExpiry: number;
|
|
2610
|
-
minSize?: number | undefined;
|
|
2611
|
-
maxSize?: number | undefined;
|
|
2612
|
-
allowedTypes?: string[] | undefined;
|
|
2613
|
-
blockedTypes?: string[] | undefined;
|
|
2614
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2615
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2616
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2617
|
-
storageProvider?: string | undefined;
|
|
2618
|
-
storageBucket?: string | undefined;
|
|
2619
|
-
storagePrefix?: string | undefined;
|
|
2620
|
-
imageValidation?: {
|
|
2621
|
-
generateThumbnails: boolean;
|
|
2622
|
-
preserveMetadata: boolean;
|
|
2623
|
-
autoRotate: boolean;
|
|
2624
|
-
minWidth?: number | undefined;
|
|
2625
|
-
maxWidth?: number | undefined;
|
|
2626
|
-
minHeight?: number | undefined;
|
|
2627
|
-
maxHeight?: number | undefined;
|
|
2628
|
-
aspectRatio?: string | undefined;
|
|
2629
|
-
thumbnailSizes?: {
|
|
2630
|
-
name: string;
|
|
2631
|
-
width: number;
|
|
2632
|
-
height: number;
|
|
2633
|
-
crop: boolean;
|
|
2634
|
-
}[] | undefined;
|
|
2635
|
-
} | undefined;
|
|
2636
|
-
maxVersions?: number | undefined;
|
|
2637
|
-
} | undefined;
|
|
2106
|
+
readonly dimensions?: number | undefined;
|
|
2638
2107
|
readonly trackHistory?: boolean | undefined;
|
|
2639
2108
|
readonly readonlyWhen?: {
|
|
2640
|
-
dialect: "cel" | "
|
|
2109
|
+
dialect: "cel" | "cron" | "template";
|
|
2641
2110
|
source?: string | undefined;
|
|
2642
2111
|
ast?: unknown;
|
|
2643
2112
|
meta?: {
|
|
@@ -2646,7 +2115,7 @@ declare const SysWebhook: Omit<{
|
|
|
2646
2115
|
} | undefined;
|
|
2647
2116
|
} | undefined;
|
|
2648
2117
|
readonly requiredWhen?: {
|
|
2649
|
-
dialect: "cel" | "
|
|
2118
|
+
dialect: "cel" | "cron" | "template";
|
|
2650
2119
|
source?: string | undefined;
|
|
2651
2120
|
ast?: unknown;
|
|
2652
2121
|
meta?: {
|
|
@@ -2655,7 +2124,7 @@ declare const SysWebhook: Omit<{
|
|
|
2655
2124
|
} | undefined;
|
|
2656
2125
|
} | undefined;
|
|
2657
2126
|
readonly conditionalRequired?: {
|
|
2658
|
-
dialect: "cel" | "
|
|
2127
|
+
dialect: "cel" | "cron" | "template";
|
|
2659
2128
|
source?: string | undefined;
|
|
2660
2129
|
ast?: unknown;
|
|
2661
2130
|
meta?: {
|
|
@@ -2666,7 +2135,6 @@ declare const SysWebhook: Omit<{
|
|
|
2666
2135
|
readonly sortable?: boolean | undefined;
|
|
2667
2136
|
readonly inlineHelpText?: string | undefined;
|
|
2668
2137
|
readonly autonumberFormat?: string | undefined;
|
|
2669
|
-
readonly index?: boolean | undefined;
|
|
2670
2138
|
readonly type: "boolean";
|
|
2671
2139
|
};
|
|
2672
2140
|
readonly definition_json: {
|
|
@@ -2678,7 +2146,7 @@ declare const SysWebhook: Omit<{
|
|
|
2678
2146
|
color?: string | undefined;
|
|
2679
2147
|
default?: boolean | undefined;
|
|
2680
2148
|
visibleWhen?: {
|
|
2681
|
-
dialect: "cel" | "
|
|
2149
|
+
dialect: "cel" | "cron" | "template";
|
|
2682
2150
|
source?: string | undefined;
|
|
2683
2151
|
ast?: unknown;
|
|
2684
2152
|
meta?: {
|
|
@@ -2695,7 +2163,6 @@ declare const SysWebhook: Omit<{
|
|
|
2695
2163
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2696
2164
|
readonly widget?: string | undefined;
|
|
2697
2165
|
readonly multiple?: boolean | undefined;
|
|
2698
|
-
readonly dependencies?: string[] | undefined;
|
|
2699
2166
|
readonly externalId?: boolean | undefined;
|
|
2700
2167
|
readonly defaultValue?: unknown;
|
|
2701
2168
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -2705,7 +2172,7 @@ declare const SysWebhook: Omit<{
|
|
|
2705
2172
|
readonly min?: number | undefined;
|
|
2706
2173
|
readonly max?: number | undefined;
|
|
2707
2174
|
readonly visibleWhen?: {
|
|
2708
|
-
dialect: "cel" | "
|
|
2175
|
+
dialect: "cel" | "cron" | "template";
|
|
2709
2176
|
source?: string | undefined;
|
|
2710
2177
|
ast?: unknown;
|
|
2711
2178
|
meta?: {
|
|
@@ -2713,15 +2180,12 @@ declare const SysWebhook: Omit<{
|
|
|
2713
2180
|
generatedBy?: string | undefined;
|
|
2714
2181
|
} | undefined;
|
|
2715
2182
|
} | undefined;
|
|
2716
|
-
readonly dimensions?: number | undefined;
|
|
2717
|
-
readonly columnName?: string | undefined;
|
|
2718
2183
|
readonly searchable?: boolean | undefined;
|
|
2719
2184
|
readonly unique?: boolean | undefined;
|
|
2720
2185
|
readonly maxLength?: number | undefined;
|
|
2721
2186
|
readonly minLength?: number | undefined;
|
|
2722
2187
|
readonly scale?: number | undefined;
|
|
2723
2188
|
readonly reference?: string | undefined;
|
|
2724
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2725
2189
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2726
2190
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2727
2191
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2741,7 +2205,7 @@ declare const SysWebhook: Omit<{
|
|
|
2741
2205
|
readonly lookupPageSize?: number | undefined;
|
|
2742
2206
|
readonly lookupFilters?: {
|
|
2743
2207
|
field: string;
|
|
2744
|
-
operator: "in" | "eq" | "ne" | "
|
|
2208
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2745
2209
|
value: any;
|
|
2746
2210
|
}[] | undefined;
|
|
2747
2211
|
readonly dependsOn?: (string | {
|
|
@@ -2750,7 +2214,7 @@ declare const SysWebhook: Omit<{
|
|
|
2750
2214
|
})[] | undefined;
|
|
2751
2215
|
readonly allowCreate?: boolean | undefined;
|
|
2752
2216
|
readonly expression?: {
|
|
2753
|
-
dialect: "cel" | "
|
|
2217
|
+
dialect: "cel" | "cron" | "template";
|
|
2754
2218
|
source?: string | undefined;
|
|
2755
2219
|
ast?: unknown;
|
|
2756
2220
|
meta?: {
|
|
@@ -2763,6 +2227,7 @@ declare const SysWebhook: Omit<{
|
|
|
2763
2227
|
field: string;
|
|
2764
2228
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2765
2229
|
relationshipField?: string | undefined;
|
|
2230
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2766
2231
|
} | undefined;
|
|
2767
2232
|
readonly language?: string | undefined;
|
|
2768
2233
|
readonly step?: number | undefined;
|
|
@@ -2771,57 +2236,10 @@ declare const SysWebhook: Omit<{
|
|
|
2771
2236
|
currencyMode: "fixed" | "dynamic";
|
|
2772
2237
|
defaultCurrency: string;
|
|
2773
2238
|
} | undefined;
|
|
2774
|
-
readonly
|
|
2775
|
-
dimensions: number;
|
|
2776
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2777
|
-
normalized: boolean;
|
|
2778
|
-
indexed: boolean;
|
|
2779
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2780
|
-
} | undefined;
|
|
2781
|
-
readonly fileAttachmentConfig?: {
|
|
2782
|
-
virusScan: boolean;
|
|
2783
|
-
virusScanOnUpload: boolean;
|
|
2784
|
-
quarantineOnThreat: boolean;
|
|
2785
|
-
allowMultiple: boolean;
|
|
2786
|
-
allowReplace: boolean;
|
|
2787
|
-
allowDelete: boolean;
|
|
2788
|
-
requireUpload: boolean;
|
|
2789
|
-
extractMetadata: boolean;
|
|
2790
|
-
extractText: boolean;
|
|
2791
|
-
versioningEnabled: boolean;
|
|
2792
|
-
publicRead: boolean;
|
|
2793
|
-
presignedUrlExpiry: number;
|
|
2794
|
-
minSize?: number | undefined;
|
|
2795
|
-
maxSize?: number | undefined;
|
|
2796
|
-
allowedTypes?: string[] | undefined;
|
|
2797
|
-
blockedTypes?: string[] | undefined;
|
|
2798
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2799
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2800
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2801
|
-
storageProvider?: string | undefined;
|
|
2802
|
-
storageBucket?: string | undefined;
|
|
2803
|
-
storagePrefix?: string | undefined;
|
|
2804
|
-
imageValidation?: {
|
|
2805
|
-
generateThumbnails: boolean;
|
|
2806
|
-
preserveMetadata: boolean;
|
|
2807
|
-
autoRotate: boolean;
|
|
2808
|
-
minWidth?: number | undefined;
|
|
2809
|
-
maxWidth?: number | undefined;
|
|
2810
|
-
minHeight?: number | undefined;
|
|
2811
|
-
maxHeight?: number | undefined;
|
|
2812
|
-
aspectRatio?: string | undefined;
|
|
2813
|
-
thumbnailSizes?: {
|
|
2814
|
-
name: string;
|
|
2815
|
-
width: number;
|
|
2816
|
-
height: number;
|
|
2817
|
-
crop: boolean;
|
|
2818
|
-
}[] | undefined;
|
|
2819
|
-
} | undefined;
|
|
2820
|
-
maxVersions?: number | undefined;
|
|
2821
|
-
} | undefined;
|
|
2239
|
+
readonly dimensions?: number | undefined;
|
|
2822
2240
|
readonly trackHistory?: boolean | undefined;
|
|
2823
2241
|
readonly readonlyWhen?: {
|
|
2824
|
-
dialect: "cel" | "
|
|
2242
|
+
dialect: "cel" | "cron" | "template";
|
|
2825
2243
|
source?: string | undefined;
|
|
2826
2244
|
ast?: unknown;
|
|
2827
2245
|
meta?: {
|
|
@@ -2830,7 +2248,7 @@ declare const SysWebhook: Omit<{
|
|
|
2830
2248
|
} | undefined;
|
|
2831
2249
|
} | undefined;
|
|
2832
2250
|
readonly requiredWhen?: {
|
|
2833
|
-
dialect: "cel" | "
|
|
2251
|
+
dialect: "cel" | "cron" | "template";
|
|
2834
2252
|
source?: string | undefined;
|
|
2835
2253
|
ast?: unknown;
|
|
2836
2254
|
meta?: {
|
|
@@ -2839,7 +2257,7 @@ declare const SysWebhook: Omit<{
|
|
|
2839
2257
|
} | undefined;
|
|
2840
2258
|
} | undefined;
|
|
2841
2259
|
readonly conditionalRequired?: {
|
|
2842
|
-
dialect: "cel" | "
|
|
2260
|
+
dialect: "cel" | "cron" | "template";
|
|
2843
2261
|
source?: string | undefined;
|
|
2844
2262
|
ast?: unknown;
|
|
2845
2263
|
meta?: {
|
|
@@ -2850,7 +2268,6 @@ declare const SysWebhook: Omit<{
|
|
|
2850
2268
|
readonly sortable?: boolean | undefined;
|
|
2851
2269
|
readonly inlineHelpText?: string | undefined;
|
|
2852
2270
|
readonly autonumberFormat?: string | undefined;
|
|
2853
|
-
readonly index?: boolean | undefined;
|
|
2854
2271
|
readonly type: "textarea";
|
|
2855
2272
|
};
|
|
2856
2273
|
readonly created_at: {
|
|
@@ -2862,7 +2279,7 @@ declare const SysWebhook: Omit<{
|
|
|
2862
2279
|
color?: string | undefined;
|
|
2863
2280
|
default?: boolean | undefined;
|
|
2864
2281
|
visibleWhen?: {
|
|
2865
|
-
dialect: "cel" | "
|
|
2282
|
+
dialect: "cel" | "cron" | "template";
|
|
2866
2283
|
source?: string | undefined;
|
|
2867
2284
|
ast?: unknown;
|
|
2868
2285
|
meta?: {
|
|
@@ -2879,7 +2296,6 @@ declare const SysWebhook: Omit<{
|
|
|
2879
2296
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2880
2297
|
readonly widget?: string | undefined;
|
|
2881
2298
|
readonly multiple?: boolean | undefined;
|
|
2882
|
-
readonly dependencies?: string[] | undefined;
|
|
2883
2299
|
readonly externalId?: boolean | undefined;
|
|
2884
2300
|
readonly defaultValue?: unknown;
|
|
2885
2301
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -2889,7 +2305,7 @@ declare const SysWebhook: Omit<{
|
|
|
2889
2305
|
readonly min?: number | undefined;
|
|
2890
2306
|
readonly max?: number | undefined;
|
|
2891
2307
|
readonly visibleWhen?: {
|
|
2892
|
-
dialect: "cel" | "
|
|
2308
|
+
dialect: "cel" | "cron" | "template";
|
|
2893
2309
|
source?: string | undefined;
|
|
2894
2310
|
ast?: unknown;
|
|
2895
2311
|
meta?: {
|
|
@@ -2897,15 +2313,12 @@ declare const SysWebhook: Omit<{
|
|
|
2897
2313
|
generatedBy?: string | undefined;
|
|
2898
2314
|
} | undefined;
|
|
2899
2315
|
} | undefined;
|
|
2900
|
-
readonly dimensions?: number | undefined;
|
|
2901
|
-
readonly columnName?: string | undefined;
|
|
2902
2316
|
readonly searchable?: boolean | undefined;
|
|
2903
2317
|
readonly unique?: boolean | undefined;
|
|
2904
2318
|
readonly maxLength?: number | undefined;
|
|
2905
2319
|
readonly minLength?: number | undefined;
|
|
2906
2320
|
readonly scale?: number | undefined;
|
|
2907
2321
|
readonly reference?: string | undefined;
|
|
2908
|
-
readonly referenceFilters?: string[] | undefined;
|
|
2909
2322
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2910
2323
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2911
2324
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2925,7 +2338,7 @@ declare const SysWebhook: Omit<{
|
|
|
2925
2338
|
readonly lookupPageSize?: number | undefined;
|
|
2926
2339
|
readonly lookupFilters?: {
|
|
2927
2340
|
field: string;
|
|
2928
|
-
operator: "in" | "eq" | "ne" | "
|
|
2341
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
2929
2342
|
value: any;
|
|
2930
2343
|
}[] | undefined;
|
|
2931
2344
|
readonly dependsOn?: (string | {
|
|
@@ -2934,7 +2347,7 @@ declare const SysWebhook: Omit<{
|
|
|
2934
2347
|
})[] | undefined;
|
|
2935
2348
|
readonly allowCreate?: boolean | undefined;
|
|
2936
2349
|
readonly expression?: {
|
|
2937
|
-
dialect: "cel" | "
|
|
2350
|
+
dialect: "cel" | "cron" | "template";
|
|
2938
2351
|
source?: string | undefined;
|
|
2939
2352
|
ast?: unknown;
|
|
2940
2353
|
meta?: {
|
|
@@ -2947,6 +2360,7 @@ declare const SysWebhook: Omit<{
|
|
|
2947
2360
|
field: string;
|
|
2948
2361
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2949
2362
|
relationshipField?: string | undefined;
|
|
2363
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2950
2364
|
} | undefined;
|
|
2951
2365
|
readonly language?: string | undefined;
|
|
2952
2366
|
readonly step?: number | undefined;
|
|
@@ -2955,57 +2369,10 @@ declare const SysWebhook: Omit<{
|
|
|
2955
2369
|
currencyMode: "fixed" | "dynamic";
|
|
2956
2370
|
defaultCurrency: string;
|
|
2957
2371
|
} | undefined;
|
|
2958
|
-
readonly
|
|
2959
|
-
dimensions: number;
|
|
2960
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
2961
|
-
normalized: boolean;
|
|
2962
|
-
indexed: boolean;
|
|
2963
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
2964
|
-
} | undefined;
|
|
2965
|
-
readonly fileAttachmentConfig?: {
|
|
2966
|
-
virusScan: boolean;
|
|
2967
|
-
virusScanOnUpload: boolean;
|
|
2968
|
-
quarantineOnThreat: boolean;
|
|
2969
|
-
allowMultiple: boolean;
|
|
2970
|
-
allowReplace: boolean;
|
|
2971
|
-
allowDelete: boolean;
|
|
2972
|
-
requireUpload: boolean;
|
|
2973
|
-
extractMetadata: boolean;
|
|
2974
|
-
extractText: boolean;
|
|
2975
|
-
versioningEnabled: boolean;
|
|
2976
|
-
publicRead: boolean;
|
|
2977
|
-
presignedUrlExpiry: number;
|
|
2978
|
-
minSize?: number | undefined;
|
|
2979
|
-
maxSize?: number | undefined;
|
|
2980
|
-
allowedTypes?: string[] | undefined;
|
|
2981
|
-
blockedTypes?: string[] | undefined;
|
|
2982
|
-
allowedMimeTypes?: string[] | undefined;
|
|
2983
|
-
blockedMimeTypes?: string[] | undefined;
|
|
2984
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
2985
|
-
storageProvider?: string | undefined;
|
|
2986
|
-
storageBucket?: string | undefined;
|
|
2987
|
-
storagePrefix?: string | undefined;
|
|
2988
|
-
imageValidation?: {
|
|
2989
|
-
generateThumbnails: boolean;
|
|
2990
|
-
preserveMetadata: boolean;
|
|
2991
|
-
autoRotate: boolean;
|
|
2992
|
-
minWidth?: number | undefined;
|
|
2993
|
-
maxWidth?: number | undefined;
|
|
2994
|
-
minHeight?: number | undefined;
|
|
2995
|
-
maxHeight?: number | undefined;
|
|
2996
|
-
aspectRatio?: string | undefined;
|
|
2997
|
-
thumbnailSizes?: {
|
|
2998
|
-
name: string;
|
|
2999
|
-
width: number;
|
|
3000
|
-
height: number;
|
|
3001
|
-
crop: boolean;
|
|
3002
|
-
}[] | undefined;
|
|
3003
|
-
} | undefined;
|
|
3004
|
-
maxVersions?: number | undefined;
|
|
3005
|
-
} | undefined;
|
|
2372
|
+
readonly dimensions?: number | undefined;
|
|
3006
2373
|
readonly trackHistory?: boolean | undefined;
|
|
3007
2374
|
readonly readonlyWhen?: {
|
|
3008
|
-
dialect: "cel" | "
|
|
2375
|
+
dialect: "cel" | "cron" | "template";
|
|
3009
2376
|
source?: string | undefined;
|
|
3010
2377
|
ast?: unknown;
|
|
3011
2378
|
meta?: {
|
|
@@ -3014,7 +2381,7 @@ declare const SysWebhook: Omit<{
|
|
|
3014
2381
|
} | undefined;
|
|
3015
2382
|
} | undefined;
|
|
3016
2383
|
readonly requiredWhen?: {
|
|
3017
|
-
dialect: "cel" | "
|
|
2384
|
+
dialect: "cel" | "cron" | "template";
|
|
3018
2385
|
source?: string | undefined;
|
|
3019
2386
|
ast?: unknown;
|
|
3020
2387
|
meta?: {
|
|
@@ -3023,7 +2390,7 @@ declare const SysWebhook: Omit<{
|
|
|
3023
2390
|
} | undefined;
|
|
3024
2391
|
} | undefined;
|
|
3025
2392
|
readonly conditionalRequired?: {
|
|
3026
|
-
dialect: "cel" | "
|
|
2393
|
+
dialect: "cel" | "cron" | "template";
|
|
3027
2394
|
source?: string | undefined;
|
|
3028
2395
|
ast?: unknown;
|
|
3029
2396
|
meta?: {
|
|
@@ -3034,7 +2401,6 @@ declare const SysWebhook: Omit<{
|
|
|
3034
2401
|
readonly sortable?: boolean | undefined;
|
|
3035
2402
|
readonly inlineHelpText?: string | undefined;
|
|
3036
2403
|
readonly autonumberFormat?: string | undefined;
|
|
3037
|
-
readonly index?: boolean | undefined;
|
|
3038
2404
|
readonly type: "datetime";
|
|
3039
2405
|
};
|
|
3040
2406
|
readonly updated_at: {
|
|
@@ -3046,7 +2412,7 @@ declare const SysWebhook: Omit<{
|
|
|
3046
2412
|
color?: string | undefined;
|
|
3047
2413
|
default?: boolean | undefined;
|
|
3048
2414
|
visibleWhen?: {
|
|
3049
|
-
dialect: "cel" | "
|
|
2415
|
+
dialect: "cel" | "cron" | "template";
|
|
3050
2416
|
source?: string | undefined;
|
|
3051
2417
|
ast?: unknown;
|
|
3052
2418
|
meta?: {
|
|
@@ -3063,7 +2429,6 @@ declare const SysWebhook: Omit<{
|
|
|
3063
2429
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3064
2430
|
readonly widget?: string | undefined;
|
|
3065
2431
|
readonly multiple?: boolean | undefined;
|
|
3066
|
-
readonly dependencies?: string[] | undefined;
|
|
3067
2432
|
readonly externalId?: boolean | undefined;
|
|
3068
2433
|
readonly defaultValue?: unknown;
|
|
3069
2434
|
readonly requiredPermissions?: string[] | undefined;
|
|
@@ -3073,7 +2438,7 @@ declare const SysWebhook: Omit<{
|
|
|
3073
2438
|
readonly min?: number | undefined;
|
|
3074
2439
|
readonly max?: number | undefined;
|
|
3075
2440
|
readonly visibleWhen?: {
|
|
3076
|
-
dialect: "cel" | "
|
|
2441
|
+
dialect: "cel" | "cron" | "template";
|
|
3077
2442
|
source?: string | undefined;
|
|
3078
2443
|
ast?: unknown;
|
|
3079
2444
|
meta?: {
|
|
@@ -3081,15 +2446,12 @@ declare const SysWebhook: Omit<{
|
|
|
3081
2446
|
generatedBy?: string | undefined;
|
|
3082
2447
|
} | undefined;
|
|
3083
2448
|
} | undefined;
|
|
3084
|
-
readonly dimensions?: number | undefined;
|
|
3085
|
-
readonly columnName?: string | undefined;
|
|
3086
2449
|
readonly searchable?: boolean | undefined;
|
|
3087
2450
|
readonly unique?: boolean | undefined;
|
|
3088
2451
|
readonly maxLength?: number | undefined;
|
|
3089
2452
|
readonly minLength?: number | undefined;
|
|
3090
2453
|
readonly scale?: number | undefined;
|
|
3091
2454
|
readonly reference?: string | undefined;
|
|
3092
|
-
readonly referenceFilters?: string[] | undefined;
|
|
3093
2455
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3094
2456
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3095
2457
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3109,7 +2471,7 @@ declare const SysWebhook: Omit<{
|
|
|
3109
2471
|
readonly lookupPageSize?: number | undefined;
|
|
3110
2472
|
readonly lookupFilters?: {
|
|
3111
2473
|
field: string;
|
|
3112
|
-
operator: "in" | "eq" | "ne" | "
|
|
2474
|
+
operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
|
|
3113
2475
|
value: any;
|
|
3114
2476
|
}[] | undefined;
|
|
3115
2477
|
readonly dependsOn?: (string | {
|
|
@@ -3118,7 +2480,7 @@ declare const SysWebhook: Omit<{
|
|
|
3118
2480
|
})[] | undefined;
|
|
3119
2481
|
readonly allowCreate?: boolean | undefined;
|
|
3120
2482
|
readonly expression?: {
|
|
3121
|
-
dialect: "cel" | "
|
|
2483
|
+
dialect: "cel" | "cron" | "template";
|
|
3122
2484
|
source?: string | undefined;
|
|
3123
2485
|
ast?: unknown;
|
|
3124
2486
|
meta?: {
|
|
@@ -3131,6 +2493,7 @@ declare const SysWebhook: Omit<{
|
|
|
3131
2493
|
field: string;
|
|
3132
2494
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3133
2495
|
relationshipField?: string | undefined;
|
|
2496
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3134
2497
|
} | undefined;
|
|
3135
2498
|
readonly language?: string | undefined;
|
|
3136
2499
|
readonly step?: number | undefined;
|
|
@@ -3139,57 +2502,10 @@ declare const SysWebhook: Omit<{
|
|
|
3139
2502
|
currencyMode: "fixed" | "dynamic";
|
|
3140
2503
|
defaultCurrency: string;
|
|
3141
2504
|
} | undefined;
|
|
3142
|
-
readonly
|
|
3143
|
-
dimensions: number;
|
|
3144
|
-
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3145
|
-
normalized: boolean;
|
|
3146
|
-
indexed: boolean;
|
|
3147
|
-
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3148
|
-
} | undefined;
|
|
3149
|
-
readonly fileAttachmentConfig?: {
|
|
3150
|
-
virusScan: boolean;
|
|
3151
|
-
virusScanOnUpload: boolean;
|
|
3152
|
-
quarantineOnThreat: boolean;
|
|
3153
|
-
allowMultiple: boolean;
|
|
3154
|
-
allowReplace: boolean;
|
|
3155
|
-
allowDelete: boolean;
|
|
3156
|
-
requireUpload: boolean;
|
|
3157
|
-
extractMetadata: boolean;
|
|
3158
|
-
extractText: boolean;
|
|
3159
|
-
versioningEnabled: boolean;
|
|
3160
|
-
publicRead: boolean;
|
|
3161
|
-
presignedUrlExpiry: number;
|
|
3162
|
-
minSize?: number | undefined;
|
|
3163
|
-
maxSize?: number | undefined;
|
|
3164
|
-
allowedTypes?: string[] | undefined;
|
|
3165
|
-
blockedTypes?: string[] | undefined;
|
|
3166
|
-
allowedMimeTypes?: string[] | undefined;
|
|
3167
|
-
blockedMimeTypes?: string[] | undefined;
|
|
3168
|
-
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3169
|
-
storageProvider?: string | undefined;
|
|
3170
|
-
storageBucket?: string | undefined;
|
|
3171
|
-
storagePrefix?: string | undefined;
|
|
3172
|
-
imageValidation?: {
|
|
3173
|
-
generateThumbnails: boolean;
|
|
3174
|
-
preserveMetadata: boolean;
|
|
3175
|
-
autoRotate: boolean;
|
|
3176
|
-
minWidth?: number | undefined;
|
|
3177
|
-
maxWidth?: number | undefined;
|
|
3178
|
-
minHeight?: number | undefined;
|
|
3179
|
-
maxHeight?: number | undefined;
|
|
3180
|
-
aspectRatio?: string | undefined;
|
|
3181
|
-
thumbnailSizes?: {
|
|
3182
|
-
name: string;
|
|
3183
|
-
width: number;
|
|
3184
|
-
height: number;
|
|
3185
|
-
crop: boolean;
|
|
3186
|
-
}[] | undefined;
|
|
3187
|
-
} | undefined;
|
|
3188
|
-
maxVersions?: number | undefined;
|
|
3189
|
-
} | undefined;
|
|
2505
|
+
readonly dimensions?: number | undefined;
|
|
3190
2506
|
readonly trackHistory?: boolean | undefined;
|
|
3191
2507
|
readonly readonlyWhen?: {
|
|
3192
|
-
dialect: "cel" | "
|
|
2508
|
+
dialect: "cel" | "cron" | "template";
|
|
3193
2509
|
source?: string | undefined;
|
|
3194
2510
|
ast?: unknown;
|
|
3195
2511
|
meta?: {
|
|
@@ -3198,7 +2514,7 @@ declare const SysWebhook: Omit<{
|
|
|
3198
2514
|
} | undefined;
|
|
3199
2515
|
} | undefined;
|
|
3200
2516
|
readonly requiredWhen?: {
|
|
3201
|
-
dialect: "cel" | "
|
|
2517
|
+
dialect: "cel" | "cron" | "template";
|
|
3202
2518
|
source?: string | undefined;
|
|
3203
2519
|
ast?: unknown;
|
|
3204
2520
|
meta?: {
|
|
@@ -3207,7 +2523,7 @@ declare const SysWebhook: Omit<{
|
|
|
3207
2523
|
} | undefined;
|
|
3208
2524
|
} | undefined;
|
|
3209
2525
|
readonly conditionalRequired?: {
|
|
3210
|
-
dialect: "cel" | "
|
|
2526
|
+
dialect: "cel" | "cron" | "template";
|
|
3211
2527
|
source?: string | undefined;
|
|
3212
2528
|
ast?: unknown;
|
|
3213
2529
|
meta?: {
|
|
@@ -3218,7 +2534,6 @@ declare const SysWebhook: Omit<{
|
|
|
3218
2534
|
readonly sortable?: boolean | undefined;
|
|
3219
2535
|
readonly inlineHelpText?: string | undefined;
|
|
3220
2536
|
readonly autonumberFormat?: string | undefined;
|
|
3221
|
-
readonly index?: boolean | undefined;
|
|
3222
2537
|
readonly type: "datetime";
|
|
3223
2538
|
};
|
|
3224
2539
|
};
|