@wix/portfolio 1.0.119 → 1.0.121
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/portfolio",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.121",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/portfolio_collections": "1.0.
|
|
24
|
+
"@wix/portfolio_collections": "1.0.39",
|
|
25
25
|
"@wix/portfolio_portfolio-settings": "1.0.24",
|
|
26
|
-
"@wix/portfolio_project-in-collections": "1.0.
|
|
26
|
+
"@wix/portfolio_project-in-collections": "1.0.42",
|
|
27
27
|
"@wix/portfolio_project-items": "1.0.44",
|
|
28
|
-
"@wix/portfolio_projects": "1.0.
|
|
29
|
-
"@wix/portfolio_synced-project": "1.0.
|
|
28
|
+
"@wix/portfolio_projects": "1.0.59",
|
|
29
|
+
"@wix/portfolio_synced-project": "1.0.21"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "bbd3f7a52fea784ebe3a91f4ed1d5dd80e1b731fbc6cf5c413831438"
|
|
55
55
|
}
|
|
@@ -584,11 +584,11 @@ interface Tag$2 {
|
|
|
584
584
|
*/
|
|
585
585
|
type?: string;
|
|
586
586
|
/**
|
|
587
|
-
* A `{
|
|
588
|
-
* For example: `{
|
|
587
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
588
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
589
589
|
*/
|
|
590
590
|
props?: Record<string, any> | null;
|
|
591
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
591
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
592
592
|
meta?: Record<string, any> | null;
|
|
593
593
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
594
594
|
children?: string;
|
|
@@ -2534,11 +2534,11 @@ interface Tag$1 {
|
|
|
2534
2534
|
*/
|
|
2535
2535
|
type?: string;
|
|
2536
2536
|
/**
|
|
2537
|
-
* A `{
|
|
2538
|
-
* For example: `{
|
|
2537
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
2538
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2539
2539
|
*/
|
|
2540
2540
|
props?: Record<string, any> | null;
|
|
2541
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
2541
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
2542
2542
|
meta?: Record<string, any> | null;
|
|
2543
2543
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2544
2544
|
children?: string;
|
|
@@ -2775,7 +2775,9 @@ declare enum Namespace$1 {
|
|
|
2775
2775
|
*/
|
|
2776
2776
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
2777
2777
|
/** Codux Headless Sites */
|
|
2778
|
-
CODUX = "CODUX"
|
|
2778
|
+
CODUX = "CODUX",
|
|
2779
|
+
/** Bobb - AI Design Creator. */
|
|
2780
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
2779
2781
|
}
|
|
2780
2782
|
/** Site transferred to another user. */
|
|
2781
2783
|
interface SiteTransferred$1 {
|
|
@@ -4001,11 +4003,11 @@ interface Tag {
|
|
|
4001
4003
|
*/
|
|
4002
4004
|
type?: string;
|
|
4003
4005
|
/**
|
|
4004
|
-
* A `{
|
|
4005
|
-
* For example: `{
|
|
4006
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
4007
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
4006
4008
|
*/
|
|
4007
4009
|
props?: Record<string, any> | null;
|
|
4008
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
4010
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
4009
4011
|
meta?: Record<string, any> | null;
|
|
4010
4012
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
4011
4013
|
children?: string;
|
|
@@ -4885,7 +4887,9 @@ declare enum Namespace {
|
|
|
4885
4887
|
*/
|
|
4886
4888
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
4887
4889
|
/** Codux Headless Sites */
|
|
4888
|
-
CODUX = "CODUX"
|
|
4890
|
+
CODUX = "CODUX",
|
|
4891
|
+
/** Bobb - AI Design Creator. */
|
|
4892
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
4889
4893
|
}
|
|
4890
4894
|
/** Site transferred to another user. */
|
|
4891
4895
|
interface SiteTransferred {
|
|
@@ -584,11 +584,11 @@ interface Tag$2 {
|
|
|
584
584
|
*/
|
|
585
585
|
type?: string;
|
|
586
586
|
/**
|
|
587
|
-
* A `{
|
|
588
|
-
* For example: `{
|
|
587
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
588
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
589
589
|
*/
|
|
590
590
|
props?: Record<string, any> | null;
|
|
591
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
591
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
592
592
|
meta?: Record<string, any> | null;
|
|
593
593
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
594
594
|
children?: string;
|
|
@@ -2534,11 +2534,11 @@ interface Tag$1 {
|
|
|
2534
2534
|
*/
|
|
2535
2535
|
type?: string;
|
|
2536
2536
|
/**
|
|
2537
|
-
* A `{
|
|
2538
|
-
* For example: `{
|
|
2537
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
2538
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2539
2539
|
*/
|
|
2540
2540
|
props?: Record<string, any> | null;
|
|
2541
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
2541
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
2542
2542
|
meta?: Record<string, any> | null;
|
|
2543
2543
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2544
2544
|
children?: string;
|
|
@@ -2775,7 +2775,9 @@ declare enum Namespace$1 {
|
|
|
2775
2775
|
*/
|
|
2776
2776
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
2777
2777
|
/** Codux Headless Sites */
|
|
2778
|
-
CODUX = "CODUX"
|
|
2778
|
+
CODUX = "CODUX",
|
|
2779
|
+
/** Bobb - AI Design Creator. */
|
|
2780
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
2779
2781
|
}
|
|
2780
2782
|
/** Site transferred to another user. */
|
|
2781
2783
|
interface SiteTransferred$1 {
|
|
@@ -4001,11 +4003,11 @@ interface Tag {
|
|
|
4001
4003
|
*/
|
|
4002
4004
|
type?: string;
|
|
4003
4005
|
/**
|
|
4004
|
-
* A `{
|
|
4005
|
-
* For example: `{
|
|
4006
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
4007
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
4006
4008
|
*/
|
|
4007
4009
|
props?: Record<string, any> | null;
|
|
4008
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
4010
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
4009
4011
|
meta?: Record<string, any> | null;
|
|
4010
4012
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
4011
4013
|
children?: string;
|
|
@@ -4885,7 +4887,9 @@ declare enum Namespace {
|
|
|
4885
4887
|
*/
|
|
4886
4888
|
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
4887
4889
|
/** Codux Headless Sites */
|
|
4888
|
-
CODUX = "CODUX"
|
|
4890
|
+
CODUX = "CODUX",
|
|
4891
|
+
/** Bobb - AI Design Creator. */
|
|
4892
|
+
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR"
|
|
4889
4893
|
}
|
|
4890
4894
|
/** Site transferred to another user. */
|
|
4891
4895
|
interface SiteTransferred {
|
|
@@ -111,11 +111,11 @@ interface Tag$5 {
|
|
|
111
111
|
*/
|
|
112
112
|
type?: string;
|
|
113
113
|
/**
|
|
114
|
-
* A `{
|
|
115
|
-
* For example: `{
|
|
114
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
115
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
116
116
|
*/
|
|
117
117
|
props?: Record<string, any> | null;
|
|
118
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
118
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
119
119
|
meta?: Record<string, any> | null;
|
|
120
120
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
121
121
|
children?: string;
|
|
@@ -426,11 +426,11 @@ interface Tag$4 {
|
|
|
426
426
|
*/
|
|
427
427
|
type?: string;
|
|
428
428
|
/**
|
|
429
|
-
* A `{
|
|
430
|
-
* For example: `{
|
|
429
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
430
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
431
431
|
*/
|
|
432
432
|
props?: Record<string, any> | null;
|
|
433
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
433
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
434
434
|
meta?: Record<string, any> | null;
|
|
435
435
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
436
436
|
children?: string;
|
|
@@ -1853,11 +1853,11 @@ interface Tag$3 {
|
|
|
1853
1853
|
*/
|
|
1854
1854
|
type?: string;
|
|
1855
1855
|
/**
|
|
1856
|
-
* A `{
|
|
1857
|
-
* For example: `{
|
|
1856
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
1857
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1858
1858
|
*/
|
|
1859
1859
|
props?: Record<string, any> | null;
|
|
1860
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
1860
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
1861
1861
|
meta?: Record<string, any> | null;
|
|
1862
1862
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1863
1863
|
children?: string;
|
|
@@ -2368,11 +2368,11 @@ interface Tag$2 {
|
|
|
2368
2368
|
*/
|
|
2369
2369
|
type?: string;
|
|
2370
2370
|
/**
|
|
2371
|
-
* A `{
|
|
2372
|
-
* For example: `{
|
|
2371
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
2372
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2373
2373
|
*/
|
|
2374
2374
|
props?: Record<string, any> | null;
|
|
2375
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
2375
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
2376
2376
|
meta?: Record<string, any> | null;
|
|
2377
2377
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2378
2378
|
children?: string;
|
|
@@ -2968,11 +2968,11 @@ interface Tag$1 {
|
|
|
2968
2968
|
*/
|
|
2969
2969
|
type?: string;
|
|
2970
2970
|
/**
|
|
2971
|
-
* A `{
|
|
2972
|
-
* For example: `{
|
|
2971
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
2972
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2973
2973
|
*/
|
|
2974
2974
|
props?: Record<string, any> | null;
|
|
2975
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
2975
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
2976
2976
|
meta?: Record<string, any> | null;
|
|
2977
2977
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2978
2978
|
children?: string;
|
|
@@ -3243,11 +3243,11 @@ interface Tag {
|
|
|
3243
3243
|
*/
|
|
3244
3244
|
type?: string;
|
|
3245
3245
|
/**
|
|
3246
|
-
* A `{
|
|
3247
|
-
* For example: `{
|
|
3246
|
+
* A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
|
|
3247
|
+
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3248
3248
|
*/
|
|
3249
3249
|
props?: Record<string, any> | null;
|
|
3250
|
-
/** SEO tag meta data. For example, `{height: 300, width: 240}`. */
|
|
3250
|
+
/** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
|
|
3251
3251
|
meta?: Record<string, any> | null;
|
|
3252
3252
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3253
3253
|
children?: string;
|