cdeops 3.1.2-alpha.1 → 3.1.2-alpha.136

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/cdeops.d.ts +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdeops",
3
- "version": "3.1.2-alpha.1",
3
+ "version": "3.1.2-alpha.136",
4
4
  "description": "Cdecode - Extension API: build extensions that enhance coding experience in your cdeops editor",
5
5
  "license": "Apache-2.0",
6
6
  "author": "CDMBase LLC",
@@ -29,5 +29,5 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "40835102bffb7a76bb30c309af7b57587d95654a"
32
+ "gitHead": "dd43d1acfac1cf18045483f0ba2bca4efe98d794"
33
33
  }
package/src/cdeops.d.ts CHANGED
@@ -601,6 +601,11 @@ declare module 'cdeops' {
601
601
  // export function registerFileSystemProvider(scheme: string, provider: FileSystemProvider, options?: { isCaseSensitive?: boolean, isReadonly?: boolean }): Disposable;
602
602
  }
603
603
 
604
+ /**
605
+ * The configuration scope which can be a
606
+ * a `resource`
607
+ */
608
+ export type ConfigurationScope = Uri | OrganizationResource | { uri?: Uri; machineId: string };
604
609
  /**
605
610
  * An event describing the change in Configuration
606
611
  */