@paypay/mini-app-js-sdk 2.54.0 → 2.56.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 (46) hide show
  1. package/dist/client/clientUtils.d.ts +2 -5
  2. package/dist/client/communicationWithCore.d.ts +2 -1
  3. package/dist/client/functions/coreWindowBridgeFunctions.d.ts +5 -0
  4. package/dist/client/supportedFunctionsList.d.ts +1 -1
  5. package/dist/client/windowBridgeFunctions/domFunctions.d.ts +7 -0
  6. package/dist/client/windowBridgeFunctions/index.d.ts +2 -0
  7. package/dist/client/windowBridgeFunctions/insertIframe.d.ts +11 -0
  8. package/dist/composition-api/usePaymentLabel.d.ts +27 -0
  9. package/dist/composition-api/usePaymentTypeTranslation.d.ts +19 -0
  10. package/dist/core/button/buttonFunctions/index.d.ts +1 -0
  11. package/dist/core/button/buttonFunctions/renderButtonUi.d.ts +17 -0
  12. package/dist/core/button/index.d.ts +3 -0
  13. package/dist/core/clientState.d.ts +3 -1
  14. package/dist/core/coreFunctions/index.d.ts +2 -0
  15. package/dist/core/coreFunctions/renderButton/index.d.ts +8 -0
  16. package/dist/core/coreFunctions/renderButton/renderButton.d.ts +6 -0
  17. package/dist/core/coreFunctions/renderButton/types.d.ts +31 -0
  18. package/dist/core/iframeVisibilityManager.d.ts +15 -0
  19. package/dist/environment-variables.d.ts +1 -0
  20. package/dist/mini-app-api.d.ts +0 -1
  21. package/dist/mini-app-js-sdk.browser.js +1 -1
  22. package/dist/mini-app-js-sdk.es.js +281 -211
  23. package/dist/model/bridge/render.d.ts +1 -1
  24. package/dist/model/bridge/renderLoginButton.d.ts +1 -1
  25. package/dist/model/bridge/renderPayButton.d.ts +4 -2
  26. package/dist/model/makePayment.d.ts +18 -0
  27. package/dist/package/lottie/lottie.d.ts +1 -1
  28. package/dist/resources/locales/payment/index.d.ts +499 -0
  29. package/dist/resources/locales/payment/ja.d.ts +249 -0
  30. package/dist/resources/locales/shared/index.d.ts +79 -0
  31. package/dist/resources/locales/shared/ja.d.ts +39 -0
  32. package/dist/types/init.d.ts +2 -0
  33. package/dist/types.d.ts +2 -0
  34. package/dist/utils/analytics.d.ts +2 -1
  35. package/dist/utils/clientCustomization.d.ts +3 -0
  36. package/dist/utils/getLanguage.d.ts +1 -2
  37. package/dist/utils/helper.d.ts +1 -1
  38. package/dist/utils/minimumJSSDKVersion.d.ts +1 -0
  39. package/dist/utils/userAgent.d.ts +1 -0
  40. package/dist/views/coupon/components/CouponAction/index.d.ts +2 -0
  41. package/dist/views/coupon/index.d.ts +2 -0
  42. package/dist/views/make-payment/store/util-for-handle-error.d.ts +11 -0
  43. package/dist/views/make-payment/store.d.ts +22056 -0
  44. package/dist/views/make-payment/utils/paymentMethod.d.ts +4 -0
  45. package/dist/views/registerPaymentFeatures/types.d.ts +1 -1
  46. package/package.json +1 -1
