sowhat-types 2.1.9 → 2.1.10
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 +4 -5
- package/dist/index.d.ts +4 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1101,7 +1101,6 @@ interface ProUserLikeLeadResponse {
|
|
|
1101
1101
|
}
|
|
1102
1102
|
|
|
1103
1103
|
interface ProMatchOfferResponse {
|
|
1104
|
-
id: string;
|
|
1105
1104
|
offer: {
|
|
1106
1105
|
id: string;
|
|
1107
1106
|
status: OfferStatusEnum;
|
|
@@ -1110,10 +1109,10 @@ interface ProMatchOfferResponse {
|
|
|
1110
1109
|
};
|
|
1111
1110
|
lead: {
|
|
1112
1111
|
id: string;
|
|
1113
|
-
birthYear: number;
|
|
1114
|
-
initialAmount: number;
|
|
1115
|
-
need: ProjectNeedEnum;
|
|
1116
|
-
postalCode: string;
|
|
1112
|
+
birthYear: number | null;
|
|
1113
|
+
initialAmount: number | null;
|
|
1114
|
+
need: ProjectNeedEnum | null;
|
|
1115
|
+
postalCode: string | null;
|
|
1117
1116
|
};
|
|
1118
1117
|
}
|
|
1119
1118
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1101,7 +1101,6 @@ interface ProUserLikeLeadResponse {
|
|
|
1101
1101
|
}
|
|
1102
1102
|
|
|
1103
1103
|
interface ProMatchOfferResponse {
|
|
1104
|
-
id: string;
|
|
1105
1104
|
offer: {
|
|
1106
1105
|
id: string;
|
|
1107
1106
|
status: OfferStatusEnum;
|
|
@@ -1110,10 +1109,10 @@ interface ProMatchOfferResponse {
|
|
|
1110
1109
|
};
|
|
1111
1110
|
lead: {
|
|
1112
1111
|
id: string;
|
|
1113
|
-
birthYear: number;
|
|
1114
|
-
initialAmount: number;
|
|
1115
|
-
need: ProjectNeedEnum;
|
|
1116
|
-
postalCode: string;
|
|
1112
|
+
birthYear: number | null;
|
|
1113
|
+
initialAmount: number | null;
|
|
1114
|
+
need: ProjectNeedEnum | null;
|
|
1115
|
+
postalCode: string | null;
|
|
1117
1116
|
};
|
|
1118
1117
|
}
|
|
1119
1118
|
|