cecon-interfaces 1.6.35 → 1.6.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm2022/payio/global-products/entities/global-product.entity.mjs +30 -0
 - package/dist/esm2022/payio/global-products/entities/index.mjs +2 -0
 - package/dist/esm2022/payio/global-products/index.mjs +3 -0
 - package/dist/esm2022/payio/global-products/interfaces/i-global-products.mjs +2 -0
 - package/dist/esm2022/payio/global-products/interfaces/index.mjs +2 -0
 - package/dist/esm2022/payio/index.mjs +3 -1
 - package/dist/esm2022/payio/products/entities/index.mjs +2 -0
 - package/dist/esm2022/payio/products/entities/product.entity.mjs +28 -0
 - package/dist/esm2022/payio/products/index.mjs +3 -0
 - package/dist/esm2022/payio/products/interfaces/i-products.mjs +2 -0
 - package/dist/esm2022/payio/products/interfaces/index.mjs +2 -0
 - package/dist/fesm2022/cecon-interfaces.mjs +59 -1
 - package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
 - package/dist/package.json +1 -1
 - package/dist/payio/global-products/entities/global-product.entity.d.ts +19 -0
 - package/dist/payio/global-products/entities/global-product.entity.js +34 -0
 - package/dist/payio/global-products/entities/index.d.ts +1 -0
 - package/dist/payio/global-products/entities/index.js +5 -0
 - package/dist/payio/global-products/index.d.ts +2 -0
 - package/dist/payio/global-products/index.js +18 -0
 - package/dist/payio/global-products/interfaces/i-global-products.d.ts +17 -0
 - package/dist/payio/global-products/interfaces/i-global-products.js +2 -0
 - package/dist/payio/global-products/interfaces/index.d.ts +1 -0
 - package/dist/payio/global-products/interfaces/index.js +2 -0
 - package/dist/payio/index.d.ts +2 -0
 - package/dist/payio/index.js +2 -0
 - package/dist/payio/products/entities/index.d.ts +1 -0
 - package/dist/payio/products/entities/index.js +5 -0
 - package/dist/payio/products/entities/product.entity.d.ts +17 -0
 - package/dist/payio/products/entities/product.entity.js +32 -0
 - package/dist/payio/products/index.d.ts +2 -0
 - package/dist/payio/products/index.js +18 -0
 - package/dist/payio/products/interfaces/i-products.d.ts +15 -0
 - package/dist/payio/products/interfaces/i-products.js +2 -0
 - package/dist/payio/products/interfaces/index.d.ts +1 -0
 - package/dist/payio/products/interfaces/index.js +2 -0
 - package/package.json +1 -1
 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export class PayioGlobalProductEntity {
         
     | 
| 
      
 2 
     | 
    
         
            +
                // #region Properties (15)
         
     | 
| 
      
 3 
     | 
    
         
            +
                active = true;
         
     | 
| 
      
 4 
     | 
    
         
            +
                avgPrice = 0;
         
     | 
| 
      
 5 
     | 
    
         
            +
                brand = '';
         
     | 
| 
      
 6 
     | 
    
         
            +
                code = '';
         
     | 
| 
      
 7 
     | 
    
         
            +
                createdAt = new Date();
         
     | 
| 
      
 8 
     | 
    
         
            +
                name = '';
         
     | 
| 
      
 9 
     | 
    
         
            +
                id = '';
         
     | 
| 
      
 10 
     | 
    
         
            +
                maxPrice = 0;
         
     | 
| 
      
 11 
     | 
    
         
            +
                minPrice = 0;
         
     | 
| 
      
 12 
     | 
    
         
            +
                quantityPackaging = 0;
         
     | 
| 
      
 13 
     | 
    
         
            +
                tags = [];
         
     | 
| 
      
 14 
     | 
    
         
            +
                thumbnail = null;
         
     | 
| 
      
 15 
     | 
    
         
            +
                unit = '';
         
     | 
| 
      
 16 
     | 
    
         
            +
                updatedAt = new Date();
         
     | 
| 
      
 17 
     | 
    
         
            +
                weight = 0;
         
     | 
| 
      
 18 
     | 
    
         
            +
                // #endregion Properties (15)
         
     | 
| 
      
 19 
     | 
    
         
            +
                // #region Constructors (1)
         
     | 
| 
      
 20 
     | 
    
         
            +
                constructor(data) {
         
     | 
| 
      
 21 
     | 
    
         
            +
                    if (data) {
         
     | 
| 
      
 22 
     | 
    
         
            +
                        for (let key in data) {
         
     | 
| 
      
 23 
     | 
    
         
            +
                            if (data.hasOwnProperty(key) && key in this) {
         
     | 
| 
      
 24 
     | 
    
         
            +
                                this[key] = data[key];
         
     | 
| 
      
 25 
     | 
    
         
            +
                            }
         
     | 
| 
      
 26 
     | 
    
         
            +
                        }
         
     | 
| 
      
 27 
     | 
    
         
            +
                    }
         
     | 
| 
      
 28 
     | 
    
         
            +
                }
         
     | 
| 
      
 29 
     | 
    
         
            +
            }
         
     | 