@@ -0,0 +1,499 @@
1
+ declare const _default: {
2
+ ja: {
3
+ payment: {
4
+ address: string;
5
+ insufficientAmount: string;
6
+ cancel: string;
7
+ noAddress: string;
8
+ change: string;
9
+ close: string;
10
+ noCashBack: string;
11
+ transactionId: string;
12
+ ppPointGuideMessage: string;
13
+ };
14
+ duplicate: {
15
+ cancel: string;
16
+ topHeader: string;
17
+ topText1: string;
18
+ topText2: string;
19
+ topAgreeButtonText: string;
20
+ };
21
+ birthdayConfirm: {
22
+ title: string;
23
+ title2: string;
24
+ desc: string;
25
+ desc1: string;
26
+ desc2: string;
27
+ desc3: string;
28
+ date: string;
29
+ primaryBtn: string;
30
+ cancelBtn: string;
31
+ };
32
+ birthdayConfirmError: {
33
+ title: string;
34
+ title2: string;
35
+ desc: string;
36
+ desc2: string;
37
+ helpBtn: string;
38
+ closeBtn: string;
39
+ };
40
+ cashbackDet: {
41
+ button1: string;
42
+ button2: string;
43
+ button3: string;
44
+ };
45
+ topContent: {
46
+ chargeTitle: string;
47
+ chargeLabel: string;
48
+ unavailable1: string;
49
+ unavailable2: string;
50
+ topupNotice: string;
51
+ topupLink: string;
52
+ return: string;
53
+ };
54
+ cashbackList: {
55
+ close: string;
56
+ condition: string;
57
+ };
58
+ newOffersBanner: {
59
+ title: string;
60
+ description: string;
61
+ };
62
+ ekyc: {
63
+ title: string;
64
+ link: string;
65
+ button1: string;
66
+ button2: string;
67
+ };
68
+ qr: {
69
+ titleEKYC: string;
70
+ bodyEKYC: string;
71
+ titleAddTopup: string;
72
+ bodyAddTopup: string;
73
+ close: string;
74
+ };
75
+ type: {
76
+ payment: {
77
+ title: string;
78
+ payAmount: string;
79
+ payAmountTaxExempt: string;
80
+ method: string;
81
+ selectMethod: string;
82
+ paying: string;
83
+ pay: string;
84
+ charge: string;
85
+ notice: string;
86
+ terms: null;
87
+ payLaterCCTerms: null;
88
+ duplicate: {
89
+ header: string;
90
+ text1: string;
91
+ text2: string;
92
+ agreeButtonText: string;
93
+ };
94
+ topContent: {
95
+ title: string;
96
+ loading: string;
97
+ amount: string;
98
+ };
99
+ desktopTitle: {
100
+ Payment: string;
101
+ paymentCompletion: string;
102
+ };
103
+ errorSheet: {
104
+ payPeriod: string;
105
+ };
106
+ ekyc: {
107
+ description: string;
108
+ };
109
+ complete: {
110
+ title: string;
111
+ titlePreAuth: string;
112
+ };
113
+ closeConfirmation: {
114
+ title: string;
115
+ confirm: string;
116
+ cancel: string;
117
+ };
118
+ };
119
+ donation: {
120
+ title: string;
121
+ payAmount: string;
122
+ payAmountTaxExempt: string;
123
+ method: string;
124
+ selectMethod: string;
125
+ paying: string;
126
+ pay: string;
127
+ charge: string;
128
+ notice: string;
129
+ terms: string[];
130
+ payLaterCCTerms: string[];
131
+ duplicate: {
132
+ header: string;
133
+ text1: string;
134
+ text2: string;
135
+ agreeButtonText: string;
136
+ };
137
+ topContent: {
138
+ title: string;
139
+ loading: string;
140
+ amount: string;
141
+ };
142
+ desktopTitle: {
143
+ Payment: string;
144
+ paymentCompletion: string;
145
+ };
146
+ errorSheet: {
147
+ payPeriod: string;
148
+ };
149
+ ekyc: {
150
+ description: string;
151
+ };
152
+ complete: {
153
+ title: string;
154
+ titlePreAuth: string;
155
+ };
156
+ closeConfirmation: {
157
+ title: string;
158
+ confirm: string;
159
+ cancel: string;
160
+ };
161
+ };
162
+ remittance: {
163
+ title: string;
164
+ payAmount: string;
165
+ payAmountTaxExempt: string;
166
+ method: string;
167
+ selectMethod: string;
168
+ paying: string;
169
+ pay: string;
170
+ charge: string;
171
+ notice: string;
172
+ terms: string[];
173
+ payLaterCCTerms: string[];
174
+ duplicate: {
175
+ header: string;
176
+ text1: string;
177
+ text2: string;
178
+ agreeButtonText: string;
179
+ };
180
+ topContent: {
181
+ title: string;
182
+ loading: string;
183
+ amount: string;
184
+ };
185
+ desktopTitle: {
186
+ Payment: string;
187
+ paymentCompletion: string;
188
+ };
189
+ errorSheet: {
190
+ payPeriod: string;
191
+ };
192
+ ekyc: {
193
+ description: string;
194
+ };
195
+ complete: {
196
+ title: string;
197
+ titlePreAuth: string;
198
+ };
199
+ closeConfirmation: {
200
+ title: string;
201
+ confirm: string;
202
+ cancel: string;
203
+ };
204
+ };
205
+ deposit: {
206
+ title: string;
207
+ payAmount: string;
208
+ payAmountTaxExempt: string;
209
+ method: string;
210
+ selectMethod: string;
211
+ paying: string;
212
+ pay: string;
213
+ charge: string;
214
+ notice: string;
215
+ terms: string[];
216
+ payLaterCCTerms: null;
217
+ duplicate: {
218
+ header: string;
219
+ text1: string;
220
+ text2: string;
221
+ agreeButtonText: string;
222
+ };
223
+ topContent: {
224
+ title: string;
225
+ loading: string;
226
+ amount: string;
227
+ };
228
+ desktopTitle: {
229
+ Payment: string;
230
+ paymentCompletion: string;
231
+ };
232
+ errorSheet: {
233
+ payPeriod: string;
234
+ };
235
+ ekyc: {
236
+ description: string;
237
+ };
238
+ complete: {
239
+ title: string;
240
+ titlePreAuth: string;
241
+ };
242
+ closeConfirmation: {
243
+ title: string;
244
+ confirm: string;
245
+ cancel: string;
246
+ };
247
+ };
248
+ };
249
+ };
250
+ en: {
251
+ payment: {
252
+ address: string;
253
+ insufficientAmount: string;
254
+ cancel: string;
255
+ noAddress: string;
256
+ change: string;
257
+ close: string;
258
+ noCashBack: string;
259
+ transactionId: string;
260
+ ppPointGuideMessage: string;
261
+ };
262
+ duplicate: {
263
+ cancel: string;
264
+ topHeader: string;
265
+ topText1: string;
266
+ topText2: string;
267
+ topAgreeButtonText: string;
268
+ };
269
+ birthdayConfirm: {
270
+ title: string;
271
+ title2: string;
272
+ desc: string;
273
+ desc1: string;
274
+ desc2: string;
275
+ desc3: string;
276
+ date: string;
277
+ primaryBtn: string;
278
+ cancelBtn: string;
279
+ };
280
+ birthdayConfirmError: {
281
+ title: string;
282
+ title2: string;
283
+ desc: string;
284
+ desc2: string;
285
+ helpBtn: string;
286
+ closeBtn: string;
287
+ };
288
+ cashbackDet: {
289
+ button1: string;
290
+ button2: string;
291
+ button3: string;
292
+ };
293
+ topContent: {
294
+ chargeTitle: string;
295
+ chargeLabel: string;
296
+ unavailable1: string;
297
+ unavailable2: string;
298
+ topupNotice: string;
299
+ topupLink: string;
300
+ return: string;
301
+ };
302
+ cashbackList: {
303
+ close: string;
304
+ condition: string;
305
+ };
306
+ newOffersBanner: {
307
+ title: string;
308
+ description: string;
309
+ };
310
+ ekyc: {
311
+ title: string;
312
+ link: string;
313
+ button1: string;
314
+ button2: string;
315
+ };
316
+ qr: {
317
+ titleEKYC: string;
318
+ bodyEKYC: string;
319
+ titleAddTopup: string;
320
+ bodyAddTopup: string;
321
+ close: string;
322
+ };
323
+ type: {
324
+ payment: {
325
+ title: string;
326
+ payAmount: string;
327
+ payAmountTaxExempt: string;
328
+ method: string;
329
+ selectMethod: string;
330
+ paying: string;
331
+ pay: string;
332
+ charge: string;
333
+ notice: string;
334
+ terms: null;
335
+ payLaterCCTerms: null;
336
+ duplicate: {
337
+ header: string;
338
+ text1: string;
339
+ text2: string;
340
+ agreeButtonText: string;
341
+ };
342
+ topContent: {
343
+ title: string;
344
+ loading: string;
345
+ amount: string;
346
+ };
347
+ desktopTitle: {
348
+ Payment: string;
349
+ paymentCompletion: string;
350
+ };
351
+ errorSheet: {
352
+ payPeriod: string;
353
+ };
354
+ ekyc: {
355
+ description: string;
356
+ };
357
+ complete: {
358
+ title: string;
359
+ titlePreAuth: string;
360
+ };
361
+ closeConfirmation: {
362
+ title: string;
363
+ confirm: string;
364
+ cancel: string;
365
+ };
366
+ };
367
+ donation: {
368
+ title: string;
369
+ payAmount: string;
370
+ payAmountTaxExempt: string;
371
+ method: string;
372
+ selectMethod: string;
373
+ paying: string;
374
+ pay: string;
375
+ charge: string;
376
+ notice: string;
377
+ terms: string[];
378
+ payLaterCCTerms: string[];
379
+ duplicate: {
380
+ header: string;
381
+ text1: string;
382
+ text2: string;
383
+ agreeButtonText: string;
384
+ };
385
+ topContent: {
386
+ title: string;
387
+ loading: string;
388
+ amount: string;
389
+ };
390
+ desktopTitle: {
391
+ Payment: string;
392
+ paymentCompletion: string;
393
+ };
394
+ errorSheet: {
395
+ payPeriod: string;
396
+ };
397
+ ekyc: {
398
+ description: string;
399
+ };
400
+ complete: {
401
+ title: string;
402
+ titlePreAuth: string;
403
+ };
404
+ closeConfirmation: {
405
+ title: string;
406
+ confirm: string;
407
+ cancel: string;
408
+ };
409
+ };
410
+ remittance: {
411
+ title: string;
412
+ payAmount: string;
413
+ payAmountTaxExempt: string;
414
+ method: string;
415
+ selectMethod: string;
416
+ paying: string;
417
+ pay: string;
418
+ charge: string;
419
+ notice: string;
420
+ terms: string[];
421
+ payLaterCCTerms: string[];
422
+ duplicate: {
423
+ header: string;
424
+ text1: string;
425
+ text2: string;
426
+ agreeButtonText: string;
427
+ };
428
+ topContent: {
429
+ title: string;
430
+ loading: string;
431
+ amount: string;
432
+ };
433
+ desktopTitle: {
434
+ Payment: string;
435
+ paymentCompletion: string;
436
+ };
437
+ errorSheet: {
438
+ payPeriod: string;
439
+ };
440
+ ekyc: {
441
+ description: string;
442
+ };
443
+ complete: {
444
+ title: string;
445
+ titlePreAuth: string;
446
+ };
447
+ closeConfirmation: {
448
+ title: string;
449
+ confirm: string;
450
+ cancel: string;
451
+ };
452
+ };
453
+ deposit: {
454
+ title: string;
455
+ payAmount: string;
456
+ payAmountTaxExempt: string;
457
+ method: string;
458
+ selectMethod: string;
459
+ paying: string;
460
+ pay: string;
461
+ charge: string;
462
+ notice: string;
463
+ terms: string[];
464
+ payLaterCCTerms: null;
465
+ duplicate: {
466
+ header: string;
467
+ text1: string;
468
+ text2: string;
469
+ agreeButtonText: string;
470
+ };
471
+ topContent: {
472
+ title: string;
473
+ loading: string;
474
+ amount: string;
475
+ };
476
+ desktopTitle: {
477
+ Payment: string;
478
+ paymentCompletion: string;
479
+ };
480
+ errorSheet: {
481
+ payPeriod: string;
482
+ };
483
+ ekyc: {
484
+ description: string;
485
+ };
486
+ complete: {
487
+ title: string;
488
+ titlePreAuth: string;
489
+ };
490
+ closeConfirmation: {
491
+ title: string;
492
+ confirm: string;
493
+ cancel: string;
494
+ };
495
+ };
496
+ };
497
+ };
498
+ };
499
+ export default _default;