@pisell/private-materials 6.6.44 → 6.6.46

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 (333) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/build/lowcode/render/default/view.css +1 -1
  6. package/build/lowcode/render/default/view.js +1 -1
  7. package/build/lowcode/view.css +1 -1
  8. package/build/lowcode/view.js +1 -1
  9. package/es/components/appointmentBooking/components/Voucher/index.js +22 -7
  10. package/es/components/booking/addons/index.js +3 -2
  11. package/es/components/booking/addons/model.d.ts +10 -1
  12. package/es/components/booking/components/footer/amount.js +1 -1
  13. package/es/components/booking/components/footer/index.js +7 -0
  14. package/es/components/booking/components/footer/utils.d.ts +1 -1
  15. package/es/components/booking/components/footer/utils.js +7 -5
  16. package/es/components/booking/components/voucher/index.js +6 -0
  17. package/es/components/booking/components/voucher/index.less +4 -1
  18. package/es/components/booking/components/voucherModal/index.less +1 -0
  19. package/es/components/booking/forms/model.d.ts +10 -1
  20. package/es/components/booking/info/model.d.ts +10 -1
  21. package/es/components/booking/info/service/addService/utils.d.ts +1 -1
  22. package/es/components/booking/info2/service/addService/utils.d.ts +1 -1
  23. package/es/components/booking/info2/service/editService/index.js +8 -2
  24. package/es/components/booking/model.d.ts +9 -1
  25. package/es/components/booking/notes/model.d.ts +10 -1
  26. package/es/components/booking/payments/model.d.ts +10 -1
  27. package/es/components/booking/utils.d.ts +2 -2
  28. package/es/components/checkout/components/WalletPassModule/index.js +1 -0
  29. package/es/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
  30. package/es/components/checkout/components/WalletPassModule/utils.js +17 -3
  31. package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
  32. package/es/components/checkout/hooks/useWalletPass.js +316 -192
  33. package/es/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
  34. package/es/components/pay/toC/PaymentMethods/WalletPass/index.js +166 -145
  35. package/es/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
  36. package/es/components/pay/toC/PaymentMethods/WalletPass/utils.js +3 -3
  37. package/es/components/pay/toC/WalletPassBlock/index.js +3 -1
  38. package/es/components/pay/toC/index.js +66 -27
  39. package/es/components/pay/toC/model.d.ts +10 -1
  40. package/es/components/pay/toC/serve.d.ts +18 -0
  41. package/es/components/pay/toC/serve.js +29 -1
  42. package/es/components/pay/toC/utils.d.ts +2 -2
  43. package/es/components/pay/toC/utils.js +4 -0
  44. package/es/components/schedules/model.d.ts +9 -1
  45. package/es/components/ticketBooking/components/addServiceVariant/addService.js +7 -4
  46. package/es/components/ticketBooking/utils/index.d.ts +1 -1
  47. package/lib/components/appointmentBooking/components/Voucher/index.js +10 -2
  48. package/lib/components/booking/addons/index.js +3 -2
  49. package/lib/components/booking/addons/model.d.ts +10 -1
  50. package/lib/components/booking/components/footer/amount.js +1 -1
  51. package/lib/components/booking/components/footer/index.js +9 -0
  52. package/lib/components/booking/components/footer/utils.d.ts +1 -1
  53. package/lib/components/booking/components/footer/utils.js +5 -3
  54. package/lib/components/booking/components/voucher/index.js +6 -0
  55. package/lib/components/booking/components/voucher/index.less +4 -1
  56. package/lib/components/booking/components/voucherModal/index.less +1 -0
  57. package/lib/components/booking/forms/model.d.ts +10 -1
  58. package/lib/components/booking/info/model.d.ts +10 -1
  59. package/lib/components/booking/info/service/addService/utils.d.ts +1 -1
  60. package/lib/components/booking/info2/service/addService/utils.d.ts +1 -1
  61. package/lib/components/booking/info2/service/editService/index.js +24 -18
  62. package/lib/components/booking/model.d.ts +9 -1
  63. package/lib/components/booking/notes/model.d.ts +10 -1
  64. package/lib/components/booking/payments/model.d.ts +10 -1
  65. package/lib/components/booking/utils.d.ts +2 -2
  66. package/lib/components/checkout/components/WalletPassModule/index.js +1 -0
  67. package/lib/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
  68. package/lib/components/checkout/components/WalletPassModule/utils.js +18 -2
  69. package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
  70. package/lib/components/checkout/hooks/useWalletPass.js +157 -108
  71. package/lib/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
  72. package/lib/components/pay/toC/PaymentMethods/WalletPass/index.js +90 -103
  73. package/lib/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
  74. package/lib/components/pay/toC/PaymentMethods/WalletPass/utils.js +2 -2
  75. package/lib/components/pay/toC/WalletPassBlock/index.js +3 -1
  76. package/lib/components/pay/toC/index.js +52 -11
  77. package/lib/components/pay/toC/model.d.ts +10 -1
  78. package/lib/components/pay/toC/serve.d.ts +18 -0
  79. package/lib/components/pay/toC/serve.js +6 -0
  80. package/lib/components/pay/toC/utils.d.ts +2 -2
  81. package/lib/components/pay/toC/utils.js +4 -0
  82. package/lib/components/schedules/model.d.ts +9 -1
  83. package/lib/components/ticketBooking/components/addServiceVariant/addService.js +11 -7
  84. package/lib/components/ticketBooking/utils/index.d.ts +1 -1
  85. package/package.json +3 -3
  86. package/es/components/appointmentBooking/components/Date/state.d.ts +0 -63
  87. package/es/components/appointmentBooking/locales.d.ts +0 -603
  88. package/es/components/authentication/admin/AuthMethods/locales.d.ts +0 -413
  89. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +0 -6
  90. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +0 -138
  91. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +0 -43
  92. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +0 -6
  93. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +0 -118
  94. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +0 -35
  95. package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +0 -6
  96. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +0 -43
  97. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +0 -8
  98. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +0 -108
  99. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +0 -28
  100. package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +0 -6
  101. package/es/components/authentication/admin/ChannelAuthSetting/locales.d.ts +0 -63
  102. package/es/components/authentication/admin/CustomerAuth/locales.d.ts +0 -108
  103. package/es/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +0 -178
  104. package/es/components/authentication/admin/DeviceAuth/locales.d.ts +0 -93
  105. package/es/components/authentication/admin/OAuthConfig/locales.d.ts +0 -148
  106. package/es/components/authentication/admin/OrgAdminAuth/locales.d.ts +0 -88
  107. package/es/components/authentication/admin/POSOperatorAuth/locales.d.ts +0 -78
  108. package/es/components/authentication/admin/SaaSAdminAuth/locales.d.ts +0 -88
  109. package/es/components/booking/components/actionButtons/index.d.ts +0 -31
  110. package/es/components/booking/components/voucher/utils.d.ts +0 -5
  111. package/es/components/booking/editBookingModal/locales.d.ts +0 -33
  112. package/es/components/booking/editBookingModal/mock.d.ts +0 -991
  113. package/es/components/booking/info2/cartClientCard/locales.d.ts +0 -33
  114. package/es/components/booking/info2/service/addService/mock.d.ts +0 -216
  115. package/es/components/booking/info2/service/editService/DiscountChangeModal/index.d.ts +0 -25
  116. package/es/components/booking/locales.d.ts +0 -1619
  117. package/es/components/checkout/PaymentModal.d.ts +0 -31
  118. package/es/components/checkout/components/AdditionalModule/locales.d.ts +0 -58
  119. package/es/components/checkout/locales.d.ts +0 -853
  120. package/es/components/eftpos/locales.d.ts +0 -163
  121. package/es/components/eftposPay/locales.d.ts +0 -608
  122. package/es/components/eventBooking/locales.d.ts +0 -408
  123. package/es/components/list/locales.d.ts +0 -108
  124. package/es/components/list/utils/getText.d.ts +0 -53
  125. package/es/components/login/locales.d.ts +0 -38
  126. package/es/components/pay/toB/locales.d.ts +0 -88
  127. package/es/components/pay/toC/locales.d.ts +0 -511
  128. package/es/components/pinModal/locales.d.ts +0 -43
  129. package/es/components/pinVerifyModal/locales.d.ts +0 -38
  130. package/es/components/pisellSelectCustomerModal/locales.d.ts +0 -133
  131. package/es/components/productExtension/locales.d.ts +0 -78
  132. package/es/components/productSelect/components/pisellPriceText/index.d.ts +0 -11
  133. package/es/components/productSelect/locales.d.ts +0 -38
  134. package/es/components/ruleSetting/locales.d.ts +0 -78
  135. package/es/components/schedules/locales.d.ts +0 -143
  136. package/es/components/shoppingCart/locales.d.ts +0 -58
  137. package/es/components/stepController/locales.d.ts +0 -43
  138. package/es/components/subTotal/locales.d.ts +0 -68
  139. package/es/components/systemSettings/registry/components/ItemModal.d.ts +0 -4
  140. package/es/components/systemSettings/registry/locales.d.ts +0 -456
  141. package/es/components/systemSettings/registry/types.d.ts +0 -128
  142. package/es/components/taxSelect/locales.d.ts +0 -38
  143. package/es/components/ticketBooking/locales.d.ts +0 -328
  144. package/es/components/ticketBooking/utils/formatTime.d.ts +0 -33
  145. package/es/components/wallet/utils.d.ts +0 -48
  146. package/es/components/walletList/index.d.ts +0 -4
  147. package/es/components/walletList/locales.d.ts +0 -43
  148. package/es/components/walletList/types/index.d.ts +0 -196
  149. package/es/plus/clientCard/index.d.ts +0 -7
  150. package/es/plus/clientCard/locales.d.ts +0 -28
  151. package/es/plus/clientCard/types.d.ts +0 -135
  152. package/es/plus/clinetSearch/locales.d.ts +0 -178
  153. package/es/plus/contactInfo/locales.d.ts +0 -23
  154. package/es/plus/contactInfoModal/locales.d.ts +0 -108
  155. package/es/plus/noteModal/locales.d.ts +0 -53
  156. package/es/plus/productSelect/ProductCard/SkuCard/locales.d.ts +0 -68
  157. package/es/plus/productSelect/ProductCard/SkuCard/status.d.ts +0 -164
  158. package/es/plus/productSelect/components/pisellPriceText/index.d.ts +0 -14
  159. package/es/plus/productSelect/locales.d.ts +0 -38
  160. package/es/plus/saasAttendance/index.d.ts +0 -6
  161. package/es/plus/saasAttendance/locales.d.ts +0 -528
  162. package/es/plus/saasAttendance/settings/BasicInfoTab.d.ts +0 -5
  163. package/es/plus/saasAttendance/settings/ClockInMethodTab.d.ts +0 -8
  164. package/es/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +0 -8
  165. package/es/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +0 -5
  166. package/es/plus/saasAttendance/settings/components/MapField.d.ts +0 -78
  167. package/es/plus/saasAttendance/settings/components/index.d.ts +0 -3
  168. package/es/plus/saasAttendance/settings/components/membersField/index.d.ts +0 -8
  169. package/es/plus/saasAttendance/settings/components/shiftModal/index.d.ts +0 -18
  170. package/es/plus/saasAttendance/settings/index.d.ts +0 -18
  171. package/es/plus/saasAttendance/settings/serve.d.ts +0 -27
  172. package/es/plus/saasAttendance/settings/types.d.ts +0 -130
  173. package/es/plus/saasCreateOrganization/locales.d.ts +0 -23
  174. package/es/plus/saasLogin/locales.d.ts +0 -83
  175. package/es/plus/saasRegister/locales.d.ts +0 -193
  176. package/es/plus/saasRole/components/PermissionManager/index.d.ts +0 -19
  177. package/es/plus/saasRole/index.d.ts +0 -14
  178. package/es/plus/saasRole/locales.d.ts +0 -319
  179. package/es/plus/saasRole/serve.d.ts +0 -72
  180. package/es/plus/saasRole/types.d.ts +0 -177
  181. package/es/plus/saasRole/utils.d.ts +0 -0
  182. package/es/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +0 -31
  183. package/es/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +0 -23
  184. package/es/plus/saasTeamMembers/index.d.ts +0 -5
  185. package/es/plus/saasTeamMembers/locales.d.ts +0 -546
  186. package/es/plus/saasTeamMembers/serve.d.ts +0 -95
  187. package/es/plus/saasTeamMembers/type.d.ts +0 -158
  188. package/es/plus/selectHolder/locales.d.ts +0 -38
  189. package/es/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +0 -39
  190. package/es/plus/walletEditor/locales.d.ts +0 -223
  191. package/es/plus/walletEditor/types.d.ts +0 -54
  192. package/es/plus/walletPassGallery/components/passDetail/index.d.ts +0 -11
  193. package/es/plus/walletPassGallery/components/passList/index.d.ts +0 -13
  194. package/es/plus/walletPassGallery/components/timelineSection/index.d.ts +0 -12
  195. package/es/plus/walletPassGallery/index.d.ts +0 -11
  196. package/es/plus/walletPassGallery/locales.d.ts +0 -473
  197. package/es/plus/walletPassGallery/serve.d.ts +0 -245
  198. package/es/plus/walletPassGallery/utils.d.ts +0 -48
  199. package/es/pro/Login2.0/locales.d.ts +0 -903
  200. package/es/pro/Login2.0/shared/types.d.ts +0 -234
  201. package/es/pro/comprehensiveSearch/components/searchSection/locales.d.ts +0 -23
  202. package/es/pro/comprehensiveSearch/locales.d.ts +0 -23
  203. package/es/pro/numberKeyboard/locales.d.ts +0 -18
  204. package/es/pro/pisellPhoneKeyboard/locales.d.ts +0 -18
  205. package/es/pro/priceKeyboard/components/cashKeyboard/locales.d.ts +0 -63
  206. package/es/pro/priceKeyboard/components/discountKeyboard/locales.d.ts +0 -68
  207. package/es/pro/priceKeyboard/components/paymentKeyboard/locales.d.ts +0 -73
  208. package/es/pro/skuDetailModal/locales.d.ts +0 -78
  209. package/es/pro/skuDetailModal/types.d.ts +0 -352
  210. package/lib/components/appointmentBooking/components/Date/state.d.ts +0 -63
  211. package/lib/components/appointmentBooking/locales.d.ts +0 -603
  212. package/lib/components/authentication/admin/AuthMethods/locales.d.ts +0 -413
  213. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +0 -6
  214. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +0 -138
  215. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +0 -43
  216. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +0 -6
  217. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +0 -118
  218. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +0 -35
  219. package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +0 -6
  220. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +0 -43
  221. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +0 -8
  222. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +0 -108
  223. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +0 -28
  224. package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +0 -6
  225. package/lib/components/authentication/admin/ChannelAuthSetting/locales.d.ts +0 -63
  226. package/lib/components/authentication/admin/CustomerAuth/locales.d.ts +0 -108
  227. package/lib/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +0 -178
  228. package/lib/components/authentication/admin/DeviceAuth/locales.d.ts +0 -93
  229. package/lib/components/authentication/admin/OAuthConfig/locales.d.ts +0 -148
  230. package/lib/components/authentication/admin/OrgAdminAuth/locales.d.ts +0 -88
  231. package/lib/components/authentication/admin/POSOperatorAuth/locales.d.ts +0 -78
  232. package/lib/components/authentication/admin/SaaSAdminAuth/locales.d.ts +0 -88
  233. package/lib/components/booking/components/actionButtons/index.d.ts +0 -31
  234. package/lib/components/booking/components/voucher/utils.d.ts +0 -5
  235. package/lib/components/booking/editBookingModal/locales.d.ts +0 -33
  236. package/lib/components/booking/editBookingModal/mock.d.ts +0 -991
  237. package/lib/components/booking/info2/cartClientCard/locales.d.ts +0 -33
  238. package/lib/components/booking/info2/service/addService/mock.d.ts +0 -216
  239. package/lib/components/booking/info2/service/editService/DiscountChangeModal/index.d.ts +0 -25
  240. package/lib/components/booking/locales.d.ts +0 -1619
  241. package/lib/components/checkout/PaymentModal.d.ts +0 -31
  242. package/lib/components/checkout/components/AdditionalModule/locales.d.ts +0 -58
  243. package/lib/components/checkout/locales.d.ts +0 -853
  244. package/lib/components/eftpos/locales.d.ts +0 -163
  245. package/lib/components/eftposPay/locales.d.ts +0 -608
  246. package/lib/components/eventBooking/locales.d.ts +0 -408
  247. package/lib/components/list/locales.d.ts +0 -108
  248. package/lib/components/list/utils/getText.d.ts +0 -53
  249. package/lib/components/login/locales.d.ts +0 -38
  250. package/lib/components/pay/toB/locales.d.ts +0 -88
  251. package/lib/components/pay/toC/locales.d.ts +0 -511
  252. package/lib/components/pinModal/locales.d.ts +0 -43
  253. package/lib/components/pinVerifyModal/locales.d.ts +0 -38
  254. package/lib/components/pisellSelectCustomerModal/locales.d.ts +0 -133
  255. package/lib/components/productExtension/locales.d.ts +0 -78
  256. package/lib/components/productSelect/components/pisellPriceText/index.d.ts +0 -11
  257. package/lib/components/productSelect/locales.d.ts +0 -38
  258. package/lib/components/ruleSetting/locales.d.ts +0 -78
  259. package/lib/components/schedules/locales.d.ts +0 -143
  260. package/lib/components/shoppingCart/locales.d.ts +0 -58
  261. package/lib/components/stepController/locales.d.ts +0 -43
  262. package/lib/components/subTotal/locales.d.ts +0 -68
  263. package/lib/components/systemSettings/registry/components/ItemModal.d.ts +0 -4
  264. package/lib/components/systemSettings/registry/locales.d.ts +0 -456
  265. package/lib/components/systemSettings/registry/types.d.ts +0 -128
  266. package/lib/components/taxSelect/locales.d.ts +0 -38
  267. package/lib/components/ticketBooking/locales.d.ts +0 -328
  268. package/lib/components/ticketBooking/utils/formatTime.d.ts +0 -33
  269. package/lib/components/wallet/utils.d.ts +0 -48
  270. package/lib/components/walletList/index.d.ts +0 -4
  271. package/lib/components/walletList/locales.d.ts +0 -43
  272. package/lib/components/walletList/types/index.d.ts +0 -196
  273. package/lib/plus/clientCard/index.d.ts +0 -7
  274. package/lib/plus/clientCard/locales.d.ts +0 -28
  275. package/lib/plus/clientCard/types.d.ts +0 -135
  276. package/lib/plus/clinetSearch/locales.d.ts +0 -178
  277. package/lib/plus/contactInfo/locales.d.ts +0 -23
  278. package/lib/plus/contactInfoModal/locales.d.ts +0 -108
  279. package/lib/plus/noteModal/locales.d.ts +0 -53
  280. package/lib/plus/productSelect/ProductCard/SkuCard/locales.d.ts +0 -68
  281. package/lib/plus/productSelect/ProductCard/SkuCard/status.d.ts +0 -164
  282. package/lib/plus/productSelect/components/pisellPriceText/index.d.ts +0 -14
  283. package/lib/plus/productSelect/locales.d.ts +0 -38
  284. package/lib/plus/saasAttendance/index.d.ts +0 -6
  285. package/lib/plus/saasAttendance/locales.d.ts +0 -528
  286. package/lib/plus/saasAttendance/settings/BasicInfoTab.d.ts +0 -5
  287. package/lib/plus/saasAttendance/settings/ClockInMethodTab.d.ts +0 -8
  288. package/lib/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +0 -8
  289. package/lib/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +0 -5
  290. package/lib/plus/saasAttendance/settings/components/MapField.d.ts +0 -78
  291. package/lib/plus/saasAttendance/settings/components/index.d.ts +0 -3
  292. package/lib/plus/saasAttendance/settings/components/membersField/index.d.ts +0 -8
  293. package/lib/plus/saasAttendance/settings/components/shiftModal/index.d.ts +0 -18
  294. package/lib/plus/saasAttendance/settings/index.d.ts +0 -18
  295. package/lib/plus/saasAttendance/settings/serve.d.ts +0 -27
  296. package/lib/plus/saasAttendance/settings/types.d.ts +0 -130
  297. package/lib/plus/saasCreateOrganization/locales.d.ts +0 -23
  298. package/lib/plus/saasLogin/locales.d.ts +0 -83
  299. package/lib/plus/saasRegister/locales.d.ts +0 -193
  300. package/lib/plus/saasRole/components/PermissionManager/index.d.ts +0 -19
  301. package/lib/plus/saasRole/index.d.ts +0 -14
  302. package/lib/plus/saasRole/locales.d.ts +0 -319
  303. package/lib/plus/saasRole/serve.d.ts +0 -72
  304. package/lib/plus/saasRole/types.d.ts +0 -177
  305. package/lib/plus/saasRole/utils.d.ts +0 -0
  306. package/lib/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +0 -31
  307. package/lib/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +0 -23
  308. package/lib/plus/saasTeamMembers/index.d.ts +0 -5
  309. package/lib/plus/saasTeamMembers/locales.d.ts +0 -546
  310. package/lib/plus/saasTeamMembers/serve.d.ts +0 -95
  311. package/lib/plus/saasTeamMembers/type.d.ts +0 -158
  312. package/lib/plus/selectHolder/locales.d.ts +0 -38
  313. package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +0 -39
  314. package/lib/plus/walletEditor/locales.d.ts +0 -223
  315. package/lib/plus/walletEditor/types.d.ts +0 -54
  316. package/lib/plus/walletPassGallery/components/passDetail/index.d.ts +0 -11
  317. package/lib/plus/walletPassGallery/components/passList/index.d.ts +0 -13
  318. package/lib/plus/walletPassGallery/components/timelineSection/index.d.ts +0 -12
  319. package/lib/plus/walletPassGallery/index.d.ts +0 -11
  320. package/lib/plus/walletPassGallery/locales.d.ts +0 -473
  321. package/lib/plus/walletPassGallery/serve.d.ts +0 -245
  322. package/lib/plus/walletPassGallery/utils.d.ts +0 -48
  323. package/lib/pro/Login2.0/locales.d.ts +0 -903
  324. package/lib/pro/Login2.0/shared/types.d.ts +0 -234
  325. package/lib/pro/comprehensiveSearch/components/searchSection/locales.d.ts +0 -23
  326. package/lib/pro/comprehensiveSearch/locales.d.ts +0 -23
  327. package/lib/pro/numberKeyboard/locales.d.ts +0 -18
  328. package/lib/pro/pisellPhoneKeyboard/locales.d.ts +0 -18
  329. package/lib/pro/priceKeyboard/components/cashKeyboard/locales.d.ts +0 -63
  330. package/lib/pro/priceKeyboard/components/discountKeyboard/locales.d.ts +0 -68
  331. package/lib/pro/priceKeyboard/components/paymentKeyboard/locales.d.ts +0 -73
  332. package/lib/pro/skuDetailModal/locales.d.ts +0 -78
  333. package/lib/pro/skuDetailModal/types.d.ts +0 -352
