@halliday-sdk/payments 2.7.2 → 2.8.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 (27) hide show
  1. package/dist/paymentsApiClient/index.cjs.min.js +1 -1
  2. package/dist/paymentsApiClient/index.cjs.min.js.map +1 -1
  3. package/dist/paymentsApiClient/index.d.ts +191 -59
  4. package/dist/paymentsApiClient/index.esm.min.js +1 -1
  5. package/dist/paymentsApiClient/index.esm.min.js.map +1 -1
  6. package/dist/paymentsWidget/ethers/index.cjs.min.js +1 -1
  7. package/dist/paymentsWidget/ethers/index.cjs.min.js.map +1 -1
  8. package/dist/paymentsWidget/ethers/index.d.ts +12 -10
  9. package/dist/paymentsWidget/ethers/index.esm.min.js +1 -1
  10. package/dist/paymentsWidget/ethers/index.esm.min.js.map +1 -1
  11. package/dist/paymentsWidget/ethers/index.umd.min.js +1 -1
  12. package/dist/paymentsWidget/ethers/index.umd.min.js.map +1 -1
  13. package/dist/paymentsWidget/index.cjs.min.js +1 -1
  14. package/dist/paymentsWidget/index.cjs.min.js.map +1 -1
  15. package/dist/paymentsWidget/index.d.ts +83 -41
  16. package/dist/paymentsWidget/index.esm.min.js +1 -1
  17. package/dist/paymentsWidget/index.esm.min.js.map +1 -1
  18. package/dist/paymentsWidget/index.umd.min.js +1 -1
  19. package/dist/paymentsWidget/index.umd.min.js.map +1 -1
  20. package/dist/paymentsWidget/viem/index.cjs.min.js +1 -1
  21. package/dist/paymentsWidget/viem/index.cjs.min.js.map +1 -1
  22. package/dist/paymentsWidget/viem/index.d.ts +12 -10
  23. package/dist/paymentsWidget/viem/index.esm.min.js +1 -1
  24. package/dist/paymentsWidget/viem/index.esm.min.js.map +1 -1
  25. package/dist/paymentsWidget/viem/index.umd.min.js +1 -1
  26. package/dist/paymentsWidget/viem/index.umd.min.js.map +1 -1
  27. package/package.json +2 -2
@@ -1,10 +1,11 @@
1
- import { z } from 'zod/v4';
1
+ import { z } from 'zod';
2
2
 
3
- declare const Address: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
3
+ declare const Address: z.ZodString;
4
4
  type Address = z.infer<typeof Address>;
