@capgo/capacitor-pay 8.0.12 → 8.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.
- package/README.md +232 -22
- package/android/src/main/java/app/capgo/pay/PayPlugin.java +1 -1
- package/dist/docs.json +497 -3
- package/dist/esm/definitions.d.ts +138 -3
- package/dist/esm/definitions.js.map +1 -1
- package/docs/apple-pay-setup.md +40 -0
- package/docs/google-pay-setup.md +54 -0
- package/ios/Sources/PayPlugin/PayPlugin.swift +219 -2
- package/package.json +7 -7
package/dist/docs.json
CHANGED
|
@@ -213,10 +213,159 @@
|
|
|
213
213
|
"name": "isReadyToPayRequest",
|
|
214
214
|
"tags": [],
|
|
215
215
|
"docs": "Raw `IsReadyToPayRequest` JSON as defined by the Google Pay API.\nSupply the card networks and auth methods you intend to support at runtime.",
|
|
216
|
+
"complexTypes": [
|
|
217
|
+
"GooglePayIsReadyToPayRequest"
|
|
218
|
+
],
|
|
219
|
+
"type": "GooglePayIsReadyToPayRequest"
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "GooglePayIsReadyToPayRequest",
|
|
225
|
+
"slug": "googlepayisreadytopayrequest",
|
|
226
|
+
"docs": "Typed helper for the Google Pay `IsReadyToPayRequest` JSON.\nThe native Android implementation still accepts arbitrary JSON (forward compatible).",
|
|
227
|
+
"tags": [],
|
|
228
|
+
"methods": [],
|
|
229
|
+
"properties": [
|
|
230
|
+
{
|
|
231
|
+
"name": "allowedPaymentMethods",
|
|
232
|
+
"tags": [],
|
|
233
|
+
"docs": "The list of payment methods you want to check for readiness.",
|
|
234
|
+
"complexTypes": [
|
|
235
|
+
"GooglePayAllowedPaymentMethod"
|
|
236
|
+
],
|
|
237
|
+
"type": "GooglePayAllowedPaymentMethod[] | undefined"
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "GooglePayAllowedPaymentMethod",
|
|
243
|
+
"slug": "googlepayallowedpaymentmethod",
|
|
244
|
+
"docs": "",
|
|
245
|
+
"tags": [],
|
|
246
|
+
"methods": [],
|
|
247
|
+
"properties": [
|
|
248
|
+
{
|
|
249
|
+
"name": "type",
|
|
250
|
+
"tags": [],
|
|
251
|
+
"docs": "",
|
|
216
252
|
"complexTypes": [
|
|
217
253
|
"Record"
|
|
218
254
|
],
|
|
219
|
-
"type": "Record<
|
|
255
|
+
"type": "(string & Record<never, never>) | 'CARD' | undefined"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "parameters",
|
|
259
|
+
"tags": [],
|
|
260
|
+
"docs": "",
|
|
261
|
+
"complexTypes": [
|
|
262
|
+
"GooglePayCardPaymentMethodParameters"
|
|
263
|
+
],
|
|
264
|
+
"type": "GooglePayCardPaymentMethodParameters"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"name": "tokenizationSpecification",
|
|
268
|
+
"tags": [],
|
|
269
|
+
"docs": "",
|
|
270
|
+
"complexTypes": [
|
|
271
|
+
"GooglePayTokenizationSpecification"
|
|
272
|
+
],
|
|
273
|
+
"type": "GooglePayTokenizationSpecification"
|
|
274
|
+
}
|
|
275
|
+
]
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "GooglePayCardPaymentMethodParameters",
|
|
279
|
+
"slug": "googlepaycardpaymentmethodparameters",
|
|
280
|
+
"docs": "",
|
|
281
|
+
"tags": [],
|
|
282
|
+
"methods": [],
|
|
283
|
+
"properties": [
|
|
284
|
+
{
|
|
285
|
+
"name": "allowedAuthMethods",
|
|
286
|
+
"tags": [],
|
|
287
|
+
"docs": "",
|
|
288
|
+
"complexTypes": [
|
|
289
|
+
"GooglePayAuthMethod"
|
|
290
|
+
],
|
|
291
|
+
"type": "GooglePayAuthMethod[] | undefined"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "allowedCardNetworks",
|
|
295
|
+
"tags": [],
|
|
296
|
+
"docs": "",
|
|
297
|
+
"complexTypes": [
|
|
298
|
+
"GooglePayCardNetwork"
|
|
299
|
+
],
|
|
300
|
+
"type": "GooglePayCardNetwork[] | undefined"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "billingAddressRequired",
|
|
304
|
+
"tags": [],
|
|
305
|
+
"docs": "",
|
|
306
|
+
"complexTypes": [],
|
|
307
|
+
"type": "boolean | undefined"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "billingAddressParameters",
|
|
311
|
+
"tags": [],
|
|
312
|
+
"docs": "",
|
|
313
|
+
"complexTypes": [
|
|
314
|
+
"GooglePayBillingAddressParameters"
|
|
315
|
+
],
|
|
316
|
+
"type": "GooglePayBillingAddressParameters"
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "GooglePayBillingAddressParameters",
|
|
322
|
+
"slug": "googlepaybillingaddressparameters",
|
|
323
|
+
"docs": "",
|
|
324
|
+
"tags": [],
|
|
325
|
+
"methods": [],
|
|
326
|
+
"properties": [
|
|
327
|
+
{
|
|
328
|
+
"name": "format",
|
|
329
|
+
"tags": [],
|
|
330
|
+
"docs": "",
|
|
331
|
+
"complexTypes": [
|
|
332
|
+
"Record"
|
|
333
|
+
],
|
|
334
|
+
"type": "'MIN' | 'FULL' | (string & Record<never, never>) | undefined"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "phoneNumberRequired",
|
|
338
|
+
"tags": [],
|
|
339
|
+
"docs": "",
|
|
340
|
+
"complexTypes": [],
|
|
341
|
+
"type": "boolean | undefined"
|
|
342
|
+
}
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"name": "GooglePayTokenizationSpecification",
|
|
347
|
+
"slug": "googlepaytokenizationspecification",
|
|
348
|
+
"docs": "",
|
|
349
|
+
"tags": [],
|
|
350
|
+
"methods": [],
|
|
351
|
+
"properties": [
|
|
352
|
+
{
|
|
353
|
+
"name": "type",
|
|
354
|
+
"tags": [],
|
|
355
|
+
"docs": "",
|
|
356
|
+
"complexTypes": [
|
|
357
|
+
"Record"
|
|
358
|
+
],
|
|
359
|
+
"type": "(string & Record<never, never>) | 'PAYMENT_GATEWAY' | 'DIRECT' | undefined"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "parameters",
|
|
363
|
+
"tags": [],
|
|
364
|
+
"docs": "",
|
|
365
|
+
"complexTypes": [
|
|
366
|
+
"Record"
|
|
367
|
+
],
|
|
368
|
+
"type": "Record<string, string>"
|
|
220
369
|
}
|
|
221
370
|
]
|
|
222
371
|
},
|
|
@@ -491,6 +640,15 @@
|
|
|
491
640
|
"docs": "Optional opaque application data passed back in the payment token.",
|
|
492
641
|
"complexTypes": [],
|
|
493
642
|
"type": "string | undefined"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"name": "recurringPaymentRequest",
|
|
646
|
+
"tags": [],
|
|
647
|
+
"docs": "Recurring payment configuration (iOS 16+).",
|
|
648
|
+
"complexTypes": [
|
|
649
|
+
"ApplePayRecurringPaymentRequest"
|
|
650
|
+
],
|
|
651
|
+
"type": "ApplePayRecurringPaymentRequest"
|
|
494
652
|
}
|
|
495
653
|
]
|
|
496
654
|
},
|
|
@@ -526,6 +684,100 @@
|
|
|
526
684
|
}
|
|
527
685
|
]
|
|
528
686
|
},
|
|
687
|
+
{
|
|
688
|
+
"name": "ApplePayRecurringPaymentRequest",
|
|
689
|
+
"slug": "applepayrecurringpaymentrequest",
|
|
690
|
+
"docs": "",
|
|
691
|
+
"tags": [],
|
|
692
|
+
"methods": [],
|
|
693
|
+
"properties": [
|
|
694
|
+
{
|
|
695
|
+
"name": "paymentDescription",
|
|
696
|
+
"tags": [],
|
|
697
|
+
"docs": "A description for the recurring payment shown in the Apple Pay sheet.",
|
|
698
|
+
"complexTypes": [],
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"name": "regularBilling",
|
|
703
|
+
"tags": [],
|
|
704
|
+
"docs": "The recurring billing item (for example your subscription).",
|
|
705
|
+
"complexTypes": [
|
|
706
|
+
"ApplePayRecurringPaymentSummaryItem"
|
|
707
|
+
],
|
|
708
|
+
"type": "ApplePayRecurringPaymentSummaryItem"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "managementURL",
|
|
712
|
+
"tags": [],
|
|
713
|
+
"docs": "URL where the user can manage the recurring payment (cancel, update, etc).",
|
|
714
|
+
"complexTypes": [],
|
|
715
|
+
"type": "string"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"name": "billingAgreement",
|
|
719
|
+
"tags": [],
|
|
720
|
+
"docs": "Optional billing agreement text shown to the user.",
|
|
721
|
+
"complexTypes": [],
|
|
722
|
+
"type": "string | undefined"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "tokenNotificationURL",
|
|
726
|
+
"tags": [],
|
|
727
|
+
"docs": "Optional URL where Apple can send token update notifications.",
|
|
728
|
+
"complexTypes": [],
|
|
729
|
+
"type": "string | undefined"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "trialBilling",
|
|
733
|
+
"tags": [],
|
|
734
|
+
"docs": "Optional trial billing item (for example a free trial period).",
|
|
735
|
+
"complexTypes": [
|
|
736
|
+
"ApplePayRecurringPaymentSummaryItem"
|
|
737
|
+
],
|
|
738
|
+
"type": "ApplePayRecurringPaymentSummaryItem"
|
|
739
|
+
}
|
|
740
|
+
]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"name": "ApplePayRecurringPaymentSummaryItem",
|
|
744
|
+
"slug": "applepayrecurringpaymentsummaryitem",
|
|
745
|
+
"docs": "",
|
|
746
|
+
"tags": [],
|
|
747
|
+
"methods": [],
|
|
748
|
+
"properties": [
|
|
749
|
+
{
|
|
750
|
+
"name": "intervalUnit",
|
|
751
|
+
"tags": [],
|
|
752
|
+
"docs": "Unit of time between recurring payments.",
|
|
753
|
+
"complexTypes": [
|
|
754
|
+
"ApplePayRecurringPaymentIntervalUnit"
|
|
755
|
+
],
|
|
756
|
+
"type": "ApplePayRecurringPaymentIntervalUnit"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "intervalCount",
|
|
760
|
+
"tags": [],
|
|
761
|
+
"docs": "Number of `intervalUnit` units between recurring payments (for example `1` month, `2` weeks).",
|
|
762
|
+
"complexTypes": [],
|
|
763
|
+
"type": "number"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "startDate",
|
|
767
|
+
"tags": [],
|
|
768
|
+
"docs": "Start date of the recurring period.\n\nOn supported platforms this may be either:\n- a `number` representing milliseconds since Unix epoch, or\n- a `string` in a date format accepted by the native implementation\n (for example an ISO 8601 date-time string or a `yyyy-MM-dd` date string).",
|
|
769
|
+
"complexTypes": [],
|
|
770
|
+
"type": "string | number | undefined"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "endDate",
|
|
774
|
+
"tags": [],
|
|
775
|
+
"docs": "End date of the recurring period.\n\nOn supported platforms this may be either:\n- a `number` representing milliseconds since Unix epoch, or\n- a `string` in a date format accepted by the native implementation\n (for example an ISO 8601 date-time string or a `yyyy-MM-dd` date string).",
|
|
776
|
+
"complexTypes": [],
|
|
777
|
+
"type": "string | number | undefined"
|
|
778
|
+
}
|
|
779
|
+
]
|
|
780
|
+
},
|
|
529
781
|
{
|
|
530
782
|
"name": "GooglePayPaymentOptions",
|
|
531
783
|
"slug": "googlepaypaymentoptions",
|
|
@@ -547,9 +799,121 @@
|
|
|
547
799
|
"tags": [],
|
|
548
800
|
"docs": "Raw `PaymentDataRequest` JSON as defined by the Google Pay API.\nProvide transaction details, merchant info, and tokenization parameters.",
|
|
549
801
|
"complexTypes": [
|
|
550
|
-
"
|
|
802
|
+
"GooglePayPaymentDataRequest"
|
|
551
803
|
],
|
|
552
|
-
"type": "
|
|
804
|
+
"type": "GooglePayPaymentDataRequest"
|
|
805
|
+
}
|
|
806
|
+
]
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"name": "GooglePayPaymentDataRequest",
|
|
810
|
+
"slug": "googlepaypaymentdatarequest",
|
|
811
|
+
"docs": "Typed helper for the Google Pay `PaymentDataRequest` JSON.\nThe native Android implementation still accepts arbitrary JSON (forward compatible).",
|
|
812
|
+
"tags": [],
|
|
813
|
+
"methods": [],
|
|
814
|
+
"properties": [
|
|
815
|
+
{
|
|
816
|
+
"name": "apiVersion",
|
|
817
|
+
"tags": [],
|
|
818
|
+
"docs": "Google Pay API version, typically `2`.",
|
|
819
|
+
"complexTypes": [],
|
|
820
|
+
"type": "number | undefined"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"name": "apiVersionMinor",
|
|
824
|
+
"tags": [],
|
|
825
|
+
"docs": "Google Pay API minor version, typically `0`.",
|
|
826
|
+
"complexTypes": [],
|
|
827
|
+
"type": "number | undefined"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"name": "allowedPaymentMethods",
|
|
831
|
+
"tags": [],
|
|
832
|
+
"docs": "Allowed payment method configurations.",
|
|
833
|
+
"complexTypes": [
|
|
834
|
+
"GooglePayAllowedPaymentMethod"
|
|
835
|
+
],
|
|
836
|
+
"type": "GooglePayAllowedPaymentMethod[] | undefined"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"name": "merchantInfo",
|
|
840
|
+
"tags": [],
|
|
841
|
+
"docs": "Merchant information displayed in the Google Pay sheet.",
|
|
842
|
+
"complexTypes": [
|
|
843
|
+
"GooglePayMerchantInfo"
|
|
844
|
+
],
|
|
845
|
+
"type": "GooglePayMerchantInfo"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"name": "transactionInfo",
|
|
849
|
+
"tags": [],
|
|
850
|
+
"docs": "Transaction details (amount, currency, etc).",
|
|
851
|
+
"complexTypes": [
|
|
852
|
+
"GooglePayTransactionInfo"
|
|
853
|
+
],
|
|
854
|
+
"type": "GooglePayTransactionInfo"
|
|
855
|
+
}
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"name": "GooglePayMerchantInfo",
|
|
860
|
+
"slug": "googlepaymerchantinfo",
|
|
861
|
+
"docs": "",
|
|
862
|
+
"tags": [],
|
|
863
|
+
"methods": [],
|
|
864
|
+
"properties": [
|
|
865
|
+
{
|
|
866
|
+
"name": "merchantId",
|
|
867
|
+
"tags": [],
|
|
868
|
+
"docs": "",
|
|
869
|
+
"complexTypes": [],
|
|
870
|
+
"type": "string | undefined"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"name": "merchantName",
|
|
874
|
+
"tags": [],
|
|
875
|
+
"docs": "",
|
|
876
|
+
"complexTypes": [],
|
|
877
|
+
"type": "string | undefined"
|
|
878
|
+
}
|
|
879
|
+
]
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"name": "GooglePayTransactionInfo",
|
|
883
|
+
"slug": "googlepaytransactioninfo",
|
|
884
|
+
"docs": "",
|
|
885
|
+
"tags": [],
|
|
886
|
+
"methods": [],
|
|
887
|
+
"properties": [
|
|
888
|
+
{
|
|
889
|
+
"name": "totalPriceStatus",
|
|
890
|
+
"tags": [],
|
|
891
|
+
"docs": "",
|
|
892
|
+
"complexTypes": [
|
|
893
|
+
"GooglePayTotalPriceStatus"
|
|
894
|
+
],
|
|
895
|
+
"type": "GooglePayTotalPriceStatus"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"name": "totalPrice",
|
|
899
|
+
"tags": [],
|
|
900
|
+
"docs": "",
|
|
901
|
+
"complexTypes": [],
|
|
902
|
+
"type": "string | undefined"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "currencyCode",
|
|
906
|
+
"tags": [],
|
|
907
|
+
"docs": "",
|
|
908
|
+
"complexTypes": [],
|
|
909
|
+
"type": "string | undefined"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "countryCode",
|
|
913
|
+
"tags": [],
|
|
914
|
+
"docs": "",
|
|
915
|
+
"complexTypes": [],
|
|
916
|
+
"type": "string | undefined"
|
|
553
917
|
}
|
|
554
918
|
]
|
|
555
919
|
}
|
|
@@ -584,6 +948,10 @@
|
|
|
584
948
|
"text": "'AmEx'",
|
|
585
949
|
"complexTypes": []
|
|
586
950
|
},
|
|
951
|
+
{
|
|
952
|
+
"text": "'amex'",
|
|
953
|
+
"complexTypes": []
|
|
954
|
+
},
|
|
587
955
|
{
|
|
588
956
|
"text": "'Bancomat'",
|
|
589
957
|
"complexTypes": []
|
|
@@ -620,6 +988,10 @@
|
|
|
620
988
|
"text": "'Discover'",
|
|
621
989
|
"complexTypes": []
|
|
622
990
|
},
|
|
991
|
+
{
|
|
992
|
+
"text": "'discover'",
|
|
993
|
+
"complexTypes": []
|
|
994
|
+
},
|
|
623
995
|
{
|
|
624
996
|
"text": "'Eftpos'",
|
|
625
997
|
"complexTypes": []
|
|
@@ -656,6 +1028,10 @@
|
|
|
656
1028
|
"text": "'JCB'",
|
|
657
1029
|
"complexTypes": []
|
|
658
1030
|
},
|
|
1031
|
+
{
|
|
1032
|
+
"text": "'jcb'",
|
|
1033
|
+
"complexTypes": []
|
|
1034
|
+
},
|
|
659
1035
|
{
|
|
660
1036
|
"text": "'mada'",
|
|
661
1037
|
"complexTypes": []
|
|
@@ -664,10 +1040,18 @@
|
|
|
664
1040
|
"text": "'Maestro'",
|
|
665
1041
|
"complexTypes": []
|
|
666
1042
|
},
|
|
1043
|
+
{
|
|
1044
|
+
"text": "'maestro'",
|
|
1045
|
+
"complexTypes": []
|
|
1046
|
+
},
|
|
667
1047
|
{
|
|
668
1048
|
"text": "'MasterCard'",
|
|
669
1049
|
"complexTypes": []
|
|
670
1050
|
},
|
|
1051
|
+
{
|
|
1052
|
+
"text": "'masterCard'",
|
|
1053
|
+
"complexTypes": []
|
|
1054
|
+
},
|
|
671
1055
|
{
|
|
672
1056
|
"text": "'Meeza'",
|
|
673
1057
|
"complexTypes": []
|
|
@@ -708,9 +1092,17 @@
|
|
|
708
1092
|
"text": "'Visa'",
|
|
709
1093
|
"complexTypes": []
|
|
710
1094
|
},
|
|
1095
|
+
{
|
|
1096
|
+
"text": "'visa'",
|
|
1097
|
+
"complexTypes": []
|
|
1098
|
+
},
|
|
711
1099
|
{
|
|
712
1100
|
"text": "'VPay'",
|
|
713
1101
|
"complexTypes": []
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"text": "'vPay'",
|
|
1105
|
+
"complexTypes": []
|
|
714
1106
|
}
|
|
715
1107
|
]
|
|
716
1108
|
},
|
|
@@ -743,6 +1135,60 @@
|
|
|
743
1135
|
}
|
|
744
1136
|
]
|
|
745
1137
|
},
|
|
1138
|
+
{
|
|
1139
|
+
"name": "GooglePayAuthMethod",
|
|
1140
|
+
"slug": "googlepayauthmethod",
|
|
1141
|
+
"docs": "",
|
|
1142
|
+
"types": [
|
|
1143
|
+
{
|
|
1144
|
+
"text": "'PAN_ONLY'",
|
|
1145
|
+
"complexTypes": []
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"text": "'CRYPTOGRAM_3DS'",
|
|
1149
|
+
"complexTypes": []
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"text": "(string & Record<never, never>)",
|
|
1153
|
+
"complexTypes": [
|
|
1154
|
+
"Record"
|
|
1155
|
+
]
|
|
1156
|
+
}
|
|
1157
|
+
]
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"name": "GooglePayCardNetwork",
|
|
1161
|
+
"slug": "googlepaycardnetwork",
|
|
1162
|
+
"docs": "",
|
|
1163
|
+
"types": [
|
|
1164
|
+
{
|
|
1165
|
+
"text": "'AMEX'",
|
|
1166
|
+
"complexTypes": []
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"text": "'DISCOVER'",
|
|
1170
|
+
"complexTypes": []
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"text": "'JCB'",
|
|
1174
|
+
"complexTypes": []
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"text": "'MASTERCARD'",
|
|
1178
|
+
"complexTypes": []
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"text": "'VISA'",
|
|
1182
|
+
"complexTypes": []
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"text": "(string & Record<never, never>)",
|
|
1186
|
+
"complexTypes": [
|
|
1187
|
+
"Record"
|
|
1188
|
+
]
|
|
1189
|
+
}
|
|
1190
|
+
]
|
|
1191
|
+
},
|
|
746
1192
|
{
|
|
747
1193
|
"name": "Exclude",
|
|
748
1194
|
"slug": "exclude",
|
|
@@ -840,6 +1286,54 @@
|
|
|
840
1286
|
"complexTypes": []
|
|
841
1287
|
}
|
|
842
1288
|
]
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"name": "ApplePayRecurringPaymentIntervalUnit",
|
|
1292
|
+
"slug": "applepayrecurringpaymentintervalunit",
|
|
1293
|
+
"docs": "",
|
|
1294
|
+
"types": [
|
|
1295
|
+
{
|
|
1296
|
+
"text": "'day'",
|
|
1297
|
+
"complexTypes": []
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"text": "'week'",
|
|
1301
|
+
"complexTypes": []
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"text": "'month'",
|
|
1305
|
+
"complexTypes": []
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"text": "'year'",
|
|
1309
|
+
"complexTypes": []
|
|
1310
|
+
}
|
|
1311
|
+
]
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"name": "GooglePayTotalPriceStatus",
|
|
1315
|
+
"slug": "googlepaytotalpricestatus",
|
|
1316
|
+
"docs": "",
|
|
1317
|
+
"types": [
|
|
1318
|
+
{
|
|
1319
|
+
"text": "'NOT_CURRENTLY_KNOWN'",
|
|
1320
|
+
"complexTypes": []
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"text": "'ESTIMATED'",
|
|
1324
|
+
"complexTypes": []
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"text": "'FINAL'",
|
|
1328
|
+
"complexTypes": []
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"text": "(string & Record<never, never>)",
|
|
1332
|
+
"complexTypes": [
|
|
1333
|
+
"Record"
|
|
1334
|
+
]
|
|
1335
|
+
}
|
|
1336
|
+
]
|
|
843
1337
|
}
|
|
844
1338
|
],
|
|
845
1339
|
"pluginConfigs": []
|