@objectstack/service-messaging 10.2.0 → 10.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1190,16 +1190,17 @@ interface RetentionLogger {
1190
1190
  warn(msg: string): void;
1191
1191
  }
1192
1192
  /**
1193
- * One object the sweeper prunes, plus how to read its age. The pipeline stores
1194
- * timestamps two ways: the event / inbox / receipt rows carry ISO-8601 strings
1195
- * (`created_at`), while the delivery outbox rows carry epoch-ms numbers so the
1196
- * cutoff value is formatted per target. `$lt` works for both (ISO-8601 sorts
1197
- * lexicographically; epoch-ms numerically).
1193
+ * One object the sweeper prunes, plus the field that carries its age. Every
1194
+ * target's `created_at` is a builtin audit column a native `TIMESTAMP` on
1195
+ * Postgres/MySQL so the cutoff is always an ISO-8601 string. (An earlier
1196
+ * version passed an epoch-ms number for the delivery outbox; that compared a
1197
+ * bigint to a timestamp column and Postgres rejected it with "date/time field
1198
+ * value out of range". SQLite's lenient column affinity hid the bug.) The
1199
+ * driver coerces the ISO comparand to the column's storage form per dialect.
1198
1200
  */
1199
1201
  interface RetentionTarget {
1200
1202
  readonly object: string;
1201
1203
  readonly tsField: string;
1202
- readonly format: 'iso' | 'epoch';
1203
1204
  }
