@wix/autocms-folders-service 1.0.1 → 1.0.3
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/autocms-folders-service",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/autocms-folders-service_autocms": "1.0.
|
|
21
|
+
"@wix/autocms-folders-service_autocms": "1.0.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"glob": "^10.4.1",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"fqdn": ""
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"falconPackageHash": "
|
|
46
|
+
"falconPackageHash": "cc7fd1b01d5ef37464340a91d82226e139f1ca17e66ff4a22a2182c6"
|
|
47
47
|
}
|
|
@@ -482,7 +482,9 @@ declare enum Namespace {
|
|
|
482
482
|
* UGC Templates are templates that are created by users for personal use and to sale to other users.
|
|
483
483
|
* The Partners company owns this namespace.
|
|
484
484
|
*/
|
|
485
|
-
UGC_TEMPLATE = "UGC_TEMPLATE"
|
|
485
|
+
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
486
|
+
/** Codux Headless Sites */
|
|
487
|
+
CODUX = "CODUX"
|
|
486
488
|
}
|
|
487
489
|
/** Site transferred to another user. */
|
|
488
490
|
interface SiteTransferred {
|
|
@@ -535,6 +537,8 @@ interface ServiceProvisioned {
|
|
|
535
537
|
originInstanceId?: string;
|
|
536
538
|
/** A version. */
|
|
537
539
|
version?: string | null;
|
|
540
|
+
/** The origin meta site id */
|
|
541
|
+
originMetaSiteId?: string | null;
|
|
538
542
|
}
|
|
539
543
|
interface ServiceRemoved {
|
|
540
544
|
/** Either UUID or EmbeddedServiceType. */
|
|
@@ -482,7 +482,9 @@ declare enum Namespace {
|
|
|
482
482
|
* UGC Templates are templates that are created by users for personal use and to sale to other users.
|
|
483
483
|
* The Partners company owns this namespace.
|
|
484
484
|
*/
|
|
485
|
-
UGC_TEMPLATE = "UGC_TEMPLATE"
|
|
485
|
+
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
486
|
+
/** Codux Headless Sites */
|
|
487
|
+
CODUX = "CODUX"
|
|
486
488
|
}
|
|
487
489
|
/** Site transferred to another user. */
|
|
488
490
|
interface SiteTransferred {
|
|
@@ -535,6 +537,8 @@ interface ServiceProvisioned {
|
|
|
535
537
|
originInstanceId?: string;
|
|
536
538
|
/** A version. */
|
|
537
539
|
version?: string | null;
|
|
540
|
+
/** The origin meta site id */
|
|
541
|
+
originMetaSiteId?: string | null;
|
|
538
542
|
}
|
|
539
543
|
interface ServiceRemoved {
|
|
540
544
|
/** Either UUID or EmbeddedServiceType. */
|