@uniformdev/mesh-sdk 20.47.2-alpha.4 → 20.48.1-alpha.11
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 +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1542,6 +1542,16 @@ type DataTypeLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetad
|
|
|
1542
1542
|
type DataTypeLocation = MeshLocationCore<DataTypeLocationValue, DataTypeLocationMetadata, DataTypeLocationValue, 'dataType'> & GetDataResourceLocation;
|
|
1543
1543
|
|
|
1544
1544
|
type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
|
|
1545
|
+
/**
|
|
1546
|
+
* The release ID of the currently edited entity.
|
|
1547
|
+
* This can be undefined when a release is active but the entity has not been copied to that release yet.
|
|
1548
|
+
*/
|
|
1549
|
+
releaseId?: string;
|
|
1550
|
+
/**
|
|
1551
|
+
* The currently active release ID from editor context.
|
|
1552
|
+
* This reflects release selection regardless of whether the edited entity exists in that release.
|
|
1553
|
+
*/
|
|
1554
|
+
activeReleaseId?: string;
|
|
1545
1555
|
dataType: DataType;
|
|
1546
1556
|
/** The data type's archetype value. */
|
|
1547
1557
|
archetype: string;
|
|
@@ -1943,6 +1953,12 @@ type MeshLocationUserPermissions =
|
|
|
1943
1953
|
| 'COMPOSITIONS_WRITE'
|
|
1944
1954
|
/** Uniform Canvas:Compositions:Delete */
|
|
1945
1955
|
| 'COMPOSITIONS_DELETE'
|
|
1956
|
+
/** Uniform Canvas:Labels:Create */
|
|
1957
|
+
| 'LABELS_CREATE'
|
|
1958
|
+
/** Uniform Canvas:Labels:Update */
|
|
1959
|
+
| 'LABELS_UPDATE'
|
|
1960
|
+
/** Uniform Canvas:Labels:Delete */
|
|
1961
|
+
| 'LABELS_DELETE'
|
|
1946
1962
|
/** Uniform Canvas:Compositions:Read Published */
|
|
1947
1963
|
| 'COMPOSITIONS_READ'
|
|
1948
1964
|
/** Uniform Canvas:Compositions:Publish */
|
|
@@ -2010,7 +2026,16 @@ type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetad
|
|
|
2010
2026
|
type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
|
|
2011
2027
|
|
|
2012
2028
|
type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
|
|
2029
|
+
/**
|
|
2030
|
+
* The release ID of the currently edited entity.
|
|
2031
|
+
* This can be undefined when a release is active but the entity has not been copied to that release yet.
|
|
2032
|
+
*/
|
|
2013
2033
|
releaseId?: string;
|
|
2034
|
+
/**
|
|
2035
|
+
* The currently active release ID from editor context.
|
|
2036
|
+
* This reflects release selection regardless of whether the edited entity exists in that release.
|
|
2037
|
+
*/
|
|
2038
|
+
activeReleaseId?: string;
|
|
2014
2039
|
state?: number;
|
|
2015
2040
|
}, TIntegrationConfiguration>;
|
|
2016
2041
|
type CanvasEditorToolsReferenceData = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1542,6 +1542,16 @@ type DataTypeLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetad
|
|
|
1542
1542
|
type DataTypeLocation = MeshLocationCore<DataTypeLocationValue, DataTypeLocationMetadata, DataTypeLocationValue, 'dataType'> & GetDataResourceLocation;
|
|
1543
1543
|
|
|
1544
1544
|
type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
|
|
1545
|
+
/**
|
|
1546
|
+
* The release ID of the currently edited entity.
|
|
1547
|
+
* This can be undefined when a release is active but the entity has not been copied to that release yet.
|
|
1548
|
+
*/
|
|
1549
|
+
releaseId?: string;
|
|
1550
|
+
/**
|
|
1551
|
+
* The currently active release ID from editor context.
|
|
1552
|
+
* This reflects release selection regardless of whether the edited entity exists in that release.
|
|
1553
|
+
*/
|
|
1554
|
+
activeReleaseId?: string;
|
|
1545
1555
|
dataType: DataType;
|
|
1546
1556
|
/** The data type's archetype value. */
|
|
1547
1557
|
archetype: string;
|
|
@@ -1943,6 +1953,12 @@ type MeshLocationUserPermissions =
|
|
|
1943
1953
|
| 'COMPOSITIONS_WRITE'
|
|
1944
1954
|
/** Uniform Canvas:Compositions:Delete */
|
|
1945
1955
|
| 'COMPOSITIONS_DELETE'
|
|
1956
|
+
/** Uniform Canvas:Labels:Create */
|
|
1957
|
+
| 'LABELS_CREATE'
|
|
1958
|
+
/** Uniform Canvas:Labels:Update */
|
|
1959
|
+
| 'LABELS_UPDATE'
|
|
1960
|
+
/** Uniform Canvas:Labels:Delete */
|
|
1961
|
+
| 'LABELS_DELETE'
|
|
1946
1962
|
/** Uniform Canvas:Compositions:Read Published */
|
|
1947
1963
|
| 'COMPOSITIONS_READ'
|
|
1948
1964
|
/** Uniform Canvas:Compositions:Publish */
|
|
@@ -2010,7 +2026,16 @@ type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetad
|
|
|
2010
2026
|
type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
|
|
2011
2027
|
|
|
2012
2028
|
type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
|
|
2029
|
+
/**
|
|
2030
|
+
* The release ID of the currently edited entity.
|
|
2031
|
+
* This can be undefined when a release is active but the entity has not been copied to that release yet.
|
|
2032
|
+
*/
|
|
2013
2033
|
releaseId?: string;
|
|
2034
|
+
/**
|
|
2035
|
+
* The currently active release ID from editor context.
|
|
2036
|
+
* This reflects release selection regardless of whether the edited entity exists in that release.
|
|
2037
|
+
*/
|
|
2038
|
+
activeReleaseId?: string;
|
|
2014
2039
|
state?: number;
|
|
2015
2040
|
}, TIntegrationConfiguration>;
|
|
2016
2041
|
type CanvasEditorToolsReferenceData = {
|
package/dist/index.esm.js
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.48.1-alpha.11+129de094d4",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/assets": "20.
|
|
37
|
-
"@uniformdev/canvas": "20.
|
|
38
|
-
"@uniformdev/context": "20.
|
|
39
|
-
"@uniformdev/project-map": "20.
|
|
36
|
+
"@uniformdev/assets": "20.48.1-alpha.11+129de094d4",
|
|
37
|
+
"@uniformdev/canvas": "20.48.1-alpha.11+129de094d4",
|
|
38
|
+
"@uniformdev/context": "20.48.1-alpha.11+129de094d4",
|
|
39
|
+
"@uniformdev/project-map": "20.48.1-alpha.11+129de094d4",
|
|
40
40
|
"imagesloaded": "^5.0.0",
|
|
41
41
|
"mitt": "^3.0.1"
|
|
42
42
|
},
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@types/imagesloaded": "^4.1.2",
|
|
45
45
|
"openai": "4.94.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "129de094d4db58d4adfcae07d6ab0fe506ca739e"
|
|
48
48
|
}
|