@forge/manifest 12.4.0-next.1 → 12.4.0-next.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.4.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a1a0375: add `core:preUninstall` module
8
+
9
+ ## 12.4.0-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 06c240c: Update manifest definitions
14
+
3
15
  ## 12.4.0-next.1
4
16
 
5
17
  ### Minor Changes
@@ -899,6 +899,61 @@
899
899
  },
900
900
  "minItems": 1
901
901
  },
902
+ "preUninstall": {
903
+ "type": "array",
904
+ "items": {
905
+ "$schema": "http://json-schema.org/draft-07/schema#",
906
+ "oneOf": [
907
+ {
908
+ "additionalProperties": false,
909
+ "properties": {
910
+ "function": {
911
+ "$ref": "#/definitions/ExtensionKey",
912
+ "description": "The key of the function that should be invoked for this lifecycle trigger.",
913
+ "title": "function"
914
+ },
915
+ "key": {
916
+ "$ref": "#/definitions/ModuleKeySchema"
917
+ }
918
+ },
919
+ "required": [
920
+ "function",
921
+ "key"
922
+ ],
923
+ "type": "object",
924
+ "not": {
925
+ "required": [
926
+ "unlicensedAccess"
927
+ ]
928
+ }
929
+ },
930
+ {
931
+ "additionalProperties": false,
932
+ "properties": {
933
+ "endpoint": {
934
+ "$ref": "#/definitions/ExtensionKey",
935
+ "title": "endpoint",
936
+ "type": "string"
937
+ },
938
+ "key": {
939
+ "$ref": "#/definitions/ModuleKeySchema"
940
+ }
941
+ },
942
+ "required": [
943
+ "endpoint",
944
+ "key"
945
+ ],
946
+ "type": "object",
947
+ "not": {
948
+ "required": [
949
+ "unlicensedAccess"
950
+ ]
951
+ }
952
+ }
953
+ ]
954
+ },
955
+ "minItems": 1
956
+ },
902
957
  "fifoConsumer": {
903
958
  "type": "array",
904
959
  "items": {
@@ -2799,6 +2854,16 @@
2799
2854
  "accelerator"
2800
2855
  ]
2801
2856
  },
2857
+ "unlicensedAccess": {
2858
+ "type": "array",
2859
+ "items": {
2860
+ "type": "string",
2861
+ "enum": [
2862
+ "unlicensed",
2863
+ "anonymous"
2864
+ ]
2865
+ }
2866
+ },
2802
2867
  "key": {
2803
2868
  "$ref": "#/definitions/ModuleKeySchema"
2804
2869
  }
@@ -2953,6 +3018,16 @@
2953
3018
  "type": "string",
2954
3019
  "default": "default"
2955
3020
  },
3021
+ "unlicensedAccess": {
3022
+ "type": "array",
3023
+ "items": {
3024
+ "type": "string",
3025
+ "enum": [
3026
+ "unlicensed",
3027
+ "anonymous"
3028
+ ]
3029
+ }
3030
+ },
2956
3031
  "key": {
2957
3032
  "$ref": "#/definitions/ModuleKeySchema"
2958
3033
  }
@@ -3058,6 +3133,16 @@
3058
3133
  "accelerator"
3059
3134
  ]
3060
3135
  },
3136
+ "unlicensedAccess": {
3137
+ "type": "array",
3138
+ "items": {
3139
+ "type": "string",
3140
+ "enum": [
3141
+ "unlicensed",
3142
+ "anonymous"
3143
+ ]
3144
+ }
3145
+ },
3061
3146
  "key": {
3062
3147
  "$ref": "#/definitions/ModuleKeySchema"
3063
3148
  }
@@ -3206,6 +3291,16 @@
3206
3291
  "accelerator"
3207
3292
  ]
3208
3293
  },
3294
+ "unlicensedAccess": {
3295
+ "type": "array",
3296
+ "items": {
3297
+ "type": "string",
3298
+ "enum": [
3299
+ "unlicensed",
3300
+ "anonymous"
3301
+ ]
3302
+ }
3303
+ },
3209
3304
  "render": {
3210
3305
  "enum": [
3211
3306
  "native",
@@ -3654,14 +3749,6 @@
3654
3749
  "accelerator"
3655
3750
  ]
3656
3751
  },
