@atomic-solutions/woocommerce-api-client 0.1.0 → 0.1.1
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/client/index.d.mts +3 -3
- package/dist/client/index.d.ts +3 -3
- package/dist/client/index.js +19 -709
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +5 -695
- package/dist/client/index.mjs.map +1 -1
- package/dist/http/index.d.mts +3 -3
- package/dist/http/index.d.ts +3 -3
- package/dist/http/index.js +4 -3
- package/dist/http/index.js.map +1 -1
- package/dist/http/index.mjs +4 -3
- package/dist/http/index.mjs.map +1 -1
- package/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +148 -1370
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1346
- package/dist/index.mjs.map +1 -1
- package/dist/{types-qKWtrw7A.d.ts → types-DuA0wOpm.d.mts} +1 -1
- package/dist/{types-B-zy1xrP.d.mts → types-DuA0wOpm.d.ts} +1 -1
- package/dist/utils/index.d.mts +3 -3
- package/dist/utils/index.d.ts +3 -3
- package/package.json +4 -19
- package/dist/pagination.schema-CdjWGZJr.d.mts +0 -190
- package/dist/pagination.schema-CdjWGZJr.d.ts +0 -190
- package/dist/products-Cxl54crz.d.mts +0 -3412
- package/dist/products-Cxl54crz.d.ts +0 -3412
- package/dist/schemas/admin-api/index.d.mts +0 -5340
- package/dist/schemas/admin-api/index.d.ts +0 -5340
- package/dist/schemas/admin-api/index.js +0 -584
- package/dist/schemas/admin-api/index.js.map +0 -1
- package/dist/schemas/admin-api/index.mjs +0 -545
- package/dist/schemas/admin-api/index.mjs.map +0 -1
- package/dist/schemas/index.d.mts +0 -4
- package/dist/schemas/index.d.ts +0 -4
- package/dist/schemas/index.js +0 -887
- package/dist/schemas/index.js.map +0 -1
- package/dist/schemas/index.mjs +0 -844
- package/dist/schemas/index.mjs.map +0 -1
- package/dist/schemas/store-api/index.d.mts +0 -1076
- package/dist/schemas/store-api/index.d.ts +0 -1076
- package/dist/schemas/store-api/index.js +0 -887
- package/dist/schemas/store-api/index.js.map +0 -1
- package/dist/schemas/store-api/index.mjs +0 -844
- package/dist/schemas/store-api/index.mjs.map +0 -1
package/dist/client/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { h as WooCommerceConfig, g as WooCommerceClient } from '../types-
|
|
2
|
-
export { C as CartAPI, b as CartHeadersAdapter, c as CheckoutAPI, J as JwtTokenAdapter, O as OrdersAPI, d as ProductsAPI } from '../types-
|
|
1
|
+
import { h as WooCommerceConfig, g as WooCommerceClient } from '../types-DuA0wOpm.mjs';
|
|
2
|
+
export { C as CartAPI, b as CartHeadersAdapter, c as CheckoutAPI, J as JwtTokenAdapter, O as OrdersAPI, d as ProductsAPI } from '../types-DuA0wOpm.mjs';
|
|
3
3
|
import 'axios';
|
|
4
4
|
import 'zod';
|
|
5
|
-
import '
|
|
5
|
+
import '@atomic-solutions/schemas/woocommerce/store-api';
|
|
6
6
|
|
|
7
7
|
declare const createClient: (config: WooCommerceConfig) => WooCommerceClient;
|
|
8
8
|
|
package/dist/client/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { h as WooCommerceConfig, g as WooCommerceClient } from '../types-
|
|
2
|
-
export { C as CartAPI, b as CartHeadersAdapter, c as CheckoutAPI, J as JwtTokenAdapter, O as OrdersAPI, d as ProductsAPI } from '../types-
|
|
1
|
+
import { h as WooCommerceConfig, g as WooCommerceClient } from '../types-DuA0wOpm.js';
|
|
2
|
+
export { C as CartAPI, b as CartHeadersAdapter, c as CheckoutAPI, J as JwtTokenAdapter, O as OrdersAPI, d as ProductsAPI } from '../types-DuA0wOpm.js';
|
|
3
3
|
import 'axios';
|
|
4
4
|
import 'zod';
|
|
5
|
-
import '
|
|
5
|
+
import '@atomic-solutions/schemas/woocommerce/store-api';
|
|
6
6
|
|
|
7
7
|
declare const createClient: (config: WooCommerceConfig) => WooCommerceClient;
|
|
8
8
|
|