| 
      
 30 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2xvYmFsLXByb2R1Y3QuZW50aXR5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BheWlvL2dsb2JhbC1wcm9kdWN0cy9lbnRpdGllcy9nbG9iYWwtcHJvZHVjdC5lbnRpdHkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLHdCQUF3QjtJQUNuQywwQkFBMEI7SUFFbkIsTUFBTSxHQUFZLElBQUksQ0FBQztJQUN2QixRQUFRLEdBQVcsQ0FBQyxDQUFDO0lBQ3JCLEtBQUssR0FBVyxFQUFFLENBQUM7SUFDbkIsSUFBSSxHQUFXLEVBQUUsQ0FBQztJQUNsQixTQUFTLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztJQUM3QixJQUFJLEdBQVcsRUFBRSxDQUFDO0lBQ2xCLEVBQUUsR0FBVyxFQUFFLENBQUM7SUFDaEIsUUFBUSxHQUFXLENBQUMsQ0FBQztJQUNyQixRQUFRLEdBQVcsQ0FBQyxDQUFDO0lBQ3JCLGlCQUFpQixHQUFXLENBQUMsQ0FBQztJQUM5QixJQUFJLEdBQWEsRUFBRSxDQUFDO0lBQ3BCLFNBQVMsR0FBa0IsSUFBSSxDQUFDO0lBQ2hDLElBQUksR0FBVyxFQUFFLENBQUM7SUFDbEIsU0FBUyxHQUFTLElBQUksSUFBSSxFQUFFLENBQUM7SUFDN0IsTUFBTSxHQUFXLENBQUMsQ0FBQztJQUUxQiw2QkFBNkI7SUFFN0IsMkJBQTJCO0lBRTNCLFlBQVksSUFBd0M7UUFDbEQsSUFBSSxJQUFJLEVBQUU7WUFDUixLQUFLLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtnQkFDcEIsSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUU7b0JBQzFDLElBQVksQ0FBQyxHQUFHLENBQUMsR0FBSSxJQUFZLENBQUMsR0FBRyxDQUFDLENBQUM7aUJBQ3pDO2FBQ0Y7U0FDRjtJQUNILENBQUM7Q0FHRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElQYXlpb0dsb2JhbFByb2R1Y3QgfSBmcm9tICcuLi9pbnRlcmZhY2VzL2ktZ2xvYmFsLXByb2R1Y3RzJztcclxuXHJcbmV4cG9ydCBjbGFzcyBQYXlpb0dsb2JhbFByb2R1Y3RFbnRpdHkgaW1wbGVtZW50cyBJUGF5aW9HbG9iYWxQcm9kdWN0IHtcclxuICAvLyAjcmVnaW9uIFByb3BlcnRpZXMgKDE1KVxyXG5cclxuICBwdWJsaWMgYWN0aXZlOiBib29sZWFuID0gdHJ1ZTtcclxuICBwdWJsaWMgYXZnUHJpY2U6IG51bWJlciA9IDA7XHJcbiAgcHVibGljIGJyYW5kOiBzdHJpbmcgPSAnJztcclxuICBwdWJsaWMgY29kZTogc3RyaW5nID0gJyc7XHJcbiAgcHVibGljIGNyZWF0ZWRBdDogRGF0ZSA9IG5ldyBEYXRlKCk7XHJcbiAgcHVibGljIG5hbWU6IHN0cmluZyA9ICcnO1xyXG4gIHB1YmxpYyBpZDogc3RyaW5nID0gJyc7XHJcbiAgcHVibGljIG1heFByaWNlOiBudW1iZXIgPSAwO1xyXG4gIHB1YmxpYyBtaW5QcmljZTogbnVtYmVyID0gMDtcclxuICBwdWJsaWMgcXVhbnRpdHlQYWNrYWdpbmc6IG51bWJlciA9IDA7XHJcbiAgcHVibGljIHRhZ3M6IHN0cmluZ1tdID0gW107XHJcbiAgcHVibGljIHRodW1ibmFpbDogc3RyaW5nIHwgbnVsbCA9IG51bGw7XHJcbiAgcHVibGljIHVuaXQ6IHN0cmluZyA9ICcnO1xyXG4gIHB1YmxpYyB1cGRhdGVkQXQ6IERhdGUgPSBuZXcgRGF0ZSgpO1xyXG4gIHB1YmxpYyB3ZWlnaHQ6IG51bWJlciA9IDA7XHJcblxyXG4gIC8vICNlbmRyZWdpb24gUHJvcGVydGllcyAoMTUpXHJcblxyXG4gIC8vICNyZWdpb24gQ29uc3RydWN0b3JzICgxKVxyXG5cclxuICBjb25zdHJ1Y3RvcihkYXRhPzogUGFydGlhbDxQYXlpb0dsb2JhbFByb2R1Y3RFbnRpdHk+KSB7XHJcbiAgICBpZiAoZGF0YSkge1xyXG4gICAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xyXG4gICAgICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KGtleSkgJiYga2V5IGluIHRoaXMpIHtcclxuICAgICAgICAgICh0aGlzIGFzIGFueSlba2V5XSA9IChkYXRhIGFzIGFueSlba2V5XTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8vICNlbmRyZWdpb24gQ29uc3RydWN0b3JzICgxKVxyXG59XHJcbiJdfQ==
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export { PayioGlobalProductEntity } from './global-product.entity';
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vZ2xvYmFsLXByb2R1Y3RzL2VudGl0aWVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgUGF5aW9HbG9iYWxQcm9kdWN0RW50aXR5IH0gZnJvbSAnLi9nbG9iYWwtcHJvZHVjdC5lbnRpdHknO1xyXG4iXX0=
         
     | 
