kui-crm 0.0.529 → 0.0.531
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/agent/index.d.ts +7 -7
- package/cjs/index.js +1 -1
- package/hooks/index.d.ts +2 -2
- package/index.d.ts +14 -8
- package/index.js +1 -1
- package/package.json +6 -2
- package/types/index.d.ts +137 -130
- package/utils/index.d.ts +23 -23
package/agent/index.d.ts
CHANGED
|
@@ -21,8 +21,6 @@ declare type RegionModel = CatalogItemModel;
|
|
|
21
21
|
declare type CountyModel = CatalogItemModel;
|
|
22
22
|
declare type DistrictModel = CatalogItemModel;
|
|
23
23
|
|
|
24
|
-
declare type ApartmentFillingAPIVariants = "finish" | "furniture" | "appliance" | "accessorie";
|
|
25
|
-
|
|
26
24
|
declare type PostCommonTariffParams = {
|
|
27
25
|
id?: number;
|
|
28
26
|
date_from: string;
|
|
@@ -53,6 +51,13 @@ declare type PostElectricityTariffRequest = {
|
|
|
53
51
|
} & PostCommonTariffParams;
|
|
54
52
|
declare type PostTariffRequest = PostWaterTariffRequest | PostElectricityTariffRequest | PostGasTariffRequest | PostHeatingTariffRequest;
|
|
55
53
|
|
|
54
|
+
type SignInFormFields = {
|
|
55
|
+
phone: string
|
|
56
|
+
password: string
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare type ApartmentFillingAPIVariants = "finish" | "furniture" | "appliance" | "accessorie";
|
|
60
|
+
|
|
56
61
|
declare type FillingTypes = "finish" | "furniture" | "appliance" | "accessorie";
|
|
57
62
|
|
|
58
63
|
declare type LatLonParams = {
|
|
@@ -109,11 +114,6 @@ declare const TariffsAgent: {
|
|
|
109
114
|
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
110
115
|
};
|
|
111
116
|
|
|
112
|
-
type SignInFormFields = {
|
|
113
|
-
phone: string
|
|
114
|
-
password: string
|
|
115
|
-
}
|
|
116
|
-
|
|
117
117
|
declare const AuthAgent: {
|
|
118
118
|
signIn: (data: SignInFormFields) => Promise<any>;
|
|
119
119
|
logout: () => Promise<any>;
|