pangea-server 3.3.135 → 3.3.137

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.
@@ -169,7 +169,7 @@ class Arca {
169
169
  issuer_address: this.__issuer.address,
170
170
  issuer_iva_condition: this.__issuer.vatCondition,
171
171
  issuer_gross_income: this.__issuer.grossIncome,
172
- issuer_activity_start_date: this.__issuer.activityStartDate,
172
+ issuer_activity_start_date: this.__issuer.activityStartDate.split('-').reverse().join('/'),
173
173
  receiver_name: receiverName,
174
174
  receiver_address: receiver.address || '-',
175
175
  receiver_document_type: documentTypeIds[receiver.documentType],
@@ -1,2 +1,2 @@
1
- import './arca.types';
1
+ export * from './arca.types';
2
2
  import './global.types';
@@ -1,4 +1,18 @@
1
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
+ };
2
16
  Object.defineProperty(exports, "__esModule", { value: true });
3
- require("./arca.types");
17
+ __exportStar(require("./arca.types"), exports);
4
18
  require("./global.types");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pangea-server",
3
3
  "description": "",
4
- "version": "3.3.135",
4
+ "version": "3.3.137",
5
5
  "files": [
6
6
  "dist"
7
7
  ],