@uniformdev/mesh-sdk 19.187.0 → 19.190.0

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 CHANGED
@@ -112,6 +112,7 @@ interface paths$1 {
112
112
  url: string;
113
113
  };
114
114
  };
115
+ embeddedEditor?: string;
115
116
  };
116
117
  };
117
118
  badgeIconUrl?: string;
@@ -288,6 +289,7 @@ interface paths$1 {
288
289
  url: string;
289
290
  };
290
291
  };
292
+ embeddedEditor?: string;
291
293
  };
292
294
  };
293
295
  badgeIconUrl?: string;
@@ -463,6 +465,7 @@ interface paths$1 {
463
465
  url: string;
464
466
  };
465
467
  };
468
+ embeddedEditor?: string;
466
469
  };
467
470
  };
468
471
  badgeIconUrl?: string;
@@ -886,6 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
886
889
  url: string;
887
890
  };
888
891
  };
892
+ embeddedEditor?: string;
889
893
  };
890
894
  };
891
895
  badgeIconUrl?: string;
@@ -1089,7 +1093,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1089
1093
  * Defines methods used for interacting with a Mesh location
1090
1094
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1091
1095
  */
1092
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1096
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1093
1097
  interface MeshContextData {
1094
1098
  locationKey: string;
1095
1099
  locationType: MeshLocationTypes;
@@ -1402,7 +1406,7 @@ type MeshLocationUserPermissions =
1402
1406
  /**
1403
1407
  * Known location types that can be passed to a mesh location
1404
1408
  */
1405
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1409
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1406
1410
  type SetValueOptions = ValidationResult;
1407
1411
  type SetValueMessage = {
1408
1412
  uniformMeshLocationValue: unknown;
@@ -1463,6 +1467,55 @@ type CanvasEditorToolsData = {
1463
1467
  });
1464
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1465
1469
 
1470
+ /**
1471
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1472
+ * And only available for internal use.
1473
+ */
1474
+ type EmbeddedEditorLocationValue<TResolvedData = unknown> = {
1475
+ /**
1476
+ * The resolved data for the data resource.
1477
+ */
1478
+ resolvedData: TResolvedData | undefined;
1479
+ /**
1480
+ * The variables for the data resource. Contains things like entry Id. Can be undefined for empty data resources
1481
+ */
1482
+ dataResourceVariables: DataResourceVariables | undefined;
1483
+ /**
1484
+ * The JSON pointer to the data resource. If Embedded Editor is triggered from the bound value,
1485
+ * the pointer is provided to for example focus on particular field
1486
+ */
1487
+ jsonPointer?: string;
1488
+ };
1489
+ /**
1490
+ * @deprecated Alpha version of the EmbeddedEditor location. This location is not yet available for use in the Mesh SDK.
1491
+ * And only available for internal use.
1492
+ */
1493
+ type EmbeddedEditorLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1494
+ /**
1495
+ * Contains useful info like archetype or default content type filters
1496
+ */
1497
+ dataType: DataType;
1498
+ /**
1499
+ * The current data resource's data source. NOTE: param and header values are not available in this context.
1500
+ */
1501
+ dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1506
+ }, TIntegrationConfiguration>;
1507
+ /**
1508
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1509
+ *
1510
+ * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
+ */
1512
+ type EmbeddedEditorLocationSetValue = DataResourceVariables;
1513
+ /**
1514
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1515
+ * And only available for internal use.
1516
+ */
1517
+ type EmbeddedEditorLocation = MeshLocationCore<EmbeddedEditorLocationValue, EmbeddedEditorLocationMetadata, EmbeddedEditorLocationSetValue, 'embeddedEditor'> & GetDataResourceLocation;
1518
+
1466
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1467
1520
  /** The Uniform project ID */
1468
1521
  componentDefinition: ComponentDefinition;
@@ -1572,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1572
1625
  */
1573
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1574
1627
 
1575
- 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 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 MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
1628
+ 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 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 MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
package/dist/index.d.ts CHANGED
@@ -112,6 +112,7 @@ interface paths$1 {
112
112
  url: string;
113
113
  };
114
114
  };
115
+ embeddedEditor?: string;
115
116
  };
116
117
  };
117
118
  badgeIconUrl?: string;
@@ -288,6 +289,7 @@ interface paths$1 {
288
289
  url: string;
289
290
  };
290
291
  };
292
+ embeddedEditor?: string;
291
293
  };
292
294
  };
293
295
  badgeIconUrl?: string;
@@ -463,6 +465,7 @@ interface paths$1 {
463
465
  url: string;
464
466
  };
465
467
  };
468
+ embeddedEditor?: string;
466
469
  };
467
470
  };
468
471
  badgeIconUrl?: string;
@@ -886,6 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
886
889
  url: string;
887
890
  };
888
891
  };
892
+ embeddedEditor?: string;
889
893
  };
890
894
  };
