@payai/x402-fetch 2.0.0-payai.3

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.
@@ -0,0 +1,52 @@
1
+ import { x402Client, x402HTTPClient, x402ClientConfig } from '@x402/core/client';
2
+ export { PaymentPolicy, SchemeRegistration, SelectPaymentRequirements, x402Client, x402ClientConfig, x402HTTPClient } from '@x402/core/client';
3
+ export { decodePaymentResponseHeader } from '@x402/core/http';
4
+ export { Network, PaymentPayload, PaymentRequired, PaymentRequirements, SchemeNetworkClient } from '@x402/core/types';
5
+
6
+ /**
7
+ * Enables the payment of APIs using the x402 payment protocol v2.
8
+ *
9
+ * This function wraps the native fetch API to automatically handle 402 Payment Required responses
10
+ * by creating and sending payment headers. It will:
11
+ * 1. Make the initial request
12
+ * 2. If a 402 response is received, parse the payment requirements
13
+ * 3. Create a payment header using the configured x402HTTPClient
14
+ * 4. Retry the request with the payment header
15
+ *
16
+ * @param fetch - The fetch function to wrap (typically globalThis.fetch)
17
+ * @param client - Configured x402Client or x402HTTPClient instance for handling payments
18
+ * @returns A wrapped fetch function that handles 402 responses automatically
19
+ *
20
+ * @example
21
+ * ```typescript
22
+ * import { wrapFetchWithPayment, x402Client } from '@x402/fetch';
23
+ * import { ExactEvmScheme } from '@x402/evm';
24
+ * import { ExactSvmScheme } from '@x402/svm';
25
+ *
26
+ * const client = new x402Client()
27
+ * .register('eip155:8453', new ExactEvmScheme(evmSigner))
28
+ * .register('solana:mainnet', new ExactSvmScheme(svmSigner))
29
+ * .register('eip155:1', new ExactEvmScheme(evmSigner), 1); // v1 protocol
30
+ *
31
+ * const fetchWithPay = wrapFetchWithPayment(fetch, client);
32
+ *
33
+ * // Make a request that may require payment
34
+ * const response = await fetchWithPay('https://api.example.com/paid-endpoint');
35
+ * ```
36
+ *
37
+ * @throws {Error} If no schemes are provided
38
+ * @throws {Error} If the request configuration is missing
39
+ * @throws {Error} If a payment has already been attempted for this request
40
+ * @throws {Error} If there's an error creating the payment header
41
+ */
42
+ declare function wrapFetchWithPayment(fetch: typeof globalThis.fetch, client: x402Client | x402HTTPClient): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
43
+ /**
44
+ * Creates a payment-enabled fetch function from a configuration object.
45
+ *
46
+ * @param fetch - The fetch function to wrap (typically globalThis.fetch)
47
+ * @param config - Configuration options including scheme registrations and selectors
48
+ * @returns A wrapped fetch function that handles 402 responses automatically
49
+ */
50
+ declare function wrapFetchWithPaymentFromConfig(fetch: typeof globalThis.fetch, config: x402ClientConfig): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
51
+
52
+ export { wrapFetchWithPayment, wrapFetchWithPaymentFromConfig };
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ decodePaymentResponseHeader: () => import_http.decodePaymentResponseHeader,
24
+ wrapFetchWithPayment: () => wrapFetchWithPayment,
25
+ wrapFetchWithPaymentFromConfig: () => wrapFetchWithPaymentFromConfig,
26
+ x402Client: () => import_client2.x402Client,
27
+ x402HTTPClient: () => import_client2.x402HTTPClient
28
+ });
29
+ module.exports = __toCommonJS(src_exports);
30
+ var import_client = require("@x402/core/client");
31
+ var import_client2 = require("@x402/core/client");
32
+ var import_http = require("@x402/core/http");
33
+ function wrapFetchWithPayment(fetch, client) {
34
+ const httpClient = client instanceof import_client.x402HTTPClient ? client : new import_client.x402HTTPClient(client);
35
+ return async (input, init) => {
36
+ const response = await fetch(input, init);
37
+ if (response.status !== 402) {
38
+ return response;
39
+ }
40
+ let paymentRequired;
41
+ try {
42
+ const getHeader = (name) => response.headers.get(name);
43
+ let body;
44
+ try {
45
+ const responseText = await response.text();
46
+ if (responseText) {
47
+ body = JSON.parse(responseText);
48
+ }
49
+ } catch {
50
+ }
51
+ paymentRequired = httpClient.getPaymentRequiredResponse(getHeader, body);
52
+ } catch (error) {
53
+ throw new Error(
54
+ `Failed to parse payment requirements: ${error instanceof Error ? error.message : "Unknown error"}`
55
+ );
56
+ }
57
+ let paymentPayload;
58
+ try {
59
+ paymentPayload = await client.createPaymentPayload(paymentRequired);
60
+ } catch (error) {
61
+ throw new Error(
62
+ `Failed to create payment payload: ${error instanceof Error ? error.message : "Unknown error"}`
63
+ );
64
+ }
65
+ const paymentHeaders = httpClient.encodePaymentSignatureHeader(paymentPayload);
66
+ if (!init) {
67
+ throw new Error("Missing fetch request configuration");
68
+ }
69
+ if (init.__is402Retry) {
70
+ throw new Error("Payment already attempted");
71
+ }
72
+ const newInit = {
73
+ ...init,
74
+ headers: {
75
+ ...init.headers || {},
76
+ ...paymentHeaders,
77
+ "Access-Control-Expose-Headers": "PAYMENT-RESPONSE,X-PAYMENT-RESPONSE"
78
+ },
79
+ __is402Retry: true
80
+ };
81
+ const secondResponse = await fetch(input, newInit);
82
+ return secondResponse;
83
+ };
84
+ }
85
+ function wrapFetchWithPaymentFromConfig(fetch, config) {
86
+ const client = import_client.x402Client.fromConfig(config);
87
+ return wrapFetchWithPayment(fetch, client);
88
+ }
89
+ // Annotate the CommonJS export names for ESM import in node:
90
+ 0 && (module.exports = {
91
+ decodePaymentResponseHeader,
92
+ wrapFetchWithPayment,
93
+ wrapFetchWithPaymentFromConfig,
94
+ x402Client,
95
+ x402HTTPClient
96
+ });
97
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { x402Client, x402ClientConfig, x402HTTPClient } from \"@x402/core/client\";\nimport { type PaymentRequired } from \"@x402/core/types\";\n\n/**\n * Enables the payment of APIs using the x402 payment protocol v2.\n *\n * This function wraps the native fetch API to automatically handle 402 Payment Required responses\n * by creating and sending payment headers. It will:\n * 1. Make the initial request\n * 2. If a 402 response is received, parse the payment requirements\n * 3. Create a payment header using the configured x402HTTPClient\n * 4. Retry the request with the payment header\n *\n * @param fetch - The fetch function to wrap (typically globalThis.fetch)\n * @param client - Configured x402Client or x402HTTPClient instance for handling payments\n * @returns A wrapped fetch function that handles 402 responses automatically\n *\n * @example\n * ```typescript\n * import { wrapFetchWithPayment, x402Client } from '@x402/fetch';\n * import { ExactEvmScheme } from '@x402/evm';\n * import { ExactSvmScheme } from '@x402/svm';\n *\n * const client = new x402Client()\n * .register('eip155:8453', new ExactEvmScheme(evmSigner))\n * .register('solana:mainnet', new ExactSvmScheme(svmSigner))\n * .register('eip155:1', new ExactEvmScheme(evmSigner), 1); // v1 protocol\n *\n * const fetchWithPay = wrapFetchWithPayment(fetch, client);\n *\n * // Make a request that may require payment\n * const response = await fetchWithPay('https://api.example.com/paid-endpoint');\n * ```\n *\n * @throws {Error} If no schemes are provided\n * @throws {Error} If the request configuration is missing\n * @throws {Error} If a payment has already been attempted for this request\n * @throws {Error} If there's an error creating the payment header\n */\nexport function wrapFetchWithPayment(\n fetch: typeof globalThis.fetch,\n client: x402Client | x402HTTPClient,\n) {\n const httpClient = client instanceof x402HTTPClient ? client : new x402HTTPClient(client);\n\n return async (input: RequestInfo, init?: RequestInit) => {\n const response = await fetch(input, init);\n\n if (response.status !== 402) {\n return response;\n }\n\n // Parse payment requirements from response\n let paymentRequired: PaymentRequired;\n try {\n // Create getHeader function for case-insensitive header lookup\n const getHeader = (name: string) => response.headers.get(name);\n\n // Try to get from headers first (v2), then from body (v1)\n let body: PaymentRequired | undefined;\n try {\n const responseText = await response.text();\n if (responseText) {\n body = JSON.parse(responseText) as PaymentRequired;\n }\n } catch {\n // Ignore JSON parse errors - might be header-only response\n }\n\n paymentRequired = httpClient.getPaymentRequiredResponse(getHeader, body);\n } catch (error) {\n throw new Error(\n `Failed to parse payment requirements: ${error instanceof Error ? error.message : \"Unknown error\"}`,\n );\n }\n\n // Create payment payload (copy extensions from PaymentRequired)\n let paymentPayload;\n try {\n paymentPayload = await client.createPaymentPayload(paymentRequired);\n } catch (error) {\n throw new Error(\n `Failed to create payment payload: ${error instanceof Error ? error.message : \"Unknown error\"}`,\n );\n }\n\n // Encode payment header\n const paymentHeaders = httpClient.encodePaymentSignatureHeader(paymentPayload);\n\n // Ensure we have request init\n if (!init) {\n throw new Error(\"Missing fetch request configuration\");\n }\n\n // Check if this is already a retry to prevent infinite loops\n if ((init as { __is402Retry?: boolean }).__is402Retry) {\n throw new Error(\"Payment already attempted\");\n }\n\n // Create new request with payment header\n const newInit = {\n ...init,\n headers: {\n ...(init.headers || {}),\n ...paymentHeaders,\n \"Access-Control-Expose-Headers\": \"PAYMENT-RESPONSE,X-PAYMENT-RESPONSE\",\n },\n __is402Retry: true,\n };\n\n // Retry the request with payment\n const secondResponse = await fetch(input, newInit);\n return secondResponse;\n };\n}\n\n/**\n * Creates a payment-enabled fetch function from a configuration object.\n *\n * @param fetch - The fetch function to wrap (typically globalThis.fetch)\n * @param config - Configuration options including scheme registrations and selectors\n * @returns A wrapped fetch function that handles 402 responses automatically\n */\nexport function wrapFetchWithPaymentFromConfig(\n fetch: typeof globalThis.fetch,\n config: x402ClientConfig,\n) {\n const client = x402Client.fromConfig(config);\n return wrapFetchWithPayment(fetch, client);\n}\n\n// Re-export types and utilities for convenience\nexport { x402Client, x402HTTPClient } from \"@x402/core/client\";\nexport type {\n PaymentPolicy,\n SchemeRegistration,\n SelectPaymentRequirements,\n x402ClientConfig,\n} from \"@x402/core/client\";\nexport { decodePaymentResponseHeader } from \"@x402/core/http\";\nexport type {\n Network,\n PaymentPayload,\n PaymentRequired,\n PaymentRequirements,\n SchemeNetworkClient,\n} from \"@x402/core/types\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA6D;AAoI7D,IAAAA,iBAA2C;AAO3C,kBAA4C;AApGrC,SAAS,qBACd,OACA,QACA;AACA,QAAM,aAAa,kBAAkB,+BAAiB,SAAS,IAAI,6BAAe,MAAM;AAExF,SAAO,OAAO,OAAoB,SAAuB;AACvD,UAAM,WAAW,MAAM,MAAM,OAAO,IAAI;AAExC,QAAI,SAAS,WAAW,KAAK;AAC3B,aAAO;AAAA,IACT;AAGA,QAAI;AACJ,QAAI;AAEF,YAAM,YAAY,CAAC,SAAiB,SAAS,QAAQ,IAAI,IAAI;AAG7D,UAAI;AACJ,UAAI;AACF,cAAM,eAAe,MAAM,SAAS,KAAK;AACzC,YAAI,cAAc;AAChB,iBAAO,KAAK,MAAM,YAAY;AAAA,QAChC;AAAA,MACF,QAAQ;AAAA,MAER;AAEA,wBAAkB,WAAW,2BAA2B,WAAW,IAAI;AAAA,IACzE,SAAS,OAAO;AACd,YAAM,IAAI;AAAA,QACR,yCAAyC,iBAAiB,QAAQ,MAAM,UAAU,eAAe;AAAA,MACnG;AAAA,IACF;AAGA,QAAI;AACJ,QAAI;AACF,uBAAiB,MAAM,OAAO,qBAAqB,eAAe;AAAA,IACpE,SAAS,OAAO;AACd,YAAM,IAAI;AAAA,QACR,qCAAqC,iBAAiB,QAAQ,MAAM,UAAU,eAAe;AAAA,MAC/F;AAAA,IACF;AAGA,UAAM,iBAAiB,WAAW,6BAA6B,cAAc;AAG7E,QAAI,CAAC,MAAM;AACT,YAAM,IAAI,MAAM,qCAAqC;AAAA,IACvD;AAGA,QAAK,KAAoC,cAAc;AACrD,YAAM,IAAI,MAAM,2BAA2B;AAAA,IAC7C;AAGA,UAAM,UAAU;AAAA,MACd,GAAG;AAAA,MACH,SAAS;AAAA,QACP,GAAI,KAAK,WAAW,CAAC;AAAA,QACrB,GAAG;AAAA,QACH,iCAAiC;AAAA,MACnC;AAAA,MACA,cAAc;AAAA,IAChB;AAGA,UAAM,iBAAiB,MAAM,MAAM,OAAO,OAAO;AACjD,WAAO;AAAA,EACT;AACF;AASO,SAAS,+BACd,OACA,QACA;AACA,QAAM,SAAS,yBAAW,WAAW,MAAM;AAC3C,SAAO,qBAAqB,OAAO,MAAM;AAC3C;","names":["import_client"]}
@@ -0,0 +1,52 @@
1
+ import { x402Client, x402HTTPClient, x402ClientConfig } from '@x402/core/client';
2
+ export { PaymentPolicy, SchemeRegistration, SelectPaymentRequirements, x402Client, x402ClientConfig, x402HTTPClient } from '@x402/core/client';
3
+ export { decodePaymentResponseHeader } from '@x402/core/http';
4
+ export { Network, PaymentPayload, PaymentRequired, PaymentRequirements, SchemeNetworkClient } from '@x402/core/types';
5
+
6
+ /**
7
+ * Enables the payment of APIs using the x402 payment protocol v2.
8
+ *
9
+ * This function wraps the native fetch API to automatically handle 402 Payment Required responses
10
+ * by creating and sending payment headers. It will:
11
+ * 1. Make the initial request
12
+ * 2. If a 402 response is received, parse the payment requirements
13
+ * 3. Create a payment header using the configured x402HTTPClient
14
+ * 4. Retry the request with the payment header
15
+ *
16
+ * @param fetch - The fetch function to wrap (typically globalThis.fetch)
17
+ * @param client - Configured x402Client or x402HTTPClient instance for handling payments
18
+ * @returns A wrapped fetch function that handles 402 responses automatically
19
+ *
20
+ * @example
21
+ * ```typescript
22
+ * import { wrapFetchWithPayment, x402Client } from '@x402/fetch';
23
+ * import { ExactEvmScheme } from '@x402/evm';
24
+ * import { ExactSvmScheme } from '@x402/svm';
25
+ *
26
+ * const client = new x402Client()
27
+ * .register('eip155:8453', new ExactEvmScheme(evmSigner))
28
+ * .register('solana:mainnet', new ExactSvmScheme(svmSigner))
29
+ * .register('eip155:1', new ExactEvmScheme(evmSigner), 1); // v1 protocol
30
+ *
31
+ * const fetchWithPay = wrapFetchWithPayment(fetch, client);
32
+ *
33
+ * // Make a request that may require payment
34
+ * const response = await fetchWithPay('https://api.example.com/paid-endpoint');
35
+ * ```
36
+ *
37
+ * @throws {Error} If no schemes are provided
38
+ * @throws {Error} If the request configuration is missing
39
+ * @throws {Error} If a payment has already been attempted for this request
40
+ * @throws {Error} If there's an error creating the payment header
41
+ */
42
+ declare function wrapFetchWithPayment(fetch: typeof globalThis.fetch, client: x402Client | x402HTTPClient): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
43
+ /**
44
+ * Creates a payment-enabled fetch function from a configuration object.
45
+ *
46
+ * @param fetch - The fetch function to wrap (typically globalThis.fetch)
47
+ * @param config - Configuration options including scheme registrations and selectors
48
+ * @returns A wrapped fetch function that handles 402 responses automatically
49
+ */
50
+ declare function wrapFetchWithPaymentFromConfig(fetch: typeof globalThis.fetch, config: x402ClientConfig): (input: RequestInfo, init?: RequestInit) => Promise<Response>;
51
+
52
+ export { wrapFetchWithPayment, wrapFetchWithPaymentFromConfig };
@@ -0,0 +1,68 @@
1
+ // src/index.ts
2
+ import { x402Client, x402HTTPClient } from "@x402/core/client";
3
+ import { x402Client as x402Client2, x402HTTPClient as x402HTTPClient2 } from "@x402/core/client";
4
+ import { decodePaymentResponseHeader } from "@x402/core/http";
5
+ function wrapFetchWithPayment(fetch, client) {
6
+ const httpClient = client instanceof x402HTTPClient ? client : new x402HTTPClient(client);
7
+ return async (input, init) => {
8
+ const response = await fetch(input, init);
9
+ if (response.status !== 402) {
10
+ return response;
11
+ }
12
+ let paymentRequired;
13
+ try {
14
+ const getHeader = (name) => response.headers.get(name);
15
+ let body;
16
+ try {
17
+ const responseText = await response.text();
18
+ if (responseText) {
19
+ body = JSON.parse(responseText);
20
+ }
21
+ } catch {
22
+ }
23
+ paymentRequired = httpClient.getPaymentRequiredResponse(getHeader, body);
24
+ } catch (error) {
25
+ throw new Error(
26
+ `Failed to parse payment requirements: ${error instanceof Error ? error.message : "Unknown error"}`
27
+ );
28
+ }
29
+ let paymentPayload;
30
+ try {
31
+ paymentPayload = await client.createPaymentPayload(paymentRequired);
32
+ } catch (error) {
33
+ throw new Error(
34
+ `Failed to create payment payload: ${error instanceof Error ? error.message : "Unknown error"}`
35
+ );
36
+ }
37
+ const paymentHeaders = httpClient.encodePaymentSignatureHeader(paymentPayload);
38
+ if (!init) {
39
+ throw new Error("Missing fetch request configuration");
40
+ }
41
+ if (init.__is402Retry) {
42
+ throw new Error("Payment already attempted");
43
+ }
44
+ const newInit = {
45
+ ...init,
46
+ headers: {
47
+ ...init.headers || {},
48
+ ...paymentHeaders,
49
+ "Access-Control-Expose-Headers": "PAYMENT-RESPONSE,X-PAYMENT-RESPONSE"
50
+ },
51
+ __is402Retry: true
52
+ };
53
+ const secondResponse = await fetch(input, newInit);
54
+ return secondResponse;
55
+ };
56
+ }
57
+ function wrapFetchWithPaymentFromConfig(fetch, config) {
58
+ const client = x402Client.fromConfig(config);
59
+ return wrapFetchWithPayment(fetch, client);
60
+ }
61
+ export {
62
+ decodePaymentResponseHeader,
63
+ wrapFetchWithPayment,
64
+ wrapFetchWithPaymentFromConfig,
65
+ x402Client2 as x402Client,
66
+ x402HTTPClient2 as x402HTTPClient
67
+ };
68
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { x402Client, x402ClientConfig, x402HTTPClient } from \"@x402/core/client\";\nimport { type PaymentRequired } from \"@x402/core/types\";\n\n/**\n * Enables the payment of APIs using the x402 payment protocol v2.\n *\n * This function wraps the native fetch API to automatically handle 402 Payment Required responses\n * by creating and sending payment headers. It will:\n * 1. Make the initial request\n * 2. If a 402 response is received, parse the payment requirements\n * 3. Create a payment header using the configured x402HTTPClient\n * 4. Retry the request with the payment header\n *\n * @param fetch - The fetch function to wrap (typically globalThis.fetch)\n * @param client - Configured x402Client or x402HTTPClient instance for handling payments\n * @returns A wrapped fetch function that handles 402 responses automatically\n *\n * @example\n * ```typescript\n * import { wrapFetchWithPayment, x402Client } from '@x402/fetch';\n * import { ExactEvmScheme } from '@x402/evm';\n * import { ExactSvmScheme } from '@x402/svm';\n *\n * const client = new x402Client()\n * .register('eip155:8453', new ExactEvmScheme(evmSigner))\n * .register('solana:mainnet', new ExactSvmScheme(svmSigner))\n * .register('eip155:1', new ExactEvmScheme(evmSigner), 1); // v1 protocol\n *\n * const fetchWithPay = wrapFetchWithPayment(fetch, client);\n *\n * // Make a request that may require payment\n * const response = await fetchWithPay('https://api.example.com/paid-endpoint');\n * ```\n *\n * @throws {Error} If no schemes are provided\n * @throws {Error} If the request configuration is missing\n * @throws {Error} If a payment has already been attempted for this request\n * @throws {Error} If there's an error creating the payment header\n */\nexport function wrapFetchWithPayment(\n fetch: typeof globalThis.fetch,\n client: x402Client | x402HTTPClient,\n) {\n const httpClient = client instanceof x402HTTPClient ? client : new x402HTTPClient(client);\n\n return async (input: RequestInfo, init?: RequestInit) => {\n const response = await fetch(input, init);\n\n if (response.status !== 402) {\n return response;\n }\n\n // Parse payment requirements from response\n let paymentRequired: PaymentRequired;\n try {\n // Create getHeader function for case-insensitive header lookup\n const getHeader = (name: string) => response.headers.get(name);\n\n // Try to get from headers first (v2), then from body (v1)\n let body: PaymentRequired | undefined;\n try {\n const responseText = await response.text();\n if (responseText) {\n body = JSON.parse(responseText) as PaymentRequired;\n }\n } catch {\n // Ignore JSON parse errors - might be header-only response\n }\n\n paymentRequired = httpClient.getPaymentRequiredResponse(getHeader, body);\n } catch (error) {\n throw new Error(\n `Failed to parse payment requirements: ${error instanceof Error ? error.message : \"Unknown error\"}`,\n );\n }\n\n // Create payment payload (copy extensions from PaymentRequired)\n let paymentPayload;\n try {\n paymentPayload = await client.createPaymentPayload(paymentRequired);\n } catch (error) {\n throw new Error(\n `Failed to create payment payload: ${error instanceof Error ? error.message : \"Unknown error\"}`,\n );\n }\n\n // Encode payment header\n const paymentHeaders = httpClient.encodePaymentSignatureHeader(paymentPayload);\n\n // Ensure we have request init\n if (!init) {\n throw new Error(\"Missing fetch request configuration\");\n }\n\n // Check if this is already a retry to prevent infinite loops\n if ((init as { __is402Retry?: boolean }).__is402Retry) {\n throw new Error(\"Payment already attempted\");\n }\n\n // Create new request with payment header\n const newInit = {\n ...init,\n headers: {\n ...(init.headers || {}),\n ...paymentHeaders,\n \"Access-Control-Expose-Headers\": \"PAYMENT-RESPONSE,X-PAYMENT-RESPONSE\",\n },\n __is402Retry: true,\n };\n\n // Retry the request with payment\n const secondResponse = await fetch(input, newInit);\n return secondResponse;\n };\n}\n\n/**\n * Creates a payment-enabled fetch function from a configuration object.\n *\n * @param fetch - The fetch function to wrap (typically globalThis.fetch)\n * @param config - Configuration options including scheme registrations and selectors\n * @returns A wrapped fetch function that handles 402 responses automatically\n */\nexport function wrapFetchWithPaymentFromConfig(\n fetch: typeof globalThis.fetch,\n config: x402ClientConfig,\n) {\n const client = x402Client.fromConfig(config);\n return wrapFetchWithPayment(fetch, client);\n}\n\n// Re-export types and utilities for convenience\nexport { x402Client, x402HTTPClient } from \"@x402/core/client\";\nexport type {\n PaymentPolicy,\n SchemeRegistration,\n SelectPaymentRequirements,\n x402ClientConfig,\n} from \"@x402/core/client\";\nexport { decodePaymentResponseHeader } from \"@x402/core/http\";\nexport type {\n Network,\n PaymentPayload,\n PaymentRequired,\n PaymentRequirements,\n SchemeNetworkClient,\n} from \"@x402/core/types\";\n"],"mappings":";AAAA,SAAS,YAA8B,sBAAsB;AAoI7D,SAAS,cAAAA,aAAY,kBAAAC,uBAAsB;AAO3C,SAAS,mCAAmC;AApGrC,SAAS,qBACd,OACA,QACA;AACA,QAAM,aAAa,kBAAkB,iBAAiB,SAAS,IAAI,eAAe,MAAM;AAExF,SAAO,OAAO,OAAoB,SAAuB;AACvD,UAAM,WAAW,MAAM,MAAM,OAAO,IAAI;AAExC,QAAI,SAAS,WAAW,KAAK;AAC3B,aAAO;AAAA,IACT;AAGA,QAAI;AACJ,QAAI;AAEF,YAAM,YAAY,CAAC,SAAiB,SAAS,QAAQ,IAAI,IAAI;AAG7D,UAAI;AACJ,UAAI;AACF,cAAM,eAAe,MAAM,SAAS,KAAK;AACzC,YAAI,cAAc;AAChB,iBAAO,KAAK,MAAM,YAAY;AAAA,QAChC;AAAA,MACF,QAAQ;AAAA,MAER;AAEA,wBAAkB,WAAW,2BAA2B,WAAW,IAAI;AAAA,IACzE,SAAS,OAAO;AACd,YAAM,IAAI;AAAA,QACR,yCAAyC,iBAAiB,QAAQ,MAAM,UAAU,eAAe;AAAA,MACnG;AAAA,IACF;AAGA,QAAI;AACJ,QAAI;AACF,uBAAiB,MAAM,OAAO,qBAAqB,eAAe;AAAA,IACpE,SAAS,OAAO;AACd,YAAM,IAAI;AAAA,QACR,qCAAqC,iBAAiB,QAAQ,MAAM,UAAU,eAAe;AAAA,MAC/F;AAAA,IACF;AAGA,UAAM,iBAAiB,WAAW,6BAA6B,cAAc;AAG7E,QAAI,CAAC,MAAM;AACT,YAAM,IAAI,MAAM,qCAAqC;AAAA,IACvD;AAGA,QAAK,KAAoC,cAAc;AACrD,YAAM,IAAI,MAAM,2BAA2B;AAAA,IAC7C;AAGA,UAAM,UAAU;AAAA,MACd,GAAG;AAAA,MACH,SAAS;AAAA,QACP,GAAI,KAAK,WAAW,CAAC;AAAA,QACrB,GAAG;AAAA,QACH,iCAAiC;AAAA,MACnC;AAAA,MACA,cAAc;AAAA,IAChB;AAGA,UAAM,iBAAiB,MAAM,MAAM,OAAO,OAAO;AACjD,WAAO;AAAA,EACT;AACF;AASO,SAAS,+BACd,OACA,QACA;AACA,QAAM,SAAS,WAAW,WAAW,MAAM;AAC3C,SAAO,qBAAqB,OAAO,MAAM;AAC3C;","names":["x402Client","x402HTTPClient"]}
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@payai/x402-fetch",
3
+ "version": "2.0.0-payai.3",
4
+ "main": "./dist/cjs/index.js",
5
+ "module": "./dist/esm/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "keywords": [],
8
+ "license": "Proprietary",
9
+ "author": "PayAI Network LLC",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/PayAINetwork/x402.git",
13
+ "directory": "typescript/packages/payai-x402-fetch"
14
+ },
15
+ "description": "PayAI wrapper for @x402/fetch v2",
16
+ "dependencies": {
17
+ "zod": "^3.24.2"
18
+ },
19
+ "exports": {
20
+ ".": {
21
+ "import": {
22
+ "types": "./dist/esm/index.d.mts",
23
+ "default": "./dist/esm/index.mjs"
24
+ },
25
+ "require": {
26
+ "types": "./dist/cjs/index.d.ts",
27
+ "default": "./dist/cjs/index.js"
28
+ }
29
+ }
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "build": "node ./scripts/build.js"
39
+ }
40
+ }