1204
1205
  /**
1205
1206
  * Default sweep set, ordered leaf-first (materializations/receipts/deliveries
@@ -1645,6 +1646,7 @@ declare const InboxMessage: Omit<{
1645
1646
  generatedBy?: string | undefined;
1646
1647
  } | undefined;
1647
1648
  } | undefined;
1649
+ requiredPermissions?: string[] | undefined;
1648
1650
  system?: boolean | undefined;
1649
1651
  inlineHelpText?: string | undefined;
1650
1652
  caseSensitive?: boolean | undefined;
@@ -1720,6 +1722,10 @@ declare const InboxMessage: Omit<{
1720
1722
  tenantField: string;
1721
1723
  crossTenantAccess: boolean;
1722
1724
  } | undefined;
1725
+ access?: {
1726
+ default: "public" | "private";
1727
+ } | undefined;
1728
+ requiredPermissions?: string[] | undefined;
1723
1729
  softDelete?: {
1724
1730
  enabled: boolean;
1725
1731
  field: string;
@@ -2173,6 +2179,7 @@ declare const InboxMessage: Omit<{
2173
2179
  generatedBy?: string | undefined;
2174
2180
  } | undefined;
2175
2181
  } | undefined;
2182
+ requiredPermissions?: string[] | undefined;
2176
2183
  shortcut?: string | undefined;
2177
2184
  bulkEnabled?: boolean | undefined;
2178
2185
  ai?: {
@@ -2264,6 +2271,7 @@ declare const InboxMessage: Omit<{
2264
2271
  readonly dependencies?: string[] | undefined;
2265
2272
  readonly externalId?: boolean | undefined;
2266
2273
  readonly defaultValue?: unknown;
2274
+ readonly requiredPermissions?: string[] | undefined;
2267
2275
  readonly group?: string | undefined;
2268
2276
  readonly hidden?: boolean | undefined;
2269
2277
  readonly system?: boolean | undefined;
@@ -2438,6 +2446,7 @@ declare const InboxMessage: Omit<{
2438
2446
  readonly dependencies?: string[] | undefined;
2439
2447
  readonly externalId?: boolean | undefined;
2440
2448
  readonly defaultValue?: unknown;
2449
+ readonly requiredPermissions?: string[] | undefined;
2441
2450
  readonly group?: string | undefined;
2442
2451
  readonly hidden?: boolean | undefined;
2443
2452
  readonly system?: boolean | undefined;
@@ -2612,6 +2621,7 @@ declare const InboxMessage: Omit<{
2612
2621
  readonly dependencies?: string[] | undefined;
2613
2622
  readonly externalId?: boolean | undefined;
2614
2623
  readonly defaultValue?: unknown;
2624
+ readonly requiredPermissions?: string[] | undefined;
2615
2625
  readonly group?: string | undefined;
2616
2626
  readonly hidden?: boolean | undefined;
2617
2627
  readonly system?: boolean | undefined;
@@ -2786,6 +2796,7 @@ declare const InboxMessage: Omit<{
2786
2796
  readonly dependencies?: string[] | undefined;
2787
2797
  readonly externalId?: boolean | undefined;
2788
2798
  readonly defaultValue?: unknown;
2799
+ readonly requiredPermissions?: string[] | undefined;
2789
2800
  readonly group?: string | undefined;
2790
2801
  readonly hidden?: boolean | undefined;
2791
2802
  readonly system?: boolean | undefined;
@@ -2960,6 +2971,7 @@ declare const InboxMessage: Omit<{
2960
2971
  readonly dependencies?: string[] | undefined;
2961
2972
  readonly externalId?: boolean | undefined;
2962
2973
  readonly defaultValue?: unknown;
2974
+ readonly requiredPermissions?: string[] | undefined;
2963
2975
  readonly group?: string | undefined;
2964
2976
  readonly hidden?: boolean | undefined;
2965
2977
  readonly system?: boolean | undefined;
@@ -3134,6 +3146,7 @@ declare const InboxMessage: Omit<{
3134
3146
  readonly dependencies?: string[] | undefined;
3135
3147
  readonly externalId?: boolean | undefined;
3136
3148
  readonly defaultValue?: unknown;
3149
+ readonly requiredPermissions?: string[] | undefined;
3137
3150
  readonly group?: string | undefined;
3138
3151
  readonly hidden?: boolean | undefined;
3139
3152
  readonly system?: boolean | undefined;
@@ -3308,6 +3321,7 @@ declare const InboxMessage: Omit<{
3308
3321
  readonly dependencies?: string[] | undefined;
3309
3322
  readonly externalId?: boolean | undefined;
3310
3323
  readonly defaultValue?: unknown;
3324
+ readonly requiredPermissions?: string[] | undefined;
3311
3325
  readonly group?: string | undefined;
3312
3326
  readonly hidden?: boolean | undefined;
3313
3327
  readonly system?: boolean | undefined;
@@ -3482,6 +3496,7 @@ declare const InboxMessage: Omit<{
3482
3496
  readonly dependencies?: string[] | undefined;
3483
3497
  readonly externalId?: boolean | undefined;
3484
3498
  readonly defaultValue?: unknown;
3499
+ readonly requiredPermissions?: string[] | undefined;
3485
3500
  readonly group?: string | undefined;
3486
3501
  readonly hidden?: boolean | undefined;
3487
3502
  readonly system?: boolean | undefined;
@@ -3656,6 +3671,7 @@ declare const InboxMessage: Omit<{
3656
3671
  readonly dependencies?: string[] | undefined;
3657
3672
  readonly externalId?: boolean | undefined;
3658
3673
  readonly defaultValue?: unknown;
3674
+ readonly requiredPermissions?: string[] | undefined;
3659
3675
  readonly group?: string | undefined;
3660
3676
  readonly hidden?: boolean | undefined;
3661
3677
  readonly system?: boolean | undefined;
@@ -3830,6 +3846,7 @@ declare const InboxMessage: Omit<{
3830
3846
  readonly dependencies?: string[] | undefined;
3831
3847
  readonly externalId?: boolean | undefined;
3832
3848
  readonly defaultValue?: unknown;
3849
+ readonly requiredPermissions?: string[] | undefined;
3833
3850
  readonly group?: string | undefined;
3834
3851
  readonly hidden?: boolean | undefined;
3835
3852
  readonly system?: boolean | undefined;
@@ -4221,6 +4238,7 @@ declare const NotificationReceipt: Omit<{
4221
4238
  generatedBy?: string | undefined;
4222
4239
  } | undefined;
4223
4240
  } | undefined;
4241
+ requiredPermissions?: string[] | undefined;
4224
4242
  system?: boolean | undefined;
4225
4243
  inlineHelpText?: string | undefined;
4226
4244
  caseSensitive?: boolean | undefined;
@@ -4296,6 +4314,10 @@ declare const NotificationReceipt: Omit<{
4296
4314
  tenantField: string;
4297
4315
  crossTenantAccess: boolean;
4298
4316
  } | undefined;
4317
+ access?: {
4318
+ default: "public" | "private";
4319
+ } | undefined;
4320
+ requiredPermissions?: string[] | undefined;
4299
4321
  softDelete?: {
4300
4322
  enabled: boolean;
4301
4323
  field: string;
@@ -4749,6 +4771,7 @@ declare const NotificationReceipt: Omit<{
4749
4771
  generatedBy?: string | undefined;
4750
4772
  } | undefined;
4751
4773
  } | undefined;
4774
+ requiredPermissions?: string[] | undefined;
4752
4775
  shortcut?: string | undefined;
4753
4776
  bulkEnabled?: boolean | undefined;
4754
4777
  ai?: {
@@ -4814,6 +4837,7 @@ declare const NotificationReceipt: Omit<{
4814
4837
  readonly dependencies?: string[] | undefined;
4815
4838
  readonly externalId?: boolean | undefined;
4816
4839
  readonly defaultValue?: unknown;
4840
+ readonly requiredPermissions?: string[] | undefined;
4817
4841
  readonly group?: string | undefined;
4818
4842
  readonly hidden?: boolean | undefined;
4819
4843
  readonly system?: boolean | undefined;
@@ -4988,6 +5012,7 @@ declare const NotificationReceipt: Omit<{
4988
5012
  readonly dependencies?: string[] | undefined;
4989
5013
  readonly externalId?: boolean | undefined;
4990
5014
  readonly defaultValue?: unknown;
5015
+ readonly requiredPermissions?: string[] | undefined;
4991
5016
  readonly group?: string | undefined;
4992
5017
  readonly hidden?: boolean | undefined;
4993
5018
  readonly system?: boolean | undefined;
@@ -5162,6 +5187,7 @@ declare const NotificationReceipt: Omit<{
5162
5187
  readonly dependencies?: string[] | undefined;
5163
5188
  readonly externalId?: boolean | undefined;
5164
5189
  readonly defaultValue?: unknown;
5190
+ readonly requiredPermissions?: string[] | undefined;
5165
5191
  readonly group?: string | undefined;
5166
5192
  readonly hidden?: boolean | undefined;
5167
5193
  readonly system?: boolean | undefined;
@@ -5336,6 +5362,7 @@ declare const NotificationReceipt: Omit<{
5336
5362
  readonly dependencies?: string[] | undefined;
5337
5363
  readonly externalId?: boolean | undefined;
5338
5364
  readonly defaultValue?: unknown;
5365
+ readonly requiredPermissions?: string[] | undefined;
5339
5366
  readonly group?: string | undefined;
5340
5367
  readonly hidden?: boolean | undefined;
5341
5368
  readonly system?: boolean | undefined;
@@ -5510,6 +5537,7 @@ declare const NotificationReceipt: Omit<{
5510
5537
  readonly dependencies?: string[] | undefined;
5511
5538
  readonly externalId?: boolean | undefined;
5512
5539
  readonly defaultValue?: unknown;
5540
+ readonly requiredPermissions?: string[] | undefined;
5513
5541
  readonly group?: string | undefined;
5514
5542
  readonly hidden?: boolean | undefined;
5515
5543
  readonly system?: boolean | undefined;
@@ -5684,6 +5712,7 @@ declare const NotificationReceipt: Omit<{
5684
5712
  readonly dependencies?: string[] | undefined;
5685
5713
  readonly externalId?: boolean | undefined;
5686
5714
  readonly defaultValue?: unknown;
5715
+ readonly requiredPermissions?: string[] | undefined;
5687
5716
  readonly group?: string | undefined;
5688
5717
  readonly hidden?: boolean | undefined;
5689
5718
  readonly system?: boolean | undefined;
@@ -5858,6 +5887,7 @@ declare const NotificationReceipt: Omit<{
5858
5887
  readonly dependencies?: string[] | undefined;
5859
5888
  readonly externalId?: boolean | undefined;
5860
5889
  readonly defaultValue?: unknown;
5890
+ readonly requiredPermissions?: string[] | undefined;
5861
5891
  readonly group?: string | undefined;
5862
5892
  readonly hidden?: boolean | undefined;
5863
5893
  readonly system?: boolean | undefined;
@@ -6032,6 +6062,7 @@ declare const NotificationReceipt: Omit<{
6032
6062
  readonly dependencies?: string[] | undefined;
6033
6063
  readonly externalId?: boolean | undefined;
6034
6064
  readonly defaultValue?: unknown;
6065
+ readonly requiredPermissions?: string[] | undefined;
6035
6066
  readonly group?: string | undefined;
6036
6067
  readonly hidden?: boolean | undefined;
6037
6068
  readonly system?: boolean | undefined;
@@ -6208,7 +6239,9 @@ declare const NotificationReceipt: Omit<{
6208
6239
  *
6209
6240
  * `payload` snapshots the rendered notification content at enqueue time so a
6210
6241
  * later edit of the L2 event can't rewrite an in-flight delivery (and so the
6211
- * dispatcher needs no second read to send). Timestamps are epoch ms.
6242
+ * dispatcher needs no second read to send). Scheduling fields (`claimed_at`,
6243
+ * `next_attempt_at`, `last_attempted_at`) are epoch ms; the builtin
6244
+ * `created_at` / `updated_at` audit columns are native timestamps.
6212
6245
  */