891
895
  badgeIconUrl?: string;
@@ -1089,7 +1093,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1089
1093
  * Defines methods used for interacting with a Mesh location
1090
1094
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1091
1095
  */
1092
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1096
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1093
1097
  interface MeshContextData {
1094
1098
  locationKey: string;
1095
1099
  locationType: MeshLocationTypes;
@@ -1402,7 +1406,7 @@ type MeshLocationUserPermissions =
1402
1406
  /**
1403
1407
  * Known location types that can be passed to a mesh location
1404
1408
  */
1405
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1409
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1406
1410
  type SetValueOptions = ValidationResult;
1407
1411
  type SetValueMessage = {
1408
1412
  uniformMeshLocationValue: unknown;
@@ -1463,6 +1467,55 @@ type CanvasEditorToolsData = {
1463
1467
  });
1464
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1465
1469
 
1470
+ /**
1471
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1472
+ * And only available for internal use.
1473
+ */
1474
+ type EmbeddedEditorLocationValue<TResolvedData = unknown> = {
1475
+ /**
1476
+ * The resolved data for the data resource.
1477
+ */
1478
+ resolvedData: TResolvedData | undefined;
1479
+ /**
1480
+ * The variables for the data resource. Contains things like entry Id. Can be undefined for empty data resources
1481
+ */
1482
+ dataResourceVariables: DataResourceVariables | undefined;
1483
+ /**
1484
+ * The JSON pointer to the data resource. If Embedded Editor is triggered from the bound value,
1485
+ * the pointer is provided to for example focus on particular field
1486
+ */
1487
+ jsonPointer?: string;
1488
+ };
1489
+ /**
1490
+ * @deprecated Alpha version of the EmbeddedEditor location. This location is not yet available for use in the Mesh SDK.
1491
+ * And only available for internal use.
1492
+ */
1493
+ type EmbeddedEditorLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1494
+ /**
1495
+ * Contains useful info like archetype or default content type filters
1496
+ */
1497
+ dataType: DataType;
1498
+ /**
1499
+ * The current data resource's data source. NOTE: param and header values are not available in this context.
1500
+ */
1501
+ dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1506
+ }, TIntegrationConfiguration>;
1507
+ /**
1508
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1509
+ *
1510
+ * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
+ */
1512
+ type EmbeddedEditorLocationSetValue = DataResourceVariables;
1513
+ /**
1514
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1515
+ * And only available for internal use.
1516
+ */
1517
+ type EmbeddedEditorLocation = MeshLocationCore<EmbeddedEditorLocationValue, EmbeddedEditorLocationMetadata, EmbeddedEditorLocationSetValue, 'embeddedEditor'> & GetDataResourceLocation;
1518
+
1466
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1467
1520
  /** The Uniform project ID */
1468
1521
  componentDefinition: ComponentDefinition;
@@ -1572,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1572
1625
  */
1573
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1574
1627
 
1575
- 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 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 MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
1628
+ 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 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 MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, hasPermissions, hasRole, initializeUniformMeshSDK };
package/dist/index.esm.js CHANGED
@@ -113,7 +113,7 @@ var getLogger = (prefix, debug) => {
113
113
  };
114
114
 
115
115
  // src/temp/version.ts
116
- var UNIFORM_MESH_SDK_VERSION = "19.187.0";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.190.0";
117
117
 
118
118
  // src/framepost/constants.ts
119
119
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.js CHANGED
@@ -152,7 +152,7 @@ var getLogger = (prefix, debug) => {
152
152
  };
153
153
 
154
154
  // src/temp/version.ts
155
- var UNIFORM_MESH_SDK_VERSION = "19.187.0";
155
+ var UNIFORM_MESH_SDK_VERSION = "19.190.0";
156
156
 
157
157
  // src/framepost/constants.ts
158
158
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.mjs CHANGED
@@ -113,7 +113,7 @@ var getLogger = (prefix, debug) => {
113
113
  };
114
114
 
115
115
  // src/temp/version.ts
116
- var UNIFORM_MESH_SDK_VERSION = "19.187.0";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.190.0";
117
117
 
118
118
  // src/framepost/constants.ts
119
119
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.187.0",
3
+ "version": "19.190.0",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@uniformdev/canvas": "19.187.0",
38
- "@uniformdev/context": "19.187.0",
39
- "@uniformdev/project-map": "19.187.0",
37
+ "@uniformdev/canvas": "19.190.0",
38
+ "@uniformdev/context": "19.190.0",
39
+ "@uniformdev/project-map": "19.190.0",
40
40
  "imagesloaded": "^5.0.0",
41
41
  "mitt": "^3.0.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/imagesloaded": "^4.1.2"
45
45
  },
46
- "gitHead": "9ccfdb652e2d67d66fe90e2df1845c3c2e3bee8b"
46
+ "gitHead": "8bfb11f83f7e3333b531435363d81f43a7dca5a9"
47
47
  }