@agent-score/commerce 2.6.7 → 2.7.0
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/README.md +2 -2
- package/dist/challenge/index.d.mts +3 -3
- package/dist/challenge/index.d.ts +3 -3
- package/dist/challenge/index.js +2 -2
- package/dist/challenge/index.js.map +1 -1
- package/dist/challenge/index.mjs +2 -2
- package/dist/challenge/index.mjs.map +1 -1
- package/dist/{checkout-GcDNDzSK.d.ts → checkout-CIH1UcKZ.d.ts} +15 -2
- package/dist/{checkout-DOd9GDmt.d.mts → checkout-Wc7NUHxZ.d.mts} +15 -2
- package/dist/core.js +2 -2
- package/dist/core.js.map +1 -1
- package/dist/core.mjs +2 -2
- package/dist/core.mjs.map +1 -1
- package/dist/discovery/index.d.mts +4 -4
- package/dist/discovery/index.d.ts +4 -4
- package/dist/identity/express.js +2 -2
- package/dist/identity/express.js.map +1 -1
- package/dist/identity/express.mjs +2 -2
- package/dist/identity/express.mjs.map +1 -1
- package/dist/identity/fastify.js +2 -2
- package/dist/identity/fastify.js.map +1 -1
- package/dist/identity/fastify.mjs +2 -2
- package/dist/identity/fastify.mjs.map +1 -1
- package/dist/identity/hono.js +2 -2
- package/dist/identity/hono.js.map +1 -1
- package/dist/identity/hono.mjs +2 -2
- package/dist/identity/hono.mjs.map +1 -1
- package/dist/identity/nextjs.js +2 -2
- package/dist/identity/nextjs.js.map +1 -1
- package/dist/identity/nextjs.mjs +2 -2
- package/dist/identity/nextjs.mjs.map +1 -1
- package/dist/identity/web.js +2 -2
- package/dist/identity/web.js.map +1 -1
- package/dist/identity/web.mjs +2 -2
- package/dist/identity/web.mjs.map +1 -1
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +47 -34
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +47 -34
- package/dist/index.mjs.map +1 -1
- package/dist/{network_kind-D2xpo2Fj.d.mts → network_kind-CLdLbqU5.d.mts} +1 -1
- package/dist/{network_kind-BmbWKNud.d.ts → network_kind-toxNABqw.d.ts} +1 -1
- package/dist/payment/index.d.mts +3 -3
- package/dist/payment/index.d.ts +3 -3
- package/dist/payment/index.js +0 -2
- package/dist/payment/index.js.map +1 -1
- package/dist/payment/index.mjs +0 -2
- package/dist/payment/index.mjs.map +1 -1
- package/dist/{pricing-CytRwhC2.d.ts → pricing-Dx3F1VAv.d.ts} +1 -1
- package/dist/{pricing-KHDqMLd7.d.mts → pricing-sfv3CPiY.d.mts} +1 -1
- package/dist/{rail_spec-BFZmW9RN.d.mts → rail_spec-DGdb4Gnd.d.mts} +0 -25
- package/dist/{rail_spec-BFZmW9RN.d.ts → rail_spec-DGdb4Gnd.d.ts} +0 -25
- package/package.json +10 -10
package/dist/payment/index.mjs
CHANGED
|
@@ -726,13 +726,11 @@ async function registerSolana(spec) {
|
|
|
726
726
|
"createMppxServer: SolanaMppRailSpec requires a string recipient (per-order factories not supported here)."
|
|
727
727
|
);
|
|
728
728
|
}
|
|
729
|
-
const ataCreationRequired = spec.ataCreationRequired !== false;
|
|
730
729
|
const baseMethod = solanaMpp.charge({
|
|
731
730
|
recipient: spec.recipient,
|
|
732
731
|
currency: spec.token ?? defaultMint,
|
|
733
732
|
decimals: spec.decimals ?? defaultDecimals,
|
|
734
733
|
network,
|
|
735
|
-
...ataCreationRequired ? { splits: [{ recipient: spec.recipient, amount: "0", ataCreationRequired: true }] } : {},
|
|
736
734
|
...spec.rpcUrl ? { rpcUrl: spec.rpcUrl } : {},
|
|
737
735
|
...spec.signer ? { signer: spec.signer } : {},
|
|
738
736
|
...spec.tokenProgram ? { tokenProgram: spec.tokenProgram } : {}
|