@uniformdev/mesh-sdk 20.6.2-alpha.11 → 20.7.1-alpha.4

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,15 +114,6 @@ 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
- };
126
117
  };
127
118
  dataConnectors?: {
128
119
  type: string;
@@ -318,7 +309,7 @@ interface paths$1 {
318
309
  };
319
310
  };
320
311
  canvas?: {
321
- parameterTypes?: {
312
+ parameterTypes: {
322
313
  type: string;
323
314
  displayName: string;
324
315
  configureUrl?: string;
@@ -367,15 +358,6 @@ interface paths$1 {
367
358
  url: string;
368
359
  };
369
360
  };
370
- personalization?: {
371
- selectionAlgorithms?: {
372
- [key: string]: {
373
- displayName: string;
374
- description?: string;
375
- criteriaEditorUrl?: string;
376
- };
377
- };
378
- };
379
361
  };
380
362
  dataConnectors?: {
381
363
  type: string;
@@ -556,7 +538,7 @@ interface paths$1 {
556
538
  };
557
539
  };
558
540
  canvas?: {
559
- parameterTypes?: {
541
+ parameterTypes: {
560
542
  type: string;
561
543
  displayName: string;
562
544
  configureUrl?: string;
@@ -605,15 +587,6 @@ interface paths$1 {
605
587
  url: string;
606
588
  };
607
589
  };
608
- personalization?: {
609
- selectionAlgorithms?: {
610
- [key: string]: {
611
- displayName: string;
612
- description?: string;
613
- criteriaEditorUrl?: string;
614
- };
615
- };
616
- };
617
590
  };
618
591
  dataConnectors?: {
619
592
  type: string;
@@ -1157,7 +1130,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1157
1130
  };
1158
1131
  };
1159
1132
  canvas?: {
1160
- parameterTypes?: {
1133
+ parameterTypes: {
1161
1134
  type: string;
1162
1135
  displayName: string;
1163
1136
  configureUrl?: string;
@@ -1201,15 +1174,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1201
1174
  url: string;
1202
1175
  };
1203
1176
  };
1204
- personalization?: {
1205
- selectionAlgorithms?: {
1206
- [key: string]: {
1207
- displayName: string;
1208
- description?: string;
1209
- criteriaEditorUrl?: string;
1210
- };
1211
- };
1212
- };
1213
1177
  };
1214
1178
  dataConnectors?: {
1215
1179
  type: string;
@@ -1513,7 +1477,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1513
1477
  * Defines methods used for interacting with a Mesh location
1514
1478
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1515
1479
  */
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>;
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;
1517
1481
  interface MeshContextData {
1518
1482
  locationKey: string;
1519
1483
  locationType: MeshLocationTypes;
@@ -1828,7 +1792,7 @@ type MeshLocationUserPermissions =
1828
1792
  /**
1829
1793
  * Known location types that can be passed to a mesh location
1830
1794
  */
1831
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1795
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1832
1796
  type SetValueOptions = ValidationResult;
1833
1797
  type SetValueMessage = {
1834
1798
  uniformMeshLocationValue: unknown;
@@ -1944,11 +1908,6 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1944
1908
  }, TIntegrationConfiguration>;
1945
1909
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1946
1910
 
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
-
1952
1911
  interface SdkWindow {
1953
1912
  /** The current window object. */
1954
1913
  instance: Window;
@@ -2052,4 +2011,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2052
2011
  */
2053
2012
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2054
2013
 
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 };
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 };
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,15 +114,6 @@ 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
- };
126
117
  };
127
118
  dataConnectors?: {
128
119
  type: string;
@@ -318,7 +309,7 @@ interface paths$1 {
318
309
  };
319
310
  };