@@ -1,88 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'tobPay.text.back': string;
4
- 'tobPay.text.waitPay': string;
5
- 'tobPay.text.card.edit.amount': string;
6
- 'tobPay.text.group.normalPay': string;
7
- 'tobPay.text.group.thirdPay': string;
8
- 'tobPay.text.cancel': string;
9
- 'tobPay.text.submit': string;
10
- 'tobPay.text.confirmed.payment': string;
11
- 'tobPay.text.cash.modal.amount.toPay': string;
12
- 'tobPay.text.cash.modal.input.title': string;
13
- 'tobPay.text.cash.modal.no.change.given': string;
14
- 'tobPay.text.cash.modal.amount.pay.change': (money: string) => string;
15
- 'tobPay.text.cash.modal.amount.left.pay.paid': (money: string) => string;
16
- 'tobPay.text.cash.modal.ok': string;
17
- 'tobPay.text.payment.with.surcharge': string;
18
- };
19
- 'zh-CN': {
20
- 'tobPay.text.back': string;
21
- 'tobPay.text.waitPay': string;
22
- 'tobPay.text.card.edit.amount': string;
23
- 'tobPay.text.group.normalPay': string;
24
- 'tobPay.text.group.thirdPay': string;
25
- 'tobPay.text.cancel': string;
26
- 'tobPay.text.submit': string;
27
- 'tobPay.text.confirmed.payment': string;
28
- 'tobPay.text.cash.modal.amount.toPay': string;
29
- 'tobPay.text.cash.modal.input.title': string;
30
- 'tobPay.text.cash.modal.no.change.given': string;
31
- 'tobPay.text.cash.modal.amount.pay.change': (money: string) => string;
32
- 'tobPay.text.cash.modal.amount.left.pay.paid': (money: string) => string;
33
- 'tobPay.text.cash.modal.ok': string;
34
- 'tobPay.text.payment.with.surcharge': string;
35
- };
36
- 'zh-HK': {
37
- 'tobPay.text.back': string;
38
- 'tobPay.text.waitPay': string;
39
- 'tobPay.text.card.edit.amount': string;
40
- 'tobPay.text.group.normalPay': string;
41
- 'tobPay.text.group.thirdPay': string;
42
- 'tobPay.text.cancel': string;
43
- 'tobPay.text.submit': string;
44
- 'tobPay.text.confirmed.payment': string;
45
- 'tobPay.text.cash.modal.amount.toPay': string;
46
- 'tobPay.text.cash.modal.input.title': string;
47
- 'tobPay.text.cash.modal.no.change.given': string;
48
- 'tobPay.text.cash.modal.amount.pay.change': (money: string) => string;
49
- 'tobPay.text.cash.modal.amount.left.pay.paid': (money: string) => string;
50
- 'tobPay.text.cash.modal.ok': string;
51
- 'tobPay.text.payment.with.surcharge': string;
52
- };
53
- ja: {
54
- 'tobPay.text.back': string;
55
- 'tobPay.text.waitPay': string;
56
- 'tobPay.text.card.edit.amount': string;
57
- 'tobPay.text.group.normalPay': string;
58
- 'tobPay.text.group.thirdPay': string;
59
- 'tobPay.text.cancel': string;
60
- 'tobPay.text.submit': string;
61
- 'tobPay.text.confirmed.payment': string;
62
- 'tobPay.text.cash.modal.amount.toPay': string;
63
- 'tobPay.text.cash.modal.input.title': string;
64
- 'tobPay.text.cash.modal.no.change.given': string;
65
- 'tobPay.text.cash.modal.amount.pay.change': (money: string) => string;
66
- 'tobPay.text.cash.modal.amount.left.pay.paid': (money: string) => string;
67
- 'tobPay.text.cash.modal.ok': string;
68
- 'tobPay.text.payment.with.surcharge': string;
69
- };
70
- pt: {
71
- 'tobPay.text.back': string;
72
- 'tobPay.text.waitPay': string;
73
- 'tobPay.text.card.edit.amount': string;
74
- 'tobPay.text.group.normalPay': string;
75
- 'tobPay.text.group.thirdPay': string;
76
- 'tobPay.text.cancel': string;
77
- 'tobPay.text.submit': string;
78
- 'tobPay.text.confirmed.payment': string;
79
- 'tobPay.text.cash.modal.amount.toPay': string;
80
- 'tobPay.text.cash.modal.input.title': string;
81
- 'tobPay.text.cash.modal.no.change.given': string;
82
- 'tobPay.text.cash.modal.amount.pay.change': (money: string) => string;
83
- 'tobPay.text.cash.modal.amount.left.pay.paid': (money: string) => string;
84
- 'tobPay.text.cash.modal.ok': string;
85
- 'tobPay.text.payment.with.surcharge': string;
86
- };
87
- };
88
- export default _default;
@@ -1,511 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'tocPay.text.checkout': string;
4
- 'tocPay.text.total': string;
5
- 'tocPay.text.completePaymentIn': string;
6
- 'tocPay.text.paymentInstruction': string;
7
- 'tocPay.text.serviceCharge': string;
8
- 'tocPay.text.noAvailablePaymentMethods': string;
9
- 'tocPay.text.paymentMethod': string;
10
- 'tocPay.text.connectingApplePay': string;
11
- 'tocPay.text.connectingGooglePay': string;
12
- 'tocPay.text.enterName': string;
13
- 'tocPay.text.enterValidName': string;
14
- 'tocPay.text.enterCardNumber': string;
15
- 'tocPay.text.enterValidCardNumber': string;
16
- 'tocPay.text.enterExpirationDate': string;
17
- 'tocPay.text.enterCVV': string;
18
- 'tocPay.text.enterValidCVV': string;
19
- 'tocPay.text.addCard': string;
20
- 'tocPay.text.creditorDebitCard': string;
21
- 'tocPay.text.addCreditOrDebitCard': string;
22
- 'tocPay.text.cardNumber': string;
23
- 'tocPay.text.incorrectCardNumber': string;
24
- 'tocPay.text.expiration': string;
25
- 'tocPay.text.incorrectExpiryDate': string;
26
- 'tocPay.text.securityCode': string;
27
- 'tocPay.text.incorrectSecurityCode': string;
28
- 'tocPay.text.cardholderName': string;
29
- 'tocPay.text.enterEnglishName': string;
30
- 'tocPay.text.incorrectName': string;
31
- 'tocPay.text.saveCardForNextTime': string;
32
- 'tocPay.text.secureBankInfo': string;
33
- 'tocPay.text.pay': string;
34
- 'tocPay.text.surcharge': string;
35
- 'tocPay.text.done': string;
36
- 'tocPay.text.manageCard': string;
37
- 'tocPay.text.waitingForBankVerification': string;
38
- 'tocPay.text.successBack': string;
39
- 'tocPay.text.redirectingToAlipay': string;
40
- 'tocPay.text.redirectingToPaypal': string;
41
- 'tocPay.text.redirectingToWeChatPay': string;
42
- 'tocPay.text.submit': string;
43
- 'tocPay.text.clickSubmitToComplete': string;
44
- 'tocPay.text.noExtraPayNeeded': string;
45
- 'tocPay.text.continuePayment': string;
46
- 'tocPay.text.prompt': string;
47
- 'tocPay.text.confirmLeave': string;
48
- 'tocPay.text.continuePay': string;
49
- 'tocPay.text.leave': string;
50
- 'tocPay.text.getParamsFail': string;
51
- 'tocPay.text.walletPass': string;
52
- 'tocPay.text.toUse': string;
53
- 'tocPay.text.searchResult': string;
54
- 'tocPay.text.select': string;
55
- 'tocPay.text.couponCodesAdded': string;
56
- 'tocPay.text.redeem': string;
57
- 'tocPay.text.howToPay': string;
58
- 'tocPay.text.congrats': string;
59
- 'tocPay.text.creditHaveBeen': string;
60
- 'tocPay.text.walletPassCodesTitle': string;
61
- 'tocPay.text.scanBarQrCode': string;
62
- 'tocPay.text.enterCodes': string;
63
- 'tocPay.text.searchDescribe': string;
64
- 'tocPay.text.walletPassEmpty': (walletName: string) => string;
65
- 'tocPay.text.walletPassDisabled': string;
66
- 'tocPay.text.walletPassPermanent': string;
67
- 'tocPay.text.walletPassCompleteTitle': string;
68
- 'tocPay.text.walletPassNoExtraPay': string;
69
- 'tocPay.text.walletCanPay': string;
70
- 'tocPay.text.paymentInstructions': string;
71
- 'tocPay.text.walletSearchEmpty': string;
72
- 'tocPay.text.detectIncognitoConfirm': string;
73
- 'tocPay.text.copyLink': string;
74
- 'tocPay.text.copySuccess': string;
75
- 'tocPay.text.walletName': (shopName: string) => string;
76
- 'tocPay.text.bestValueFound': string;
77
- 'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
78
- 'tocPay.text.totalSavings': string;
79
- 'tocPay.text.bestCombination': (walletName: string) => string;
80
- 'tocPay.text.recommended': string;
81
- 'tocPay.text.edit': string;
82
- 'tocPay.text.confirm': string;
83
- 'tocPay.text.unusedAndContinueToPayment': string;
84
- 'tocPay.text.walletPassAvailable': (walletName: string) => string;
85
- 'tocPay.text.useWalletPass': (walletName: string) => string;
86
- 'tocPay.text.useWalletPassAdd': (walletName: string) => string;
87
- 'tocPay.text.editWalletPass': (walletName: string) => string;
88
- 'tocPay.text.skipAndContinueToPayment': string;
89
- 'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
90
- 'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
91
- 'tocPay.text.addPointsCard': string;
92
- 'tocPay.text.hasNoWalletPassAmount': string;
93
- 'tocPay.text.multipleSelectionAvailable': string;
94
- 'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
95
- 'tocPay.text.bestValueCombination': string;
96
- 'tocPay.text.viewDetail': string;
97
- 'tocPay.text.returnAndSelectOtherPaymentMethod': string;
98
- 'tocPay.text.paymentCompletedAndViewOrder': string;
99
- 'tocPay.text.paymentFailed': string;
100
- 'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
101
- 'tocPay.text.domestic': string;
102
- 'tocPay.text.rest-of-world': string;
103
- };
104
- 'zh-CN': {
105
- 'tocPay.text.checkout': string;
106
- 'tocPay.text.total': string;
107
- 'tocPay.text.completePaymentIn': string;
108
- 'tocPay.text.paymentInstructions': string;
109
- 'tocPay.text.serviceCharge': string;
110
- 'tocPay.text.noAvailablePaymentMethods': string;
111
- 'tocPay.text.paymentMethod': string;
112
- 'tocPay.text.connectingApplePay': string;
113
- 'tocPay.text.connectingGooglePay': string;
114
- 'tocPay.text.enterName': string;
115
- 'tocPay.text.enterValidName': string;
116
- 'tocPay.text.enterCardNumber': string;
117
- 'tocPay.text.enterValidCardNumber': string;
118
- 'tocPay.text.enterExpirationDate': string;
119
- 'tocPay.text.enterCVV': string;
120
- 'tocPay.text.enterValidCVV': string;
121
- 'tocPay.text.addCard': string;
122
- 'tocPay.text.creditorDebitCard': string;
123
- 'tocPay.text.addCreditOrDebitCard': string;
124
- 'tocPay.text.cardNumber': string;
125
- 'tocPay.text.incorrectCardNumber': string;
126
- 'tocPay.text.expiration': string;
127
- 'tocPay.text.incorrectExpiryDate': string;
128
- 'tocPay.text.securityCode': string;
129
- 'tocPay.text.incorrectSecurityCode': string;
130
- 'tocPay.text.cardholderName': string;
131
- 'tocPay.text.enterEnglishName': string;
132
- 'tocPay.text.incorrectName': string;
133
- 'tocPay.text.saveCardForNextTime': string;
134
- 'tocPay.text.secureBankInfo': string;
135
- 'tocPay.text.pay': string;
136
- 'tocPay.text.surcharge': string;
137
- 'tocPay.text.done': string;
138
- 'tocPay.text.manageCard': string;
139
- 'tocPay.text.waitingForBankVerification': string;
140
- 'tocPay.text.successBack': string;
141
- 'tocPay.text.redirectingToAlipay': string;
142
- 'tocPay.text.redirectingToPaypal': string;
143
- 'tocPay.text.redirectingToWeChatPay': string;
144
- 'tocPay.text.submit': string;
145
- 'tocPay.text.clickSubmitToComplete': string;
146
- 'tocPay.text.noExtraPayNeeded': string;
147
- 'tocPay.text.continuePayment': string;
148
- 'tocPay.text.prompt': string;
149
- 'tocPay.text.confirmLeave': string;
150
- 'tocPay.text.continuePay': string;
151
- 'tocPay.text.leave': string;
152
- 'tocPay.text.getParamsFail': string;
153
- 'tocPay.text.walletPass': string;
154
- 'tocPay.text.toUse': string;
155
- 'tocPay.text.searchResult': string;
156
- 'tocPay.text.select': string;
157
- 'tocPay.text.couponCodesAdded': string;
158
- 'tocPay.text.redeem': string;
159
- 'tocPay.text.howToPay': string;
160
- 'tocPay.text.congrats': string;
161
- 'tocPay.text.creditHaveBeen': string;
162
- 'tocPay.text.walletPassCodesTitle': string;
163
- 'tocPay.text.scanBarQrCode': string;
164
- 'tocPay.text.enterCodes': string;
165
- 'tocPay.text.searchDescribe': string;
166
- 'tocPay.text.walletPassEmpty': (walletName: string) => string;
167
- 'tocPay.text.walletPassDisabled': string;
168
- 'tocPay.text.walletPassPermanent': string;
169
- 'tocPay.text.walletPassCompleteTitle': string;
170
- 'tocPay.text.walletPassNoExtraPay': string;
171
- 'tocPay.text.walletCanPay': string;
172
- 'tocPay.text.walletSearchEmpty': string;
173
- 'tocPay.text.detectIncognitoConfirm': string;
174
- 'tocPay.text.copyLink': string;
175
- 'tocPay.text.copySuccess': string;
176
- 'tocPay.text.walletName': (shopName: string) => string;
177
- 'tocPay.text.bestValueFound': string;
178
- 'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
179
- 'tocPay.text.totalSavings': string;
180
- 'tocPay.text.bestCombination': (walletName: string) => string;
181
- 'tocPay.text.recommended': string;
182
- 'tocPay.text.edit': string;
183
- 'tocPay.text.confirm': string;
184
- 'tocPay.text.unusedAndContinueToPayment': string;
185
- 'tocPay.text.walletPassAvailable': (walletName: string) => string;
186
- 'tocPay.text.useWalletPass': (walletName: string) => string;
187
- 'tocPay.text.useWalletPassAdd': (walletName: string) => string;
188
- 'tocPay.text.editWalletPass': (walletName: string) => string;
189
- 'tocPay.text.skipAndContinueToPayment': string;
190
- 'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
191
- 'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
192
- 'tocPay.text.addPointsCard': string;
193
- 'tocPay.text.hasNoWalletPassAmount': string;
194
- 'tocPay.text.multipleSelectionAvailable': string;
195
- 'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
196
- 'tocPay.text.bestValueCombination': string;
197
- 'tocPay.text.viewDetail': string;
198
- 'tocPay.text.returnAndSelectOtherPaymentMethod': string;
199
- 'tocPay.text.paymentCompletedAndViewOrder': string;
200
- 'tocPay.text.paymentFailed': string;
201
- 'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
202
- 'tocPay.text.domestic': string;
203
- 'tocPay.text.rest-of-world': string;
204
- };
205
- 'zh-HK': {
206
- 'tocPay.text.checkout': string;
207
- 'tocPay.text.total': string;
208
- 'tocPay.text.completePaymentIn': string;
209
- 'tocPay.text.paymentInstructions': string;
210
- 'tocPay.text.serviceCharge': string;
211
- 'tocPay.text.noAvailablePaymentMethods': string;
212
- 'tocPay.text.paymentMethod': string;
213
- 'tocPay.text.connectingApplePay': string;
214
- 'tocPay.text.connectingGooglePay': string;
215
- 'tocPay.text.enterName': string;
216
- 'tocPay.text.enterValidName': string;
217
- 'tocPay.text.enterCardNumber': string;
218
- 'tocPay.text.enterValidCardNumber': string;
219
- 'tocPay.text.enterExpirationDate': string;
220
- 'tocPay.text.enterCVV': string;
221
- 'tocPay.text.enterValidCVV': string;
222
- 'tocPay.text.addCard': string;
223
- 'tocPay.text.creditorDebitCard': string;
224
- 'tocPay.text.addCreditOrDebitCard': string;
225
- 'tocPay.text.cardNumber': string;
226
- 'tocPay.text.incorrectCardNumber': string;
227
- 'tocPay.text.expiration': string;
228
- 'tocPay.text.incorrectExpiryDate': string;
229
- 'tocPay.text.securityCode': string;
230
- 'tocPay.text.incorrectSecurityCode': string;
231
- 'tocPay.text.cardholderName': string;
232
- 'tocPay.text.enterEnglishName': string;
233
- 'tocPay.text.incorrectName': string;
234
- 'tocPay.text.saveCardForNextTime': string;
235
- 'tocPay.text.secureBankInfo': string;
236
- 'tocPay.text.pay': string;
237
- 'tocPay.text.surcharge': string;
238
- 'tocPay.text.done': string;
239
- 'tocPay.text.manageCard': string;
240
- 'tocPay.text.waitingForBankVerification': string;
241
- 'tocPay.text.successBack': string;
242
- 'tocPay.text.redirectingToAlipay': string;
243
- 'tocPay.text.redirectingToPaypal': string;
244
- 'tocPay.text.redirectingToWeChatPay': string;
245
- 'tocPay.text.submit': string;
246
- 'tocPay.text.clickSubmitToComplete': string;
247
- 'tocPay.text.noExtraPayNeeded': string;
248
- 'tocPay.text.continuePayment': string;
249
- 'tocPay.text.prompt': string;
250
- 'tocPay.text.confirmLeave': string;
251
- 'tocPay.text.continuePay': string;
252
- 'tocPay.text.leave': string;
253
- 'tocPay.text.getParamsFail': string;
254
- 'tocPay.text.walletPass': string;
255
- 'tocPay.text.toUse': string;
256
- 'tocPay.text.searchResult': string;
257
- 'tocPay.text.select': string;
258
- 'tocPay.text.couponCodesAdded': string;
259
- 'tocPay.text.redeem': string;
260
- 'tocPay.text.howToPay': string;
261
- 'tocPay.text.congrats': string;
262
- 'tocPay.text.creditHaveBeen': string;
263
- 'tocPay.text.walletPassCodesTitle': string;
264
- 'tocPay.text.scanBarQrCode': string;
265
- 'tocPay.text.enterCodes': string;
266
- 'tocPay.text.searchDescribe': string;
267
- 'tocPay.text.walletPassEmpty': (walletName: string) => string;
268
- 'tocPay.text.walletPassDisabled': string;
269
- 'tocPay.text.walletPassPermanent': string;
270
- 'tocPay.text.walletPassCompleteTitle': string;
271
- 'tocPay.text.walletPassNoExtraPay': string;
272
- 'tocPay.text.walletCanPay': string;
273
- 'tocPay.text.walletSearchEmpty': string;
274
- 'tocPay.text.detectIncognitoConfirm': string;
275
- 'tocPay.text.copyLink': string;
276
- 'tocPay.text.copySuccess': string;
277
- 'tocPay.text.walletName': (shopName: string) => string;
278
- 'tocPay.text.bestValueFound': string;
279
- 'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
280
- 'tocPay.text.totalSavings': string;
281
- 'tocPay.text.bestCombination': (walletName: string) => string;
282
- 'tocPay.text.recommended': string;
283
- 'tocPay.text.edit': string;
284
- 'tocPay.text.confirm': string;
285
- 'tocPay.text.unusedAndContinueToPayment': string;
286
- 'tocPay.text.walletPassAvailable': (walletName: string) => string;
287
- 'tocPay.text.useWalletPass': (walletName: string) => string;
288
- 'tocPay.text.useWalletPassAdd': (walletName: string) => string;
289
- 'tocPay.text.editWalletPass': (walletName: string) => string;
290
- 'tocPay.text.skipAndContinueToPayment': string;
291
- 'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
292
- 'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
293
- 'tocPay.text.addPointsCard': string;
294
- 'tocPay.text.hasNoWalletPassAmount': string;
295
- 'tocPay.text.multipleSelectionAvailable': string;
296
- 'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
297
- 'tocPay.text.bestValueCombination': string;
298
- 'tocPay.text.viewDetail': string;
299
- 'tocPay.text.returnAndSelectOtherPaymentMethod': string;
300
- 'tocPay.text.paymentCompletedAndViewOrder': string;
301
- 'tocPay.text.paymentFailed': string;
302
- 'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
303
- 'tocPay.text.domestic': string;
304
- 'tocPay.text.rest-of-world': string;
305
- };
306
- ja: {
307
- 'tocPay.text.checkout': string;
308
- 'tocPay.text.total': string;
309
- 'tocPay.text.completePaymentIn': string;
310
- 'tocPay.text.paymentInstruction': string;
311
- 'tocPay.text.serviceCharge': string;
312
- 'tocPay.text.noAvailablePaymentMethods': string;
313
- 'tocPay.text.paymentMethod': string;
314
- 'tocPay.text.connectingApplePay': string;
315
- 'tocPay.text.connectingGooglePay': string;
316
- 'tocPay.text.enterName': string;
317
- 'tocPay.text.enterValidName': string;
318
- 'tocPay.text.enterCardNumber': string;
319
- 'tocPay.text.enterValidCardNumber': string;
320
- 'tocPay.text.enterExpirationDate': string;
321
- 'tocPay.text.enterCVV': string;
322
- 'tocPay.text.enterValidCVV': string;
323
- 'tocPay.text.addCard': string;
324
- 'tocPay.text.creditorDebitCard': string;
325
- 'tocPay.text.addCreditOrDebitCard': string;
326
- 'tocPay.text.cardNumber': string;
327
- 'tocPay.text.incorrectCardNumber': string;
328
- 'tocPay.text.expiration': string;
329
- 'tocPay.text.incorrectExpiryDate': string;
330
- 'tocPay.text.securityCode': string;
331
- 'tocPay.text.incorrectSecurityCode': string;
332
- 'tocPay.text.cardholderName': string;
333
- 'tocPay.text.enterEnglishName': string;
334
- 'tocPay.text.incorrectName': string;
335
- 'tocPay.text.saveCardForNextTime': string;
336
- 'tocPay.text.secureBankInfo': string;
337
- 'tocPay.text.pay': string;
338
- 'tocPay.text.surcharge': string;
339
- 'tocPay.text.done': string;
340
- 'tocPay.text.manageCard': string;
341
- 'tocPay.text.waitingForBankVerification': string;
342
- 'tocPay.text.successBack': string;
343
- 'tocPay.text.redirectingToAlipay': string;
344
- 'tocPay.text.redirectingToPaypal': string;
345
- 'tocPay.text.redirectingToWeChatPay': string;
346
- 'tocPay.text.submit': string;
347
- 'tocPay.text.clickSubmitToComplete': string;
348
- 'tocPay.text.noExtraPayNeeded': string;
349
- 'tocPay.text.continuePayment': string;
350
- 'tocPay.text.prompt': string;
351
- 'tocPay.text.confirmLeave': string;
352
- 'tocPay.text.continuePay': string;
353
- 'tocPay.text.leave': string;
354
- 'tocPay.text.getParamsFail': string;
355
- 'tocPay.text.walletPass': string;
356
- 'tocPay.text.toUse': string;
357
- 'tocPay.text.searchResult': string;
358
- 'tocPay.text.select': string;
359
- 'tocPay.text.couponCodesAdded': string;
360
- 'tocPay.text.redeem': string;
361
- 'tocPay.text.howToPay': string;
362
- 'tocPay.text.congrats': string;
363
- 'tocPay.text.creditHaveBeen': string;
364
- 'tocPay.text.walletPassCodesTitle': string;
365
- 'tocPay.text.scanBarQrCode': string;
366
- 'tocPay.text.enterCodes': string;
367
- 'tocPay.text.searchDescribe': string;
368
- 'tocPay.text.walletPassEmpty': (walletName: string) => string;
369
- 'tocPay.text.walletPassDisabled': string;
370
- 'tocPay.text.walletPassPermanent': string;
371
- 'tocPay.text.walletPassCompleteTitle': string;
372
- 'tocPay.text.walletPassNoExtraPay': string;
373
- 'tocPay.text.walletCanPay': string;
374
- 'tocPay.text.paymentInstructions': string;
375
- 'tocPay.text.walletSearchEmpty': string;
376
- 'tocPay.text.detectIncognitoConfirm': string;
377
- 'tocPay.text.copyLink': string;
378
- 'tocPay.text.copySuccess': string;
379
- 'tocPay.text.walletName': (shopName: string) => string;
380
- 'tocPay.text.bestValueFound': string;
381
- 'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
382
- 'tocPay.text.totalSavings': string;
383
- 'tocPay.text.bestCombination': (walletName: string) => string;
384
- 'tocPay.text.recommended': string;
385
- 'tocPay.text.edit': string;
386
- 'tocPay.text.confirm': string;
387
- 'tocPay.text.unusedAndContinueToPayment': string;
388
- 'tocPay.text.walletPassAvailable': (walletName: string) => string;
389
- 'tocPay.text.useWalletPass': (walletName: string) => string;
390
- 'tocPay.text.useWalletPassAdd': (walletName: string) => string;
391
- 'tocPay.text.editWalletPass': (walletName: string) => string;
392
- 'tocPay.text.skipAndContinueToPayment': string;
393
- 'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
394
- 'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
395
- 'tocPay.text.addPointsCard': string;
396
- 'tocPay.text.hasNoWalletPassAmount': string;
397
- 'tocPay.text.multipleSelectionAvailable': string;
398
- 'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
399
- 'tocPay.text.bestValueCombination': string;
400
- 'tocPay.text.viewDetail': string;
401
- 'tocPay.text.returnAndSelectOtherPaymentMethod': string;
402
- 'tocPay.text.paymentCompletedAndViewOrder': string;
403
- 'tocPay.text.paymentFailed': string;
404
- 'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
405
- 'tocPay.text.domestic': string;
406
- 'tocPay.text.rest-of-world': string;
407
- };
408
- pt: {
409
- 'tocPay.text.checkout': string;
410
- 'tocPay.text.total': string;
411
- 'tocPay.text.completePaymentIn': string;
412
- 'tocPay.text.paymentInstruction': string;
413
- 'tocPay.text.serviceCharge': string;
414
- 'tocPay.text.noAvailablePaymentMethods': string;
415
- 'tocPay.text.paymentMethod': string;
416
- 'tocPay.text.connectingApplePay': string;
417
- 'tocPay.text.connectingGooglePay': string;
418
- 'tocPay.text.enterName': string;
419
- 'tocPay.text.enterValidName': string;
420
- 'tocPay.text.enterCardNumber': string;
421
- 'tocPay.text.enterValidCardNumber': string;
422
- 'tocPay.text.enterExpirationDate': string;
423
- 'tocPay.text.enterCVV': string;
424
- 'tocPay.text.enterValidCVV': string;
425
- 'tocPay.text.addCard': string;
426
- 'tocPay.text.creditorDebitCard': string;
427
- 'tocPay.text.addCreditOrDebitCard': string;
428
- 'tocPay.text.cardNumber': string;
429
- 'tocPay.text.incorrectCardNumber': string;
430
- 'tocPay.text.expiration': string;
431
- 'tocPay.text.incorrectExpiryDate': string;
432
- 'tocPay.text.securityCode': string;
433
- 'tocPay.text.incorrectSecurityCode': string;
434
- 'tocPay.text.cardholderName': string;
435
- 'tocPay.text.enterEnglishName': string;
436
- 'tocPay.text.incorrectName': string;
437
- 'tocPay.text.saveCardForNextTime': string;
438
- 'tocPay.text.secureBankInfo': string;
439
- 'tocPay.text.pay': string;
440
- 'tocPay.text.surcharge': string;
441
- 'tocPay.text.done': string;
442
- 'tocPay.text.manageCard': string;
443
- 'tocPay.text.waitingForBankVerification': string;
444
- 'tocPay.text.successBack': string;
445
- 'tocPay.text.redirectingToAlipay': string;
446
- 'tocPay.text.redirectingToPaypal': string;
447
- 'tocPay.text.redirectingToWeChatPay': string;
448
- 'tocPay.text.submit': string;
449
- 'tocPay.text.clickSubmitToComplete': string;
450
- 'tocPay.text.noExtraPayNeeded': string;
451
- 'tocPay.text.continuePayment': string;
452
- 'tocPay.text.prompt': string;
453
- 'tocPay.text.confirmLeave': string;
454
- 'tocPay.text.continuePay': string;
455
- 'tocPay.text.leave': string;
456
- 'tocPay.text.getParamsFail': string;
457
- 'tocPay.text.walletPass': string;
458
- 'tocPay.text.toUse': string;
459
- 'tocPay.text.searchResult': string;
460
- 'tocPay.text.select': string;
461
- 'tocPay.text.couponCodesAdded': string;
462
- 'tocPay.text.redeem': string;
463
- 'tocPay.text.howToPay': string;
464
- 'tocPay.text.congrats': string;
465
- 'tocPay.text.creditHaveBeen': string;
466
- 'tocPay.text.walletPassCodesTitle': string;
467
- 'tocPay.text.scanBarQrCode': string;
468
- 'tocPay.text.enterCodes': string;
469
- 'tocPay.text.searchDescribe': string;
470
- 'tocPay.text.walletPassEmpty': (walletName: string) => string;
471
- 'tocPay.text.walletPassDisabled': string;
472
- 'tocPay.text.walletPassPermanent': string;
473
- 'tocPay.text.walletPassCompleteTitle': string;
474
- 'tocPay.text.walletPassNoExtraPay': string;
475
- 'tocPay.text.walletCanPay': string;
476
- 'tocPay.text.paymentInstructions': string;
477
- 'tocPay.text.walletSearchEmpty': string;
478
- 'tocPay.text.detectIncognitoConfirm': string;
479
- 'tocPay.text.copyLink': string;
480
- 'tocPay.text.copySuccess': string;
481
- 'tocPay.text.walletName': (shopName: string) => string;
482
- 'tocPay.text.bestValueFound': string;
483
- 'tocPay.text.welcomeToUseWalletPass': (walletName: string) => string;
484
- 'tocPay.text.totalSavings': string;
485
- 'tocPay.text.bestCombination': (walletName: string) => string;
486
- 'tocPay.text.recommended': string;
487
- 'tocPay.text.edit': string;
488
- 'tocPay.text.confirm': string;
489
- 'tocPay.text.unusedAndContinueToPayment': string;
490
- 'tocPay.text.walletPassAvailable': (walletName: string) => string;
491
- 'tocPay.text.useWalletPass': (walletName: string) => string;
492
- 'tocPay.text.useWalletPassAdd': (walletName: string) => string;
493
- 'tocPay.text.editWalletPass': (walletName: string) => string;
494
- 'tocPay.text.skipAndContinueToPayment': string;
495
- 'tocPay.text.youMightHaveAnEligibleWalletPass': (walletName: string) => string;
496
- 'tocPay.text.checkIfYouHaveAnyPointsCardRechargableCardOrVouchersToUse': string;
497
- 'tocPay.text.addPointsCard': string;
498
- 'tocPay.text.hasNoWalletPassAmount': string;
499
- 'tocPay.text.multipleSelectionAvailable': string;
500
- 'tocPay.text.youCanSelectMultipleWalletPassesToCombineForPayment': (walletName: string) => string;
501
- 'tocPay.text.bestValueCombination': string;
502
- 'tocPay.text.viewDetail': string;
503
- 'tocPay.text.returnAndSelectOtherPaymentMethod': string;
504
- 'tocPay.text.paymentCompletedAndViewOrder': string;
505
- 'tocPay.text.paymentFailed': string;
506
- 'tocPay.text.weAreVerifyingYourPaymentPleaseCheckYourOrderStatusLater': string;
507
- 'tocPay.text.domestic': string;
508
- 'tocPay.text.rest-of-world': string;
509
- };
510
- };
511
- export default _default;
@@ -1,43 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'pisell2.pin.modal.title': string;
4
- 'pisell2.pin.modal.label': string;
5
- 'pisell2.pin.modal.desc': string;
6
- 'pisell2.pin.modal.time': string;
7
- 'pisell2.pin.modal.reset.pin': string;
8
- 'pisell2.pin.modal.cancel': string;
9
- };
10
- 'zh-CN': {
11
- 'pisell2.pin.modal.title': string;
12
- 'pisell2.pin.modal.label': string;
13
- 'pisell2.pin.modal.desc': string;
14
- 'pisell2.pin.modal.time': string;
15
- 'pisell2.pin.modal.reset.pin': string;
16
- 'pisell2.pin.modal.cancel': string;
17
- };
18
- 'zh-HK': {
19
- 'pisell2.pin.modal.title': string;
20
- 'pisell2.pin.modal.label': string;
21
- 'pisell2.pin.modal.desc': string;
22
- 'pisell2.pin.modal.time': string;
23
- 'pisell2.pin.modal.reset.pin': string;
24
- 'pisell2.pin.modal.cancel': string;
25
- };
26
- ja: {
27
- 'pisell2.pin.modal.title': string;
28
- 'pisell2.pin.modal.label': string;
29
- 'pisell2.pin.modal.desc': string;
30
- 'pisell2.pin.modal.time': string;
31
- 'pisell2.pin.modal.reset.pin': string;
32
- 'pisell2.pin.modal.cancel': string;
33
- };
34
- pt: {
35
- 'pisell2.pin.modal.title': string;
36
- 'pisell2.pin.modal.label': string;
37
- 'pisell2.pin.modal.desc': string;
38
- 'pisell2.pin.modal.time': string;
39
- 'pisell2.pin.modal.reset.pin': string;
40
- 'pisell2.pin.modal.cancel': string;
41
- };
42
- };
43
- export default _default;