@uniformdev/mesh-sdk 19.152.2-alpha.9 → 19.153.1-alpha.6

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
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -68,23 +68,6 @@ interface paths$1 {
68
68
  /** @enum {string} */
69
69
  localizable?: "default-yes" | "default-no" | "yes" | "no";
70
70
  }[];
71
- editorTools?: {
72
- composition?: {
73
- url: string;
74
- };
75
- componentPattern?: {
76
- url: string;
77
- };
78
- compositionDefaults?: {
79
- url: string;
80
- };
81
- entry?: {
82
- url: string;
83
- };
84
- entryPattern?: {
85
- url: string;
86
- };
87
- };
88
71
  };
89
72
  dataConnectors?: {
90
73
  type: string;
@@ -237,23 +220,6 @@ interface paths$1 {
237
220
  /** @enum {string} */
238
221
  localizable?: "default-yes" | "default-no" | "yes" | "no";
239
222
  }[];
240
- editorTools?: {
241
- composition?: {
242
- url: string;
243
- };
244
- componentPattern?: {
245
- url: string;
246
- };
247
- compositionDefaults?: {
248
- url: string;
249
- };
250
- entry?: {
251
- url: string;
252
- };
253
- entryPattern?: {
254
- url: string;
255
- };
256
- };
257
223
  };
258
224
  dataConnectors?: {
259
225
  type: string;
@@ -405,23 +371,6 @@ interface paths$1 {
405
371
  /** @enum {string} */
406
372
  localizable?: "default-yes" | "default-no" | "yes" | "no";
407
373
  }[];
408
- editorTools?: {
409
- composition?: {
410
- url: string;
411
- };
412
- componentPattern?: {
413
- url: string;
414
- };
415
- compositionDefaults?: {
416
- url: string;
417
- };
418
- entry?: {
419
- url: string;
420
- };
421
- entryPattern?: {
422
- url: string;
423
- };
424
- };
425
374
  };
426
375
  dataConnectors?: {
427
376
  type: string;
@@ -821,23 +770,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
821
770
  renderableInPropertyPanel?: boolean | undefined;
822
771
  localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
823
772
  }[];
824
- editorTools?: {
825
- composition?: {
826
- url: string;
827
- } | undefined;
828
- componentPattern?: {
829
- url: string;
830
- } | undefined;
831
- compositionDefaults?: {
832
- url: string;
833
- } | undefined;
834
- entry?: {
835
- url: string;
836
- } | undefined;
837
- entryPattern?: {
838
- url: string;
839
- } | undefined;
840
- } | undefined;
841
773
  } | undefined;
842
774
  dataConnectors?: {
843
775
  type: string;
@@ -1039,20 +971,14 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
1039
971
  editConnectedData: Awaited<ReturnType<typeof connectToParent>>['parent']['editConnectedData'];
1040
972
  };
1041
973
 
1042
- type SettingsLocationMetadata = CommonMetadata & {
1043
- locales: {
1044
- locale: string;
1045
- displayName: string;
1046
- isDefault: boolean;
1047
- }[];
1048
- };
974
+ type SettingsLocationMetadata = CommonMetadata;
1049
975
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
1050
976
 
1051
977
  /**
1052
978
  * Defines methods used for interacting with a Mesh location
1053
979
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1054
980
  */
1055
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
981
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1056
982
  interface MeshContextData {
1057
983
  locationKey: string;
1058
984
  locationType: MeshLocationTypes;
@@ -1358,7 +1284,7 @@ type MeshLocationUserPermissions =
1358
1284
  /**
1359
1285
  * Known location types that can be passed to a mesh location
1360
1286
  */
1361
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1287
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'aiMetadata';
1362
1288
  type SetValueOptions = ValidationResult;
1363
1289
  type SetValueMessage = {
1364
1290
  uniformMeshLocationValue: unknown;
@@ -1397,30 +1323,6 @@ type PromptSettingsLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1397
1323
  type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetadata, TType, 'aiGenerate'>;
1398
1324
  type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
1399
1325
 
1400
- type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1401
- releaseId?: string;
1402
- state?: number;
1403
- locales: {
1404
- locale: string;
1405
- displayName: string;
1406
- isDefault: boolean;
1407
- }[];
1408
- }, TIntegrationConfiguration>;
1409
- type CanvasEditorToolsReferenceData = {
1410
- name: string;
1411
- };
1412
- type CanvasEditorToolsData = {
1413
- patternNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
1414
- entryNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
1415
- } & ({
1416
- rootEntity: RootComponentInstance;
1417
- type: 'composition';
1418
- } | {
1419
- rootEntity: EntryData;
1420
- type: 'entry';
1421
- });
1422
- type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1423
-
1424
1326
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1425
1327
  /** The Uniform project ID */
1426
1328
  componentDefinition: ComponentDefinition;
@@ -1530,4 +1432,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1530
1432
  */
1531
1433
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1532
1434
 
1533
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, 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 };
1435
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, 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 };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -68,23 +68,6 @@ interface paths$1 {
68
68
  /** @enum {string} */
69
69
  localizable?: "default-yes" | "default-no" | "yes" | "no";
70
70
  }[];
71
- editorTools?: {
72
- composition?: {
73
- url: string;
74
- };
75
- componentPattern?: {
76
- url: string;
77
- };
78
- compositionDefaults?: {
79
- url: string;
80
- };
81
- entry?: {
82
- url: string;
83
- };
84
- entryPattern?: {
85
- url: string;
86
- };
87
- };
88
71
  };