320
311
  canvas?: {
321
- parameterTypes?: {
312
+ parameterTypes: {
322
313
  type: string;
323
314
  displayName: string;
324
315
  configureUrl?: string;
@@ -367,15 +358,6 @@ interface paths$1 {
367
358
  url: string;
368
359
  };
369
360
  };
370
- personalization?: {
371
- selectionAlgorithms?: {
372
- [key: string]: {
373
- displayName: string;
374
- description?: string;
375
- criteriaEditorUrl?: string;
376
- };
377
- };
378
- };
379
361
  };
380
362
  dataConnectors?: {
381
363
  type: string;
@@ -556,7 +538,7 @@ interface paths$1 {
556
538
  };
557
539
  };
558
540
  canvas?: {
559
- parameterTypes?: {
541
+ parameterTypes: {
560
542
  type: string;
561
543
  displayName: string;
562
544
  configureUrl?: string;
@@ -605,15 +587,6 @@ interface paths$1 {
605
587
  url: string;
606
588
  };
607
589
  };
608
- personalization?: {
609
- selectionAlgorithms?: {
610
- [key: string]: {
611
- displayName: string;
612
- description?: string;
613
- criteriaEditorUrl?: string;
614
- };
615
- };
616
- };
617
590
  };
618
591
  dataConnectors?: {
619
592
  type: string;
@@ -1157,7 +1130,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1157
1130
  };
1158
1131
  };
1159
1132
  canvas?: {
1160
- parameterTypes?: {
1133
+ parameterTypes: {
1161
1134
  type: string;
1162
1135
  displayName: string;
1163
1136
  configureUrl?: string;
@@ -1201,15 +1174,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1201
1174
  url: string;
1202
1175
  };
1203
1176
  };
1204
- personalization?: {
1205
- selectionAlgorithms?: {
1206
- [key: string]: {
1207
- displayName: string;
1208
- description?: string;
1209
- criteriaEditorUrl?: string;
1210
- };
1211
- };
1212
- };
1213
1177
  };
1214
1178
  dataConnectors?: {
1215
1179
  type: string;
@@ -1513,7 +1477,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1513
1477
  * Defines methods used for interacting with a Mesh location
1514
1478
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1515
1479
  */
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>;
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;
1517
1481
  interface MeshContextData {
1518
1482
  locationKey: string;
1519
1483
  locationType: MeshLocationTypes;
@@ -1828,7 +1792,7 @@ type MeshLocationUserPermissions =
1828
1792
  /**
1829
1793
  * Known location types that can be passed to a mesh location
1830
1794
  */
1831
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria';
1795
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata';
1832
1796
  type SetValueOptions = ValidationResult;
1833
1797
  type SetValueMessage = {
1834
1798
  uniformMeshLocationValue: unknown;
@@ -1944,11 +1908,6 @@ type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = Comm
1944
1908
  }, TIntegrationConfiguration>;
1945
1909
  type ParamTypeConfigLocation<TParamValue = unknown, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeConfigLocationMetadata<TIntegrationConfiguration>, TParamValue, 'paramTypeConfig'>;
1946
1910
 
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
-
1952
1911
  interface SdkWindow {
1953
1912
  /** The current window object. */
1954
1913
  instance: Window;
@@ -2052,4 +2011,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2052
2011
  */
2053
2012
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2054
2013
 
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 };
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 };
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.6.1";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.7.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.6.1";
175
+ var UNIFORM_MESH_SDK_VERSION = "20.7.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.6.1";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.7.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.6.2-alpha.11+af78064791",
3
+ "version": "20.7.1-alpha.4+20185a97ff",
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.6.2-alpha.11+af78064791",
38
- "@uniformdev/canvas": "20.6.2-alpha.11+af78064791",
39
- "@uniformdev/context": "20.6.2-alpha.11+af78064791",
40
- "@uniformdev/project-map": "20.6.2-alpha.11+af78064791",
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",
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": "af78064791c47044f8ba447bbe1221f672f6de3e"
48
+ "gitHead": "20185a97ff6c2de2f871223af12d73583fe300af"
49
49
  }