@ait-co/devtools 0.1.139 → 0.1.140
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/mcp/cli.js +3 -3
- package/dist/mcp/server.js +1 -1
- package/dist/mock/index.d.ts +15 -2
- package/dist/mock/index.d.ts.map +1 -1
- package/dist/mock/index.js +8 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/panel/index.js +5 -1
- package/dist/panel/index.js.map +1 -1
- package/package.json +1 -1
package/dist/panel/index.js
CHANGED
|
@@ -27966,6 +27966,10 @@ const IAP = createMockProxy("IAP", {
|
|
|
27966
27966
|
Object.assign(async function requestTossPayPaysBilling(options) {
|
|
27967
27967
|
const { nextResult, failReason } = aitState.state.payment;
|
|
27968
27968
|
console.log("[@ait-co/devtools] requestTossPayPaysBilling:", options.params.wrappedToken);
|
|
27969
|
+
if (aitState.state.failureModes.softResolve?.requestTossPayPaysBilling) return {
|
|
27970
|
+
false: "BILLING_FAILED",
|
|
27971
|
+
reason: "mock soft-resolve (env3 unprovisioned)"
|
|
27972
|
+
};
|
|
27969
27973
|
await new Promise((r) => setTimeout(r, 300));
|
|
27970
27974
|
if (nextResult === "success") return { success: true };
|
|
27971
27975
|
return {
|
|
@@ -30307,7 +30311,7 @@ function Panel() {
|
|
|
30307
30311
|
color: "#666",
|
|
30308
30312
|
fontWeight: 400
|
|
30309
30313
|
},
|
|
30310
|
-
children: ["v", "0.1.
|
|
30314
|
+
children: ["v", "0.1.140"]
|
|
30311
30315
|
}),
|
|
30312
30316
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", {
|
|
30313
30317
|
type: "button",
|