5
+
5
6
  declare const TransactionRequest: z.ZodObject<{
6
- to: z.ZodString;
7
- from: z.ZodOptional<z.ZodString>;
7
+ to: z.ZodPipe<z.ZodString, z.ZodTransform<`0x${string}`, string>>;
8
+ from: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<`0x${string}`, string>>>;
8
9
  nonce: z.ZodOptional<z.ZodNumber>;
9
10
  gasLimit: z.ZodOptional<z.ZodBigInt>;
10
11
  gasPrice: z.ZodOptional<z.ZodBigInt>;
@@ -19,23 +20,24 @@ declare const TransactionReceipt: z.ZodObject<{
19
20
  transactionHash: z.ZodOptional<z.ZodString>;
20
21
  blockHash: z.ZodOptional<z.ZodString>;
21
22
  blockNumber: z.ZodOptional<z.ZodNumber>;
22
- from: z.ZodOptional<z.ZodString>;
23
- to: z.ZodOptional<z.ZodString>;
23
+ from: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<`0x${string}`, string>>>;
24
+ to: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<`0x${string}`, string>>>;
24
25
  rawReceipt: z.ZodAny;
25
26
  }, z.core.$strip>;
26
27
  type TransactionReceipt = z.infer<typeof TransactionReceipt>;
27
28
  declare const EVMChainConfig: z.ZodObject<{
28
29
  chain_id: z.ZodBigInt;
29
30
  network: z.ZodString;
31
+ explorer: z.ZodOptional<z.ZodURL>;
32
+ image: z.ZodOptional<z.ZodURL>;
33
+ is_testnet: z.ZodBoolean;
34
+ address_family: z.ZodLiteral<"EVM">;
30
35
  native_currency: z.ZodObject<{
31
36
  name: z.ZodString;
32
37
  symbol: z.ZodString;
33
38
  decimals: z.ZodNumber;
34
39
  }, z.core.$strip>;
35
- rpc: z.ZodString;
36
- image: z.ZodString;
37
- is_testnet: z.ZodBoolean;
38
- explorer: z.ZodString;
40
+ rpc: z.ZodOptional<z.ZodString>;
39
41
  }, z.core.$strip>;
40
42
  type EVMChainConfig = z.infer<typeof EVMChainConfig>;
41
43
 
@@ -68,6 +70,13 @@ declare const BorderStyle: z.ZodEnum<{
68
70
  DEFAULT: "DEFAULT";
69
71
  }>;
70
72
  type BorderStyle = z.infer<typeof BorderStyle>;
73
+ declare const BackgroundStyle: z.ZodEnum<{
74
+ BLUR: "BLUR";
75
+ OFF: "OFF";
76
+ }>;
77
+ type BackgroundStyle = z.infer<typeof BackgroundStyle>;
78
+ declare const CssFontSize: z.ZodString;
79
+ type CssFontSize = z.infer<typeof CssFontSize>;
71
80
  declare const CustomStyles: z.ZodObject<{
72
81
  primaryColor: z.ZodOptional<z.ZodString>;
73
82
  backgroundColor: z.ZodOptional<z.ZodString>;
@@ -92,6 +101,12 @@ declare const CustomStyles: z.ZodObject<{
92
101
  AUTO: "AUTO";
93
102
  MEDIUM: "MEDIUM";
94
103
  }>>;
104
+ baseFontSize: z.ZodOptional<z.ZodString>;
105
+ baseBorderRadius: z.ZodOptional<z.ZodString>;
106
+ backgroundStyle: z.ZodOptional<z.ZodEnum<{
107
+ BLUR: "BLUR";
108
+ OFF: "OFF";
109
+ }>>;
95
110
  logo: z.ZodOptional<z.ZodObject<{
96
111
  src: z.ZodURL;
97
112
  alt: z.ZodString;
@@ -109,14 +124,16 @@ declare const PaymentCategoryOrder: z.ZodArray<z.ZodEnum<{
109
124
  "open-exchange": "open-exchange";
110
125
  cash: "cash";
111
126
  "open-cash": "open-cash";
127
+ deposit: "deposit";
112
128
  }>>;
113
129
  type PaymentCategoryOrder = z.infer<typeof PaymentCategoryOrder>;
114
130
  declare const FontName: z.ZodEnum<{
115
131
  haffer: "haffer";
116
132
  "wudoo-mono": "wudoo-mono";
133
+ inter: "inter";
117
134
  }>;
118
135
  type FontName = z.infer<typeof FontName>;
119
- declare const HeaderTitle: z.ZodDefault<z.ZodOptional<z.ZodString>>;
136
+ declare const HeaderTitle: z.ZodOptional<z.ZodString>;
120
137
  type HeaderTitle = z.infer<typeof HeaderTitle>;
121
138
  type SignMessage = (input: {
122
139
  message: string;
@@ -138,7 +155,7 @@ type StatusCallback = (input: {
138
155
  payload: OrderStatus;
139
156
  }) => void;
140
157
  declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
141
- onramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
158
+ onramps: z.ZodOptional<z.ZodArray<z.ZodString>>;
142
159
  offramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
143
160
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
144
161
  features: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -149,11 +166,11 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
149
166
  inputs: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
150
167
  outputs: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
151
168
  apiKey: z.ZodString;
152
- destinationAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
153
- widgetVersion: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
169
+ destinationAddress: z.ZodOptional<z.ZodString>;
170
+ widgetVersion: z.ZodOptional<z.ZodEnum<{
154
171
  1: "1";
155
172
  2: "2";
156
- }>>>;
173
+ }>>;
157
174
  customStyles: z.ZodOptional<z.ZodObject<{
158
175
  primaryColor: z.ZodOptional<z.ZodString>;
159
176
  backgroundColor: z.ZodOptional<z.ZodString>;
@@ -178,6 +195,12 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
178
195
  AUTO: "AUTO";
179
196
  MEDIUM: "MEDIUM";
180
197
  }>>;
198
+ baseFontSize: z.ZodOptional<z.ZodString>;
199
+ baseBorderRadius: z.ZodOptional<z.ZodString>;
200
+ backgroundStyle: z.ZodOptional<z.ZodEnum<{
201
+ BLUR: "BLUR";
202
+ OFF: "OFF";
203
+ }>>;
181
204
  logo: z.ZodOptional<z.ZodObject<{
182
205
  src: z.ZodURL;
183
206
  alt: z.ZodString;
@@ -186,11 +209,11 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
186
209
  }, z.core.$strip>>;
187
210
  }, z.core.$strip>>;
188
211
  targetElementId: z.ZodOptional<z.ZodString>;
189
- windowType: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
212
+ windowType: z.ZodOptional<z.ZodEnum<{
190
213
  EMBED: "EMBED";
191
214
  POPUP: "POPUP";
192
215
  MODAL: "MODAL";
193
- }>>>;
216
+ }>>;
194
217
  redirects: z.ZodOptional<z.ZodObject<{
195
218
  redirectUrl: z.ZodURL;
196
219
  ctaText: z.ZodString;
@@ -204,13 +227,15 @@ declare const PaymentsWidgetSDKParamsWithoutRolesAndFunctions: z.ZodObject<{
204
227
  "open-exchange": "open-exchange";
205
228
  cash: "cash";
206
229
  "open-cash": "open-cash";
230
+ deposit: "deposit";
207
231
  }>>>;
208
232
  fontName: z.ZodOptional<z.ZodEnum<{
209
233
  haffer: "haffer";
210
234
  "wudoo-mono": "wudoo-mono";
235
+ inter: "inter";
211
236
  }>>;
212
- headerTitle: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
213
- showSkeleton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
237
+ headerTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
238
+ showSkeleton: z.ZodOptional<z.ZodBoolean>;
214
239
  skeletonBackgroundColor: z.ZodOptional<z.ZodString>;
215
240
  }, z.core.$strip>;
216
241
  declare const PaymentsWidgetSDKParams: z.ZodObject<{
@@ -238,6 +263,12 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
238
263
  AUTO: "AUTO";
239
264
  MEDIUM: "MEDIUM";
240
265
  }>>;
266
+ baseFontSize: z.ZodOptional<z.ZodString>;
267
+ baseBorderRadius: z.ZodOptional<z.ZodString>;
268
+ backgroundStyle: z.ZodOptional<z.ZodEnum<{
269
+ BLUR: "BLUR";
270
+ OFF: "OFF";
271
+ }>>;
241
272
  logo: z.ZodOptional<z.ZodObject<{
242
273
  src: z.ZodURL;
243
274
  alt: z.ZodString;
@@ -246,11 +277,11 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
246
277
  }, z.core.$strip>>;
247
278
  }, z.core.$strip>>;
248
279
  targetElementId: z.ZodOptional<z.ZodString>;
249
- windowType: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
280
+ windowType: z.ZodOptional<z.ZodEnum<{
250
281
  EMBED: "EMBED";
251
282
  POPUP: "POPUP";
252
283
  MODAL: "MODAL";
253
- }>>>;
284
+ }>>;
254
285
  redirects: z.ZodOptional<z.ZodObject<{
255
286
  redirectUrl: z.ZodURL;
256
287
  ctaText: z.ZodString;
@@ -259,13 +290,13 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
259
290
  }, z.core.$strip>>;
