ecotransac-shared-js 1.2.33 → 1.2.35
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 +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +9 -2
- package/dist/index.mjs +9 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -496,13 +496,12 @@ type Mandate = {
|
|
|
496
496
|
propertyId: Scalars['String']['output'];
|
|
497
497
|
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
498
498
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
499
|
-
/** Duration in months */
|
|
500
499
|
status: MandateStatus;
|
|
501
500
|
withdrawalDate?: Maybe<Scalars['DateTime']['output']>;
|
|
502
501
|
};
|
|
503
502
|
type MandateExclusivity = 'EXCLUSIVE' | 'SEMI_EXCLUSIVE' | 'SIMPLE';
|
|
504
503
|
type MandateStatus = 'AWAITING_AGENT_SIGNATURE' | 'AWAITING_OWNER_SIGNATURE' | 'AWAITING_STAFF_VALIDATION' | 'CANCELED' | 'EXPIRED' | 'PROCESSING' | 'REJECTED' | 'WITHDRAWN';
|
|
505
|
-
type MaritalStatus = 'CIVIL_PARTNERSHIP' | 'DIVORCED' | 'MARRIED_WITHOUT_PRENUP' | 'MARRIED_WITH_PRENUP' | 'SINGLE' | 'WIDOWED';
|
|
504
|
+
type MaritalStatus = 'CIVIL_PARTNERSHIP' | 'COHABITING' | 'DIVORCED' | 'MARRIED_WITHOUT_PRENUP' | 'MARRIED_WITH_PRENUP' | 'SINGLE' | 'WIDOWED';
|
|
506
505
|
type Partner = {
|
|
507
506
|
__typename?: 'Partner';
|
|
508
507
|
address: Address;
|
package/dist/index.d.ts
CHANGED
|
@@ -496,13 +496,12 @@ type Mandate = {
|
|
|
496
496
|
propertyId: Scalars['String']['output'];
|
|
497
497
|
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
498
498
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
499
|
-
/** Duration in months */
|
|
500
499
|
status: MandateStatus;
|
|
501
500
|
withdrawalDate?: Maybe<Scalars['DateTime']['output']>;
|
|
502
501
|
};
|
|
503
502
|
type MandateExclusivity = 'EXCLUSIVE' | 'SEMI_EXCLUSIVE' | 'SIMPLE';
|
|
504
503
|
type MandateStatus = 'AWAITING_AGENT_SIGNATURE' | 'AWAITING_OWNER_SIGNATURE' | 'AWAITING_STAFF_VALIDATION' | 'CANCELED' | 'EXPIRED' | 'PROCESSING' | 'REJECTED' | 'WITHDRAWN';
|
|
505
|
-
type MaritalStatus = 'CIVIL_PARTNERSHIP' | 'DIVORCED' | 'MARRIED_WITHOUT_PRENUP' | 'MARRIED_WITH_PRENUP' | 'SINGLE' | 'WIDOWED';
|
|
504
|
+
type MaritalStatus = 'CIVIL_PARTNERSHIP' | 'COHABITING' | 'DIVORCED' | 'MARRIED_WITHOUT_PRENUP' | 'MARRIED_WITH_PRENUP' | 'SINGLE' | 'WIDOWED';
|
|
506
505
|
type Partner = {
|
|
507
506
|
__typename?: 'Partner';
|
|
508
507
|
address: Address;
|
package/dist/index.js
CHANGED
|
@@ -1263,7 +1263,13 @@ var surfacesFormFields = [
|
|
|
1263
1263
|
name: "floorCount",
|
|
1264
1264
|
fieldType: "select-number",
|
|
1265
1265
|
label: "Nombre de niveau(x) de l'appartement",
|
|
1266
|
-
condition: only("isApartment"),
|
|
1266
|
+
// condition: only("isApartment"),
|
|
1267
|
+
condition: and(
|
|
1268
|
+
not("isLand"),
|
|
1269
|
+
not("isParking"),
|
|
1270
|
+
not("isHouse"),
|
|
1271
|
+
not("isBuilding")
|
|
1272
|
+
),
|
|
1267
1273
|
props: { options: APARTMENT_FLOOR_COUNT },
|
|
1268
1274
|
requiredFor: ["DIFFUSION"]
|
|
1269
1275
|
},
|
|
@@ -1663,7 +1669,8 @@ var MARITAL_STATUS = [
|
|
|
1663
1669
|
{ value: "CIVIL_PARTNERSHIP", label: "Pacs\xE9(e)" },
|
|
1664
1670
|
{ value: "DIVORCED", label: "Divorc\xE9(e)" },
|
|
1665
1671
|
{ value: "WIDOWED", label: "Veuf(ve)" },
|
|
1666
|
-
{ value: "SINGLE", label: "C\xE9libataire" }
|
|
1672
|
+
{ value: "SINGLE", label: "C\xE9libataire" },
|
|
1673
|
+
{ value: "COHABITING", label: "Concubin(e) - Union libre" }
|
|
1667
1674
|
];
|
|
1668
1675
|
var PRENUP_TYPES = [
|
|
1669
1676
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1168,7 +1168,13 @@ var surfacesFormFields = [
|
|
|
1168
1168
|
name: "floorCount",
|
|
1169
1169
|
fieldType: "select-number",
|
|
1170
1170
|
label: "Nombre de niveau(x) de l'appartement",
|
|
1171
|
-
condition: only("isApartment"),
|
|
1171
|
+
// condition: only("isApartment"),
|
|
1172
|
+
condition: and(
|
|
1173
|
+
not("isLand"),
|
|
1174
|
+
not("isParking"),
|
|
1175
|
+
not("isHouse"),
|
|
1176
|
+
not("isBuilding")
|
|
1177
|
+
),
|
|
1172
1178
|
props: { options: APARTMENT_FLOOR_COUNT },
|
|
1173
1179
|
requiredFor: ["DIFFUSION"]
|
|
1174
1180
|
},
|
|
@@ -1568,7 +1574,8 @@ var MARITAL_STATUS = [
|
|
|
1568
1574
|
{ value: "CIVIL_PARTNERSHIP", label: "Pacs\xE9(e)" },
|
|
1569
1575
|
{ value: "DIVORCED", label: "Divorc\xE9(e)" },
|
|
1570
1576
|
{ value: "WIDOWED", label: "Veuf(ve)" },
|
|
1571
|
-
{ value: "SINGLE", label: "C\xE9libataire" }
|
|
1577
|
+
{ value: "SINGLE", label: "C\xE9libataire" },
|
|
1578
|
+
{ value: "COHABITING", label: "Concubin(e) - Union libre" }
|
|
1572
1579
|
];
|
|
1573
1580
|
var PRENUP_TYPES = [
|
|
1574
1581
|
{
|