system-initiative-api-client 1.6.2 → 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 +25 -0
- package/dist/esm/api.d.ts +25 -0
- package/package.json +1 -1
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
|
|
@@ -3074,6 +3093,12 @@ export interface Workspace {
|
|
|
3074
3093
|
* @memberof Workspace
|
|
3075
3094
|
*/
|
|
3076
3095
|
'id': string;
|
|
3096
|
+
/**
|
|
3097
|
+
*
|
|
3098
|
+
* @type {InitialApiToken}
|
|
3099
|
+
* @memberof Workspace
|
|
3100
|
+
*/
|
|
3101
|
+
'initialApiToken'?: InitialApiToken | null;
|
|
3077
3102
|
/**
|
|
3078
3103
|
*
|
|
3079
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
|
|
@@ -3074,6 +3093,12 @@ export interface Workspace {
|
|
|
3074
3093
|
* @memberof Workspace
|
|
3075
3094
|
*/
|
|
3076
3095
|
'id': string;
|
|
3096
|
+
/**
|
|
3097
|
+
*
|
|
3098
|
+
* @type {InitialApiToken}
|
|
3099
|
+
* @memberof Workspace
|
|
3100
|
+
*/
|
|
3101
|
+
'initialApiToken'?: InitialApiToken | null;
|
|
3077
3102
|
/**
|
|
3078
3103
|
*
|
|
3079
3104
|
* @type {string}
|
package/package.json
CHANGED