digicust_types 1.8.243 → 1.8.244
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/lib/models/digicust/country-specific/DE/DE-specific-aggregated.d.ts +7 -0
 - package/lib/models/digicust/country-specific/DE/DE-specific-aggregated.js +2 -0
 - package/lib/models/digicust/country-specific/DE/DE-specific-line-items.d.ts +2 -0
 - package/lib/models/digicust/country-specific/DE/DE-specific-line-items.js +2 -0
 - package/lib/models/digicust/country-specific/DE/index.d.ts +2 -0
 - package/lib/models/digicust/country-specific/DE/index.js +18 -0
 - package/lib/models/digicust/country-specific/country-specific.d.ts +3 -0
 - package/lib/models/digicust/country-specific/index.d.ts +1 -0
 - package/lib/models/digicust/country-specific/index.js +1 -0
 - package/package.json +1 -1
 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            "use strict";
         
     | 
| 
      
 2 
     | 
    
         
            +
            var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
         
     | 
| 
      
 3 
     | 
    
         
            +
                if (k2 === undefined) k2 = k;
         
     | 
| 
      
 4 
     | 
    
         
            +
                var desc = Object.getOwnPropertyDescriptor(m, k);
         
     | 
| 
      
 5 
     | 
    
         
            +
                if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
         
     | 
| 
      
 6 
     | 
    
         
            +
                  desc = { enumerable: true, get: function() { return m[k]; } };
         
     | 
| 
      
 7 
     | 
    
         
            +
                }
         
     | 
| 
      
 8 
     | 
    
         
            +
                Object.defineProperty(o, k2, desc);
         
     | 
| 
      
 9 
     | 
    
         
            +
            }) : (function(o, m, k, k2) {
         
     | 
| 
      
 10 
     | 
    
         
            +
                if (k2 === undefined) k2 = k;
         
     | 
| 
      
 11 
     | 
    
         
            +
                o[k2] = m[k];
         
     | 
| 
      
 12 
     | 
    
         
            +
            }));
         
     | 
| 
      
 13 
     | 
    
         
            +
            var __exportStar = (this && this.__exportStar) || function(m, exports) {
         
     | 
| 
      
 14 
     | 
    
         
            +
                for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
         
     | 
| 
      
 15 
     | 
    
         
            +
            };
         
     | 
| 
      
 16 
     | 
    
         
            +
            Object.defineProperty(exports, "__esModule", { value: true });
         
     | 
| 
      
 17 
     | 
    
         
            +
            __exportStar(require("./DE-specific-aggregated"), exports);
         
     | 
| 
      
 18 
     | 
    
         
            +
            __exportStar(require("./DE-specific-line-items"), exports);
         
     | 
| 
         @@ -1,7 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { DESpecificAggregated } from "./DE";
         
     | 
| 
       1 
2 
     | 
    
         
             
            import { XKSpecificAggregated, XKSpecificLineItem } from "./XK";
         
     | 
| 
       2 
3 
     | 
    
         
             
            export interface CountrySpecificAggregated {
         
     | 
| 
       3 
4 
     | 
    
         
             
                XK: XKSpecificAggregated;
         
     | 
| 
      
 5 
     | 
    
         
            +
                DE: DESpecificAggregated;
         
     | 
| 
       4 
6 
     | 
    
         
             
            }
         
     | 
| 
       5 
7 
     | 
    
         
             
            export interface CountrySpecificLineItem {
         
     | 
| 
       6 
8 
     | 
    
         
             
                XK: XKSpecificLineItem;
         
     | 
| 
      
 9 
     | 
    
         
            +
                DE: DESpecificAggregated;
         
     | 
| 
       7 
10 
     | 
    
         
             
            }
         
     | 
| 
         @@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) { 
     | 
|
| 
       15 
15 
     | 
    
         
             
            };
         
     | 
| 
       16 
16 
     | 
    
         
             
            Object.defineProperty(exports, "__esModule", { value: true });
         
     | 
| 
       17 
17 
     | 
    
         
             
            __exportStar(require("./XK"), exports);
         
     | 
| 
      
 18 
     | 
    
         
            +
            __exportStar(require("./DE"), exports);
         
     | 
| 
       18 
19 
     | 
    
         
             
            __exportStar(require("./country-specific"), exports);
         
     |