ecotransac-shared-js 1.1.49 → 1.1.51
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 +10 -6
- package/dist/index.d.ts +10 -6
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,12 +5,12 @@ declare const getLowThreshold: (isForPro: boolean) => {
|
|
|
5
5
|
declare const getFeesPercentage: (price: number, isForProfessionalUse: boolean) => 0 | 10 | 9 | 8 | 7 | 8.5 | 7.5 | 6.5 | 6 | 5;
|
|
6
6
|
type Mandate$1 = {
|
|
7
7
|
isForProfessionalUse: boolean;
|
|
8
|
-
isCommercialWallsSale
|
|
9
|
-
isBusinessAssetsTransfer
|
|
10
|
-
isLeaseRightsTransfer
|
|
11
|
-
netOwnerPrice
|
|
12
|
-
leaseRightsPrice
|
|
13
|
-
businessAssetsPrice
|
|
8
|
+
isCommercialWallsSale?: boolean | null;
|
|
9
|
+
isBusinessAssetsTransfer?: boolean | null;
|
|
10
|
+
isLeaseRightsTransfer?: boolean | null;
|
|
11
|
+
netOwnerPrice?: number | null;
|
|
12
|
+
leaseRightsPrice?: number | null;
|
|
13
|
+
businessAssetsPrice?: number | null;
|
|
14
14
|
};
|
|
15
15
|
declare const getNetPrice: (mandate: Mandate$1) => number;
|
|
16
16
|
declare const getAgencyFees: (mandate: Mandate$1 & {
|
|
@@ -808,6 +808,9 @@ declare const COMPANY_INFO: {
|
|
|
808
808
|
contactPhoneFormatted: string;
|
|
809
809
|
officeAddress: string;
|
|
810
810
|
gdprEmail: string;
|
|
811
|
+
urls: {
|
|
812
|
+
privacyPolicy: string;
|
|
813
|
+
};
|
|
811
814
|
registration: {
|
|
812
815
|
legalStatus: string;
|
|
813
816
|
legalStatusFull: string;
|
|
@@ -833,6 +836,7 @@ declare const COMPANY_INFO: {
|
|
|
833
836
|
mediation: {
|
|
834
837
|
mediator: string;
|
|
835
838
|
address: string;
|
|
839
|
+
url: string;
|
|
836
840
|
};
|
|
837
841
|
};
|
|
838
842
|
|
package/dist/index.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ declare const getLowThreshold: (isForPro: boolean) => {
|
|
|
5
5
|
declare const getFeesPercentage: (price: number, isForProfessionalUse: boolean) => 0 | 10 | 9 | 8 | 7 | 8.5 | 7.5 | 6.5 | 6 | 5;
|
|
6
6
|
type Mandate$1 = {
|
|
7
7
|
isForProfessionalUse: boolean;
|
|
8
|
-
isCommercialWallsSale
|
|
9
|
-
isBusinessAssetsTransfer
|
|
10
|
-
isLeaseRightsTransfer
|
|
11
|
-
netOwnerPrice
|
|
12
|
-
leaseRightsPrice
|
|
13
|
-
businessAssetsPrice
|
|
8
|
+
isCommercialWallsSale?: boolean | null;
|
|
9
|
+
isBusinessAssetsTransfer?: boolean | null;
|
|
10
|
+
isLeaseRightsTransfer?: boolean | null;
|
|
11
|
+
netOwnerPrice?: number | null;
|
|
12
|
+
leaseRightsPrice?: number | null;
|
|
13
|
+
businessAssetsPrice?: number | null;
|
|
14
14
|
};
|
|
15
15
|
declare const getNetPrice: (mandate: Mandate$1) => number;
|
|
16
16
|
declare const getAgencyFees: (mandate: Mandate$1 & {
|
|
@@ -808,6 +808,9 @@ declare const COMPANY_INFO: {
|
|
|
808
808
|
contactPhoneFormatted: string;
|
|
809
809
|
officeAddress: string;
|
|
810
810
|
gdprEmail: string;
|
|
811
|
+
urls: {
|
|
812
|
+
privacyPolicy: string;
|
|
813
|
+
};
|
|
811
814
|
registration: {
|
|
812
815
|
legalStatus: string;
|
|
813
816
|
legalStatusFull: string;
|
|
@@ -833,6 +836,7 @@ declare const COMPANY_INFO: {
|
|
|
833
836
|
mediation: {
|
|
834
837
|
mediator: string;
|
|
835
838
|
address: string;
|
|
839
|
+
url: string;
|
|
836
840
|
};
|
|
837
841
|
};
|
|
838
842
|
|
package/dist/index.js
CHANGED
|
@@ -1670,6 +1670,9 @@ var COMPANY_INFO = {
|
|
|
1670
1670
|
contactPhoneFormatted: "06 10 83 99 98",
|
|
1671
1671
|
officeAddress: "131 Chem. du Bac \xC0 Traille - 69300 Caluire-et-Cuire",
|
|
1672
1672
|
gdprEmail: "rgpd@ecotransac.fr",
|
|
1673
|
+
urls: {
|
|
1674
|
+
privacyPolicy: "https://ecotransac.fr/politique-de-confidentialite"
|
|
1675
|
+
},
|
|
1673
1676
|
registration: {
|
|
1674
1677
|
legalStatus: "SAS",
|
|
1675
1678
|
legalStatusFull: "Soci\xE9t\xE9 par actions simplifi\xE9e",
|
|
@@ -1694,7 +1697,8 @@ var COMPANY_INFO = {
|
|
|
1694
1697
|
},
|
|
1695
1698
|
mediation: {
|
|
1696
1699
|
mediator: "IMMOMEDIATEURS",
|
|
1697
|
-
address: "55 avenue Marceau - 75116 Paris"
|
|
1700
|
+
address: "55 avenue Marceau - 75116 Paris",
|
|
1701
|
+
url: "www.immomediateurs.com"
|
|
1698
1702
|
}
|
|
1699
1703
|
};
|
|
1700
1704
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -1584,6 +1584,9 @@ var COMPANY_INFO = {
|
|
|
1584
1584
|
contactPhoneFormatted: "06 10 83 99 98",
|
|
1585
1585
|
officeAddress: "131 Chem. du Bac \xC0 Traille - 69300 Caluire-et-Cuire",
|
|
1586
1586
|
gdprEmail: "rgpd@ecotransac.fr",
|
|
1587
|
+
urls: {
|
|
1588
|
+
privacyPolicy: "https://ecotransac.fr/politique-de-confidentialite"
|
|
1589
|
+
},
|
|
1587
1590
|
registration: {
|
|
1588
1591
|
legalStatus: "SAS",
|
|
1589
1592
|
legalStatusFull: "Soci\xE9t\xE9 par actions simplifi\xE9e",
|
|
@@ -1608,7 +1611,8 @@ var COMPANY_INFO = {
|
|
|
1608
1611
|
},
|
|
1609
1612
|
mediation: {
|
|
1610
1613
|
mediator: "IMMOMEDIATEURS",
|
|
1611
|
-
address: "55 avenue Marceau - 75116 Paris"
|
|
1614
|
+
address: "55 avenue Marceau - 75116 Paris",
|
|
1615
|
+
url: "www.immomediateurs.com"
|
|
1612
1616
|
}
|
|
1613
1617
|
};
|
|
1614
1618
|
export {
|