@cimplify/sdk 0.44.31 → 0.44.33
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/{chunk-MEJK4FQ3.mjs → chunk-D3TVW7JP.mjs} +1 -1
- package/dist/{chunk-BCNPZHT2.js → chunk-GCSZYC5C.js} +1 -1
- package/dist/{chunk-4NJH4BWX.js → chunk-T4E4R4YG.js} +2 -2
- package/dist/{chunk-GXHBWC2Y.mjs → chunk-W72W6M6M.mjs} +1 -1
- package/dist/{client-eMipr1DC.d.mts → client-Cwb1sMr3.d.mts} +1 -1
- package/dist/{client-BZsRaT_S.d.ts → client-DMhRxuzm.d.ts} +1 -1
- package/dist/mock/cli.mjs +1 -1
- package/dist/mock/library.js +1 -1
- package/dist/mock/library.mjs +1 -1
- package/dist/mock/msw.js +1 -1
- package/dist/mock/msw.mjs +1 -1
- package/dist/{server-BsSusr7y.d.mts → server-UARbamIZ.d.mts} +1 -1
- package/dist/{server-BsSusr7y.d.ts → server-UARbamIZ.d.ts} +1 -1
- package/dist/testing/msw.d.mts +1 -1
- package/dist/testing/msw.d.ts +1 -1
- package/dist/testing/msw.js +2 -2
- package/dist/testing/msw.mjs +1 -1
- package/dist/testing/suite.d.mts +3 -2
- package/dist/testing/suite.d.ts +3 -2
- package/dist/testing/suite.js +21 -21
- package/dist/testing/suite.mjs +2 -2
- package/dist/testing.d.mts +2 -2
- package/dist/testing.d.ts +2 -2
- package/dist/testing.js +77 -77
- package/dist/testing.mjs +3 -3
- package/package.json +1 -1
- package/templates/storefront-bakery/app/llms.txt/route.ts +1 -1
- package/templates/storefront-bakery/components/store-product-card.tsx +4 -0
- package/templates/storefront-bakery/lib/brand.ts +3 -1
- package/templates/storefront-bakery/package.json +2 -3
- package/templates/storefront-fashion/__tests__/cart-flow.test.ts +4 -4
- package/templates/storefront-fashion/app/llms.txt/route.ts +1 -1
- package/templates/storefront-fashion/app/page.tsx +2 -2
- package/templates/storefront-fashion/app/products/[slug]/page.tsx +1 -1
- package/templates/storefront-fashion/components/store-product-card.tsx +4 -0
- package/templates/storefront-fashion/lib/brand.ts +3 -1
- package/templates/storefront-fashion/package.json +2 -3
- package/templates/storefront-grocery/app/llms.txt/route.ts +1 -1
- package/templates/storefront-grocery/components/store-product-card.tsx +4 -0
- package/templates/storefront-grocery/lib/brand.ts +3 -1
- package/templates/storefront-grocery/package.json +2 -3
- package/templates/storefront-restaurant/app/llms.txt/route.ts +1 -1
- package/templates/storefront-restaurant/components/store-product-card.tsx +4 -0
- package/templates/storefront-restaurant/lib/brand.ts +3 -1
- package/templates/storefront-restaurant/package.json +2 -3
- package/templates/storefront-retail/app/llms.txt/route.ts +1 -1
- package/templates/storefront-retail/app/page.tsx +2 -2
- package/templates/storefront-retail/app/products/[slug]/page.tsx +1 -1
- package/templates/storefront-retail/components/store-product-card.tsx +4 -0
- package/templates/storefront-retail/lib/brand.ts +2 -1
- package/templates/storefront-retail/package.json +2 -3
- package/templates/storefront-services/app/llms.txt/route.ts +1 -1
- package/templates/storefront-services/components/store-product-card.tsx +4 -0
- package/templates/storefront-services/lib/brand.ts +3 -1
- package/templates/storefront-services/package.json +2 -3
|
@@ -9268,7 +9268,7 @@ function createMockApp(options = {}) {
|
|
|
9268
9268
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9269
9269
|
retryable: false
|
|
9270
9270
|
},
|
|
9271
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9271
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9272
9272
|
},
|
|
9273
9273
|
501
|
|
9274
9274
|
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkLLZZMHSU_js = require('./chunk-LLZZMHSU.js');
|
|
4
|
-
var
|
|
4
|
+
var chunkGCSZYC5C_js = require('./chunk-GCSZYC5C.js');
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
|
|
7
7
|
var cimplifyRegistry = zod.z.registry();
|
|
@@ -595,7 +595,7 @@ async function toForwardedRequest(input, init) {
|
|
|
595
595
|
};
|
|
596
596
|
}
|
|
597
597
|
function createTestClient(options = {}) {
|
|
598
|
-
const mock =
|
|
598
|
+
const mock = chunkGCSZYC5C_js.createMockApp(options);
|
|
599
599
|
let sessionToken;
|
|
600
600
|
const fetchImpl = async (input, init) => {
|
|
601
601
|
const url = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url;
|
|
@@ -9266,7 +9266,7 @@ function createMockApp(options = {}) {
|
|
|
9266
9266
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9267
9267
|
retryable: false
|
|
9268
9268
|
},
|
|
9269
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9269
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9270
9270
|
},
|
|
9271
9271
|
501
|
|
9272
9272
|
)
|
package/dist/mock/cli.mjs
CHANGED
|
@@ -9970,7 +9970,7 @@ function createMockApp(options = {}) {
|
|
|
9970
9970
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9971
9971
|
retryable: false
|
|
9972
9972
|
},
|
|
9973
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9973
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9974
9974
|
},
|
|
9975
9975
|
501
|
|
9976
9976
|
)
|
package/dist/mock/library.js
CHANGED
|
@@ -9338,7 +9338,7 @@ function createMockApp(options = {}) {
|
|
|
9338
9338
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9339
9339
|
retryable: false
|
|
9340
9340
|
},
|
|
9341
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9341
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9342
9342
|
},
|
|
9343
9343
|
501
|
|
9344
9344
|
)
|
package/dist/mock/library.mjs
CHANGED
|
@@ -9336,7 +9336,7 @@ function createMockApp(options = {}) {
|
|
|
9336
9336
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9337
9337
|
retryable: false
|
|
9338
9338
|
},
|
|
9339
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9339
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9340
9340
|
},
|
|
9341
9341
|
501
|
|
9342
9342
|
)
|
package/dist/mock/msw.js
CHANGED
|
@@ -9336,7 +9336,7 @@ function createMockApp(options = {}) {
|
|
|
9336
9336
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9337
9337
|
retryable: false
|
|
9338
9338
|
},
|
|
9339
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9339
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9340
9340
|
},
|
|
9341
9341
|
501
|
|
9342
9342
|
)
|
package/dist/mock/msw.mjs
CHANGED
|
@@ -9334,7 +9334,7 @@ function createMockApp(options = {}) {
|
|
|
9334
9334
|
message: `Route ${c.req.method} ${c.req.path} not handled by mock`,
|
|
9335
9335
|
retryable: false
|
|
9336
9336
|
},
|
|
9337
|
-
hint: "See /api/v1 for the SDK surface and /_mock for the admin surface."
|
|
9337
|
+
hint: "See /api/v1/bootstrap for the SDK surface snapshot and /_mock for the admin surface."
|
|
9338
9338
|
},
|
|
9339
9339
|
501
|
|
9340
9340
|
)
|
package/dist/testing/msw.d.mts
CHANGED
package/dist/testing/msw.d.ts
CHANGED
package/dist/testing/msw.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkGCSZYC5C_js = require('../chunk-GCSZYC5C.js');
|
|
4
4
|
require('../chunk-QBQCMQ4F.js');
|
|
5
5
|
|
|
6
6
|
// src/mock/msw.ts
|
|
7
7
|
async function createMswHandlers(options = {}) {
|
|
8
8
|
const baseUrl = options.baseUrl ?? "http://localhost:8787";
|
|
9
|
-
const handle =
|
|
9
|
+
const handle = chunkGCSZYC5C_js.createMockApp(options);
|
|
10
10
|
const msw = await import('msw').catch(() => {
|
|
11
11
|
throw new Error("msw is required to use @cimplify/sdk/mock/msw \u2014 install it as a peer dependency");
|
|
12
12
|
});
|
package/dist/testing/msw.mjs
CHANGED
package/dist/testing/suite.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TestAPI } from 'vitest';
|
|
2
|
-
import { T as TestClientHandle } from '../client-
|
|
3
|
-
import { C as CreateAppOptions } from '../server-
|
|
2
|
+
import { T as TestClientHandle } from '../client-Cwb1sMr3.mjs';
|
|
3
|
+
import { C as CreateAppOptions } from '../server-UARbamIZ.mjs';
|
|
4
|
+
export { S as SeedName } from '../server-UARbamIZ.mjs';
|
|
4
5
|
import '../client-CpVMRI8V.mjs';
|
|
5
6
|
import '../payment-4JSLNTVM.mjs';
|
|
6
7
|
import 'hono';
|
package/dist/testing/suite.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TestAPI } from 'vitest';
|
|
2
|
-
import { T as TestClientHandle } from '../client-
|
|
3
|
-
import { C as CreateAppOptions } from '../server-
|
|
2
|
+
import { T as TestClientHandle } from '../client-DMhRxuzm.js';
|
|
3
|
+
import { C as CreateAppOptions } from '../server-UARbamIZ.js';
|
|
4
|
+
export { S as SeedName } from '../server-UARbamIZ.js';
|
|
4
5
|
import '../client-5B9IPDmf.js';
|
|
5
6
|
import '../payment-4JSLNTVM.js';
|
|
6
7
|
import 'hono';
|
package/dist/testing/suite.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkT4E4R4YG_js = require('../chunk-T4E4R4YG.js');
|
|
4
4
|
require('../chunk-LLZZMHSU.js');
|
|
5
5
|
require('../chunk-GVLWRI5I.js');
|
|
6
6
|
require('../chunk-BN2CXGMO.js');
|
|
7
|
-
require('../chunk-
|
|
7
|
+
require('../chunk-GCSZYC5C.js');
|
|
8
8
|
require('../chunk-QBQCMQ4F.js');
|
|
9
9
|
var vitest = require('vitest');
|
|
10
10
|
|
|
@@ -19,11 +19,11 @@ var PLACEHOLDER_PHRASES = [
|
|
|
19
19
|
function createBrandSuite(opts) {
|
|
20
20
|
vitest.describe(opts.label ?? "brand schema", () => {
|
|
21
21
|
vitest.it("conforms to the Cimplify brand contract", () => {
|
|
22
|
-
vitest.expect(() =>
|
|
22
|
+
vitest.expect(() => chunkT4E4R4YG_js.assertBrand(opts.brand)).not.toThrow();
|
|
23
23
|
});
|
|
24
24
|
vitest.it("declares a known mock seed", () => {
|
|
25
25
|
const b = opts.brand;
|
|
26
|
-
vitest.expect(
|
|
26
|
+
vitest.expect(chunkT4E4R4YG_js.SeedNameSchema.safeParse(b.mock?.seed).success).toBe(true);
|
|
27
27
|
});
|
|
28
28
|
vitest.it("has no placeholder copy left in", () => {
|
|
29
29
|
const offenders = [];
|
|
@@ -55,7 +55,7 @@ ${msg}`);
|
|
|
55
55
|
vitest.expect(b.mock?.businessId).toMatch(/^bus_/);
|
|
56
56
|
});
|
|
57
57
|
vitest.it("zod-parses cleanly", () => {
|
|
58
|
-
const result =
|
|
58
|
+
const result = chunkT4E4R4YG_js.BrandSchema.safeParse(opts.brand);
|
|
59
59
|
if (!result.success) {
|
|
60
60
|
throw new Error(
|
|
61
61
|
"Brand schema violations:\n" + result.error.issues.map((i) => ` \u2022 brand.${i.path.join(".")}: ${i.message}`).join("\n")
|
|
@@ -70,23 +70,23 @@ function createCartFlowSuite(opts = {}) {
|
|
|
70
70
|
vitest.describe(opts.label ?? "cart flow against in-process mock", () => {
|
|
71
71
|
let h;
|
|
72
72
|
vitest.beforeEach(() => {
|
|
73
|
-
h =
|
|
73
|
+
h = chunkT4E4R4YG_js.createTestClient(opts);
|
|
74
74
|
});
|
|
75
75
|
vitest.afterEach(() => h.dispose());
|
|
76
76
|
vitest.it("starts with an empty cart matching the canonical shape", async () => {
|
|
77
77
|
const res = await h.client.cart.get();
|
|
78
78
|
vitest.expect(res.ok).toBe(true);
|
|
79
79
|
if (!res.ok) return;
|
|
80
|
-
vitest.expect(() =>
|
|
80
|
+
vitest.expect(() => chunkT4E4R4YG_js.assertCart(res.value)).not.toThrow();
|
|
81
81
|
vitest.expect(res.value.items).toHaveLength(0);
|
|
82
82
|
});
|
|
83
83
|
vitest.it("adds the first product, persists it, and returns a shape-valid cart", async () => {
|
|
84
|
-
const { product, variantId } = await
|
|
84
|
+
const { product, variantId } = await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
85
85
|
vitest.expect(product.id).toBeTruthy();
|
|
86
86
|
const get = await h.client.cart.get();
|
|
87
87
|
vitest.expect(get.ok).toBe(true);
|
|
88
88
|
if (!get.ok) return;
|
|
89
|
-
vitest.expect(() =>
|
|
89
|
+
vitest.expect(() => chunkT4E4R4YG_js.assertCart(get.value)).not.toThrow();
|
|
90
90
|
vitest.expect(get.value.items).toHaveLength(1);
|
|
91
91
|
vitest.expect(get.value.items[0]?.item_id).toBe(product.id);
|
|
92
92
|
if (variantId) {
|
|
@@ -97,8 +97,8 @@ function createCartFlowSuite(opts = {}) {
|
|
|
97
97
|
vitest.expect(parseFloat(String(get.value.pricing.subtotal))).toBeGreaterThan(0);
|
|
98
98
|
});
|
|
99
99
|
vitest.it("dedupes by line_key when adding the same product twice", async () => {
|
|
100
|
-
await
|
|
101
|
-
await
|
|
100
|
+
await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
101
|
+
await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
102
102
|
const res = await h.client.cart.get();
|
|
103
103
|
vitest.expect(res.ok).toBe(true);
|
|
104
104
|
if (!res.ok) return;
|
|
@@ -106,7 +106,7 @@ function createCartFlowSuite(opts = {}) {
|
|
|
106
106
|
vitest.expect(res.value.items[0]?.quantity).toBe(2);
|
|
107
107
|
});
|
|
108
108
|
vitest.it("removes items and zeroes the subtotal", async () => {
|
|
109
|
-
await
|
|
109
|
+
await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
110
110
|
const before = await h.client.cart.get();
|
|
111
111
|
if (!before.ok) throw before.error;
|
|
112
112
|
const itemId = before.value.items[0]?.id;
|
|
@@ -132,28 +132,28 @@ function createContractSuite(opts = {}) {
|
|
|
132
132
|
vitest.describe(opts.label ?? "SDK \u2194 mock contract", () => {
|
|
133
133
|
let h;
|
|
134
134
|
vitest.beforeEach(() => {
|
|
135
|
-
h =
|
|
135
|
+
h = chunkT4E4R4YG_js.createTestClient(opts);
|
|
136
136
|
});
|
|
137
137
|
vitest.afterEach(() => h.dispose());
|
|
138
138
|
vitest.it("AddItemPayload schema accepts a minimal valid body", () => {
|
|
139
|
-
const result =
|
|
139
|
+
const result = chunkT4E4R4YG_js.AddItemPayloadSchema.safeParse({ item_id: "prod_x", quantity: 1 });
|
|
140
140
|
vitest.expect(result.success).toBe(true);
|
|
141
141
|
});
|
|
142
142
|
vitest.it("AddItemPayload schema rejects negative quantity", () => {
|
|
143
|
-
const result =
|
|
143
|
+
const result = chunkT4E4R4YG_js.AddItemPayloadSchema.safeParse({ item_id: "prod_x", quantity: -1 });
|
|
144
144
|
vitest.expect(result.success).toBe(false);
|
|
145
145
|
});
|
|
146
146
|
vitest.it("AddItemPayload schema rejects empty item_id", () => {
|
|
147
|
-
const result =
|
|
147
|
+
const result = chunkT4E4R4YG_js.AddItemPayloadSchema.safeParse({ item_id: "", quantity: 1 });
|
|
148
148
|
vitest.expect(result.success).toBe(false);
|
|
149
149
|
});
|
|
150
150
|
vitest.it("Cart line items returned by the mock match CartItemSchema", async () => {
|
|
151
|
-
const { product } = await
|
|
151
|
+
const { product } = await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
152
152
|
const get = await h.client.cart.get();
|
|
153
153
|
if (!get.ok) throw get.error;
|
|
154
154
|
vitest.expect(get.value.items.length).toBeGreaterThan(0);
|
|
155
155
|
for (const item of get.value.items) {
|
|
156
|
-
const result =
|
|
156
|
+
const result = chunkT4E4R4YG_js.CartItemSchema.safeParse(item);
|
|
157
157
|
if (!result.success) {
|
|
158
158
|
const issues = result.error.issues.map((i) => ` \u2022 ${i.path.join(".")}: ${i.message}`).join("\n");
|
|
159
159
|
throw new Error(`Cart item shape mismatch for ${product.name}:
|
|
@@ -163,19 +163,19 @@ ${issues}`);
|
|
|
163
163
|
}
|
|
164
164
|
});
|
|
165
165
|
vitest.it("CheckoutResponse from the mock includes bill_token", async () => {
|
|
166
|
-
await
|
|
166
|
+
await chunkT4E4R4YG_js.fixtures.addFirstProduct(h.client);
|
|
167
167
|
const cartRes = await h.client.cart.get();
|
|
168
168
|
if (!cartRes.ok) throw cartRes.error;
|
|
169
169
|
const checkout = await h.client.checkout.process({
|
|
170
170
|
cart_id: cartRes.value.id,
|
|
171
|
-
customer:
|
|
171
|
+
customer: chunkT4E4R4YG_js.fixtures.customer(),
|
|
172
172
|
order_type: "delivery",
|
|
173
173
|
payment_method: "mobile_money",
|
|
174
174
|
mobile_money_details: { phone_number: "+233244000000", provider: "mtn" }
|
|
175
175
|
});
|
|
176
176
|
vitest.expect(checkout.ok).toBe(true);
|
|
177
177
|
if (!checkout.ok) return;
|
|
178
|
-
const result =
|
|
178
|
+
const result = chunkT4E4R4YG_js.CheckoutResponseSchema.safeParse(checkout.value);
|
|
179
179
|
if (!result.success) {
|
|
180
180
|
const issues = result.error.issues.map((i) => ` \u2022 ${i.path.join(".")}: ${i.message}`).join("\n");
|
|
181
181
|
throw new Error(`CheckoutResponse shape mismatch:
|
package/dist/testing/suite.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { assertBrand, SeedNameSchema, BrandSchema, createTestClient, assertCart, fixtures, AddItemPayloadSchema, CartItemSchema, CheckoutResponseSchema } from '../chunk-
|
|
1
|
+
import { assertBrand, SeedNameSchema, BrandSchema, createTestClient, assertCart, fixtures, AddItemPayloadSchema, CartItemSchema, CheckoutResponseSchema } from '../chunk-D3TVW7JP.mjs';
|
|
2
2
|
import '../chunk-RR3ZJQW5.mjs';
|
|
3
3
|
import '../chunk-AIXUFSA6.mjs';
|
|
4
4
|
import '../chunk-NRT6PVW5.mjs';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-W72W6M6M.mjs';
|
|
6
6
|
import '../chunk-XPXAZXF2.mjs';
|
|
7
7
|
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
8
8
|
|
package/dist/testing.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { $ZodType } from 'zod/v4/core';
|
|
3
|
-
export { A as AddFirstProductOptions, a as AddFirstProductResult, P as ProductSummary, T as TestClientHandle, c as createTestClient, f as fixtures } from './client-
|
|
3
|
+
export { A as AddFirstProductOptions, a as AddFirstProductResult, P as ProductSummary, T as TestClientHandle, c as createTestClient, f as fixtures } from './client-Cwb1sMr3.mjs';
|
|
4
4
|
import './client-CpVMRI8V.mjs';
|
|
5
5
|
import './payment-4JSLNTVM.mjs';
|
|
6
|
-
import './server-
|
|
6
|
+
import './server-UARbamIZ.mjs';
|
|
7
7
|
import 'hono';
|
|
8
8
|
|
|
9
9
|
/**
|
package/dist/testing.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { $ZodType } from 'zod/v4/core';
|
|
3
|
-
export { A as AddFirstProductOptions, a as AddFirstProductResult, P as ProductSummary, T as TestClientHandle, c as createTestClient, f as fixtures } from './client-
|
|
3
|
+
export { A as AddFirstProductOptions, a as AddFirstProductResult, P as ProductSummary, T as TestClientHandle, c as createTestClient, f as fixtures } from './client-DMhRxuzm.js';
|
|
4
4
|
import './client-5B9IPDmf.js';
|
|
5
5
|
import './payment-4JSLNTVM.js';
|
|
6
|
-
import './server-
|
|
6
|
+
import './server-UARbamIZ.js';
|
|
7
7
|
import 'hono';
|
|
8
8
|
|
|
9
9
|
/**
|