| 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export * from './entities';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export * from './interfaces';
         
     | 
| 
      
 3 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcGF5aW8vZ2xvYmFsLXByb2R1Y3RzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbnRpdGllcyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vaW50ZXJmYWNlcyc7XHJcbiJdfQ==
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export {};
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1nbG9iYWwtcHJvZHVjdHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vZ2xvYmFsLXByb2R1Y3RzL2ludGVyZmFjZXMvaS1nbG9iYWwtcHJvZHVjdHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSVBheWlvR2xvYmFsUHJvZHVjdCB7XHJcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgxNSlcclxuXHJcbiAgYWN0aXZlOiBib29sZWFuO1xyXG4gIGF2Z1ByaWNlOiBudW1iZXI7XHJcbiAgYnJhbmQ6IHN0cmluZztcclxuICBjb2RlOiBzdHJpbmc7XHJcbiAgY3JlYXRlZEF0OiBEYXRlO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBpZDogc3RyaW5nO1xyXG4gIG1heFByaWNlOiBudW1iZXI7XHJcbiAgbWluUHJpY2U6IG51bWJlcjtcclxuICBxdWFudGl0eVBhY2thZ2luZzogbnVtYmVyO1xyXG4gIHRhZ3M6IHN0cmluZ1tdO1xyXG4gIHRodW1ibmFpbDogc3RyaW5nIHwgbnVsbDtcclxuICB1bml0OiBzdHJpbmc7XHJcbiAgdXBkYXRlZEF0OiBEYXRlO1xyXG4gIHdlaWdodDogbnVtYmVyO1xyXG5cclxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDE1KVxyXG59XHJcbiJdfQ==
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export {};
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vZ2xvYmFsLXByb2R1Y3RzL2ludGVyZmFjZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElQYXlpb0dsb2JhbFByb2R1Y3QgfSBmcm9tICcuL2ktZ2xvYmFsLXByb2R1Y3RzJztcclxuIl19
         
     | 
