@flarcos/arazzo-sdk 0.1.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +252 -0
  3. package/dist/cli.d.ts +11 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +212 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/generated/open-payments-client.d.ts +283 -0
  8. package/dist/generated/open-payments-client.d.ts.map +1 -0
  9. package/dist/generated/open-payments-client.js +1588 -0
  10. package/dist/generated/open-payments-client.js.map +1 -0
  11. package/dist/generator/codegen.d.ts +32 -0
  12. package/dist/generator/codegen.d.ts.map +1 -0
  13. package/dist/generator/codegen.js +127 -0
  14. package/dist/generator/codegen.js.map +1 -0
  15. package/dist/generator/templates.d.ts +27 -0
  16. package/dist/generator/templates.d.ts.map +1 -0
  17. package/dist/generator/templates.js +154 -0
  18. package/dist/generator/templates.js.map +1 -0
  19. package/dist/generator/type-mapper.d.ts +35 -0
  20. package/dist/generator/type-mapper.d.ts.map +1 -0
  21. package/dist/generator/type-mapper.js +145 -0
  22. package/dist/generator/type-mapper.js.map +1 -0
  23. package/dist/index.d.ts +23 -0
  24. package/dist/index.d.ts.map +1 -0
  25. package/dist/index.js +22 -0
  26. package/dist/index.js.map +1 -0
  27. package/dist/parser/arazzo-parser.d.ts +38 -0
  28. package/dist/parser/arazzo-parser.d.ts.map +1 -0
  29. package/dist/parser/arazzo-parser.js +162 -0
  30. package/dist/parser/arazzo-parser.js.map +1 -0
  31. package/dist/parser/types.d.ts +115 -0
  32. package/dist/parser/types.d.ts.map +1 -0
  33. package/dist/parser/types.js +10 -0
  34. package/dist/parser/types.js.map +1 -0
  35. package/dist/runtime/expression-resolver.d.ts +59 -0
  36. package/dist/runtime/expression-resolver.d.ts.map +1 -0
  37. package/dist/runtime/expression-resolver.js +180 -0
  38. package/dist/runtime/expression-resolver.js.map +1 -0
  39. package/dist/runtime/http-client.d.ts +47 -0
  40. package/dist/runtime/http-client.d.ts.map +1 -0
  41. package/dist/runtime/http-client.js +126 -0
  42. package/dist/runtime/http-client.js.map +1 -0
  43. package/dist/runtime/types.d.ts +109 -0
  44. package/dist/runtime/types.d.ts.map +1 -0
  45. package/dist/runtime/types.js +7 -0
  46. package/dist/runtime/types.js.map +1 -0
  47. package/dist/runtime/workflow-executor.d.ts +33 -0
  48. package/dist/runtime/workflow-executor.d.ts.map +1 -0
  49. package/dist/runtime/workflow-executor.js +506 -0
  50. package/dist/runtime/workflow-executor.js.map +1 -0
  51. package/package.json +57 -0
