@objectstack/service-feed 7.2.1 → 7.4.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/index.d.cts +135 -240
- package/dist/index.d.ts +135 -240
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { Plugin, PluginContext } from '@objectstack/core';
|
|
|
2
2
|
import { IFeedService, ListFeedOptions, FeedListResult, CreateFeedItemInput, UpdateFeedItemInput, SubscribeInput } from '@objectstack/spec/contracts';
|
|
3
3
|
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
4
4
|
import { FeedItem as FeedItem$1, Reaction, RecordSubscription as RecordSubscription$1 } from '@objectstack/spec/data';
|
|
5
|
-
import { z } from 'zod';
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Configuration options for InMemoryFeedAdapter.
|
|
@@ -107,44 +106,6 @@ declare class FeedServicePlugin implements Plugin {
|
|
|
107
106
|
init(ctx: PluginContext): Promise<void>;
|
|
108
107
|
}
|
|
109
108
|
|
|
110
|
-
declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
111
|
-
type: z.ZodString;
|
|
112
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
113
|
-
}, z.core.$strip>]>;
|
|
114
|
-
/**
|
|
115
|
-
* State Transition Definition
|
|
116
|
-
* "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
|
|
117
|
-
*/
|
|
118
|
-
declare const TransitionSchema: z.ZodObject<{
|
|
119
|
-
target: z.ZodOptional<z.ZodString>;
|
|
120
|
-
cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
121
|
-
type: z.ZodString;
|
|
122
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
123
|
-
}, z.core.$strip>]>>;
|
|
124
|
-
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
125
|
-
type: z.ZodString;
|
|
126
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
127
|
-
}, z.core.$strip>]>>>;
|
|
128
|
-
description: z.ZodOptional<z.ZodString>;
|
|
129
|
-
}, z.core.$strip>;
|
|
130
|
-
type ActionRef = z.infer<typeof ActionRefSchema>;
|
|
131
|
-
type Transition = z.infer<typeof TransitionSchema>;
|
|
132
|
-
type StateNodeConfig = {
|
|
133
|
-
type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
|
|
134
|
-
entry?: ActionRef[];
|
|
135
|
-
exit?: ActionRef[];
|
|
136
|
-
on?: Record<string, string | Transition | Transition[]>;
|
|
137
|
-
always?: Transition[];
|
|
138
|
-
initial?: string;
|
|
139
|
-
states?: Record<string, StateNodeConfig>;
|
|
140
|
-
meta?: {
|
|
141
|
-
label?: string;
|
|
142
|
-
description?: string;
|
|
143
|
-
color?: string;
|
|
144
|
-
aiInstructions?: string;
|
|
145
|
-
};
|
|
146
|
-
};
|
|
147
|
-
|
|
148
109
|
/**
|
|
149
110
|
* Feed Item Object
|
|
150
111
|
*
|
|
@@ -160,7 +121,7 @@ declare const FeedItem: Omit<{
|
|
|
160
121
|
abstract: boolean;
|
|
161
122
|
datasource: string;
|
|
162
123
|
fields: Record<string, {
|
|
163
|
-
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
124
|
+
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
164
125
|
required: boolean;
|
|
165
126
|
searchable: boolean;
|
|
166
127
|
multiple: boolean;
|
|
@@ -375,6 +336,14 @@ declare const FeedItem: Omit<{
|
|
|
375
336
|
owner?: boolean | undefined;
|
|
376
337
|
audit?: boolean | undefined;
|
|
377
338
|
} | undefined;
|
|
339
|
+
external?: {
|
|
340
|
+
writable: boolean;
|
|
341
|
+
remoteName?: string | undefined;
|
|
342
|
+
remoteSchema?: string | undefined;
|
|
343
|
+
columnMap?: Record<string, string> | undefined;
|
|
344
|
+
introspectedAt?: string | undefined;
|
|
345
|
+
ignoreColumns?: string[] | undefined;
|
|
346
|
+
} | undefined;
|
|
378
347
|
indexes?: {
|
|
379
348
|
fields: string[];
|
|
380
349
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -435,36 +404,6 @@ declare const FeedItem: Omit<{
|
|
|
435
404
|
destination: string;
|
|
436
405
|
} | undefined;
|
|
437
406
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
438
|
-
stateMachines?: Record<string, {
|
|
439
|
-
id: string;
|
|
440
|
-
initial: string;
|
|
441
|
-
states: Record<string, StateNodeConfig>;
|
|
442
|
-
description?: string | undefined;
|
|
443
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
444
|
-
on?: Record<string, string | {
|
|
445
|
-
target?: string | undefined;
|
|
446
|
-
cond?: string | {
|
|
447
|
-
type: string;
|
|
448
|
-
params?: Record<string, unknown> | undefined;
|
|
449
|
-
} | undefined;
|
|
450
|
-
actions?: (string | {
|
|
451
|
-
type: string;
|
|
452
|
-
params?: Record<string, unknown> | undefined;
|
|
453
|
-
})[] | undefined;
|
|
454
|
-
description?: string | undefined;
|
|
455
|
-
} | {
|
|
456
|
-
target?: string | undefined;
|
|
457
|
-
cond?: string | {
|
|
458
|
-
type: string;
|
|
459
|
-
params?: Record<string, unknown> | undefined;
|
|
460
|
-
} | undefined;
|
|
461
|
-
actions?: (string | {
|
|
462
|
-
type: string;
|
|
463
|
-
params?: Record<string, unknown> | undefined;
|
|
464
|
-
})[] | undefined;
|
|
465
|
-
description?: string | undefined;
|
|
466
|
-
}[]> | undefined;
|
|
467
|
-
}> | undefined;
|
|
468
407
|
displayNameField?: string | undefined;
|
|
469
408
|
recordName?: {
|
|
470
409
|
type: "text" | "autonumber";
|
|
@@ -554,7 +493,7 @@ declare const FeedItem: Omit<{
|
|
|
554
493
|
type: "none" | "multiple" | "single";
|
|
555
494
|
} | undefined;
|
|
556
495
|
navigation?: {
|
|
557
|
-
mode: "none" | "split" | "page" | "
|
|
496
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
558
497
|
preventNavigation: boolean;
|
|
559
498
|
openNewTab: boolean;
|
|
560
499
|
view?: string | undefined;
|
|
@@ -743,7 +682,7 @@ declare const FeedItem: Omit<{
|
|
|
743
682
|
trash: boolean;
|
|
744
683
|
mru: boolean;
|
|
745
684
|
clone: boolean;
|
|
746
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
685
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
747
686
|
} | undefined;
|
|
748
687
|
recordTypes?: string[] | undefined;
|
|
749
688
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
@@ -789,7 +728,7 @@ declare const FeedItem: Omit<{
|
|
|
789
728
|
field?: string | undefined;
|
|
790
729
|
objectOverride?: string | undefined;
|
|
791
730
|
label?: string | undefined;
|
|
792
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
731
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
793
732
|
options?: {
|
|
794
733
|
label: string;
|
|
795
734
|
value: string;
|
|
@@ -841,7 +780,7 @@ declare const FeedItem: Omit<{
|
|
|
841
780
|
} | undefined;
|
|
842
781
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
843
782
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
844
|
-
mode?: "custom" | "delete" | "
|
|
783
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
845
784
|
timeout?: number | undefined;
|
|
846
785
|
aria?: {
|
|
847
786
|
ariaLabel?: string | undefined;
|
|
@@ -881,10 +820,12 @@ declare const FeedItem: Omit<{
|
|
|
881
820
|
readonly dependencies?: string[] | undefined;
|
|
882
821
|
readonly theme?: string | undefined;
|
|
883
822
|
readonly externalId?: boolean | undefined;
|
|
823
|
+
readonly defaultValue?: unknown;
|
|
824
|
+
readonly group?: string | undefined;
|
|
825
|
+
readonly hidden?: boolean | undefined;
|
|
884
826
|
readonly system?: boolean | undefined;
|
|
885
827
|
readonly min?: number | undefined;
|
|
886
828
|
readonly max?: number | undefined;
|
|
887
|
-
readonly group?: string | undefined;
|
|
888
829
|
readonly encryptionConfig?: {
|
|
889
830
|
enabled: boolean;
|
|
890
831
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -905,7 +846,6 @@ declare const FeedItem: Omit<{
|
|
|
905
846
|
readonly columnName?: string | undefined;
|
|
906
847
|
readonly searchable?: boolean | undefined;
|
|
907
848
|
readonly unique?: boolean | undefined;
|
|
908
|
-
readonly defaultValue?: unknown;
|
|
909
849
|
readonly maxLength?: number | undefined;
|
|
910
850
|
readonly minLength?: number | undefined;
|
|
911
851
|
readonly scale?: number | undefined;
|
|
@@ -1029,7 +969,6 @@ declare const FeedItem: Omit<{
|
|
|
1029
969
|
generatedBy?: string | undefined;
|
|
1030
970
|
} | undefined;
|
|
1031
971
|
} | undefined;
|
|
1032
|
-
readonly hidden?: boolean | undefined;
|
|
1033
972
|
readonly sortable?: boolean | undefined;
|
|
1034
973
|
readonly inlineHelpText?: string | undefined;
|
|
1035
974
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1056,10 +995,12 @@ declare const FeedItem: Omit<{
|
|
|
1056
995
|
readonly dependencies?: string[] | undefined;
|
|
1057
996
|
readonly theme?: string | undefined;
|
|
1058
997
|
readonly externalId?: boolean | undefined;
|
|
998
|
+
readonly defaultValue?: unknown;
|
|
999
|
+
readonly group?: string | undefined;
|
|
1000
|
+
readonly hidden?: boolean | undefined;
|
|
1059
1001
|
readonly system?: boolean | undefined;
|
|
1060
1002
|
readonly min?: number | undefined;
|
|
1061
1003
|
readonly max?: number | undefined;
|
|
1062
|
-
readonly group?: string | undefined;
|
|
1063
1004
|
readonly encryptionConfig?: {
|
|
1064
1005
|
enabled: boolean;
|
|
1065
1006
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1080,7 +1021,6 @@ declare const FeedItem: Omit<{
|
|
|
1080
1021
|
readonly columnName?: string | undefined;
|
|
1081
1022
|
readonly searchable?: boolean | undefined;
|
|
1082
1023
|
readonly unique?: boolean | undefined;
|
|
1083
|
-
readonly defaultValue?: unknown;
|
|
1084
1024
|
readonly maxLength?: number | undefined;
|
|
1085
1025
|
readonly minLength?: number | undefined;
|
|
1086
1026
|
readonly scale?: number | undefined;
|
|
@@ -1204,7 +1144,6 @@ declare const FeedItem: Omit<{
|
|
|
1204
1144
|
generatedBy?: string | undefined;
|
|
1205
1145
|
} | undefined;
|
|
1206
1146
|
} | undefined;
|
|
1207
|
-
readonly hidden?: boolean | undefined;
|
|
1208
1147
|
readonly sortable?: boolean | undefined;
|
|
1209
1148
|
readonly inlineHelpText?: string | undefined;
|
|
1210
1149
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1231,10 +1170,12 @@ declare const FeedItem: Omit<{
|
|
|
1231
1170
|
readonly dependencies?: string[] | undefined;
|
|
1232
1171
|
readonly theme?: string | undefined;
|
|
1233
1172
|
readonly externalId?: boolean | undefined;
|
|
1173
|
+
readonly defaultValue?: unknown;
|
|
1174
|
+
readonly group?: string | undefined;
|
|
1175
|
+
readonly hidden?: boolean | undefined;
|
|
1234
1176
|
readonly system?: boolean | undefined;
|
|
1235
1177
|
readonly min?: number | undefined;
|
|
1236
1178
|
readonly max?: number | undefined;
|
|
1237
|
-
readonly group?: string | undefined;
|
|
1238
1179
|
readonly encryptionConfig?: {
|
|
1239
1180
|
enabled: boolean;
|
|
1240
1181
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1255,7 +1196,6 @@ declare const FeedItem: Omit<{
|
|
|
1255
1196
|
readonly columnName?: string | undefined;
|
|
1256
1197
|
readonly searchable?: boolean | undefined;
|
|
1257
1198
|
readonly unique?: boolean | undefined;
|
|
1258
|
-
readonly defaultValue?: unknown;
|
|
1259
1199
|
readonly maxLength?: number | undefined;
|
|
1260
1200
|
readonly minLength?: number | undefined;
|
|
1261
1201
|
readonly scale?: number | undefined;
|
|
@@ -1379,7 +1319,6 @@ declare const FeedItem: Omit<{
|
|
|
1379
1319
|
generatedBy?: string | undefined;
|
|
1380
1320
|
} | undefined;
|
|
1381
1321
|
} | undefined;
|
|
1382
|
-
readonly hidden?: boolean | undefined;
|
|
1383
1322
|
readonly sortable?: boolean | undefined;
|
|
1384
1323
|
readonly inlineHelpText?: string | undefined;
|
|
1385
1324
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1406,10 +1345,12 @@ declare const FeedItem: Omit<{
|
|
|
1406
1345
|
readonly dependencies?: string[] | undefined;
|
|
1407
1346
|
readonly theme?: string | undefined;
|
|
1408
1347
|
readonly externalId?: boolean | undefined;
|
|
1348
|
+
readonly defaultValue?: unknown;
|
|
1349
|
+
readonly group?: string | undefined;
|
|
1350
|
+
readonly hidden?: boolean | undefined;
|
|
1409
1351
|
readonly system?: boolean | undefined;
|
|
1410
1352
|
readonly min?: number | undefined;
|
|
1411
1353
|
readonly max?: number | undefined;
|
|
1412
|
-
readonly group?: string | undefined;
|
|
1413
1354
|
readonly encryptionConfig?: {
|
|
1414
1355
|
enabled: boolean;
|
|
1415
1356
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1430,7 +1371,6 @@ declare const FeedItem: Omit<{
|
|
|
1430
1371
|
readonly columnName?: string | undefined;
|
|
1431
1372
|
readonly searchable?: boolean | undefined;
|
|
1432
1373
|
readonly unique?: boolean | undefined;
|
|
1433
|
-
readonly defaultValue?: unknown;
|
|
1434
1374
|
readonly maxLength?: number | undefined;
|
|
1435
1375
|
readonly minLength?: number | undefined;
|
|
1436
1376
|
readonly scale?: number | undefined;
|
|
@@ -1554,7 +1494,6 @@ declare const FeedItem: Omit<{
|
|
|
1554
1494
|
generatedBy?: string | undefined;
|
|
1555
1495
|
} | undefined;
|
|
1556
1496
|
} | undefined;
|
|
1557
|
-
readonly hidden?: boolean | undefined;
|
|
1558
1497
|
readonly sortable?: boolean | undefined;
|
|
1559
1498
|
readonly inlineHelpText?: string | undefined;
|
|
1560
1499
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1581,10 +1520,12 @@ declare const FeedItem: Omit<{
|
|
|
1581
1520
|
readonly dependencies?: string[] | undefined;
|
|
1582
1521
|
readonly theme?: string | undefined;
|
|
1583
1522
|
readonly externalId?: boolean | undefined;
|
|
1523
|
+
readonly defaultValue?: unknown;
|
|
1524
|
+
readonly group?: string | undefined;
|
|
1525
|
+
readonly hidden?: boolean | undefined;
|
|
1584
1526
|
readonly system?: boolean | undefined;
|
|
1585
1527
|
readonly min?: number | undefined;
|
|
1586
1528
|
readonly max?: number | undefined;
|
|
1587
|
-
readonly group?: string | undefined;
|
|
1588
1529
|
readonly encryptionConfig?: {
|
|
1589
1530
|
enabled: boolean;
|
|
1590
1531
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1605,7 +1546,6 @@ declare const FeedItem: Omit<{
|
|
|
1605
1546
|
readonly columnName?: string | undefined;
|
|
1606
1547
|
readonly searchable?: boolean | undefined;
|
|
1607
1548
|
readonly unique?: boolean | undefined;
|
|
1608
|
-
readonly defaultValue?: unknown;
|
|
1609
1549
|
readonly maxLength?: number | undefined;
|
|
1610
1550
|
readonly minLength?: number | undefined;
|
|
1611
1551
|
readonly scale?: number | undefined;
|
|
@@ -1729,7 +1669,6 @@ declare const FeedItem: Omit<{
|
|
|
1729
1669
|
generatedBy?: string | undefined;
|
|
1730
1670
|
} | undefined;
|
|
1731
1671
|
} | undefined;
|
|
1732
|
-
readonly hidden?: boolean | undefined;
|
|
1733
1672
|
readonly sortable?: boolean | undefined;
|
|
1734
1673
|
readonly inlineHelpText?: string | undefined;
|
|
1735
1674
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1756,10 +1695,12 @@ declare const FeedItem: Omit<{
|
|
|
1756
1695
|
readonly dependencies?: string[] | undefined;
|
|
1757
1696
|
readonly theme?: string | undefined;
|
|
1758
1697
|
readonly externalId?: boolean | undefined;
|
|
1698
|
+
readonly defaultValue?: unknown;
|
|
1699
|
+
readonly group?: string | undefined;
|
|
1700
|
+
readonly hidden?: boolean | undefined;
|
|
1759
1701
|
readonly system?: boolean | undefined;
|
|
1760
1702
|
readonly min?: number | undefined;
|
|
1761
1703
|
readonly max?: number | undefined;
|
|
1762
|
-
readonly group?: string | undefined;
|
|
1763
1704
|
readonly encryptionConfig?: {
|
|
1764
1705
|
enabled: boolean;
|
|
1765
1706
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1780,7 +1721,6 @@ declare const FeedItem: Omit<{
|
|
|
1780
1721
|
readonly columnName?: string | undefined;
|
|
1781
1722
|
readonly searchable?: boolean | undefined;
|
|
1782
1723
|
readonly unique?: boolean | undefined;
|
|
1783
|
-
readonly defaultValue?: unknown;
|
|
1784
1724
|
readonly maxLength?: number | undefined;
|
|
1785
1725
|
readonly minLength?: number | undefined;
|
|
1786
1726
|
readonly scale?: number | undefined;
|
|
@@ -1904,7 +1844,6 @@ declare const FeedItem: Omit<{
|
|
|
1904
1844
|
generatedBy?: string | undefined;
|
|
1905
1845
|
} | undefined;
|
|
1906
1846
|
} | undefined;
|
|
1907
|
-
readonly hidden?: boolean | undefined;
|
|
1908
1847
|
readonly sortable?: boolean | undefined;
|
|
1909
1848
|
readonly inlineHelpText?: string | undefined;
|
|
1910
1849
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1931,10 +1870,12 @@ declare const FeedItem: Omit<{
|
|
|
1931
1870
|
readonly dependencies?: string[] | undefined;
|
|
1932
1871
|
readonly theme?: string | undefined;
|
|
1933
1872
|
readonly externalId?: boolean | undefined;
|
|
1873
|
+
readonly defaultValue?: unknown;
|
|
1874
|
+
readonly group?: string | undefined;
|
|
1875
|
+
readonly hidden?: boolean | undefined;
|
|
1934
1876
|
readonly system?: boolean | undefined;
|
|
1935
1877
|
readonly min?: number | undefined;
|
|
1936
1878
|
readonly max?: number | undefined;
|
|
1937
|
-
readonly group?: string | undefined;
|
|
1938
1879
|
readonly encryptionConfig?: {
|
|
1939
1880
|
enabled: boolean;
|
|
1940
1881
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1955,7 +1896,6 @@ declare const FeedItem: Omit<{
|
|
|
1955
1896
|
readonly columnName?: string | undefined;
|
|
1956
1897
|
readonly searchable?: boolean | undefined;
|
|
1957
1898
|
readonly unique?: boolean | undefined;
|
|
1958
|
-
readonly defaultValue?: unknown;
|
|
1959
1899
|
readonly maxLength?: number | undefined;
|
|
1960
1900
|
readonly minLength?: number | undefined;
|
|
1961
1901
|
readonly scale?: number | undefined;
|
|
@@ -2079,7 +2019,6 @@ declare const FeedItem: Omit<{
|
|
|
2079
2019
|
generatedBy?: string | undefined;
|
|
2080
2020
|
} | undefined;
|
|
2081
2021
|
} | undefined;
|
|
2082
|
-
readonly hidden?: boolean | undefined;
|
|
2083
2022
|
readonly sortable?: boolean | undefined;
|
|
2084
2023
|
readonly inlineHelpText?: string | undefined;
|
|
2085
2024
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2106,10 +2045,12 @@ declare const FeedItem: Omit<{
|
|
|
2106
2045
|
readonly dependencies?: string[] | undefined;
|
|
2107
2046
|
readonly theme?: string | undefined;
|
|
2108
2047
|
readonly externalId?: boolean | undefined;
|
|
2048
|
+
readonly defaultValue?: unknown;
|
|
2049
|
+
readonly group?: string | undefined;
|
|
2050
|
+
readonly hidden?: boolean | undefined;
|
|
2109
2051
|
readonly system?: boolean | undefined;
|
|
2110
2052
|
readonly min?: number | undefined;
|
|
2111
2053
|
readonly max?: number | undefined;
|
|
2112
|
-
readonly group?: string | undefined;
|
|
2113
2054
|
readonly encryptionConfig?: {
|
|
2114
2055
|
enabled: boolean;
|
|
2115
2056
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2130,7 +2071,6 @@ declare const FeedItem: Omit<{
|
|
|
2130
2071
|
readonly columnName?: string | undefined;
|
|
2131
2072
|
readonly searchable?: boolean | undefined;
|
|
2132
2073
|
readonly unique?: boolean | undefined;
|
|
2133
|
-
readonly defaultValue?: unknown;
|
|
2134
2074
|
readonly maxLength?: number | undefined;
|
|
2135
2075
|
readonly minLength?: number | undefined;
|
|
2136
2076
|
readonly scale?: number | undefined;
|
|
@@ -2254,7 +2194,6 @@ declare const FeedItem: Omit<{
|
|
|
2254
2194
|
generatedBy?: string | undefined;
|
|
2255
2195
|
} | undefined;
|
|
2256
2196
|
} | undefined;
|
|
2257
|
-
readonly hidden?: boolean | undefined;
|
|
2258
2197
|
readonly sortable?: boolean | undefined;
|
|
2259
2198
|
readonly inlineHelpText?: string | undefined;
|
|
2260
2199
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2281,10 +2220,12 @@ declare const FeedItem: Omit<{
|
|
|
2281
2220
|
readonly dependencies?: string[] | undefined;
|
|
2282
2221
|
readonly theme?: string | undefined;
|
|
2283
2222
|
readonly externalId?: boolean | undefined;
|
|
2223
|
+
readonly defaultValue?: unknown;
|
|
2224
|
+
readonly group?: string | undefined;
|
|
2225
|
+
readonly hidden?: boolean | undefined;
|
|
2284
2226
|
readonly system?: boolean | undefined;
|
|
2285
2227
|
readonly min?: number | undefined;
|
|
2286
2228
|
readonly max?: number | undefined;
|
|
2287
|
-
readonly group?: string | undefined;
|
|
2288
2229
|
readonly encryptionConfig?: {
|
|
2289
2230
|
enabled: boolean;
|
|
2290
2231
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2305,7 +2246,6 @@ declare const FeedItem: Omit<{
|
|
|
2305
2246
|
readonly columnName?: string | undefined;
|
|
2306
2247
|
readonly searchable?: boolean | undefined;
|
|
2307
2248
|
readonly unique?: boolean | undefined;
|
|
2308
|
-
readonly defaultValue?: unknown;
|
|
2309
2249
|
readonly maxLength?: number | undefined;
|
|
2310
2250
|
readonly minLength?: number | undefined;
|
|
2311
2251
|
readonly scale?: number | undefined;
|
|
@@ -2429,7 +2369,6 @@ declare const FeedItem: Omit<{
|
|
|
2429
2369
|
generatedBy?: string | undefined;
|
|
2430
2370
|
} | undefined;
|
|
2431
2371
|
} | undefined;
|
|
2432
|
-
readonly hidden?: boolean | undefined;
|
|
2433
2372
|
readonly sortable?: boolean | undefined;
|
|
2434
2373
|
readonly inlineHelpText?: string | undefined;
|
|
2435
2374
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2456,10 +2395,12 @@ declare const FeedItem: Omit<{
|
|
|
2456
2395
|
readonly dependencies?: string[] | undefined;
|
|
2457
2396
|
readonly theme?: string | undefined;
|
|
2458
2397
|
readonly externalId?: boolean | undefined;
|
|
2398
|
+
readonly defaultValue?: unknown;
|
|
2399
|
+
readonly group?: string | undefined;
|
|
2400
|
+
readonly hidden?: boolean | undefined;
|
|
2459
2401
|
readonly system?: boolean | undefined;
|
|
2460
2402
|
readonly min?: number | undefined;
|
|
2461
2403
|
readonly max?: number | undefined;
|
|
2462
|
-
readonly group?: string | undefined;
|
|
2463
2404
|
readonly encryptionConfig?: {
|
|
2464
2405
|
enabled: boolean;
|
|
2465
2406
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2480,7 +2421,6 @@ declare const FeedItem: Omit<{
|
|
|
2480
2421
|
readonly columnName?: string | undefined;
|
|
2481
2422
|
readonly searchable?: boolean | undefined;
|
|
2482
2423
|
readonly unique?: boolean | undefined;
|
|
2483
|
-
readonly defaultValue?: unknown;
|
|
2484
2424
|
readonly maxLength?: number | undefined;
|
|
2485
2425
|
readonly minLength?: number | undefined;
|
|
2486
2426
|
readonly scale?: number | undefined;
|
|
@@ -2604,7 +2544,6 @@ declare const FeedItem: Omit<{
|
|
|
2604
2544
|
generatedBy?: string | undefined;
|
|
2605
2545
|
} | undefined;
|
|
2606
2546
|
} | undefined;
|
|
2607
|
-
readonly hidden?: boolean | undefined;
|
|
2608
2547
|
readonly sortable?: boolean | undefined;
|
|
2609
2548
|
readonly inlineHelpText?: string | undefined;
|
|
2610
2549
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2631,10 +2570,12 @@ declare const FeedItem: Omit<{
|
|
|
2631
2570
|
readonly dependencies?: string[] | undefined;
|
|
2632
2571
|
readonly theme?: string | undefined;
|
|
2633
2572
|
readonly externalId?: boolean | undefined;
|
|
2573
|
+
readonly defaultValue?: unknown;
|
|
2574
|
+
readonly group?: string | undefined;
|
|
2575
|
+
readonly hidden?: boolean | undefined;
|
|
2634
2576
|
readonly system?: boolean | undefined;
|
|
2635
2577
|
readonly min?: number | undefined;
|
|
2636
2578
|
readonly max?: number | undefined;
|
|
2637
|
-
readonly group?: string | undefined;
|
|
2638
2579
|
readonly encryptionConfig?: {
|
|
2639
2580
|
enabled: boolean;
|
|
2640
2581
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2655,7 +2596,6 @@ declare const FeedItem: Omit<{
|
|
|
2655
2596
|
readonly columnName?: string | undefined;
|
|
2656
2597
|
readonly searchable?: boolean | undefined;
|
|
2657
2598
|
readonly unique?: boolean | undefined;
|
|
2658
|
-
readonly defaultValue?: unknown;
|
|
2659
2599
|
readonly maxLength?: number | undefined;
|
|
2660
2600
|
readonly minLength?: number | undefined;
|
|
2661
2601
|
readonly scale?: number | undefined;
|
|
@@ -2779,7 +2719,6 @@ declare const FeedItem: Omit<{
|
|
|
2779
2719
|
generatedBy?: string | undefined;
|
|
2780
2720
|
} | undefined;
|
|
2781
2721
|
} | undefined;
|
|
2782
|
-
readonly hidden?: boolean | undefined;
|
|
2783
2722
|
readonly sortable?: boolean | undefined;
|
|
2784
2723
|
readonly inlineHelpText?: string | undefined;
|
|
2785
2724
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2806,10 +2745,12 @@ declare const FeedItem: Omit<{
|
|
|
2806
2745
|
readonly dependencies?: string[] | undefined;
|
|
2807
2746
|
readonly theme?: string | undefined;
|
|
2808
2747
|
readonly externalId?: boolean | undefined;
|
|
2748
|
+
readonly defaultValue?: unknown;
|
|
2749
|
+
readonly group?: string | undefined;
|
|
2750
|
+
readonly hidden?: boolean | undefined;
|
|
2809
2751
|
readonly system?: boolean | undefined;
|
|
2810
2752
|
readonly min?: number | undefined;
|
|
2811
2753
|
readonly max?: number | undefined;
|
|
2812
|
-
readonly group?: string | undefined;
|
|
2813
2754
|
readonly encryptionConfig?: {
|
|
2814
2755
|
enabled: boolean;
|
|
2815
2756
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2830,7 +2771,6 @@ declare const FeedItem: Omit<{
|
|
|
2830
2771
|
readonly columnName?: string | undefined;
|
|
2831
2772
|
readonly searchable?: boolean | undefined;
|
|
2832
2773
|
readonly unique?: boolean | undefined;
|
|
2833
|
-
readonly defaultValue?: unknown;
|
|
2834
2774
|
readonly maxLength?: number | undefined;
|
|
2835
2775
|
readonly minLength?: number | undefined;
|
|
2836
2776
|
readonly scale?: number | undefined;
|
|
@@ -2954,7 +2894,6 @@ declare const FeedItem: Omit<{
|
|
|
2954
2894
|
generatedBy?: string | undefined;
|
|
2955
2895
|
} | undefined;
|
|
2956
2896
|
} | undefined;
|
|
2957
|
-
readonly hidden?: boolean | undefined;
|
|
2958
2897
|
readonly sortable?: boolean | undefined;
|
|
2959
2898
|
readonly inlineHelpText?: string | undefined;
|
|
2960
2899
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2981,10 +2920,12 @@ declare const FeedItem: Omit<{
|
|
|
2981
2920
|
readonly dependencies?: string[] | undefined;
|
|
2982
2921
|
readonly theme?: string | undefined;
|
|
2983
2922
|
readonly externalId?: boolean | undefined;
|
|
2923
|
+
readonly defaultValue?: unknown;
|
|
2924
|
+
readonly group?: string | undefined;
|
|
2925
|
+
readonly hidden?: boolean | undefined;
|
|
2984
2926
|
readonly system?: boolean | undefined;
|
|
2985
2927
|
readonly min?: number | undefined;
|
|
2986
2928
|
readonly max?: number | undefined;
|
|
2987
|
-
readonly group?: string | undefined;
|
|
2988
2929
|
readonly encryptionConfig?: {
|
|
2989
2930
|
enabled: boolean;
|
|
2990
2931
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3005,7 +2946,6 @@ declare const FeedItem: Omit<{
|
|
|
3005
2946
|
readonly columnName?: string | undefined;
|
|
3006
2947
|
readonly searchable?: boolean | undefined;
|
|
3007
2948
|
readonly unique?: boolean | undefined;
|
|
3008
|
-
readonly defaultValue?: unknown;
|
|
3009
2949
|
readonly maxLength?: number | undefined;
|
|
3010
2950
|
readonly minLength?: number | undefined;
|
|
3011
2951
|
readonly scale?: number | undefined;
|
|
@@ -3129,7 +3069,6 @@ declare const FeedItem: Omit<{
|
|
|
3129
3069
|
generatedBy?: string | undefined;
|
|
3130
3070
|
} | undefined;
|
|
3131
3071
|
} | undefined;
|
|
3132
|
-
readonly hidden?: boolean | undefined;
|
|
3133
3072
|
readonly sortable?: boolean | undefined;
|
|
3134
3073
|
readonly inlineHelpText?: string | undefined;
|
|
3135
3074
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3156,10 +3095,12 @@ declare const FeedItem: Omit<{
|
|
|
3156
3095
|
readonly dependencies?: string[] | undefined;
|
|
3157
3096
|
readonly theme?: string | undefined;
|
|
3158
3097
|
readonly externalId?: boolean | undefined;
|
|
3098
|
+
readonly defaultValue?: unknown;
|
|
3099
|
+
readonly group?: string | undefined;
|
|
3100
|
+
readonly hidden?: boolean | undefined;
|
|
3159
3101
|
readonly system?: boolean | undefined;
|
|
3160
3102
|
readonly min?: number | undefined;
|
|
3161
3103
|
readonly max?: number | undefined;
|
|
3162
|
-
readonly group?: string | undefined;
|
|
3163
3104
|
readonly encryptionConfig?: {
|
|
3164
3105
|
enabled: boolean;
|
|
3165
3106
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3180,7 +3121,6 @@ declare const FeedItem: Omit<{
|
|
|
3180
3121
|
readonly columnName?: string | undefined;
|
|
3181
3122
|
readonly searchable?: boolean | undefined;
|
|
3182
3123
|
readonly unique?: boolean | undefined;
|
|
3183
|
-
readonly defaultValue?: unknown;
|
|
3184
3124
|
readonly maxLength?: number | undefined;
|
|
3185
3125
|
readonly minLength?: number | undefined;
|
|
3186
3126
|
readonly scale?: number | undefined;
|
|
@@ -3304,7 +3244,6 @@ declare const FeedItem: Omit<{
|
|
|
3304
3244
|
generatedBy?: string | undefined;
|
|
3305
3245
|
} | undefined;
|
|
3306
3246
|
} | undefined;
|
|
3307
|
-
readonly hidden?: boolean | undefined;
|
|
3308
3247
|
readonly sortable?: boolean | undefined;
|
|
3309
3248
|
readonly inlineHelpText?: string | undefined;
|
|
3310
3249
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3331,10 +3270,12 @@ declare const FeedItem: Omit<{
|
|
|
3331
3270
|
readonly dependencies?: string[] | undefined;
|
|
3332
3271
|
readonly theme?: string | undefined;
|
|
3333
3272
|
readonly externalId?: boolean | undefined;
|
|
3273
|
+
readonly defaultValue?: unknown;
|
|
3274
|
+
readonly group?: string | undefined;
|
|
3275
|
+
readonly hidden?: boolean | undefined;
|
|
3334
3276
|
readonly system?: boolean | undefined;
|
|
3335
3277
|
readonly min?: number | undefined;
|
|
3336
3278
|
readonly max?: number | undefined;
|
|
3337
|
-
readonly group?: string | undefined;
|
|
3338
3279
|
readonly encryptionConfig?: {
|
|
3339
3280
|
enabled: boolean;
|
|
3340
3281
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3355,7 +3296,6 @@ declare const FeedItem: Omit<{
|
|
|
3355
3296
|
readonly columnName?: string | undefined;
|
|
3356
3297
|
readonly searchable?: boolean | undefined;
|
|
3357
3298
|
readonly unique?: boolean | undefined;
|
|
3358
|
-
readonly defaultValue?: unknown;
|
|
3359
3299
|
readonly maxLength?: number | undefined;
|
|
3360
3300
|
readonly minLength?: number | undefined;
|
|
3361
3301
|
readonly scale?: number | undefined;
|
|
@@ -3479,7 +3419,6 @@ declare const FeedItem: Omit<{
|
|
|
3479
3419
|
generatedBy?: string | undefined;
|
|
3480
3420
|
} | undefined;
|
|
3481
3421
|
} | undefined;
|
|
3482
|
-
readonly hidden?: boolean | undefined;
|
|
3483
3422
|
readonly sortable?: boolean | undefined;
|
|
3484
3423
|
readonly inlineHelpText?: string | undefined;
|
|
3485
3424
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3506,10 +3445,12 @@ declare const FeedItem: Omit<{
|
|
|
3506
3445
|
readonly dependencies?: string[] | undefined;
|
|
3507
3446
|
readonly theme?: string | undefined;
|
|
3508
3447
|
readonly externalId?: boolean | undefined;
|
|
3448
|
+
readonly defaultValue?: unknown;
|
|
3449
|
+
readonly group?: string | undefined;
|
|
3450
|
+
readonly hidden?: boolean | undefined;
|
|
3509
3451
|
readonly system?: boolean | undefined;
|
|
3510
3452
|
readonly min?: number | undefined;
|
|
3511
3453
|
readonly max?: number | undefined;
|
|
3512
|
-
readonly group?: string | undefined;
|
|
3513
3454
|
readonly encryptionConfig?: {
|
|
3514
3455
|
enabled: boolean;
|
|
3515
3456
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3530,7 +3471,6 @@ declare const FeedItem: Omit<{
|
|
|
3530
3471
|
readonly columnName?: string | undefined;
|
|
3531
3472
|
readonly searchable?: boolean | undefined;
|
|
3532
3473
|
readonly unique?: boolean | undefined;
|
|
3533
|
-
readonly defaultValue?: unknown;
|
|
3534
3474
|
readonly maxLength?: number | undefined;
|
|
3535
3475
|
readonly minLength?: number | undefined;
|
|
3536
3476
|
readonly scale?: number | undefined;
|
|
@@ -3654,7 +3594,6 @@ declare const FeedItem: Omit<{
|
|
|
3654
3594
|
generatedBy?: string | undefined;
|
|
3655
3595
|
} | undefined;
|
|
3656
3596
|
} | undefined;
|
|
3657
|
-
readonly hidden?: boolean | undefined;
|
|
3658
3597
|
readonly sortable?: boolean | undefined;
|
|
3659
3598
|
readonly inlineHelpText?: string | undefined;
|
|
3660
3599
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3681,10 +3620,12 @@ declare const FeedItem: Omit<{
|
|
|
3681
3620
|
readonly dependencies?: string[] | undefined;
|
|
3682
3621
|
readonly theme?: string | undefined;
|
|
3683
3622
|
readonly externalId?: boolean | undefined;
|
|
3623
|
+
readonly defaultValue?: unknown;
|
|
3624
|
+
readonly group?: string | undefined;
|
|
3625
|
+
readonly hidden?: boolean | undefined;
|
|
3684
3626
|
readonly system?: boolean | undefined;
|
|
3685
3627
|
readonly min?: number | undefined;
|
|
3686
3628
|
readonly max?: number | undefined;
|
|
3687
|
-
readonly group?: string | undefined;
|
|
3688
3629
|
readonly encryptionConfig?: {
|
|
3689
3630
|
enabled: boolean;
|
|
3690
3631
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3705,7 +3646,6 @@ declare const FeedItem: Omit<{
|
|
|
3705
3646
|
readonly columnName?: string | undefined;
|
|
3706
3647
|
readonly searchable?: boolean | undefined;
|
|
3707
3648
|
readonly unique?: boolean | undefined;
|
|
3708
|
-
readonly defaultValue?: unknown;
|
|
3709
3649
|
readonly maxLength?: number | undefined;
|
|
3710
3650
|
readonly minLength?: number | undefined;
|
|
3711
3651
|
readonly scale?: number | undefined;
|
|
@@ -3829,7 +3769,6 @@ declare const FeedItem: Omit<{
|
|
|
3829
3769
|
generatedBy?: string | undefined;
|
|
3830
3770
|
} | undefined;
|
|
3831
3771
|
} | undefined;
|
|
3832
|
-
readonly hidden?: boolean | undefined;
|
|
3833
3772
|
readonly sortable?: boolean | undefined;
|
|
3834
3773
|
readonly inlineHelpText?: string | undefined;
|
|
3835
3774
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3856,10 +3795,12 @@ declare const FeedItem: Omit<{
|
|
|
3856
3795
|
readonly dependencies?: string[] | undefined;
|
|
3857
3796
|
readonly theme?: string | undefined;
|
|
3858
3797
|
readonly externalId?: boolean | undefined;
|
|
3798
|
+
readonly defaultValue?: unknown;
|
|
3799
|
+
readonly group?: string | undefined;
|
|
3800
|
+
readonly hidden?: boolean | undefined;
|
|
3859
3801
|
readonly system?: boolean | undefined;
|
|
3860
3802
|
readonly min?: number | undefined;
|
|
3861
3803
|
readonly max?: number | undefined;
|
|
3862
|
-
readonly group?: string | undefined;
|
|
3863
3804
|
readonly encryptionConfig?: {
|
|
3864
3805
|
enabled: boolean;
|
|
3865
3806
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3880,7 +3821,6 @@ declare const FeedItem: Omit<{
|
|
|
3880
3821
|
readonly columnName?: string | undefined;
|
|
3881
3822
|
readonly searchable?: boolean | undefined;
|
|
3882
3823
|
readonly unique?: boolean | undefined;
|
|
3883
|
-
readonly defaultValue?: unknown;
|
|
3884
3824
|
readonly maxLength?: number | undefined;
|
|
3885
3825
|
readonly minLength?: number | undefined;
|
|
3886
3826
|
readonly scale?: number | undefined;
|
|
@@ -4004,7 +3944,6 @@ declare const FeedItem: Omit<{
|
|
|
4004
3944
|
generatedBy?: string | undefined;
|
|
4005
3945
|
} | undefined;
|
|
4006
3946
|
} | undefined;
|
|
4007
|
-
readonly hidden?: boolean | undefined;
|
|
4008
3947
|
readonly sortable?: boolean | undefined;
|
|
4009
3948
|
readonly inlineHelpText?: string | undefined;
|
|
4010
3949
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4031,10 +3970,12 @@ declare const FeedItem: Omit<{
|
|
|
4031
3970
|
readonly dependencies?: string[] | undefined;
|
|
4032
3971
|
readonly theme?: string | undefined;
|
|
4033
3972
|
readonly externalId?: boolean | undefined;
|
|
3973
|
+
readonly defaultValue?: unknown;
|
|
3974
|
+
readonly group?: string | undefined;
|
|
3975
|
+
readonly hidden?: boolean | undefined;
|
|
4034
3976
|
readonly system?: boolean | undefined;
|
|
4035
3977
|
readonly min?: number | undefined;
|
|
4036
3978
|
readonly max?: number | undefined;
|
|
4037
|
-
readonly group?: string | undefined;
|
|
4038
3979
|
readonly encryptionConfig?: {
|
|
4039
3980
|
enabled: boolean;
|
|
4040
3981
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4055,7 +3996,6 @@ declare const FeedItem: Omit<{
|
|
|
4055
3996
|
readonly columnName?: string | undefined;
|
|
4056
3997
|
readonly searchable?: boolean | undefined;
|
|
4057
3998
|
readonly unique?: boolean | undefined;
|
|
4058
|
-
readonly defaultValue?: unknown;
|
|
4059
3999
|
readonly maxLength?: number | undefined;
|
|
4060
4000
|
readonly minLength?: number | undefined;
|
|
4061
4001
|
readonly scale?: number | undefined;
|
|
@@ -4179,7 +4119,6 @@ declare const FeedItem: Omit<{
|
|
|
4179
4119
|
generatedBy?: string | undefined;
|
|
4180
4120
|
} | undefined;
|
|
4181
4121
|
} | undefined;
|
|
4182
|
-
readonly hidden?: boolean | undefined;
|
|
4183
4122
|
readonly sortable?: boolean | undefined;
|
|
4184
4123
|
readonly inlineHelpText?: string | undefined;
|
|
4185
4124
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4227,7 +4166,7 @@ declare const FeedReaction: Omit<{
|
|
|
4227
4166
|
abstract: boolean;
|
|
4228
4167
|
datasource: string;
|
|
4229
4168
|
fields: Record<string, {
|
|
4230
|
-
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4169
|
+
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
4231
4170
|
required: boolean;
|
|
4232
4171
|
searchable: boolean;
|
|
4233
4172
|
multiple: boolean;
|
|
@@ -4442,6 +4381,14 @@ declare const FeedReaction: Omit<{
|
|
|
4442
4381
|
owner?: boolean | undefined;
|
|
4443
4382
|
audit?: boolean | undefined;
|
|
4444
4383
|
} | undefined;
|
|
4384
|
+
external?: {
|
|
4385
|
+
writable: boolean;
|
|
4386
|
+
remoteName?: string | undefined;
|
|
4387
|
+
remoteSchema?: string | undefined;
|
|
4388
|
+
columnMap?: Record<string, string> | undefined;
|
|
4389
|
+
introspectedAt?: string | undefined;
|
|
4390
|
+
ignoreColumns?: string[] | undefined;
|
|
4391
|
+
} | undefined;
|
|
4445
4392
|
indexes?: {
|
|
4446
4393
|
fields: string[];
|
|
4447
4394
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -4502,36 +4449,6 @@ declare const FeedReaction: Omit<{
|
|
|
4502
4449
|
destination: string;
|
|
4503
4450
|
} | undefined;
|
|
4504
4451
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
4505
|
-
stateMachines?: Record<string, {
|
|
4506
|
-
id: string;
|
|
4507
|
-
initial: string;
|
|
4508
|
-
states: Record<string, StateNodeConfig>;
|
|
4509
|
-
description?: string | undefined;
|
|
4510
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
4511
|
-
on?: Record<string, string | {
|
|
4512
|
-
target?: string | undefined;
|
|
4513
|
-
cond?: string | {
|
|
4514
|
-
type: string;
|
|
4515
|
-
params?: Record<string, unknown> | undefined;
|
|
4516
|
-
} | undefined;
|
|
4517
|
-
actions?: (string | {
|
|
4518
|
-
type: string;
|
|
4519
|
-
params?: Record<string, unknown> | undefined;
|
|
4520
|
-
})[] | undefined;
|
|
4521
|
-
description?: string | undefined;
|
|
4522
|
-
} | {
|
|
4523
|
-
target?: string | undefined;
|
|
4524
|
-
cond?: string | {
|
|
4525
|
-
type: string;
|
|
4526
|
-
params?: Record<string, unknown> | undefined;
|
|
4527
|
-
} | undefined;
|
|
4528
|
-
actions?: (string | {
|
|
4529
|
-
type: string;
|
|
4530
|
-
params?: Record<string, unknown> | undefined;
|
|
4531
|
-
})[] | undefined;
|
|
4532
|
-
description?: string | undefined;
|
|
4533
|
-
}[]> | undefined;
|
|
4534
|
-
}> | undefined;
|
|
4535
4452
|
displayNameField?: string | undefined;
|
|
4536
4453
|
recordName?: {
|
|
4537
4454
|
type: "text" | "autonumber";
|
|
@@ -4621,7 +4538,7 @@ declare const FeedReaction: Omit<{
|
|
|
4621
4538
|
type: "none" | "multiple" | "single";
|
|
4622
4539
|
} | undefined;
|
|
4623
4540
|
navigation?: {
|
|
4624
|
-
mode: "none" | "split" | "page" | "
|
|
4541
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4625
4542
|
preventNavigation: boolean;
|
|
4626
4543
|
openNewTab: boolean;
|
|
4627
4544
|
view?: string | undefined;
|
|
@@ -4810,7 +4727,7 @@ declare const FeedReaction: Omit<{
|
|
|
4810
4727
|
trash: boolean;
|
|
4811
4728
|
mru: boolean;
|
|
4812
4729
|
clone: boolean;
|
|
4813
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
4730
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4814
4731
|
} | undefined;
|
|
4815
4732
|
recordTypes?: string[] | undefined;
|
|
4816
4733
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
@@ -4856,7 +4773,7 @@ declare const FeedReaction: Omit<{
|
|
|
4856
4773
|
field?: string | undefined;
|
|
4857
4774
|
objectOverride?: string | undefined;
|
|
4858
4775
|
label?: string | undefined;
|
|
4859
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4776
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4860
4777
|
options?: {
|
|
4861
4778
|
label: string;
|
|
4862
4779
|
value: string;
|
|
@@ -4908,7 +4825,7 @@ declare const FeedReaction: Omit<{
|
|
|
4908
4825
|
} | undefined;
|
|
4909
4826
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4910
4827
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
4911
|
-
mode?: "custom" | "delete" | "
|
|
4828
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
4912
4829
|
timeout?: number | undefined;
|
|
4913
4830
|
aria?: {
|
|
4914
4831
|
ariaLabel?: string | undefined;
|
|
@@ -4948,10 +4865,12 @@ declare const FeedReaction: Omit<{
|
|
|
4948
4865
|
readonly dependencies?: string[] | undefined;
|
|
4949
4866
|
readonly theme?: string | undefined;
|
|
4950
4867
|
readonly externalId?: boolean | undefined;
|
|
4868
|
+
readonly defaultValue?: unknown;
|
|
4869
|
+
readonly group?: string | undefined;
|
|
4870
|
+
readonly hidden?: boolean | undefined;
|
|
4951
4871
|
readonly system?: boolean | undefined;
|
|
4952
4872
|
readonly min?: number | undefined;
|
|
4953
4873
|
readonly max?: number | undefined;
|
|
4954
|
-
readonly group?: string | undefined;
|
|
4955
4874
|
readonly encryptionConfig?: {
|
|
4956
4875
|
enabled: boolean;
|
|
4957
4876
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4972,7 +4891,6 @@ declare const FeedReaction: Omit<{
|
|
|
4972
4891
|
readonly columnName?: string | undefined;
|
|
4973
4892
|
readonly searchable?: boolean | undefined;
|
|
4974
4893
|
readonly unique?: boolean | undefined;
|
|
4975
|
-
readonly defaultValue?: unknown;
|
|
4976
4894
|
readonly maxLength?: number | undefined;
|
|
4977
4895
|
readonly minLength?: number | undefined;
|
|
4978
4896
|
readonly scale?: number | undefined;
|
|
@@ -5096,7 +5014,6 @@ declare const FeedReaction: Omit<{
|
|
|
5096
5014
|
generatedBy?: string | undefined;
|
|
5097
5015
|
} | undefined;
|
|
5098
5016
|
} | undefined;
|
|
5099
|
-
readonly hidden?: boolean | undefined;
|
|
5100
5017
|
readonly sortable?: boolean | undefined;
|
|
5101
5018
|
readonly inlineHelpText?: string | undefined;
|
|
5102
5019
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5123,10 +5040,12 @@ declare const FeedReaction: Omit<{
|
|
|
5123
5040
|
readonly dependencies?: string[] | undefined;
|
|
5124
5041
|
readonly theme?: string | undefined;
|
|
5125
5042
|
readonly externalId?: boolean | undefined;
|
|
5043
|
+
readonly defaultValue?: unknown;
|
|
5044
|
+
readonly group?: string | undefined;
|
|
5045
|
+
readonly hidden?: boolean | undefined;
|
|
5126
5046
|
readonly system?: boolean | undefined;
|
|
5127
5047
|
readonly min?: number | undefined;
|
|
5128
5048
|
readonly max?: number | undefined;
|
|
5129
|
-
readonly group?: string | undefined;
|
|
5130
5049
|
readonly encryptionConfig?: {
|
|
5131
5050
|
enabled: boolean;
|
|
5132
5051
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5147,7 +5066,6 @@ declare const FeedReaction: Omit<{
|
|
|
5147
5066
|
readonly columnName?: string | undefined;
|
|
5148
5067
|
readonly searchable?: boolean | undefined;
|
|
5149
5068
|
readonly unique?: boolean | undefined;
|
|
5150
|
-
readonly defaultValue?: unknown;
|
|
5151
5069
|
readonly maxLength?: number | undefined;
|
|
5152
5070
|
readonly minLength?: number | undefined;
|
|
5153
5071
|
readonly scale?: number | undefined;
|
|
@@ -5271,7 +5189,6 @@ declare const FeedReaction: Omit<{
|
|
|
5271
5189
|
generatedBy?: string | undefined;
|
|
5272
5190
|
} | undefined;
|
|
5273
5191
|
} | undefined;
|
|
5274
|
-
readonly hidden?: boolean | undefined;
|
|
5275
5192
|
readonly sortable?: boolean | undefined;
|
|
5276
5193
|
readonly inlineHelpText?: string | undefined;
|
|
5277
5194
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5298,10 +5215,12 @@ declare const FeedReaction: Omit<{
|
|
|
5298
5215
|
readonly dependencies?: string[] | undefined;
|
|
5299
5216
|
readonly theme?: string | undefined;
|
|
5300
5217
|
readonly externalId?: boolean | undefined;
|
|
5218
|
+
readonly defaultValue?: unknown;
|
|
5219
|
+
readonly group?: string | undefined;
|
|
5220
|
+
readonly hidden?: boolean | undefined;
|
|
5301
5221
|
readonly system?: boolean | undefined;
|
|
5302
5222
|
readonly min?: number | undefined;
|
|
5303
5223
|
readonly max?: number | undefined;
|
|
5304
|
-
readonly group?: string | undefined;
|
|
5305
5224
|
readonly encryptionConfig?: {
|
|
5306
5225
|
enabled: boolean;
|
|
5307
5226
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5322,7 +5241,6 @@ declare const FeedReaction: Omit<{
|
|
|
5322
5241
|
readonly columnName?: string | undefined;
|
|
5323
5242
|
readonly searchable?: boolean | undefined;
|
|
5324
5243
|
readonly unique?: boolean | undefined;
|
|
5325
|
-
readonly defaultValue?: unknown;
|
|
5326
5244
|
readonly maxLength?: number | undefined;
|
|
5327
5245
|
readonly minLength?: number | undefined;
|
|
5328
5246
|
readonly scale?: number | undefined;
|
|
@@ -5446,7 +5364,6 @@ declare const FeedReaction: Omit<{
|
|
|
5446
5364
|
generatedBy?: string | undefined;
|
|
5447
5365
|
} | undefined;
|
|
5448
5366
|
} | undefined;
|
|
5449
|
-
readonly hidden?: boolean | undefined;
|
|
5450
5367
|
readonly sortable?: boolean | undefined;
|
|
5451
5368
|
readonly inlineHelpText?: string | undefined;
|
|
5452
5369
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5473,10 +5390,12 @@ declare const FeedReaction: Omit<{
|
|
|
5473
5390
|
readonly dependencies?: string[] | undefined;
|
|
5474
5391
|
readonly theme?: string | undefined;
|
|
5475
5392
|
readonly externalId?: boolean | undefined;
|
|
5393
|
+
readonly defaultValue?: unknown;
|
|
5394
|
+
readonly group?: string | undefined;
|
|
5395
|
+
readonly hidden?: boolean | undefined;
|
|
5476
5396
|
readonly system?: boolean | undefined;
|
|
5477
5397
|
readonly min?: number | undefined;
|
|
5478
5398
|
readonly max?: number | undefined;
|
|
5479
|
-
readonly group?: string | undefined;
|
|
5480
5399
|
readonly encryptionConfig?: {
|
|
5481
5400
|
enabled: boolean;
|
|
5482
5401
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5497,7 +5416,6 @@ declare const FeedReaction: Omit<{
|
|
|
5497
5416
|
readonly columnName?: string | undefined;
|
|
5498
5417
|
readonly searchable?: boolean | undefined;
|
|
5499
5418
|
readonly unique?: boolean | undefined;
|
|
5500
|
-
readonly defaultValue?: unknown;
|
|
5501
5419
|
readonly maxLength?: number | undefined;
|
|
5502
5420
|
readonly minLength?: number | undefined;
|
|
5503
5421
|
readonly scale?: number | undefined;
|
|
@@ -5621,7 +5539,6 @@ declare const FeedReaction: Omit<{
|
|
|
5621
5539
|
generatedBy?: string | undefined;
|
|
5622
5540
|
} | undefined;
|
|
5623
5541
|
} | undefined;
|
|
5624
|
-
readonly hidden?: boolean | undefined;
|
|
5625
5542
|
readonly sortable?: boolean | undefined;
|
|
5626
5543
|
readonly inlineHelpText?: string | undefined;
|
|
5627
5544
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5648,10 +5565,12 @@ declare const FeedReaction: Omit<{
|
|
|
5648
5565
|
readonly dependencies?: string[] | undefined;
|
|
5649
5566
|
readonly theme?: string | undefined;
|
|
5650
5567
|
readonly externalId?: boolean | undefined;
|
|
5568
|
+
readonly defaultValue?: unknown;
|
|
5569
|
+
readonly group?: string | undefined;
|
|
5570
|
+
readonly hidden?: boolean | undefined;
|
|
5651
5571
|
readonly system?: boolean | undefined;
|
|
5652
5572
|
readonly min?: number | undefined;
|
|
5653
5573
|
readonly max?: number | undefined;
|
|
5654
|
-
readonly group?: string | undefined;
|
|
5655
5574
|
readonly encryptionConfig?: {
|
|
5656
5575
|
enabled: boolean;
|
|
5657
5576
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5672,7 +5591,6 @@ declare const FeedReaction: Omit<{
|
|
|
5672
5591
|
readonly columnName?: string | undefined;
|
|
5673
5592
|
readonly searchable?: boolean | undefined;
|
|
5674
5593
|
readonly unique?: boolean | undefined;
|
|
5675
|
-
readonly defaultValue?: unknown;
|
|
5676
5594
|
readonly maxLength?: number | undefined;
|
|
5677
5595
|
readonly minLength?: number | undefined;
|
|
5678
5596
|
readonly scale?: number | undefined;
|
|
@@ -5796,7 +5714,6 @@ declare const FeedReaction: Omit<{
|
|
|
5796
5714
|
generatedBy?: string | undefined;
|
|
5797
5715
|
} | undefined;
|
|
5798
5716
|
} | undefined;
|
|
5799
|
-
readonly hidden?: boolean | undefined;
|
|
5800
5717
|
readonly sortable?: boolean | undefined;
|
|
5801
5718
|
readonly inlineHelpText?: string | undefined;
|
|
5802
5719
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5841,7 +5758,7 @@ declare const RecordSubscription: Omit<{
|
|
|
5841
5758
|
abstract: boolean;
|
|
5842
5759
|
datasource: string;
|
|
5843
5760
|
fields: Record<string, {
|
|
5844
|
-
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
5761
|
+
type: "number" | "boolean" | "file" | "email" | "record" | "tags" | "date" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5845
5762
|
required: boolean;
|
|
5846
5763
|
searchable: boolean;
|
|
5847
5764
|
multiple: boolean;
|
|
@@ -6056,6 +5973,14 @@ declare const RecordSubscription: Omit<{
|
|
|
6056
5973
|
owner?: boolean | undefined;
|
|
6057
5974
|
audit?: boolean | undefined;
|
|
6058
5975
|
} | undefined;
|
|
5976
|
+
external?: {
|
|
5977
|
+
writable: boolean;
|
|
5978
|
+
remoteName?: string | undefined;
|
|
5979
|
+
remoteSchema?: string | undefined;
|
|
5980
|
+
columnMap?: Record<string, string> | undefined;
|
|
5981
|
+
introspectedAt?: string | undefined;
|
|
5982
|
+
ignoreColumns?: string[] | undefined;
|
|
5983
|
+
} | undefined;
|
|
6059
5984
|
indexes?: {
|
|
6060
5985
|
fields: string[];
|
|
6061
5986
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -6116,36 +6041,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6116
6041
|
destination: string;
|
|
6117
6042
|
} | undefined;
|
|
6118
6043
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6119
|
-
stateMachines?: Record<string, {
|
|
6120
|
-
id: string;
|
|
6121
|
-
initial: string;
|
|
6122
|
-
states: Record<string, StateNodeConfig>;
|
|
6123
|
-
description?: string | undefined;
|
|
6124
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
6125
|
-
on?: Record<string, string | {
|
|
6126
|
-
target?: string | undefined;
|
|
6127
|
-
cond?: string | {
|
|
6128
|
-
type: string;
|
|
6129
|
-
params?: Record<string, unknown> | undefined;
|
|
6130
|
-
} | undefined;
|
|
6131
|
-
actions?: (string | {
|
|
6132
|
-
type: string;
|
|
6133
|
-
params?: Record<string, unknown> | undefined;
|
|
6134
|
-
})[] | undefined;
|
|
6135
|
-
description?: string | undefined;
|
|
6136
|
-
} | {
|
|
6137
|
-
target?: string | undefined;
|
|
6138
|
-
cond?: string | {
|
|
6139
|
-
type: string;
|
|
6140
|
-
params?: Record<string, unknown> | undefined;
|
|
6141
|
-
} | undefined;
|
|
6142
|
-
actions?: (string | {
|
|
6143
|
-
type: string;
|
|
6144
|
-
params?: Record<string, unknown> | undefined;
|
|
6145
|
-
})[] | undefined;
|
|
6146
|
-
description?: string | undefined;
|
|
6147
|
-
}[]> | undefined;
|
|
6148
|
-
}> | undefined;
|
|
6149
6044
|
displayNameField?: string | undefined;
|
|
6150
6045
|
recordName?: {
|
|
6151
6046
|
type: "text" | "autonumber";
|
|
@@ -6235,7 +6130,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6235
6130
|
type: "none" | "multiple" | "single";
|
|
6236
6131
|
} | undefined;
|
|
6237
6132
|
navigation?: {
|
|
6238
|
-
mode: "none" | "split" | "page" | "
|
|
6133
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6239
6134
|
preventNavigation: boolean;
|
|
6240
6135
|
openNewTab: boolean;
|
|
6241
6136
|
view?: string | undefined;
|
|
@@ -6424,7 +6319,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6424
6319
|
trash: boolean;
|
|
6425
6320
|
mru: boolean;
|
|
6426
6321
|
clone: boolean;
|
|
6427
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
6322
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6428
6323
|
} | undefined;
|
|
6429
6324
|
recordTypes?: string[] | undefined;
|
|
6430
6325
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
@@ -6470,7 +6365,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6470
6365
|
field?: string | undefined;
|
|
6471
6366
|
objectOverride?: string | undefined;
|
|
6472
6367
|
label?: string | undefined;
|
|
6473
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6368
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6474
6369
|
options?: {
|
|
6475
6370
|
label: string;
|
|
6476
6371
|
value: string;
|
|
@@ -6522,7 +6417,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6522
6417
|
} | undefined;
|
|
6523
6418
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
6524
6419
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
6525
|
-
mode?: "custom" | "delete" | "
|
|
6420
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
6526
6421
|
timeout?: number | undefined;
|
|
6527
6422
|
aria?: {
|
|
6528
6423
|
ariaLabel?: string | undefined;
|
|
@@ -6562,10 +6457,12 @@ declare const RecordSubscription: Omit<{
|
|
|
6562
6457
|
readonly dependencies?: string[] | undefined;
|
|
6563
6458
|
readonly theme?: string | undefined;
|
|
6564
6459
|
readonly externalId?: boolean | undefined;
|
|
6460
|
+
readonly defaultValue?: unknown;
|
|
6461
|
+
readonly group?: string | undefined;
|
|
6462
|
+
readonly hidden?: boolean | undefined;
|
|
6565
6463
|
readonly system?: boolean | undefined;
|
|
6566
6464
|
readonly min?: number | undefined;
|
|
6567
6465
|
readonly max?: number | undefined;
|
|
6568
|
-
readonly group?: string | undefined;
|
|
6569
6466
|
readonly encryptionConfig?: {
|
|
6570
6467
|
enabled: boolean;
|
|
6571
6468
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6586,7 +6483,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6586
6483
|
readonly columnName?: string | undefined;
|
|
6587
6484
|
readonly searchable?: boolean | undefined;
|
|
6588
6485
|
readonly unique?: boolean | undefined;
|
|
6589
|
-
readonly defaultValue?: unknown;
|
|
6590
6486
|
readonly maxLength?: number | undefined;
|
|
6591
6487
|
readonly minLength?: number | undefined;
|
|
6592
6488
|
readonly scale?: number | undefined;
|
|
@@ -6710,7 +6606,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6710
6606
|
generatedBy?: string | undefined;
|
|
6711
6607
|
} | undefined;
|
|
6712
6608
|
} | undefined;
|
|
6713
|
-
readonly hidden?: boolean | undefined;
|
|
6714
6609
|
readonly sortable?: boolean | undefined;
|
|
6715
6610
|
readonly inlineHelpText?: string | undefined;
|
|
6716
6611
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6737,10 +6632,12 @@ declare const RecordSubscription: Omit<{
|
|
|
6737
6632
|
readonly dependencies?: string[] | undefined;
|
|
6738
6633
|
readonly theme?: string | undefined;
|
|
6739
6634
|
readonly externalId?: boolean | undefined;
|
|
6635
|
+
readonly defaultValue?: unknown;
|
|
6636
|
+
readonly group?: string | undefined;
|
|
6637
|
+
readonly hidden?: boolean | undefined;
|
|
6740
6638
|
readonly system?: boolean | undefined;
|
|
6741
6639
|
readonly min?: number | undefined;
|
|
6742
6640
|
readonly max?: number | undefined;
|
|
6743
|
-
readonly group?: string | undefined;
|
|
6744
6641
|
readonly encryptionConfig?: {
|
|
6745
6642
|
enabled: boolean;
|
|
6746
6643
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6761,7 +6658,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6761
6658
|
readonly columnName?: string | undefined;
|
|
6762
6659
|
readonly searchable?: boolean | undefined;
|
|
6763
6660
|
readonly unique?: boolean | undefined;
|
|
6764
|
-
readonly defaultValue?: unknown;
|
|
6765
6661
|
readonly maxLength?: number | undefined;
|
|
6766
6662
|
readonly minLength?: number | undefined;
|
|
6767
6663
|
readonly scale?: number | undefined;
|
|
@@ -6885,7 +6781,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6885
6781
|
generatedBy?: string | undefined;
|
|
6886
6782
|
} | undefined;
|
|
6887
6783
|
} | undefined;
|
|
6888
|
-
readonly hidden?: boolean | undefined;
|
|
6889
6784
|
readonly sortable?: boolean | undefined;
|
|
6890
6785
|
readonly inlineHelpText?: string | undefined;
|
|
6891
6786
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6912,10 +6807,12 @@ declare const RecordSubscription: Omit<{
|
|
|
6912
6807
|
readonly dependencies?: string[] | undefined;
|
|
6913
6808
|
readonly theme?: string | undefined;
|
|
6914
6809
|
readonly externalId?: boolean | undefined;
|
|
6810
|
+
readonly defaultValue?: unknown;
|
|
6811
|
+
readonly group?: string | undefined;
|
|
6812
|
+
readonly hidden?: boolean | undefined;
|
|
6915
6813
|
readonly system?: boolean | undefined;
|
|
6916
6814
|
readonly min?: number | undefined;
|
|
6917
6815
|
readonly max?: number | undefined;
|
|
6918
|
-
readonly group?: string | undefined;
|
|
6919
6816
|
readonly encryptionConfig?: {
|
|
6920
6817
|
enabled: boolean;
|
|
6921
6818
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6936,7 +6833,6 @@ declare const RecordSubscription: Omit<{
|
|
|
6936
6833
|
readonly columnName?: string | undefined;
|
|
6937
6834
|
readonly searchable?: boolean | undefined;
|
|
6938
6835
|
readonly unique?: boolean | undefined;
|
|
6939
|
-
readonly defaultValue?: unknown;
|
|
6940
6836
|
readonly maxLength?: number | undefined;
|
|
6941
6837
|
readonly minLength?: number | undefined;
|
|
6942
6838
|
readonly scale?: number | undefined;
|
|
@@ -7060,7 +6956,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7060
6956
|
generatedBy?: string | undefined;
|
|
7061
6957
|
} | undefined;
|
|
7062
6958
|
} | undefined;
|
|
7063
|
-
readonly hidden?: boolean | undefined;
|
|
7064
6959
|
readonly sortable?: boolean | undefined;
|
|
7065
6960
|
readonly inlineHelpText?: string | undefined;
|
|
7066
6961
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7087,10 +6982,12 @@ declare const RecordSubscription: Omit<{
|
|
|
7087
6982
|
readonly dependencies?: string[] | undefined;
|
|
7088
6983
|
readonly theme?: string | undefined;
|
|
7089
6984
|
readonly externalId?: boolean | undefined;
|
|
6985
|
+
readonly defaultValue?: unknown;
|
|
6986
|
+
readonly group?: string | undefined;
|
|
6987
|
+
readonly hidden?: boolean | undefined;
|
|
7090
6988
|
readonly system?: boolean | undefined;
|
|
7091
6989
|
readonly min?: number | undefined;
|
|
7092
6990
|
readonly max?: number | undefined;
|
|
7093
|
-
readonly group?: string | undefined;
|
|
7094
6991
|
readonly encryptionConfig?: {
|
|
7095
6992
|
enabled: boolean;
|
|
7096
6993
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7111,7 +7008,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7111
7008
|
readonly columnName?: string | undefined;
|
|
7112
7009
|
readonly searchable?: boolean | undefined;
|
|
7113
7010
|
readonly unique?: boolean | undefined;
|
|
7114
|
-
readonly defaultValue?: unknown;
|
|
7115
7011
|
readonly maxLength?: number | undefined;
|
|
7116
7012
|
readonly minLength?: number | undefined;
|
|
7117
7013
|
readonly scale?: number | undefined;
|
|
@@ -7235,7 +7131,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7235
7131
|
generatedBy?: string | undefined;
|
|
7236
7132
|
} | undefined;
|
|
7237
7133
|
} | undefined;
|
|
7238
|
-
readonly hidden?: boolean | undefined;
|
|
7239
7134
|
readonly sortable?: boolean | undefined;
|
|
7240
7135
|
readonly inlineHelpText?: string | undefined;
|
|
7241
7136
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7262,10 +7157,12 @@ declare const RecordSubscription: Omit<{
|
|
|
7262
7157
|
readonly dependencies?: string[] | undefined;
|
|
7263
7158
|
readonly theme?: string | undefined;
|
|
7264
7159
|
readonly externalId?: boolean | undefined;
|
|
7160
|
+
readonly defaultValue?: unknown;
|
|
7161
|
+
readonly group?: string | undefined;
|
|
7162
|
+
readonly hidden?: boolean | undefined;
|
|
7265
7163
|
readonly system?: boolean | undefined;
|
|
7266
7164
|
readonly min?: number | undefined;
|
|
7267
7165
|
readonly max?: number | undefined;
|
|
7268
|
-
readonly group?: string | undefined;
|
|
7269
7166
|
readonly encryptionConfig?: {
|
|
7270
7167
|
enabled: boolean;
|
|
7271
7168
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7286,7 +7183,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7286
7183
|
readonly columnName?: string | undefined;
|
|
7287
7184
|
readonly searchable?: boolean | undefined;
|
|
7288
7185
|
readonly unique?: boolean | undefined;
|
|
7289
|
-
readonly defaultValue?: unknown;
|
|
7290
7186
|
readonly maxLength?: number | undefined;
|
|
7291
7187
|
readonly minLength?: number | undefined;
|
|
7292
7188
|
readonly scale?: number | undefined;
|
|
@@ -7410,7 +7306,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7410
7306
|
generatedBy?: string | undefined;
|
|
7411
7307
|
} | undefined;
|
|
7412
7308
|
} | undefined;
|
|
7413
|
-
readonly hidden?: boolean | undefined;
|
|
7414
7309
|
readonly sortable?: boolean | undefined;
|
|
7415
7310
|
readonly inlineHelpText?: string | undefined;
|
|
7416
7311
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7437,10 +7332,12 @@ declare const RecordSubscription: Omit<{
|
|
|
7437
7332
|
readonly dependencies?: string[] | undefined;
|
|
7438
7333
|
readonly theme?: string | undefined;
|
|
7439
7334
|
readonly externalId?: boolean | undefined;
|
|
7335
|
+
readonly defaultValue?: unknown;
|
|
7336
|
+
readonly group?: string | undefined;
|
|
7337
|
+
readonly hidden?: boolean | undefined;
|
|
7440
7338
|
readonly system?: boolean | undefined;
|
|
7441
7339
|
readonly min?: number | undefined;
|
|
7442
7340
|
readonly max?: number | undefined;
|
|
7443
|
-
readonly group?: string | undefined;
|
|
7444
7341
|
readonly encryptionConfig?: {
|
|
7445
7342
|
enabled: boolean;
|
|
7446
7343
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7461,7 +7358,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7461
7358
|
readonly columnName?: string | undefined;
|
|
7462
7359
|
readonly searchable?: boolean | undefined;
|
|
7463
7360
|
readonly unique?: boolean | undefined;
|
|
7464
|
-
readonly defaultValue?: unknown;
|
|
7465
7361
|
readonly maxLength?: number | undefined;
|
|
7466
7362
|
readonly minLength?: number | undefined;
|
|
7467
7363
|
readonly scale?: number | undefined;
|
|
@@ -7585,7 +7481,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7585
7481
|
generatedBy?: string | undefined;
|
|
7586
7482
|
} | undefined;
|
|
7587
7483
|
} | undefined;
|
|
7588
|
-
readonly hidden?: boolean | undefined;
|
|
7589
7484
|
readonly sortable?: boolean | undefined;
|
|
7590
7485
|
readonly inlineHelpText?: string | undefined;
|
|
7591
7486
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7612,10 +7507,12 @@ declare const RecordSubscription: Omit<{
|
|
|
7612
7507
|
readonly dependencies?: string[] | undefined;
|
|
7613
7508
|
readonly theme?: string | undefined;
|
|
7614
7509
|
readonly externalId?: boolean | undefined;
|
|
7510
|
+
readonly defaultValue?: unknown;
|
|
7511
|
+
readonly group?: string | undefined;
|
|
7512
|
+
readonly hidden?: boolean | undefined;
|
|
7615
7513
|
readonly system?: boolean | undefined;
|
|
7616
7514
|
readonly min?: number | undefined;
|
|
7617
7515
|
readonly max?: number | undefined;
|
|
7618
|
-
readonly group?: string | undefined;
|
|
7619
7516
|
readonly encryptionConfig?: {
|
|
7620
7517
|
enabled: boolean;
|
|
7621
7518
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7636,7 +7533,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7636
7533
|
readonly columnName?: string | undefined;
|
|
7637
7534
|
readonly searchable?: boolean | undefined;
|
|
7638
7535
|
readonly unique?: boolean | undefined;
|
|
7639
|
-
readonly defaultValue?: unknown;
|
|
7640
7536
|
readonly maxLength?: number | undefined;
|
|
7641
7537
|
readonly minLength?: number | undefined;
|
|
7642
7538
|
readonly scale?: number | undefined;
|
|
@@ -7760,7 +7656,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7760
7656
|
generatedBy?: string | undefined;
|
|
7761
7657
|
} | undefined;
|
|
7762
7658
|
} | undefined;
|
|
7763
|
-
readonly hidden?: boolean | undefined;
|
|
7764
7659
|
readonly sortable?: boolean | undefined;
|
|
7765
7660
|
readonly inlineHelpText?: string | undefined;
|
|
7766
7661
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7787,10 +7682,12 @@ declare const RecordSubscription: Omit<{
|
|
|
7787
7682
|
readonly dependencies?: string[] | undefined;
|
|
7788
7683
|
readonly theme?: string | undefined;
|
|
7789
7684
|
readonly externalId?: boolean | undefined;
|
|
7685
|
+
readonly defaultValue?: unknown;
|
|
7686
|
+
readonly group?: string | undefined;
|
|
7687
|
+
readonly hidden?: boolean | undefined;
|
|
7790
7688
|
readonly system?: boolean | undefined;
|
|
7791
7689
|
readonly min?: number | undefined;
|
|
7792
7690
|
readonly max?: number | undefined;
|
|
7793
|
-
readonly group?: string | undefined;
|
|
7794
7691
|
readonly encryptionConfig?: {
|
|
7795
7692
|
enabled: boolean;
|
|
7796
7693
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7811,7 +7708,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7811
7708
|
readonly columnName?: string | undefined;
|
|
7812
7709
|
readonly searchable?: boolean | undefined;
|
|
7813
7710
|
readonly unique?: boolean | undefined;
|
|
7814
|
-
readonly defaultValue?: unknown;
|
|
7815
7711
|
readonly maxLength?: number | undefined;
|
|
7816
7712
|
readonly minLength?: number | undefined;
|
|
7817
7713
|
readonly scale?: number | undefined;
|
|
@@ -7935,7 +7831,6 @@ declare const RecordSubscription: Omit<{
|
|
|
7935
7831
|
generatedBy?: string | undefined;
|
|
7936
7832
|
} | undefined;
|
|
7937
7833
|
} | undefined;
|
|
7938
|
-
readonly hidden?: boolean | undefined;
|
|
7939
7834
|
readonly sortable?: boolean | undefined;
|
|
7940
7835
|
readonly inlineHelpText?: string | undefined;
|
|
7941
7836
|
readonly trackFeedHistory?: boolean | undefined;
|