@uniformdev/mesh-sdk 19.173.2-alpha.210 → 19.173.2-alpha.258

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
@@ -92,6 +92,7 @@ interface paths$1 {
92
92
  displayName: string;
93
93
  dataSourceEditorUrl?: string;
94
94
  supportsUnpublishedData?: boolean;
95
+ contextualEditing?: string;
95
96
  dataSourceEditorLocations?: {
96
97
  [key: string]: {
97
98
  url: string;
@@ -112,7 +113,6 @@ interface paths$1 {
112
113
  url: string;
113
114
  };
114
115
  };
115
- contextualEditing?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -269,6 +269,7 @@ interface paths$1 {
269
269
  displayName: string;
270
270
  dataSourceEditorUrl?: string;
271
271
  supportsUnpublishedData?: boolean;
272
+ contextualEditing?: string;
272
273
  dataSourceEditorLocations?: {
273
274
  [key: string]: {
274
275
  url: string;
@@ -289,7 +290,6 @@ interface paths$1 {
289
290
  url: string;
290
291
  };
291
292
  };
292
- contextualEditing?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -445,6 +445,7 @@ interface paths$1 {
445
445
  displayName: string;
446
446
  dataSourceEditorUrl?: string;
447
447
  supportsUnpublishedData?: boolean;
448
+ contextualEditing?: string;
448
449
  dataSourceEditorLocations?: {
449
450
  [key: string]: {
450
451
  url: string;
@@ -465,7 +466,6 @@ interface paths$1 {
465
466
  url: string;
466
467
  };
467
468
  };
468
- contextualEditing?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -869,6 +869,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
869
869
  displayName: string;
870
870
  dataSourceEditorUrl?: string;
871
871
  supportsUnpublishedData?: boolean;
872
+ contextualEditing?: string;
872
873
  dataSourceEditorLocations?: {
873
874
  [key: string]: {
874
875
  url: string;
@@ -889,7 +890,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
889
890
  url: string;
890
891
  };
891
892
  };
892
- contextualEditing?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -1028,7 +1028,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
1028
1028
  dataConnector: DataConnectorInfo;
1029
1029
  /** Current dynamic inputs that are configured on the composition (if any). */
1030
1030
  dynamicInputs: DynamicInputs;
1031
- /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly) */
1031
+ /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly via providing "undefined") */
1032
1032
  dataSourceVariant?: DataSourceVariantsKeys;
1033
1033
  }, TIntegrationConfiguration>;
1034
1034
  type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
@@ -1467,18 +1467,54 @@ type CanvasEditorToolsData = {
1467
1467
  });
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
- type ContextualEditingLocationValue = Record<string, string>;
1470
+ /**
1471
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1472
+ * And only available for internal use.
1473
+ */
1474
+ type ContextualEditingLocationValue<TResolvedData = unknown> = {
1475
+ /**
1476
+ * The resolved data for the data resource.
1477
+ */
1478
+ resolvedData: TResolvedData;
1479
+ /**
1480
+ * The variables for the data resource. Contains things like entry Id
1481
+ */
1482
+ dataResourceVariables: DataResourceVariables;
1483
+ /**
1484
+ * The JSON pointer to the data resource. If contextual editing is triggered from the bound value,
1485
+ * the pointer is provided to for example focus on particular field
1486
+ */
1487
+ jsonPointer?: string;
1488
+ };
1489
+ /**
1490
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1491
+ * And only available for internal use.
1492
+ */
1471
1493
  type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1472
- resolvedData: any;
1494
+ /**
1495
+ * Contains useful info like archetype or default content type filters
1496
+ */
1473
1497
  dataType: DataType;
1474
- /** The data type's archetype value. */
1475
- archetype: string;
1476
1498
  /**
1477
1499
  * The current data resource's data source. NOTE: param and header values are not available in this context.
1478
1500
  */
1479
1501
  dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1480
1506
  }, TIntegrationConfiguration>;
1481
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationValue, 'contextualEditing'> & GetDataResourceLocation;
1507
+ /**
1508
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1509
+ *
1510
+ * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
+ */
1512
+ type ContextualEditingLocationSetValue = DataResourceVariables;
1513
+ /**
1514
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1515
+ * And only available for internal use.
1516
+ */
1517
+ type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationSetValue, 'contextualEditing'> & GetDataResourceLocation;
1482
1518
 
1483
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1484
1520
  /** The Uniform project ID */
@@ -1589,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1589
1625
  */
1590
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1591
1627
 
1592
- 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationValue, 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 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, hasPermissions, hasRole, initializeUniformMeshSDK };
1628
+ 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationSetValue, type ContextualEditingLocationValue, 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 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, hasPermissions, hasRole, initializeUniformMeshSDK };
package/dist/index.d.ts CHANGED
@@ -92,6 +92,7 @@ interface paths$1 {
92
92
  displayName: string;
93
93
  dataSourceEditorUrl?: string;
94
94
  supportsUnpublishedData?: boolean;
95
+ contextualEditing?: string;
95
96
  dataSourceEditorLocations?: {
96
97
  [key: string]: {
97
98
  url: string;
@@ -112,7 +113,6 @@ interface paths$1 {
112
113
  url: string;
113
114
  };
114
115
  };
115
- contextualEditing?: string;
116
116
  };
117
117
  };
