@uniformdev/canvas 17.1.1-alpha.231 → 17.1.1-alpha.430
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/{chunk-2XL2NAQJ.mjs → chunk-IQWDQAHE.mjs} +2 -2
- package/dist/chunk-OT3KUGLJ.mjs +4 -0
- package/dist/cli/cli.d.ts +1 -1
- package/dist/cli/cli.js +52 -52
- package/dist/cli/cli.mjs +52 -52
- package/dist/createEventBus-1e372818.d.ts +2942 -0
- package/dist/createEventBus-6f48d55f.d.ts +2949 -0
- package/dist/{createEventBus-e386fc9c.d.ts → createEventBus-ce0758ee.d.ts} +6 -3
- package/dist/index.d.ts +21 -1396
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
@@ -363,7 +363,7 @@ interface external$1 {
|
|
363
363
|
/** @description The type of data connector this connects to (e.g. 'cms-items', provided by an intalled integration) */
|
364
364
|
connectorType: string;
|
365
365
|
/** @description Base resource URL of the data connector. No trailing slash. */
|
366
|
-
baseUrl
|
366
|
+
baseUrl: string;
|
367
367
|
};
|
368
368
|
/**
|
369
369
|
* @deprecated
|
@@ -412,6 +412,7 @@ interface external$1 {
|
|
412
412
|
* no special UI or processing is required.
|
413
413
|
*/
|
414
414
|
archetype?: string;
|
415
|
+
allowedOnComponents?: string[];
|
415
416
|
/** @description Resource path, appended to the data connection's baseUrl (e.g. baseUrl = https://base.url, path = /v1/endpoint -> final URL https://base.url/v1/endpoint). Must have leading slash. */
|
416
417
|
path: string;
|
417
418
|
/** @description HTTP headers to pass with requests to the data type. Merged with headers from the data connection, overriding identical keys. */
|
@@ -713,7 +714,7 @@ interface components$1 {
|
|
713
714
|
/** @description The type of data connector this connects to (e.g. 'cms-items', provided by an intalled integration) */
|
714
715
|
connectorType: string;
|
715
716
|
/** @description Base resource URL of the data connector. No trailing slash. */
|
716
|
-
baseUrl
|
717
|
+
baseUrl: string;
|
717
718
|
};
|
718
719
|
/**
|
719
720
|
* @deprecated
|
@@ -762,6 +763,7 @@ interface components$1 {
|
|
762
763
|
* no special UI or processing is required.
|
763
764
|
*/
|
764
765
|
archetype?: string;
|
766
|
+
allowedOnComponents?: string[];
|
765
767
|
/** @description Resource path, appended to the data connection's baseUrl (e.g. baseUrl = https://base.url, path = /v1/endpoint -> final URL https://base.url/v1/endpoint). Must have leading slash. */
|
766
768
|
path: string;
|
767
769
|
/** @description HTTP headers to pass with requests to the data type. Merged with headers from the data connection, overriding identical keys. */
|
@@ -1341,7 +1343,7 @@ interface external {
|
|
1341
1343
|
/** @description The type of data connector this connects to (e.g. 'cms-items', provided by an intalled integration) */
|
1342
1344
|
connectorType: string;
|
1343
1345
|
/** @description Base resource URL of the data connector. No trailing slash. */
|
1344
|
-
baseUrl
|
1346
|
+
baseUrl: string;
|
1345
1347
|
};
|
1346
1348
|
/**
|
1347
1349
|
* @deprecated
|
@@ -1390,6 +1392,7 @@ interface external {
|
|
1390
1392
|
* no special UI or processing is required.
|
1391
1393
|
*/
|
1392
1394
|
archetype?: string;
|
1395
|
+
allowedOnComponents?: string[];
|
1393
1396
|
/** @description Resource path, appended to the data connection's baseUrl (e.g. baseUrl = https://base.url, path = /v1/endpoint -> final URL https://base.url/v1/endpoint). Must have leading slash. */
|
1394
1397
|
path: string;
|
1395
1398
|
/** @description HTTP headers to pass with requests to the data type. Merged with headers from the data connection, overriding identical keys. */
|