@uniformdev/mesh-sdk 20.3.1 → 20.4.1-alpha.15

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
@@ -65,7 +65,7 @@ interface paths$1 {
65
65
  };
66
66
  };
67
67
  canvas?: {
68
- parameterTypes: {
68
+ parameterTypes?: {
69
69
  type: string;
70
70
  displayName: string;
71
71
  configureUrl?: string;
@@ -114,6 +114,15 @@ interface paths$1 {
114
114
  url: string;
115
115
  };
116
116
  };
117
+ personalization?: {
118
+ selectionAlgorithms?: {
119
+ [key: string]: {
120
+ displayName: string;
121
+ description?: string;
122
+ criteriaEditorUrl?: string;
123
+ };
124
+ };
125
+ };
117
126
  };
118
127
  dataConnectors?: {
119
128
  type: string;
@@ -309,7 +318,7 @@ interface paths$1 {
309
318
  };
310
319
  };
311
320
  canvas?: {
312
- parameterTypes: {
321
+ parameterTypes?: {
313
322
  type: string;
314
323
  displayName: string;
315
324
  configureUrl?: string;
@@ -358,6 +367,15 @@ interface paths$1 {
358
367
  url: string;
359
368
  };
360
369
  };
370
+ personalization?: {
371
+ selectionAlgorithms?: {
372
+ [key: string]: {
373
+ displayName: string;
374
+ description?: string;
375
+ criteriaEditorUrl?: string;
376
+ };
377
+ };
378
+ };
361
379
  };
362
380
  dataConnectors?: {
363
381
  type: string;
@@ -538,7 +556,7 @@ interface paths$1 {
538
556
  };
539
557
  };
540
558
  canvas?: {
541
- parameterTypes: {
559
+ parameterTypes?: {
542
560
  type: string;
543
561
  displayName: string;
544
562
  configureUrl?: string;
@@ -587,6 +605,15 @@ interface paths$1 {
587
605
  url: string;
588
606
  };
589
607
  };
608
+ personalization?: {
609
+ selectionAlgorithms?: {
610
+ [key: string]: {
611
+ displayName: string;
612
+ description?: string;
613
+ criteriaEditorUrl?: string;
614
+ };
615
+ };
616
+ };
590
617
  };
591
618
  dataConnectors?: {
592
619
  type: string;
@@ -1130,7 +1157,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1130
1157
  };
1131
1158
  };
1132
1159
  canvas?: {
1133
- parameterTypes: {
1160
+ parameterTypes?: {
1134
1161
  type: string;
1135
1162
  displayName: string;
1136
1163
  configureUrl?: string;
@@ -1174,6 +1201,15 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1174
1201
  url: string;
1175
1202
  };
1176
1203
  };
1204
+ personalization?: {
1205
+ selectionAlgorithms?: {
1206
+ [key: string]: {
1207
+ displayName: string;
1208
+ description?: string;
1209
+ criteriaEditorUrl?: string;
1210
+ };
1211
+ };
1212
+ };
1177
1213
  };
1178
1214
  dataConnectors?: {
1179
1215
  type: string;
@@ -1472,7 +1508,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1472
1508
  * Defines methods used for interacting with a Mesh location
1473
1509
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1474
1510
  */
1475
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1511
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue>;
1476
1512
  interface MeshContextData {
1477
1513
  locationKey: string;
1478
1514
  locationType: MeshLocationTypes;
@@ -1787,7 +1823,7 @@ type MeshLocationUserPermissions =
1787
1823
  /**
1788
1824
  * Known location types that can be passed to a mesh location
1789
1825
  */
1790
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1826
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1791
1827
  type SetValueOptions = ValidationResult;
1792
1828
  type SetValueMessage = {
1793
1829
  uniformMeshLocationValue: unknown;
@@ -1903,6 +1939,11 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1903
1939
  }, TIntegrationConfiguration>;
1904
1940
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1905
1941
 
1942
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1943
+ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1944
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1945
+ type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
1946
+
1906
1947
  interface SdkWindow {
1907
1948
  /** The current window object. */
1908
1949
  instance: Window;
@@ -2006,4 +2047,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2006
2047
  */
2007
2048
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2008
2049
 
2009
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type 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, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
2050
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
package/dist/index.d.ts CHANGED
@@ -65,7 +65,7 @@ interface paths$1 {
65
65
  };
66
66
  };
67
67
  canvas?: {
68
- parameterTypes: {
68
+ parameterTypes?: {
69
69
  type: string;
70
70
  displayName: string;
71
71
  configureUrl?: string;
@@ -114,6 +114,15 @@ interface paths$1 {
114
114
  url: string;
115
115
  };
116
116
  };
117
+ personalization?: {
118
+ selectionAlgorithms?: {
119
+ [key: string]: {
120
+ displayName: string;
121
+ description?: string;
122
+ criteriaEditorUrl?: string;
123
+ };
124
+ };
125
+ };
117
126
  };
118
127
  dataConnectors?: {
119
128
  type: string;
@@ -309,7 +318,7 @@ interface paths$1 {
309
318
  };
310
319
  };
311
320
  canvas?: {
312
- parameterTypes: {
321
+ parameterTypes?: {
313
322
  type: string;
314
323
  displayName: string;
315
324
  configureUrl?: string;
@@ -358,6 +367,15 @@ interface paths$1 {
358
367
  url: string;
359
368
  };
360
369
  };
370
+ personalization?: {
371
+ selectionAlgorithms?: {
372
+ [key: string]: {
373
+ displayName: string;
374
+ description?: string;
375
+ criteriaEditorUrl?: string;
376
+ };
377
+ };
378
+ };
361
379
  };
362
380
  dataConnectors?: {
363
381
  type: string;
@@ -538,7 +556,7 @@ interface paths$1 {
538
556
  };
539
557
  };
540
558
  canvas?: {
541
- parameterTypes: {
559
+ parameterTypes?: {
542
560
  type: string;
543
561
  displayName: string;
544
562
  configureUrl?: string;
@@ -587,6 +605,15 @@ interface paths$1 {
587
605
  url: string;
588
606
  };
589
607
  };
608
+ personalization?: {
609
+ selectionAlgorithms?: {
610
+ [key: string]: {
611
+ displayName: string;
612
+ description?: string;
613
+ criteriaEditorUrl?: string;
614
+ };
615
+ };
616
+ };
590
617
  };
591
618
  dataConnectors?: {
592
619
  type: string;
@@ -1130,7 +1157,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1130
1157
  };
1131
1158
  };
1132
1159
  canvas?: {
1133
- parameterTypes: {
1160
+ parameterTypes?: {
1134
1161
  type: string;
1135
1162
  displayName: string;
1136
1163
  configureUrl?: string;
@@ -1174,6 +1201,15 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1174
1201
  url: string;
1175
1202
  };
1176
1203
  };
1204
+ personalization?: {
1205
+ selectionAlgorithms?: {
1206
+ [key: string]: {
1207
+ displayName: string;
1208
+ description?: string;
1209
+ criteriaEditorUrl?: string;
1210
+ };
1211
+ };
1212
+ };
1177
1213
  };
1178
1214
  dataConnectors?: {
1179
1215
  type: string;
@@ -1472,7 +1508,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1472
1508
  * Defines methods used for interacting with a Mesh location
1473
1509
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1474
1510
  */
1475
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1511
+ type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation | PersonalizationCriteriaLocation<TValue>;
1476
1512
  interface MeshContextData {
1477
1513
  locationKey: string;
1478
1514
  locationType: MeshLocationTypes;
@@ -1787,7 +1823,7 @@ type MeshLocationUserPermissions =
1787
1823
  /**
1788
1824
  * Known location types that can be passed to a mesh location
1789
1825
  */
1790
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1826
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1791
1827
  type SetValueOptions = ValidationResult;
1792
1828
  type SetValueMessage = {
1793
1829
  uniformMeshLocationValue: unknown;
@@ -1903,6 +1939,11 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1903
1939
  }, TIntegrationConfiguration>;
1904
1940
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1905
1941
 
1942
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1943
+ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1944
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1945
+ type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
1946
+
1906
1947
  interface SdkWindow {
1907
1948
  /** The current window object. */
1908
1949
  instance: Window;
@@ -2006,4 +2047,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2006
2047
  */
2007
2048
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2008
2049
 
2009
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type 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, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
2050
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, type CSSHeight, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DialogContext, type DialogOptions, type DialogParamValue, type DialogParams, type DialogResponseData, type DialogResponseHandler, type DialogResponseHandlers, type DialogType, type DynamicInput, type DynamicInputs, type EditConnectedDataMessage, type EditConnectedDataResponse, type EditConnectedDataResponseCancellationContext, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, IntegrationDefinitionClient, type IntegrationDefinitionDeleteParameters, type IntegrationDefinitionGetParameters, type IntegrationDefinitionGetResponse, type IntegrationDefinitionPutParameters, type IntegrationDefinitionPutResponse, IntegrationInstallationClient, type IntegrationInstallationDeleteParameters, type IntegrationInstallationGetParameters, type IntegrationInstallationGetResponse, type IntegrationInstallationPutParameters, type LocationDialogResponse, type MeshContextData, type MeshLocation, type MeshLocationCore, type MeshLocationTypes, type MeshLocationUserPermissions, type MeshSDKEventInterface, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type PromptSettingsLocationMetadata, type SdkWindow, type SetLocationFunction, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
package/dist/index.esm.js CHANGED
@@ -131,7 +131,7 @@ var getLogger = (prefix, debug) => {
131
131
  };
132
132
 
133
133
  // src/temp/version.ts
134
- var UNIFORM_MESH_SDK_VERSION = "20.3.1";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.4.0";
135
135
 
136
136
  // src/framepost/constants.ts
137
137
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.js CHANGED
@@ -172,7 +172,7 @@ var getLogger = (prefix, debug) => {
172
172
  };
173
173
 
174
174
  // src/temp/version.ts
175
- var UNIFORM_MESH_SDK_VERSION = "20.3.1";
175
+ var UNIFORM_MESH_SDK_VERSION = "20.4.0";
176
176
 
177
177
  // src/framepost/constants.ts
178
178
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.mjs CHANGED
@@ -131,7 +131,7 @@ var getLogger = (prefix, debug) => {
131
131
  };
132
132
 
133
133
  // src/temp/version.ts
134
- var UNIFORM_MESH_SDK_VERSION = "20.3.1";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.4.0";
135
135
 
136
136
  // src/framepost/constants.ts
137
137
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "20.3.1",
3
+ "version": "20.4.1-alpha.15+73b27bfcce",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -34,10 +34,10 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@uniformdev/assets": "20.3.1",
38
- "@uniformdev/canvas": "20.3.1",
39
- "@uniformdev/context": "20.3.1",
40
- "@uniformdev/project-map": "20.3.1",
37
+ "@uniformdev/assets": "20.4.1-alpha.15+73b27bfcce",
38
+ "@uniformdev/canvas": "20.4.1-alpha.15+73b27bfcce",
39
+ "@uniformdev/context": "20.4.1-alpha.15+73b27bfcce",
40
+ "@uniformdev/project-map": "20.4.1-alpha.15+73b27bfcce",
41
41
  "imagesloaded": "^5.0.0",
42
42
  "mitt": "^3.0.1"
43
43
  },
@@ -45,5 +45,5 @@
45
45
  "@types/imagesloaded": "^4.1.2",
46
46
  "openai": "^4.58.2"
47
47
  },
48
- "gitHead": "4f5ad4dc937cd01f9f288d1d292bd4c7c226240b"
48
+ "gitHead": "73b27bfcce749c31e7ab50bdc9bb86ac1294903d"
49
49
  }