@uniformdev/mesh-sdk 20.7.1-alpha.4 → 20.8.2-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;
@@ -1477,7 +1513,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1477
1513
  * Defines methods used for interacting with a Mesh location
1478
1514
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1479
1515
  */
1480
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1516
+ 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>;
1481
1517
  interface MeshContextData {
1482
1518
  locationKey: string;
1483
1519
  locationType: MeshLocationTypes;
@@ -1792,7 +1828,7 @@ type MeshLocationUserPermissions =
1792
1828
  /**
1793
1829
  * Known location types that can be passed to a mesh location
1794
1830
  */
1795
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1831
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1796
1832
  type SetValueOptions = ValidationResult;
1797
1833
  type SetValueMessage = {
1798
1834
  uniformMeshLocationValue: unknown;
@@ -1908,6 +1944,11 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1908
1944
  }, TIntegrationConfiguration>;
1909
1945
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1910
1946
 
1947
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1948
+ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1949
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1950
+ type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
1951
+
1911
1952
  interface SdkWindow {
1912
1953
  /** The current window object. */
1913
1954
  instance: Window;
@@ -2011,4 +2052,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2011
2052
  */
2012
2053
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2013
2054
 
2014
- 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 };
2055
+ 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;
@@ -1477,7 +1513,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1477
1513
  * Defines methods used for interacting with a Mesh location
1478
1514
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1479
1515
  */
1480
- type MeshLocation<TValue = unknown, TSetValue = TValue> = ParamTypeLocation<TValue, unknown, TSetValue> | ParamTypeConfigLocation<TValue> | SettingsLocation<TValue> | AssetLibraryLocation | AssetParameterLocation | DataSourceLocation | DataTypeLocation | DataResourceLocation | CanvasEditorToolsLocation | EmbeddedEditorLocation | AIGenerateLocation<TValue> | AIPromptMetadataLocation;
1516
+ 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>;
1481
1517
  interface MeshContextData {
1482
1518
  locationKey: string;
1483
1519
  locationType: MeshLocationTypes;
@@ -1792,7 +1828,7 @@ type MeshLocationUserPermissions =
1792
1828
  /**
1793
1829
  * Known location types that can be passed to a mesh location
1794
1830
  */
1795
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1831
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1796
1832
  type SetValueOptions = ValidationResult;
1797
1833
  type SetValueMessage = {
1798
1834
  uniformMeshLocationValue: unknown;
@@ -1908,6 +1944,11 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1908
1944
  }, TIntegrationConfiguration>;
1909
1945
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1910
1946
 
1947
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1948
+ type PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1949
+ /** @deprecated Experimental functionality is subject to change in minor versions. */
1950
+ type PersonalizationCriteriaLocation<TCriteriaValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TCriteriaValue | undefined, PersonalizationCriteriaLocationMetadata<TIntegrationConfiguration>, TCriteriaValue, 'personalizationCriteria'>;
1951
+
1911
1952
  interface SdkWindow {
1912
1953
  /** The current window object. */
1913
1954
  instance: Window;
@@ -2011,4 +2052,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2011
2052
  */
2012
2053
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2013
2054
 
2014
- 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 };
2055
+ 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.7.0";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.8.1";
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.7.0";
175
+ var UNIFORM_MESH_SDK_VERSION = "20.8.1";
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.7.0";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.8.1";
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.7.1-alpha.4+20185a97ff",
3
+ "version": "20.8.2-alpha.15+b4a01d41ab",
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.7.1-alpha.4+20185a97ff",
38
- "@uniformdev/canvas": "20.7.1-alpha.4+20185a97ff",
39
- "@uniformdev/context": "20.7.1-alpha.4+20185a97ff",
40
- "@uniformdev/project-map": "20.7.1-alpha.4+20185a97ff",
37
+ "@uniformdev/assets": "20.8.2-alpha.15+b4a01d41ab",
38
+ "@uniformdev/canvas": "20.8.2-alpha.15+b4a01d41ab",
39
+ "@uniformdev/context": "20.8.2-alpha.15+b4a01d41ab",
40
+ "@uniformdev/project-map": "20.8.2-alpha.15+b4a01d41ab",
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": "20185a97ff6c2de2f871223af12d73583fe300af"
48
+ "gitHead": "b4a01d41abbf17cd016abbc04e9d849c56856c13"
49
49
  }