6213
6246
  declare const NotificationDelivery: Omit<{
6214
6247
  name: string;
@@ -6425,6 +6458,7 @@ declare const NotificationDelivery: Omit<{
6425
6458
  generatedBy?: string | undefined;
6426
6459
  } | undefined;
6427
6460
  } | undefined;
6461
+ requiredPermissions?: string[] | undefined;
6428
6462
  system?: boolean | undefined;
6429
6463
  inlineHelpText?: string | undefined;
6430
6464
  caseSensitive?: boolean | undefined;
@@ -6500,6 +6534,10 @@ declare const NotificationDelivery: Omit<{
6500
6534
  tenantField: string;
6501
6535
  crossTenantAccess: boolean;
6502
6536
  } | undefined;
6537
+ access?: {
6538
+ default: "public" | "private";
6539
+ } | undefined;
6540
+ requiredPermissions?: string[] | undefined;
6503
6541
  softDelete?: {
6504
6542
  enabled: boolean;
6505
6543
  field: string;
@@ -6953,6 +6991,7 @@ declare const NotificationDelivery: Omit<{
6953
6991
  generatedBy?: string | undefined;
6954
6992
  } | undefined;
6955
6993
  } | undefined;
6994
+ requiredPermissions?: string[] | undefined;
6956
6995
  shortcut?: string | undefined;
6957
6996
  bulkEnabled?: boolean | undefined;
