@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,178 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'oauth.config.title': string;
4
- 'oauth.config.description': string;
5
- 'oauth.providers.title': string;
6
- 'oauth.providers.description': string;
7
- 'oauth.provider.google': string;
8
- 'oauth.provider.google.description': string;
9
- 'oauth.provider.apple': string;
10
- 'oauth.provider.apple.description': string;
11
- 'oauth.provider.facebook': string;
12
- 'oauth.provider.facebook.description': string;
13
- 'oauth.status.configured': string;
14
- 'oauth.status.not.configured': string;
15
- 'oauth.button.settings': string;
16
- 'oauth.button.save': string;
17
- 'oauth.button.cancel': string;
18
- 'oauth.drawer.title': string;
19
- 'oauth.apple.identifier': string;
20
- 'oauth.apple.identifier.required': string;
21
- 'oauth.apple.identifier.placeholder': string;
22
- 'oauth.facebook.appId': string;
23
- 'oauth.facebook.appId.required': string;
24
- 'oauth.facebook.appId.placeholder': string;
25
- 'oauth.facebook.appSecret': string;
26
- 'oauth.facebook.appSecret.required': string;
27
- 'oauth.facebook.appSecret.placeholder': string;
28
- 'oauth.google.clientId': string;
29
- 'oauth.google.clientId.required': string;
30
- 'oauth.google.clientId.placeholder': string;
31
- 'oauth.google.clientSecret': string;
32
- 'oauth.google.clientSecret.required': string;
33
- 'oauth.google.clientSecret.placeholder': string;
34
- 'oauth.save.success': string;
35
- 'oauth.save.error': string;
36
- };
37
- 'zh-CN': {
38
- 'oauth.config.title': string;
39
- 'oauth.config.description': string;
40
- 'oauth.providers.title': string;
41
- 'oauth.providers.description': string;
42
- 'oauth.provider.google': string;
43
- 'oauth.provider.google.description': string;
44
- 'oauth.provider.apple': string;
45
- 'oauth.provider.apple.description': string;
46
- 'oauth.provider.facebook': string;
47
- 'oauth.provider.facebook.description': string;
48
- 'oauth.status.configured': string;
49
- 'oauth.status.not.configured': string;
50
- 'oauth.button.settings': string;
51
- 'oauth.button.save': string;
52
- 'oauth.button.cancel': string;
53
- 'oauth.drawer.title': string;
54
- 'oauth.apple.identifier': string;
55
- 'oauth.apple.identifier.required': string;
56
- 'oauth.apple.identifier.placeholder': string;
57
- 'oauth.facebook.appId': string;
58
- 'oauth.facebook.appId.required': string;
59
- 'oauth.facebook.appId.placeholder': string;
60
- 'oauth.facebook.appSecret': string;
61
- 'oauth.facebook.appSecret.required': string;
62
- 'oauth.facebook.appSecret.placeholder': string;
63
- 'oauth.google.clientId': string;
64
- 'oauth.google.clientId.required': string;
65
- 'oauth.google.clientId.placeholder': string;
66
- 'oauth.google.clientSecret': string;
67
- 'oauth.google.clientSecret.required': string;
68
- 'oauth.google.clientSecret.placeholder': string;
69
- 'oauth.save.success': string;
70
- 'oauth.save.error': string;
71
- };
72
- 'zh-HK': {
73
- 'oauth.config.title': string;
74
- 'oauth.config.description': string;
75
- 'oauth.providers.title': string;
76
- 'oauth.providers.description': string;
77
- 'oauth.provider.google': string;
78
- 'oauth.provider.google.description': string;
79
- 'oauth.provider.apple': string;
80
- 'oauth.provider.apple.description': string;
81
- 'oauth.provider.facebook': string;
82
- 'oauth.provider.facebook.description': string;
83
- 'oauth.status.configured': string;
84
- 'oauth.status.not.configured': string;
85
- 'oauth.button.settings': string;
86
- 'oauth.button.save': string;
87
- 'oauth.button.cancel': string;
88
- 'oauth.drawer.title': string;
89
- 'oauth.apple.identifier': string;
90
- 'oauth.apple.identifier.required': string;
91
- 'oauth.apple.identifier.placeholder': string;
92
- 'oauth.facebook.appId': string;
93
- 'oauth.facebook.appId.required': string;
94
- 'oauth.facebook.appId.placeholder': string;
95
- 'oauth.facebook.appSecret': string;
96
- 'oauth.facebook.appSecret.required': string;
97
- 'oauth.facebook.appSecret.placeholder': string;
98
- 'oauth.google.clientId': string;
99
- 'oauth.google.clientId.required': string;
100
- 'oauth.google.clientId.placeholder': string;
101
- 'oauth.google.clientSecret': string;
102
- 'oauth.google.clientSecret.required': string;
103
- 'oauth.google.clientSecret.placeholder': string;
104
- 'oauth.save.success': string;
105
- 'oauth.save.error': string;
106
- };
107
- ja: {
108
- 'oauth.config.title': string;
109
- 'oauth.config.description': string;
110
- 'oauth.providers.title': string;
111
- 'oauth.providers.description': string;
112
- 'oauth.provider.google': string;
113
- 'oauth.provider.google.description': string;
114
- 'oauth.provider.apple': string;
115
- 'oauth.provider.apple.description': string;
116
- 'oauth.provider.facebook': string;
117
- 'oauth.provider.facebook.description': string;
118
- 'oauth.status.configured': string;
119
- 'oauth.status.not.configured': string;
120
- 'oauth.button.settings': string;
121
- 'oauth.button.save': string;
122
- 'oauth.button.cancel': string;
123
- 'oauth.drawer.title': string;
124
- 'oauth.apple.identifier': string;
125
- 'oauth.apple.identifier.required': string;
126
- 'oauth.apple.identifier.placeholder': string;
127
- 'oauth.facebook.appId': string;
128
- 'oauth.facebook.appId.required': string;
129
- 'oauth.facebook.appId.placeholder': string;
130
- 'oauth.facebook.appSecret': string;
131
- 'oauth.facebook.appSecret.required': string;
132
- 'oauth.facebook.appSecret.placeholder': string;
133
- 'oauth.google.clientId': string;
134
- 'oauth.google.clientId.required': string;
135
- 'oauth.google.clientId.placeholder': string;
136
- 'oauth.google.clientSecret': string;
137
- 'oauth.google.clientSecret.required': string;
138
- 'oauth.google.clientSecret.placeholder': string;
139
- 'oauth.save.success': string;
140
- 'oauth.save.error': string;
141
- };
142
- pt: {
143
- 'oauth.config.title': string;
144
- 'oauth.config.description': string;
145
- 'oauth.providers.title': string;
146
- 'oauth.providers.description': string;
147
- 'oauth.provider.google': string;
148
- 'oauth.provider.google.description': string;
149
- 'oauth.provider.apple': string;
150
- 'oauth.provider.apple.description': string;
151
- 'oauth.provider.facebook': string;
152
- 'oauth.provider.facebook.description': string;
153
- 'oauth.status.configured': string;
154
- 'oauth.status.not.configured': string;
155
- 'oauth.button.settings': string;
156
- 'oauth.button.save': string;
157
- 'oauth.button.cancel': string;
158
- 'oauth.drawer.title': string;
159
- 'oauth.apple.identifier': string;
160
- 'oauth.apple.identifier.required': string;
161
- 'oauth.apple.identifier.placeholder': string;
162
- 'oauth.facebook.appId': string;
163
- 'oauth.facebook.appId.required': string;
164
- 'oauth.facebook.appId.placeholder': string;
165
- 'oauth.facebook.appSecret': string;
166
- 'oauth.facebook.appSecret.required': string;
167
- 'oauth.facebook.appSecret.placeholder': string;
168
- 'oauth.google.clientId': string;
169
- 'oauth.google.clientId.required': string;
170
- 'oauth.google.clientId.placeholder': string;
171
- 'oauth.google.clientSecret': string;
172
- 'oauth.google.clientSecret.required': string;
173
- 'oauth.google.clientSecret.placeholder': string;
174
- 'oauth.save.success': string;
175
- 'oauth.save.error': string;
176
- };
177
- };
178
- export default _default;
@@ -1,93 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'device.auth.title': string;
4
- 'device.auth.description': string;
5
- 'device.auth.methods.title': string;
6
- 'device.auth.methods.description': string;
7
- 'device.auth.method.team-member.title': string;
8
- 'device.auth.method.team-member.description': string;
9
- 'device.auth.method.team-member.inherit': string;
10
- 'device.auth.method.device-passcode.title': string;
11
- 'device.auth.method.device-passcode.description': string;
12
- 'auth.button.cancel': string;
13
- 'auth.button.save': string;
14
- 'auth.button.settings': string;
15
- 'auth.save.success': string;
16
- 'auth.save.error': string;
17
- 'auth.category.general': string;
18
- 'auth.category.passwordFree': string;
19
- };
20
- 'zh-CN': {
21
- 'device.auth.title': string;
22
- 'device.auth.description': string;
23
- 'device.auth.methods.title': string;
24
- 'device.auth.methods.description': string;
25
- 'device.auth.method.team-member.title': string;
26
- 'device.auth.method.team-member.description': string;
27
- 'device.auth.method.team-member.inherit': string;
28
- 'device.auth.method.device-passcode.title': string;
29
- 'device.auth.method.device-passcode.description': string;
30
- 'auth.button.cancel': string;
31
- 'auth.button.save': string;
32
- 'auth.button.settings': string;
33
- 'auth.save.success': string;
34
- 'auth.save.error': string;
35
- 'auth.category.general': string;
36
- 'auth.category.passwordFree': string;
37
- };
38
- 'zh-HK': {
39
- 'device.auth.title': string;
40
- 'device.auth.description': string;
41
- 'device.auth.methods.title': string;
42
- 'device.auth.methods.description': string;
43
- 'device.auth.method.team-member.title': string;
44
- 'device.auth.method.team-member.description': string;
45
- 'device.auth.method.team-member.inherit': string;
46
- 'device.auth.method.device-passcode.title': string;
47
- 'device.auth.method.device-passcode.description': string;
48
- 'auth.button.cancel': string;
49
- 'auth.button.save': string;
50
- 'auth.button.settings': string;
51
- 'auth.save.success': string;
52
- 'auth.save.error': string;
53
- 'auth.category.general': string;
54
- 'auth.category.passwordFree': string;
55
- };
56
- ja: {
57
- 'device.auth.title': string;
58
- 'device.auth.description': string;
59
- 'device.auth.methods.title': string;
60
- 'device.auth.methods.description': string;
61
- 'device.auth.method.team-member.title': string;
62
- 'device.auth.method.team-member.description': string;
63
- 'device.auth.method.team-member.inherit': string;
64
- 'device.auth.method.device-passcode.title': string;
65
- 'device.auth.method.device-passcode.description': string;
66
- 'auth.button.cancel': string;
67
- 'auth.button.save': string;
68
- 'auth.button.settings': string;
69
- 'auth.save.success': string;
70
- 'auth.save.error': string;
71
- 'auth.category.general': string;
72
- 'auth.category.passwordFree': string;
73
- };
74
- pt: {
75
- 'device.auth.title': string;
76
- 'device.auth.description': string;
77
- 'device.auth.methods.title': string;
78
- 'device.auth.methods.description': string;
79
- 'device.auth.method.team-member.title': string;
80
- 'device.auth.method.team-member.description': string;
81
- 'device.auth.method.team-member.inherit': string;
82
- 'device.auth.method.device-passcode.title': string;
83
- 'device.auth.method.device-passcode.description': string;
84
- 'auth.button.cancel': string;
85
- 'auth.button.save': string;
86
- 'auth.button.settings': string;
87
- 'auth.save.success': string;
88
- 'auth.save.error': string;
89
- 'auth.category.general': string;
90
- 'auth.category.passwordFree': string;
91
- };
92
- };
93
- export default _default;
@@ -1,148 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'oauth.config.title': string;
4
- 'oauth.config.description': string;
5
- 'oauth.providers.title': string;
6
- 'oauth.providers.description': string;
7
- 'oauth.provider.google': string;
8
- 'oauth.provider.google.description': string;
9
- 'oauth.provider.apple': string;
10
- 'oauth.provider.apple.description': string;
11
- 'oauth.provider.facebook': string;
12
- 'oauth.provider.facebook.description': string;
13
- 'oauth.status.configured': string;
14
- 'oauth.status.not.configured': string;
15
- 'oauth.button.settings': string;
16
- 'oauth.button.save': string;
17
- 'oauth.button.cancel': string;
18
- 'oauth.drawer.title': string;
19
- 'oauth.apple.identifier': string;
20
- 'oauth.apple.identifier.required': string;
21
- 'oauth.apple.identifier.placeholder': string;
22
- 'oauth.facebook.appId': string;
23
- 'oauth.facebook.appId.required': string;
24
- 'oauth.facebook.appId.placeholder': string;
25
- 'oauth.facebook.appSecret': string;
26
- 'oauth.facebook.appSecret.required': string;
27
- 'oauth.facebook.appSecret.placeholder': string;
28
- 'oauth.save.success': string;
29
- 'oauth.save.error': string;
30
- };
31
- 'zh-CN': {
32
- 'oauth.config.title': string;
33
- 'oauth.config.description': string;
34
- 'oauth.providers.title': string;
35
- 'oauth.providers.description': string;
36
- 'oauth.provider.google': string;
37
- 'oauth.provider.google.description': string;
38
- 'oauth.provider.apple': string;
39
- 'oauth.provider.apple.description': string;
40
- 'oauth.provider.facebook': string;
41
- 'oauth.provider.facebook.description': string;
42
- 'oauth.status.configured': string;
43
- 'oauth.status.not.configured': string;
44
- 'oauth.button.settings': string;
45
- 'oauth.button.save': string;
46
- 'oauth.button.cancel': string;
47
- 'oauth.drawer.title': string;
48
- 'oauth.apple.identifier': string;
49
- 'oauth.apple.identifier.required': string;
50
- 'oauth.apple.identifier.placeholder': string;
51
- 'oauth.facebook.appId': string;
52
- 'oauth.facebook.appId.required': string;
53
- 'oauth.facebook.appId.placeholder': string;
54
- 'oauth.facebook.appSecret': string;
55
- 'oauth.facebook.appSecret.required': string;
56
- 'oauth.facebook.appSecret.placeholder': string;
57
- 'oauth.save.success': string;
58
- 'oauth.save.error': string;
59
- };
60
- 'zh-HK': {
61
- 'oauth.config.title': string;
62
- 'oauth.config.description': string;
63
- 'oauth.providers.title': string;
64
- 'oauth.providers.description': string;
65
- 'oauth.provider.google': string;
66
- 'oauth.provider.google.description': string;
67
- 'oauth.provider.apple': string;
68
- 'oauth.provider.apple.description': string;
69
- 'oauth.provider.facebook': string;
70
- 'oauth.provider.facebook.description': string;
71
- 'oauth.status.configured': string;
72
- 'oauth.status.not.configured': string;
73
- 'oauth.button.settings': string;
74
- 'oauth.button.save': string;
75
- 'oauth.button.cancel': string;
76
- 'oauth.drawer.title': string;
77
- 'oauth.apple.identifier': string;
78
- 'oauth.apple.identifier.required': string;
79
- 'oauth.apple.identifier.placeholder': string;
80
- 'oauth.facebook.appId': string;
81
- 'oauth.facebook.appId.required': string;
82
- 'oauth.facebook.appId.placeholder': string;
83
- 'oauth.facebook.appSecret': string;
84
- 'oauth.facebook.appSecret.required': string;
85
- 'oauth.facebook.appSecret.placeholder': string;
86
- 'oauth.save.success': string;
87
- 'oauth.save.error': string;
88
- };
89
- ja: {
90
- 'oauth.config.title': string;
91
- 'oauth.config.description': string;
92
- 'oauth.providers.title': string;
93
- 'oauth.providers.description': string;
94
- 'oauth.provider.google': string;
95
- 'oauth.provider.google.description': string;
96
- 'oauth.provider.apple': string;
97
- 'oauth.provider.apple.description': string;
98
- 'oauth.provider.facebook': string;
99
- 'oauth.provider.facebook.description': string;
100
- 'oauth.status.configured': string;
101
- 'oauth.status.not.configured': string;
102
- 'oauth.button.settings': string;
103
- 'oauth.button.save': string;
104
- 'oauth.button.cancel': string;
105
- 'oauth.drawer.title': string;
106
- 'oauth.apple.identifier': string;
107
- 'oauth.apple.identifier.required': string;
108
- 'oauth.apple.identifier.placeholder': string;
109
- 'oauth.facebook.appId': string;
110
- 'oauth.facebook.appId.required': string;
111
- 'oauth.facebook.appId.placeholder': string;
112
- 'oauth.facebook.appSecret': string;
113
- 'oauth.facebook.appSecret.required': string;
114
- 'oauth.facebook.appSecret.placeholder': string;
115
- 'oauth.save.success': string;
116
- 'oauth.save.error': string;
117
- };
118
- pt: {
119
- 'oauth.config.title': string;
120
- 'oauth.config.description': string;
121
- 'oauth.providers.title': string;
122
- 'oauth.providers.description': string;
123
- 'oauth.provider.google': string;
124
- 'oauth.provider.google.description': string;
125
- 'oauth.provider.apple': string;
126
- 'oauth.provider.apple.description': string;
127
- 'oauth.provider.facebook': string;
128
- 'oauth.provider.facebook.description': string;
129
- 'oauth.status.configured': string;
130
- 'oauth.status.not.configured': string;
131
- 'oauth.button.settings': string;
132
- 'oauth.button.save': string;
133
- 'oauth.button.cancel': string;
134
- 'oauth.drawer.title': string;
135
- 'oauth.apple.identifier': string;
136
- 'oauth.apple.identifier.required': string;
137
- 'oauth.apple.identifier.placeholder': string;
138
- 'oauth.facebook.appId': string;
139
- 'oauth.facebook.appId.required': string;
140
- 'oauth.facebook.appId.placeholder': string;
141
- 'oauth.facebook.appSecret': string;
142
- 'oauth.facebook.appSecret.required': string;
143
- 'oauth.facebook.appSecret.placeholder': string;
144
- 'oauth.save.success': string;
145
- 'oauth.save.error': string;
146
- };
147
- };
148
- export default _default;
@@ -1,88 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'org.admin.auth.title': string;
4
- 'org.admin.auth.description': string;
5
- 'org.admin.auth.methods.title': string;
6
- 'org.admin.auth.methods.description': string;
7
- 'org.admin.password.settings.title': string;
8
- 'org.admin.password.settings.description': string;
9
- 'auth.button.cancel': string;
10
- 'auth.button.save': string;
11
- 'auth.button.settings': string;
12
- 'auth.save.success': string;
13
- 'auth.save.error': string;
14
- 'auth.oauth.config.message': string;
15
- 'auth.oauth.config.link': string;
16
- 'auth.category.general': string;
17
- 'auth.category.oauth': string;
18
- };
19
- 'zh-CN': {
20
- 'org.admin.auth.title': string;
21
- 'org.admin.auth.description': string;
22
- 'org.admin.auth.methods.title': string;
23
- 'org.admin.auth.methods.description': string;
24
- 'org.admin.password.settings.title': string;
25
- 'org.admin.password.settings.description': string;
26
- 'auth.button.cancel': string;
27
- 'auth.button.save': string;
28
- 'auth.button.settings': string;
29
- 'auth.save.success': string;
30
- 'auth.save.error': string;
31
- 'auth.oauth.config.message': string;
32
- 'auth.oauth.config.link': string;
33
- 'auth.category.general': string;
34
- 'auth.category.oauth': string;
35
- };
36
- 'zh-HK': {
37
- 'org.admin.auth.title': string;
38
- 'org.admin.auth.description': string;
39
- 'org.admin.auth.methods.title': string;
40
- 'org.admin.auth.methods.description': string;
41
- 'org.admin.password.settings.title': string;
42
- 'org.admin.password.settings.description': string;
43
- 'auth.button.cancel': string;
44
- 'auth.button.save': string;
45
- 'auth.button.settings': string;
46
- 'auth.save.success': string;
47
- 'auth.save.error': string;
48
- 'auth.oauth.config.message': string;
49
- 'auth.oauth.config.link': string;
50
- 'auth.category.general': string;
51
- 'auth.category.oauth': string;
52
- };
53
- ja: {
54
- 'org.admin.auth.title': string;
55
- 'org.admin.auth.description': string;
56
- 'org.admin.auth.methods.title': string;
57
- 'org.admin.auth.methods.description': string;
58
- 'org.admin.password.settings.title': string;
59
- 'org.admin.password.settings.description': string;
60
- 'auth.button.cancel': string;
61
- 'auth.button.save': string;
62
- 'auth.button.settings': string;
63
- 'auth.save.success': string;
64
- 'auth.save.error': string;
65
- 'auth.oauth.config.message': string;
66
- 'auth.oauth.config.link': string;
67
- 'auth.category.general': string;
68
- 'auth.category.oauth': string;
69
- };
70
- pt: {
71
- 'org.admin.auth.title': string;
72
- 'org.admin.auth.description': string;
73
- 'org.admin.auth.methods.title': string;
74
- 'org.admin.auth.methods.description': string;
75
- 'org.admin.password.settings.title': string;
76
- 'org.admin.password.settings.description': string;
77
- 'auth.button.cancel': string;
78
- 'auth.button.save': string;
79
- 'auth.button.settings': string;
80
- 'auth.save.success': string;
81
- 'auth.save.error': string;
82
- 'auth.oauth.config.message': string;
83
- 'auth.oauth.config.link': string;
84
- 'auth.category.general': string;
85
- 'auth.category.oauth': string;
86
- };
87
- };
88
- export default _default;
@@ -1,78 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'pos.operator.auth.title': string;
4
- 'pos.operator.auth.description': string;
5
- 'pos.operator.auth.methods.title': string;
6
- 'pos.operator.auth.methods.description': string;
7
- 'auth.method.digit_id_pin.title': string;
8
- 'auth.method.digit_id_pin.description': string;
9
- 'auth.button.cancel': string;
10
- 'auth.button.save': string;
11
- 'auth.button.settings': string;
12
- 'auth.category.general': string;
13
- 'auth.category.passwordFree': string;
14
- 'auth.save.success': string;
15
- 'auth.save.error': string;
16
- };
17
- 'zh-CN': {
18
- 'pos.operator.auth.title': string;
19
- 'pos.operator.auth.description': string;
20
- 'pos.operator.auth.methods.title': string;
21
- 'pos.operator.auth.methods.description': string;
22
- 'auth.method.digit_id_pin.title': string;
23
- 'auth.method.digit_id_pin.description': string;
24
- 'auth.button.cancel': string;
25
- 'auth.button.save': string;
26
- 'auth.button.settings': string;
27
- 'auth.category.general': string;
28
- 'auth.category.passwordFree': string;
29
- 'auth.save.success': string;
30
- 'auth.save.error': string;
31
- };
32
- 'zh-HK': {
33
- 'pos.operator.auth.title': string;
34
- 'pos.operator.auth.description': string;
35
- 'pos.operator.auth.methods.title': string;
36
- 'pos.operator.auth.methods.description': string;
37
- 'auth.method.digit_id_pin.title': string;
38
- 'auth.method.digit_id_pin.description': string;
39
- 'auth.button.cancel': string;
40
- 'auth.button.save': string;
41
- 'auth.button.settings': string;
42
- 'auth.category.general': string;
43
- 'auth.category.passwordFree': string;
44
- 'auth.save.success': string;
45
- 'auth.save.error': string;
46
- };
47
- ja: {
48
- 'pos.operator.auth.title': string;
49
- 'pos.operator.auth.description': string;
50
- 'pos.operator.auth.methods.title': string;
51
- 'pos.operator.auth.methods.description': string;
52
- 'auth.method.digit_id_pin.title': string;
53
- 'auth.method.digit_id_pin.description': string;
54
- 'auth.button.cancel': string;
55
- 'auth.button.save': string;
56
- 'auth.button.settings': string;
57
- 'auth.category.general': string;
58
- 'auth.category.passwordFree': string;
59
- 'auth.save.success': string;
60
- 'auth.save.error': string;
61
- };
62
- pt: {
63
- 'pos.operator.auth.title': string;
64
- 'pos.operator.auth.description': string;
65
- 'pos.operator.auth.methods.title': string;
66
- 'pos.operator.auth.methods.description': string;
67
- 'auth.method.digit_id_pin.title': string;
68
- 'auth.method.digit_id_pin.description': string;
69
- 'auth.button.cancel': string;
70
- 'auth.button.save': string;
71
- 'auth.button.settings': string;
72
- 'auth.category.general': string;
73
- 'auth.category.passwordFree': string;
74
- 'auth.save.success': string;
75
- 'auth.save.error': string;
76
- };
77
- };
78
- export default _default;
@@ -1,88 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'saas.admin.auth.title': string;
4
- 'saas.admin.auth.description': string;
5
- 'saas.admin.auth.methods.title': string;
6
- 'saas.admin.auth.methods.description': string;
7
- 'saas.admin.password.settings.title': string;
8
- 'saas.admin.password.settings.description': string;
9
- 'auth.button.cancel': string;
10
- 'auth.button.save': string;
11
- 'auth.button.settings': string;
12
- 'auth.save.success': string;
13
- 'auth.save.error': string;
14
- 'auth.oauth.config.message': string;
15
- 'auth.oauth.config.link': string;
16
- 'auth.category.general': string;
17
- 'auth.category.oauth': string;
18
- };
19
- 'zh-CN': {
20
- 'saas.admin.auth.title': string;
21
- 'saas.admin.auth.description': string;
22
- 'saas.admin.auth.methods.title': string;
23
- 'saas.admin.auth.methods.description': string;
24
- 'saas.admin.password.settings.title': string;
25
- 'saas.admin.password.settings.description': string;
26
- 'auth.button.cancel': string;
27
- 'auth.button.save': string;
28
- 'auth.button.settings': string;
29
- 'auth.save.success': string;
30
- 'auth.save.error': string;
31
- 'auth.oauth.config.message': string;
32
- 'auth.oauth.config.link': string;
33
- 'auth.category.general': string;
34
- 'auth.category.oauth': string;
35
- };
36
- 'zh-HK': {
37
- 'saas.admin.auth.title': string;
38
- 'saas.admin.auth.description': string;
39
- 'saas.admin.auth.methods.title': string;
40
- 'saas.admin.auth.methods.description': string;
41
- 'saas.admin.password.settings.title': string;
42
- 'saas.admin.password.settings.description': string;
43
- 'auth.button.cancel': string;
44
- 'auth.button.save': string;
45
- 'auth.button.settings': string;
46
- 'auth.save.success': string;
47
- 'auth.save.error': string;
48
- 'auth.oauth.config.message': string;
49
- 'auth.oauth.config.link': string;
50
- 'auth.category.general': string;
51
- 'auth.category.oauth': string;
52
- };
53
- ja: {
54
- 'saas.admin.auth.title': string;
55
- 'saas.admin.auth.description': string;
56
- 'saas.admin.auth.methods.title': string;
57
- 'saas.admin.auth.methods.description': string;
58
- 'saas.admin.password.settings.title': string;
59
- 'saas.admin.password.settings.description': string;
60
- 'auth.button.cancel': string;
61
- 'auth.button.save': string;
62
- 'auth.button.settings': string;
63
- 'auth.save.success': string;
64
- 'auth.save.error': string;
65
- 'auth.oauth.config.message': string;
66
- 'auth.oauth.config.link': string;
67
- 'auth.category.general': string;
68
- 'auth.category.oauth': string;
69
- };
70
- pt: {
71
- 'saas.admin.auth.title': string;
72
- 'saas.admin.auth.description': string;
73
- 'saas.admin.auth.methods.title': string;
74
- 'saas.admin.auth.methods.description': string;
75
- 'saas.admin.password.settings.title': string;
76
- 'saas.admin.password.settings.description': string;
77
- 'auth.button.cancel': string;
78
- 'auth.button.save': string;
79
- 'auth.button.settings': string;
80
- 'auth.save.success': string;
81
- 'auth.save.error': string;
82
- 'auth.oauth.config.message': string;
83
- 'auth.oauth.config.link': string;
84
- 'auth.category.general': string;
85
- 'auth.category.oauth': string;
86
- };
87
- };
88
- export default _default;