cecon-interfaces 1.8.38 → 1.8.41

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 (116) hide show
  1. package/dist/esm2022/payio/cash-config/entities/config-operation.entity.mjs +2 -1
  2. package/dist/esm2022/payio/cash-config/enums/index.mjs +2 -1
  3. package/dist/esm2022/payio/cash-config/enums/shift.enum.mjs +9 -0
  4. package/dist/esm2022/payio/cash-config/interfaces/i-cash-config-operation.mjs +1 -1
  5. package/dist/esm2022/payio/catalogs/entities/catalog-category.entity.mjs +22 -0
  6. package/dist/esm2022/payio/catalogs/entities/catalog-item.entity.mjs +30 -0
  7. package/dist/esm2022/payio/catalogs/entities/catalog-option-group.entity.mjs +21 -0
  8. package/dist/esm2022/payio/catalogs/entities/catalog-option.entity.mjs +23 -0
  9. package/dist/esm2022/payio/catalogs/entities/catalog-pizza-crust.entity.mjs +20 -0
  10. package/dist/esm2022/payio/catalogs/entities/catalog-pizza-edge.entity.mjs +19 -0
  11. package/dist/esm2022/payio/catalogs/entities/catalog-pizza-size.entity.mjs +21 -0
  12. package/dist/esm2022/payio/catalogs/entities/catalog-pizza-topping.entity.mjs +24 -0
  13. package/dist/esm2022/payio/catalogs/entities/catalog-pizza.entity.mjs +18 -0
  14. package/dist/esm2022/payio/catalogs/entities/catalog-shift.entity.mjs +21 -0
  15. package/dist/esm2022/payio/catalogs/entities/catalog.entity.mjs +24 -0
  16. package/dist/esm2022/payio/catalogs/entities/index.mjs +12 -0
  17. package/dist/esm2022/payio/catalogs/enums/catalog-status.enum.mjs +10 -0
  18. package/dist/esm2022/payio/catalogs/enums/catalog-template.enum.mjs +8 -0
  19. package/dist/esm2022/payio/catalogs/enums/index.mjs +3 -0
  20. package/dist/esm2022/payio/catalogs/index.mjs +4 -0
  21. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-category.mjs +2 -0
  22. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-item.mjs +2 -0
  23. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-option-group.mjs +2 -0
  24. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-option.mjs +2 -0
  25. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-pizza-crust.mjs +2 -0
  26. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-pizza-edge.mjs +2 -0
  27. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-pizza-size.mjs +2 -0
  28. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-pizza-topping.mjs +2 -0
  29. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-pizza.mjs +2 -0
  30. package/dist/esm2022/payio/catalogs/interfaces/i-catalog-shift.mjs +2 -0
  31. package/dist/esm2022/payio/catalogs/interfaces/i-catalog.mjs +2 -0
  32. package/dist/esm2022/payio/catalogs/interfaces/index.mjs +2 -0
  33. package/dist/esm2022/payio/chef-config/entities/config-operation.entity.mjs +2 -2
  34. package/dist/esm2022/payio/chef-config/entities/webhook.entity.mjs +2 -10
  35. package/dist/esm2022/payio/chef-config/enums/webhook-type.enum.mjs +2 -5
  36. package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-operation.mjs +1 -1
  37. package/dist/esm2022/payio/chef-config/interfaces/i-webhook.mjs +1 -1
  38. package/dist/esm2022/payio/chef-config/interfaces/index.mjs +1 -1
  39. package/dist/esm2022/payio/index.mjs +2 -1
  40. package/dist/fesm2022/cecon-interfaces.mjs +265 -15
  41. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  42. package/dist/payio/cash-config/entities/config-operation.entity.d.ts +1 -0
  43. package/dist/payio/cash-config/entities/config-operation.entity.js +1 -0
  44. package/dist/payio/cash-config/enums/index.d.ts +1 -0
  45. package/dist/payio/cash-config/enums/index.js +3 -1
  46. package/dist/payio/cash-config/enums/shift.enum.d.ts +7 -0
  47. package/dist/payio/cash-config/enums/shift.enum.js +11 -0
  48. package/dist/payio/cash-config/interfaces/i-cash-config-operation.d.ts +1 -0
  49. package/dist/payio/catalogs/entities/catalog-category.entity.d.ts +13 -0
  50. package/dist/payio/catalogs/entities/catalog-category.entity.js +26 -0
  51. package/dist/payio/catalogs/entities/catalog-item.entity.d.ts +27 -0
  52. package/dist/payio/catalogs/entities/catalog-item.entity.js +34 -0
  53. package/dist/payio/catalogs/entities/catalog-option-group.entity.d.ts +14 -0
  54. package/dist/payio/catalogs/entities/catalog-option-group.entity.js +25 -0
  55. package/dist/payio/catalogs/entities/catalog-option.entity.d.ts +17 -0
  56. package/dist/payio/catalogs/entities/catalog-option.entity.js +27 -0
  57. package/dist/payio/catalogs/entities/catalog-pizza-crust.entity.d.ts +14 -0
  58. package/dist/payio/catalogs/entities/catalog-pizza-crust.entity.js +24 -0
  59. package/dist/payio/catalogs/entities/catalog-pizza-edge.entity.d.ts +13 -0
  60. package/dist/payio/catalogs/entities/catalog-pizza-edge.entity.js +23 -0
  61. package/dist/payio/catalogs/entities/catalog-pizza-size.entity.d.ts +13 -0
  62. package/dist/payio/catalogs/entities/catalog-pizza-size.entity.js +25 -0
  63. package/dist/payio/catalogs/entities/catalog-pizza-topping.entity.d.ts +20 -0
  64. package/dist/payio/catalogs/entities/catalog-pizza-topping.entity.js +28 -0
  65. package/dist/payio/catalogs/entities/catalog-pizza.entity.d.ts +15 -0
  66. package/dist/payio/catalogs/entities/catalog-pizza.entity.js +22 -0
  67. package/dist/payio/catalogs/entities/catalog-shift.entity.d.ts +13 -0
  68. package/dist/payio/catalogs/entities/catalog-shift.entity.js +25 -0
  69. package/dist/payio/catalogs/entities/catalog.entity.d.ts +17 -0
  70. package/dist/payio/catalogs/entities/catalog.entity.js +27 -0
  71. package/dist/payio/catalogs/entities/index.d.ts +11 -0
  72. package/dist/payio/catalogs/entities/index.js +25 -0
  73. package/dist/payio/catalogs/enums/catalog-status.enum.d.ts +5 -0
  74. package/dist/payio/catalogs/enums/catalog-status.enum.js +12 -0
  75. package/dist/payio/catalogs/enums/catalog-template.enum.d.ts +4 -0
  76. package/dist/payio/catalogs/enums/catalog-template.enum.js +10 -0
  77. package/dist/payio/catalogs/enums/index.d.ts +2 -0
  78. package/dist/payio/catalogs/enums/index.js +7 -0
  79. package/dist/payio/catalogs/index.d.ts +3 -0
  80. package/dist/payio/catalogs/index.js +19 -0
  81. package/dist/payio/catalogs/interfaces/i-catalog-category.d.ts +13 -0
  82. package/dist/payio/catalogs/interfaces/i-catalog-category.js +2 -0
  83. package/dist/payio/catalogs/interfaces/i-catalog-item.d.ts +25 -0
  84. package/dist/payio/catalogs/interfaces/i-catalog-item.js +2 -0
  85. package/dist/payio/catalogs/interfaces/i-catalog-option-group.d.ts +12 -0
  86. package/dist/payio/catalogs/interfaces/i-catalog-option-group.js +2 -0
  87. package/dist/payio/catalogs/interfaces/i-catalog-option.d.ts +15 -0
  88. package/dist/payio/catalogs/interfaces/i-catalog-option.js +2 -0
  89. package/dist/payio/catalogs/interfaces/i-catalog-pizza-crust.d.ts +12 -0
  90. package/dist/payio/catalogs/interfaces/i-catalog-pizza-crust.js +2 -0
  91. package/dist/payio/catalogs/interfaces/i-catalog-pizza-edge.d.ts +11 -0
  92. package/dist/payio/catalogs/interfaces/i-catalog-pizza-edge.js +2 -0
  93. package/dist/payio/catalogs/interfaces/i-catalog-pizza-size.d.ts +11 -0
  94. package/dist/payio/catalogs/interfaces/i-catalog-pizza-size.js +2 -0
  95. package/dist/payio/catalogs/interfaces/i-catalog-pizza-topping.d.ts +18 -0
  96. package/dist/payio/catalogs/interfaces/i-catalog-pizza-topping.js +2 -0
  97. package/dist/payio/catalogs/interfaces/i-catalog-pizza.d.ts +13 -0
  98. package/dist/payio/catalogs/interfaces/i-catalog-pizza.js +2 -0
  99. package/dist/payio/catalogs/interfaces/i-catalog-shift.d.ts +11 -0
  100. package/dist/payio/catalogs/interfaces/i-catalog-shift.js +2 -0
  101. package/dist/payio/catalogs/interfaces/i-catalog.d.ts +15 -0
  102. package/dist/payio/catalogs/interfaces/i-catalog.js +2 -0
  103. package/dist/payio/catalogs/interfaces/index.d.ts +11 -0
  104. package/dist/payio/catalogs/interfaces/index.js +2 -0
  105. package/dist/payio/chef-config/entities/config-operation.entity.d.ts +1 -1
  106. package/dist/payio/chef-config/entities/config-operation.entity.js +1 -1
  107. package/dist/payio/chef-config/entities/webhook.entity.d.ts +2 -9
  108. package/dist/payio/chef-config/entities/webhook.entity.js +1 -12
  109. package/dist/payio/chef-config/enums/webhook-type.enum.d.ts +2 -5
  110. package/dist/payio/chef-config/enums/webhook-type.enum.js +1 -4
  111. package/dist/payio/chef-config/interfaces/i-chef-config-operation.d.ts +2 -1
  112. package/dist/payio/chef-config/interfaces/i-webhook.d.ts +1 -9
  113. package/dist/payio/chef-config/interfaces/index.d.ts +1 -1
  114. package/dist/payio/index.d.ts +1 -0
  115. package/dist/payio/index.js +1 -0
  116. package/package.json +1 -1
