@wix/public-editor-platform-interfaces 1.61.0 → 1.62.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/sdk/data.d.ts +2 -0
- package/package.json +2 -2
package/dist/sdk/data.d.ts
CHANGED
|
@@ -6,11 +6,13 @@ export { DataType } from '../generated/dm-types';
|
|
|
6
6
|
* - `displayName`: human-readable label resolved by editor
|
|
7
7
|
* - `href`: resolved URL (viewer concern, not stored in DM)
|
|
8
8
|
* - `rel`: normalized to space-separated string (DM stores as enum array)
|
|
9
|
+
* - `pageRole`: for unresolved dynamic pages links - can be used to properly resolve link by applications
|
|
9
10
|
*/
|
|
10
11
|
type ElementLinkExtension = {
|
|
11
12
|
displayName: string;
|
|
12
13
|
href?: string;
|
|
13
14
|
rel?: string;
|
|
15
|
+
pageRole?: string;
|
|
14
16
|
};
|
|
15
17
|
export type ElementPageLink = DmTypes.PageLink & ElementLinkExtension & {
|
|
16
18
|
type: 'PageLink';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/public-editor-platform-interfaces",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.62.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
]
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
|
-
"falconPackageHash": "
|
|
55
|
+
"falconPackageHash": "556b5efbe98d854ad8e099e09b21b92b94715a5c800b5b9eb642d6e8"
|
|
56
56
|
}
|