@uniformdev/assets 19.173.2-alpha.8 → 19.175.1-alpha.36
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/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -825,6 +825,11 @@ interface external {
|
|
|
825
825
|
localeMapping?: {
|
|
826
826
|
[key: string]: string;
|
|
827
827
|
};
|
|
828
|
+
/**
|
|
829
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
|
830
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
|
831
|
+
*/
|
|
832
|
+
enableUnpublishedMode?: boolean;
|
|
828
833
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
|
829
834
|
customPublic?: {
|
|
830
835
|
[key: string]: unknown;
|
|
@@ -931,6 +936,8 @@ interface external {
|
|
|
931
936
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
|
932
937
|
*/
|
|
933
938
|
optionalPatternParameter?: boolean;
|
|
939
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
|
940
|
+
isDraft?: boolean;
|
|
934
941
|
variables?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
|
935
942
|
};
|
|
936
943
|
/** @description Variable values for a data resource */
|
package/dist/index.d.ts
CHANGED
|
@@ -825,6 +825,11 @@ interface external {
|
|
|
825
825
|
localeMapping?: {
|
|
826
826
|
[key: string]: string;
|
|
827
827
|
};
|
|
828
|
+
/**
|
|
829
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
|
830
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
|
831
|
+
*/
|
|
832
|
+
enableUnpublishedMode?: boolean;
|
|
828
833
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
|
829
834
|
customPublic?: {
|
|
830
835
|
[key: string]: unknown;
|
|
@@ -931,6 +936,8 @@ interface external {
|
|
|
931
936
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
|
932
937
|
*/
|
|
933
938
|
optionalPatternParameter?: boolean;
|
|
939
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
|
940
|
+
isDraft?: boolean;
|
|
934
941
|
variables?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
|
935
942
|
};
|
|
936
943
|
/** @description Variable values for a data resource */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.175.1-alpha.36+4682f8aebe",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "19.
|
|
39
|
+
"@uniformdev/context": "19.175.1-alpha.36+4682f8aebe"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "4682f8aebe6c4e2f22b7f7db182c51ff313d9894"
|
|
42
42
|
}
|