system-initiative-api-client 1.0.8 → 1.0.9
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 +56 -1
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -183,6 +183,37 @@ export interface ApiSuccessString {
|
|
|
183
183
|
*/
|
|
184
184
|
'data': string;
|
|
185
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @export
|
|
189
|
+
* @interface BuildingResponseV1
|
|
190
|
+
*/
|
|
191
|
+
export interface BuildingResponseV1 {
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {number}
|
|
195
|
+
* @memberof BuildingResponseV1
|
|
196
|
+
*/
|
|
197
|
+
'estimatedCompletionSeconds': number;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof BuildingResponseV1
|
|
202
|
+
*/
|
|
203
|
+
'message': string;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @type {number}
|
|
207
|
+
* @memberof BuildingResponseV1
|
|
208
|
+
*/
|
|
209
|
+
'retryAfterSeconds': number;
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof BuildingResponseV1
|
|
214
|
+
*/
|
|
215
|
+
'status': string;
|
|
216
|
+
}
|
|
186
217
|
/**
|
|
187
218
|
*
|
|
188
219
|
* @export
|
|
@@ -1492,7 +1523,7 @@ export interface GetSchemaVariantV1Response {
|
|
|
1492
1523
|
* @type {PropSchemaV1}
|
|
1493
1524
|
* @memberof GetSchemaVariantV1Response
|
|
1494
1525
|
*/
|
|
1495
|
-
'domainProps'
|
|
1526
|
+
'domainProps'?: PropSchemaV1 | null;
|
|
1496
1527
|
/**
|
|
1497
1528
|
*
|
|
1498
1529
|
* @type {boolean}
|
|
@@ -1895,12 +1926,30 @@ export interface PropSchemaV1 {
|
|
|
1895
1926
|
* @memberof PropSchemaV1
|
|
1896
1927
|
*/
|
|
1897
1928
|
'children': Array<PropSchemaV1>;
|
|
1929
|
+
/**
|
|
1930
|
+
*
|
|
1931
|
+
* @type {any}
|
|
1932
|
+
* @memberof PropSchemaV1
|
|
1933
|
+
*/
|
|
1934
|
+
'defaultValue': any;
|
|
1898
1935
|
/**
|
|
1899
1936
|
*
|
|
1900
1937
|
* @type {string}
|
|
1901
1938
|
* @memberof PropSchemaV1
|
|
1902
1939
|
*/
|
|
1903
1940
|
'description': string;
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
* @type {string}
|
|
1944
|
+
* @memberof PropSchemaV1
|
|
1945
|
+
*/
|
|
1946
|
+
'docLink': string;
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @type {boolean}
|
|
1950
|
+
* @memberof PropSchemaV1
|
|
1951
|
+
*/
|
|
1952
|
+
'hidden': boolean;
|
|
1904
1953
|
/**
|
|
1905
1954
|
*
|
|
1906
1955
|
* @type {string}
|
|
@@ -1919,6 +1968,12 @@ export interface PropSchemaV1 {
|
|
|
1919
1968
|
* @memberof PropSchemaV1
|
|
1920
1969
|
*/
|
|
1921
1970
|
'propType': string;
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
* @type {string}
|
|
1974
|
+
* @memberof PropSchemaV1
|
|
1975
|
+
*/
|
|
1976
|
+
'validationFormat': string;
|
|
1922
1977
|
}
|
|
1923
1978
|
/**
|
|
1924
1979
|
*
|
package/package.json
CHANGED