system-initiative-api-client 1.6.1 → 1.6.2
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/cjs/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -2376,6 +2376,12 @@ export interface SchemaVariantFunc {
|
|
|
2376
2376
|
* @memberof SchemaVariantFunc
|
|
2377
2377
|
*/
|
|
2378
2378
|
'id': string;
|
|
2379
|
+
/**
|
|
2380
|
+
*
|
|
2381
|
+
* @type {boolean}
|
|
2382
|
+
* @memberof SchemaVariantFunc
|
|
2383
|
+
*/
|
|
2384
|
+
'isOverlay': boolean;
|
|
2379
2385
|
}
|
|
2380
2386
|
/**
|
|
2381
2387
|
* @type SchemaVariantFuncKind
|
|
@@ -3056,6 +3062,12 @@ export interface Workspace {
|
|
|
3056
3062
|
* @memberof Workspace
|
|
3057
3063
|
*/
|
|
3058
3064
|
'displayName': string;
|
|
3065
|
+
/**
|
|
3066
|
+
*
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof Workspace
|
|
3069
|
+
*/
|
|
3070
|
+
'externalId'?: string | null;
|
|
3059
3071
|
/**
|
|
3060
3072
|
*
|
|
3061
3073
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2376,6 +2376,12 @@ export interface SchemaVariantFunc {
|
|
|
2376
2376
|
* @memberof SchemaVariantFunc
|
|
2377
2377
|
*/
|
|
2378
2378
|
'id': string;
|
|
2379
|
+
/**
|
|
2380
|
+
*
|
|
2381
|
+
* @type {boolean}
|
|
2382
|
+
* @memberof SchemaVariantFunc
|
|
2383
|
+
*/
|
|
2384
|
+
'isOverlay': boolean;
|
|
2379
2385
|
}
|
|
2380
2386
|
/**
|
|
2381
2387
|
* @type SchemaVariantFuncKind
|
|
@@ -3056,6 +3062,12 @@ export interface Workspace {
|
|
|
3056
3062
|
* @memberof Workspace
|
|
3057
3063
|
*/
|
|
3058
3064
|
'displayName': string;
|
|
3065
|
+
/**
|
|
3066
|
+
*
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof Workspace
|
|
3069
|
+
*/
|
|
3070
|
+
'externalId'?: string | null;
|
|
3059
3071
|
/**
|
|
3060
3072
|
*
|
|
3061
3073
|
* @type {string}
|
package/package.json
CHANGED