| 
         @@ -2,12 +2,14 @@ export * from './app'; 
     | 
|
| 
       2 
2 
     | 
    
         
             
            export * from './company';
         
     | 
| 
       3 
3 
     | 
    
         
             
            export * from './device';
         
     | 
| 
       4 
4 
     | 
    
         
             
            export * from './features';
         
     | 
| 
      
 5 
     | 
    
         
            +
            export * from './global-products';
         
     | 
| 
       5 
6 
     | 
    
         
             
            export * from './orders';
         
     | 
| 
       6 
7 
     | 
    
         
             
            export * from './payload';
         
     | 
| 
       7 
8 
     | 
    
         
             
            export * from './permissions';
         
     | 
| 
       8 
9 
     | 
    
         
             
            export * from './plan';
         
     | 
| 
      
 10 
     | 
    
         
            +
            export * from './products';
         
     | 
| 
       9 
11 
     | 
    
         
             
            export * from './resume-companies';
         
     | 
| 
       10 
12 
     | 
    
         
             
            export * from './resume-queues';
         
     | 
| 
       11 
13 
     | 
    
         
             
            export * from './subscriptions';
         
     | 
| 
       12 
14 
     | 
    
         
             
            export * from './tokens';
         
     | 
| 
       13 
     | 
    
         
            -
            //# sourceMappingURL=data:application/json;base64, 
     | 
| 
      
 15 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcGF5aW8vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFFBQVEsQ0FBQztBQUN2QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLFVBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYXBwJztcclxuZXhwb3J0ICogZnJvbSAnLi9jb21wYW55JztcclxuZXhwb3J0ICogZnJvbSAnLi9kZXZpY2UnO1xyXG5leHBvcnQgKiBmcm9tICcuL2ZlYXR1cmVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9nbG9iYWwtcHJvZHVjdHMnO1xyXG5leHBvcnQgKiBmcm9tICcuL29yZGVycyc7XHJcbmV4cG9ydCAqIGZyb20gJy4vcGF5bG9hZCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vcGVybWlzc2lvbnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL3BsYW4nO1xyXG5leHBvcnQgKiBmcm9tICcuL3Byb2R1Y3RzJztcclxuZXhwb3J0ICogZnJvbSAnLi9yZXN1bWUtY29tcGFuaWVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9yZXN1bWUtcXVldWVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9zdWJzY3JpcHRpb25zJztcclxuZXhwb3J0ICogZnJvbSAnLi90b2tlbnMnO1xyXG4iXX0=
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export { PayioProductEntity } from './product.entity';
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vcHJvZHVjdHMvZW50aXRpZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sa0JBQWtCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBQYXlpb1Byb2R1Y3RFbnRpdHkgfSBmcm9tICcuL3Byb2R1Y3QuZW50aXR5JztcclxuIl19
         
     | 