@@ -0,0 +1,283 @@
1
+ /**
2
+ * Open Payments Arazzo SDK — Auto-generated workflow functions
3
+ *
4
+ * Generated from Arazzo 1.0.1 workflow specifications.
5
+ * Do not edit manually — regenerate with: arazzo-sdk generate
6
+ *
7
+ * @generated
8
+ */
9
+ import type { WorkflowResult, AuthProvider, GnapAuthConfig, ExecutionHooks, InteractionHandler } from '../runtime/types.js';
10
+ /** Open Payments amount object */
11
+ export interface Amount {
12
+ /** Amount in minor units (e.g., "2500" for $25.00) */
13
+ value: string;
14
+ /** Currency code (e.g., "USD") */
15
+ assetCode: string;
16
+ /** Asset scale (e.g., 2 for cents) */
17
+ assetScale: number;
18
+ }
19
+ export interface ListIncomingPaymentsInputs {
20
+ /** The wallet address to list incoming payments for */
21
+ walletAddressUrl: string;
22
+ /** The client's wallet address for GNAP identification */
23
+ clientWalletAddress: string;
24
+ /** Number of results to return (forward pagination) */
25
+ first?: number;
26
+ /** Pagination cursor from a previous response */
27
+ cursor?: string;
28
+ }
29
+ export interface ListIncomingPaymentsOutputs {
30
+ /** Resolved from: $steps.listIncomingPayments.outputs.incomingPayments */
31
+ incomingPayments: unknown;
32
+ /** Resolved from: $steps.listIncomingPayments.outputs.paginationEndCursor */
33
+ nextCursor: unknown;
34
+ /** Resolved from: $steps.listIncomingPayments.outputs.hasNextPage */
35
+ hasNextPage: boolean;
36
+ }
37
+ export interface ListOutgoingPaymentsInputs {
38
+ /** The wallet address to list outgoing payments for */
39
+ walletAddressUrl: string;
40
+ /** The client's wallet address for GNAP identification */
41
+ clientWalletAddress: string;
42
+ /** Number of results to return */
43
+ first?: number;
44
+ /** Pagination cursor */
45
+ cursor?: string;
46
+ }
47
+ export interface ListOutgoingPaymentsOutputs {
48
+ /** Resolved from: $steps.listOutgoingPayments.outputs.outgoingPayments */
49
+ outgoingPayments: unknown;
50
+ /** Resolved from: $steps.listOutgoingPayments.outputs.paginationEndCursor */
51
+ nextCursor: unknown;
52
+ /** Resolved from: $steps.listOutgoingPayments.outputs.hasNextPage */
53
+ hasNextPage: boolean;
54
+ }
55
+ export interface GetPaymentDetailsInputs {
56
+ /** Wallet address URL */
57
+ walletAddressUrl: string;
58
+ /** Client's wallet address */
59
+ clientWalletAddress: string;
60
+ /** ID of the incoming payment to retrieve */
61
+ incomingPaymentId?: string;
62
+ /** ID of the outgoing payment to retrieve */
63
+ outgoingPaymentId?: string;
64
+ }
65
+ export interface GetPaymentDetailsOutputs {
66
+ /** Resolved from: $steps.getIncomingPayment.outputs.incomingPayment */
67
+ incomingPayment: unknown;
68
+ /** Resolved from: $steps.getOutgoingPayment.outputs.outgoingPayment */
69
+ outgoingPayment: unknown;
70
+ }
71
+ export interface RotateAccessTokenInputs {
72
+ /** The `manage` URL of the access token to rotate. This was provided in the original grant response as `access_token.manage`.
73
+ */
74
+ tokenManageUrl: string;
75
+ }
76
+ export interface RotateAccessTokenOutputs {
77
+ /** Resolved from: $steps.rotateToken.outputs.newAccessTokenValue */
78
+ accessToken: string;
79
+ /** Resolved from: $steps.rotateToken.outputs.newManageUrl */
80
+ manageUrl: string;
81
+ /** Resolved from: $steps.rotateToken.outputs.expiresIn */
82
+ expiresIn: string;
83
+ }
84
+ export interface RevokeAccessTokenInputs {
85
+ /** The `manage` URL of the access token to revoke.
86
+ */
87
+ tokenManageUrl: string;
88
+ }
89
+ export interface CancelGrantInputs {
90
+ /** The continuation URI from the original grant response (`continue.uri`).
91
+ */
92
+ continueUri: string;
93
+ }
94
+ export interface SetupRecurringPaymentInputs {
95
+ /** Recipient's wallet address URL */
96
+ recipientWalletAddressUrl: string;
97
+ /** Sender's wallet address URL */
98
+ senderWalletAddressUrl: string;
99
+ /** Maximum debit amount per interval (minor units) */
100
+ debitAmountPerInterval: string;
101
+ /** Currency code (e.g. USD) */
102
+ debitAssetCode: string;
103
+ /** Asset scale (e.g. 2) */
104
+ debitAssetScale: number;
105
+ /** ISO 8601 repeating interval (e.g. 'R12/2024-01-01T00:00:00Z/P1M' for 12 monthly periods starting Jan 1 2024)
106
+ */
107
+ interval: string;
108
+ /** Client's wallet address */
109
+ clientWalletAddress: string;
110
+ /** Redirect URI after interaction */
111
+ finishUri?: string;
112
+ /** Unique nonce for the finish step */
113
+ finishNonce?: string;
114
+ }
115
+ export interface SetupRecurringPaymentOutputs {
116
+ /** Resolved from: $steps.continueRecurringGrant.outputs.outgoingPaymentAccessToken */
117
+ outgoingPaymentAccessToken: string;
118
+ /** Resolved from: $steps.continueRecurringGrant.outputs.outgoingPaymentManageUrl */
119
+ outgoingPaymentManageUrl: string;
120
+ /** Resolved from: $steps.createOutgoingPayment.outputs.outgoingPaymentId */
121
+ firstPaymentId: string;
122
+ /** Resolved from: $steps.createIncomingPayment.outputs.incomingPaymentUrl */
123
+ incomingPaymentUrl: string;
124
+ }
125
+ export interface OneTimePaymentFixedSendInputs {
126
+ /** The recipient's wallet address URL */
127
+ recipientWalletAddressUrl: string;
128
+ /** The sender's wallet address URL */
129
+ senderWalletAddressUrl: string;
130
+ /** Amount to debit in minor units (e.g. '2500' for $25.00 with scale 2) */
131
+ debitAmount: string;
132
+ /** Currency code of the sender's asset (e.g. USD) */
133
+ debitAssetCode: string;
134
+ /** Asset scale (e.g. 2 for USD cents) */
135
+ debitAssetScale: number;
136
+ /** The client's wallet address for GNAP identification */
137
+ clientWalletAddress: string;
138
+ /** URI to redirect the user to after interaction */
139
+ finishUri?: string;
140
+ /** Unique nonce for the interaction finish */
141
+ finishNonce?: string;
142
+ }
143
+ export interface OneTimePaymentFixedSendOutputs {
144
+ /** Resolved from: $steps.createIncomingPayment.outputs.incomingPaymentUrl */
145
+ incomingPaymentUrl: string;
146
+ /** Resolved from: $steps.createQuote.outputs.quoteId */
147
+ quoteId: string;
148
+ /** Resolved from: $steps.createOutgoingPayment.outputs.outgoingPaymentId */
149
+ outgoingPaymentId: string;
150
+ /** Resolved from: $steps.createQuote.outputs.debitAmount */
151
+ debitAmount: Amount;
152
+ /** Resolved from: $steps.createQuote.outputs.receiveAmount */
153
+ receiveAmount: Amount;
154
+ }
155
+ export interface OneTimePaymentFixedReceiveInputs {
156
+ /** The recipient's wallet address URL (e.g. https://wallet.example.com/alice) */
157
+ recipientWalletAddressUrl: string;
158
+ /** The sender's wallet address URL (e.g. https://wallet.example.com/bob) */
159
+ senderWalletAddressUrl: string;
160
+ /** Amount to receive in minor units (e.g. '2500' for $25.00 with scale 2) */
161
+ amount: string;
162
+ /** Currency code (e.g. USD) */
163
+ assetCode: string;
164
+ /** Asset scale (e.g. 2 for USD cents) */
165
+ assetScale: number;
166
+ /** The client's wallet address for GNAP identification */
167
+ clientWalletAddress: string;
168
+ /** URI to redirect the user to after interaction (optional, defaults to client callback) */
169
+ finishUri?: string;
170
+ /** Unique nonce for the interaction finish (optional) */
171
+ finishNonce?: string;
172
+ }
173
+ export interface OneTimePaymentFixedReceiveOutputs {
174
+ /** Resolved from: $steps.createIncomingPayment.outputs.incomingPaymentUrl */
175
+ incomingPaymentUrl: string;
176
+ /** Resolved from: $steps.createQuote.outputs.quoteId */
177
+ quoteId: string;
178
+ /** Resolved from: $steps.createOutgoingPayment.outputs.outgoingPaymentId */
179
+ outgoingPaymentId: string;
180
+ /** Resolved from: $steps.createQuote.outputs.debitAmount */
181
+ debitAmount: Amount;
182
+ /** Resolved from: $steps.createQuote.outputs.receiveAmount */
183
+ receiveAmount: Amount;
184
+ }
185
+ /**
186
+ * OpenPaymentsClient — typed workflow executor for Open Payments API.
187
+ *
188
+ * Usage:
189
+ * ```typescript
190
+ * const client = new OpenPaymentsClient({
191
+ * clientWalletAddress: 'https://wallet.example.com/me',
192
+ * serverUrls: {
193
+ * walletAddressServer: 'https://wallet.example.com',
194
+ * resourceServer: 'https://wallet.example.com',
195
+ * authServer: 'https://auth.wallet.example.com',
196
+ * },
197
+ * });
198
+ *
199
+ * const result = await client.oneTimePaymentFixedReceive({ ... });
200
+ * ```
201
+ */
202
+ export declare class OpenPaymentsClient {
203
+ private serverUrls;
204
+ private authProvider?;
205
+ private hooks?;
206
+ private interactionHandler?;
207
+ constructor(options: {
208
+ /** Base URLs for each source description */
209
+ serverUrls: Record<string, string>;
210
+ /** GNAP auth configuration */
211
+ gnapConfig?: GnapAuthConfig;
212
+ /** Custom auth provider (overrides gnapConfig) */
213
+ authProvider?: AuthProvider;
214
+ /** Execution hooks for monitoring */
215
+ hooks?: ExecutionHooks;
216
+ /**
217
+ * Handler for interactive GNAP grants requiring user consent.
218
+ * Called when a workflow step returns an interact.redirect URL.
219
+ * Must return the interact_ref from the redirect callback.
220
+ */
221
+ interactionHandler?: InteractionHandler;
222
+ });
223
+ /**
224
+ * Set the GNAP access token for a source.
225
+ * Call this after obtaining tokens from grant requests.
226
+ */
227
+ setToken(sourceName: string, token: string): void;
228
+ /**
229
+ * List all incoming payments on a wallet address
230
+ */
231
+ listIncomingPayments(inputs: ListIncomingPaymentsInputs): Promise<ListIncomingPaymentsOutputs & {
232
+ _raw: WorkflowResult;
233
+ }>;
234
+ /**
235
+ * List all outgoing payments on a wallet address
236
+ */
237
+ listOutgoingPayments(inputs: ListOutgoingPaymentsInputs): Promise<ListOutgoingPaymentsOutputs & {
238
+ _raw: WorkflowResult;
239
+ }>;
240
+ /**
241
+ * Get details of a specific incoming or outgoing payment
242
+ */
243
+ getPaymentDetails(inputs: GetPaymentDetailsInputs): Promise<GetPaymentDetailsOutputs & {
244
+ _raw: WorkflowResult;
245
+ }>;
246
+ /**
247
+ * Rotate an existing GNAP access token
248
+ */
249
+ rotateAccessToken(inputs: RotateAccessTokenInputs): Promise<RotateAccessTokenOutputs & {
250
+ _raw: WorkflowResult;
251
+ }>;
252
+ /**
253
+ * Revoke an active GNAP access token
254
+ */
255
+ revokeAccessToken(inputs: RevokeAccessTokenInputs): Promise<Record<string, unknown> & {
256
+ _raw: WorkflowResult;
257
+ }>;
258
+ /**
259
+ * Cancel an active GNAP grant
260
+ */
261
+ cancelGrant(inputs: CancelGrantInputs): Promise<Record<string, unknown> & {
262
+ _raw: WorkflowResult;
263
+ }>;
264
+ /**
265
+ * Set up a recurring payment grant with interval limits
266
+ */
267
+ setupRecurringPayment(inputs: SetupRecurringPaymentInputs): Promise<SetupRecurringPaymentOutputs & {
268
+ _raw: WorkflowResult;
269
+ }>;
270
+ /**
271
+ * One-time payment with a fixed send (debit) amount
272
+ */
273
+ oneTimePaymentFixedSend(inputs: OneTimePaymentFixedSendInputs): Promise<OneTimePaymentFixedSendOutputs & {
274
+ _raw: WorkflowResult;
275
+ }>;
276
+ /**
277
+ * One-time payment with a fixed receive amount
278
+ */
279
+ oneTimePaymentFixedReceive(inputs: OneTimePaymentFixedReceiveInputs): Promise<OneTimePaymentFixedReceiveOutputs & {
280
+ _raw: WorkflowResult;
281
+ }>;
282
+ }
283
+ //# sourceMappingURL=open-payments-client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"open-payments-client.d.ts","sourceRoot":"","sources":["../../src/generated/open-payments-client.ts"],"names":[],"mappings":"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"}