3657
- "render": {
3658
- "enum": [
3659
- "native",
3660
- "default"
3661
- ],
3662
- "type": "string",
3663
- "default": "default"
3664
- },
3665
3752
  "unlicensedAccess": {
3666
3753
  "type": "array",
3667
3754
  "items": {
@@ -3672,6 +3759,14 @@
3672
3759
  ]
3673
3760
  }
3674
3761
  },
3762
+ "render": {
3763
+ "enum": [
3764
+ "native",
3765
+ "default"
3766
+ ],
3767
+ "type": "string",
3768
+ "default": "default"
3769
+ },
3675
3770
  "key": {
3676
3771
  "$ref": "#/definitions/ModuleKeySchema"
3677
3772
  }
@@ -4059,6 +4154,16 @@
4059
4154
  "accelerator"
4060
4155
  ]
4061
4156
  },
4157
+ "unlicensedAccess": {
4158
+ "type": "array",
4159
+ "items": {
4160
+ "type": "string",
4161
+ "enum": [
4162
+ "unlicensed",
4163
+ "anonymous"
4164
+ ]
4165
+ }
4166
+ },
4062
4167
  "key": {
4063
4168
  "$ref": "#/definitions/ModuleKeySchema"
4064
4169
  }
@@ -4207,6 +4312,16 @@
4207
4312
  "accelerator"
4208
4313
  ]
4209
4314
  },
4315
+ "unlicensedAccess": {
4316
+ "type": "array",
4317
+ "items": {
4318
+ "type": "string",
4319
+ "enum": [
4320
+ "unlicensed",
4321
+ "anonymous"
4322
+ ]
4323
+ }
4324
+ },
4210
4325
  "render": {
4211
4326
  "enum": [
4212
4327
  "native",
@@ -5171,6 +5286,16 @@
5171
5286
  }
5172
5287
  ]
5173
5288
  },
5289
+ "unlicensedAccess": {
5290
+ "type": "array",
5291
+ "items": {
5292
+ "type": "string",
5293
+ "enum": [
5294
+ "unlicensed",
5295
+ "anonymous"
5296
+ ]
5297
+ }
5298
+ },
5174
5299
  "key": {
5175
5300
  "$ref": "#/definitions/ModuleKeySchema"
5176
5301
  }
@@ -5279,6 +5404,16 @@
5279
5404
  "minLength": 1,
5280
5405
  "maxLength": 255
5281
5406
  },
5407
+ "unlicensedAccess": {
5408
+ "type": "array",
5409
+ "items": {
5410
+ "type": "string",
5411
+ "enum": [
5412
+ "unlicensed",
5413
+ "anonymous"
5414
+ ]
5415
+ }
5416
+ },
5282
5417
  "key": {
5283
5418
  "$ref": "#/definitions/ModuleKeySchema"
5284
5419
  }
@@ -5421,6 +5556,16 @@
5421
5556
  "maxLength": 255,
5422
5557
  "pattern": "^[a-zA-Z0-9-_]+$"
5423
5558
  },
5559
+ "unlicensedAccess": {
5560
+ "type": "array",
5561
+ "items": {
5562
+ "type": "string",
5563
+ "enum": [
5564
+ "unlicensed",
5565
+ "anonymous"
5566
+ ]
5567
+ }
5568
+ },
5424
5569
  "key": {
5425
5570
  "$ref": "#/definitions/ModuleKeySchema"
5426
5571
  }
@@ -5588,6 +5733,16 @@
5588
5733
  "default": false,
5589
5734
  "description": "A flag indicating whether this custom content module was migrated from a Connect app."
5590
5735
  },
5736
+ "unlicensedAccess": {
5737
+ "type": "array",
5738
+ "items": {
5739
+ "type": "string",
5740
+ "enum": [
5741
+ "unlicensed",
5742
+ "anonymous"
5743
+ ]
5744
+ }
5745
+ },
5591
5746
  "key": {
5592
5747
  "$ref": "#/definitions/ModuleKeySchema"
5593
5748
  }