260
291
  statusCallback: z.ZodOptional<z.ZodAny>;
261
292
  owner: z.ZodOptional<z.ZodObject<{
262
- address: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
293
+ address: z.ZodString;
263
294
  signMessage: z.ZodOptional<z.ZodAny>;
264
295
  sendTransaction: z.ZodOptional<z.ZodAny>;
265
296
  signTypedData: z.ZodOptional<z.ZodAny>;
266
297
  }, z.core.$strip>>;
267
298
  funder: z.ZodOptional<z.ZodObject<{
268
- address: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
299
+ address: z.ZodString;
269
300
  signMessage: z.ZodOptional<z.ZodAny>;
270
301
  sendTransaction: z.ZodOptional<z.ZodAny>;
271
302
  signTypedData: z.ZodOptional<z.ZodAny>;
@@ -282,25 +313,27 @@ declare const PaymentsWidgetSDKParams: z.ZodObject<{
282
313
  "open-exchange": "open-exchange";
283
314
  cash: "cash";
284
315
  "open-cash": "open-cash";
316
+ deposit: "deposit";
285
317
  }>>>;
286
318
  fontName: z.ZodOptional<z.ZodEnum<{
287
319
  haffer: "haffer";
288
320
  "wudoo-mono": "wudoo-mono";
321
+ inter: "inter";
289
322
  }>>;
290
- headerTitle: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
291
- showSkeleton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
323
+ headerTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
324
+ onramps: z.ZodOptional<z.ZodArray<z.ZodString>>;
325
+ showSkeleton: z.ZodOptional<z.ZodBoolean>;
292
326
  skeletonBackgroundColor: z.ZodOptional<z.ZodString>;
293
- onramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
294
327
  offramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
295
328
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
296
329
  inputs: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
297
330
  outputs: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
298
331
  apiKey: z.ZodString;
299
- destinationAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
300
- widgetVersion: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
332
+ destinationAddress: z.ZodOptional<z.ZodString>;
333
+ widgetVersion: z.ZodOptional<z.ZodEnum<{
301
334
  1: "1";
302
335
  2: "2";
303
- }>>>;
336
+ }>>;
304
337
  }, z.core.$strip>;