| 
         @@ -0,0 +1,28 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export class PayioProductEntity {
         
     | 
| 
      
 2 
     | 
    
         
            +
                // #region Properties (13)
         
     | 
| 
      
 3 
     | 
    
         
            +
                active = true;
         
     | 
| 
      
 4 
     | 
    
         
            +
                brand = '';
         
     | 
| 
      
 5 
     | 
    
         
            +
                code = '';
         
     | 
| 
      
 6 
     | 
    
         
            +
                createdAt = new Date();
         
     | 
| 
      
 7 
     | 
    
         
            +
                id = '';
         
     | 
| 
      
 8 
     | 
    
         
            +
                name = '';
         
     | 
| 
      
 9 
     | 
    
         
            +
                price = 0;
         
     | 
| 
      
 10 
     | 
    
         
            +
                quantityPackaging = 0;
         
     | 
| 
      
 11 
     | 
    
         
            +
                tags = [];
         
     | 
| 
      
 12 
     | 
    
         
            +
                thumbnail = null;
         
     | 
| 
      
 13 
     | 
    
         
            +
                unit = 'UN';
         
     | 
| 
      
 14 
     | 
    
         
            +
                updatedAt = new Date();
         
     | 
| 
      
 15 
     | 
    
         
            +
                weight = 0;
         
     | 
| 
      
 16 
     | 
    
         
            +
                // #endregion Properties (13)
         
     | 
| 
      
 17 
     | 
    
         
            +
                // #region Constructors (1)
         
     | 
| 
      
 18 
     | 
    
         
            +
                constructor(data) {
         
     | 
| 
      
 19 
     | 
    
         
            +
                    if (data) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                        for (let key in data) {
         
     | 
| 
      
 21 
     | 
    
         
            +
                            if (data.hasOwnProperty(key) && key in this) {
         
     | 
| 
      
 22 
     | 
    
         
            +
                                this[key] = data[key];
         
     | 
| 
      
 23 
     | 
    
         
            +
                            }
         
     | 
| 
      
 24 
     | 
    
         
            +
                        }
         
     | 
| 
      
 25 
     | 
    
         
            +
                    }
         
     | 
| 
      
 26 
     | 
    
         
            +
                }
         
     | 
| 
      
 27 
     | 
    
         
            +
            }
         
     | 
| 
      
 28 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC5lbnRpdHkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vcHJvZHVjdHMvZW50aXRpZXMvcHJvZHVjdC5lbnRpdHkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLGtCQUFrQjtJQUM3QiwwQkFBMEI7SUFFbkIsTUFBTSxHQUFZLElBQUksQ0FBQztJQUN2QixLQUFLLEdBQVcsRUFBRSxDQUFDO0lBQ25CLElBQUksR0FBVyxFQUFFLENBQUM7SUFDbEIsU0FBUyxHQUFTLElBQUksSUFBSSxFQUFFLENBQUM7SUFDN0IsRUFBRSxHQUFXLEVBQUUsQ0FBQztJQUNoQixJQUFJLEdBQVcsRUFBRSxDQUFDO0lBQ2xCLEtBQUssR0FBVyxDQUFDLENBQUM7SUFDbEIsaUJBQWlCLEdBQVcsQ0FBQyxDQUFDO0lBQzlCLElBQUksR0FBYSxFQUFFLENBQUM7SUFDcEIsU0FBUyxHQUFrQixJQUFJLENBQUM7SUFDaEMsSUFBSSxHQUFXLElBQUksQ0FBQztJQUNwQixTQUFTLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztJQUM3QixNQUFNLEdBQVcsQ0FBQyxDQUFDO0lBRTFCLDZCQUE2QjtJQUU3QiwyQkFBMkI7SUFFM0IsWUFBWSxJQUFrQztRQUM1QyxJQUFJLElBQUksRUFBRTtZQUNSLEtBQUssSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFO2dCQUNwQixJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRTtvQkFDMUMsSUFBWSxDQUFDLEdBQUcsQ0FBQyxHQUFJLElBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztpQkFDekM7YUFDRjtTQUNGO0lBQ0gsQ0FBQztDQUdGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSVBheWlvUHJvZHVjdCB9IGZyb20gJy4uL2ludGVyZmFjZXMvaS1wcm9kdWN0cyc7XHJcblxyXG5leHBvcnQgY2xhc3MgUGF5aW9Qcm9kdWN0RW50aXR5IGltcGxlbWVudHMgSVBheWlvUHJvZHVjdCB7XHJcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgxMylcclxuXHJcbiAgcHVibGljIGFjdGl2ZTogYm9vbGVhbiA9IHRydWU7XHJcbiAgcHVibGljIGJyYW5kOiBzdHJpbmcgPSAnJztcclxuICBwdWJsaWMgY29kZTogc3RyaW5nID0gJyc7XHJcbiAgcHVibGljIGNyZWF0ZWRBdDogRGF0ZSA9IG5ldyBEYXRlKCk7XHJcbiAgcHVibGljIGlkOiBzdHJpbmcgPSAnJztcclxuICBwdWJsaWMgbmFtZTogc3RyaW5nID0gJyc7XHJcbiAgcHVibGljIHByaWNlOiBudW1iZXIgPSAwO1xyXG4gIHB1YmxpYyBxdWFudGl0eVBhY2thZ2luZzogbnVtYmVyID0gMDtcclxuICBwdWJsaWMgdGFnczogc3RyaW5nW10gPSBbXTtcclxuICBwdWJsaWMgdGh1bWJuYWlsOiBzdHJpbmcgfCBudWxsID0gbnVsbDtcclxuICBwdWJsaWMgdW5pdDogc3RyaW5nID0gJ1VOJztcclxuICBwdWJsaWMgdXBkYXRlZEF0OiBEYXRlID0gbmV3IERhdGUoKTtcclxuICBwdWJsaWMgd2VpZ2h0OiBudW1iZXIgPSAwO1xyXG5cclxuICAvLyAjZW5kcmVnaW9uIFByb3BlcnRpZXMgKDEzKVxyXG5cclxuICAvLyAjcmVnaW9uIENvbnN0cnVjdG9ycyAoMSlcclxuXHJcbiAgY29uc3RydWN0b3IoZGF0YT86IFBhcnRpYWw8UGF5aW9Qcm9kdWN0RW50aXR5Pikge1xyXG4gICAgaWYgKGRhdGEpIHtcclxuICAgICAgZm9yIChsZXQga2V5IGluIGRhdGEpIHtcclxuICAgICAgICBpZiAoZGF0YS5oYXNPd25Qcm9wZXJ0eShrZXkpICYmIGtleSBpbiB0aGlzKSB7XHJcbiAgICAgICAgICAodGhpcyBhcyBhbnkpW2tleV0gPSAoZGF0YSBhcyBhbnkpW2tleV07XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICAvLyAjZW5kcmVnaW9uIENvbnN0cnVjdG9ycyAoMSlcclxufVxyXG4iXX0=
         
     | 