@@ -5653,6 +5808,16 @@
5653
5808
  "displayConditions": {
5654
5809
  "type": "object"
5655
5810
  },
5811
+ "unlicensedAccess": {
5812
+ "type": "array",
5813
+ "items": {
5814
+ "type": "string",
5815
+ "enum": [
5816
+ "unlicensed",
5817
+ "anonymous"
5818
+ ]
5819
+ }
5820
+ },
5656
5821
  "key": {
5657
5822
  "$ref": "#/definitions/ModuleKeySchema"
5658
5823
  }
@@ -5716,6 +5881,16 @@
5716
5881
  "displayConditions": {
5717
5882
  "type": "object"
5718
5883
  },
5884
+ "unlicensedAccess": {
5885
+ "type": "array",
5886
+ "items": {
5887
+ "type": "string",
5888
+ "enum": [
5889
+ "unlicensed",
5890
+ "anonymous"
5891
+ ]
5892
+ }
5893
+ },
5719
5894
  "key": {
5720
5895
  "$ref": "#/definitions/ModuleKeySchema"
5721
5896
  }
@@ -5779,6 +5954,16 @@
5779
5954
  "displayConditions": {
5780
5955
  "type": "object"
5781
5956
  },
5957
+ "unlicensedAccess": {
5958
+ "type": "array",
5959
+ "items": {
5960
+ "type": "string",
5961
+ "enum": [
5962
+ "unlicensed",
5963
+ "anonymous"
5964
+ ]
5965
+ }
5966
+ },
5782
5967
  "key": {
5783
5968
  "$ref": "#/definitions/ModuleKeySchema"
5784
5969
  }
@@ -5842,6 +6027,16 @@
5842
6027
  "displayConditions": {
5843
6028
  "type": "object"
5844
6029
  },
6030
+ "unlicensedAccess": {
6031
+ "type": "array",
6032
+ "items": {
6033
+ "type": "string",
6034
+ "enum": [
6035
+ "unlicensed",
6036
+ "anonymous"
6037
+ ]
6038
+ }
6039
+ },
5845
6040
  "key": {
5846
6041
  "$ref": "#/definitions/ModuleKeySchema"
5847
6042
  }
@@ -9979,12 +10174,7 @@
9979
10174
  "icon",
9980
10175
  "title",
9981
10176
  "key"
9982
- ],
9983
- "not": {
9984
- "required": [
9985
- "unlicensedAccess"
9986
- ]
9987
- }
10177
+ ]
9988
10178
  },
9989
10179
  {
9990
10180
  "type": "object",
@@ -10119,12 +10309,7 @@
10119
10309
  "resource",
10120
10310
  "title",
10121
10311
  "key"
10122
- ],
10123
- "not": {
10124
- "required": [
10125
- "unlicensedAccess"
10126
- ]
10127
- }
10312
+ ]
10128
10313
  }
10129
10314
  ]
10130
10315
  },
@@ -198,6 +198,14 @@ export type Interval1 = 'fiveMinute' | 'hour' | 'day' | 'week';
198
198
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
199
199
  */
200
200
  export type ExtensionKey6 = string;
201
+ /**
202
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
203
+ */
204
+ export type ExtensionKey7 = string;
205
+ /**
206
+ * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
207
+ */
208
+ export type ExtensionKey8 = string;
201
209
  /**
202
210
  * The method, within the index.js function, that will be called to invoke the function.
203
211
  */
@@ -217,16 +225,16 @@ export type MemoryMB1 = number;
217
225
  /**
218
226
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
219
227
  */
220
- export type ExtensionKey7 = string;
228
+ export type ExtensionKey9 = string;
221
229
  /**
222
230
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
223
231
  */
224
- export type ExtensionKey8 = string;
232
+ export type ExtensionKey10 = string;
225
233
  export type CoreActionIOType = 'boolean' | 'integer' | 'number' | 'string';
226
234
  /**
227
235
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
228
236
  */
229
- export type ExtensionKey9 = string;
237
+ export type ExtensionKey11 = string;
230
238
  /**
231
239
  * Data residency migration hook path
232
240
  */
