@uniformdev/mesh-sdk 20.72.4-alpha.6 → 20.74.1

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
@@ -1815,6 +1815,21 @@ declare const CSRF_HEADER_NAME = "x-mesh-csrf";
1815
1815
  */
1816
1816
  declare const CSRF_HEADER_VALUE = "1";
1817
1817
 
1818
+ /**
1819
+ * BFF 401 body `code` when the delegation session is missing or the access token
1820
+ * is expired. Clients re-exchange the Mesh session token and retry once.
1821
+ * Do not use for other 401s.
1822
+ *
1823
+ * @deprecated This beta identity delegation API may change with breaking changes.
1824
+ */
1825
+ declare const DELEGATION_EXPIRED_CODE: "delegation_expired";
1826
+ /**
1827
+ * Human-readable message to pair with {@link DELEGATION_EXPIRED_CODE}.
1828
+ *
1829
+ * @deprecated This beta identity delegation API may change with breaking changes.
1830
+ */
1831
+ declare const DELEGATION_SESSION_EXPIRED_MESSAGE: "Delegation session expired.";
1832
+
1818
1833
  /** @deprecated experimental */
1819
1834
  type FunctionCallResponse = {
1820
1835
  message: string;
@@ -2533,11 +2548,6 @@ type MoveNodeOptions = {
2533
2548
  /** Options for deleteNode */
2534
2549
  type DeleteNodeOptions = {
2535
2550
  nodeId: string;
2536
- /**
2537
- * When true, deletes a block entry without slot-parent bookkeeping.
2538
- * Pass this when removing nodes from a block parameter.
2539
- */
2540
- isBlock?: boolean;
2541
2551
  };
2542
2552
  /**
2543
2553
  * Common fields for {@link EditorStateApi.setPropertyLocalizability}.
@@ -2912,4 +2922,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2912
2922
  */
2913
2923
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2914
2924
 
2915
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, CSRF_HEADER_NAME, CSRF_HEADER_VALUE, type CSSHeight, type CanvasEditorContextMetadata, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type ConnectToParentResult, type DashboardToolLocation, type DashboardToolLocationMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataResourceSelectorLocation, type DataResourceSelectorLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DeleteNodeOptions, 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 EditorComponentInstance, type EditorComponentParameter, type EditorExportOptions, type EditorNode, type EditorNodeChildren, type EditorNodeParentInfo, type EditorRootMetadata, type EditorRootNodeMetadata, type EditorStateApi, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, type GetEditorStateLocation, type GetEditorStateLocationMaybe, type InsertNodeOptions, type InsertPatternOptions, type IntegrationCredentialRevokeParameters, type IntegrationCredentialRotateParameters, type IntegrationCredentialRotateResponse, 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 MeshParentConnection, type MeshRouter, type MeshSDKEventInterface, type MoveNodeOptions, 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 SetPropertyLocalizabilityCommonParams, type SetPropertyLocalizabilityParams, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type UpdateNodePropertyOptions, type UpdateRootNodeOptions, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
2925
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, CSRF_HEADER_NAME, CSRF_HEADER_VALUE, type CSSHeight, type CanvasEditorContextMetadata, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type ConnectToParentResult, DELEGATION_EXPIRED_CODE, DELEGATION_SESSION_EXPIRED_MESSAGE, type DashboardToolLocation, type DashboardToolLocationMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataResourceSelectorLocation, type DataResourceSelectorLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DeleteNodeOptions, 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 EditorComponentInstance, type EditorComponentParameter, type EditorExportOptions, type EditorNode, type EditorNodeChildren, type EditorNodeParentInfo, type EditorRootMetadata, type EditorRootNodeMetadata, type EditorStateApi, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, type GetEditorStateLocation, type GetEditorStateLocationMaybe, type InsertNodeOptions, type InsertPatternOptions, type IntegrationCredentialRevokeParameters, type IntegrationCredentialRotateParameters, type IntegrationCredentialRotateResponse, 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 MeshParentConnection, type MeshRouter, type MeshSDKEventInterface, type MoveNodeOptions, 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 SetPropertyLocalizabilityCommonParams, type SetPropertyLocalizabilityParams, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type UpdateNodePropertyOptions, type UpdateRootNodeOptions, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
package/dist/index.d.ts CHANGED
@@ -1815,6 +1815,21 @@ declare const CSRF_HEADER_NAME = "x-mesh-csrf";
1815
1815
  */
1816
1816
  declare const CSRF_HEADER_VALUE = "1";
1817
1817
 
1818
+ /**
1819
+ * BFF 401 body `code` when the delegation session is missing or the access token
1820
+ * is expired. Clients re-exchange the Mesh session token and retry once.
1821
+ * Do not use for other 401s.
1822
+ *
1823
+ * @deprecated This beta identity delegation API may change with breaking changes.
1824
+ */
1825
+ declare const DELEGATION_EXPIRED_CODE: "delegation_expired";
1826
+ /**
1827
+ * Human-readable message to pair with {@link DELEGATION_EXPIRED_CODE}.
1828
+ *
1829
+ * @deprecated This beta identity delegation API may change with breaking changes.
1830
+ */
1831
+ declare const DELEGATION_SESSION_EXPIRED_MESSAGE: "Delegation session expired.";
1832
+
1818
1833
  /** @deprecated experimental */
1819
1834
  type FunctionCallResponse = {
1820
1835
  message: string;
@@ -2533,11 +2548,6 @@ type MoveNodeOptions = {
2533
2548
  /** Options for deleteNode */
2534
2549
  type DeleteNodeOptions = {
2535
2550
  nodeId: string;
2536
- /**
2537
- * When true, deletes a block entry without slot-parent bookkeeping.
2538
- * Pass this when removing nodes from a block parameter.
2539
- */
2540
- isBlock?: boolean;
2541
2551
  };
2542
2552
  /**
2543
2553
  * Common fields for {@link EditorStateApi.setPropertyLocalizability}.
@@ -2912,4 +2922,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
2912
2922
  */
2913
2923
  declare const hasRole: (role: string, user: UniformUser) => boolean;
2914
2924
 
2915
- export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, CSRF_HEADER_NAME, CSRF_HEADER_VALUE, type CSSHeight, type CanvasEditorContextMetadata, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type ConnectToParentResult, type DashboardToolLocation, type DashboardToolLocationMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataResourceSelectorLocation, type DataResourceSelectorLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DeleteNodeOptions, 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 EditorComponentInstance, type EditorComponentParameter, type EditorExportOptions, type EditorNode, type EditorNodeChildren, type EditorNodeParentInfo, type EditorRootMetadata, type EditorRootNodeMetadata, type EditorStateApi, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, type GetEditorStateLocation, type GetEditorStateLocationMaybe, type InsertNodeOptions, type InsertPatternOptions, type IntegrationCredentialRevokeParameters, type IntegrationCredentialRotateParameters, type IntegrationCredentialRotateResponse, 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 MeshParentConnection, type MeshRouter, type MeshSDKEventInterface, type MoveNodeOptions, 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 SetPropertyLocalizabilityCommonParams, type SetPropertyLocalizabilityParams, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type UpdateNodePropertyOptions, type UpdateRootNodeOptions, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
2925
+ export { type AIGenerateLocation, type AIGenerateLocationMetadata, type AIPromptMetadataLocation, type AssetLibraryLocation, type AssetLibraryLocationMetadata, type AssetParameterLocation, type AssetParameterLocationMetadata, type BindableTypes, CSRF_HEADER_NAME, CSRF_HEADER_VALUE, type CSSHeight, type CanvasEditorContextMetadata, type CanvasEditorEntityType, type CanvasEditorToolsData, type CanvasEditorToolsLocation, type CanvasEditorToolsLocationMetadata, type CloseDialogMessage, type CloseLocationDialogOptions, type CommonMetadata, type ConnectToParentResult, DELEGATION_EXPIRED_CODE, DELEGATION_SESSION_EXPIRED_MESSAGE, type DashboardToolLocation, type DashboardToolLocationMetadata, type DataConnectorInfo, type DataResourceLocation, type DataResourceLocationMetadata, type DataResourceSelectorLocation, type DataResourceSelectorLocationMetadata, type DataSourceLocation, type DataSourceLocationMetadata, type DataSourceLocationValue, type DataTypeLocation, type DataTypeLocationMetadata, type DataTypeLocationValue, type DeleteNodeOptions, 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 EditorComponentInstance, type EditorComponentParameter, type EditorExportOptions, type EditorNode, type EditorNodeChildren, type EditorNodeParentInfo, type EditorRootMetadata, type EditorRootNodeMetadata, type EditorStateApi, type EmbeddedEditorLocation, type EmbeddedEditorLocationMetadata, type EmbeddedEditorLocationSetValue, type EmbeddedEditorLocationValue, type FunctionCallResponse, type FunctionCallSystemParameter, type GetDataResourceLocation, type GetDataResourceMessage, type GetEditorStateLocation, type GetEditorStateLocationMaybe, type InsertNodeOptions, type InsertPatternOptions, type IntegrationCredentialRevokeParameters, type IntegrationCredentialRotateParameters, type IntegrationCredentialRotateResponse, 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 MeshParentConnection, type MeshRouter, type MeshSDKEventInterface, type MoveNodeOptions, 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 SetPropertyLocalizabilityCommonParams, type SetPropertyLocalizabilityParams, type SetValueMessage, type SetValueOptions, type SettingsLocation, type SettingsLocationMetadata, type UniformMeshSDK, type UniformMeshSDKEvents, type UniformUser, type UpdateNodePropertyOptions, type UpdateRootNodeOptions, type ValidationResult, functionCallSystemParameters, hasPermissions, hasRole, initializeUniformMeshSDK, parseFunctionCall };
package/dist/index.esm.js CHANGED
@@ -118,6 +118,10 @@ var IntegrationInstallationClient = _IntegrationInstallationClient;
118
118
  var CSRF_HEADER_NAME = "x-mesh-csrf";
119
119
  var CSRF_HEADER_VALUE = "1";
120
120
 
121
+ // src/delegation/delegationExpired.ts
122
+ var DELEGATION_EXPIRED_CODE = "delegation_expired";
123
+ var DELEGATION_SESSION_EXPIRED_MESSAGE = "Delegation session expired.";
124
+
121
125
  // src/locations/aiAgents.ts
122
126
  var functionCallSystemParameters = ["pageHtml"];
123
127
  function parseFunctionCall(request) {
@@ -163,7 +167,7 @@ var getLogger = (prefix, debug) => {
163
167
  };
164
168
 
165
169
  // src/temp/version.ts
166
- var UNIFORM_MESH_SDK_VERSION = "20.72.3";
170
+ var UNIFORM_MESH_SDK_VERSION = "20.74.1";
167
171
 
168
172
  // src/framepost/constants.ts
169
173
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
@@ -987,6 +991,8 @@ var hasRole = (role, user) => {
987
991
  export {
988
992
  CSRF_HEADER_NAME,
989
993
  CSRF_HEADER_VALUE,
994
+ DELEGATION_EXPIRED_CODE,
995
+ DELEGATION_SESSION_EXPIRED_MESSAGE,
990
996
  IntegrationDefinitionClient,
991
997
  IntegrationInstallationClient,
992
998
  functionCallSystemParameters,
package/dist/index.js CHANGED
@@ -39,6 +39,8 @@ var index_exports = {};
39
39
  __export(index_exports, {
40
40
  CSRF_HEADER_NAME: () => CSRF_HEADER_NAME,
41
41
  CSRF_HEADER_VALUE: () => CSRF_HEADER_VALUE,
42
+ DELEGATION_EXPIRED_CODE: () => DELEGATION_EXPIRED_CODE,
43
+ DELEGATION_SESSION_EXPIRED_MESSAGE: () => DELEGATION_SESSION_EXPIRED_MESSAGE,
42
44
  IntegrationDefinitionClient: () => IntegrationDefinitionClient,
43
45
  IntegrationInstallationClient: () => IntegrationInstallationClient,
44
46
  functionCallSystemParameters: () => functionCallSystemParameters,
@@ -162,6 +164,10 @@ var IntegrationInstallationClient = _IntegrationInstallationClient;
162
164
  var CSRF_HEADER_NAME = "x-mesh-csrf";
163
165
  var CSRF_HEADER_VALUE = "1";
164
166
 
167
+ // src/delegation/delegationExpired.ts
168
+ var DELEGATION_EXPIRED_CODE = "delegation_expired";
169
+ var DELEGATION_SESSION_EXPIRED_MESSAGE = "Delegation session expired.";
170
+
165
171
  // src/locations/aiAgents.ts
166
172
  var functionCallSystemParameters = ["pageHtml"];
167
173
  function parseFunctionCall(request) {
@@ -207,7 +213,7 @@ var getLogger = (prefix, debug) => {
207
213
  };
208
214
 
209
215
  // src/temp/version.ts
210
- var UNIFORM_MESH_SDK_VERSION = "20.72.3";
216
+ var UNIFORM_MESH_SDK_VERSION = "20.74.1";
211
217
 
212
218
  // src/framepost/constants.ts
213
219
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
@@ -1032,6 +1038,8 @@ var hasRole = (role, user) => {
1032
1038
  0 && (module.exports = {
1033
1039
  CSRF_HEADER_NAME,
1034
1040
  CSRF_HEADER_VALUE,
1041
+ DELEGATION_EXPIRED_CODE,
1042
+ DELEGATION_SESSION_EXPIRED_MESSAGE,
1035
1043
  IntegrationDefinitionClient,
1036
1044
  IntegrationInstallationClient,
1037
1045
  functionCallSystemParameters,
package/dist/index.mjs CHANGED
@@ -118,6 +118,10 @@ var IntegrationInstallationClient = _IntegrationInstallationClient;
118
118
  var CSRF_HEADER_NAME = "x-mesh-csrf";
119
119
  var CSRF_HEADER_VALUE = "1";
120
120
 
121
+ // src/delegation/delegationExpired.ts
122
+ var DELEGATION_EXPIRED_CODE = "delegation_expired";
123
+ var DELEGATION_SESSION_EXPIRED_MESSAGE = "Delegation session expired.";
124
+
121
125
  // src/locations/aiAgents.ts
122
126
  var functionCallSystemParameters = ["pageHtml"];
123
127
  function parseFunctionCall(request) {
@@ -163,7 +167,7 @@ var getLogger = (prefix, debug) => {
163
167
  };
164
168
 
165
169
  // src/temp/version.ts
166
- var UNIFORM_MESH_SDK_VERSION = "20.72.3";
170
+ var UNIFORM_MESH_SDK_VERSION = "20.74.1";
167
171
 
168
172
  // src/framepost/constants.ts
169
173
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
@@ -987,6 +991,8 @@ var hasRole = (role, user) => {
987
991
  export {
988
992
  CSRF_HEADER_NAME,
989
993
  CSRF_HEADER_VALUE,
994
+ DELEGATION_EXPIRED_CODE,
995
+ DELEGATION_SESSION_EXPIRED_MESSAGE,
990
996
  IntegrationDefinitionClient,
991
997
  IntegrationInstallationClient,
992
998
  functionCallSystemParameters,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "20.72.4-alpha.6+93c66ff08a",
3
+ "version": "20.74.1",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -51,10 +51,10 @@
51
51
  "access": "public"
52
52
  },
53
53
  "dependencies": {
54
- "@uniformdev/assets": "20.72.4-alpha.6+93c66ff08a",
55
- "@uniformdev/canvas": "20.72.4-alpha.6+93c66ff08a",
56
- "@uniformdev/context": "20.72.4-alpha.6+93c66ff08a",
57
- "@uniformdev/project-map": "20.72.4-alpha.6+93c66ff08a",
54
+ "@uniformdev/assets": "20.74.1",
55
+ "@uniformdev/canvas": "20.74.1",
56
+ "@uniformdev/context": "20.74.1",
57
+ "@uniformdev/project-map": "20.74.1",
58
58
  "cookie": "^1.1.1",
59
59
  "imagesloaded": "^5.0.0",
60
60
  "jose": "^6.2.2",
@@ -65,5 +65,5 @@
65
65
  "openai": "6.44.0",
66
66
  "tsup": "8.5.1"
67
67
  },
68
- "gitHead": "93c66ff08aa52bcdf60dd38e32e6e39f6ddebab6"
68
+ "gitHead": "92f9b8945a45169eaa57d41dbb7ba8d3a32564cd"
69
69
  }