| 
         @@ -0,0 +1,3 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export * from './entities';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export * from './interfaces';
         
     | 
| 
      
 3 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcGF5aW8vcHJvZHVjdHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxZQUFZLENBQUM7QUFDM0IsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2VudGl0aWVzJztcclxuZXhwb3J0ICogZnJvbSAnLi9pbnRlcmZhY2VzJztcclxuIl19
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export {};
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1wcm9kdWN0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wYXlpby9wcm9kdWN0cy9pbnRlcmZhY2VzL2ktcHJvZHVjdHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSVBheWlvUHJvZHVjdCB7XHJcbiAgLy8gI3JlZ2lvbiBQcm9wZXJ0aWVzICgxMylcclxuXHJcbiAgYWN0aXZlOiBib29sZWFuO1xyXG4gIGJyYW5kOiBzdHJpbmc7XHJcbiAgY29kZTogc3RyaW5nO1xyXG4gIGNyZWF0ZWRBdDogRGF0ZTtcclxuICBpZDogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBwcmljZTogbnVtYmVyO1xyXG4gIHF1YW50aXR5UGFja2FnaW5nOiBudW1iZXI7XHJcbiAgdGFnczogc3RyaW5nW107XHJcbiAgdGh1bWJuYWlsOiBzdHJpbmcgfCBudWxsO1xyXG4gIHVuaXQ6IHN0cmluZztcclxuICB1cGRhdGVkQXQ6IERhdGU7XHJcbiAgd2VpZ2h0OiBudW1iZXI7XHJcblxyXG4gIC8vICNlbmRyZWdpb24gUHJvcGVydGllcyAoMTMpXHJcbn1cclxuIl19
         
     | 
| 
         @@ -0,0 +1,2 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export {};
         
     | 
| 
      
 2 
     | 
    
         
            +
            //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGF5aW8vcHJvZHVjdHMvaW50ZXJmYWNlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgSVBheWlvUHJvZHVjdCB9IGZyb20gJy4vaS1wcm9kdWN0cyc7XHJcbiJdfQ==
         
     | 
| 
         @@ -5635,6 +5635,36 @@ class PayioFeatureEntity { 
     | 
|
| 
       5635 
5635 
     | 
    
         
             
                }
         
     | 
| 
       5636 
5636 
     | 
    
         
             
            }
         
     | 