@@ -667,7 +675,7 @@ export type Patterns =
667
675
  /**
668
676
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
669
677
  */
670
- export type ExtensionKey10 = string;
678
+ export type ExtensionKey12 = string;
671
679
  /**
672
680
  * A key referencing authentication provider. This will be utilised to authenticate end-users and match with external users.
673
681
  */
@@ -689,11 +697,11 @@ export type Instructions =
689
697
  /**
690
698
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
691
699
  */
692
- export type ExtensionKey11 = string;
700
+ export type ExtensionKey13 = string;
693
701
  /**
694
702
  * The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
695
703
  */
696
- export type ExtensionKey12 = string;
704
+ export type ExtensionKey14 = string;
697
705
  /**
698
706
  * App permissions enforcement method
699
707
  */
@@ -1492,15 +1500,37 @@ export interface Modules {
1492
1500
  }
1493
1501
  )[]
1494
1502
  ];
1503
+ preUninstall?: [
1504
+ (
1505
+ | {
1506
+ function: ExtensionKey6;
1507
+ key: ModuleKeySchema;
1508
+ }
1509
+ | {
1510
+ endpoint: ExtensionKey7;
1511
+ key: ModuleKeySchema;
1512
+ }
1513
+ ),
1514
+ ...(
1515
+ | {
1516
+ function: ExtensionKey6;
1517
+ key: ModuleKeySchema;
1518
+ }
1519
+ | {
1520
+ endpoint: ExtensionKey7;
1521
+ key: ModuleKeySchema;
1522
+ }
1523
+ )[]
1524
+ ];
1495
1525
  fifoConsumer?: [
1496
1526
  {
1497
1527
  queue: Queue;
1498
- function: ExtensionKey6;
1528
+ function: ExtensionKey8;
1499
1529
  key: ModuleKeySchema;
1500
1530
  },
1501
1531
  ...{
1502
1532
  queue: Queue;
1503
- function: ExtensionKey6;
1533
+ function: ExtensionKey8;
1504
1534
  key: ModuleKeySchema;
1505
1535
  }[]
1506
1536
  ];
