@uniformdev/mesh-sdk 19.173.2-alpha.210 → 19.173.2-alpha.263

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,7 +112,7 @@ interface paths$1 {
112
112
  url: string;
113
113
  };
114
114
  };
115
- contextualEditing?: string;
115
+ embeddedEditor?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -289,7 +289,7 @@ interface paths$1 {
289
289
  url: string;
290
290
  };
291
291
  };
292
- contextualEditing?: string;
292
+ embeddedEditor?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -465,7 +465,7 @@ interface paths$1 {
465
465
  url: string;
466
466
  };
467
467
  };
468
- contextualEditing?: string;
468
+ embeddedEditor?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -889,7 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
889
889
  url: string;
890
890
  };
891
891
  };
892
- contextualEditing?: string;
892
+ embeddedEditor?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -1028,7 +1028,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
1028
1028
  dataConnector: DataConnectorInfo;
1029
1029
  /** Current dynamic inputs that are configured on the composition (if any). */
1030
1030
  dynamicInputs: DynamicInputs;
1031
- /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly) */
1031
+ /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly via providing "undefined") */
1032
1032
  dataSourceVariant?: DataSourceVariantsKeys;
1033
1033
  }, TIntegrationConfiguration>;
1034
1034
  type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
@@ -1093,7 +1093,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1093
1093
  * Defines methods used for interacting with a Mesh location
1094
1094
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1095
1095
  */
1096
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | ContextualEditingLocation | 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;
1097
1097
  interface MeshContextData {
1098
1098
  locationKey: string;
1099
1099
  locationType: MeshLocationTypes;
@@ -1406,7 +1406,7 @@ type MeshLocationUserPermissions =
1406
1406
  /**
1407
1407
  * Known location types that can be passed to a mesh location
1408
1408
  */
1409
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'contextualEditing' | 'canvasEditorTools' | 'aiMetadata';
1409
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1410
1410
  type SetValueOptions = ValidationResult;
1411
1411
  type SetValueMessage = {
1412
1412
  uniformMeshLocationValue: unknown;
@@ -1467,18 +1467,54 @@ type CanvasEditorToolsData = {
1467
1467
  });
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
- type ContextualEditingLocationValue = Record<string, string>;
1471
- type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1472
- resolvedData: any;
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
+ */
1473
1497
  dataType: DataType;
1474
- /** The data type's archetype value. */
1475
- archetype: string;
1476
1498
  /**
1477
1499
  * The current data resource's data source. NOTE: param and header values are not available in this context.
1478
1500
  */
1479
1501
  dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1480
1506
  }, TIntegrationConfiguration>;
1481
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationValue, 'contextualEditing'> & GetDataResourceLocation;
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;
1482
1518
 
1483
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1484
1520
  /** The Uniform project ID */
@@ -1589,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1589
1625
  */
1590
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1591
1627
 
1592
- 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationValue, 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,7 +112,7 @@ interface paths$1 {
112
112
  url: string;
113
113
  };
114
114
  };
115
- contextualEditing?: string;
115
+ embeddedEditor?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -289,7 +289,7 @@ interface paths$1 {
289
289
  url: string;
290
290
  };
291
291
  };
292
- contextualEditing?: string;
292
+ embeddedEditor?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -465,7 +465,7 @@ interface paths$1 {
465
465
  url: string;
466
466
  };
467
467
  };
468
- contextualEditing?: string;
468
+ embeddedEditor?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -889,7 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
889
889
  url: string;
890
890
  };
891
891
  };
892
- contextualEditing?: string;
892
+ embeddedEditor?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -1028,7 +1028,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
1028
1028
  dataConnector: DataConnectorInfo;
1029
1029
  /** Current dynamic inputs that are configured on the composition (if any). */
1030
1030
  dynamicInputs: DynamicInputs;
1031
- /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly) */
1031
+ /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly via providing "undefined") */
1032
1032
  dataSourceVariant?: DataSourceVariantsKeys;
1033
1033
  }, TIntegrationConfiguration>;
1034
1034
  type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
@@ -1093,7 +1093,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1093
1093
  * Defines methods used for interacting with a Mesh location
1094
1094
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1095
1095
  */
1096
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | ContextualEditingLocation | 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;
1097
1097
  interface MeshContextData {
1098
1098
  locationKey: string;
1099
1099
  locationType: MeshLocationTypes;
@@ -1406,7 +1406,7 @@ type MeshLocationUserPermissions =
1406
1406
  /**
1407
1407
  * Known location types that can be passed to a mesh location
1408
1408
  */
1409
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'contextualEditing' | 'canvasEditorTools' | 'aiMetadata';
1409
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1410
1410
  type SetValueOptions = ValidationResult;
1411
1411
  type SetValueMessage = {
1412
1412
  uniformMeshLocationValue: unknown;
@@ -1467,18 +1467,54 @@ type CanvasEditorToolsData = {
1467
1467
  });
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
- type ContextualEditingLocationValue = Record<string, string>;
1471
- type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1472
- resolvedData: any;
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
+ */
1473
1497
  dataType: DataType;
1474
- /** The data type's archetype value. */
1475
- archetype: string;
1476
1498
  /**
1477
1499
  * The current data resource's data source. NOTE: param and header values are not available in this context.
1478
1500
  */
1479
1501
  dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1480
1506
  }, TIntegrationConfiguration>;
1481
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationValue, 'contextualEditing'> & GetDataResourceLocation;
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;
1482
1518
 
1483
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1484
1520
  /** The Uniform project ID */
@@ -1589,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1589
1625
  */
1590
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1591
1627
 
1592
- 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationValue, 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.186.3";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.188.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.186.3";
155
+ var UNIFORM_MESH_SDK_VERSION = "19.188.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.186.3";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.188.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.173.2-alpha.210+4f0f6ff104",
3
+ "version": "19.173.2-alpha.263+b8103d5c87",
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.173.2-alpha.210+4f0f6ff104",
38
- "@uniformdev/context": "19.173.2-alpha.210+4f0f6ff104",
39
- "@uniformdev/project-map": "19.173.2-alpha.210+4f0f6ff104",
37
+ "@uniformdev/canvas": "19.173.2-alpha.263+b8103d5c87",
38
+ "@uniformdev/context": "19.173.2-alpha.263+b8103d5c87",
39
+ "@uniformdev/project-map": "19.173.2-alpha.263+b8103d5c87",
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": "4f0f6ff104f46349c338fde461f063f22f04ce0e"
46
+ "gitHead": "b8103d5c87c294701720036e098accc96202c7e2"
47
47
  }