| 
       5637 
5637 
     | 
    
         | 
| 
      
 5638 
     | 
    
         
            +
            class PayioGlobalProductEntity {
         
     | 
| 
      
 5639 
     | 
    
         
            +
                // #region Properties (15)
         
     | 
| 
      
 5640 
     | 
    
         
            +
                active = true;
         
     | 
| 
      
 5641 
     | 
    
         
            +
                avgPrice = 0;
         
     | 
| 
      
 5642 
     | 
    
         
            +
                brand = '';
         
     | 
| 
      
 5643 
     | 
    
         
            +
                code = '';
         
     | 
| 
      
 5644 
     | 
    
         
            +
                createdAt = new Date();
         
     | 
| 
      
 5645 
     | 
    
         
            +
                name = '';
         
     | 
| 
      
 5646 
     | 
    
         
            +
                id = '';
         
     | 
| 
      
 5647 
     | 
    
         
            +
                maxPrice = 0;
         
     | 
| 
      
 5648 
     | 
    
         
            +
                minPrice = 0;
         
     | 
| 
      
 5649 
     | 
    
         
            +
                quantityPackaging = 0;
         
     | 
| 
      
 5650 
     | 
    
         
            +
                tags = [];
         
     | 
| 
      
 5651 
     | 
    
         
            +
                thumbnail = null;
         
     | 
| 
      
 5652 
     | 
    
         
            +
                unit = '';
         
     | 
| 
      
 5653 
     | 
    
         
            +
                updatedAt = new Date();
         
     | 
| 
      
 5654 
     | 
    
         
            +
                weight = 0;
         
     | 
| 
      
 5655 
     | 
    
         
            +
                // #endregion Properties (15)
         
     | 
| 
      
 5656 
     | 
    
         
            +
                // #region Constructors (1)
         
     | 
| 
      
 5657 
     | 
    
         
            +
                constructor(data) {
         
     | 
| 
      
 5658 
     | 
    
         
            +
                    if (data) {
         
     | 
| 
      
 5659 
     | 
    
         
            +
                        for (let key in data) {
         
     | 
| 
      
 5660 
     | 
    
         
            +
                            if (data.hasOwnProperty(key) && key in this) {
         
     | 
| 
      
 5661 
     | 
    
         
            +
                                this[key] = data[key];
         
     | 
| 
      
 5662 
     | 
    
         
            +
                            }
         
     | 
| 
      
 5663 
     | 
    
         
            +
                        }
         
     | 
| 
      
 5664 
     | 
    
         
            +
                    }
         
     | 
| 
      
 5665 
     | 
    
         
            +
                }
         
     | 
| 
      
 5666 
     | 
    
         
            +
            }
         
     | 
| 
      
 5667 
     | 
    
         
            +
             
     | 
| 
       5638 
5668 
     | 
    
         
             
            class PayioOrderIndoorEntity {
         
     | 
| 
       5639 
5669 
     | 
    
         
             
                // #region Properties (5)
         
     | 
| 
       5640 
5670 
     | 
    
         
             
                deliveryDateTime = new Date(new Date().getTime() + 1000 * 60 * 15);
         
     | 
| 
         @@ -5860,6 +5890,34 @@ class PayioPlanEntity { 
     | 
|
| 
       5860 
5890 
     | 
    
         
             
                }
         
     | 
| 
       5861 
5891 
     | 
    
         
             
            }
         
     | 
| 
       5862 
5892 
     | 
    
         | 
