system-initiative-api-client 1.0.2 → 1.0.3
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 +10 -8
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -338,6 +338,14 @@ export interface ComponentV1RequestPath {
|
|
|
338
338
|
* @interface ComponentViewV1
|
|
339
339
|
*/
|
|
340
340
|
export interface ComponentViewV1 {
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* @type {{ [key: string]: any; }}
|
|
344
|
+
* @memberof ComponentViewV1
|
|
345
|
+
*/
|
|
346
|
+
'attributes': {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
};
|
|
341
349
|
/**
|
|
342
350
|
*
|
|
343
351
|
* @type {boolean}
|
|
@@ -398,12 +406,6 @@ export interface ComponentViewV1 {
|
|
|
398
406
|
* @memberof ComponentViewV1
|
|
399
407
|
*/
|
|
400
408
|
'sockets': Array<SocketViewV1>;
|
|
401
|
-
/**
|
|
402
|
-
*
|
|
403
|
-
* @type {Array<Array<string>>}
|
|
404
|
-
* @memberof ComponentViewV1
|
|
405
|
-
*/
|
|
406
|
-
'sources': Array<Array<string>>;
|
|
407
409
|
/**
|
|
408
410
|
*
|
|
409
411
|
* @type {boolean}
|
|
@@ -646,7 +648,7 @@ export interface CreateComponentV1Request {
|
|
|
646
648
|
* @memberof CreateComponentV1Request
|
|
647
649
|
* @deprecated
|
|
648
650
|
*/
|
|
649
|
-
'secrets'
|
|
651
|
+
'secrets'?: {
|
|
650
652
|
[key: string]: any;
|
|
651
653
|
};
|
|
652
654
|
/**
|
|
@@ -2194,7 +2196,7 @@ export interface UpdateComponentV1Request {
|
|
|
2194
2196
|
* @memberof UpdateComponentV1Request
|
|
2195
2197
|
* @deprecated
|
|
2196
2198
|
*/
|
|
2197
|
-
'secrets'
|
|
2199
|
+
'secrets'?: {
|
|
2198
2200
|
[key: string]: any;
|
|
2199
2201
|
};
|
|
2200
2202
|
/**
|
package/package.json
CHANGED