system-initiative-api-client 1.6.1 → 1.7.0

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 CHANGED
@@ -1847,6 +1847,25 @@ export interface HashMapValue {
1847
1847
  */
1848
1848
  'secrets': Array<SecretV1>;
1849
1849
  }
1850
+ /**
1851
+ *
1852
+ * @export
1853
+ * @interface InitialApiToken
1854
+ */
1855
+ export interface InitialApiToken {
1856
+ /**
1857
+ *
1858
+ * @type {string}
1859
+ * @memberof InitialApiToken
1860
+ */
1861
+ 'expiresAt'?: string | null;
1862
+ /**
1863
+ *
1864
+ * @type {string}
1865
+ * @memberof InitialApiToken
1866
+ */
1867
+ 'token': string;
1868
+ }
1850
1869
  /**
1851
1870
  *
1852
1871
  * @export
@@ -2376,6 +2395,12 @@ export interface SchemaVariantFunc {
2376
2395
  * @memberof SchemaVariantFunc
2377
2396
  */
2378
2397
  'id': string;
2398
+ /**
2399
+ *
2400
+ * @type {boolean}
2401
+ * @memberof SchemaVariantFunc
2402
+ */
2403
+ 'isOverlay': boolean;
2379
2404
  }
2380
2405
  /**
2381
2406
  * @type SchemaVariantFuncKind
@@ -3056,12 +3081,24 @@ export interface Workspace {
3056
3081
  * @memberof Workspace
3057
3082
  */
3058
3083
  'displayName': string;
3084
+ /**
3085
+ *
3086
+ * @type {string}
3087
+ * @memberof Workspace
3088
+ */
3089
+ 'externalId'?: string | null;
3059
3090
  /**
3060
3091
  *
3061
3092
  * @type {string}
3062
3093
  * @memberof Workspace
3063
3094
  */
3064
3095
  'id': string;
3096
+ /**
3097
+ *
3098
+ * @type {InitialApiToken}
3099
+ * @memberof Workspace
3100
+ */
3101
+ 'initialApiToken'?: InitialApiToken | null;
3065
3102
  /**
3066
3103
  *
3067
3104
  * @type {string}
package/dist/esm/api.d.ts CHANGED
@@ -1847,6 +1847,25 @@ export interface HashMapValue {
1847
1847
  */
1848
1848
  'secrets': Array<SecretV1>;
1849
1849
  }
1850
+ /**
1851
+ *
1852
+ * @export
1853
+ * @interface InitialApiToken
1854
+ */
1855
+ export interface InitialApiToken {
1856
+ /**
1857
+ *
1858
+ * @type {string}
1859
+ * @memberof InitialApiToken
1860
+ */
1861
+ 'expiresAt'?: string | null;
1862
+ /**
1863
+ *
1864
+ * @type {string}
1865
+ * @memberof InitialApiToken
1866
+ */
1867
+ 'token': string;
1868
+ }
1850
1869
  /**
1851
1870
  *
1852
1871
  * @export
@@ -2376,6 +2395,12 @@ export interface SchemaVariantFunc {
2376
2395
  * @memberof SchemaVariantFunc
2377
2396
  */
2378
2397
  'id': string;
2398
+ /**
2399
+ *
2400
+ * @type {boolean}
2401
+ * @memberof SchemaVariantFunc
2402
+ */
2403
+ 'isOverlay': boolean;
2379
2404
  }
2380
2405
  /**
2381
2406
  * @type SchemaVariantFuncKind
@@ -3056,12 +3081,24 @@ export interface Workspace {
3056
3081
  * @memberof Workspace
3057
3082
  */
3058
3083
  'displayName': string;
3084
+ /**
3085
+ *
3086
+ * @type {string}
3087
+ * @memberof Workspace
3088
+ */
3089
+ 'externalId'?: string | null;
3059
3090
  /**
3060
3091
  *
3061
3092
  * @type {string}
3062
3093
  * @memberof Workspace
3063
3094
  */
3064
3095
  'id': string;
3096
+ /**
3097
+ *
3098
+ * @type {InitialApiToken}
3099
+ * @memberof Workspace
3100
+ */
3101
+ 'initialApiToken'?: InitialApiToken | null;
3065
3102
  /**
3066
3103
  *
3067
3104
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-initiative-api-client",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "TypeScript/JavaScript SDK for the System Initiative Public API",
5
5
  "author": "System Initiative <support@systeminit.com>",
6
6
  "repository": {