@@ -3,6 +3,7 @@ export * from './admins';
3
3
  export * from './app';
4
4
  export * from './cash-config';
5
5
  export * from './chef-config';
6
+ export * from './catalogs';
6
7
  export * from './company';
7
8
  export * from './device';
8
9
  export * from './distributors';
@@ -21,4 +22,4 @@ export * from './tabs';
21
22
  export * from './tokens';
22
23
  export * from './user';
23
24
  export * from './vision-terminal';
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGF5aW8vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQztBQUVqQyxjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLE9BQU8sQ0FBQztBQUV0QixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLFdBQVcsQ0FBQztBQUUxQixjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLGdCQUFnQixDQUFDO0FBRS9CLGNBQWMsbUJBQW1CLENBQUM7QUFFbEMsY0FBYyxXQUFXLENBQUM7QUFFMUIsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxnQkFBZ0IsQ0FBQztBQUUvQixjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLFdBQVcsQ0FBQztBQUUxQixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLG9CQUFvQixDQUFDO0FBRW5DLGNBQWMsaUJBQWlCLENBQUM7QUFFaEMsY0FBYyxhQUFhLENBQUM7QUFFNUIsY0FBYyxRQUFRLENBQUM7QUFFdkIsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxRQUFRLENBQUM7QUFFdkIsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWN0aXZhdGlvbi1rZXknO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9hZG1pbnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9hcHAnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9jYXNoLWNvbmZpZyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2NoZWYtY29uZmlnJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vY29tcGFueSc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2RldmljZSc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2Rpc3RyaWJ1dG9ycyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2dsb2JhbC1wcm9kdWN0cyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL21lbWJlcnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9vcmRlcnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9vcmRlcnMtcXVldWUnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9wYXJ0bmVycyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3BheWxvYWQnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9wZXJtaXNzaW9ucyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3Byb2R1Y3RzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vcmVzdW1lLWNvbXBhbmllcyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3Jlc3VtZS1xdWV1ZXMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9zY2hlZHVsZXMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi90YWJzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vdG9rZW5zJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vdXNlcic7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3Zpc2lvbi10ZXJtaW5hbCc7XHJcbiJdfQ==
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGF5aW8vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQztBQUVqQyxjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLE9BQU8sQ0FBQztBQUV0QixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLFdBQVcsQ0FBQztBQUUxQixjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLGdCQUFnQixDQUFDO0FBRS9CLGNBQWMsbUJBQW1CLENBQUM7QUFFbEMsY0FBYyxXQUFXLENBQUM7QUFFMUIsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxnQkFBZ0IsQ0FBQztBQUUvQixjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLFdBQVcsQ0FBQztBQUUxQixjQUFjLGVBQWUsQ0FBQztBQUU5QixjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLG9CQUFvQixDQUFDO0FBRW5DLGNBQWMsaUJBQWlCLENBQUM7QUFFaEMsY0FBYyxhQUFhLENBQUM7QUFFNUIsY0FBYyxRQUFRLENBQUM7QUFFdkIsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxRQUFRLENBQUM7QUFFdkIsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYWN0aXZhdGlvbi1rZXknO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9hZG1pbnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9hcHAnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9jYXNoLWNvbmZpZyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL2NoZWYtY29uZmlnJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vY2F0YWxvZ3MnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9jb21wYW55JztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vZGV2aWNlJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vZGlzdHJpYnV0b3JzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vZ2xvYmFsLXByb2R1Y3RzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbWVtYmVycyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL29yZGVycyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL29yZGVycy1xdWV1ZSc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3BhcnRuZXJzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vcGF5bG9hZCc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3Blcm1pc3Npb25zJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vcHJvZHVjdHMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi9yZXN1bWUtY29tcGFuaWVzJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vcmVzdW1lLXF1ZXVlcyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3NjaGVkdWxlcyc7XHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3RhYnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi90b2tlbnMnO1xyXG5cclxuZXhwb3J0ICogZnJvbSAnLi91c2VyJztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vdmlzaW9uLXRlcm1pbmFsJztcclxuIl19
@@ -6830,12 +6830,9 @@ var EWebhookType;
6830
6830
  EWebhookType["GET_ORDER"] = "GET_ORDER";
