@objectstack/service-messaging 9.9.1 → 9.11.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 +182 -21
- package/dist/index.d.ts +182 -21
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1437,7 +1437,7 @@ declare const InboxMessage: Omit<{
|
|
|
1437
1437
|
abstract: boolean;
|
|
1438
1438
|
datasource: string;
|
|
1439
1439
|
fields: Record<string, {
|
|
1440
|
-
type: "number" | "boolean" | "
|
|
1440
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1441
1441
|
required: boolean;
|
|
1442
1442
|
searchable: boolean;
|
|
1443
1443
|
multiple: boolean;
|
|
@@ -1872,6 +1872,29 @@ declare const InboxMessage: Omit<{
|
|
|
1872
1872
|
titleField: string;
|
|
1873
1873
|
progressField?: string | undefined;
|
|
1874
1874
|
dependenciesField?: string | undefined;
|
|
1875
|
+
colorField?: string | undefined;
|
|
1876
|
+
parentField?: string | undefined;
|
|
1877
|
+
typeField?: string | undefined;
|
|
1878
|
+
baselineStartField?: string | undefined;
|
|
1879
|
+
baselineEndField?: string | undefined;
|
|
1880
|
+
groupByField?: string | undefined;
|
|
1881
|
+
resourceView?: boolean | undefined;
|
|
1882
|
+
assigneeField?: string | undefined;
|
|
1883
|
+
effortField?: string | undefined;
|
|
1884
|
+
capacity?: number | undefined;
|
|
1885
|
+
tooltipFields?: (string | {
|
|
1886
|
+
field: string;
|
|
1887
|
+
label?: string | undefined;
|
|
1888
|
+
})[] | undefined;
|
|
1889
|
+
quickFilters?: {
|
|
1890
|
+
field: string;
|
|
1891
|
+
label?: string | undefined;
|
|
1892
|
+
options?: (string | {
|
|
1893
|
+
value: string | number;
|
|
1894
|
+
label?: string | undefined;
|
|
1895
|
+
})[] | undefined;
|
|
1896
|
+
}[] | undefined;
|
|
1897
|
+
autoZoomToFilter?: boolean | undefined;
|
|
1875
1898
|
} | undefined;
|
|
1876
1899
|
gallery?: {
|
|
1877
1900
|
coverFit: "cover" | "contain";
|
|
@@ -2035,7 +2058,7 @@ declare const InboxMessage: Omit<{
|
|
|
2035
2058
|
clone: boolean;
|
|
2036
2059
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
2037
2060
|
} | undefined;
|
|
2038
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
2061
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
2039
2062
|
publicSharing?: {
|
|
2040
2063
|
enabled: boolean;
|
|
2041
2064
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -2067,7 +2090,7 @@ declare const InboxMessage: Omit<{
|
|
|
2067
2090
|
} | {
|
|
2068
2091
|
language: "js";
|
|
2069
2092
|
source: string;
|
|
2070
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
2093
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
2071
2094
|
timeoutMs?: number | undefined;
|
|
2072
2095
|
memoryMb?: number | undefined;
|
|
2073
2096
|
} | undefined;
|
|
@@ -3772,7 +3795,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
3772
3795
|
abstract: boolean;
|
|
3773
3796
|
datasource: string;
|
|
3774
3797
|
fields: Record<string, {
|
|
3775
|
-
type: "number" | "boolean" | "
|
|
3798
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3776
3799
|
required: boolean;
|
|
3777
3800
|
searchable: boolean;
|
|
3778
3801
|
multiple: boolean;
|
|
@@ -4207,6 +4230,29 @@ declare const NotificationReceipt: Omit<{
|
|
|
4207
4230
|
titleField: string;
|
|
4208
4231
|
progressField?: string | undefined;
|
|
4209
4232
|
dependenciesField?: string | undefined;
|
|
4233
|
+
colorField?: string | undefined;
|
|
4234
|
+
parentField?: string | undefined;
|
|
4235
|
+
typeField?: string | undefined;
|
|
4236
|
+
baselineStartField?: string | undefined;
|
|
4237
|
+
baselineEndField?: string | undefined;
|
|
4238
|
+
groupByField?: string | undefined;
|
|
4239
|
+
resourceView?: boolean | undefined;
|
|
4240
|
+
assigneeField?: string | undefined;
|
|
4241
|
+
effortField?: string | undefined;
|
|
4242
|
+
capacity?: number | undefined;
|
|
4243
|
+
tooltipFields?: (string | {
|
|
4244
|
+
field: string;
|
|
4245
|
+
label?: string | undefined;
|
|
4246
|
+
})[] | undefined;
|
|
4247
|
+
quickFilters?: {
|
|
4248
|
+
field: string;
|
|
4249
|
+
label?: string | undefined;
|
|
4250
|
+
options?: (string | {
|
|
4251
|
+
value: string | number;
|
|
4252
|
+
label?: string | undefined;
|
|
4253
|
+
})[] | undefined;
|
|
4254
|
+
}[] | undefined;
|
|
4255
|
+
autoZoomToFilter?: boolean | undefined;
|
|
4210
4256
|
} | undefined;
|
|
4211
4257
|
gallery?: {
|
|
4212
4258
|
coverFit: "cover" | "contain";
|
|
@@ -4370,7 +4416,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4370
4416
|
clone: boolean;
|
|
4371
4417
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4372
4418
|
} | undefined;
|
|
4373
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
4419
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4374
4420
|
publicSharing?: {
|
|
4375
4421
|
enabled: boolean;
|
|
4376
4422
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4402,7 +4448,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4402
4448
|
} | {
|
|
4403
4449
|
language: "js";
|
|
4404
4450
|
source: string;
|
|
4405
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4451
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4406
4452
|
timeoutMs?: number | undefined;
|
|
4407
4453
|
memoryMb?: number | undefined;
|
|
4408
4454
|
} | undefined;
|
|
@@ -5773,7 +5819,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
5773
5819
|
abstract: boolean;
|
|
5774
5820
|
datasource: string;
|
|
5775
5821
|
fields: Record<string, {
|
|
5776
|
-
type: "number" | "boolean" | "
|
|
5822
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5777
5823
|
required: boolean;
|
|
5778
5824
|
searchable: boolean;
|
|
5779
5825
|
multiple: boolean;
|
|
@@ -6208,6 +6254,29 @@ declare const NotificationDelivery: Omit<{
|
|
|
6208
6254
|
titleField: string;
|
|
6209
6255
|
progressField?: string | undefined;
|
|
6210
6256
|
dependenciesField?: string | undefined;
|
|
6257
|
+
colorField?: string | undefined;
|
|
6258
|
+
parentField?: string | undefined;
|
|
6259
|
+
typeField?: string | undefined;
|
|
6260
|
+
baselineStartField?: string | undefined;
|
|
6261
|
+
baselineEndField?: string | undefined;
|
|
6262
|
+
groupByField?: string | undefined;
|
|
6263
|
+
resourceView?: boolean | undefined;
|
|
6264
|
+
assigneeField?: string | undefined;
|
|
6265
|
+
effortField?: string | undefined;
|
|
6266
|
+
capacity?: number | undefined;
|
|
6267
|
+
tooltipFields?: (string | {
|
|
6268
|
+
field: string;
|
|
6269
|
+
label?: string | undefined;
|
|
6270
|
+
})[] | undefined;
|
|
6271
|
+
quickFilters?: {
|
|
6272
|
+
field: string;
|
|
6273
|
+
label?: string | undefined;
|
|
6274
|
+
options?: (string | {
|
|
6275
|
+
value: string | number;
|
|
6276
|
+
label?: string | undefined;
|
|
6277
|
+
})[] | undefined;
|
|
6278
|
+
}[] | undefined;
|
|
6279
|
+
autoZoomToFilter?: boolean | undefined;
|
|
6211
6280
|
} | undefined;
|
|
6212
6281
|
gallery?: {
|
|
6213
6282
|
coverFit: "cover" | "contain";
|
|
@@ -6371,7 +6440,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6371
6440
|
clone: boolean;
|
|
6372
6441
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6373
6442
|
} | undefined;
|
|
6374
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
6443
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6375
6444
|
publicSharing?: {
|
|
6376
6445
|
enabled: boolean;
|
|
6377
6446
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6403,7 +6472,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6403
6472
|
} | {
|
|
6404
6473
|
language: "js";
|
|
6405
6474
|
source: string;
|
|
6406
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
6475
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
6407
6476
|
timeoutMs?: number | undefined;
|
|
6408
6477
|
memoryMb?: number | undefined;
|
|
6409
6478
|
} | undefined;
|
|
@@ -9179,7 +9248,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9179
9248
|
abstract: boolean;
|
|
9180
9249
|
datasource: string;
|
|
9181
9250
|
fields: Record<string, {
|
|
9182
|
-
type: "number" | "boolean" | "
|
|
9251
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9183
9252
|
required: boolean;
|
|
9184
9253
|
searchable: boolean;
|
|
9185
9254
|
multiple: boolean;
|
|
@@ -9614,6 +9683,29 @@ declare const NotificationPreference: Omit<{
|
|
|
9614
9683
|
titleField: string;
|
|
9615
9684
|
progressField?: string | undefined;
|
|
9616
9685
|
dependenciesField?: string | undefined;
|
|
9686
|
+
colorField?: string | undefined;
|
|
9687
|
+
parentField?: string | undefined;
|
|
9688
|
+
typeField?: string | undefined;
|
|
9689
|
+
baselineStartField?: string | undefined;
|
|
9690
|
+
baselineEndField?: string | undefined;
|
|
9691
|
+
groupByField?: string | undefined;
|
|
9692
|
+
resourceView?: boolean | undefined;
|
|
9693
|
+
assigneeField?: string | undefined;
|
|
9694
|
+
effortField?: string | undefined;
|
|
9695
|
+
capacity?: number | undefined;
|
|
9696
|
+
tooltipFields?: (string | {
|
|
9697
|
+
field: string;
|
|
9698
|
+
label?: string | undefined;
|
|
9699
|
+
})[] | undefined;
|
|
9700
|
+
quickFilters?: {
|
|
9701
|
+
field: string;
|
|
9702
|
+
label?: string | undefined;
|
|
9703
|
+
options?: (string | {
|
|
9704
|
+
value: string | number;
|
|
9705
|
+
label?: string | undefined;
|
|
9706
|
+
})[] | undefined;
|
|
9707
|
+
}[] | undefined;
|
|
9708
|
+
autoZoomToFilter?: boolean | undefined;
|
|
9617
9709
|
} | undefined;
|
|
9618
9710
|
gallery?: {
|
|
9619
9711
|
coverFit: "cover" | "contain";
|
|
@@ -9777,7 +9869,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9777
9869
|
clone: boolean;
|
|
9778
9870
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
9779
9871
|
} | undefined;
|
|
9780
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
9872
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
9781
9873
|
publicSharing?: {
|
|
9782
9874
|
enabled: boolean;
|
|
9783
9875
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -9809,7 +9901,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9809
9901
|
} | {
|
|
9810
9902
|
language: "js";
|
|
9811
9903
|
source: string;
|
|
9812
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
9904
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
9813
9905
|
timeoutMs?: number | undefined;
|
|
9814
9906
|
memoryMb?: number | undefined;
|
|
9815
9907
|
} | undefined;
|
|
@@ -11337,7 +11429,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11337
11429
|
abstract: boolean;
|
|
11338
11430
|
datasource: string;
|
|
11339
11431
|
fields: Record<string, {
|
|
11340
|
-
type: "number" | "boolean" | "
|
|
11432
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
11341
11433
|
required: boolean;
|
|
11342
11434
|
searchable: boolean;
|
|
11343
11435
|
multiple: boolean;
|
|
@@ -11772,6 +11864,29 @@ declare const NotificationSubscription: Omit<{
|
|
|
11772
11864
|
titleField: string;
|
|
11773
11865
|
progressField?: string | undefined;
|
|
11774
11866
|
dependenciesField?: string | undefined;
|
|
11867
|
+
colorField?: string | undefined;
|
|
11868
|
+
parentField?: string | undefined;
|
|
11869
|
+
typeField?: string | undefined;
|
|
11870
|
+
baselineStartField?: string | undefined;
|
|
11871
|
+
baselineEndField?: string | undefined;
|
|
11872
|
+
groupByField?: string | undefined;
|
|
11873
|
+
resourceView?: boolean | undefined;
|
|
11874
|
+
assigneeField?: string | undefined;
|
|
11875
|
+
effortField?: string | undefined;
|
|
11876
|
+
capacity?: number | undefined;
|
|
11877
|
+
tooltipFields?: (string | {
|
|
11878
|
+
field: string;
|
|
11879
|
+
label?: string | undefined;
|
|
11880
|
+
})[] | undefined;
|
|
11881
|
+
quickFilters?: {
|
|
11882
|
+
field: string;
|
|
11883
|
+
label?: string | undefined;
|
|
11884
|
+
options?: (string | {
|
|
11885
|
+
value: string | number;
|
|
11886
|
+
label?: string | undefined;
|
|
11887
|
+
})[] | undefined;
|
|
11888
|
+
}[] | undefined;
|
|
11889
|
+
autoZoomToFilter?: boolean | undefined;
|
|
11775
11890
|
} | undefined;
|
|
11776
11891
|
gallery?: {
|
|
11777
11892
|
coverFit: "cover" | "contain";
|
|
@@ -11935,7 +12050,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11935
12050
|
clone: boolean;
|
|
11936
12051
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
11937
12052
|
} | undefined;
|
|
11938
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
12053
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
11939
12054
|
publicSharing?: {
|
|
11940
12055
|
enabled: boolean;
|
|
11941
12056
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -11967,7 +12082,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11967
12082
|
} | {
|
|
11968
12083
|
language: "js";
|
|
11969
12084
|
source: string;
|
|
11970
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
12085
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
11971
12086
|
timeoutMs?: number | undefined;
|
|
11972
12087
|
memoryMb?: number | undefined;
|
|
11973
12088
|
} | undefined;
|
|
@@ -12874,7 +12989,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
12874
12989
|
abstract: boolean;
|
|
12875
12990
|
datasource: string;
|
|
12876
12991
|
fields: Record<string, {
|
|
12877
|
-
type: "number" | "boolean" | "
|
|
12992
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12878
12993
|
required: boolean;
|
|
12879
12994
|
searchable: boolean;
|
|
12880
12995
|
multiple: boolean;
|
|
@@ -13309,6 +13424,29 @@ declare const NotificationTemplate: Omit<{
|
|
|
13309
13424
|
titleField: string;
|
|
13310
13425
|
progressField?: string | undefined;
|
|
13311
13426
|
dependenciesField?: string | undefined;
|
|
13427
|
+
colorField?: string | undefined;
|
|
13428
|
+
parentField?: string | undefined;
|
|
13429
|
+
typeField?: string | undefined;
|
|
13430
|
+
baselineStartField?: string | undefined;
|
|
13431
|
+
baselineEndField?: string | undefined;
|
|
13432
|
+
groupByField?: string | undefined;
|
|
13433
|
+
resourceView?: boolean | undefined;
|
|
13434
|
+
assigneeField?: string | undefined;
|
|
13435
|
+
effortField?: string | undefined;
|
|
13436
|
+
capacity?: number | undefined;
|
|
13437
|
+
tooltipFields?: (string | {
|
|
13438
|
+
field: string;
|
|
13439
|
+
label?: string | undefined;
|
|
13440
|
+
})[] | undefined;
|
|
13441
|
+
quickFilters?: {
|
|
13442
|
+
field: string;
|
|
13443
|
+
label?: string | undefined;
|
|
13444
|
+
options?: (string | {
|
|
13445
|
+
value: string | number;
|
|
13446
|
+
label?: string | undefined;
|
|
13447
|
+
})[] | undefined;
|
|
13448
|
+
}[] | undefined;
|
|
13449
|
+
autoZoomToFilter?: boolean | undefined;
|
|
13312
13450
|
} | undefined;
|
|
13313
13451
|
gallery?: {
|
|
13314
13452
|
coverFit: "cover" | "contain";
|
|
@@ -13472,7 +13610,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
13472
13610
|
clone: boolean;
|
|
13473
13611
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
13474
13612
|
} | undefined;
|
|
13475
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
13613
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
13476
13614
|
publicSharing?: {
|
|
13477
13615
|
enabled: boolean;
|
|
13478
13616
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -13504,7 +13642,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
13504
13642
|
} | {
|
|
13505
13643
|
language: "js";
|
|
13506
13644
|
source: string;
|
|
13507
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
13645
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
13508
13646
|
timeoutMs?: number | undefined;
|
|
13509
13647
|
memoryMb?: number | undefined;
|
|
13510
13648
|
} | undefined;
|
|
@@ -15349,7 +15487,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15349
15487
|
abstract: boolean;
|
|
15350
15488
|
datasource: string;
|
|
15351
15489
|
fields: Record<string, {
|
|
15352
|
-
type: "number" | "boolean" | "
|
|
15490
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
15353
15491
|
required: boolean;
|
|
15354
15492
|
searchable: boolean;
|
|
15355
15493
|
multiple: boolean;
|
|
@@ -15784,6 +15922,29 @@ declare const HttpDelivery: Omit<{
|
|
|
15784
15922
|
titleField: string;
|
|
15785
15923
|
progressField?: string | undefined;
|
|
15786
15924
|
dependenciesField?: string | undefined;
|
|
15925
|
+
colorField?: string | undefined;
|
|
15926
|
+
parentField?: string | undefined;
|
|
15927
|
+
typeField?: string | undefined;
|
|
15928
|
+
baselineStartField?: string | undefined;
|
|
15929
|
+
baselineEndField?: string | undefined;
|
|
15930
|
+
groupByField?: string | undefined;
|
|
15931
|
+
resourceView?: boolean | undefined;
|
|
15932
|
+
assigneeField?: string | undefined;
|
|
15933
|
+
effortField?: string | undefined;
|
|
15934
|
+
capacity?: number | undefined;
|
|
15935
|
+
tooltipFields?: (string | {
|
|
15936
|
+
field: string;
|
|
15937
|
+
label?: string | undefined;
|
|
15938
|
+
})[] | undefined;
|
|
15939
|
+
quickFilters?: {
|
|
15940
|
+
field: string;
|
|
15941
|
+
label?: string | undefined;
|
|
15942
|
+
options?: (string | {
|
|
15943
|
+
value: string | number;
|
|
15944
|
+
label?: string | undefined;
|
|
15945
|
+
})[] | undefined;
|
|
15946
|
+
}[] | undefined;
|
|
15947
|
+
autoZoomToFilter?: boolean | undefined;
|
|
15787
15948
|
} | undefined;
|
|
15788
15949
|
gallery?: {
|
|
15789
15950
|
coverFit: "cover" | "contain";
|
|
@@ -15947,7 +16108,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15947
16108
|
clone: boolean;
|
|
15948
16109
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
15949
16110
|
} | undefined;
|
|
15950
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
16111
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
15951
16112
|
publicSharing?: {
|
|
15952
16113
|
enabled: boolean;
|
|
15953
16114
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15979,7 +16140,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15979
16140
|
} | {
|
|
15980
16141
|
language: "js";
|
|
15981
16142
|
source: string;
|
|
15982
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
16143
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
15983
16144
|
timeoutMs?: number | undefined;
|
|
15984
16145
|
memoryMb?: number | undefined;
|
|
15985
16146
|
} | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -1437,7 +1437,7 @@ declare const InboxMessage: Omit<{
|
|
|
1437
1437
|
abstract: boolean;
|
|
1438
1438
|
datasource: string;
|
|
1439
1439
|
fields: Record<string, {
|
|
1440
|
-
type: "number" | "boolean" | "
|
|
1440
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1441
1441
|
required: boolean;
|
|
1442
1442
|
searchable: boolean;
|
|
1443
1443
|
multiple: boolean;
|
|
@@ -1872,6 +1872,29 @@ declare const InboxMessage: Omit<{
|
|
|
1872
1872
|
titleField: string;
|
|
1873
1873
|
progressField?: string | undefined;
|
|
1874
1874
|
dependenciesField?: string | undefined;
|
|
1875
|
+
colorField?: string | undefined;
|
|
1876
|
+
parentField?: string | undefined;
|
|
1877
|
+
typeField?: string | undefined;
|
|
1878
|
+
baselineStartField?: string | undefined;
|
|
1879
|
+
baselineEndField?: string | undefined;
|
|
1880
|
+
groupByField?: string | undefined;
|
|
1881
|
+
resourceView?: boolean | undefined;
|
|
1882
|
+
assigneeField?: string | undefined;
|
|
1883
|
+
effortField?: string | undefined;
|
|
1884
|
+
capacity?: number | undefined;
|
|
1885
|
+
tooltipFields?: (string | {
|
|
1886
|
+
field: string;
|
|
1887
|
+
label?: string | undefined;
|
|
1888
|
+
})[] | undefined;
|
|
1889
|
+
quickFilters?: {
|
|
1890
|
+
field: string;
|
|
1891
|
+
label?: string | undefined;
|
|
1892
|
+
options?: (string | {
|
|
1893
|
+
value: string | number;
|
|
1894
|
+
label?: string | undefined;
|
|
1895
|
+
})[] | undefined;
|
|
1896
|
+
}[] | undefined;
|
|
1897
|
+
autoZoomToFilter?: boolean | undefined;
|
|
1875
1898
|
} | undefined;
|
|
1876
1899
|
gallery?: {
|
|
1877
1900
|
coverFit: "cover" | "contain";
|
|
@@ -2035,7 +2058,7 @@ declare const InboxMessage: Omit<{
|
|
|
2035
2058
|
clone: boolean;
|
|
2036
2059
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
2037
2060
|
} | undefined;
|
|
2038
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
2061
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
2039
2062
|
publicSharing?: {
|
|
2040
2063
|
enabled: boolean;
|
|
2041
2064
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -2067,7 +2090,7 @@ declare const InboxMessage: Omit<{
|
|
|
2067
2090
|
} | {
|
|
2068
2091
|
language: "js";
|
|
2069
2092
|
source: string;
|
|
2070
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
2093
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
2071
2094
|
timeoutMs?: number | undefined;
|
|
2072
2095
|
memoryMb?: number | undefined;
|
|
2073
2096
|
} | undefined;
|
|
@@ -3772,7 +3795,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
3772
3795
|
abstract: boolean;
|
|
3773
3796
|
datasource: string;
|
|
3774
3797
|
fields: Record<string, {
|
|
3775
|
-
type: "number" | "boolean" | "
|
|
3798
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3776
3799
|
required: boolean;
|
|
3777
3800
|
searchable: boolean;
|
|
3778
3801
|
multiple: boolean;
|
|
@@ -4207,6 +4230,29 @@ declare const NotificationReceipt: Omit<{
|
|
|
4207
4230
|
titleField: string;
|
|
4208
4231
|
progressField?: string | undefined;
|
|
4209
4232
|
dependenciesField?: string | undefined;
|
|
4233
|
+
colorField?: string | undefined;
|
|
4234
|
+
parentField?: string | undefined;
|
|
4235
|
+
typeField?: string | undefined;
|
|
4236
|
+
baselineStartField?: string | undefined;
|
|
4237
|
+
baselineEndField?: string | undefined;
|
|
4238
|
+
groupByField?: string | undefined;
|
|
4239
|
+
resourceView?: boolean | undefined;
|
|
4240
|
+
assigneeField?: string | undefined;
|
|
4241
|
+
effortField?: string | undefined;
|
|
4242
|
+
capacity?: number | undefined;
|
|
4243
|
+
tooltipFields?: (string | {
|
|
4244
|
+
field: string;
|
|
4245
|
+
label?: string | undefined;
|
|
4246
|
+
})[] | undefined;
|
|
4247
|
+
quickFilters?: {
|
|
4248
|
+
field: string;
|
|
4249
|
+
label?: string | undefined;
|
|
4250
|
+
options?: (string | {
|
|
4251
|
+
value: string | number;
|
|
4252
|
+
label?: string | undefined;
|
|
4253
|
+
})[] | undefined;
|
|
4254
|
+
}[] | undefined;
|
|
4255
|
+
autoZoomToFilter?: boolean | undefined;
|
|
4210
4256
|
} | undefined;
|
|
4211
4257
|
gallery?: {
|
|
4212
4258
|
coverFit: "cover" | "contain";
|
|
@@ -4370,7 +4416,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4370
4416
|
clone: boolean;
|
|
4371
4417
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4372
4418
|
} | undefined;
|
|
4373
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
4419
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4374
4420
|
publicSharing?: {
|
|
4375
4421
|
enabled: boolean;
|
|
4376
4422
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4402,7 +4448,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4402
4448
|
} | {
|
|
4403
4449
|
language: "js";
|
|
4404
4450
|
source: string;
|
|
4405
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4451
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
4406
4452
|
timeoutMs?: number | undefined;
|
|
4407
4453
|
memoryMb?: number | undefined;
|
|
4408
4454
|
} | undefined;
|
|
@@ -5773,7 +5819,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
5773
5819
|
abstract: boolean;
|
|
5774
5820
|
datasource: string;
|
|
5775
5821
|
fields: Record<string, {
|
|
5776
|
-
type: "number" | "boolean" | "
|
|
5822
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5777
5823
|
required: boolean;
|
|
5778
5824
|
searchable: boolean;
|
|
5779
5825
|
multiple: boolean;
|
|
@@ -6208,6 +6254,29 @@ declare const NotificationDelivery: Omit<{
|
|
|
6208
6254
|
titleField: string;
|
|
6209
6255
|
progressField?: string | undefined;
|
|
6210
6256
|
dependenciesField?: string | undefined;
|
|
6257
|
+
colorField?: string | undefined;
|
|
6258
|
+
parentField?: string | undefined;
|
|
6259
|
+
typeField?: string | undefined;
|
|
6260
|
+
baselineStartField?: string | undefined;
|
|
6261
|
+
baselineEndField?: string | undefined;
|
|
6262
|
+
groupByField?: string | undefined;
|
|
6263
|
+
resourceView?: boolean | undefined;
|
|
6264
|
+
assigneeField?: string | undefined;
|
|
6265
|
+
effortField?: string | undefined;
|
|
6266
|
+
capacity?: number | undefined;
|
|
6267
|
+
tooltipFields?: (string | {
|
|
6268
|
+
field: string;
|
|
6269
|
+
label?: string | undefined;
|
|
6270
|
+
})[] | undefined;
|
|
6271
|
+
quickFilters?: {
|
|
6272
|
+
field: string;
|
|
6273
|
+
label?: string | undefined;
|
|
6274
|
+
options?: (string | {
|
|
6275
|
+
value: string | number;
|
|
6276
|
+
label?: string | undefined;
|
|
6277
|
+
})[] | undefined;
|
|
6278
|
+
}[] | undefined;
|
|
6279
|
+
autoZoomToFilter?: boolean | undefined;
|
|
6211
6280
|
} | undefined;
|
|
6212
6281
|
gallery?: {
|
|
6213
6282
|
coverFit: "cover" | "contain";
|
|
@@ -6371,7 +6440,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6371
6440
|
clone: boolean;
|
|
6372
6441
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6373
6442
|
} | undefined;
|
|
6374
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
6443
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6375
6444
|
publicSharing?: {
|
|
6376
6445
|
enabled: boolean;
|
|
6377
6446
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6403,7 +6472,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6403
6472
|
} | {
|
|
6404
6473
|
language: "js";
|
|
6405
6474
|
source: string;
|
|
6406
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
6475
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
6407
6476
|
timeoutMs?: number | undefined;
|
|
6408
6477
|
memoryMb?: number | undefined;
|
|
6409
6478
|
} | undefined;
|
|
@@ -9179,7 +9248,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9179
9248
|
abstract: boolean;
|
|
9180
9249
|
datasource: string;
|
|
9181
9250
|
fields: Record<string, {
|
|
9182
|
-
type: "number" | "boolean" | "
|
|
9251
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9183
9252
|
required: boolean;
|
|
9184
9253
|
searchable: boolean;
|
|
9185
9254
|
multiple: boolean;
|
|
@@ -9614,6 +9683,29 @@ declare const NotificationPreference: Omit<{
|
|
|
9614
9683
|
titleField: string;
|
|
9615
9684
|
progressField?: string | undefined;
|
|
9616
9685
|
dependenciesField?: string | undefined;
|
|
9686
|
+
colorField?: string | undefined;
|
|
9687
|
+
parentField?: string | undefined;
|
|
9688
|
+
typeField?: string | undefined;
|
|
9689
|
+
baselineStartField?: string | undefined;
|
|
9690
|
+
baselineEndField?: string | undefined;
|
|
9691
|
+
groupByField?: string | undefined;
|
|
9692
|
+
resourceView?: boolean | undefined;
|
|
9693
|
+
assigneeField?: string | undefined;
|
|
9694
|
+
effortField?: string | undefined;
|
|
9695
|
+
capacity?: number | undefined;
|
|
9696
|
+
tooltipFields?: (string | {
|
|
9697
|
+
field: string;
|
|
9698
|
+
label?: string | undefined;
|
|
9699
|
+
})[] | undefined;
|
|
9700
|
+
quickFilters?: {
|
|
9701
|
+
field: string;
|
|
9702
|
+
label?: string | undefined;
|
|
9703
|
+
options?: (string | {
|
|
9704
|
+
value: string | number;
|
|
9705
|
+
label?: string | undefined;
|
|
9706
|
+
})[] | undefined;
|
|
9707
|
+
}[] | undefined;
|
|
9708
|
+
autoZoomToFilter?: boolean | undefined;
|
|
9617
9709
|
} | undefined;
|
|
9618
9710
|
gallery?: {
|
|
9619
9711
|
coverFit: "cover" | "contain";
|
|
@@ -9777,7 +9869,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9777
9869
|
clone: boolean;
|
|
9778
9870
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
9779
9871
|
} | undefined;
|
|
9780
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
9872
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
9781
9873
|
publicSharing?: {
|
|
9782
9874
|
enabled: boolean;
|
|
9783
9875
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -9809,7 +9901,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9809
9901
|
} | {
|
|
9810
9902
|
language: "js";
|
|
9811
9903
|
source: string;
|
|
9812
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
9904
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
9813
9905
|
timeoutMs?: number | undefined;
|
|
9814
9906
|
memoryMb?: number | undefined;
|
|
9815
9907
|
} | undefined;
|
|
@@ -11337,7 +11429,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11337
11429
|
abstract: boolean;
|
|
11338
11430
|
datasource: string;
|
|
11339
11431
|
fields: Record<string, {
|
|
11340
|
-
type: "number" | "boolean" | "
|
|
11432
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
11341
11433
|
required: boolean;
|
|
11342
11434
|
searchable: boolean;
|
|
11343
11435
|
multiple: boolean;
|
|
@@ -11772,6 +11864,29 @@ declare const NotificationSubscription: Omit<{
|
|
|
11772
11864
|
titleField: string;
|
|
11773
11865
|
progressField?: string | undefined;
|
|
11774
11866
|
dependenciesField?: string | undefined;
|
|
11867
|
+
colorField?: string | undefined;
|
|
11868
|
+
parentField?: string | undefined;
|
|
11869
|
+
typeField?: string | undefined;
|
|
11870
|
+
baselineStartField?: string | undefined;
|
|
11871
|
+
baselineEndField?: string | undefined;
|
|
11872
|
+
groupByField?: string | undefined;
|
|
11873
|
+
resourceView?: boolean | undefined;
|
|
11874
|
+
assigneeField?: string | undefined;
|
|
11875
|
+
effortField?: string | undefined;
|
|
11876
|
+
capacity?: number | undefined;
|
|
11877
|
+
tooltipFields?: (string | {
|
|
11878
|
+
field: string;
|
|
11879
|
+
label?: string | undefined;
|
|
11880
|
+
})[] | undefined;
|
|
11881
|
+
quickFilters?: {
|
|
11882
|
+
field: string;
|
|
11883
|
+
label?: string | undefined;
|
|
11884
|
+
options?: (string | {
|
|
11885
|
+
value: string | number;
|
|
11886
|
+
label?: string | undefined;
|
|
11887
|
+
})[] | undefined;
|
|
11888
|
+
}[] | undefined;
|
|
11889
|
+
autoZoomToFilter?: boolean | undefined;
|
|
11775
11890
|
} | undefined;
|
|
11776
11891
|
gallery?: {
|
|
11777
11892
|
coverFit: "cover" | "contain";
|
|
@@ -11935,7 +12050,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11935
12050
|
clone: boolean;
|
|
11936
12051
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
11937
12052
|
} | undefined;
|
|
11938
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
12053
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
11939
12054
|
publicSharing?: {
|
|
11940
12055
|
enabled: boolean;
|
|
11941
12056
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -11967,7 +12082,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
11967
12082
|
} | {
|
|
11968
12083
|
language: "js";
|
|
11969
12084
|
source: string;
|
|
11970
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
12085
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
11971
12086
|
timeoutMs?: number | undefined;
|
|
11972
12087
|
memoryMb?: number | undefined;
|
|
11973
12088
|
} | undefined;
|
|
@@ -12874,7 +12989,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
12874
12989
|
abstract: boolean;
|
|
12875
12990
|
datasource: string;
|
|
12876
12991
|
fields: Record<string, {
|
|
12877
|
-
type: "number" | "boolean" | "
|
|
12992
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12878
12993
|
required: boolean;
|
|
12879
12994
|
searchable: boolean;
|
|
12880
12995
|
multiple: boolean;
|
|
@@ -13309,6 +13424,29 @@ declare const NotificationTemplate: Omit<{
|
|
|
13309
13424
|
titleField: string;
|
|
13310
13425
|
progressField?: string | undefined;
|
|
13311
13426
|
dependenciesField?: string | undefined;
|
|
13427
|
+
colorField?: string | undefined;
|
|
13428
|
+
parentField?: string | undefined;
|
|
13429
|
+
typeField?: string | undefined;
|
|
13430
|
+
baselineStartField?: string | undefined;
|
|
13431
|
+
baselineEndField?: string | undefined;
|
|
13432
|
+
groupByField?: string | undefined;
|
|
13433
|
+
resourceView?: boolean | undefined;
|
|
13434
|
+
assigneeField?: string | undefined;
|
|
13435
|
+
effortField?: string | undefined;
|
|
13436
|
+
capacity?: number | undefined;
|
|
13437
|
+
tooltipFields?: (string | {
|
|
13438
|
+
field: string;
|
|
13439
|
+
label?: string | undefined;
|
|
13440
|
+
})[] | undefined;
|
|
13441
|
+
quickFilters?: {
|
|
13442
|
+
field: string;
|
|
13443
|
+
label?: string | undefined;
|
|
13444
|
+
options?: (string | {
|
|
13445
|
+
value: string | number;
|
|
13446
|
+
label?: string | undefined;
|
|
13447
|
+
})[] | undefined;
|
|
13448
|
+
}[] | undefined;
|
|
13449
|
+
autoZoomToFilter?: boolean | undefined;
|
|
13312
13450
|
} | undefined;
|
|
13313
13451
|
gallery?: {
|
|
13314
13452
|
coverFit: "cover" | "contain";
|
|
@@ -13472,7 +13610,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
13472
13610
|
clone: boolean;
|
|
13473
13611
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
13474
13612
|
} | undefined;
|
|
13475
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
13613
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
13476
13614
|
publicSharing?: {
|
|
13477
13615
|
enabled: boolean;
|
|
13478
13616
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -13504,7 +13642,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
13504
13642
|
} | {
|
|
13505
13643
|
language: "js";
|
|
13506
13644
|
source: string;
|
|
13507
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
13645
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
13508
13646
|
timeoutMs?: number | undefined;
|
|
13509
13647
|
memoryMb?: number | undefined;
|
|
13510
13648
|
} | undefined;
|
|
@@ -15349,7 +15487,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15349
15487
|
abstract: boolean;
|
|
15350
15488
|
datasource: string;
|
|
15351
15489
|
fields: Record<string, {
|
|
15352
|
-
type: "number" | "boolean" | "
|
|
15490
|
+
type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
15353
15491
|
required: boolean;
|
|
15354
15492
|
searchable: boolean;
|
|
15355
15493
|
multiple: boolean;
|
|
@@ -15784,6 +15922,29 @@ declare const HttpDelivery: Omit<{
|
|
|
15784
15922
|
titleField: string;
|
|
15785
15923
|
progressField?: string | undefined;
|
|
15786
15924
|
dependenciesField?: string | undefined;
|
|
15925
|
+
colorField?: string | undefined;
|
|
15926
|
+
parentField?: string | undefined;
|
|
15927
|
+
typeField?: string | undefined;
|
|
15928
|
+
baselineStartField?: string | undefined;
|
|
15929
|
+
baselineEndField?: string | undefined;
|
|
15930
|
+
groupByField?: string | undefined;
|
|
15931
|
+
resourceView?: boolean | undefined;
|
|
15932
|
+
assigneeField?: string | undefined;
|
|
15933
|
+
effortField?: string | undefined;
|
|
15934
|
+
capacity?: number | undefined;
|
|
15935
|
+
tooltipFields?: (string | {
|
|
15936
|
+
field: string;
|
|
15937
|
+
label?: string | undefined;
|
|
15938
|
+
})[] | undefined;
|
|
15939
|
+
quickFilters?: {
|
|
15940
|
+
field: string;
|
|
15941
|
+
label?: string | undefined;
|
|
15942
|
+
options?: (string | {
|
|
15943
|
+
value: string | number;
|
|
15944
|
+
label?: string | undefined;
|
|
15945
|
+
})[] | undefined;
|
|
15946
|
+
}[] | undefined;
|
|
15947
|
+
autoZoomToFilter?: boolean | undefined;
|
|
15787
15948
|
} | undefined;
|
|
15788
15949
|
gallery?: {
|
|
15789
15950
|
coverFit: "cover" | "contain";
|
|
@@ -15947,7 +16108,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15947
16108
|
clone: boolean;
|
|
15948
16109
|
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "list" | "get" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
15949
16110
|
} | undefined;
|
|
15950
|
-
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
16111
|
+
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
15951
16112
|
publicSharing?: {
|
|
15952
16113
|
enabled: boolean;
|
|
15953
16114
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15979,7 +16140,7 @@ declare const HttpDelivery: Omit<{
|
|
|
15979
16140
|
} | {
|
|
15980
16141
|
language: "js";
|
|
15981
16142
|
source: string;
|
|
15982
|
-
capabilities: ("api.read" | "api.write" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
16143
|
+
capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
|
|
15983
16144
|
timeoutMs?: number | undefined;
|
|
15984
16145
|
memoryMb?: number | undefined;
|
|
15985
16146
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-messaging",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Messaging Service for ObjectStack — outbound notification dispatch (ADR-0012). Ships the MessagingChannel registry, emit() fan-out, and the always-on inbox channel; other channels (email/webhook/push/IM) plug in.",
|
|
6
6
|
"type": "module",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "9.
|
|
18
|
-
"@objectstack/spec": "9.
|
|
17
|
+
"@objectstack/core": "9.11.0",
|
|
18
|
+
"@objectstack/spec": "9.11.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/node": "^25.9.3",
|