@uniformdev/mesh-sdk 19.173.2-alpha.258 → 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
@@ -92,7 +92,6 @@ interface paths$1 {
92
92
  displayName: string;
93
93
  dataSourceEditorUrl?: string;
94
94
  supportsUnpublishedData?: boolean;
95
- contextualEditing?: string;
96
95
  dataSourceEditorLocations?: {
97
96
  [key: string]: {
98
97
  url: string;
@@ -113,6 +112,7 @@ interface paths$1 {
113
112
  url: string;
114
113
  };
115
114
  };
115
+ embeddedEditor?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -269,7 +269,6 @@ interface paths$1 {
269
269
  displayName: string;
270
270
  dataSourceEditorUrl?: string;
271
271
  supportsUnpublishedData?: boolean;
272
- contextualEditing?: string;
273
272
  dataSourceEditorLocations?: {
274
273
  [key: string]: {
275
274
  url: string;
@@ -290,6 +289,7 @@ interface paths$1 {
290
289
  url: string;
291
290
  };
292
291
  };
292
+ embeddedEditor?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -445,7 +445,6 @@ interface paths$1 {
445
445
  displayName: string;
446
446
  dataSourceEditorUrl?: string;
447
447
  supportsUnpublishedData?: boolean;
448
- contextualEditing?: string;
449
448
  dataSourceEditorLocations?: {
450
449
  [key: string]: {
451
450
  url: string;
@@ -466,6 +465,7 @@ interface paths$1 {
466
465
  url: string;
467
466
  };
468
467
  };
468
+ embeddedEditor?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -869,7 +869,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
869
869
  displayName: string;
870
870
  dataSourceEditorUrl?: string;
871
871
  supportsUnpublishedData?: boolean;
872
- contextualEditing?: string;
873
872
  dataSourceEditorLocations?: {
874
873
  [key: string]: {
875
874
  url: string;
@@ -890,6 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
890
889
  url: string;
891
890
  };
892
891
  };
892
+ embeddedEditor?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -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;
@@ -1468,29 +1468,29 @@ type CanvasEditorToolsData = {
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
1470
  /**
1471
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1471
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1472
1472
  * And only available for internal use.
1473
1473
  */
1474
- type ContextualEditingLocationValue<TResolvedData = unknown> = {
1474
+ type EmbeddedEditorLocationValue<TResolvedData = unknown> = {
1475
1475
  /**
1476
1476
  * The resolved data for the data resource.
1477
1477
  */
1478
- resolvedData: TResolvedData;
1478
+ resolvedData: TResolvedData | undefined;
1479
1479
  /**
1480
- * The variables for the data resource. Contains things like entry Id
1480
+ * The variables for the data resource. Contains things like entry Id. Can be undefined for empty data resources
1481
1481
  */
1482
- dataResourceVariables: DataResourceVariables;
1482
+ dataResourceVariables: DataResourceVariables | undefined;
1483
1483
  /**
1484
- * The JSON pointer to the data resource. If contextual editing is triggered from the bound value,
1484
+ * The JSON pointer to the data resource. If Embedded Editor is triggered from the bound value,
1485
1485
  * the pointer is provided to for example focus on particular field
1486
1486
  */
1487
1487
  jsonPointer?: string;
1488
1488
  };
1489
1489
  /**
1490
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1490
+ * @deprecated Alpha version of the EmbeddedEditor location. This location is not yet available for use in the Mesh SDK.
1491
1491
  * And only available for internal use.
1492
1492
  */
1493
- type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1493
+ type EmbeddedEditorLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1494
1494
  /**
1495
1495
  * Contains useful info like archetype or default content type filters
1496
1496
  */
@@ -1505,16 +1505,16 @@ type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = Co
1505
1505
  actionType: 'edit' | 'create';
1506
1506
  }, TIntegrationConfiguration>;
1507
1507
  /**
1508
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1508
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1509
1509
  *
1510
1510
  * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
1511
  */
1512
- type ContextualEditingLocationSetValue = DataResourceVariables;
1512
+ type EmbeddedEditorLocationSetValue = DataResourceVariables;
1513
1513
  /**
1514
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1514
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1515
1515
  * And only available for internal use.
1516
1516
  */
1517
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationSetValue, 'contextualEditing'> & GetDataResourceLocation;
1517
+ type EmbeddedEditorLocation = MeshLocationCore<EmbeddedEditorLocationValue, EmbeddedEditorLocationMetadata, EmbeddedEditorLocationSetValue, 'embeddedEditor'> & GetDataResourceLocation;
1518
1518
 
1519
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1520
1520
  /** The Uniform project ID */
@@ -1625,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1625
1625
  */
1626
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1627
1627
 
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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationSetValue, 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
@@ -92,7 +92,6 @@ interface paths$1 {
92
92
  displayName: string;
93
93
  dataSourceEditorUrl?: string;
94
94
  supportsUnpublishedData?: boolean;
95
- contextualEditing?: string;
96
95
  dataSourceEditorLocations?: {
97
96
  [key: string]: {
98
97
  url: string;
@@ -113,6 +112,7 @@ interface paths$1 {
113
112
  url: string;
114
113
  };
115
114
  };
115
+ embeddedEditor?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -269,7 +269,6 @@ interface paths$1 {
269
269
  displayName: string;
270
270
  dataSourceEditorUrl?: string;
271
271
  supportsUnpublishedData?: boolean;
272
- contextualEditing?: string;
273
272
  dataSourceEditorLocations?: {
274
273
  [key: string]: {
275
274
  url: string;
@@ -290,6 +289,7 @@ interface paths$1 {
290
289
  url: string;
291
290
  };
292
291
  };
292
+ embeddedEditor?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -445,7 +445,6 @@ interface paths$1 {
445
445
  displayName: string;
446
446
  dataSourceEditorUrl?: string;
447
447
  supportsUnpublishedData?: boolean;
448
- contextualEditing?: string;
449
448
  dataSourceEditorLocations?: {
450
449
  [key: string]: {
451
450
  url: string;
@@ -466,6 +465,7 @@ interface paths$1 {
466
465
  url: string;
467
466
  };
468
467
  };
468
+ embeddedEditor?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -869,7 +869,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
869
869
  displayName: string;
870
870
  dataSourceEditorUrl?: string;
871
871
  supportsUnpublishedData?: boolean;
872
- contextualEditing?: string;
873
872
  dataSourceEditorLocations?: {
874
873
  [key: string]: {
875
874
  url: string;
@@ -890,6 +889,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
890
889
  url: string;
891
890
  };
892
891
  };
892
+ embeddedEditor?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -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;
@@ -1468,29 +1468,29 @@ type CanvasEditorToolsData = {
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
1470
  /**
1471
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1471
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1472
1472
  * And only available for internal use.
1473
1473
  */
1474
- type ContextualEditingLocationValue<TResolvedData = unknown> = {
1474
+ type EmbeddedEditorLocationValue<TResolvedData = unknown> = {
1475
1475
  /**
1476
1476
  * The resolved data for the data resource.
1477
1477
  */
1478
- resolvedData: TResolvedData;
1478
+ resolvedData: TResolvedData | undefined;
1479
1479
  /**
1480
- * The variables for the data resource. Contains things like entry Id
1480
+ * The variables for the data resource. Contains things like entry Id. Can be undefined for empty data resources
1481
1481
  */
1482
- dataResourceVariables: DataResourceVariables;
1482
+ dataResourceVariables: DataResourceVariables | undefined;
1483
1483
  /**
1484
- * The JSON pointer to the data resource. If contextual editing is triggered from the bound value,
1484
+ * The JSON pointer to the data resource. If Embedded Editor is triggered from the bound value,
1485
1485
  * the pointer is provided to for example focus on particular field
1486
1486
  */
1487
1487
  jsonPointer?: string;
1488
1488
  };
1489
1489
  /**
1490
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1490
+ * @deprecated Alpha version of the EmbeddedEditor location. This location is not yet available for use in the Mesh SDK.
1491
1491
  * And only available for internal use.
1492
1492
  */
1493
- type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1493
+ type EmbeddedEditorLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1494
1494
  /**
1495
1495
  * Contains useful info like archetype or default content type filters
1496
1496
  */
@@ -1505,16 +1505,16 @@ type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = Co
1505
1505
  actionType: 'edit' | 'create';
1506
1506
  }, TIntegrationConfiguration>;
1507
1507
  /**
1508
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1508
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1509
1509
  *
1510
1510
  * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
1511
  */
1512
- type ContextualEditingLocationSetValue = DataResourceVariables;
1512
+ type EmbeddedEditorLocationSetValue = DataResourceVariables;
1513
1513
  /**
1514
- * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1514
+ * @deprecated Alpha version of the Embedded Editor location. This location is not yet available for use in the Mesh SDK.
1515
1515
  * And only available for internal use.
1516
1516
  */
1517
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationSetValue, 'contextualEditing'> & GetDataResourceLocation;
1517
+ type EmbeddedEditorLocation = MeshLocationCore<EmbeddedEditorLocationValue, EmbeddedEditorLocationMetadata, EmbeddedEditorLocationSetValue, 'embeddedEditor'> & GetDataResourceLocation;
1518
1518
 
1519
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1520
1520
  /** The Uniform project ID */
@@ -1625,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1625
1625
  */
1626
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1627
1627
 
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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationSetValue, 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.173.2-alpha.258+e8775b83de",
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.258+e8775b83de",
38
- "@uniformdev/context": "19.173.2-alpha.258+e8775b83de",
39
- "@uniformdev/project-map": "19.173.2-alpha.258+e8775b83de",
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": "e8775b83dec606ce6e2198182152d8b386e15f94"
46
+ "gitHead": "b8103d5c87c294701720036e098accc96202c7e2"
47
47
  }