@kizlo/woocommerce 0.1.8 → 0.1.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.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/test.d.ts +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1480,7 +1480,7 @@ declare function woocommerce(): kizlo0.Extension<"woocommerce", {
|
|
|
1480
1480
|
operator?: "in" | "not_in" | "and" | undefined;
|
|
1481
1481
|
}[] | undefined;
|
|
1482
1482
|
attributeRelation?: "in" | "and" | undefined;
|
|
1483
|
-
catalogVisibility?: "
|
|
1483
|
+
catalogVisibility?: "any" | "search" | "visible" | "catalog" | "hidden" | undefined;
|
|
1484
1484
|
rating?: "1" | "2" | "3" | "4" | "5" | ("1" | "2" | "3" | "4" | "5")[] | undefined;
|
|
1485
1485
|
related?: string | number | undefined;
|
|
1486
1486
|
} | undefined;
|
|
@@ -1691,7 +1691,7 @@ declare function woocommerce(): kizlo0.Extension<"woocommerce", {
|
|
|
1691
1691
|
operator?: "in" | "not_in" | "and" | undefined;
|
|
1692
1692
|
}[] | undefined;
|
|
1693
1693
|
attributeRelation?: "in" | "and" | undefined;
|
|
1694
|
-
catalogVisibility?: "
|
|
1694
|
+
catalogVisibility?: "any" | "search" | "visible" | "catalog" | "hidden" | undefined;
|
|
1695
1695
|
rating?: "1" | "2" | "3" | "4" | "5" | ("1" | "2" | "3" | "4" | "5")[] | undefined;
|
|
1696
1696
|
related?: string | number | undefined;
|
|
1697
1697
|
ratingFilters?: string | boolean | undefined;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CurrencyFormat, IdentifierInput, KizloError, ListMetadata,
|
|
2
|
-
import { BooleanLike, Metadata, NumberLike, arrayable, normalizeArrayableValue, random, seconds, timestampSec, toPublicMetadata, tryCatch } from "@kizlo/shared";
|
|
1
|
+
import { CurrencyFormat, IdentifierInput, KizloError, ListMetadata, Seo, WC_CORE_BASE, WC_STORE_BASE, WP_KIZLO_BASE, createExtension, createMiddleware, createProcedure, defineErrorMap, deserializeCurrencyFormat, deserializeListMetadata } from "kizlo";
|
|
2
|
+
import { BooleanLike, Media, Metadata, NumberLike, arrayable, normalizeArrayableValue, random, seconds, timestampSec, toPublicMetadata, tryCatch } from "@kizlo/shared";
|
|
3
3
|
import { SignJWT, jwtVerify } from "jose";
|
|
4
4
|
import z$1, { z } from "zod/v4";
|
|
5
5
|
import z$2 from "zod";
|
package/dist/test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as kizlo18 from "kizlo";
|
|
2
2
|
import { DevPluginSource } from "kizlo/test";
|
|
3
3
|
|
|
4
4
|
//#region src/test/index.d.ts
|
|
@@ -10,6 +10,6 @@ import { DevPluginSource } from "kizlo/test";
|
|
|
10
10
|
*/
|
|
11
11
|
declare function woocommerce(opts?: {
|
|
12
12
|
plugins?: DevPluginSource[];
|
|
13
|
-
}):
|
|
13
|
+
}): kizlo18.Fixture;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { woocommerce };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kizlo/woocommerce",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "WooCommerce extension for Kizlo.",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@kizlo/shared": "0.
|
|
52
|
+
"@kizlo/shared": "0.6.0",
|
|
53
53
|
"jose": "6.1.0",
|
|
54
54
|
"zod": "^4.3.6"
|
|
55
55
|
},
|