| 
      
 5893 
     | 
    
         
            +
            class PayioProductEntity {
         
     | 
| 
      
 5894 
     | 
    
         
            +
                // #region Properties (13)
         
     | 
| 
      
 5895 
     | 
    
         
            +
                active = true;
         
     | 
| 
      
 5896 
     | 
    
         
            +
                brand = '';
         
     | 
| 
      
 5897 
     | 
    
         
            +
                code = '';
         
     | 
| 
      
 5898 
     | 
    
         
            +
                createdAt = new Date();
         
     | 
| 
      
 5899 
     | 
    
         
            +
                id = '';
         
     | 
| 
      
 5900 
     | 
    
         
            +
                name = '';
         
     | 
| 
      
 5901 
     | 
    
         
            +
                price = 0;
         
     | 
| 
      
 5902 
     | 
    
         
            +
                quantityPackaging = 0;
         
     | 
| 
      
 5903 
     | 
    
         
            +
                tags = [];
         
     | 
| 
      
 5904 
     | 
    
         
            +
                thumbnail = null;
         
     | 
| 
      
 5905 
     | 
    
         
            +
                unit = 'UN';
         
     | 
| 
      
 5906 
     | 
    
         
            +
                updatedAt = new Date();
         
     | 
| 
      
 5907 
     | 
    
         
            +
                weight = 0;
         
     | 
| 
      
 5908 
     | 
    
         
            +
                // #endregion Properties (13)
         
     | 
| 
      
 5909 
     | 
    
         
            +
                // #region Constructors (1)
         
     | 
| 
      
 5910 
     | 
    
         
            +
                constructor(data) {
         
     | 
| 
      
 5911 
     | 
    
         
            +
                    if (data) {
         
     | 
| 
      
 5912 
     | 
    
         
            +
                        for (let key in data) {
         
     | 
| 
      
 5913 
     | 
    
         
            +
                            if (data.hasOwnProperty(key) && key in this) {
         
     | 
| 
      
 5914 
     | 
    
         
            +
                                this[key] = data[key];
         
     | 
| 
      
 5915 
     | 
    
         
            +
                            }
         
     | 
| 
      
 5916 
     | 
    
         
            +
                        }
         
     | 
| 
      
 5917 
     | 
    
         
            +
                    }
         
     | 
| 
      
 5918 
     | 
    
         
            +
                }
         
     | 
| 
      
 5919 
     | 
    
         
            +
            }
         
     | 
| 
      
 5920 
     | 
    
         
            +
             
     | 
| 
       5863 
5921 
     | 
    
         
             
            class PayioResumeCompanyItemDetailEntity {
         
     | 
| 
       5864 
5922 
     | 
    
         
             
                // #region Properties (2)
         
     | 
| 
       5865 
5923 
     | 
    
         
             
                cords = [];
         
     | 
| 
         @@ -7139,5 +7197,5 @@ class WithDrawRequestEntity { 
     | 
|
| 
       7139 
7197 
     | 
    
         
             
             * Generated bundle index. Do not edit.
         
     | 
| 
       7140 
7198 
     | 
    
         
             
             */
         
     | 
| 
       7141 
7199 
     | 
    
         | 
| 
       7142 
     | 
    
         
            -
            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, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFiscalDocModelCode, EFrom, EImageFolder, EIndoorMode, EInstallationStatus, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWithdrawRequestStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, 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, PayioAddressEntity, PayioAppEntity, PayioCompanyEntity, PayioDeviceEntity, PayioEntitiesEnum, PayioFeatureEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioPermissionEntity, PayioPermissionRoleEntity, PayioPlanEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueuePayloadEntity, PayioResumeQueueStatusEnum, PayioSubscriptionActiveDeviceEntity, PayioSubscriptionEntity, PayioSubscriptionLogEntity, PayioSubscriptionSeatEntity, PayioTokenEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, 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, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
         
     | 
| 
      
 7200 
     | 
    
         
            +
            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, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBillingStatus, EBooleanString, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFiscalDocModelCode, EFrom, EImageFolder, EIndoorMode, EInstallationStatus, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPayuioFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWithdrawRequestStatus, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, 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, 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, PayioAddressEntity, PayioAppEntity, PayioCompanyEntity, PayioDeviceEntity, PayioEntitiesEnum, PayioFeatureEntity, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioPermissionEntity, PayioPermissionRoleEntity, PayioPlanEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueuePayloadEntity, PayioResumeQueueStatusEnum, PayioSubscriptionActiveDeviceEntity, PayioSubscriptionEntity, PayioSubscriptionLogEntity, PayioSubscriptionSeatEntity, PayioTokenEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PlanEntity, PlanFeatureEntity, 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, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
         
     | 
| 
       7143 
7201 
     | 
    
         
             
            //# sourceMappingURL=cecon-interfaces.mjs.map
         
     |