118
118
  badgeIconUrl?: string;
@@ -269,6 +269,7 @@ interface paths$1 {
269
269
  displayName: string;
270
270
  dataSourceEditorUrl?: string;
271
271
  supportsUnpublishedData?: boolean;
272
+ contextualEditing?: string;
272
273
  dataSourceEditorLocations?: {
273
274
  [key: string]: {
274
275
  url: string;
@@ -289,7 +290,6 @@ interface paths$1 {
289
290
  url: string;
290
291
  };
291
292
  };
292
- contextualEditing?: string;
293
293
  };
294
294
  };
295
295
  badgeIconUrl?: string;
@@ -445,6 +445,7 @@ interface paths$1 {
445
445
  displayName: string;
446
446
  dataSourceEditorUrl?: string;
447
447
  supportsUnpublishedData?: boolean;
448
+ contextualEditing?: string;
448
449
  dataSourceEditorLocations?: {
449
450
  [key: string]: {
450
451
  url: string;
@@ -465,7 +466,6 @@ interface paths$1 {
465
466
  url: string;
466
467
  };
467
468
  };
468
- contextualEditing?: string;
469
469
  };
470
470
  };
471
471
  badgeIconUrl?: string;
@@ -869,6 +869,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
869
869
  displayName: string;
870
870
  dataSourceEditorUrl?: string;
871
871
  supportsUnpublishedData?: boolean;
872
+ contextualEditing?: string;
872
873
  dataSourceEditorLocations?: {
873
874
  [key: string]: {
874
875
  url: string;
@@ -889,7 +890,6 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
889
890
  url: string;
890
891
  };
891
892
  };
892
- contextualEditing?: string;
893
893
  };
894
894
  };
895
895
  badgeIconUrl?: string;
@@ -1028,7 +1028,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
1028
1028
  dataConnector: DataConnectorInfo;
1029
1029
  /** Current dynamic inputs that are configured on the composition (if any). */
1030
1030
  dynamicInputs: DynamicInputs;
1031
- /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly) */
1031
+ /** Which Data Source variant is being resolved and used for getDataResource (unless overriden explicitly via providing "undefined") */
1032
1032
  dataSourceVariant?: DataSourceVariantsKeys;
1033
1033
  }, TIntegrationConfiguration>;
1034
1034
  type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
@@ -1467,18 +1467,54 @@ type CanvasEditorToolsData = {
1467
1467
  });
1468
1468
  type CanvasEditorToolsLocation = MeshLocationCore<CanvasEditorToolsData, CanvasEditorToolsLocationMetadata, CanvasEditorToolsData, 'canvasEditorTools'> & GetDataResourceLocation;
1469
1469
 
1470
- type ContextualEditingLocationValue = Record<string, string>;
1470
+ /**
1471
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1472
+ * And only available for internal use.
1473
+ */
1474
+ type ContextualEditingLocationValue<TResolvedData = unknown> = {
1475
+ /**
1476
+ * The resolved data for the data resource.
1477
+ */
1478
+ resolvedData: TResolvedData;
1479
+ /**
1480
+ * The variables for the data resource. Contains things like entry Id
1481
+ */
1482
+ dataResourceVariables: DataResourceVariables;
1483
+ /**
1484
+ * The JSON pointer to the data resource. If contextual editing is triggered from the bound value,
1485
+ * the pointer is provided to for example focus on particular field
1486
+ */
1487
+ jsonPointer?: string;
1488
+ };
1489
+ /**
1490
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1491
+ * And only available for internal use.
1492
+ */
1471
1493
  type ContextualEditingLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1472
