@uniformdev/mesh-sdk 19.157.1-alpha.6 → 19.159.0

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
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, Locale, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -1040,11 +1040,7 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
1040
1040
  };
1041
1041
 
1042
1042
  type SettingsLocationMetadata = CommonMetadata & {
1043
- locales: {
1044
- locale: string;
1045
- displayName: string;
1046
- isDefault: boolean;
1047
- }[];
1043
+ locales: Locale[];
1048
1044
  };
1049
1045
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
1050
1046
 
@@ -1400,11 +1396,7 @@ type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, Prompt
1400
1396
  type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1401
1397
  releaseId?: string;
1402
1398
  state?: number;
1403
- locales: {
1404
- locale: string;
1405
- displayName: string;
1406
- isDefault: boolean;
1407
- }[];
1399
+ locales: Locale[];
1408
1400
  }, TIntegrationConfiguration>;
1409
1401
  type CanvasEditorToolsReferenceData = {
1410
1402
  name: string;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ApiClient, ClientOptions, ExceptProject } from '@uniformdev/context/api';
2
2
  import { ProjectMapNode } from '@uniformdev/project-map';
3
- import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
3
+ import { AssetParamValue, DataType, DataSource, DataResourceVariables, RootComponentInstance, ComponentInstance, ComponentDefinition, ComponentDefinitionParameter, Locale, DataVariableDefinition, EntryData } from '@uniformdev/canvas';
4
4
  export { AssetParamValue, AssetParamValueItem } from '@uniformdev/canvas';
5
5
  import { Emitter } from 'mitt';
6
6
 
@@ -1040,11 +1040,7 @@ type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TPa
1040
1040
  };
1041
1041
 
1042
1042
  type SettingsLocationMetadata = CommonMetadata & {
1043
- locales: {
1044
- locale: string;
1045
- displayName: string;
1046
- isDefault: boolean;
1047
- }[];
1043
+ locales: Locale[];
1048
1044
  };
1049
1045
  type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, SettingsLocationMetadata, TSettingsType, 'settings'>;
1050
1046
 
@@ -1400,11 +1396,7 @@ type AIPromptMetadataLocation = MeshLocationCore<Record<string, unknown>, Prompt
1400
1396
  type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<{
1401
1397
  releaseId?: string;
1402
1398
  state?: number;
1403
- locales: {
1404
- locale: string;
1405
- displayName: string;
1406
- isDefault: boolean;
1407
- }[];
1399
+ locales: Locale[];
1408
1400
  }, TIntegrationConfiguration>;
1409
1401
  type CanvasEditorToolsReferenceData = {
1410
1402
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.157.1-alpha.6+8ce226d0b4",
3
+ "version": "19.159.0",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -33,14 +33,14 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@uniformdev/canvas": "19.157.1-alpha.6+8ce226d0b4",
37
- "@uniformdev/context": "19.157.1-alpha.6+8ce226d0b4",
38
- "@uniformdev/project-map": "19.157.1-alpha.6+8ce226d0b4",
36
+ "@uniformdev/canvas": "19.159.0",
37
+ "@uniformdev/context": "19.159.0",
38
+ "@uniformdev/project-map": "19.159.0",
39
39
  "imagesloaded": "^5.0.0",
40
40
  "mitt": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/imagesloaded": "^4.1.2"
44
44
  },
45
- "gitHead": "8ce226d0b4263f1ad5391ff56317a1d643cbaeff"
45
+ "gitHead": "49ed8744113d885f24c96d819a6e1dd1896b6ce0"
46
46
  }