@uniformdev/mesh-sdk 20.12.1-alpha.26 → 20.12.1-alpha.28
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 +29 -5
- package/dist/index.d.ts +29 -5
- 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
|
@@ -249,6 +249,12 @@ interface paths$1 {
|
|
|
249
249
|
url: string;
|
|
250
250
|
iconUrl?: string;
|
|
251
251
|
}[];
|
|
252
|
+
projectTools?: {
|
|
253
|
+
id: string;
|
|
254
|
+
name: string;
|
|
255
|
+
url: string;
|
|
256
|
+
iconUrl?: string;
|
|
257
|
+
}[];
|
|
252
258
|
};
|
|
253
259
|
unstable_prompts?: {
|
|
254
260
|
/** Format: uuid */
|
|
@@ -509,6 +515,12 @@ interface paths$1 {
|
|
|
509
515
|
url: string;
|
|
510
516
|
iconUrl?: string;
|
|
511
517
|
}[];
|
|
518
|
+
projectTools?: {
|
|
519
|
+
id: string;
|
|
520
|
+
name: string;
|
|
521
|
+
url: string;
|
|
522
|
+
iconUrl?: string;
|
|
523
|
+
}[];
|
|
512
524
|
};
|
|
513
525
|
unstable_prompts?: {
|
|
514
526
|
/** Format: uuid */
|
|
@@ -754,6 +766,12 @@ interface paths$1 {
|
|
|
754
766
|
url: string;
|
|
755
767
|
iconUrl?: string;
|
|
756
768
|
}[];
|
|
769
|
+
projectTools?: {
|
|
770
|
+
id: string;
|
|
771
|
+
name: string;
|
|
772
|
+
url: string;
|
|
773
|
+
iconUrl?: string;
|
|
774
|
+
}[];
|
|
757
775
|
};
|
|
758
776
|
unstable_prompts?: {
|
|
759
777
|
/** Format: uuid */
|
|
@@ -1348,6 +1366,12 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
1348
1366
|
url: string;
|
|
1349
1367
|
iconUrl?: string;
|
|
1350
1368
|
}[];
|
|
1369
|
+
projectTools?: {
|
|
1370
|
+
id: string;
|
|
1371
|
+
name: string;
|
|
1372
|
+
url: string;
|
|
1373
|
+
iconUrl?: string;
|
|
1374
|
+
}[];
|
|
1351
1375
|
};
|
|
1352
1376
|
unstable_prompts?: {
|
|
1353
1377
|
id: string;
|
|
@@ -1543,7 +1567,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
|
|
|
1543
1567
|
* Defines methods used for interacting with a Mesh location
|
|
1544
1568
|
* To receive useful typings, check the `type` property of the location to narrow the typing.
|
|
1545
1569
|
*/
|
|
1546
|
-
type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue> |
|
|
1570
|
+
type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue> | ProjectToolLocation<TValue>;
|
|
1547
1571
|
interface MeshContextData {
|
|
1548
1572
|
locationKey: string;
|
|
1549
1573
|
locationType: MeshLocationTypes;
|
|
@@ -1895,7 +1919,7 @@ type MeshLocationUserPermissions =
|
|
|
1895
1919
|
/**
|
|
1896
1920
|
* Known location types that can be passed to a mesh location
|
|
1897
1921
|
*/
|
|
1898
|
-
type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | '
|
|
1922
|
+
type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'projectTool';
|
|
1899
1923
|
type SetValueOptions = ValidationResult;
|
|
1900
1924
|
type SetValueMessage = {
|
|
1901
1925
|
uniformMeshLocationValue: unknown;
|
|
@@ -2015,8 +2039,8 @@ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown
|
|
|
2015
2039
|
/** @deprecated Experimental functionality is subject to change in minor versions. */
|
|
2016
2040
|
type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
|
|
2017
2041
|
|
|
2018
|
-
type
|
|
2019
|
-
type
|
|
2042
|
+
type ProjectToolLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
|
|
2043
|
+
type ProjectToolLocation<TTool, TIntegrationConfiguration = unknown> = MeshLocationCore<TTool, ProjectToolLocationMetadata<TIntegrationConfiguration>, TTool, 'projectTool'>;
|
|
2020
2044
|
|
|
2021
2045
|
interface SdkWindow {
|
|
2022
2046
|
/** The current window object. */
|
|
@@ -2121,4 +2145,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
|
|
|
2121
2145
|
*/
|
|
2122
2146
|
declare const hasRole: (role: string, user: UniformUser) => boolean;
|
|
2123
2147
|
|
|
2124
|
-
export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type
|
|
2148
|
+
export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
|
package/dist/index.d.ts
CHANGED
|
@@ -249,6 +249,12 @@ interface paths$1 {
|
|
|
249
249
|
url: string;
|
|
250
250
|
iconUrl?: string;
|
|
251
251
|
}[];
|
|
252
|
+
projectTools?: {
|
|
253
|
+
id: string;
|
|
254
|
+
name: string;
|
|
255
|
+
url: string;
|
|
256
|
+
iconUrl?: string;
|
|
257
|
+
}[];
|
|
252
258
|
};
|
|
253
259
|
unstable_prompts?: {
|
|
254
260
|
/** Format: uuid */
|
|
@@ -509,6 +515,12 @@ interface paths$1 {
|
|
|
509
515
|
url: string;
|
|
510
516
|
iconUrl?: string;
|
|
511
517
|
}[];
|
|
518
|
+
projectTools?: {
|
|
519
|
+
id: string;
|
|
520
|
+
name: string;
|
|
521
|
+
url: string;
|
|
522
|
+
iconUrl?: string;
|
|
523
|
+
}[];
|
|
512
524
|
};
|
|
513
525
|
unstable_prompts?: {
|
|
514
526
|
/** Format: uuid */
|
|
@@ -754,6 +766,12 @@ interface paths$1 {
|
|
|
754
766
|
url: string;
|
|
755
767
|
iconUrl?: string;
|
|
756
768
|
}[];
|
|
769
|
+
projectTools?: {
|
|
770
|
+
id: string;
|
|
771
|
+
name: string;
|
|
772
|
+
url: string;
|
|
773
|
+
iconUrl?: string;
|
|
774
|
+
}[];
|
|
757
775
|
};
|
|
758
776
|
unstable_prompts?: {
|
|
759
777
|
/** Format: uuid */
|
|
@@ -1348,6 +1366,12 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
1348
1366
|
url: string;
|
|
1349
1367
|
iconUrl?: string;
|
|
1350
1368
|
}[];
|
|
1369
|
+
projectTools?: {
|
|
1370
|
+
id: string;
|
|
1371
|
+
name: string;
|
|
1372
|
+
url: string;
|
|
1373
|
+
iconUrl?: string;
|
|
1374
|
+
}[];
|
|
1351
1375
|
};
|
|
1352
1376
|
unstable_prompts?: {
|
|
1353
1377
|
id: string;
|
|
@@ -1543,7 +1567,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
|
|
|
1543
1567
|
* Defines methods used for interacting with a Mesh location
|
|
1544
1568
|
* To receive useful typings, check the `type` property of the location to narrow the typing.
|
|
1545
1569
|
*/
|
|
1546
|
-
type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue> |
|
|
1570
|
+
type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue> | ProjectToolLocation<TValue>;
|
|
1547
1571
|
interface MeshContextData {
|
|
1548
1572
|
locationKey: string;
|
|
1549
1573
|
locationType: MeshLocationTypes;
|
|
@@ -1895,7 +1919,7 @@ type MeshLocationUserPermissions =
|
|
|
1895
1919
|
/**
|
|
1896
1920
|
* Known location types that can be passed to a mesh location
|
|
1897
1921
|
*/
|
|
1898
|
-
type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | '
|
|
1922
|
+
type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'projectTool';
|
|
1899
1923
|
type SetValueOptions = ValidationResult;
|
|
1900
1924
|
type SetValueMessage = {
|
|
1901
1925
|
uniformMeshLocationValue: unknown;
|
|
@@ -2015,8 +2039,8 @@ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown
|
|
|
2015
2039
|
/** @deprecated Experimental functionality is subject to change in minor versions. */
|
|
2016
2040
|
type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
|
|
2017
2041
|
|
|
2018
|
-
type
|
|
2019
|
-
type
|
|
2042
|
+
type ProjectToolLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
|
|
2043
|
+
type ProjectToolLocation<TTool, TIntegrationConfiguration = unknown> = MeshLocationCore<TTool, ProjectToolLocationMetadata<TIntegrationConfiguration>, TTool, 'projectTool'>;
|
|
2020
2044
|
|
|
2021
2045
|
interface SdkWindow {
|
|
2022
2046
|
/** The current window object. */
|
|
@@ -2121,4 +2145,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
|
|
|
2121
2145
|
*/
|
|
2122
2146
|
declare const hasRole: (role: string, user: UniformUser) => boolean;
|
|
2123
2147
|
|
|
2124
|
-
export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type
|
|
2148
|
+
export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
|
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.12.1-alpha.
|
|
3
|
+
"version": "20.12.1-alpha.28+28cc2dd35d",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@uniformdev/assets": "20.12.1-alpha.
|
|
38
|
-
"@uniformdev/canvas": "20.12.1-alpha.
|
|
39
|
-
"@uniformdev/context": "20.12.1-alpha.
|
|
40
|
-
"@uniformdev/project-map": "20.12.1-alpha.
|
|
37
|
+
"@uniformdev/assets": "20.12.1-alpha.28+28cc2dd35d",
|
|
38
|
+
"@uniformdev/canvas": "20.12.1-alpha.28+28cc2dd35d",
|
|
39
|
+
"@uniformdev/context": "20.12.1-alpha.28+28cc2dd35d",
|
|
40
|
+
"@uniformdev/project-map": "20.12.1-alpha.28+28cc2dd35d",
|
|
41
41
|
"imagesloaded": "^5.0.0",
|
|
42
42
|
"mitt": "^3.0.1"
|
|
43
43
|
},
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"@types/imagesloaded": "^4.1.2",
|
|
46
46
|
"openai": "4.94.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "28cc2dd35d9b1ec7c31e72bd0c562341765cef9d"
|
|
49
49
|
}
|