@@ -1772,7 +1802,7 @@ export interface Modules {
1772
1802
  * swapped depending on what integrations a tenant might have.
1773
1803
  */
1774
1804
  actionType: string;
1775
- function: ExtensionKey7;
1805
+ function: ExtensionKey9;
1776
1806
  /**
1777
1807
  * The name of the action
1778
1808
  */
@@ -1822,7 +1852,7 @@ export interface Modules {
1822
1852
  | {
1823
1853
  endpoint: string;
1824
1854
  };
1825
- endpoint: ExtensionKey8;
1855
+ endpoint: ExtensionKey10;
1826
1856
  /**
1827
1857
  * The operation that will be performed as a result of calling this action
1828
1858
  */
@@ -1859,7 +1889,7 @@ export interface Modules {
1859
1889
  * swapped depending on what integrations a tenant might have.
1860
1890
  */
1861
1891
  actionType: string;
1862
- endpoint: ExtensionKey9;
1892
+ endpoint: ExtensionKey11;
1863
1893
  /**
1864
1894
  * The name of the action
1865
1895
  */
@@ -1885,7 +1915,7 @@ export interface Modules {
1885
1915
  * swapped depending on what integrations a tenant might have.
1886
1916
  */
1887
1917
  actionType: string;
1888
- function: ExtensionKey7;
1918
+ function: ExtensionKey9;
1889
1919
  /**
1890
1920
  * The name of the action
1891
1921
  */
@@ -1935,7 +1965,7 @@ export interface Modules {
1935
1965
  | {
1936
1966
  endpoint: string;
1937
1967
  };
1938
- endpoint: ExtensionKey8;
1968
+ endpoint: ExtensionKey10;
1939
1969
  /**
1940
1970
  * The operation that will be performed as a result of calling this action
1941
1971
  */
@@ -1972,7 +2002,7 @@ export interface Modules {
1972
2002
  * swapped depending on what integrations a tenant might have.
1973
2003
  */
1974
2004
  actionType: string;
1975
- endpoint: ExtensionKey9;
2005
+ endpoint: ExtensionKey11;
1976
2006
  /**
1977
2007
  * The name of the action
1978
2008
  */
@@ -12747,6 +12777,7 @@ export interface Modules {
12747
12777
  | string;
12748
12778
  description__i18n?: string;
12749
12779
  };
12780
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12750
12781
  key: ModuleKeySchema;
12751
12782
  [k: string]: unknown;
12752
12783
  }
@@ -12783,6 +12814,7 @@ export interface Modules {
12783
12814
  description__i18n?: string;
12784
12815
  };
12785
12816
  render?: 'native' | 'default';
12817
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12786
12818
  key: ModuleKeySchema;
12787
12819
  [k: string]: unknown;
12788
12820
  }
@@ -12811,6 +12843,7 @@ export interface Modules {
12811
12843
  | string;
12812
12844
  description__i18n?: string;
12813
12845
  };
12846
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12814
12847
  key: ModuleKeySchema;
12815
12848
  [k: string]: unknown;
12816
12849
  }
@@ -12847,6 +12880,7 @@ export interface Modules {
12847
12880
  description__i18n?: string;
12848
12881
  };
12849
12882
  render?: 'native' | 'default';
12883
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12850
12884
  key: ModuleKeySchema;
12851
12885
  [k: string]: unknown;
12852
12886
  }
@@ -12877,6 +12911,7 @@ export interface Modules {
12877
12911
  | string;
12878
12912
  description__i18n?: string;
12879
12913
  };
12914
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12880
12915
  key: ModuleKeySchema;
12881
12916
  [k: string]: unknown;
12882
12917
  }
@@ -12912,6 +12947,7 @@ export interface Modules {
12912
12947
  | string;
12913
12948
  description__i18n?: string;
12914
12949
  };
12950
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12915
12951
  render?: 'native' | 'default';
12916
12952
  key: ModuleKeySchema;
12917
12953
  [k: string]: unknown;
@@ -12941,6 +12977,7 @@ export interface Modules {
12941
12977
  | string;
12942
12978
  description__i18n?: string;
12943
12979
  };
12980
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12944
12981
  key: ModuleKeySchema;
12945
12982
  [k: string]: unknown;
12946
12983
  }
@@ -12976,6 +13013,7 @@ export interface Modules {
12976
13013
  | string;
12977
13014
  description__i18n?: string;
12978
13015
  };
13016
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
12979
13017
  render?: 'native' | 'default';
12980
13018
  key: ModuleKeySchema;
12981
13019
  [k: string]: unknown;
@@ -13076,8 +13114,8 @@ export interface Modules {
13076
13114
  | string;
13077
13115
  description__i18n?: string;
13078
13116
  };
13079
- render?: 'native' | 'default';
13080
13117
  unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13118
+ render?: 'native' | 'default';
13081
13119
  key: ModuleKeySchema;
13082
13120
  }
13083
13121
  ),
@@ -13174,8 +13212,8 @@ export interface Modules {
13174
13212
  | string;
13175
13213
  description__i18n?: string;
13176
13214
  };
13177
- render?: 'native' | 'default';
13178
13215
  unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13216
+ render?: 'native' | 'default';
13179
13217
  key: ModuleKeySchema;
13180
13218
  }
13181
13219
  )[]
@@ -13337,6 +13375,7 @@ export interface Modules {
13337
13375
  | string;
13338
13376
  description__i18n?: string;
13339
13377
  };
13378
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13340
13379
  key: ModuleKeySchema;
13341
13380
  [k: string]: unknown;
13342
13381
  }
@@ -13373,6 +13412,7 @@ export interface Modules {
13373
13412
  | string;
13374
13413
  description__i18n?: string;
13375
13414
  };
13415
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13376
13416
  render?: 'native' | 'default';
13377
13417
  key: ModuleKeySchema;
13378
13418
  [k: string]: unknown;
@@ -13404,6 +13444,7 @@ export interface Modules {
13404
13444
  | string;
13405
13445
  description__i18n?: string;
13406
13446
  };
13447
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13407
13448
  key: ModuleKeySchema;
13408
13449
  [k: string]: unknown;
13409
13450
  }