89
72
  dataConnectors?: {
90
73
  type: string;
@@ -237,23 +220,6 @@ interface paths$1 {
237
220
  /** @enum {string} */
238
221
  localizable?: "default-yes" | "default-no" | "yes" | "no";
239
222
  }[];
240
- editorTools?: {
241
- composition?: {
242
- url: string;
243
- };
244
- componentPattern?: {
245
- url: string;
246
- };
247
- compositionDefaults?: {
248
- url: string;
249
- };
250
- entry?: {
251
- url: string;
252
- };
253
- entryPattern?: {
254
- url: string;
255
- };
256
- };
257
223
  };
258
224
  dataConnectors?: {
259
225
  type: string;
@@ -405,23 +371,6 @@ interface paths$1 {
405
371
  /** @enum {string} */
406
372
  localizable?: "default-yes" | "default-no" | "yes" | "no";
407
373
  }[];
408
- editorTools?: {
409
- composition?: {
410
- url: string;
411
- };
412
- componentPattern?: {
413
- url: string;
414
- };
415
- compositionDefaults?: {
416
- url: string;
417
- };
418
- entry?: {
419
- url: string;
420
- };
421
- entryPattern?: {
422
- url: string;
423
- };
424
- };
425
374
  };
426
375
  dataConnectors?: {
427
376
  type: string;
@@ -821,23 +770,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
821
770
  renderableInPropertyPanel?: boolean | undefined;
822
771
  localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
823
772
  }[];
824
- editorTools?: {
825
- composition?: {
826
- url: string;
827
- } | undefined;
828
- componentPattern?: {
829
- url: string;
830
- } | undefined;
831
- compositionDefaults?: {
832
- url: string;
833
- } | undefined;
834
- entry?: {
835
- url: string;
836
- } | undefined;
837
- entryPattern?: {
838
- url: string;
839
- } | undefined;
840
- } | undefined;
841
773
  } | undefined;
842
774
  dataConnectors?: {
843
775
  type: string;
@@ -1039,20 +971,14 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
1039
971
  editConnectedData: Awaited<ReturnType<typeof connectToParent>>['parent']['editConnectedData'];
1040
972
  };
1041
973
 
1042
- type SettingsLocationMetadata = CommonMetadata & {
1043
- locales: {
1044
- locale: string;
1045
- displayName: string;
1046
- isDefault: boolean;
1047
- }[];
1048
- };
974
+ type SettingsLocationMetadata = CommonMetadata;
1049
975
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
1050
976
 
1051
977
  /**
1052
978
  * Defines methods used for interacting with a Mesh location
1053
979
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1054
980
  */
1055
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
981
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1056
982
  interface MeshContextData {
1057
983
  locationKey: string;
1058
984
  locationType: MeshLocationTypes;
@@ -1358,7 +1284,7 @@ type MeshLocationUserPermissions =
1358
1284
  /**
1359
1285
  * Known location types that can be passed to a mesh location
1360
1286
  */
1361
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'canvasEditorTools' | 'aiMetadata';
1287
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'aiMetadata';
1362
1288
  type SetValueOptions = ValidationResult;
1363
1289
  type SetValueMessage = {
1364
1290
  uniformMeshLocationValue: unknown;
@@ -1397,30 +1323,6 @@ type PromptSettingsLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1397
1323
  type AIGenerateLocation<TType> = MeshLocationCore<TType, AIGenerateLocationMetadata, TType, 'aiGenerate'>;
1398
1324
  type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, PromptSettingsLocationMetadata, Record<string, unknown>, 'aiMetadata'>;
1399
1325
 
1400
- type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1401
- releaseId?: string;
1402
- state?: number;
1403
- locales: {
1404
- locale: string;
1405
- displayName: string;
1406
- isDefault: boolean;
1407
- }[];
1408
- }, TIntegrationConfiguration>;
1409
- type CanvasEditorToolsReferenceData = {
1410
- name: string;
1411
- };
1412
- type CanvasEditorToolsData = {
1413
- patternNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
1414
- entryNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
1415
- } & ({
1416
- rootEntity: RootComponentInstance;
1417
- type: 'composition';
1418
- } | {
1419
- rootEntity: EntryData;
1420
- type: 'entry';
1421
- });
1422
- type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1423
-
1424
1326
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1425
1327
  /** The Uniform project ID */
1426
1328
  componentDefinition: ComponentDefinition;
@@ -1530,4 +1432,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1530
1432
  */
1531
1433
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1532
1434
 
1533
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, 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 };
1435
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.152.2-alpha.9+a99c710d2a",
3
+ "version": "19.153.1-alpha.6+2f1fec9a75",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -33,14 +33,14 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@uniformdev/canvas": "19.152.2-alpha.9+a99c710d2a",
37
- "@uniformdev/context": "19.152.2-alpha.9+a99c710d2a",
38
- "@uniformdev/project-map": "19.152.2-alpha.9+a99c710d2a",
36
+ "@uniformdev/canvas": "19.153.1-alpha.6+2f1fec9a75",
37
+ "@uniformdev/context": "19.153.1-alpha.6+2f1fec9a75",
38
+ "@uniformdev/project-map": "19.153.1-alpha.6+2f1fec9a75",
39
39
  "imagesloaded": "^5.0.0",
40
40
  "mitt": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/imagesloaded": "^4.1.2"
44
44
  },
45
- "gitHead": "a99c710d2aecec9e6d590301b75ef89d82da520c"
45
+ "gitHead": "2f1fec9a75a28564dcd4a019f348a3ba2a4c607b"
46
46
  }