- resolvedData: any;
1494
+ /**
1495
+ * Contains useful info like archetype or default content type filters
1496
+ */
1473
1497
  dataType: DataType;
1474
- /** The data type's archetype value. */
1475
- archetype: string;
1476
1498
  /**
1477
1499
  * The current data resource's data source. NOTE: param and header values are not available in this context.
1478
1500
  */
1479
1501
  dataSource: DataSource;
1502
+ /**
1503
+ * To explicitly show the difference between Add and Edit actions
1504
+ */
1505
+ actionType: 'edit' | 'create';
1480
1506
  }, TIntegrationConfiguration>;
1481
- type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationValue, 'contextualEditing'> & GetDataResourceLocation;
1507
+ /**
1508
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1509
+ *
1510
+ * Useful in case when creating new content item and we want to set this new item as Data Resource variable.
1511
+ */
1512
+ type ContextualEditingLocationSetValue = DataResourceVariables;
1513
+ /**
1514
+ * @deprecated Alpha version of the Contextual Editing location. This location is not yet available for use in the Mesh SDK.
1515
+ * And only available for internal use.
1516
+ */
1517
+ type ContextualEditingLocation = MeshLocationCore<ContextualEditingLocationValue, ContextualEditingLocationMetadata, ContextualEditingLocationSetValue, 'contextualEditing'> & GetDataResourceLocation;
1482
1518
 
1483
1519
  type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1484
1520
  /** The Uniform project ID */
@@ -1589,4 +1625,4 @@ declare const hasPermissions: (permissions: MeshLocationUserPermissions | MeshLo
1589
1625
  */
1590
1626
  declare const hasRole: (role: string, user: UniformUser) => boolean;
1591
1627
 
1592
- 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationValue, 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 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, hasPermissions, hasRole, initializeUniformMeshSDK };
1628
+ 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 ContextualEditingLocation, type ContextualEditingLocationMetadata, type ContextualEditingLocationSetValue, type ContextualEditingLocationValue, 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 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, hasPermissions, hasRole, initializeUniformMeshSDK };
package/dist/index.esm.js CHANGED
@@ -113,7 +113,7 @@ var getLogger = (prefix, debug) => {
113
113
  };
114
114
 
115
115
  // src/temp/version.ts
116
- var UNIFORM_MESH_SDK_VERSION = "19.186.3";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.188.0";
117
117
 
118
118
  // src/framepost/constants.ts
119
119
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.js CHANGED
@@ -152,7 +152,7 @@ var getLogger = (prefix, debug) => {
152
152
  };
153
153
 
154
154
  // src/temp/version.ts
155
- var UNIFORM_MESH_SDK_VERSION = "19.186.3";
155
+ var UNIFORM_MESH_SDK_VERSION = "19.188.0";
156
156
 
157
157
  // src/framepost/constants.ts
158
158
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/dist/index.mjs CHANGED
@@ -113,7 +113,7 @@ var getLogger = (prefix, debug) => {
113
113
  };
114
114
 
115
115
  // src/temp/version.ts
116
- var UNIFORM_MESH_SDK_VERSION = "19.186.3";
116
+ var UNIFORM_MESH_SDK_VERSION = "19.188.0";
117
117
 
118
118
  // src/framepost/constants.ts
119
119
  var DEFAULT_REQUEST_TIMEOUT = 5e3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.173.2-alpha.210+4f0f6ff104",
3
+ "version": "19.173.2-alpha.258+e8775b83de",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@uniformdev/canvas": "19.173.2-alpha.210+4f0f6ff104",
38
- "@uniformdev/context": "19.173.2-alpha.210+4f0f6ff104",
39
- "@uniformdev/project-map": "19.173.2-alpha.210+4f0f6ff104",
37
+ "@uniformdev/canvas": "19.173.2-alpha.258+e8775b83de",
38
+ "@uniformdev/context": "19.173.2-alpha.258+e8775b83de",
39
+ "@uniformdev/project-map": "19.173.2-alpha.258+e8775b83de",
40
40
  "imagesloaded": "^5.0.0",
41
41
  "mitt": "^3.0.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/imagesloaded": "^4.1.2"
45
45
  },
46
- "gitHead": "4f0f6ff104f46349c338fde461f063f22f04ce0e"
46
+ "gitHead": "e8775b83dec606ce6e2198182152d8b386e15f94"
47
47
  }