ecotransac-shared-js 1.0.3 → 1.0.4
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/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -52,6 +52,7 @@ declare const COMPANY_INFO: {
|
|
|
52
52
|
contactPhone: string;
|
|
53
53
|
contactPhoneFormatted: string;
|
|
54
54
|
officeAddress: string;
|
|
55
|
+
gdprEmail: string;
|
|
55
56
|
registration: {
|
|
56
57
|
legalStatus: string;
|
|
57
58
|
legalStatusFull: string;
|
|
@@ -74,6 +75,10 @@ declare const COMPANY_INFO: {
|
|
|
74
75
|
headOfficeAddress: string;
|
|
75
76
|
localOfficeAddress: string;
|
|
76
77
|
};
|
|
78
|
+
mediation: {
|
|
79
|
+
mediator: string;
|
|
80
|
+
address: string;
|
|
81
|
+
};
|
|
77
82
|
};
|
|
78
83
|
|
|
79
84
|
export { COMPANY_INFO, formatAddress, formatSeconds };
|
package/dist/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ declare const COMPANY_INFO: {
|
|
|
52
52
|
contactPhone: string;
|
|
53
53
|
contactPhoneFormatted: string;
|
|
54
54
|
officeAddress: string;
|
|
55
|
+
gdprEmail: string;
|
|
55
56
|
registration: {
|
|
56
57
|
legalStatus: string;
|
|
57
58
|
legalStatusFull: string;
|
|
@@ -74,6 +75,10 @@ declare const COMPANY_INFO: {
|
|
|
74
75
|
headOfficeAddress: string;
|
|
75
76
|
localOfficeAddress: string;
|
|
76
77
|
};
|
|
78
|
+
mediation: {
|
|
79
|
+
mediator: string;
|
|
80
|
+
address: string;
|
|
81
|
+
};
|
|
77
82
|
};
|
|
78
83
|
|
|
79
84
|
export { COMPANY_INFO, formatAddress, formatSeconds };
|
package/dist/index.js
CHANGED
|
@@ -42,6 +42,7 @@ var COMPANY_INFO = {
|
|
|
42
42
|
contactPhone: "+33610839998",
|
|
43
43
|
contactPhoneFormatted: "06 10 83 99 98",
|
|
44
44
|
officeAddress: "131 Chem. du Bac \xC0 Traille - 69300 Caluire-et-Cuire",
|
|
45
|
+
gdprEmail: "rgpd@ecotransac.fr",
|
|
45
46
|
registration: {
|
|
46
47
|
legalStatus: "SAS",
|
|
47
48
|
legalStatusFull: "Soci\xE9t\xE9 par actions simplifi\xE9e",
|
|
@@ -63,6 +64,10 @@ var COMPANY_INFO = {
|
|
|
63
64
|
name: "ALLIANZ IARD",
|
|
64
65
|
headOfficeAddress: "1 cours Michelet - 92076 PARIS LA DEFENSE CEDEX",
|
|
65
66
|
localOfficeAddress: "28 rue T\xEAte d'Or - 69006 LYON"
|
|
67
|
+
},
|
|
68
|
+
mediation: {
|
|
69
|
+
mediator: "IMMOMEDIATEURS",
|
|
70
|
+
address: "55 avenue Marceau - 75116 Paris"
|
|
66
71
|
}
|
|
67
72
|
};
|
|
68
73
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -14,6 +14,7 @@ var COMPANY_INFO = {
|
|
|
14
14
|
contactPhone: "+33610839998",
|
|
15
15
|
contactPhoneFormatted: "06 10 83 99 98",
|
|
16
16
|
officeAddress: "131 Chem. du Bac \xC0 Traille - 69300 Caluire-et-Cuire",
|
|
17
|
+
gdprEmail: "rgpd@ecotransac.fr",
|
|
17
18
|
registration: {
|
|
18
19
|
legalStatus: "SAS",
|
|
19
20
|
legalStatusFull: "Soci\xE9t\xE9 par actions simplifi\xE9e",
|
|
@@ -35,6 +36,10 @@ var COMPANY_INFO = {
|
|
|
35
36
|
name: "ALLIANZ IARD",
|
|
36
37
|
headOfficeAddress: "1 cours Michelet - 92076 PARIS LA DEFENSE CEDEX",
|
|
37
38
|
localOfficeAddress: "28 rue T\xEAte d'Or - 69006 LYON"
|
|
39
|
+
},
|
|
40
|
+
mediation: {
|
|
41
|
+
mediator: "IMMOMEDIATEURS",
|
|
42
|
+
address: "55 avenue Marceau - 75116 Paris"
|
|
38
43
|
}
|
|
39
44
|
};
|
|
40
45
|
export {
|