@adminide-stack/core 13.5.15-alpha.1 → 13.5.15-alpha.11

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.
@@ -104,6 +104,19 @@ export interface IConfigurationRegistry {
104
104
  * Deregister multiple configurations (no tenant context).
105
105
  */
106
106
  deregisterConfigurations(configurations: IConfigurationNode[], context: IConfigurationNodeContextInput): void | Promise<void>;
107
+ /**
108
+ * Remove individual PROPERTIES from the stored nodes, leaving every other property alone.
109
+ *
110
+ * Distinct from `deregisterConfigurations`, which replaces whole nodes: removing one key
111
+ * by reading the node, deleting the key locally and writing the node back silently
112
+ * discards every key written in between. `system_extension` is SHARED - one
113
+ * `extensions.<slug>` property per extension in the tenant - so that window has already
114
+ * cost 19 of 21 entries in a single uninstall, taking the connector catalog with it.
115
+ *
116
+ * Implementations must remove the keys without a read-modify-write window where they can.
117
+ * Returns whether anything was removed.
118
+ */
119
+ removeConfigurationProperties(context: IConfigurationNodeContextInput, propertyKeys: string[]): boolean | Promise<boolean>;
107
120
  /**
108
121
  * Update the configuration registry by registering the "add" part
109
122
  * and deregistering the "remove" part.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminide-stack/core",
3
- "version": "13.5.15-alpha.1",
3
+ "version": "13.5.15-alpha.11",
4
4
  "description": "AdminIDE core for higher packages to depend on",
5
5
  "license": "UNLICENSED",
6
6
  "author": "adminide-stack-user",
@@ -30,7 +30,7 @@
30
30
  "vscode-uri": "^3.0.8"
31
31
  },
32
32
  "devDependencies": {
33
- "common": "13.5.15-alpha.1"
33
+ "common": "13.5.15-alpha.10"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@common-stack/server-core": ">=9.2.1-alpha.0",
@@ -39,5 +39,5 @@
39
39
  "typescript": {
40
40
  "definition": "lib/index.d.ts"
41
41
  },
42
- "gitHead": "002fc5b080bf1421f751d2fc4fee557da03ad83f"
42
+ "gitHead": "0a1c401ddb3ef69619761976627df23c6fabde55"
43
43
  }