6958
6997
  ai?: {
@@ -7018,6 +7057,7 @@ declare const NotificationDelivery: Omit<{
7018
7057
  readonly dependencies?: string[] | undefined;
7019
7058
  readonly externalId?: boolean | undefined;
7020
7059
  readonly defaultValue?: unknown;
7060
+ readonly requiredPermissions?: string[] | undefined;
7021
7061
  readonly group?: string | undefined;
7022
7062
  readonly hidden?: boolean | undefined;
7023
7063
  readonly system?: boolean | undefined;
@@ -7192,6 +7232,7 @@ declare const NotificationDelivery: Omit<{
7192
7232
  readonly dependencies?: string[] | undefined;
7193
7233
  readonly externalId?: boolean | undefined;
7194
7234
  readonly defaultValue?: unknown;
7235
+ readonly requiredPermissions?: string[] | undefined;
7195
7236
  readonly group?: string | undefined;
7196
7237
  readonly hidden?: boolean | undefined;
7197
7238
  readonly system?: boolean | undefined;
@@ -7366,6 +7407,7 @@ declare const NotificationDelivery: Omit<{
7366
7407
  readonly dependencies?: string[] | undefined;
7367
7408
  readonly externalId?: boolean | undefined;
7368
7409
  readonly defaultValue?: unknown;
7410
+ readonly requiredPermissions?: string[] | undefined;
7369
7411
  readonly group?: string | undefined;
7370
7412
  readonly hidden?: boolean | undefined;
7371
7413
  readonly system?: boolean | undefined;
@@ -7540,6 +7582,7 @@ declare const NotificationDelivery: Omit<{
7540
7582
  readonly dependencies?: string[] | undefined;
7541
7583
  readonly externalId?: boolean | undefined;
7542
7584
  readonly defaultValue?: unknown;
7585
+ readonly requiredPermissions?: string[] | undefined;
7543
7586
  readonly group?: string | undefined;
7544
7587
  readonly hidden?: boolean | undefined;
7545
7588
  readonly system?: boolean | undefined;
@@ -7714,6 +7757,7 @@ declare const NotificationDelivery: Omit<{
7714
7757
  readonly dependencies?: string[] | undefined;
7715
7758
  readonly externalId?: boolean | undefined;
7716
7759
  readonly defaultValue?: unknown;
7760
+ readonly requiredPermissions?: string[] | undefined;
7717
7761
  readonly group?: string | undefined;
7718
7762
  readonly hidden?: boolean | undefined;
7719
7763
  readonly system?: boolean | undefined;
@@ -7888,6 +7932,7 @@ declare const NotificationDelivery: Omit<{
7888
7932
  readonly dependencies?: string[] | undefined;
7889
7933
  readonly externalId?: boolean | undefined;
7890
7934
  readonly defaultValue?: unknown;
7935
+ readonly requiredPermissions?: string[] | undefined;
7891
7936
  readonly group?: string | undefined;
7892
7937
  readonly hidden?: boolean | undefined;
7893
7938
  readonly system?: boolean | undefined;
@@ -8062,6 +8107,7 @@ declare const NotificationDelivery: Omit<{
8062
8107
  readonly dependencies?: string[] | undefined;
8063
8108
  readonly externalId?: boolean | undefined;
8064
8109
  readonly defaultValue?: unknown;
8110
+ readonly requiredPermissions?: string[] | undefined;
8065
8111
  readonly group?: string | undefined;
8066
8112
  readonly hidden?: boolean | undefined;
8067
8113
  readonly system?: boolean | undefined;
@@ -8236,6 +8282,7 @@ declare const NotificationDelivery: Omit<{
8236
8282
  readonly dependencies?: string[] | undefined;
8237
8283
  readonly externalId?: boolean | undefined;
8238
8284
  readonly defaultValue?: unknown;
8285
+ readonly requiredPermissions?: string[] | undefined;
8239
8286
  readonly group?: string | undefined;
8240
8287
  readonly hidden?: boolean | undefined;
8241
8288
  readonly system?: boolean | undefined;
@@ -8410,6 +8457,7 @@ declare const NotificationDelivery: Omit<{
8410
8457
  readonly dependencies?: string[] | undefined;
8411
8458
  readonly externalId?: boolean | undefined;
8412
8459
  readonly defaultValue?: unknown;
8460
+ readonly requiredPermissions?: string[] | undefined;
8413
8461
  readonly group?: string | undefined;
8414
8462
  readonly hidden?: boolean | undefined;
8415
8463
  readonly system?: boolean | undefined;
@@ -8584,6 +8632,7 @@ declare const NotificationDelivery: Omit<{
8584
8632
  readonly dependencies?: string[] | undefined;
8585
8633
  readonly externalId?: boolean | undefined;
8586
8634
  readonly defaultValue?: unknown;
8635
+ readonly requiredPermissions?: string[] | undefined;
8587
8636
  readonly group?: string | undefined;
8588
8637
  readonly hidden?: boolean | undefined;
8589
8638
  readonly system?: boolean | undefined;
@@ -8758,6 +8807,7 @@ declare const NotificationDelivery: Omit<{
8758
8807
  readonly dependencies?: string[] | undefined;
8759
8808
  readonly externalId?: boolean | undefined;
8760
8809
  readonly defaultValue?: unknown;
8810
+ readonly requiredPermissions?: string[] | undefined;
8761
8811
  readonly group?: string | undefined;
8762
8812
  readonly hidden?: boolean | undefined;
8763
8813
  readonly system?: boolean | undefined;
@@ -8932,6 +8982,7 @@ declare const NotificationDelivery: Omit<{
8932
8982
  readonly dependencies?: string[] | undefined;
8933
8983
  readonly externalId?: boolean | undefined;
8934
8984
  readonly defaultValue?: unknown;
8985
+ readonly requiredPermissions?: string[] | undefined;
8935
8986
  readonly group?: string | undefined;
8936
8987
  readonly hidden?: boolean | undefined;
8937
8988
  readonly system?: boolean | undefined;
@@ -9106,6 +9157,7 @@ declare const NotificationDelivery: Omit<{
9106
9157
  readonly dependencies?: string[] | undefined;
9107
9158
  readonly externalId?: boolean | undefined;
9108
9159
  readonly defaultValue?: unknown;
9160
+ readonly requiredPermissions?: string[] | undefined;
9109
9161
  readonly group?: string | undefined;
9110
9162
  readonly hidden?: boolean | undefined;
9111
9163
  readonly system?: boolean | undefined;
@@ -9280,6 +9332,7 @@ declare const NotificationDelivery: Omit<{
9280
9332
  readonly dependencies?: string[] | undefined;
9281
9333
  readonly externalId?: boolean | undefined;
9282
9334
  readonly defaultValue?: unknown;
9335
+ readonly requiredPermissions?: string[] | undefined;
9283
9336
  readonly group?: string | undefined;
9284
9337
  readonly hidden?: boolean | undefined;
9285
9338
  readonly system?: boolean | undefined;
@@ -9454,6 +9507,7 @@ declare const NotificationDelivery: Omit<{
9454
9507
  readonly dependencies?: string[] | undefined;
9455
9508
  readonly externalId?: boolean | undefined;
9456
9509
  readonly defaultValue?: unknown;
9510
+ readonly requiredPermissions?: string[] | undefined;
9457
9511
  readonly group?: string | undefined;
9458
9512
  readonly hidden?: boolean | undefined;
9459
9513
  readonly system?: boolean | undefined;
@@ -9628,6 +9682,7 @@ declare const NotificationDelivery: Omit<{
9628
9682
  readonly dependencies?: string[] | undefined;
9629
9683
  readonly externalId?: boolean | undefined;
9630
9684
  readonly defaultValue?: unknown;
9685
+ readonly requiredPermissions?: string[] | undefined;
9631
9686
  readonly group?: string | undefined;
9632
9687
  readonly hidden?: boolean | undefined;
9633
9688
  readonly system?: boolean | undefined;
@@ -9782,7 +9837,7 @@ declare const NotificationDelivery: Omit<{
9782
9837
  readonly caseSensitive?: boolean | undefined;
9783
9838
  readonly autonumberFormat?: string | undefined;
9784
9839
  readonly index?: boolean | undefined;
9785
- readonly type: "number";
9840
+ readonly type: "datetime";
9786
9841
  };
9787
9842
  readonly updated_at: {
9788
9843
  readonly readonly?: boolean | undefined;
@@ -9802,6 +9857,7 @@ declare const NotificationDelivery: Omit<{
9802
9857
  readonly dependencies?: string[] | undefined;
9803
9858
  readonly externalId?: boolean | undefined;
9804
9859
  readonly defaultValue?: unknown;
9860
+ readonly requiredPermissions?: string[] | undefined;
9805
9861
  readonly group?: string | undefined;
9806
9862
  readonly hidden?: boolean | undefined;
9807
9863
  readonly system?: boolean | undefined;
@@ -9956,7 +10012,7 @@ declare const NotificationDelivery: Omit<{
9956
10012
  readonly caseSensitive?: boolean | undefined;
9957
10013
  readonly autonumberFormat?: string | undefined;
9958
10014
  readonly index?: boolean | undefined;
9959
- readonly type: "number";
10015
+ readonly type: "datetime";
9960
10016
  };
9961
10017
  };
9962
10018
  readonly indexes: [{
@@ -10205,6 +10261,7 @@ declare const NotificationPreference: Omit<{
10205
10261
  generatedBy?: string | undefined;
10206
10262
  } | undefined;
10207
10263
  } | undefined;
10264
+ requiredPermissions?: string[] | undefined;
10208
10265
  system?: boolean | undefined;
10209
10266
  inlineHelpText?: string | undefined;
10210
10267
  caseSensitive?: boolean | undefined;
@@ -10280,6 +10337,10 @@ declare const NotificationPreference: Omit<{
10280
10337
  tenantField: string;
10281
10338
  crossTenantAccess: boolean;
10282
10339
  } | undefined;
10340
+ access?: {
10341
+ default: "public" | "private";
10342
+ } | undefined;
10343
+ requiredPermissions?: string[] | undefined;
10283
10344
  softDelete?: {
10284
10345
  enabled: boolean;
10285
10346
  field: string;
@@ -10733,6 +10794,7 @@ declare const NotificationPreference: Omit<{
10733
10794
  generatedBy?: string | undefined;
10734
10795
  } | undefined;
10735
10796
  } | undefined;
10797
+ requiredPermissions?: string[] | undefined;
10736
10798
  shortcut?: string | undefined;
10737
10799
  bulkEnabled?: boolean | undefined;
10738
10800
  ai?: {
@@ -10798,6 +10860,7 @@ declare const NotificationPreference: Omit<{
10798
10860
  readonly dependencies?: string[] | undefined;
10799
10861
  readonly externalId?: boolean | undefined;
10800
10862
  readonly defaultValue?: unknown;
10863
+ readonly requiredPermissions?: string[] | undefined;
10801
10864
  readonly group?: string | undefined;
10802
10865
  readonly hidden?: boolean | undefined;
10803
10866
  readonly system?: boolean | undefined;
@@ -10972,6 +11035,7 @@ declare const NotificationPreference: Omit<{
10972
11035
  readonly dependencies?: string[] | undefined;
10973
11036
  readonly externalId?: boolean | undefined;
10974
11037
  readonly defaultValue?: unknown;
11038
+ readonly requiredPermissions?: string[] | undefined;
10975
11039
  readonly group?: string | undefined;
10976
11040
  readonly hidden?: boolean | undefined;
10977
11041
  readonly system?: boolean | undefined;
@@ -11146,6 +11210,7 @@ declare const NotificationPreference: Omit<{
11146
11210
  readonly dependencies?: string[] | undefined;
11147
11211
  readonly externalId?: boolean | undefined;
11148
11212
  readonly defaultValue?: unknown;
11213
+ readonly requiredPermissions?: string[] | undefined;
11149
11214
  readonly group?: string | undefined;
11150
11215
  readonly hidden?: boolean | undefined;
11151
11216
  readonly system?: boolean | undefined;
@@ -11320,6 +11385,7 @@ declare const NotificationPreference: Omit<{
11320
11385
  readonly dependencies?: string[] | undefined;
11321
11386
  readonly externalId?: boolean | undefined;
11322
11387
  readonly defaultValue?: unknown;
11388
+ readonly requiredPermissions?: string[] | undefined;
11323
11389
  readonly group?: string | undefined;
11324
11390
  readonly hidden?: boolean | undefined;
11325
11391
  readonly system?: boolean | undefined;
@@ -11494,6 +11560,7 @@ declare const NotificationPreference: Omit<{
11494
11560
  readonly dependencies?: string[] | undefined;
11495
11561
  readonly externalId?: boolean | undefined;
11496
11562
  readonly defaultValue?: unknown;
11563
+ readonly requiredPermissions?: string[] | undefined;
11497
11564
  readonly group?: string | undefined;
11498
11565
  readonly hidden?: boolean | undefined;
11499
11566
  readonly system?: boolean | undefined;
@@ -11668,6 +11735,7 @@ declare const NotificationPreference: Omit<{
11668
11735
  readonly dependencies?: string[] | undefined;
11669
11736
  readonly externalId?: boolean | undefined;
11670
11737
  readonly defaultValue?: unknown;
11738
+ readonly requiredPermissions?: string[] | undefined;
11671
11739
  readonly group?: string | undefined;
11672
11740
  readonly hidden?: boolean | undefined;
11673
11741
  readonly system?: boolean | undefined;
@@ -11842,6 +11910,7 @@ declare const NotificationPreference: Omit<{
11842
11910
  readonly dependencies?: string[] | undefined;
11843
11911
  readonly externalId?: boolean | undefined;
11844
11912
  readonly defaultValue?: unknown;
11913
+ readonly requiredPermissions?: string[] | undefined;
11845
11914
  readonly group?: string | undefined;
11846
11915
  readonly hidden?: boolean | undefined;
11847
11916
  readonly system?: boolean | undefined;
@@ -12016,6 +12085,7 @@ declare const NotificationPreference: Omit<{
12016
12085
  readonly dependencies?: string[] | undefined;
12017
12086
  readonly externalId?: boolean | undefined;
12018
12087
  readonly defaultValue?: unknown;
12088
+ readonly requiredPermissions?: string[] | undefined;
12019
12089
  readonly group?: string | undefined;
12020
12090
  readonly hidden?: boolean | undefined;
12021
12091
  readonly system?: boolean | undefined;
@@ -12190,6 +12260,7 @@ declare const NotificationPreference: Omit<{
12190
12260
  readonly dependencies?: string[] | undefined;
12191
12261
  readonly externalId?: boolean | undefined;
12192
12262
  readonly defaultValue?: unknown;
12263
+ readonly requiredPermissions?: string[] | undefined;
12193
12264
  readonly group?: string | undefined;
12194
12265
  readonly hidden?: boolean | undefined;
12195
12266
  readonly system?: boolean | undefined;
@@ -12585,6 +12656,7 @@ declare const NotificationSubscription: Omit<{
12585
12656
  generatedBy?: string | undefined;
12586
12657
  } | undefined;
12587
12658
  } | undefined;
12659
+ requiredPermissions?: string[] | undefined;
12588
12660
  system?: boolean | undefined;
12589
12661
  inlineHelpText?: string | undefined;
12590
12662
  caseSensitive?: boolean | undefined;
@@ -12660,6 +12732,10 @@ declare const NotificationSubscription: Omit<{
12660
12732
  tenantField: string;
12661
12733
  crossTenantAccess: boolean;
12662
12734
  } | undefined;
12735
+ access?: {
12736
+ default: "public" | "private";
12737
+ } | undefined;
12738
+ requiredPermissions?: string[] | undefined;
12663
12739
  softDelete?: {
12664
12740
  enabled: boolean;
12665
12741
  field: string;
@@ -13113,6 +13189,7 @@ declare const NotificationSubscription: Omit<{
13113
13189
  generatedBy?: string | undefined;
13114
13190
  } | undefined;
13115
13191
  } | undefined;
13192
+ requiredPermissions?: string[] | undefined;
13116
13193
  shortcut?: string | undefined;
13117
13194
  bulkEnabled?: boolean | undefined;
13118
13195
  ai?: {
@@ -13178,6 +13255,7 @@ declare const NotificationSubscription: Omit<{
13178
13255
  readonly dependencies?: string[] | undefined;
13179
13256
  readonly externalId?: boolean | undefined;
13180
13257
  readonly defaultValue?: unknown;
13258
+ readonly requiredPermissions?: string[] | undefined;
13181
13259
  readonly group?: string | undefined;
13182
13260
  readonly hidden?: boolean | undefined;
13183
13261
  readonly system?: boolean | undefined;
@@ -13352,6 +13430,7 @@ declare const NotificationSubscription: Omit<{
13352
13430
  readonly dependencies?: string[] | undefined;
13353
13431
  readonly externalId?: boolean | undefined;
13354
13432
  readonly defaultValue?: unknown;
13433
+ readonly requiredPermissions?: string[] | undefined;
13355
13434
  readonly group?: string | undefined;
13356
13435
  readonly hidden?: boolean | undefined;
13357
13436
  readonly system?: boolean | undefined;
@@ -13526,6 +13605,7 @@ declare const NotificationSubscription: Omit<{
13526
13605
  readonly dependencies?: string[] | undefined;
13527
13606
  readonly externalId?: boolean | undefined;
13528
13607
  readonly defaultValue?: unknown;
13608
+ readonly requiredPermissions?: string[] | undefined;
13529
13609
  readonly group?: string | undefined;
13530
13610
  readonly hidden?: boolean | undefined;
13531
13611
  readonly system?: boolean | undefined;
@@ -13700,6 +13780,7 @@ declare const NotificationSubscription: Omit<{
13700
13780
  readonly dependencies?: string[] | undefined;
13701
13781
  readonly externalId?: boolean | undefined;
13702
13782
  readonly defaultValue?: unknown;
13783
+ readonly requiredPermissions?: string[] | undefined;
13703
13784
  readonly group?: string | undefined;
13704
13785
  readonly hidden?: boolean | undefined;
13705
13786
  readonly system?: boolean | undefined;
@@ -13874,6 +13955,7 @@ declare const NotificationSubscription: Omit<{
13874
13955
  readonly dependencies?: string[] | undefined;
13875
13956
  readonly externalId?: boolean | undefined;
13876
13957
  readonly defaultValue?: unknown;
13958
+ readonly requiredPermissions?: string[] | undefined;
13877
13959
  readonly group?: string | undefined;
13878
13960
  readonly hidden?: boolean | undefined;
13879
13961
  readonly system?: boolean | undefined;
@@ -14268,6 +14350,7 @@ declare const NotificationTemplate: Omit<{
14268
14350
  generatedBy?: string | undefined;
14269
14351
  } | undefined;
14270
14352
  } | undefined;
14353
+ requiredPermissions?: string[] | undefined;
14271
14354
  system?: boolean | undefined;
14272
14355
  inlineHelpText?: string | undefined;
14273
14356
  caseSensitive?: boolean | undefined;
@@ -14343,6 +14426,10 @@ declare const NotificationTemplate: Omit<{
14343
14426
  tenantField: string;
14344
14427
  crossTenantAccess: boolean;
14345
14428
  } | undefined;
14429
+ access?: {
14430
+ default: "public" | "private";
14431
+ } | undefined;
14432
+ requiredPermissions?: string[] | undefined;
14346
14433
  softDelete?: {
14347
14434
  enabled: boolean;
14348
14435
  field: string;
@@ -14796,6 +14883,7 @@ declare const NotificationTemplate: Omit<{
14796
14883
  generatedBy?: string | undefined;
14797
14884
  } | undefined;
14798
14885
  } | undefined;
14886
+ requiredPermissions?: string[] | undefined;
14799
14887
  shortcut?: string | undefined;
14800
14888
  bulkEnabled?: boolean | undefined;
14801
14889
  ai?: {
@@ -14861,6 +14949,7 @@ declare const NotificationTemplate: Omit<{
14861
14949
  readonly dependencies?: string[] | undefined;
14862
14950
  readonly externalId?: boolean | undefined;
14863
14951
  readonly defaultValue?: unknown;
14952
+ readonly requiredPermissions?: string[] | undefined;
14864
14953
  readonly group?: string | undefined;
14865
14954
  readonly hidden?: boolean | undefined;
14866
14955
  readonly system?: boolean | undefined;
@@ -15035,6 +15124,7 @@ declare const NotificationTemplate: Omit<{
15035
15124
  readonly dependencies?: string[] | undefined;
15036
15125
  readonly externalId?: boolean | undefined;
15037
15126
  readonly defaultValue?: unknown;
15127
+ readonly requiredPermissions?: string[] | undefined;
15038
15128
  readonly group?: string | undefined;
15039
15129
  readonly hidden?: boolean | undefined;
15040
15130
  readonly system?: boolean | undefined;
@@ -15209,6 +15299,7 @@ declare const NotificationTemplate: Omit<{
15209
15299
  readonly dependencies?: string[] | undefined;
15210
15300
  readonly externalId?: boolean | undefined;
15211
15301
  readonly defaultValue?: unknown;
15302
+ readonly requiredPermissions?: string[] | undefined;
15212
15303
  readonly group?: string | undefined;
15213
15304
  readonly hidden?: boolean | undefined;
15214
15305
  readonly system?: boolean | undefined;
@@ -15383,6 +15474,7 @@ declare const NotificationTemplate: Omit<{
15383
15474
  readonly dependencies?: string[] | undefined;
15384
15475
  readonly externalId?: boolean | undefined;
15385
15476
  readonly defaultValue?: unknown;
15477
+ readonly requiredPermissions?: string[] | undefined;
15386
15478
  readonly group?: string | undefined;
15387
15479
  readonly hidden?: boolean | undefined;
15388
15480
  readonly system?: boolean | undefined;
@@ -15557,6 +15649,7 @@ declare const NotificationTemplate: Omit<{
15557
15649
  readonly dependencies?: string[] | undefined;
15558
15650
  readonly externalId?: boolean | undefined;
15559
15651
  readonly defaultValue?: unknown;
15652
+ readonly requiredPermissions?: string[] | undefined;
15560
15653
  readonly group?: string | undefined;
15561
15654
  readonly hidden?: boolean | undefined;
15562
15655
  readonly system?: boolean | undefined;
@@ -15731,6 +15824,7 @@ declare const NotificationTemplate: Omit<{
15731
15824
  readonly dependencies?: string[] | undefined;
15732
15825
  readonly externalId?: boolean | undefined;
15733
15826
  readonly defaultValue?: unknown;
15827
+ readonly requiredPermissions?: string[] | undefined;
15734
15828
  readonly group?: string | undefined;
15735
15829
  readonly hidden?: boolean | undefined;
15736
15830
  readonly system?: boolean | undefined;
@@ -15905,6 +15999,7 @@ declare const NotificationTemplate: Omit<{
15905
15999
  readonly dependencies?: string[] | undefined;
15906
16000
  readonly externalId?: boolean | undefined;
15907
16001
  readonly defaultValue?: unknown;
16002
+ readonly requiredPermissions?: string[] | undefined;
15908
16003
  readonly group?: string | undefined;
15909
16004
  readonly hidden?: boolean | undefined;
15910
16005
  readonly system?: boolean | undefined;
@@ -16079,6 +16174,7 @@ declare const NotificationTemplate: Omit<{
16079
16174
  readonly dependencies?: string[] | undefined;
16080
16175
  readonly externalId?: boolean | undefined;
16081
16176
  readonly defaultValue?: unknown;
16177
+ readonly requiredPermissions?: string[] | undefined;
16082
16178
  readonly group?: string | undefined;
16083
16179
  readonly hidden?: boolean | undefined;
16084
16180
  readonly system?: boolean | undefined;
@@ -16253,6 +16349,7 @@ declare const NotificationTemplate: Omit<{
16253
16349
  readonly dependencies?: string[] | undefined;
16254
16350
  readonly externalId?: boolean | undefined;
16255
16351
  readonly defaultValue?: unknown;
16352
+ readonly requiredPermissions?: string[] | undefined;
16256
16353
  readonly group?: string | undefined;
16257
16354
  readonly hidden?: boolean | undefined;
16258
16355
  readonly system?: boolean | undefined;
@@ -16427,6 +16524,7 @@ declare const NotificationTemplate: Omit<{
16427
16524
  readonly dependencies?: string[] | undefined;
16428
16525
  readonly externalId?: boolean | undefined;
16429
16526
  readonly defaultValue?: unknown;
16527
+ readonly requiredPermissions?: string[] | undefined;
16430
16528
  readonly group?: string | undefined;
16431
16529
  readonly hidden?: boolean | undefined;
16432
16530
  readonly system?: boolean | undefined;
@@ -16601,6 +16699,7 @@ declare const NotificationTemplate: Omit<{
16601
16699
  readonly dependencies?: string[] | undefined;
16602
16700
  readonly externalId?: boolean | undefined;
16603
16701
  readonly defaultValue?: unknown;
16702
+ readonly requiredPermissions?: string[] | undefined;
16604
16703
  readonly group?: string | undefined;
16605
16704
  readonly hidden?: boolean | undefined;
16606
16705
  readonly system?: boolean | undefined;
@@ -17003,6 +17102,7 @@ declare const HttpDelivery: Omit<{
17003
17102
  generatedBy?: string | undefined;
17004
17103
  } | undefined;
17005
17104
  } | undefined;
17105
+ requiredPermissions?: string[] | undefined;
17006
17106
  system?: boolean | undefined;
17007
17107
  inlineHelpText?: string | undefined;
17008
17108
  caseSensitive?: boolean | undefined;
@@ -17078,6 +17178,10 @@ declare const HttpDelivery: Omit<{
17078
17178
  tenantField: string;
17079
17179
  crossTenantAccess: boolean;
17080
17180
  } | undefined;
17181
+ access?: {
17182
+ default: "public" | "private";
17183
+ } | undefined;
17184
+ requiredPermissions?: string[] | undefined;
17081
17185
  softDelete?: {
17082
17186
  enabled: boolean;
17083
17187
  field: string;
@@ -17531,6 +17635,7 @@ declare const HttpDelivery: Omit<{
17531
17635
  generatedBy?: string | undefined;
17532
17636
  } | undefined;
17533
17637
  } | undefined;
17638
+ requiredPermissions?: string[] | undefined;
17534
17639
  shortcut?: string | undefined;
17535
17640
  bulkEnabled?: boolean | undefined;
17536
17641
  ai?: {
@@ -17666,6 +17771,7 @@ declare const HttpDelivery: Omit<{
17666
17771
  readonly dependencies?: string[] | undefined;
17667
17772
  readonly externalId?: boolean | undefined;
17668
17773
  readonly defaultValue?: unknown;
17774
+ readonly requiredPermissions?: string[] | undefined;
17669
17775
  readonly group?: string | undefined;
17670
17776
  readonly hidden?: boolean | undefined;
17671
17777
  readonly system?: boolean | undefined;
@@ -17840,6 +17946,7 @@ declare const HttpDelivery: Omit<{
17840
17946
  readonly dependencies?: string[] | undefined;
17841
17947
  readonly externalId?: boolean | undefined;
17842
17948
  readonly defaultValue?: unknown;
17949
+ readonly requiredPermissions?: string[] | undefined;
17843
17950
  readonly group?: string | undefined;
17844
17951
  readonly hidden?: boolean | undefined;
17845
17952
  readonly system?: boolean | undefined;
@@ -18014,6 +18121,7 @@ declare const HttpDelivery: Omit<{
18014
18121
  readonly dependencies?: string[] | undefined;
18015
18122
  readonly externalId?: boolean | undefined;
18016
18123
  readonly defaultValue?: unknown;
18124
+ readonly requiredPermissions?: string[] | undefined;
18017
18125
  readonly group?: string | undefined;
18018
18126
  readonly hidden?: boolean | undefined;
18019
18127
  readonly system?: boolean | undefined;
@@ -18188,6 +18296,7 @@ declare const HttpDelivery: Omit<{
18188
18296
  readonly dependencies?: string[] | undefined;
18189
18297
  readonly externalId?: boolean | undefined;
18190
18298
  readonly defaultValue?: unknown;
18299
+ readonly requiredPermissions?: string[] | undefined;
18191
18300
  readonly group?: string | undefined;
18192
18301
  readonly hidden?: boolean | undefined;
18193
18302
  readonly system?: boolean | undefined;
@@ -18362,6 +18471,7 @@ declare const HttpDelivery: Omit<{
18362
18471
  readonly dependencies?: string[] | undefined;
18363
18472
  readonly externalId?: boolean | undefined;
18364
18473
  readonly defaultValue?: unknown;
18474
+ readonly requiredPermissions?: string[] | undefined;
18365
18475
  readonly group?: string | undefined;
18366
18476
  readonly hidden?: boolean | undefined;
18367
18477
  readonly system?: boolean | undefined;
@@ -18536,6 +18646,7 @@ declare const HttpDelivery: Omit<{
18536
18646
  readonly dependencies?: string[] | undefined;
18537
18647
  readonly externalId?: boolean | undefined;
18538
18648
  readonly defaultValue?: unknown;
18649
+ readonly requiredPermissions?: string[] | undefined;
18539
18650
  readonly group?: string | undefined;
18540
18651
  readonly hidden?: boolean | undefined;
18541
18652
  readonly system?: boolean | undefined;
@@ -18710,6 +18821,7 @@ declare const HttpDelivery: Omit<{
18710
18821
  readonly dependencies?: string[] | undefined;
18711
18822
  readonly externalId?: boolean | undefined;
18712
18823
  readonly defaultValue?: unknown;
18824
+ readonly requiredPermissions?: string[] | undefined;
18713
18825
  readonly group?: string | undefined;
18714
18826
  readonly hidden?: boolean | undefined;
18715
18827
  readonly system?: boolean | undefined;
@@ -18884,6 +18996,7 @@ declare const HttpDelivery: Omit<{
18884
18996
  readonly dependencies?: string[] | undefined;
18885
18997
  readonly externalId?: boolean | undefined;
18886
18998
  readonly defaultValue?: unknown;
18999
+ readonly requiredPermissions?: string[] | undefined;
18887
19000
  readonly group?: string | undefined;
18888
19001
  readonly hidden?: boolean | undefined;
18889
19002
  readonly system?: boolean | undefined;
@@ -19058,6 +19171,7 @@ declare const HttpDelivery: Omit<{
19058
19171
  readonly dependencies?: string[] | undefined;
19059
19172
  readonly externalId?: boolean | undefined;
19060
19173
  readonly defaultValue?: unknown;
19174
+ readonly requiredPermissions?: string[] | undefined;
19061
19175
  readonly group?: string | undefined;
19062
19176
  readonly hidden?: boolean | undefined;
19063
19177
  readonly system?: boolean | undefined;
@@ -19232,6 +19346,7 @@ declare const HttpDelivery: Omit<{
19232
19346
  readonly dependencies?: string[] | undefined;
19233
19347
  readonly externalId?: boolean | undefined;
19234
19348
  readonly defaultValue?: unknown;
19349
+ readonly requiredPermissions?: string[] | undefined;
19235
19350
  readonly group?: string | undefined;
19236
19351
  readonly hidden?: boolean | undefined;
19237
19352
  readonly system?: boolean | undefined;
@@ -19406,6 +19521,7 @@ declare const HttpDelivery: Omit<{
19406
19521
  readonly dependencies?: string[] | undefined;
19407
19522
  readonly externalId?: boolean | undefined;
19408
19523
  readonly defaultValue?: unknown;
19524
+ readonly requiredPermissions?: string[] | undefined;
19409
19525
  readonly group?: string | undefined;
19410
19526
  readonly hidden?: boolean | undefined;
19411
19527
  readonly system?: boolean | undefined;
@@ -19580,6 +19696,7 @@ declare const HttpDelivery: Omit<{
19580
19696
  readonly dependencies?: string[] | undefined;
19581
19697
  readonly externalId?: boolean | undefined;
19582
19698
  readonly defaultValue?: unknown;
19699
+ readonly requiredPermissions?: string[] | undefined;
19583
19700
  readonly group?: string | undefined;
19584
19701
  readonly hidden?: boolean | undefined;
19585
19702
  readonly system?: boolean | undefined;
@@ -19754,6 +19871,7 @@ declare const HttpDelivery: Omit<{
19754
19871
  readonly dependencies?: string[] | undefined;
19755
19872
  readonly externalId?: boolean | undefined;
19756
19873
  readonly defaultValue?: unknown;
19874
+ readonly requiredPermissions?: string[] | undefined;
19757
19875
  readonly group?: string | undefined;
19758
19876
  readonly hidden?: boolean | undefined;
19759
19877
  readonly system?: boolean | undefined;
@@ -19928,6 +20046,7 @@ declare const HttpDelivery: Omit<{
19928
20046
  readonly dependencies?: string[] | undefined;
19929
20047
  readonly externalId?: boolean | undefined;
19930
20048
  readonly defaultValue?: unknown;
20049
+ readonly requiredPermissions?: string[] | undefined;
19931
20050
  readonly group?: string | undefined;
19932
20051
  readonly hidden?: boolean | undefined;
19933
20052
  readonly system?: boolean | undefined;
@@ -20102,6 +20221,7 @@ declare const HttpDelivery: Omit<{
20102
20221
  readonly dependencies?: string[] | undefined;
20103
20222
  readonly externalId?: boolean | undefined;
20104
20223
  readonly defaultValue?: unknown;
20224
+ readonly requiredPermissions?: string[] | undefined;
20105
20225
  readonly group?: string | undefined;
20106
20226
  readonly hidden?: boolean | undefined;
20107
20227
  readonly system?: boolean | undefined;
@@ -20276,6 +20396,7 @@ declare const HttpDelivery: Omit<{
20276
20396
  readonly dependencies?: string[] | undefined;
20277
20397
  readonly externalId?: boolean | undefined;
20278
20398
  readonly defaultValue?: unknown;
20399
+ readonly requiredPermissions?: string[] | undefined;
20279
20400
  readonly group?: string | undefined;
20280
20401
  readonly hidden?: boolean | undefined;
20281
20402
  readonly system?: boolean | undefined;
@@ -20450,6 +20571,7 @@ declare const HttpDelivery: Omit<{
20450
20571
  readonly dependencies?: string[] | undefined;
20451
20572
  readonly externalId?: boolean | undefined;
20452
20573
  readonly defaultValue?: unknown;
20574
+ readonly requiredPermissions?: string[] | undefined;
20453
20575
  readonly group?: string | undefined;
20454
20576
  readonly hidden?: boolean | undefined;
20455
20577
  readonly system?: boolean | undefined;
@@ -20624,6 +20746,7 @@ declare const HttpDelivery: Omit<{
20624
20746
  readonly dependencies?: string[] | undefined;
20625
20747
  readonly externalId?: boolean | undefined;
20626
20748
  readonly defaultValue?: unknown;
20749
+ readonly requiredPermissions?: string[] | undefined;
20627
20750
  readonly group?: string | undefined;
20628
20751
  readonly hidden?: boolean | undefined;
20629
20752
  readonly system?: boolean | undefined;
@@ -20798,6 +20921,7 @@ declare const HttpDelivery: Omit<{
20798
20921
  readonly dependencies?: string[] | undefined;
20799
20922
  readonly externalId?: boolean | undefined;
20800
20923
  readonly defaultValue?: unknown;
20924
+ readonly requiredPermissions?: string[] | undefined;
20801
20925
  readonly group?: string | undefined;
20802
20926
  readonly hidden?: boolean | undefined;
20803
20927
  readonly system?: boolean | undefined;
@@ -20972,6 +21096,7 @@ declare const HttpDelivery: Omit<{
20972
21096
  readonly dependencies?: string[] | undefined;
20973
21097
  readonly externalId?: boolean | undefined;
20974
21098
  readonly defaultValue?: unknown;
21099
+ readonly requiredPermissions?: string[] | undefined;
20975
21100
  readonly group?: string | undefined;
20976
21101
  readonly hidden?: boolean | undefined;
20977
21102
  readonly system?: boolean | undefined;
@@ -21146,6 +21271,7 @@ declare const HttpDelivery: Omit<{
21146
21271
  readonly dependencies?: string[] | undefined;
21147
21272
  readonly externalId?: boolean | undefined;
21148
21273
  readonly defaultValue?: unknown;
21274
+ readonly requiredPermissions?: string[] | undefined;
21149
21275
  readonly group?: string | undefined;
21150
21276
  readonly hidden?: boolean | undefined;
21151
21277
  readonly system?: boolean | undefined;
@@ -21320,6 +21446,7 @@ declare const HttpDelivery: Omit<{
21320
21446
  readonly dependencies?: string[] | undefined;
21321
21447
  readonly externalId?: boolean | undefined;
21322
21448
  readonly defaultValue?: unknown;
21449
+ readonly requiredPermissions?: string[] | undefined;
21323
21450
  readonly group?: string | undefined;
21324
21451
  readonly hidden?: boolean | undefined;
21325
21452
  readonly system?: boolean | undefined;
@@ -21474,7 +21601,7 @@ declare const HttpDelivery: Omit<{
21474
21601
  readonly caseSensitive?: boolean | undefined;
21475
21602
  readonly autonumberFormat?: string | undefined;
21476
21603
  readonly index?: boolean | undefined;
21477
- readonly type: "number";
21604
+ readonly type: "datetime";
21478
21605
  };
21479
21606
  readonly updated_at: {
21480
21607
  readonly readonly?: boolean | undefined;
@@ -21494,6 +21621,7 @@ declare const HttpDelivery: Omit<{
21494
21621
  readonly dependencies?: string[] | undefined;
21495
21622
  readonly externalId?: boolean | undefined;
21496
21623
  readonly defaultValue?: unknown;
21624
+ readonly requiredPermissions?: string[] | undefined;
21497
21625
  readonly group?: string | undefined;
21498
21626
  readonly hidden?: boolean | undefined;
21499
21627
  readonly system?: boolean | undefined;
@@ -21648,7 +21776,7 @@ declare const HttpDelivery: Omit<{
21648
21776
  readonly caseSensitive?: boolean | undefined;
21649
21777
  readonly autonumberFormat?: string | undefined;
21650
21778
  readonly index?: boolean | undefined;
21651
- readonly type: "number";
21779
+ readonly type: "datetime";
21652
21780
  };
21653
21781
  };
21654
21782
  readonly indexes: [{