@uniformdev/mesh-sdk 19.151.2-alpha.16 → 19.152.2-alpha.9
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 +66 -7
- package/dist/index.d.ts +66 -7
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -69,7 +69,21 @@ interface paths$1 {
|
|
|
69
69
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
70
70
|
}[];
|
|
71
71
|
editorTools?: {
|
|
72
|
-
|
|
72
|
+
composition?: {
|
|
73
|
+
url: string;
|
|
74
|
+
};
|
|
75
|
+
componentPattern?: {
|
|
76
|
+
url: string;
|
|
77
|
+
};
|
|
78
|
+
compositionDefaults?: {
|
|
79
|
+
url: string;
|
|
80
|
+
};
|
|
81
|
+
entry?: {
|
|
82
|
+
url: string;
|
|
83
|
+
};
|
|
84
|
+
entryPattern?: {
|
|
85
|
+
url: string;
|
|
86
|
+
};
|
|
73
87
|
};
|
|
74
88
|
};
|
|
75
89
|
dataConnectors?: {
|
|
@@ -224,7 +238,21 @@ interface paths$1 {
|
|
|
224
238
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
225
239
|
}[];
|
|
226
240
|
editorTools?: {
|
|
227
|
-
|
|
241
|
+
composition?: {
|
|
242
|
+
url: string;
|
|
243
|
+
};
|
|
244
|
+
componentPattern?: {
|
|
245
|
+
url: string;
|
|
246
|
+
};
|
|
247
|
+
compositionDefaults?: {
|
|
248
|
+
url: string;
|
|
249
|
+
};
|
|
250
|
+
entry?: {
|
|
251
|
+
url: string;
|
|
252
|
+
};
|
|
253
|
+
entryPattern?: {
|
|
254
|
+
url: string;
|
|
255
|
+
};
|
|
228
256
|
};
|
|
229
257
|
};
|
|
230
258
|
dataConnectors?: {
|
|
@@ -331,7 +359,7 @@ interface paths$1 {
|
|
|
331
359
|
"application/json": {
|
|
332
360
|
/**
|
|
333
361
|
* Format: uuid
|
|
334
|
-
* @description The team ID
|
|
362
|
+
* @description The team ID
|
|
335
363
|
*/
|
|
336
364
|
teamId: string;
|
|
337
365
|
data: {
|
|
@@ -378,7 +406,21 @@ interface paths$1 {
|
|
|
378
406
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
379
407
|
}[];
|
|
380
408
|
editorTools?: {
|
|
381
|
-
|
|
409
|
+
composition?: {
|
|
410
|
+
url: string;
|
|
411
|
+
};
|
|
412
|
+
componentPattern?: {
|
|
413
|
+
url: string;
|
|
414
|
+
};
|
|
415
|
+
compositionDefaults?: {
|
|
416
|
+
url: string;
|
|
417
|
+
};
|
|
418
|
+
entry?: {
|
|
419
|
+
url: string;
|
|
420
|
+
};
|
|
421
|
+
entryPattern?: {
|
|
422
|
+
url: string;
|
|
423
|
+
};
|
|
382
424
|
};
|
|
383
425
|
};
|
|
384
426
|
dataConnectors?: {
|
|
@@ -780,7 +822,21 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
780
822
|
localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
|
|
781
823
|
}[];
|
|
782
824
|
editorTools?: {
|
|
783
|
-
|
|
825
|
+
composition?: {
|
|
826
|
+
url: string;
|
|
827
|
+
} | undefined;
|
|
828
|
+
componentPattern?: {
|
|
829
|
+
url: string;
|
|
830
|
+
} | undefined;
|
|
831
|
+
compositionDefaults?: {
|
|
832
|
+
url: string;
|
|
833
|
+
} | undefined;
|
|
834
|
+
entry?: {
|
|
835
|
+
url: string;
|
|
836
|
+
} | undefined;
|
|
837
|
+
entryPattern?: {
|
|
838
|
+
url: string;
|
|
839
|
+
} | undefined;
|
|
784
840
|
} | undefined;
|
|
785
841
|
} | undefined;
|
|
786
842
|
dataConnectors?: {
|
|
@@ -1350,9 +1406,12 @@ type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = Co
|
|
|
1350
1406
|
isDefault: boolean;
|
|
1351
1407
|
}[];
|
|
1352
1408
|
}, TIntegrationConfiguration>;
|
|
1409
|
+
type CanvasEditorToolsReferenceData = {
|
|
1410
|
+
name: string;
|
|
1411
|
+
};
|
|
1353
1412
|
type CanvasEditorToolsData = {
|
|
1354
|
-
patternNamesIndex?: Record<string,
|
|
1355
|
-
entryNamesIndex?: Record<string,
|
|
1413
|
+
patternNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
|
|
1414
|
+
entryNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
|
|
1356
1415
|
} & ({
|
|
1357
1416
|
rootEntity: RootComponentInstance;
|
|
1358
1417
|
type: 'composition';
|
package/dist/index.d.ts
CHANGED
|
@@ -69,7 +69,21 @@ interface paths$1 {
|
|
|
69
69
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
70
70
|
}[];
|
|
71
71
|
editorTools?: {
|
|
72
|
-
|
|
72
|
+
composition?: {
|
|
73
|
+
url: string;
|
|
74
|
+
};
|
|
75
|
+
componentPattern?: {
|
|
76
|
+
url: string;
|
|
77
|
+
};
|
|
78
|
+
compositionDefaults?: {
|
|
79
|
+
url: string;
|
|
80
|
+
};
|
|
81
|
+
entry?: {
|
|
82
|
+
url: string;
|
|
83
|
+
};
|
|
84
|
+
entryPattern?: {
|
|
85
|
+
url: string;
|
|
86
|
+
};
|
|
73
87
|
};
|
|
74
88
|
};
|
|
75
89
|
dataConnectors?: {
|
|
@@ -224,7 +238,21 @@ interface paths$1 {
|
|
|
224
238
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
225
239
|
}[];
|
|
226
240
|
editorTools?: {
|
|
227
|
-
|
|
241
|
+
composition?: {
|
|
242
|
+
url: string;
|
|
243
|
+
};
|
|
244
|
+
componentPattern?: {
|
|
245
|
+
url: string;
|
|
246
|
+
};
|
|
247
|
+
compositionDefaults?: {
|
|
248
|
+
url: string;
|
|
249
|
+
};
|
|
250
|
+
entry?: {
|
|
251
|
+
url: string;
|
|
252
|
+
};
|
|
253
|
+
entryPattern?: {
|
|
254
|
+
url: string;
|
|
255
|
+
};
|
|
228
256
|
};
|
|
229
257
|
};
|
|
230
258
|
dataConnectors?: {
|
|
@@ -331,7 +359,7 @@ interface paths$1 {
|
|
|
331
359
|
"application/json": {
|
|
332
360
|
/**
|
|
333
361
|
* Format: uuid
|
|
334
|
-
* @description The team ID
|
|
362
|
+
* @description The team ID
|
|
335
363
|
*/
|
|
336
364
|
teamId: string;
|
|
337
365
|
data: {
|
|
@@ -378,7 +406,21 @@ interface paths$1 {
|
|
|
378
406
|
localizable?: "default-yes" | "default-no" | "yes" | "no";
|
|
379
407
|
}[];
|
|
380
408
|
editorTools?: {
|
|
381
|
-
|
|
409
|
+
composition?: {
|
|
410
|
+
url: string;
|
|
411
|
+
};
|
|
412
|
+
componentPattern?: {
|
|
413
|
+
url: string;
|
|
414
|
+
};
|
|
415
|
+
compositionDefaults?: {
|
|
416
|
+
url: string;
|
|
417
|
+
};
|
|
418
|
+
entry?: {
|
|
419
|
+
url: string;
|
|
420
|
+
};
|
|
421
|
+
entryPattern?: {
|
|
422
|
+
url: string;
|
|
423
|
+
};
|
|
382
424
|
};
|
|
383
425
|
};
|
|
384
426
|
dataConnectors?: {
|
|
@@ -780,7 +822,21 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
780
822
|
localizable?: "default-yes" | "default-no" | "yes" | "no" | undefined;
|
|
781
823
|
}[];
|
|
782
824
|
editorTools?: {
|
|
783
|
-
|
|
825
|
+
composition?: {
|
|
826
|
+
url: string;
|
|
827
|
+
} | undefined;
|
|
828
|
+
componentPattern?: {
|
|
829
|
+
url: string;
|
|
830
|
+
} | undefined;
|
|
831
|
+
compositionDefaults?: {
|
|
832
|
+
url: string;
|
|
833
|
+
} | undefined;
|
|
834
|
+
entry?: {
|
|
835
|
+
url: string;
|
|
836
|
+
} | undefined;
|
|
837
|
+
entryPattern?: {
|
|
838
|
+
url: string;
|
|
839
|
+
} | undefined;
|
|
784
840
|
} | undefined;
|
|
785
841
|
} | undefined;
|
|
786
842
|
dataConnectors?: {
|
|
@@ -1350,9 +1406,12 @@ type CanvasEditorToolsLocationMetadata<TIntegrationConfiguration = unknown> = Co
|
|
|
1350
1406
|
isDefault: boolean;
|
|
1351
1407
|
}[];
|
|
1352
1408
|
}, TIntegrationConfiguration>;
|
|
1409
|
+
type CanvasEditorToolsReferenceData = {
|
|
1410
|
+
name: string;
|
|
1411
|
+
};
|
|
1353
1412
|
type CanvasEditorToolsData = {
|
|
1354
|
-
patternNamesIndex?: Record<string,
|
|
1355
|
-
entryNamesIndex?: Record<string,
|
|
1413
|
+
patternNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
|
|
1414
|
+
entryNamesIndex?: Record<string, CanvasEditorToolsReferenceData>;
|
|
1356
1415
|
} & ({
|
|
1357
1416
|
rootEntity: RootComponentInstance;
|
|
1358
1417
|
type: 'composition';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.152.2-alpha.9+a99c710d2a",
|
|
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.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
38
|
-
"@uniformdev/project-map": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.152.2-alpha.9+a99c710d2a",
|
|
37
|
+
"@uniformdev/context": "19.152.2-alpha.9+a99c710d2a",
|
|
38
|
+
"@uniformdev/project-map": "19.152.2-alpha.9+a99c710d2a",
|
|
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": "
|
|
45
|
+
"gitHead": "a99c710d2aecec9e6d590301b75ef89d82da520c"
|
|
46
46
|
}
|