@@ -13440,6 +13481,7 @@ export interface Modules {
13440
13481
  | string;
13441
13482
  description__i18n?: string;
13442
13483
  };
13484
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13443
13485
  render?: 'native' | 'default';
13444
13486
  key: ModuleKeySchema;
13445
13487
  [k: string]: unknown;
@@ -13894,6 +13936,7 @@ export interface Modules {
13894
13936
  | {
13895
13937
  endpoint: string;
13896
13938
  };
13939
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13897
13940
  key: ModuleKeySchema;
13898
13941
  }
13899
13942
  | {
@@ -13915,6 +13958,7 @@ export interface Modules {
13915
13958
  render: 'native' | 'default';
13916
13959
  routePrefix: string;
13917
13960
  icon?: string;
13961
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13918
13962
  key: ModuleKeySchema;
13919
13963
  }
13920
13964
  ),
@@ -13937,6 +13981,7 @@ export interface Modules {
13937
13981
  | {
13938
13982
  endpoint: string;
13939
13983
  };
13984
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13940
13985
  key: ModuleKeySchema;
13941
13986
  }
13942
13987
  | {
@@ -13958,6 +14003,7 @@ export interface Modules {
13958
14003
  render: 'native' | 'default';
13959
14004
  routePrefix: string;
13960
14005
  icon?: string;
14006
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13961
14007
  key: ModuleKeySchema;
13962
14008
  }
13963
14009
  )[]
@@ -13985,6 +14031,7 @@ export interface Modules {
13985
14031
  indexing?: boolean;
13986
14032
  preventDuplicateTitle?: boolean;
13987
14033
  function: string;
14034
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
13988
14035
  key: ModuleKeySchema;
13989
14036
  }
13990
14037
  | {
@@ -14017,6 +14064,7 @@ export interface Modules {
14017
14064
  * A flag indicating whether this custom content module was migrated from a Connect app.
14018
14065
  */
14019
14066
  migratedFromConnect?: boolean;
14067
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14020
14068
  key: ModuleKeySchema;
14021
14069
  }
14022
14070
  ),
@@ -14042,6 +14090,7 @@ export interface Modules {
14042
14090
  indexing?: boolean;
14043
14091
  preventDuplicateTitle?: boolean;
14044
14092
  function: string;
14093
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14045
14094
  key: ModuleKeySchema;
14046
14095
  }
14047
14096
  | {
@@ -14074,6 +14123,7 @@ export interface Modules {
14074
14123
  * A flag indicating whether this custom content module was migrated from a Connect app.
14075
14124
  */
14076
14125
  migratedFromConnect?: boolean;
14126
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14077
14127
  key: ModuleKeySchema;
14078
14128
  }
14079
14129
  )[]
@@ -14092,6 +14142,7 @@ export interface Modules {
14092
14142
  displayConditions?: {
14093
14143
  [k: string]: unknown;
14094
14144
  };
14145
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14095
14146
  key: ModuleKeySchema;
14096
14147
  [k: string]: unknown;
14097
14148
  }
@@ -14108,6 +14159,7 @@ export interface Modules {
14108
14159
  displayConditions?: {
14109
14160
  [k: string]: unknown;
14110
14161
  };
14162
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14111
14163
  key: ModuleKeySchema;
14112
14164
  [k: string]: unknown;
14113
14165
  }
@@ -14125,6 +14177,7 @@ export interface Modules {
14125
14177
  displayConditions?: {
14126
14178
  [k: string]: unknown;
14127
14179
  };
14180
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14128
14181
  key: ModuleKeySchema;
14129
14182
  [k: string]: unknown;
14130
14183
  }
@@ -14141,6 +14194,7 @@ export interface Modules {
14141
14194
  displayConditions?: {
14142
14195
  [k: string]: unknown;
14143
14196
  };
14197
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14144
14198
  key: ModuleKeySchema;
14145
14199
  [k: string]: unknown;
14146
14200
  }
@@ -14160,6 +14214,7 @@ export interface Modules {
14160
14214
  displayConditions?: {
14161
14215
  [k: string]: unknown;
14162
14216
  };
14217
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14163
14218
  key: ModuleKeySchema;
14164
14219
  [k: string]: unknown;
14165
14220
  }
