@objectstack/platform-objects 13.0.0 → 14.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +1 -1
- package/dist/apps/index.d.ts +1 -1
- package/dist/apps/index.js +7 -6
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +7 -6
- package/dist/apps/index.mjs.map +1 -1
- package/dist/identity/index.d.mts +668 -39
- package/dist/identity/index.d.ts +668 -39
- package/dist/identity/index.js +120 -3
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +120 -3
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +258 -265
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +258 -266
- package/dist/index.mjs.map +1 -1
- package/dist/metadata-translations/index.js +20 -256
- package/dist/metadata-translations/index.js.map +1 -1
- package/dist/metadata-translations/index.mjs +20 -256
- package/dist/metadata-translations/index.mjs.map +1 -1
- package/dist/pages/index.d.mts +34 -3
- package/dist/pages/index.d.ts +34 -3
- package/dist/pages/index.js +111 -0
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs +111 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +25 -260
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +25 -260
- package/dist/plugin.mjs.map +1 -1
- package/package.json +3 -3
package/dist/identity/index.d.ts
CHANGED
|
@@ -857,6 +857,61 @@ declare const SysUser: Omit<{
|
|
|
857
857
|
readonly recordIdParam: "userId";
|
|
858
858
|
readonly successMessage: "Account unlocked";
|
|
859
859
|
readonly refreshAfter: true;
|
|
860
|
+
}, {
|
|
861
|
+
readonly name: "create_user";
|
|
862
|
+
readonly label: "Create User";
|
|
863
|
+
readonly icon: "user-plus";
|
|
864
|
+
readonly variant: "secondary";
|
|
865
|
+
readonly locations: ["list_toolbar"];
|
|
866
|
+
readonly type: "api";
|
|
867
|
+
readonly target: "/api/v1/auth/admin/create-user";
|
|
868
|
+
readonly visible: "features.admin == true";
|
|
869
|
+
readonly successMessage: "User created";
|
|
870
|
+
readonly refreshAfter: true;
|
|
871
|
+
readonly params: [{
|
|
872
|
+
readonly field: "email";
|
|
873
|
+
readonly required: false;
|
|
874
|
+
}, {
|
|
875
|
+
readonly name: "phoneNumber";
|
|
876
|
+
readonly label: "Phone Number";
|
|
877
|
+
readonly type: "text";
|
|
878
|
+
readonly required: false;
|
|
879
|
+
readonly helpText: "Sign-in phone number (E.164, e.g. +8613800000000). Required when no email is given.";
|
|
880
|
+
}, {
|
|
881
|
+
readonly field: "name";
|
|
882
|
+
readonly required: false;
|
|
883
|
+
}, {
|
|
884
|
+
readonly name: "generatePassword";
|
|
885
|
+
readonly label: "Generate Temporary Password";
|
|
886
|
+
readonly type: "boolean";
|
|
887
|
+
readonly required: false;
|
|
888
|
+
readonly defaultValue: true;
|
|
889
|
+
}, {
|
|
890
|
+
readonly name: "password";
|
|
891
|
+
readonly label: "Password (leave empty to generate)";
|
|
892
|
+
readonly type: "text";
|
|
893
|
+
readonly required: false;
|
|
894
|
+
}, {
|
|
895
|
+
readonly name: "mustChangePassword";
|
|
896
|
+
readonly label: "Require Password Change On First Login";
|
|
897
|
+
readonly type: "boolean";
|
|
898
|
+
readonly required: false;
|
|
899
|
+
readonly defaultValue: true;
|
|
900
|
+
}];
|
|
901
|
+
readonly resultDialog: {
|
|
902
|
+
readonly title: "User Created";
|
|
903
|
+
readonly description: "Copy the temporary password now — it is shown only once and never stored.";
|
|
904
|
+
readonly acknowledge: "I have saved this password";
|
|
905
|
+
readonly fields: [{
|
|
906
|
+
readonly path: "user.email";
|
|
907
|
+
readonly label: "Email";
|
|
908
|
+
readonly format: "text";
|
|
909
|
+
}, {
|
|
910
|
+
readonly path: "temporaryPassword";
|
|
911
|
+
readonly label: "Temporary Password";
|
|
912
|
+
readonly format: "secret";
|
|
913
|
+
}];
|
|
914
|
+
};
|
|
860
915
|
}, {
|
|
861
916
|
readonly name: "set_user_password";
|
|
862
917
|
readonly label: "Set Password";
|
|
@@ -869,11 +924,33 @@ declare const SysUser: Omit<{
|
|
|
869
924
|
readonly successMessage: "Password updated";
|
|
870
925
|
readonly refreshAfter: false;
|
|
871
926
|
readonly params: [{
|
|
927
|
+
readonly name: "generatePassword";
|
|
928
|
+
readonly label: "Generate Temporary Password";
|
|
929
|
+
readonly type: "boolean";
|
|
930
|
+
readonly required: false;
|
|
931
|
+
readonly defaultValue: false;
|
|
932
|
+
}, {
|
|
872
933
|
readonly name: "newPassword";
|
|
873
|
-
readonly label: "New Password";
|
|
934
|
+
readonly label: "New Password (leave empty to generate)";
|
|
874
935
|
readonly type: "text";
|
|
875
|
-
readonly required:
|
|
936
|
+
readonly required: false;
|
|
937
|
+
}, {
|
|
938
|
+
readonly name: "mustChangePassword";
|
|
939
|
+
readonly label: "Require Password Change On Next Login";
|
|
940
|
+
readonly type: "boolean";
|
|
941
|
+
readonly required: false;
|
|
942
|
+
readonly defaultValue: true;
|
|
876
943
|
}];
|
|
944
|
+
readonly resultDialog: {
|
|
945
|
+
readonly title: "Password Updated";
|
|
946
|
+
readonly description: "If a temporary password was generated, copy it now — it is shown only once and never stored.";
|
|
947
|
+
readonly acknowledge: "Done";
|
|
948
|
+
readonly fields: [{
|
|
949
|
+
readonly path: "temporaryPassword";
|
|
950
|
+
readonly label: "Temporary Password";
|
|
951
|
+
readonly format: "secret";
|
|
952
|
+
}];
|
|
953
|
+
};
|
|
877
954
|
}, {
|
|
878
955
|
readonly name: "set_user_role";
|
|
879
956
|
readonly label: "Set Platform Role";
|
|
@@ -3175,7 +3252,7 @@ declare const SysUser: Omit<{
|
|
|
3175
3252
|
readonly index?: boolean | undefined;
|
|
3176
3253
|
readonly type: "datetime";
|
|
3177
3254
|
};
|
|
3178
|
-
readonly
|
|
3255
|
+
readonly phone_number: {
|
|
3179
3256
|
readonly readonly?: boolean | undefined;
|
|
3180
3257
|
readonly format?: string | undefined;
|
|
3181
3258
|
readonly options?: {
|
|
@@ -3356,9 +3433,9 @@ declare const SysUser: Omit<{
|
|
|
3356
3433
|
readonly inlineHelpText?: string | undefined;
|
|
3357
3434
|
readonly autonumberFormat?: string | undefined;
|
|
3358
3435
|
readonly index?: boolean | undefined;
|
|
3359
|
-
readonly type: "
|
|
3436
|
+
readonly type: "text";
|
|
3360
3437
|
};
|
|
3361
|
-
readonly
|
|
3438
|
+
readonly phone_number_verified: {
|
|
3362
3439
|
readonly readonly?: boolean | undefined;
|
|
3363
3440
|
readonly format?: string | undefined;
|
|
3364
3441
|
readonly options?: {
|
|
@@ -3539,9 +3616,9 @@ declare const SysUser: Omit<{
|
|
|
3539
3616
|
readonly inlineHelpText?: string | undefined;
|
|
3540
3617
|
readonly autonumberFormat?: string | undefined;
|
|
3541
3618
|
readonly index?: boolean | undefined;
|
|
3542
|
-
readonly type: "
|
|
3619
|
+
readonly type: "boolean";
|
|
3543
3620
|
};
|
|
3544
|
-
readonly
|
|
3621
|
+
readonly must_change_password: {
|
|
3545
3622
|
readonly readonly?: boolean | undefined;
|
|
3546
3623
|
readonly format?: string | undefined;
|
|
3547
3624
|
readonly options?: {
|
|
@@ -3722,9 +3799,9 @@ declare const SysUser: Omit<{
|
|
|
3722
3799
|
readonly inlineHelpText?: string | undefined;
|
|
3723
3800
|
readonly autonumberFormat?: string | undefined;
|
|
3724
3801
|
readonly index?: boolean | undefined;
|
|
3725
|
-
readonly type: "
|
|
3802
|
+
readonly type: "boolean";
|
|
3726
3803
|
};
|
|
3727
|
-
readonly
|
|
3804
|
+
readonly mfa_required_at: {
|
|
3728
3805
|
readonly readonly?: boolean | undefined;
|
|
3729
3806
|
readonly format?: string | undefined;
|
|
3730
3807
|
readonly options?: {
|
|
@@ -3905,9 +3982,9 @@ declare const SysUser: Omit<{
|
|
|
3905
3982
|
readonly inlineHelpText?: string | undefined;
|
|
3906
3983
|
readonly autonumberFormat?: string | undefined;
|
|
3907
3984
|
readonly index?: boolean | undefined;
|
|
3908
|
-
readonly type: "
|
|
3985
|
+
readonly type: "datetime";
|
|
3909
3986
|
};
|
|
3910
|
-
readonly
|
|
3987
|
+
readonly last_login_at: {
|
|
3911
3988
|
readonly readonly?: boolean | undefined;
|
|
3912
3989
|
readonly format?: string | undefined;
|
|
3913
3990
|
readonly options?: {
|
|
@@ -4088,9 +4165,9 @@ declare const SysUser: Omit<{
|
|
|
4088
4165
|
readonly inlineHelpText?: string | undefined;
|
|
4089
4166
|
readonly autonumberFormat?: string | undefined;
|
|
4090
4167
|
readonly index?: boolean | undefined;
|
|
4091
|
-
readonly type: "
|
|
4168
|
+
readonly type: "datetime";
|
|
4092
4169
|
};
|
|
4093
|
-
readonly
|
|
4170
|
+
readonly last_login_ip: {
|
|
4094
4171
|
readonly readonly?: boolean | undefined;
|
|
4095
4172
|
readonly format?: string | undefined;
|
|
4096
4173
|
readonly options?: {
|
|
@@ -4140,7 +4217,7 @@ declare const SysUser: Omit<{
|
|
|
4140
4217
|
readonly maxLength?: number | undefined;
|
|
4141
4218
|
readonly minLength?: number | undefined;
|
|
4142
4219
|
readonly scale?: number | undefined;
|
|
4143
|
-
reference
|
|
4220
|
+
readonly reference?: string | undefined;
|
|
4144
4221
|
readonly referenceFilters?: string[] | undefined;
|
|
4145
4222
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4146
4223
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4271,9 +4348,9 @@ declare const SysUser: Omit<{
|
|
|
4271
4348
|
readonly inlineHelpText?: string | undefined;
|
|
4272
4349
|
readonly autonumberFormat?: string | undefined;
|
|
4273
4350
|
readonly index?: boolean | undefined;
|
|
4274
|
-
readonly type: "
|
|
4351
|
+
readonly type: "text";
|
|
4275
4352
|
};
|
|
4276
|
-
readonly
|
|
4353
|
+
readonly ai_access: {
|
|
4277
4354
|
readonly readonly?: boolean | undefined;
|
|
4278
4355
|
readonly format?: string | undefined;
|
|
4279
4356
|
readonly options?: {
|
|
@@ -4323,7 +4400,7 @@ declare const SysUser: Omit<{
|
|
|
4323
4400
|
readonly maxLength?: number | undefined;
|
|
4324
4401
|
readonly minLength?: number | undefined;
|
|
4325
4402
|
readonly scale?: number | undefined;
|
|
4326
|
-
reference
|
|
4403
|
+
readonly reference?: string | undefined;
|
|
4327
4404
|
readonly referenceFilters?: string[] | undefined;
|
|
4328
4405
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4329
4406
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4454,12 +4531,12 @@ declare const SysUser: Omit<{
|
|
|
4454
4531
|
readonly inlineHelpText?: string | undefined;
|
|
4455
4532
|
readonly autonumberFormat?: string | undefined;
|
|
4456
4533
|
readonly index?: boolean | undefined;
|
|
4457
|
-
readonly type: "
|
|
4534
|
+
readonly type: "boolean";
|
|
4458
4535
|
};
|
|
4459
|
-
readonly
|
|
4536
|
+
readonly image: {
|
|
4460
4537
|
readonly readonly?: boolean | undefined;
|
|
4461
4538
|
readonly format?: string | undefined;
|
|
4462
|
-
options
|
|
4539
|
+
readonly options?: {
|
|
4463
4540
|
label: string;
|
|
4464
4541
|
value: string;
|
|
4465
4542
|
color?: string | undefined;
|
|
@@ -4473,7 +4550,7 @@ declare const SysUser: Omit<{
|
|
|
4473
4550
|
generatedBy?: string | undefined;
|
|
4474
4551
|
} | undefined;
|
|
4475
4552
|
} | undefined;
|
|
4476
|
-
}[];
|
|
4553
|
+
}[] | undefined;
|
|
4477
4554
|
readonly description?: string | undefined;
|
|
4478
4555
|
readonly label?: string | undefined;
|
|
4479
4556
|
readonly name?: string | undefined;
|
|
@@ -4637,9 +4714,9 @@ declare const SysUser: Omit<{
|
|
|
4637
4714
|
readonly inlineHelpText?: string | undefined;
|
|
4638
4715
|
readonly autonumberFormat?: string | undefined;
|
|
4639
4716
|
readonly index?: boolean | undefined;
|
|
4640
|
-
readonly type: "
|
|
4717
|
+
readonly type: "url";
|
|
4641
4718
|
};
|
|
4642
|
-
readonly
|
|
4719
|
+
readonly manager_id: {
|
|
4643
4720
|
readonly readonly?: boolean | undefined;
|
|
4644
4721
|
readonly format?: string | undefined;
|
|
4645
4722
|
readonly options?: {
|
|
@@ -4689,7 +4766,7 @@ declare const SysUser: Omit<{
|
|
|
4689
4766
|
readonly maxLength?: number | undefined;
|
|
4690
4767
|
readonly minLength?: number | undefined;
|
|
4691
4768
|
readonly scale?: number | undefined;
|
|
4692
|
-
|
|
4769
|
+
reference: string;
|
|
4693
4770
|
readonly referenceFilters?: string[] | undefined;
|
|
4694
4771
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4695
4772
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4820,9 +4897,9 @@ declare const SysUser: Omit<{
|
|
|
4820
4897
|
readonly inlineHelpText?: string | undefined;
|
|
4821
4898
|
readonly autonumberFormat?: string | undefined;
|
|
4822
4899
|
readonly index?: boolean | undefined;
|
|
4823
|
-
readonly type: "
|
|
4900
|
+
readonly type: "lookup";
|
|
4824
4901
|
};
|
|
4825
|
-
readonly
|
|
4902
|
+
readonly primary_business_unit_id: {
|
|
4826
4903
|
readonly readonly?: boolean | undefined;
|
|
4827
4904
|
readonly format?: string | undefined;
|
|
4828
4905
|
readonly options?: {
|
|
@@ -4872,7 +4949,7 @@ declare const SysUser: Omit<{
|
|
|
4872
4949
|
readonly maxLength?: number | undefined;
|
|
4873
4950
|
readonly minLength?: number | undefined;
|
|
4874
4951
|
readonly scale?: number | undefined;
|
|
4875
|
-
|
|
4952
|
+
reference: string;
|
|
4876
4953
|
readonly referenceFilters?: string[] | undefined;
|
|
4877
4954
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4878
4955
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -5003,12 +5080,12 @@ declare const SysUser: Omit<{
|
|
|
5003
5080
|
readonly inlineHelpText?: string | undefined;
|
|
5004
5081
|
readonly autonumberFormat?: string | undefined;
|
|
5005
5082
|
readonly index?: boolean | undefined;
|
|
5006
|
-
readonly type: "
|
|
5083
|
+
readonly type: "lookup";
|
|
5007
5084
|
};
|
|
5008
|
-
readonly
|
|
5085
|
+
readonly source: {
|
|
5009
5086
|
readonly readonly?: boolean | undefined;
|
|
5010
5087
|
readonly format?: string | undefined;
|
|
5011
|
-
|
|
5088
|
+
options: {
|
|
5012
5089
|
label: string;
|
|
5013
5090
|
value: string;
|
|
5014
5091
|
color?: string | undefined;
|
|
@@ -5022,7 +5099,7 @@ declare const SysUser: Omit<{
|
|
|
5022
5099
|
generatedBy?: string | undefined;
|
|
5023
5100
|
} | undefined;
|
|
5024
5101
|
} | undefined;
|
|
5025
|
-
}[]
|
|
5102
|
+
}[];
|
|
5026
5103
|
readonly description?: string | undefined;
|
|
5027
5104
|
readonly label?: string | undefined;
|
|
5028
5105
|
readonly name?: string | undefined;
|
|
@@ -5186,15 +5263,567 @@ declare const SysUser: Omit<{
|
|
|
5186
5263
|
readonly inlineHelpText?: string | undefined;
|
|
5187
5264
|
readonly autonumberFormat?: string | undefined;
|
|
5188
5265
|
readonly index?: boolean | undefined;
|
|
5189
|
-
readonly type: "
|
|
5266
|
+
readonly type: "select";
|
|
5190
5267
|
};
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5268
|
+
readonly id: {
|
|
5269
|
+
readonly readonly?: boolean | undefined;
|
|
5270
|
+
readonly format?: string | undefined;
|
|
5271
|
+
readonly options?: {
|
|
5272
|
+
label: string;
|
|
5273
|
+
value: string;
|
|
5274
|
+
color?: string | undefined;
|
|
5275
|
+
default?: boolean | undefined;
|
|
5276
|
+
visibleWhen?: {
|
|
5277
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5278
|
+
source?: string | undefined;
|
|
5279
|
+
ast?: unknown;
|
|
5280
|
+
meta?: {
|
|
5281
|
+
rationale?: string | undefined;
|
|
5282
|
+
generatedBy?: string | undefined;
|
|
5283
|
+
} | undefined;
|
|
5284
|
+
} | undefined;
|
|
5285
|
+
}[] | undefined;
|
|
5286
|
+
readonly description?: string | undefined;
|
|
5287
|
+
readonly label?: string | undefined;
|
|
5288
|
+
readonly name?: string | undefined;
|
|
5289
|
+
readonly precision?: number | undefined;
|
|
5290
|
+
readonly required?: boolean | undefined;
|
|
5291
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5292
|
+
readonly multiple?: boolean | undefined;
|
|
5293
|
+
readonly dependencies?: string[] | undefined;
|
|
5294
|
+
readonly externalId?: boolean | undefined;
|
|
5295
|
+
readonly defaultValue?: unknown;
|
|
5296
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5297
|
+
readonly group?: string | undefined;
|
|
5298
|
+
readonly hidden?: boolean | undefined;
|
|
5299
|
+
readonly system?: boolean | undefined;
|
|
5300
|
+
readonly min?: number | undefined;
|
|
5301
|
+
readonly max?: number | undefined;
|
|
5302
|
+
readonly visibleWhen?: {
|
|
5303
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5304
|
+
source?: string | undefined;
|
|
5305
|
+
ast?: unknown;
|
|
5306
|
+
meta?: {
|
|
5307
|
+
rationale?: string | undefined;
|
|
5308
|
+
generatedBy?: string | undefined;
|
|
5309
|
+
} | undefined;
|
|
5310
|
+
} | undefined;
|
|
5311
|
+
readonly dimensions?: number | undefined;
|
|
5312
|
+
readonly columnName?: string | undefined;
|
|
5313
|
+
readonly searchable?: boolean | undefined;
|
|
5314
|
+
readonly unique?: boolean | undefined;
|
|
5315
|
+
readonly maxLength?: number | undefined;
|
|
5316
|
+
readonly minLength?: number | undefined;
|
|
5317
|
+
readonly scale?: number | undefined;
|
|
5318
|
+
readonly reference?: string | undefined;
|
|
5319
|
+
readonly referenceFilters?: string[] | undefined;
|
|
5320
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5321
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5322
|
+
readonly inlineTitle?: string | undefined;
|
|
5323
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5324
|
+
readonly inlineAmountField?: string | undefined;
|
|
5325
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5326
|
+
readonly relatedListTitle?: string | undefined;
|
|
5327
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5328
|
+
readonly displayField?: string | undefined;
|
|
5329
|
+
readonly descriptionField?: string | undefined;
|
|
5330
|
+
readonly lookupColumns?: (string | {
|
|
5331
|
+
field: string;
|
|
5332
|
+
label?: string | undefined;
|
|
5333
|
+
width?: string | undefined;
|
|
5334
|
+
type?: string | undefined;
|
|
5335
|
+
})[] | undefined;
|
|
5336
|
+
readonly lookupPageSize?: number | undefined;
|
|
5337
|
+
readonly lookupFilters?: {
|
|
5338
|
+
field: string;
|
|
5339
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5340
|
+
value: any;
|
|
5341
|
+
}[] | undefined;
|
|
5342
|
+
readonly dependsOn?: (string | {
|
|
5343
|
+
field: string;
|
|
5344
|
+
param?: string | undefined;
|
|
5345
|
+
})[] | undefined;
|
|
5346
|
+
readonly allowCreate?: boolean | undefined;
|
|
5347
|
+
readonly expression?: {
|
|
5348
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5349
|
+
source?: string | undefined;
|
|
5350
|
+
ast?: unknown;
|
|
5351
|
+
meta?: {
|
|
5352
|
+
rationale?: string | undefined;
|
|
5353
|
+
generatedBy?: string | undefined;
|
|
5354
|
+
} | undefined;
|
|
5355
|
+
} | undefined;
|
|
5356
|
+
readonly summaryOperations?: {
|
|
5357
|
+
object: string;
|
|
5358
|
+
field: string;
|
|
5359
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5360
|
+
relationshipField?: string | undefined;
|
|
5361
|
+
} | undefined;
|
|
5362
|
+
readonly language?: string | undefined;
|
|
5363
|
+
readonly step?: number | undefined;
|
|
5364
|
+
readonly currencyConfig?: {
|
|
5365
|
+
precision: number;
|
|
5366
|
+
currencyMode: "fixed" | "dynamic";
|
|
5367
|
+
defaultCurrency: string;
|
|
5368
|
+
} | undefined;
|
|
5369
|
+
readonly vectorConfig?: {
|
|
5370
|
+
dimensions: number;
|
|
5371
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5372
|
+
normalized: boolean;
|
|
5373
|
+
indexed: boolean;
|
|
5374
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5375
|
+
} | undefined;
|
|
5376
|
+
readonly fileAttachmentConfig?: {
|
|
5377
|
+
virusScan: boolean;
|
|
5378
|
+
virusScanOnUpload: boolean;
|
|
5379
|
+
quarantineOnThreat: boolean;
|
|
5380
|
+
allowMultiple: boolean;
|
|
5381
|
+
allowReplace: boolean;
|
|
5382
|
+
allowDelete: boolean;
|
|
5383
|
+
requireUpload: boolean;
|
|
5384
|
+
extractMetadata: boolean;
|
|
5385
|
+
extractText: boolean;
|
|
5386
|
+
versioningEnabled: boolean;
|
|
5387
|
+
publicRead: boolean;
|
|
5388
|
+
presignedUrlExpiry: number;
|
|
5389
|
+
minSize?: number | undefined;
|
|
5390
|
+
maxSize?: number | undefined;
|
|
5391
|
+
allowedTypes?: string[] | undefined;
|
|
5392
|
+
blockedTypes?: string[] | undefined;
|
|
5393
|
+
allowedMimeTypes?: string[] | undefined;
|
|
5394
|
+
blockedMimeTypes?: string[] | undefined;
|
|
5395
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5396
|
+
storageProvider?: string | undefined;
|
|
5397
|
+
storageBucket?: string | undefined;
|
|
5398
|
+
storagePrefix?: string | undefined;
|
|
5399
|
+
imageValidation?: {
|
|
5400
|
+
generateThumbnails: boolean;
|
|
5401
|
+
preserveMetadata: boolean;
|
|
5402
|
+
autoRotate: boolean;
|
|
5403
|
+
minWidth?: number | undefined;
|
|
5404
|
+
maxWidth?: number | undefined;
|
|
5405
|
+
minHeight?: number | undefined;
|
|
5406
|
+
maxHeight?: number | undefined;
|
|
5407
|
+
aspectRatio?: string | undefined;
|
|
5408
|
+
thumbnailSizes?: {
|
|
5409
|
+
name: string;
|
|
5410
|
+
width: number;
|
|
5411
|
+
height: number;
|
|
5412
|
+
crop: boolean;
|
|
5413
|
+
}[] | undefined;
|
|
5414
|
+
} | undefined;
|
|
5415
|
+
maxVersions?: number | undefined;
|
|
5416
|
+
} | undefined;
|
|
5417
|
+
readonly trackHistory?: boolean | undefined;
|
|
5418
|
+
readonly readonlyWhen?: {
|
|
5419
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5420
|
+
source?: string | undefined;
|
|
5421
|
+
ast?: unknown;
|
|
5422
|
+
meta?: {
|
|
5423
|
+
rationale?: string | undefined;
|
|
5424
|
+
generatedBy?: string | undefined;
|
|
5425
|
+
} | undefined;
|
|
5426
|
+
} | undefined;
|
|
5427
|
+
readonly requiredWhen?: {
|
|
5428
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5429
|
+
source?: string | undefined;
|
|
5430
|
+
ast?: unknown;
|
|
5431
|
+
meta?: {
|
|
5432
|
+
rationale?: string | undefined;
|
|
5433
|
+
generatedBy?: string | undefined;
|
|
5434
|
+
} | undefined;
|
|
5435
|
+
} | undefined;
|
|
5436
|
+
readonly conditionalRequired?: {
|
|
5437
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5438
|
+
source?: string | undefined;
|
|
5439
|
+
ast?: unknown;
|
|
5440
|
+
meta?: {
|
|
5441
|
+
rationale?: string | undefined;
|
|
5442
|
+
generatedBy?: string | undefined;
|
|
5443
|
+
} | undefined;
|
|
5444
|
+
} | undefined;
|
|
5445
|
+
readonly sortable?: boolean | undefined;
|
|
5446
|
+
readonly inlineHelpText?: string | undefined;
|
|
5447
|
+
readonly autonumberFormat?: string | undefined;
|
|
5448
|
+
readonly index?: boolean | undefined;
|
|
5449
|
+
readonly type: "text";
|
|
5450
|
+
};
|
|
5451
|
+
readonly created_at: {
|
|
5452
|
+
readonly readonly?: boolean | undefined;
|
|
5453
|
+
readonly format?: string | undefined;
|
|
5454
|
+
readonly options?: {
|
|
5455
|
+
label: string;
|
|
5456
|
+
value: string;
|
|
5457
|
+
color?: string | undefined;
|
|
5458
|
+
default?: boolean | undefined;
|
|
5459
|
+
visibleWhen?: {
|
|
5460
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5461
|
+
source?: string | undefined;
|
|
5462
|
+
ast?: unknown;
|
|
5463
|
+
meta?: {
|
|
5464
|
+
rationale?: string | undefined;
|
|
5465
|
+
generatedBy?: string | undefined;
|
|
5466
|
+
} | undefined;
|
|
5467
|
+
} | undefined;
|
|
5468
|
+
}[] | undefined;
|
|
5469
|
+
readonly description?: string | undefined;
|
|
5470
|
+
readonly label?: string | undefined;
|
|
5471
|
+
readonly name?: string | undefined;
|
|
5472
|
+
readonly precision?: number | undefined;
|
|
5473
|
+
readonly required?: boolean | undefined;
|
|
5474
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5475
|
+
readonly multiple?: boolean | undefined;
|
|
5476
|
+
readonly dependencies?: string[] | undefined;
|
|
5477
|
+
readonly externalId?: boolean | undefined;
|
|
5478
|
+
readonly defaultValue?: unknown;
|
|
5479
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5480
|
+
readonly group?: string | undefined;
|
|
5481
|
+
readonly hidden?: boolean | undefined;
|
|
5482
|
+
readonly system?: boolean | undefined;
|
|
5483
|
+
readonly min?: number | undefined;
|
|
5484
|
+
readonly max?: number | undefined;
|
|
5485
|
+
readonly visibleWhen?: {
|
|
5486
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5487
|
+
source?: string | undefined;
|
|
5488
|
+
ast?: unknown;
|
|
5489
|
+
meta?: {
|
|
5490
|
+
rationale?: string | undefined;
|
|
5491
|
+
generatedBy?: string | undefined;
|
|
5492
|
+
} | undefined;
|
|
5493
|
+
} | undefined;
|
|
5494
|
+
readonly dimensions?: number | undefined;
|
|
5495
|
+
readonly columnName?: string | undefined;
|
|
5496
|
+
readonly searchable?: boolean | undefined;
|
|
5497
|
+
readonly unique?: boolean | undefined;
|
|
5498
|
+
readonly maxLength?: number | undefined;
|
|
5499
|
+
readonly minLength?: number | undefined;
|
|
5500
|
+
readonly scale?: number | undefined;
|
|
5501
|
+
readonly reference?: string | undefined;
|
|
5502
|
+
readonly referenceFilters?: string[] | undefined;
|
|
5503
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5504
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5505
|
+
readonly inlineTitle?: string | undefined;
|
|
5506
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5507
|
+
readonly inlineAmountField?: string | undefined;
|
|
5508
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5509
|
+
readonly relatedListTitle?: string | undefined;
|
|
5510
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5511
|
+
readonly displayField?: string | undefined;
|
|
5512
|
+
readonly descriptionField?: string | undefined;
|
|
5513
|
+
readonly lookupColumns?: (string | {
|
|
5514
|
+
field: string;
|
|
5515
|
+
label?: string | undefined;
|
|
5516
|
+
width?: string | undefined;
|
|
5517
|
+
type?: string | undefined;
|
|
5518
|
+
})[] | undefined;
|
|
5519
|
+
readonly lookupPageSize?: number | undefined;
|
|
5520
|
+
readonly lookupFilters?: {
|
|
5521
|
+
field: string;
|
|
5522
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5523
|
+
value: any;
|
|
5524
|
+
}[] | undefined;
|
|
5525
|
+
readonly dependsOn?: (string | {
|
|
5526
|
+
field: string;
|
|
5527
|
+
param?: string | undefined;
|
|
5528
|
+
})[] | undefined;
|
|
5529
|
+
readonly allowCreate?: boolean | undefined;
|
|
5530
|
+
readonly expression?: {
|
|
5531
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5532
|
+
source?: string | undefined;
|
|
5533
|
+
ast?: unknown;
|
|
5534
|
+
meta?: {
|
|
5535
|
+
rationale?: string | undefined;
|
|
5536
|
+
generatedBy?: string | undefined;
|
|
5537
|
+
} | undefined;
|
|
5538
|
+
} | undefined;
|
|
5539
|
+
readonly summaryOperations?: {
|
|
5540
|
+
object: string;
|
|
5541
|
+
field: string;
|
|
5542
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5543
|
+
relationshipField?: string | undefined;
|
|
5544
|
+
} | undefined;
|
|
5545
|
+
readonly language?: string | undefined;
|
|
5546
|
+
readonly step?: number | undefined;
|
|
5547
|
+
readonly currencyConfig?: {
|
|
5548
|
+
precision: number;
|
|
5549
|
+
currencyMode: "fixed" | "dynamic";
|
|
5550
|
+
defaultCurrency: string;
|
|
5551
|
+
} | undefined;
|
|
5552
|
+
readonly vectorConfig?: {
|
|
5553
|
+
dimensions: number;
|
|
5554
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5555
|
+
normalized: boolean;
|
|
5556
|
+
indexed: boolean;
|
|
5557
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5558
|
+
} | undefined;
|
|
5559
|
+
readonly fileAttachmentConfig?: {
|
|
5560
|
+
virusScan: boolean;
|
|
5561
|
+
virusScanOnUpload: boolean;
|
|
5562
|
+
quarantineOnThreat: boolean;
|
|
5563
|
+
allowMultiple: boolean;
|
|
5564
|
+
allowReplace: boolean;
|
|
5565
|
+
allowDelete: boolean;
|
|
5566
|
+
requireUpload: boolean;
|
|
5567
|
+
extractMetadata: boolean;
|
|
5568
|
+
extractText: boolean;
|
|
5569
|
+
versioningEnabled: boolean;
|
|
5570
|
+
publicRead: boolean;
|
|
5571
|
+
presignedUrlExpiry: number;
|
|
5572
|
+
minSize?: number | undefined;
|
|
5573
|
+
maxSize?: number | undefined;
|
|
5574
|
+
allowedTypes?: string[] | undefined;
|
|
5575
|
+
blockedTypes?: string[] | undefined;
|
|
5576
|
+
allowedMimeTypes?: string[] | undefined;
|
|
5577
|
+
blockedMimeTypes?: string[] | undefined;
|
|
5578
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5579
|
+
storageProvider?: string | undefined;
|
|
5580
|
+
storageBucket?: string | undefined;
|
|
5581
|
+
storagePrefix?: string | undefined;
|
|
5582
|
+
imageValidation?: {
|
|
5583
|
+
generateThumbnails: boolean;
|
|
5584
|
+
preserveMetadata: boolean;
|
|
5585
|
+
autoRotate: boolean;
|
|
5586
|
+
minWidth?: number | undefined;
|
|
5587
|
+
maxWidth?: number | undefined;
|
|
5588
|
+
minHeight?: number | undefined;
|
|
5589
|
+
maxHeight?: number | undefined;
|
|
5590
|
+
aspectRatio?: string | undefined;
|
|
5591
|
+
thumbnailSizes?: {
|
|
5592
|
+
name: string;
|
|
5593
|
+
width: number;
|
|
5594
|
+
height: number;
|
|
5595
|
+
crop: boolean;
|
|
5596
|
+
}[] | undefined;
|
|
5597
|
+
} | undefined;
|
|
5598
|
+
maxVersions?: number | undefined;
|
|
5599
|
+
} | undefined;
|
|
5600
|
+
readonly trackHistory?: boolean | undefined;
|
|
5601
|
+
readonly readonlyWhen?: {
|
|
5602
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5603
|
+
source?: string | undefined;
|
|
5604
|
+
ast?: unknown;
|
|
5605
|
+
meta?: {
|
|
5606
|
+
rationale?: string | undefined;
|
|
5607
|
+
generatedBy?: string | undefined;
|
|
5608
|
+
} | undefined;
|
|
5609
|
+
} | undefined;
|
|
5610
|
+
readonly requiredWhen?: {
|
|
5611
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5612
|
+
source?: string | undefined;
|
|
5613
|
+
ast?: unknown;
|
|
5614
|
+
meta?: {
|
|
5615
|
+
rationale?: string | undefined;
|
|
5616
|
+
generatedBy?: string | undefined;
|
|
5617
|
+
} | undefined;
|
|
5618
|
+
} | undefined;
|
|
5619
|
+
readonly conditionalRequired?: {
|
|
5620
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5621
|
+
source?: string | undefined;
|
|
5622
|
+
ast?: unknown;
|
|
5623
|
+
meta?: {
|
|
5624
|
+
rationale?: string | undefined;
|
|
5625
|
+
generatedBy?: string | undefined;
|
|
5626
|
+
} | undefined;
|
|
5627
|
+
} | undefined;
|
|
5628
|
+
readonly sortable?: boolean | undefined;
|
|
5629
|
+
readonly inlineHelpText?: string | undefined;
|
|
5630
|
+
readonly autonumberFormat?: string | undefined;
|
|
5631
|
+
readonly index?: boolean | undefined;
|
|
5632
|
+
readonly type: "datetime";
|
|
5633
|
+
};
|
|
5634
|
+
readonly updated_at: {
|
|
5635
|
+
readonly readonly?: boolean | undefined;
|
|
5636
|
+
readonly format?: string | undefined;
|
|
5637
|
+
readonly options?: {
|
|
5638
|
+
label: string;
|
|
5639
|
+
value: string;
|
|
5640
|
+
color?: string | undefined;
|
|
5641
|
+
default?: boolean | undefined;
|
|
5642
|
+
visibleWhen?: {
|
|
5643
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5644
|
+
source?: string | undefined;
|
|
5645
|
+
ast?: unknown;
|
|
5646
|
+
meta?: {
|
|
5647
|
+
rationale?: string | undefined;
|
|
5648
|
+
generatedBy?: string | undefined;
|
|
5649
|
+
} | undefined;
|
|
5650
|
+
} | undefined;
|
|
5651
|
+
}[] | undefined;
|
|
5652
|
+
readonly description?: string | undefined;
|
|
5653
|
+
readonly label?: string | undefined;
|
|
5654
|
+
readonly name?: string | undefined;
|
|
5655
|
+
readonly precision?: number | undefined;
|
|
5656
|
+
readonly required?: boolean | undefined;
|
|
5657
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5658
|
+
readonly multiple?: boolean | undefined;
|
|
5659
|
+
readonly dependencies?: string[] | undefined;
|
|
5660
|
+
readonly externalId?: boolean | undefined;
|
|
5661
|
+
readonly defaultValue?: unknown;
|
|
5662
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5663
|
+
readonly group?: string | undefined;
|
|
5664
|
+
readonly hidden?: boolean | undefined;
|
|
5665
|
+
readonly system?: boolean | undefined;
|
|
5666
|
+
readonly min?: number | undefined;
|
|
5667
|
+
readonly max?: number | undefined;
|
|
5668
|
+
readonly visibleWhen?: {
|
|
5669
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5670
|
+
source?: string | undefined;
|
|
5671
|
+
ast?: unknown;
|
|
5672
|
+
meta?: {
|
|
5673
|
+
rationale?: string | undefined;
|
|
5674
|
+
generatedBy?: string | undefined;
|
|
5675
|
+
} | undefined;
|
|
5676
|
+
} | undefined;
|
|
5677
|
+
readonly dimensions?: number | undefined;
|
|
5678
|
+
readonly columnName?: string | undefined;
|
|
5679
|
+
readonly searchable?: boolean | undefined;
|
|
5680
|
+
readonly unique?: boolean | undefined;
|
|
5681
|
+
readonly maxLength?: number | undefined;
|
|
5682
|
+
readonly minLength?: number | undefined;
|
|
5683
|
+
readonly scale?: number | undefined;
|
|
5684
|
+
readonly reference?: string | undefined;
|
|
5685
|
+
readonly referenceFilters?: string[] | undefined;
|
|
5686
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5687
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5688
|
+
readonly inlineTitle?: string | undefined;
|
|
5689
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5690
|
+
readonly inlineAmountField?: string | undefined;
|
|
5691
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5692
|
+
readonly relatedListTitle?: string | undefined;
|
|
5693
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5694
|
+
readonly displayField?: string | undefined;
|
|
5695
|
+
readonly descriptionField?: string | undefined;
|
|
5696
|
+
readonly lookupColumns?: (string | {
|
|
5697
|
+
field: string;
|
|
5698
|
+
label?: string | undefined;
|
|
5699
|
+
width?: string | undefined;
|
|
5700
|
+
type?: string | undefined;
|
|
5701
|
+
})[] | undefined;
|
|
5702
|
+
readonly lookupPageSize?: number | undefined;
|
|
5703
|
+
readonly lookupFilters?: {
|
|
5704
|
+
field: string;
|
|
5705
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5706
|
+
value: any;
|
|
5707
|
+
}[] | undefined;
|
|
5708
|
+
readonly dependsOn?: (string | {
|
|
5709
|
+
field: string;
|
|
5710
|
+
param?: string | undefined;
|
|
5711
|
+
})[] | undefined;
|
|
5712
|
+
readonly allowCreate?: boolean | undefined;
|
|
5713
|
+
readonly expression?: {
|
|
5714
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5715
|
+
source?: string | undefined;
|
|
5716
|
+
ast?: unknown;
|
|
5717
|
+
meta?: {
|
|
5718
|
+
rationale?: string | undefined;
|
|
5719
|
+
generatedBy?: string | undefined;
|
|
5720
|
+
} | undefined;
|
|
5721
|
+
} | undefined;
|
|
5722
|
+
readonly summaryOperations?: {
|
|
5723
|
+
object: string;
|
|
5724
|
+
field: string;
|
|
5725
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5726
|
+
relationshipField?: string | undefined;
|
|
5727
|
+
} | undefined;
|
|
5728
|
+
readonly language?: string | undefined;
|
|
5729
|
+
readonly step?: number | undefined;
|
|
5730
|
+
readonly currencyConfig?: {
|
|
5731
|
+
precision: number;
|
|
5732
|
+
currencyMode: "fixed" | "dynamic";
|
|
5733
|
+
defaultCurrency: string;
|
|
5734
|
+
} | undefined;
|
|
5735
|
+
readonly vectorConfig?: {
|
|
5736
|
+
dimensions: number;
|
|
5737
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
5738
|
+
normalized: boolean;
|
|
5739
|
+
indexed: boolean;
|
|
5740
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
5741
|
+
} | undefined;
|
|
5742
|
+
readonly fileAttachmentConfig?: {
|
|
5743
|
+
virusScan: boolean;
|
|
5744
|
+
virusScanOnUpload: boolean;
|
|
5745
|
+
quarantineOnThreat: boolean;
|
|
5746
|
+
allowMultiple: boolean;
|
|
5747
|
+
allowReplace: boolean;
|
|
5748
|
+
allowDelete: boolean;
|
|
5749
|
+
requireUpload: boolean;
|
|
5750
|
+
extractMetadata: boolean;
|
|
5751
|
+
extractText: boolean;
|
|
5752
|
+
versioningEnabled: boolean;
|
|
5753
|
+
publicRead: boolean;
|
|
5754
|
+
presignedUrlExpiry: number;
|
|
5755
|
+
minSize?: number | undefined;
|
|
5756
|
+
maxSize?: number | undefined;
|
|
5757
|
+
allowedTypes?: string[] | undefined;
|
|
5758
|
+
blockedTypes?: string[] | undefined;
|
|
5759
|
+
allowedMimeTypes?: string[] | undefined;
|
|
5760
|
+
blockedMimeTypes?: string[] | undefined;
|
|
5761
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
5762
|
+
storageProvider?: string | undefined;
|
|
5763
|
+
storageBucket?: string | undefined;
|
|
5764
|
+
storagePrefix?: string | undefined;
|
|
5765
|
+
imageValidation?: {
|
|
5766
|
+
generateThumbnails: boolean;
|
|
5767
|
+
preserveMetadata: boolean;
|
|
5768
|
+
autoRotate: boolean;
|
|
5769
|
+
minWidth?: number | undefined;
|
|
5770
|
+
maxWidth?: number | undefined;
|
|
5771
|
+
minHeight?: number | undefined;
|
|
5772
|
+
maxHeight?: number | undefined;
|
|
5773
|
+
aspectRatio?: string | undefined;
|
|
5774
|
+
thumbnailSizes?: {
|
|
5775
|
+
name: string;
|
|
5776
|
+
width: number;
|
|
5777
|
+
height: number;
|
|
5778
|
+
crop: boolean;
|
|
5779
|
+
}[] | undefined;
|
|
5780
|
+
} | undefined;
|
|
5781
|
+
maxVersions?: number | undefined;
|
|
5782
|
+
} | undefined;
|
|
5783
|
+
readonly trackHistory?: boolean | undefined;
|
|
5784
|
+
readonly readonlyWhen?: {
|
|
5785
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5786
|
+
source?: string | undefined;
|
|
5787
|
+
ast?: unknown;
|
|
5788
|
+
meta?: {
|
|
5789
|
+
rationale?: string | undefined;
|
|
5790
|
+
generatedBy?: string | undefined;
|
|
5791
|
+
} | undefined;
|
|
5792
|
+
} | undefined;
|
|
5793
|
+
readonly requiredWhen?: {
|
|
5794
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5795
|
+
source?: string | undefined;
|
|
5796
|
+
ast?: unknown;
|
|
5797
|
+
meta?: {
|
|
5798
|
+
rationale?: string | undefined;
|
|
5799
|
+
generatedBy?: string | undefined;
|
|
5800
|
+
} | undefined;
|
|
5801
|
+
} | undefined;
|
|
5802
|
+
readonly conditionalRequired?: {
|
|
5803
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5804
|
+
source?: string | undefined;
|
|
5805
|
+
ast?: unknown;
|
|
5806
|
+
meta?: {
|
|
5807
|
+
rationale?: string | undefined;
|
|
5808
|
+
generatedBy?: string | undefined;
|
|
5809
|
+
} | undefined;
|
|
5810
|
+
} | undefined;
|
|
5811
|
+
readonly sortable?: boolean | undefined;
|
|
5812
|
+
readonly inlineHelpText?: string | undefined;
|
|
5813
|
+
readonly autonumberFormat?: string | undefined;
|
|
5814
|
+
readonly index?: boolean | undefined;
|
|
5815
|
+
readonly type: "datetime";
|
|
5816
|
+
};
|
|
5817
|
+
};
|
|
5818
|
+
readonly indexes: [{
|
|
5819
|
+
readonly fields: ["email"];
|
|
5820
|
+
readonly unique: true;
|
|
5821
|
+
}, {
|
|
5822
|
+
readonly fields: ["created_at"];
|
|
5823
|
+
readonly unique: false;
|
|
5824
|
+
}, {
|
|
5825
|
+
readonly fields: ["phone_number"];
|
|
5826
|
+
readonly unique: true;
|
|
5198
5827
|
}];
|
|
5199
5828
|
readonly enable: {
|
|
5200
5829
|
readonly trackHistory: true;
|