@forge/manifest 12.4.0-next.2 → 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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 12.4.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a1a0375: add `core:preUninstall` module
8
+
3
9
  ## 12.4.0-next.2
4
10
 
5
11
  ### Patch 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": {
@@ -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
  */
@@ -24572,7 +24602,7 @@ export interface Modules {
24572
24602
  ];
24573
24603
  orchestration?: {
24574
24604
  taskRunner: {
24575
- function: ExtensionKey10;
24605
+ function: ExtensionKey12;
24576
24606
  };
24577
24607
  };
24578
24608
  auth?: {
@@ -24591,12 +24621,12 @@ export interface Modules {
24591
24621
  | [FormSection, FormSection, FormSection, FormSection, FormSection];
24592
24622
  instructions?: Instructions;
24593
24623
  validateConnection: {
24594
- function: ExtensionKey11;
24624
+ function: ExtensionKey13;
24595
24625
  [k: string]: unknown;
24596
24626
  };
24597
24627
  };
24598
24628
  onConnectionChange: {
24599
- function: ExtensionKey12;
24629
+ function: ExtensionKey14;
24600
24630
  [k: string]: unknown;
24601
24631
  };
24602
24632
  };
@@ -24689,7 +24719,7 @@ export interface Modules {
24689
24719
  ];
24690
24720
  orchestration?: {
24691
24721
  taskRunner: {
24692
- function: ExtensionKey10;
24722
+ function: ExtensionKey12;
24693
24723
  };
24694
24724
  };
24695
24725
  auth?: {
@@ -24708,12 +24738,12 @@ export interface Modules {
24708
24738
  | [FormSection, FormSection, FormSection, FormSection, FormSection];
24709
24739
  instructions?: Instructions;
24710
24740
  validateConnection: {
24711
- function: ExtensionKey11;
24741
+ function: ExtensionKey13;
24712
24742
  [k: string]: unknown;
24713
24743
  };
24714
24744
  };
24715
24745
  onConnectionChange: {
24716
- function: ExtensionKey12;
24746
+ function: ExtensionKey14;
24717
24747
  [k: string]: unknown;
24718
24748
  };
24719
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.2",
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": {