305
338
  type PaymentsWidgetSDKParams = z.input<typeof PaymentsWidgetSDKParamsWithoutRolesAndFunctions> & {
306
339
  owner?: Omit<WalletActionsType, "getAddress"> & {
@@ -319,8 +352,8 @@ declare const AppMode: z.ZodEnum<{
319
352
  }>;
320
353
  type AppMode = z.infer<typeof AppMode>;
321
354
  declare const PaymentsWidgetQueryParams: z.ZodObject<{
322
- ownerAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
323
- funderAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
355
+ ownerAddress: z.ZodOptional<z.ZodString>;
356
+ funderAddress: z.ZodOptional<z.ZodString>;
324
357
  appMode: z.ZodOptional<z.ZodEnum<{
325
358
  EMBED: "EMBED";
326
359
  MODAL: "MODAL";
@@ -333,7 +366,7 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
333
366
  hostOrigin: z.ZodNullable<z.ZodURL>;
334
367
  ipAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodIPv4, z.ZodIPv6]>>;
335
368
  featureFlags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
336
- onramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
369
+ onramps: z.ZodOptional<z.ZodArray<z.ZodString>>;
337
370
  offramps: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>>;
338
371
  sandbox: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
339
372
  features: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -344,11 +377,11 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
344
377
  inputs: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
345
378
  outputs: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
346
379
  apiKey: z.ZodString;
347
- destinationAddress: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
348
- widgetVersion: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
380
+ destinationAddress: z.ZodOptional<z.ZodString>;
381
+ widgetVersion: z.ZodOptional<z.ZodEnum<{
349
382
  1: "1";
350
383
  2: "2";
351
- }>>>;
384
+ }>>;
352
385
  customStyles: z.ZodOptional<z.ZodObject<{
353
386
  primaryColor: z.ZodOptional<z.ZodString>;
354
387
  backgroundColor: z.ZodOptional<z.ZodString>;
@@ -373,6 +406,12 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
373
406
  AUTO: "AUTO";
374
407
  MEDIUM: "MEDIUM";
375
408
  }>>;
409
+ baseFontSize: z.ZodOptional<z.ZodString>;
410
+ baseBorderRadius: z.ZodOptional<z.ZodString>;
411
+ backgroundStyle: z.ZodOptional<z.ZodEnum<{
412
+ BLUR: "BLUR";
413
+ OFF: "OFF";
414
+ }>>;
376
415
  logo: z.ZodOptional<z.ZodObject<{
377
416
  src: z.ZodURL;
378
417
  alt: z.ZodString;
@@ -381,11 +420,11 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
381
420
  }, z.core.$strip>>;
382
421
  }, z.core.$strip>>;
383
422
  targetElementId: z.ZodOptional<z.ZodString>;
384
- windowType: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
423
+ windowType: z.ZodOptional<z.ZodEnum<{
385
424
  EMBED: "EMBED";
386
425
  POPUP: "POPUP";
387
426
  MODAL: "MODAL";
388
- }>>>;
427
+ }>>;
389
428
  redirects: z.ZodOptional<z.ZodObject<{
390
429
  redirectUrl: z.ZodURL;
391
430
  ctaText: z.ZodString;
@@ -399,13 +438,15 @@ declare const PaymentsWidgetQueryParams: z.ZodObject<{
399
438
  "open-exchange": "open-exchange";
400
439
  cash: "cash";
401
440
  "open-cash": "open-cash";
441
+ deposit: "deposit";
402
442
  }>>>;
403
443
  fontName: z.ZodOptional<z.ZodEnum<{
404
444
  haffer: "haffer";
405
445
  "wudoo-mono": "wudoo-mono";
446
+ inter: "inter";
406
447
  }>>;
407
- headerTitle: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
408
- showSkeleton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
448
+ headerTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
449
+ showSkeleton: z.ZodOptional<z.ZodBoolean>;
409
450
  skeletonBackgroundColor: z.ZodOptional<z.ZodString>;
410
451
  }, z.core.$strip>;
