@uniformdev/mesh-sdk 20.7.1-alpha.63 → 20.7.1-alpha.67

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/LICENSE.txt CHANGED
@@ -1,2 +1,2 @@
1
- © 2024 Uniform Systems, Inc. All Rights Reserved.
1
+ © 2025 Uniform Systems, Inc. All Rights Reserved.
2
2
  See details of Uniform Systems, Inc. Master Subscription Agreement here: https://uniform.dev/eula
package/dist/index.d.mts CHANGED
@@ -113,7 +113,13 @@ interface paths$1 {
113
113
  entryPattern?: {
114
114
  url: string;
115
115
  };
116
- };
116
+ } | {
117
+ id: string;
118
+ name: string;
119
+ url: string;
120
+ iconUrl?: string;
121
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
122
+ }[];
117
123
  personalization?: {
118
124
  selectionAlgorithms?: {
119
125
  [key: string]: {
@@ -255,6 +261,12 @@ interface paths$1 {
255
261
  url: string;
256
262
  iconUrl?: string;
257
263
  }[];
264
+ dashboardTools?: {
265
+ id: string;
266
+ name: string;
267
+ url: string;
268
+ iconUrl?: string;
269
+ }[];
258
270
  };
259
271
  unstable_prompts?: {
260
272
  /** Format: uuid */
@@ -379,7 +391,13 @@ interface paths$1 {
379
391
  entryPattern?: {
380
392
  url: string;
381
393
  };
382
- };
394
+ } | {
395
+ id: string;
396
+ name: string;
397
+ url: string;
398
+ iconUrl?: string;
399
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
400
+ }[];
383
401
  personalization?: {
384
402
  selectionAlgorithms?: {
385
403
  [key: string]: {
@@ -521,6 +539,12 @@ interface paths$1 {
521
539
  url: string;
522
540
  iconUrl?: string;
523
541
  }[];
542
+ dashboardTools?: {
543
+ id: string;
544
+ name: string;
545
+ url: string;
546
+ iconUrl?: string;
547
+ }[];
524
548
  };
525
549
  unstable_prompts?: {
526
550
  /** Format: uuid */
@@ -630,7 +654,13 @@ interface paths$1 {
630
654
  entryPattern?: {
631
655
  url: string;
632
656
  };
633
- };
657
+ } | {
658
+ id: string;
659
+ name: string;
660
+ url: string;
661
+ iconUrl?: string;
662
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
663
+ }[];
634
664
  personalization?: {
635
665
  selectionAlgorithms?: {
636
666
  [key: string]: {
@@ -772,6 +802,12 @@ interface paths$1 {
772
802
  url: string;
773
803
  iconUrl?: string;
774
804
  }[];
805
+ dashboardTools?: {
806
+ id: string;
807
+ name: string;
808
+ url: string;
809
+ iconUrl?: string;
810
+ }[];
775
811
  };
776
812
  unstable_prompts?: {
777
813
  /** Format: uuid */
@@ -1239,7 +1275,13 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1239
1275
  entryPattern?: {
1240
1276
  url: string;
1241
1277
  };
1242
- };
1278
+ } | {
1279
+ id: string;
1280
+ name: string;
1281
+ url: string;
1282
+ iconUrl?: string;
1283
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
1284
+ }[];
1243
1285
  personalization?: {
1244
1286
  selectionAlgorithms?: {
1245
1287
  [key: string]: {
@@ -1372,6 +1414,12 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1372
1414
  url: string;
1373
1415
  iconUrl?: string;
1374
1416
  }[];
1417
+ dashboardTools?: {
1418
+ id: string;
1419
+ name: string;
1420
+ url: string;
1421
+ iconUrl?: string;
1422
+ }[];
1375
1423
  };
1376
1424
  unstable_prompts?: {
1377
1425
  id: string;
@@ -1475,6 +1523,9 @@ type AssetParameterLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1475
1523
  type AssetLibraryLocation = MeshLocationCore<unknown, AssetLibraryLocationMetadata, unknown, 'assetLibrary'> & GetDataResourceLocation;
1476
1524
  type AssetParameterLocation = MeshLocationCore<AssetParamValue, AssetParameterLocationMetadata, AssetParamValue, 'assetParameter'> & GetDataResourceLocation;
1477
1525
 
1526
+ type DashboardToolLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1527
+ type DashboardToolLocation<TTool, TIntegrationConfiguration = unknown> = MeshLocationCore<TTool, DashboardToolLocationMetadata<TIntegrationConfiguration>, TTool, 'dashboardTool'>;
1528
+
1478
1529
  type DataTypeLocationValue = Pick<DataType, 'body' | 'method' | 'path' | 'custom' | 'headers' | 'parameters' | 'variables'>;
1479
1530
  type DataConnectorInfo = {
1480
1531
  type: string;
@@ -1567,7 +1618,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1567
1618
  * Defines methods used for interacting with a Mesh location
1568
1619
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1569
1620
  */
1570
- 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> | ProjectToolLocation<TValue>;
1621
+ 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> | DashboardToolLocation<TValue> | ProjectToolLocation<TValue>;
1571
1622
  interface MeshContextData {
1572
1623
  locationKey: string;
1573
1624
  locationType: MeshLocationTypes;
@@ -1919,7 +1970,7 @@ type MeshLocationUserPermissions =
1919
1970
  /**
1920
1971
  * Known location types that can be passed to a mesh location
1921
1972
  */
1922
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'projectTool';
1973
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'dashboardTool' | 'projectTool';
1923
1974
  type SetValueOptions = ValidationResult;
1924
1975
  type SetValueMessage = {
1925
1976
  uniformMeshLocationValue: unknown;
@@ -2145,4 +2196,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2145
2196
  */
2146
2197
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2147
2198
 
2148
- 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 MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, 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 };
2199
+ 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 DashboardToolLocation, type DashboardToolLocationMetadata, 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 MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, 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
@@ -113,7 +113,13 @@ interface paths$1 {
113
113
  entryPattern?: {
114
114
  url: string;
115
115
  };
116
- };
116
+ } | {
117
+ id: string;
118
+ name: string;
119
+ url: string;
120
+ iconUrl?: string;
121
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
122
+ }[];
117
123
  personalization?: {
118
124
  selectionAlgorithms?: {
119
125
  [key: string]: {
@@ -255,6 +261,12 @@ interface paths$1 {
255
261
  url: string;
256
262
  iconUrl?: string;
257
263
  }[];
264
+ dashboardTools?: {
265
+ id: string;
266
+ name: string;
267
+ url: string;
268
+ iconUrl?: string;
269
+ }[];
258
270
  };
259
271
  unstable_prompts?: {
260
272
  /** Format: uuid */
@@ -379,7 +391,13 @@ interface paths$1 {
379
391
  entryPattern?: {
380
392
  url: string;
381
393
  };
382
- };
394
+ } | {
395
+ id: string;
396
+ name: string;
397
+ url: string;
398
+ iconUrl?: string;
399
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
400
+ }[];
383
401
  personalization?: {
384
402
  selectionAlgorithms?: {
385
403
  [key: string]: {
@@ -521,6 +539,12 @@ interface paths$1 {
521
539
  url: string;
522
540
  iconUrl?: string;
523
541
  }[];
542
+ dashboardTools?: {
543
+ id: string;
544
+ name: string;
545
+ url: string;
546
+ iconUrl?: string;
547
+ }[];
524
548
  };
525
549
  unstable_prompts?: {
526
550
  /** Format: uuid */
@@ -630,7 +654,13 @@ interface paths$1 {
630
654
  entryPattern?: {
631
655
  url: string;
632
656
  };
633
- };
657
+ } | {
658
+ id: string;
659
+ name: string;
660
+ url: string;
661
+ iconUrl?: string;
662
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
663
+ }[];
634
664
  personalization?: {
635
665
  selectionAlgorithms?: {
636
666
  [key: string]: {
@@ -772,6 +802,12 @@ interface paths$1 {
772
802
  url: string;
773
803
  iconUrl?: string;
774
804
  }[];
805
+ dashboardTools?: {
806
+ id: string;
807
+ name: string;
808
+ url: string;
809
+ iconUrl?: string;
810
+ }[];
775
811
  };
776
812
  unstable_prompts?: {
777
813
  /** Format: uuid */
@@ -1239,7 +1275,13 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1239
1275
  entryPattern?: {
1240
1276
  url: string;
1241
1277
  };
1242
- };
1278
+ } | {
1279
+ id: string;
1280
+ name: string;
1281
+ url: string;
1282
+ iconUrl?: string;
1283
+ editorTypes?: ("composition" | "componentPattern" | "compositionDefaults" | "entry" | "entryPattern")[];
1284
+ }[];
1243
1285
  personalization?: {
1244
1286
  selectionAlgorithms?: {
1245
1287
  [key: string]: {
@@ -1372,6 +1414,12 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
1372
1414
  url: string;
1373
1415
  iconUrl?: string;
1374
1416
  }[];
1417
+ dashboardTools?: {
1418
+ id: string;
1419
+ name: string;
1420
+ url: string;
1421
+ iconUrl?: string;
1422
+ }[];
1375
1423
  };
1376
1424
  unstable_prompts?: {
1377
1425
  id: string;
@@ -1475,6 +1523,9 @@ type AssetParameterLocationMetadata<TIntegrationConfiguration = unknown> = Commo
1475
1523
  type AssetLibraryLocation = MeshLocationCore<unknown, AssetLibraryLocationMetadata, unknown, 'assetLibrary'> & GetDataResourceLocation;
1476
1524
  type AssetParameterLocation = MeshLocationCore<AssetParamValue, AssetParameterLocationMetadata, AssetParamValue, 'assetParameter'> & GetDataResourceLocation;
1477
1525
 
1526
+ type DashboardToolLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
1527
+ type DashboardToolLocation<TTool, TIntegrationConfiguration = unknown> = MeshLocationCore<TTool, DashboardToolLocationMetadata<TIntegrationConfiguration>, TTool, 'dashboardTool'>;
1528
+
1478
1529
  type DataTypeLocationValue = Pick<DataType, 'body' | 'method' | 'path' | 'custom' | 'headers' | 'parameters' | 'variables'>;
1479
1530
  type DataConnectorInfo = {
1480
1531
  type: string;
@@ -1567,7 +1618,7 @@ type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsL
1567
1618
  * Defines methods used for interacting with a Mesh location
1568
1619
  * To receive useful typings, check the `type` property of the location to narrow the typing.
1569
1620
  */
1570
- 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> | ProjectToolLocation<TValue>;
1621
+ 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> | DashboardToolLocation<TValue> | ProjectToolLocation<TValue>;
1571
1622
  interface MeshContextData {
1572
1623
  locationKey: string;
1573
1624
  locationType: MeshLocationTypes;
@@ -1919,7 +1970,7 @@ type MeshLocationUserPermissions =
1919
1970
  /**
1920
1971
  * Known location types that can be passed to a mesh location
1921
1972
  */
1922
- type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'projectTool';
1973
+ type MeshLocationTypes = 'paramType' | 'paramTypeConfig' | 'assetLibrary' | 'assetParameter' | 'settings' | 'dataSource' | 'dataType' | 'dataResource' | 'aiGenerate' | 'embeddedEditor' | 'canvasEditorTools' | 'aiMetadata' | 'personalizationCriteria' | 'dashboardTool' | 'projectTool';
1923
1974
  type SetValueOptions = ValidationResult;
1924
1975
  type SetValueMessage = {
1925
1976
  uniformMeshLocationValue: unknown;
@@ -2145,4 +2196,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2145
2196
  */
2146
2197
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2147
2198
 
2148
- 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 MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, 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 };
2199
+ 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 DashboardToolLocation, type DashboardToolLocationMetadata, 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 MeshRouter, type MeshSDKEventInterface, type NavigateMessage, type OpenConfirmationDialogOptions, type OpenConfirmationDialogResult, type OpenDialogMessage, type OpenDialogResult, type OpenLocationDialogOptions, type ParamTypeConfigLocation, type ParamTypeConfigLocationMetadata, type ParamTypeLocation, type ParamTypeLocationMetadata, type PersonalizationCriteriaLocation, type PersonalizationCriteriaLocationMetadata, type ProjectToolLocation, type ProjectToolLocationMetadata, 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.18.0";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.26.2";
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.18.0";
175
+ var UNIFORM_MESH_SDK_VERSION = "20.26.2";
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.18.0";
134
+ var UNIFORM_MESH_SDK_VERSION = "20.26.2";
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.63+0444977bba",
3
+ "version": "20.7.1-alpha.67+918070a68e",
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.63+0444977bba",
38
- "@uniformdev/canvas": "20.7.1-alpha.63+0444977bba",
39
- "@uniformdev/context": "20.7.1-alpha.63+0444977bba",
40
- "@uniformdev/project-map": "20.7.1-alpha.63+0444977bba",
37
+ "@uniformdev/assets": "20.7.1-alpha.67+918070a68e",
38
+ "@uniformdev/canvas": "20.7.1-alpha.67+918070a68e",
39
+ "@uniformdev/context": "20.7.1-alpha.67+918070a68e",
40
+ "@uniformdev/project-map": "20.7.1-alpha.67+918070a68e",
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.94.0"
47
47
  },
48
- "gitHead": "0444977bba4c3d40fa8da46c46ce252af216df96"
48
+ "gitHead": "918070a68e7170a76f4f1ae4ac0c94cf87441bcf"
49
49
  }