@@ -14176,6 +14231,7 @@ export interface Modules {
14176
14231
  displayConditions?: {
14177
14232
  [k: string]: unknown;
14178
14233
  };
14234
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14179
14235
  key: ModuleKeySchema;
14180
14236
  [k: string]: unknown;
14181
14237
  }
@@ -14193,6 +14249,7 @@ export interface Modules {
14193
14249
  displayConditions?: {
14194
14250
  [k: string]: unknown;
14195
14251
  };
14252
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14196
14253
  key: ModuleKeySchema;
14197
14254
  [k: string]: unknown;
14198
14255
  }
@@ -14209,6 +14266,7 @@ export interface Modules {
14209
14266
  displayConditions?: {
14210
14267
  [k: string]: unknown;
14211
14268
  };
14269
+ unlicensedAccess?: ('unlicensed' | 'anonymous')[];
14212
14270
  key: ModuleKeySchema;
14213
14271
  [k: string]: unknown;
14214
14272
  }
@@ -24544,7 +24602,7 @@ export interface Modules {
24544
24602
  ];
24545
24603
  orchestration?: {
24546
24604
  taskRunner: {
24547
- function: ExtensionKey10;
24605
+ function: ExtensionKey12;
24548
24606
  };
24549
24607
  };
24550
24608
  auth?: {
@@ -24563,12 +24621,12 @@ export interface Modules {
24563
24621
  | [FormSection, FormSection, FormSection, FormSection, FormSection];
24564
24622
  instructions?: Instructions;
24565
24623
  validateConnection: {
24566
- function: ExtensionKey11;
24624
+ function: ExtensionKey13;
24567
24625
  [k: string]: unknown;
24568
24626
  };
24569
24627
  };
24570
24628
  onConnectionChange: {
24571
- function: ExtensionKey12;
24629
+ function: ExtensionKey14;
24572
24630
  [k: string]: unknown;
24573
24631
  };
24574
24632
  };
@@ -24661,7 +24719,7 @@ export interface Modules {
24661
24719
  ];
24662
24720
  orchestration?: {
24663
24721
  taskRunner: {
24664
- function: ExtensionKey10;
24722
+ function: ExtensionKey12;
24665
24723
  };
24666
24724
  };
24667
24725
  auth?: {
@@ -24680,12 +24738,12 @@ export interface Modules {
24680
24738
  | [FormSection, FormSection, FormSection, FormSection, FormSection];
24681
24739
  instructions?: Instructions;
24682
24740
  validateConnection: {
24683
- function: ExtensionKey11;
24741
+ function: ExtensionKey13;
24684
24742
  [k: string]: unknown;
24685
24743
  };
24686
24744
  };
24687
24745
  onConnectionChange: {
24688
- function: ExtensionKey12;
24746
+ function: ExtensionKey14;
24689
24747
  [k: string]: unknown;
24690
24748
  };
24691
24749
  };
@@ -14,6 +14,7 @@ export declare enum AllModuleTypes {
14
14
  CoreSql = "core:sql",
15
15
  CoreOs = "core:objectStore",
16
16
  CoreLlm = "core:llm",
17
+ CorePreUninstall = "core:preUninstall",
17
18
  XenMacro = "xen:macro",
18
19
  DataResidencyMigration = "migration:dataResidency",
19
20
  DashboardsWidget = "dashboards:widget",
@@ -1 +1 @@
1
- {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
@@ -18,6 +18,7 @@ var AllModuleTypes;
18
18
  AllModuleTypes["CoreSql"] = "core:sql";
19
19
  AllModuleTypes["CoreOs"] = "core:objectStore";
20
20
  AllModuleTypes["CoreLlm"] = "core:llm";
21
+ AllModuleTypes["CorePreUninstall"] = "core:preUninstall";
21
22
  AllModuleTypes["XenMacro"] = "xen:macro";
22
23
  AllModuleTypes["DataResidencyMigration"] = "migration:dataResidency";
23
24
  AllModuleTypes["DashboardsWidget"] = "dashboards:widget";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "12.4.0-next.1",
3
+ "version": "12.4.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {