@objectstack/plugin-auth 4.0.1 → 4.0.2
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 +11 -11
- package/CHANGELOG.md +8 -0
- package/dist/index.d.mts +66 -330
- package/dist/index.d.ts +66 -330
- package/dist/index.js +19 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/auth-plugin.ts +24 -4
package/dist/index.d.mts
CHANGED
|
@@ -3006,11 +3006,7 @@ declare const SysUser: Omit<{
|
|
|
3006
3006
|
keyPrefix?: string | undefined;
|
|
3007
3007
|
actions?: {
|
|
3008
3008
|
name: string;
|
|
3009
|
-
label: string
|
|
3010
|
-
key: string;
|
|
3011
|
-
defaultValue?: string | undefined;
|
|
3012
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3013
|
-
};
|
|
3009
|
+
label: string;
|
|
3014
3010
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
3015
3011
|
refreshAfter: boolean;
|
|
3016
3012
|
objectName?: string | undefined;
|
|
@@ -3021,44 +3017,24 @@ declare const SysUser: Omit<{
|
|
|
3021
3017
|
execute?: string | undefined;
|
|
3022
3018
|
params?: {
|
|
3023
3019
|
name: string;
|
|
3024
|
-
label: string
|
|
3025
|
-
key: string;
|
|
3026
|
-
defaultValue?: string | undefined;
|
|
3027
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3028
|
-
};
|
|
3020
|
+
label: string;
|
|
3029
3021
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
3030
3022
|
required: boolean;
|
|
3031
3023
|
options?: {
|
|
3032
|
-
label: string
|
|
3033
|
-
key: string;
|
|
3034
|
-
defaultValue?: string | undefined;
|
|
3035
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3036
|
-
};
|
|
3024
|
+
label: string;
|
|
3037
3025
|
value: string;
|
|
3038
3026
|
}[] | undefined;
|
|
3039
3027
|
}[] | undefined;
|
|
3040
3028
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
3041
|
-
confirmText?: string |
|
|
3042
|
-
|
|
3043
|
-
defaultValue?: string | undefined;
|
|
3044
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3045
|
-
} | undefined;
|
|
3046
|
-
successMessage?: string | {
|
|
3047
|
-
key: string;
|
|
3048
|
-
defaultValue?: string | undefined;
|
|
3049
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3050
|
-
} | undefined;
|
|
3029
|
+
confirmText?: string | undefined;
|
|
3030
|
+
successMessage?: string | undefined;
|
|
3051
3031
|
visible?: string | undefined;
|
|
3052
3032
|
disabled?: string | boolean | undefined;
|
|
3053
3033
|
shortcut?: string | undefined;
|
|
3054
3034
|
bulkEnabled?: boolean | undefined;
|
|
3055
3035
|
timeout?: number | undefined;
|
|
3056
3036
|
aria?: {
|
|
3057
|
-
ariaLabel?: string |
|
|
3058
|
-
key: string;
|
|
3059
|
-
defaultValue?: string | undefined;
|
|
3060
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
3061
|
-
} | undefined;
|
|
3037
|
+
ariaLabel?: string | undefined;
|
|
3062
3038
|
ariaDescribedBy?: string | undefined;
|
|
3063
3039
|
role?: string | undefined;
|
|
3064
3040
|
} | undefined;
|
|
@@ -4481,11 +4457,7 @@ declare const SysSession: Omit<{
|
|
|
4481
4457
|
keyPrefix?: string | undefined;
|
|
4482
4458
|
actions?: {
|
|
4483
4459
|
name: string;
|
|
4484
|
-
label: string
|
|
4485
|
-
key: string;
|
|
4486
|
-
defaultValue?: string | undefined;
|
|
4487
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4488
|
-
};
|
|
4460
|
+
label: string;
|
|
4489
4461
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
4490
4462
|
refreshAfter: boolean;
|
|
4491
4463
|
objectName?: string | undefined;
|
|
@@ -4496,44 +4468,24 @@ declare const SysSession: Omit<{
|
|
|
4496
4468
|
execute?: string | undefined;
|
|
4497
4469
|
params?: {
|
|
4498
4470
|
name: string;
|
|
4499
|
-
label: string
|
|
4500
|
-
key: string;
|
|
4501
|
-
defaultValue?: string | undefined;
|
|
4502
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4503
|
-
};
|
|
4471
|
+
label: string;
|
|
4504
4472
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
4505
4473
|
required: boolean;
|
|
4506
4474
|
options?: {
|
|
4507
|
-
label: string
|
|
4508
|
-
key: string;
|
|
4509
|
-
defaultValue?: string | undefined;
|
|
4510
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4511
|
-
};
|
|
4475
|
+
label: string;
|
|
4512
4476
|
value: string;
|
|
4513
4477
|
}[] | undefined;
|
|
4514
4478
|
}[] | undefined;
|
|
4515
4479
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4516
|
-
confirmText?: string |
|
|
4517
|
-
|
|
4518
|
-
defaultValue?: string | undefined;
|
|
4519
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4520
|
-
} | undefined;
|
|
4521
|
-
successMessage?: string | {
|
|
4522
|
-
key: string;
|
|
4523
|
-
defaultValue?: string | undefined;
|
|
4524
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4525
|
-
} | undefined;
|
|
4480
|
+
confirmText?: string | undefined;
|
|
4481
|
+
successMessage?: string | undefined;
|
|
4526
4482
|
visible?: string | undefined;
|
|
4527
4483
|
disabled?: string | boolean | undefined;
|
|
4528
4484
|
shortcut?: string | undefined;
|
|
4529
4485
|
bulkEnabled?: boolean | undefined;
|
|
4530
4486
|
timeout?: number | undefined;
|
|
4531
4487
|
aria?: {
|
|
4532
|
-
ariaLabel?: string |
|
|
4533
|
-
key: string;
|
|
4534
|
-
defaultValue?: string | undefined;
|
|
4535
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
4536
|
-
} | undefined;
|
|
4488
|
+
ariaLabel?: string | undefined;
|
|
4537
4489
|
ariaDescribedBy?: string | undefined;
|
|
4538
4490
|
role?: string | undefined;
|
|
4539
4491
|
} | undefined;
|
|
@@ -6109,11 +6061,7 @@ declare const SysAccount: Omit<{
|
|
|
6109
6061
|
keyPrefix?: string | undefined;
|
|
6110
6062
|
actions?: {
|
|
6111
6063
|
name: string;
|
|
6112
|
-
label: string
|
|
6113
|
-
key: string;
|
|
6114
|
-
defaultValue?: string | undefined;
|
|
6115
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6116
|
-
};
|
|
6064
|
+
label: string;
|
|
6117
6065
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
6118
6066
|
refreshAfter: boolean;
|
|
6119
6067
|
objectName?: string | undefined;
|
|
@@ -6124,44 +6072,24 @@ declare const SysAccount: Omit<{
|
|
|
6124
6072
|
execute?: string | undefined;
|
|
6125
6073
|
params?: {
|
|
6126
6074
|
name: string;
|
|
6127
|
-
label: string
|
|
6128
|
-
key: string;
|
|
6129
|
-
defaultValue?: string | undefined;
|
|
6130
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6131
|
-
};
|
|
6075
|
+
label: string;
|
|
6132
6076
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
6133
6077
|
required: boolean;
|
|
6134
6078
|
options?: {
|
|
6135
|
-
label: string
|
|
6136
|
-
key: string;
|
|
6137
|
-
defaultValue?: string | undefined;
|
|
6138
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6139
|
-
};
|
|
6079
|
+
label: string;
|
|
6140
6080
|
value: string;
|
|
6141
6081
|
}[] | undefined;
|
|
6142
6082
|
}[] | undefined;
|
|
6143
6083
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
6144
|
-
confirmText?: string |
|
|
6145
|
-
|
|
6146
|
-
defaultValue?: string | undefined;
|
|
6147
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6148
|
-
} | undefined;
|
|
6149
|
-
successMessage?: string | {
|
|
6150
|
-
key: string;
|
|
6151
|
-
defaultValue?: string | undefined;
|
|
6152
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6153
|
-
} | undefined;
|
|
6084
|
+
confirmText?: string | undefined;
|
|
6085
|
+
successMessage?: string | undefined;
|
|
6154
6086
|
visible?: string | undefined;
|
|
6155
6087
|
disabled?: string | boolean | undefined;
|
|
6156
6088
|
shortcut?: string | undefined;
|
|
6157
6089
|
bulkEnabled?: boolean | undefined;
|
|
6158
6090
|
timeout?: number | undefined;
|
|
6159
6091
|
aria?: {
|
|
6160
|
-
ariaLabel?: string |
|
|
6161
|
-
key: string;
|
|
6162
|
-
defaultValue?: string | undefined;
|
|
6163
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
6164
|
-
} | undefined;
|
|
6092
|
+
ariaLabel?: string | undefined;
|
|
6165
6093
|
ariaDescribedBy?: string | undefined;
|
|
6166
6094
|
role?: string | undefined;
|
|
6167
6095
|
} | undefined;
|
|
@@ -8524,11 +8452,7 @@ declare const SysVerification: Omit<{
|
|
|
8524
8452
|
keyPrefix?: string | undefined;
|
|
8525
8453
|
actions?: {
|
|
8526
8454
|
name: string;
|
|
8527
|
-
label: string
|
|
8528
|
-
key: string;
|
|
8529
|
-
defaultValue?: string | undefined;
|
|
8530
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8531
|
-
};
|
|
8455
|
+
label: string;
|
|
8532
8456
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
8533
8457
|
refreshAfter: boolean;
|
|
8534
8458
|
objectName?: string | undefined;
|
|
@@ -8539,44 +8463,24 @@ declare const SysVerification: Omit<{
|
|
|
8539
8463
|
execute?: string | undefined;
|
|
8540
8464
|
params?: {
|
|
8541
8465
|
name: string;
|
|
8542
|
-
label: string
|
|
8543
|
-
key: string;
|
|
8544
|
-
defaultValue?: string | undefined;
|
|
8545
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8546
|
-
};
|
|
8466
|
+
label: string;
|
|
8547
8467
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
8548
8468
|
required: boolean;
|
|
8549
8469
|
options?: {
|
|
8550
|
-
label: string
|
|
8551
|
-
key: string;
|
|
8552
|
-
defaultValue?: string | undefined;
|
|
8553
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8554
|
-
};
|
|
8470
|
+
label: string;
|
|
8555
8471
|
value: string;
|
|
8556
8472
|
}[] | undefined;
|
|
8557
8473
|
}[] | undefined;
|
|
8558
8474
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
8559
|
-
confirmText?: string |
|
|
8560
|
-
|
|
8561
|
-
defaultValue?: string | undefined;
|
|
8562
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8563
|
-
} | undefined;
|
|
8564
|
-
successMessage?: string | {
|
|
8565
|
-
key: string;
|
|
8566
|
-
defaultValue?: string | undefined;
|
|
8567
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8568
|
-
} | undefined;
|
|
8475
|
+
confirmText?: string | undefined;
|
|
8476
|
+
successMessage?: string | undefined;
|
|
8569
8477
|
visible?: string | undefined;
|
|
8570
8478
|
disabled?: string | boolean | undefined;
|
|
8571
8479
|
shortcut?: string | undefined;
|
|
8572
8480
|
bulkEnabled?: boolean | undefined;
|
|
8573
8481
|
timeout?: number | undefined;
|
|
8574
8482
|
aria?: {
|
|
8575
|
-
ariaLabel?: string |
|
|
8576
|
-
key: string;
|
|
8577
|
-
defaultValue?: string | undefined;
|
|
8578
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
8579
|
-
} | undefined;
|
|
8483
|
+
ariaLabel?: string | undefined;
|
|
8580
8484
|
ariaDescribedBy?: string | undefined;
|
|
8581
8485
|
role?: string | undefined;
|
|
8582
8486
|
} | undefined;
|
|
@@ -9836,11 +9740,7 @@ declare const SysOrganization: Omit<{
|
|
|
9836
9740
|
keyPrefix?: string | undefined;
|
|
9837
9741
|
actions?: {
|
|
9838
9742
|
name: string;
|
|
9839
|
-
label: string
|
|
9840
|
-
key: string;
|
|
9841
|
-
defaultValue?: string | undefined;
|
|
9842
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9843
|
-
};
|
|
9743
|
+
label: string;
|
|
9844
9744
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
9845
9745
|
refreshAfter: boolean;
|
|
9846
9746
|
objectName?: string | undefined;
|
|
@@ -9851,44 +9751,24 @@ declare const SysOrganization: Omit<{
|
|
|
9851
9751
|
execute?: string | undefined;
|
|
9852
9752
|
params?: {
|
|
9853
9753
|
name: string;
|
|
9854
|
-
label: string
|
|
9855
|
-
key: string;
|
|
9856
|
-
defaultValue?: string | undefined;
|
|
9857
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9858
|
-
};
|
|
9754
|
+
label: string;
|
|
9859
9755
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
9860
9756
|
required: boolean;
|
|
9861
9757
|
options?: {
|
|
9862
|
-
label: string
|
|
9863
|
-
key: string;
|
|
9864
|
-
defaultValue?: string | undefined;
|
|
9865
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9866
|
-
};
|
|
9758
|
+
label: string;
|
|
9867
9759
|
value: string;
|
|
9868
9760
|
}[] | undefined;
|
|
9869
9761
|
}[] | undefined;
|
|
9870
9762
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
9871
|
-
confirmText?: string |
|
|
9872
|
-
|
|
9873
|
-
defaultValue?: string | undefined;
|
|
9874
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9875
|
-
} | undefined;
|
|
9876
|
-
successMessage?: string | {
|
|
9877
|
-
key: string;
|
|
9878
|
-
defaultValue?: string | undefined;
|
|
9879
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9880
|
-
} | undefined;
|
|
9763
|
+
confirmText?: string | undefined;
|
|
9764
|
+
successMessage?: string | undefined;
|
|
9881
9765
|
visible?: string | undefined;
|
|
9882
9766
|
disabled?: string | boolean | undefined;
|
|
9883
9767
|
shortcut?: string | undefined;
|
|
9884
9768
|
bulkEnabled?: boolean | undefined;
|
|
9885
9769
|
timeout?: number | undefined;
|
|
9886
9770
|
aria?: {
|
|
9887
|
-
ariaLabel?: string |
|
|
9888
|
-
key: string;
|
|
9889
|
-
defaultValue?: string | undefined;
|
|
9890
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
9891
|
-
} | undefined;
|
|
9771
|
+
ariaLabel?: string | undefined;
|
|
9892
9772
|
ariaDescribedBy?: string | undefined;
|
|
9893
9773
|
role?: string | undefined;
|
|
9894
9774
|
} | undefined;
|
|
@@ -11302,11 +11182,7 @@ declare const SysMember: Omit<{
|
|
|
11302
11182
|
keyPrefix?: string | undefined;
|
|
11303
11183
|
actions?: {
|
|
11304
11184
|
name: string;
|
|
11305
|
-
label: string
|
|
11306
|
-
key: string;
|
|
11307
|
-
defaultValue?: string | undefined;
|
|
11308
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11309
|
-
};
|
|
11185
|
+
label: string;
|
|
11310
11186
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
11311
11187
|
refreshAfter: boolean;
|
|
11312
11188
|
objectName?: string | undefined;
|
|
@@ -11317,44 +11193,24 @@ declare const SysMember: Omit<{
|
|
|
11317
11193
|
execute?: string | undefined;
|
|
11318
11194
|
params?: {
|
|
11319
11195
|
name: string;
|
|
11320
|
-
label: string
|
|
11321
|
-
key: string;
|
|
11322
|
-
defaultValue?: string | undefined;
|
|
11323
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11324
|
-
};
|
|
11196
|
+
label: string;
|
|
11325
11197
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
11326
11198
|
required: boolean;
|
|
11327
11199
|
options?: {
|
|
11328
|
-
label: string
|
|
11329
|
-
key: string;
|
|
11330
|
-
defaultValue?: string | undefined;
|
|
11331
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11332
|
-
};
|
|
11200
|
+
label: string;
|
|
11333
11201
|
value: string;
|
|
11334
11202
|
}[] | undefined;
|
|
11335
11203
|
}[] | undefined;
|
|
11336
11204
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
11337
|
-
confirmText?: string |
|
|
11338
|
-
|
|
11339
|
-
defaultValue?: string | undefined;
|
|
11340
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11341
|
-
} | undefined;
|
|
11342
|
-
successMessage?: string | {
|
|
11343
|
-
key: string;
|
|
11344
|
-
defaultValue?: string | undefined;
|
|
11345
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11346
|
-
} | undefined;
|
|
11205
|
+
confirmText?: string | undefined;
|
|
11206
|
+
successMessage?: string | undefined;
|
|
11347
11207
|
visible?: string | undefined;
|
|
11348
11208
|
disabled?: string | boolean | undefined;
|
|
11349
11209
|
shortcut?: string | undefined;
|
|
11350
11210
|
bulkEnabled?: boolean | undefined;
|
|
11351
11211
|
timeout?: number | undefined;
|
|
11352
11212
|
aria?: {
|
|
11353
|
-
ariaLabel?: string |
|
|
11354
|
-
key: string;
|
|
11355
|
-
defaultValue?: string | undefined;
|
|
11356
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
11357
|
-
} | undefined;
|
|
11213
|
+
ariaLabel?: string | undefined;
|
|
11358
11214
|
ariaDescribedBy?: string | undefined;
|
|
11359
11215
|
role?: string | undefined;
|
|
11360
11216
|
} | undefined;
|
|
@@ -12452,11 +12308,7 @@ declare const SysInvitation: Omit<{
|
|
|
12452
12308
|
keyPrefix?: string | undefined;
|
|
12453
12309
|
actions?: {
|
|
12454
12310
|
name: string;
|
|
12455
|
-
label: string
|
|
12456
|
-
key: string;
|
|
12457
|
-
defaultValue?: string | undefined;
|
|
12458
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12459
|
-
};
|
|
12311
|
+
label: string;
|
|
12460
12312
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
12461
12313
|
refreshAfter: boolean;
|
|
12462
12314
|
objectName?: string | undefined;
|
|
@@ -12467,44 +12319,24 @@ declare const SysInvitation: Omit<{
|
|
|
12467
12319
|
execute?: string | undefined;
|
|
12468
12320
|
params?: {
|
|
12469
12321
|
name: string;
|
|
12470
|
-
label: string
|
|
12471
|
-
key: string;
|
|
12472
|
-
defaultValue?: string | undefined;
|
|
12473
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12474
|
-
};
|
|
12322
|
+
label: string;
|
|
12475
12323
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
12476
12324
|
required: boolean;
|
|
12477
12325
|
options?: {
|
|
12478
|
-
label: string
|
|
12479
|
-
key: string;
|
|
12480
|
-
defaultValue?: string | undefined;
|
|
12481
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12482
|
-
};
|
|
12326
|
+
label: string;
|
|
12483
12327
|
value: string;
|
|
12484
12328
|
}[] | undefined;
|
|
12485
12329
|
}[] | undefined;
|
|
12486
12330
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
12487
|
-
confirmText?: string |
|
|
12488
|
-
|
|
12489
|
-
defaultValue?: string | undefined;
|
|
12490
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12491
|
-
} | undefined;
|
|
12492
|
-
successMessage?: string | {
|
|
12493
|
-
key: string;
|
|
12494
|
-
defaultValue?: string | undefined;
|
|
12495
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12496
|
-
} | undefined;
|
|
12331
|
+
confirmText?: string | undefined;
|
|
12332
|
+
successMessage?: string | undefined;
|
|
12497
12333
|
visible?: string | undefined;
|
|
12498
12334
|
disabled?: string | boolean | undefined;
|
|
12499
12335
|
shortcut?: string | undefined;
|
|
12500
12336
|
bulkEnabled?: boolean | undefined;
|
|
12501
12337
|
timeout?: number | undefined;
|
|
12502
12338
|
aria?: {
|
|
12503
|
-
ariaLabel?: string |
|
|
12504
|
-
key: string;
|
|
12505
|
-
defaultValue?: string | undefined;
|
|
12506
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
12507
|
-
} | undefined;
|
|
12339
|
+
ariaLabel?: string | undefined;
|
|
12508
12340
|
ariaDescribedBy?: string | undefined;
|
|
12509
12341
|
role?: string | undefined;
|
|
12510
12342
|
} | undefined;
|
|
@@ -14235,11 +14067,7 @@ declare const SysTeam: Omit<{
|
|
|
14235
14067
|
keyPrefix?: string | undefined;
|
|
14236
14068
|
actions?: {
|
|
14237
14069
|
name: string;
|
|
14238
|
-
label: string
|
|
14239
|
-
key: string;
|
|
14240
|
-
defaultValue?: string | undefined;
|
|
14241
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14242
|
-
};
|
|
14070
|
+
label: string;
|
|
14243
14071
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
14244
14072
|
refreshAfter: boolean;
|
|
14245
14073
|
objectName?: string | undefined;
|
|
@@ -14250,44 +14078,24 @@ declare const SysTeam: Omit<{
|
|
|
14250
14078
|
execute?: string | undefined;
|
|
14251
14079
|
params?: {
|
|
14252
14080
|
name: string;
|
|
14253
|
-
label: string
|
|
14254
|
-
key: string;
|
|
14255
|
-
defaultValue?: string | undefined;
|
|
14256
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14257
|
-
};
|
|
14081
|
+
label: string;
|
|
14258
14082
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
14259
14083
|
required: boolean;
|
|
14260
14084
|
options?: {
|
|
14261
|
-
label: string
|
|
14262
|
-
key: string;
|
|
14263
|
-
defaultValue?: string | undefined;
|
|
14264
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14265
|
-
};
|
|
14085
|
+
label: string;
|
|
14266
14086
|
value: string;
|
|
14267
14087
|
}[] | undefined;
|
|
14268
14088
|
}[] | undefined;
|
|
14269
14089
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
14270
|
-
confirmText?: string |
|
|
14271
|
-
|
|
14272
|
-
defaultValue?: string | undefined;
|
|
14273
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14274
|
-
} | undefined;
|
|
14275
|
-
successMessage?: string | {
|
|
14276
|
-
key: string;
|
|
14277
|
-
defaultValue?: string | undefined;
|
|
14278
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14279
|
-
} | undefined;
|
|
14090
|
+
confirmText?: string | undefined;
|
|
14091
|
+
successMessage?: string | undefined;
|
|
14280
14092
|
visible?: string | undefined;
|
|
14281
14093
|
disabled?: string | boolean | undefined;
|
|
14282
14094
|
shortcut?: string | undefined;
|
|
14283
14095
|
bulkEnabled?: boolean | undefined;
|
|
14284
14096
|
timeout?: number | undefined;
|
|
14285
14097
|
aria?: {
|
|
14286
|
-
ariaLabel?: string |
|
|
14287
|
-
key: string;
|
|
14288
|
-
defaultValue?: string | undefined;
|
|
14289
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
14290
|
-
} | undefined;
|
|
14098
|
+
ariaLabel?: string | undefined;
|
|
14291
14099
|
ariaDescribedBy?: string | undefined;
|
|
14292
14100
|
role?: string | undefined;
|
|
14293
14101
|
} | undefined;
|
|
@@ -15385,11 +15193,7 @@ declare const SysTeamMember: Omit<{
|
|
|
15385
15193
|
keyPrefix?: string | undefined;
|
|
15386
15194
|
actions?: {
|
|
15387
15195
|
name: string;
|
|
15388
|
-
label: string
|
|
15389
|
-
key: string;
|
|
15390
|
-
defaultValue?: string | undefined;
|
|
15391
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15392
|
-
};
|
|
15196
|
+
label: string;
|
|
15393
15197
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
15394
15198
|
refreshAfter: boolean;
|
|
15395
15199
|
objectName?: string | undefined;
|
|
@@ -15400,44 +15204,24 @@ declare const SysTeamMember: Omit<{
|
|
|
15400
15204
|
execute?: string | undefined;
|
|
15401
15205
|
params?: {
|
|
15402
15206
|
name: string;
|
|
15403
|
-
label: string
|
|
15404
|
-
key: string;
|
|
15405
|
-
defaultValue?: string | undefined;
|
|
15406
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15407
|
-
};
|
|
15207
|
+
label: string;
|
|
15408
15208
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
15409
15209
|
required: boolean;
|
|
15410
15210
|
options?: {
|
|
15411
|
-
label: string
|
|
15412
|
-
key: string;
|
|
15413
|
-
defaultValue?: string | undefined;
|
|
15414
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15415
|
-
};
|
|
15211
|
+
label: string;
|
|
15416
15212
|
value: string;
|
|
15417
15213
|
}[] | undefined;
|
|
15418
15214
|
}[] | undefined;
|
|
15419
15215
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
15420
|
-
confirmText?: string |
|
|
15421
|
-
|
|
15422
|
-
defaultValue?: string | undefined;
|
|
15423
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15424
|
-
} | undefined;
|
|
15425
|
-
successMessage?: string | {
|
|
15426
|
-
key: string;
|
|
15427
|
-
defaultValue?: string | undefined;
|
|
15428
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15429
|
-
} | undefined;
|
|
15216
|
+
confirmText?: string | undefined;
|
|
15217
|
+
successMessage?: string | undefined;
|
|
15430
15218
|
visible?: string | undefined;
|
|
15431
15219
|
disabled?: string | boolean | undefined;
|
|
15432
15220
|
shortcut?: string | undefined;
|
|
15433
15221
|
bulkEnabled?: boolean | undefined;
|
|
15434
15222
|
timeout?: number | undefined;
|
|
15435
15223
|
aria?: {
|
|
15436
|
-
ariaLabel?: string |
|
|
15437
|
-
key: string;
|
|
15438
|
-
defaultValue?: string | undefined;
|
|
15439
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
15440
|
-
} | undefined;
|
|
15224
|
+
ariaLabel?: string | undefined;
|
|
15441
15225
|
ariaDescribedBy?: string | undefined;
|
|
15442
15226
|
role?: string | undefined;
|
|
15443
15227
|
} | undefined;
|
|
@@ -16376,11 +16160,7 @@ declare const SysApiKey: Omit<{
|
|
|
16376
16160
|
keyPrefix?: string | undefined;
|
|
16377
16161
|
actions?: {
|
|
16378
16162
|
name: string;
|
|
16379
|
-
label: string
|
|
16380
|
-
key: string;
|
|
16381
|
-
defaultValue?: string | undefined;
|
|
16382
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16383
|
-
};
|
|
16163
|
+
label: string;
|
|
16384
16164
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
16385
16165
|
refreshAfter: boolean;
|
|
16386
16166
|
objectName?: string | undefined;
|
|
@@ -16391,44 +16171,24 @@ declare const SysApiKey: Omit<{
|
|
|
16391
16171
|
execute?: string | undefined;
|
|
16392
16172
|
params?: {
|
|
16393
16173
|
name: string;
|
|
16394
|
-
label: string
|
|
16395
|
-
key: string;
|
|
16396
|
-
defaultValue?: string | undefined;
|
|
16397
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16398
|
-
};
|
|
16174
|
+
label: string;
|
|
16399
16175
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
16400
16176
|
required: boolean;
|
|
16401
16177
|
options?: {
|
|
16402
|
-
label: string
|
|
16403
|
-
key: string;
|
|
16404
|
-
defaultValue?: string | undefined;
|
|
16405
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16406
|
-
};
|
|
16178
|
+
label: string;
|
|
16407
16179
|
value: string;
|
|
16408
16180
|
}[] | undefined;
|
|
16409
16181
|
}[] | undefined;
|
|
16410
16182
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
16411
|
-
confirmText?: string |
|
|
16412
|
-
|
|
16413
|
-
defaultValue?: string | undefined;
|
|
16414
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16415
|
-
} | undefined;
|
|
16416
|
-
successMessage?: string | {
|
|
16417
|
-
key: string;
|
|
16418
|
-
defaultValue?: string | undefined;
|
|
16419
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16420
|
-
} | undefined;
|
|
16183
|
+
confirmText?: string | undefined;
|
|
16184
|
+
successMessage?: string | undefined;
|
|
16421
16185
|
visible?: string | undefined;
|
|
16422
16186
|
disabled?: string | boolean | undefined;
|
|
16423
16187
|
shortcut?: string | undefined;
|
|
16424
16188
|
bulkEnabled?: boolean | undefined;
|
|
16425
16189
|
timeout?: number | undefined;
|
|
16426
16190
|
aria?: {
|
|
16427
|
-
ariaLabel?: string |
|
|
16428
|
-
key: string;
|
|
16429
|
-
defaultValue?: string | undefined;
|
|
16430
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
16431
|
-
} | undefined;
|
|
16191
|
+
ariaLabel?: string | undefined;
|
|
16432
16192
|
ariaDescribedBy?: string | undefined;
|
|
16433
16193
|
role?: string | undefined;
|
|
16434
16194
|
} | undefined;
|
|
@@ -18476,11 +18236,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
18476
18236
|
keyPrefix?: string | undefined;
|
|
18477
18237
|
actions?: {
|
|
18478
18238
|
name: string;
|
|
18479
|
-
label: string
|
|
18480
|
-
key: string;
|
|
18481
|
-
defaultValue?: string | undefined;
|
|
18482
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18483
|
-
};
|
|
18239
|
+
label: string;
|
|
18484
18240
|
type: "url" | "script" | "modal" | "flow" | "api";
|
|
18485
18241
|
refreshAfter: boolean;
|
|
18486
18242
|
objectName?: string | undefined;
|
|
@@ -18491,44 +18247,24 @@ declare const SysTwoFactor: Omit<{
|
|
|
18491
18247
|
execute?: string | undefined;
|
|
18492
18248
|
params?: {
|
|
18493
18249
|
name: string;
|
|
18494
|
-
label: string
|
|
18495
|
-
key: string;
|
|
18496
|
-
defaultValue?: string | undefined;
|
|
18497
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18498
|
-
};
|
|
18250
|
+
label: string;
|
|
18499
18251
|
type: "number" | "boolean" | "date" | "lookup" | "file" | "url" | "json" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "datetime" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
18500
18252
|
required: boolean;
|
|
18501
18253
|
options?: {
|
|
18502
|
-
label: string
|
|
18503
|
-
key: string;
|
|
18504
|
-
defaultValue?: string | undefined;
|
|
18505
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18506
|
-
};
|
|
18254
|
+
label: string;
|
|
18507
18255
|
value: string;
|
|
18508
18256
|
}[] | undefined;
|
|
18509
18257
|
}[] | undefined;
|
|
18510
18258
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
18511
|
-
confirmText?: string |
|
|
18512
|
-
|
|
18513
|
-
defaultValue?: string | undefined;
|
|
18514
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18515
|
-
} | undefined;
|
|
18516
|
-
successMessage?: string | {
|
|
18517
|
-
key: string;
|
|
18518
|
-
defaultValue?: string | undefined;
|
|
18519
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18520
|
-
} | undefined;
|
|
18259
|
+
confirmText?: string | undefined;
|
|
18260
|
+
successMessage?: string | undefined;
|
|
18521
18261
|
visible?: string | undefined;
|
|
18522
18262
|
disabled?: string | boolean | undefined;
|
|
18523
18263
|
shortcut?: string | undefined;
|
|
18524
18264
|
bulkEnabled?: boolean | undefined;
|
|
18525
18265
|
timeout?: number | undefined;
|
|
18526
18266
|
aria?: {
|
|
18527
|
-
ariaLabel?: string |
|
|
18528
|
-
key: string;
|
|
18529
|
-
defaultValue?: string | undefined;
|
|
18530
|
-
params?: Record<string, string | number | boolean> | undefined;
|
|
18531
|
-
} | undefined;
|
|
18267
|
+
ariaLabel?: string | undefined;
|
|
18532
18268
|
ariaDescribedBy?: string | undefined;
|
|
18533
18269
|
role?: string | undefined;
|
|
18534
18270
|
} | undefined;
|