@uniformdev/assets 19.184.3-alpha.32 → 19.186.1
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 +5 -8
- package/dist/index.d.ts +5 -8
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -883,14 +883,6 @@ interface external {
|
|
|
883
883
|
variables?: {
|
|
884
884
|
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
|
885
885
|
};
|
|
886
|
-
/** @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 */
|
|
887
|
-
customPublic?: {
|
|
888
|
-
[key: string]: unknown;
|
|
889
|
-
};
|
|
890
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
|
891
|
-
custom?: {
|
|
892
|
-
[key: string]: unknown;
|
|
893
|
-
};
|
|
894
886
|
};
|
|
895
887
|
/**
|
|
896
888
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
|
@@ -1538,6 +1530,11 @@ interface external {
|
|
|
1538
1530
|
typeName?: string;
|
|
1539
1531
|
/** @description List of locales that the composition is available in. If empty, available in all locales */
|
|
1540
1532
|
locales: string[];
|
|
1533
|
+
/**
|
|
1534
|
+
* Format: date-time
|
|
1535
|
+
* @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
|
|
1536
|
+
*/
|
|
1537
|
+
modified?: string;
|
|
1541
1538
|
};
|
|
1542
1539
|
ProjectMapNodeUpdate: {
|
|
1543
1540
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -883,14 +883,6 @@ interface external {
|
|
|
883
883
|
variables?: {
|
|
884
884
|
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
|
885
885
|
};
|
|
886
|
-
/** @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 */
|
|
887
|
-
customPublic?: {
|
|
888
|
-
[key: string]: unknown;
|
|
889
|
-
};
|
|
890
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
|
891
|
-
custom?: {
|
|
892
|
-
[key: string]: unknown;
|
|
893
|
-
};
|
|
894
886
|
};
|
|
895
887
|
/**
|
|
896
888
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
|
@@ -1538,6 +1530,11 @@ interface external {
|
|
|
1538
1530
|
typeName?: string;
|
|
1539
1531
|
/** @description List of locales that the composition is available in. If empty, available in all locales */
|
|
1540
1532
|
locales: string[];
|
|
1533
|
+
/**
|
|
1534
|
+
* Format: date-time
|
|
1535
|
+
* @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
|
|
1536
|
+
*/
|
|
1537
|
+
modified?: string;
|
|
1541
1538
|
};
|
|
1542
1539
|
ProjectMapNodeUpdate: {
|
|
1543
1540
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.186.1",
|
|
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.186.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "12ca61d140d99b4f2de67428425076cecbc6577b"
|
|
42
42
|
}
|