6831
6831
  EWebhookType["CANCEL_ORDER"] = "CANCEL_ORDER";
6832
6832
  EWebhookType["GET_ORDER_STATUS"] = "GET_ORDER_STATUS";
6833
- EWebhookType["VISION_SEND_IMG"] = "VISION_SEND_IMG";
6834
- EWebhookType["VISION_ASSIGN_POSITION"] = "VISION_ASSIGN_POSITION";
6835
- EWebhookType["VISION_UNASSIGN_POSITION"] = "VISION_UNASSIGN_POSITION";
6836
- EWebhookType["VISION_GET_POSITION"] = "VISION_GET_POSITION";
6837
6833
  EWebhookType["NFCE_GET_XML"] = "NFCE_GET_XML";
6838
6834
  EWebhookType["GET_TAB"] = "GET_TAB";
6835
+ EWebhookType["VISION"] = "VISION";
6839
6836
  })(EWebhookType || (EWebhookType = {}));
6840
6837
 
6841
6838
  class PayioChefConfigOperationEntity {
@@ -6857,7 +6854,7 @@ class PayioChefConfigOperationEntity {
6857
6854
  tabMode = EPayioChefTabMode.MANUAL;
6858
6855
  tabRegistered = false;
6859
6856
  urlLogo = '';
6860
- tabRegistred = false;
6857
+ visionDeviceId = '';
6861
6858
  constructor(data) {
6862
6859
  if (data) {
6863
6860
  for (let key in data) {
@@ -6908,13 +6905,8 @@ class PayioChefConfigEntity {
6908
6905
  }
6909
6906
 
6910
6907
  class PayioWebhookEntity {
6911
- active = true;
6912
- headers = [];
6913
6908
  id = '';
6914
- locked = false;
6915
6909
  method = EWebhookMethod.POST;
6916
- // Travar caso não esteja respondendo
6917
- response;
6918
6910
  type = EWebhookType.SEND_ORDER;
6919
6911
  url = '';
6920
6912
  constructor(data) {
@@ -6926,12 +6918,18 @@ class PayioWebhookEntity {
6926
6918
  }
6927
6919
  }
6928
6920
  }
6929
- }
6930
- class PayioWebhookHeaderEntity {
6931
- key = '';
6932
- value = '';
6921
+ response;
6933
6922
  }
6934
6923
 
6924
+ var EWorkShiftType;
6925
+ (function (EWorkShiftType) {
6926
+ EWorkShiftType["FULL_24H"] = "00:00_23:59";
6927
+ EWorkShiftType["TWO_SHIFTS_12H"] = "00:00_12:00_12:00_23:59";
6928
+ EWorkShiftType["THREE_SHIFTS_8H"] = "00:00_08:00_08:00_16:00_16:00_23:59";
6929
+ EWorkShiftType["FOUR_SHIFTS_6H"] = "00:00_06:00_06:00_12:00_12:00_18:00_18:00_23:59";
6930
+ EWorkShiftType["TWO_SHIFTS_14H"] = "00:00_14:00_14:00_23:59";
6931
+ })(EWorkShiftType || (EWorkShiftType = {}));
6932
+
6935
6933
  var ETefProvider;
6936
6934
  (function (ETefProvider) {
6937
6935
  ETefProvider["FISERV"] = "FISERV";
@@ -6945,6 +6943,7 @@ class PayioCashConfigOperationEntity {
6945
6943
  tabFormat = null;
6946
6944
  tef = new PayioCashConfigOperationTefEntity();
6947
6945
  pdvId = '';
6946
+ visionDeviceId = '';
6948
6947
  constructor(data) {
6949
6948
  if (data) {
6950
6949
  for (let key in data) {
@@ -6982,6 +6981,257 @@ class PayioCashConfigEntity {
6982
6981
  }
6983
6982
  }
6984
6983
 
6984
+ var EPayioCatalogStatus;
6985
+ (function (EPayioCatalogStatus) {
6986
+ // #region Properties (1)
6987
+ // Usuário ou sistema que gerou a chave
6988
+ EPayioCatalogStatus["AVAILABLE"] = "AVAILABLE";
6989
+ EPayioCatalogStatus["INACTIVE"] = "INACTIVE";
6990
+ EPayioCatalogStatus["UNAVAILABLE"] = "UNAVAILABLE";
6991
+ // #endregion Properties (1)
6992
+ })(EPayioCatalogStatus || (EPayioCatalogStatus = {}));
6993
+
6994
+ var EPayioCatalogTemplate;
6995
+ (function (EPayioCatalogTemplate) {
6996
+ // #region Properties (1)
6997
+ EPayioCatalogTemplate["DEFAULT"] = "DEFAULT";
6998
+ EPayioCatalogTemplate["PIZZA"] = "PIZZA";
6999
+ // #endregion Properties (1)
7000
+ })(EPayioCatalogTemplate || (EPayioCatalogTemplate = {}));
7001
+
7002
+ class PayioCatalogPizzaEntity {
7003
+ crusts = [];
7004
+ edges = [];
7005
+ id = '';
7006
+ shifts = [];
7007
+ sizes = [];
7008
+ toppings = [];
7009
+ constructor(data) {
7010
+ if (data) {
7011
+ for (let key in data) {
7012
+ if (data.hasOwnProperty(key) && key in this) {
7013
+ this[key] = data[key];
7014
+ }
7015
+ }
7016
+ }
7017
+ }
7018
+ }
7019
+
7020
+ class PayioCatalogCategoryEntity {
7021
+ id = '';
7022
+ index = 0;
7023
+ items = [];
7024
+ name = '';
7025
+ pizzas = new PayioCatalogPizzaEntity();
7026
+ sequence = 0;
7027
+ status = EPayioCatalogStatus.AVAILABLE;
7028
+ template = EPayioCatalogTemplate.DEFAULT;
7029
+ constructor(data) {
7030
+ if (data) {
7031
+ for (let key in data) {
7032
+ if (data.hasOwnProperty(key) && key in this) {
7033
+ this[key] = data[key];
7034
+ }
7035
+ }
7036
+ }
7037
+ }
7038
+ }
7039
+
7040
+ class PayioCatalogItemEntity {
7041
+ contextModifiers = [];
7042
+ customizationModifiers = [];
7043
+ description = '';
7044
+ dietaryRestrictions = [];
7045
+ externalCode = '';
7046
+ hasOptionGroups = false;
7047
+ id = '';
7048
+ imagePath = '';
7049
+ index = 0;
7050
+ name = '';
7051
+ optionGroups = [];
7052
+ price = { value: 0, originalValue: 0 };
7053
+ productId = '';
7054
+ sequence = 0;
7055
+ serving = '';
7056
+ shifts = [];
7057
+ status = EPayioCatalogStatus.AVAILABLE;
7058
+ constructor(data) {
7059
+ if (data) {
7060
+ for (let key in data) {
7061
+ if (data.hasOwnProperty(key) && key in this) {
7062
+ this[key] = data[key];
7063
+ }
7064
+ }
7065
+ }
7066
+ }
7067
+ }
7068
+
7069
+ class PayioCatalogOptionGroupEntity {
7070
+ id = '';
7071
+ index = 0;
7072
+ max = 0;
7073
+ min = 0;
7074
+ name = '';
7075
+ options = [];
7076
+ sequence = 0;
7077
+ status = EPayioCatalogStatus.AVAILABLE;
7078
+ constructor(data) {
7079
+ if (data) {
7080
+ for (let key in data) {
7081
+ if (data.hasOwnProperty(key) && key in this) {
7082
+ this[key] = data[key];
7083
+ }
7084
+ }
7085
+ }
7086
+ }
7087
+ }
7088
+
7089
+ class PayioCatalogOptionEntity {
7090
+ description = '';
7091
+ externalCode = '';
7092
+ id = '';
7093
+ imagePath = '';
7094
+ index = 0;
7095
+ name = '';
7096
+ price = { value: 0 };
7097
+ productId = '';
7098
+ sequence = 0;
7099
+ status = EPayioCatalogStatus.AVAILABLE;
7100
+ constructor(data) {
7101
+ if (data) {
7102
+ for (let key in data) {
7103
+ if (data.hasOwnProperty(key) && key in this) {
7104
+ this[key] = data[key];
7105
+ }
7106
+ }
7107
+ }
7108
+ }
7109
+ }
7110
+
7111
+ class PayioCatalogPizzaCrustEntity {
7112
+ externalCode = '';
7113
+ id = '';
7114
+ index = 0;
7115
+ name = '';
7116
+ price = { value: 0 };
7117
+ sequence = 0;
7118
+ status = EPayioCatalogStatus.AVAILABLE;
7119
+ constructor(data) {
7120
+ if (data) {
7121
+ for (let key in data) {
7122
+ if (data.hasOwnProperty(key) && key in this) {
7123
+ this[key] = data[key];
7124
+ }
7125
+ }
7126
+ }
7127
+ }
7128
+ }
7129
+
7130
+ class PayioCatalogPizzaEdgeEntity {
7131
+ id = '';
7132
+ index = 0;
7133
+ name = '';
7134
+ price = { value: 0 };
7135
+ sequence = 0;
7136
+ status = EPayioCatalogStatus.AVAILABLE;
7137
+ constructor(data) {
7138
+ if (data) {
7139
+ for (let key in data) {
7140
+ if (data.hasOwnProperty(key) && key in this) {
7141
+ this[key] = data[key];
7142
+ }
7143
+ }
7144
+ }
7145
+ }
7146
+ }
7147
+
7148
+ class PayioCatalogPizzaSizeEntity {
7149
+ acceptedFractions = [];
7150
+ externalCode = '';
7151
+ id = '';
7152
+ index = 0;
7153
+ name = '';
7154
+ sequence = 0;
7155
+ slices = 0;
7156
+ status = EPayioCatalogStatus.AVAILABLE;
7157
+ constructor(data) {
7158
+ if (data) {
7159
+ for (let key in data) {
7160
+ if (data.hasOwnProperty(key) && key in this) {
7161
+ this[key] = data[key];
7162
+ }
7163
+ }
7164
+ }
7165
+ }
7166
+ }
7167
+
7168
+ class PayioCatalogPizzaToppingEntity {
7169
+ description = '';
7170
+ dietaryRestrictions = [];
7171
+ externalCode = '';
7172
+ id = '';
7173
+ image = '';
7174
+ imagePath = '';
7175
+ index = 0;
7176
+ name = '';
7177
+ prices = {};
7178
+ sequence = 0;
7179
+ status = EPayioCatalogStatus.AVAILABLE;
7180
+ constructor(data) {
7181
+ if (data) {
7182
+ for (let key in data) {
7183
+ if (data.hasOwnProperty(key) && key in this) {
7184
+ this[key] = data[key];
7185
+ }
7186
+ }
7187
+ }
7188
+ }
7189
+ }
7190
+
7191
+ class PayioCatalogShiftEntity {
7192
+ endTime = '23:59';
7193
+ friday = true;
7194
+ monday = true;
7195
+ saturday = true;
7196
+ startTime = '00:00';
7197
+ sunday = true;
7198
+ thursday = true;
7199
+ tuesday = true;
7200
+ wednesday = true;
7201
+ constructor(data) {
7202
+ if (data) {
7203
+ for (let key in data) {
7204
+ if (data.hasOwnProperty(key) && key in this) {
7205
+ this[key] = data[key];
7206
+ }
7207
+ }
7208
+ }
7209
+ }
7210
+ }
7211
+
7212
+ class PayioCatalogEntity {
7213
+ active = true;
7214
+ categories;
7215
+ companyId = '';
7216
+ containerId = null;
7217
+ context = ['DEFAULT'];
7218
+ createdAt = new Date();
7219
+ id = '';
7220
+ name = '';
7221
+ sandbox = false;
7222
+ status = EPayioCatalogStatus.AVAILABLE;
7223
+ updatedAt = new Date();
7224
+ constructor(data) {
7225
+ if (data) {
7226
+ for (let key in data) {
7227
+ if (data.hasOwnProperty(key) && key in this) {
7228
+ this[key] = data[key];
7229
+ }
7230
+ }
7231
+ }
7232
+ }
7233
+ }
7234
+
6985
7235
  class PayioAddressEntity {
6986
7236
  // #region Properties (11)
6987
7237
  city = '';
@@ -8792,5 +9042,5 @@ class FirebankWithdrawPostResponseEntity {
8792
9042
  * Generated bundle index. Do not edit.
8793
9043
  */
8794
9044
 
8795
- export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioAdminRole, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioRole, EPayioTabStatus, EPayioUserType, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioAppSlug, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserTypeEnum, PayioVisionTerminalEntity, PayioWebhookEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
9045
+ export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioAdminRole, EPayioCatalogStatus, EPayioCatalogTemplate, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioRole, EPayioTabStatus, EPayioUserType, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioAppSlug, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EWorkShiftType, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioCatalogCategoryEntity, PayioCatalogEntity, PayioCatalogItemEntity, PayioCatalogOptionEntity, PayioCatalogOptionGroupEntity, PayioCatalogPizzaCrustEntity, PayioCatalogPizzaEdgeEntity, PayioCatalogPizzaEntity, PayioCatalogPizzaSizeEntity, PayioCatalogPizzaToppingEntity, PayioCatalogShiftEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserTypeEnum, PayioVisionTerminalEntity, PayioWebhookEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
8796
9046
  //# sourceMappingURL=cecon-interfaces.mjs.map