411
452
  type PaymentsWidgetQueryParams = z.infer<typeof PaymentsWidgetQueryParams>;
@@ -524,6 +565,7 @@ type InitConfig = z.input<typeof InitConfig> & {
524
565
  *
525
566
  * @param {Asset[]=} params.inputs {{@link Asset}[]} (optional) The input assets for the widget.
526
567
  * @param {Asset[]=} params.outputs {{@link Asset}[]} (optional) The output assets for the widget.
568
+ * @param {string[]=} params.onramps {string[]} (optional) Array of onramp provider names to filter/display in the widget.
527
569
  * @param {RampName[]=} params.onramps {{@link RampName}[]} (optional) The onramps for the widget.
528
570
  * @param {RampName[]=} params.offramps {{@link RampName}[]} (optional) The offramps for the widget.
529
571
  *
@@ -534,7 +576,7 @@ type InitConfig = z.input<typeof InitConfig> & {
534
576
  * @param {Role=} params.owner {{@link Role}} (optional) The owner that would have full access to payments workflow.
535
577
  * @param {Role=} params.funder {{@link Role}} (optional) The funder that initiates the funding.
536
578
  * @param {PaymentCategoryOrder=} params.paymentCategoryOrder {{@link PaymentCategoryOrder}} (optional) On the quote page, these are three displayed paymentcategories (empty or three elements).
537
- * @param {FontName=} params.fontName {{@link FontName}} (optional) The font name to use in the widget (haffer or wudoo-mono). Defaults to haffer.
579
+ * @param {FontName=} params.fontName {{@link FontName}} (optional) The font name to use in the widget (haffer or wudoo-mono or inter). Defaults to haffer.
538
580
  * @param {HeaderTitle=} params.headerTitle {{@link HeaderTitle}} (optional) The header title to use in the widget (Buy or string). Defaults to Buy.
539
581
  *
540
582
  * @param {StatusCallback=} params.statusCallback {{@link StatusCallback}} (optional) Callback to receive status events.
@@ -598,5 +640,5 @@ declare const initializeClient: (config: InitConfig, ...args: any[]) => Promise<
598
640
  */
599
641
  declare const destroyClient: () => void;
600
642
 
601
- export { AppMode, BorderStyle, CustomStyles, FontName, FontWeight, HeaderTitle, InitConfig, MessageType, OrderStatus, PaymentCategoryGrouping, PaymentCategoryOrder, PaymentsWidgetQueryParams, PaymentsWidgetSDKParams, TextMode, WindowType, deserializeQueryParams, destroyClient, getPaymentsWidgetUrl, initializeClient, openHallidayPayments, serializeQueryParams };
643
+ export { AppMode, BackgroundStyle, BorderStyle, CssFontSize, CustomStyles, FontName, FontWeight, HeaderTitle, InitConfig, MessageType, OrderStatus, PaymentCategoryGrouping, PaymentCategoryOrder, PaymentsWidgetQueryParams, PaymentsWidgetSDKParams, TextMode, WindowType, deserializeQueryParams, destroyClient, getPaymentsWidgetUrl, initializeClient, openHallidayPayments, serializeQueryParams };
602
644
  export type { Message, MessageResponse };