@sweepbright/api-client 0.29.4 → 0.29.8
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/api-client.cjs.development.js +44 -3
- package/dist/api-client.cjs.development.js.map +1 -1
- package/dist/api-client.cjs.production.min.js +1 -1
- package/dist/api-client.cjs.production.min.js.map +1 -1
- package/dist/api-client.esm.js +44 -3
- package/dist/api-client.esm.js.map +1 -1
- package/dist/common/config.d.ts +2 -0
- package/dist/common/currencies.d.ts +50 -0
- package/dist/common/logger.d.ts +27 -0
- package/dist/common/types.d.ts +1 -0
- package/dist/entities/property.d.ts +523 -0
- package/dist/index.d.ts +9 -7
- package/dist/mockServer.js +27 -0
- package/dist/mockServer.js.map +1 -0
- package/dist/resources/estates.d.ts +5 -9
- package/dist/resources/offices.d.ts +6 -0
- package/dist/src/__tests__/auth.test.js +15 -0
- package/dist/src/__tests__/auth.test.js.map +1 -0
- package/dist/src/__tests__/channels.test.js +77 -0
- package/dist/src/__tests__/channels.test.js.map +1 -0
- package/dist/src/__tests__/contacts.test.js +61 -0
- package/dist/src/__tests__/contacts.test.js.map +1 -0
- package/dist/src/__tests__/estates.test.js +43 -0
- package/dist/src/__tests__/estates.test.js.map +1 -0
- package/dist/src/__tests__/leads.test.js +55 -0
- package/dist/src/__tests__/leads.test.js.map +1 -0
- package/dist/src/common/config.js +34 -0
- package/dist/src/common/config.js.map +1 -0
- package/dist/src/common/currencies.js +55 -0
- package/dist/src/common/currencies.js.map +1 -0
- package/dist/src/common/logger.js +50 -0
- package/dist/src/common/logger.js.map +1 -0
- package/dist/src/common/types.js +3 -0
- package/dist/src/common/types.js.map +1 -0
- package/dist/src/entities/office.js +9 -0
- package/dist/src/entities/office.js.map +1 -0
- package/dist/src/entities/property.js +220 -0
- package/dist/src/entities/property.js.map +1 -0
- package/dist/src/index.js +94 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/resources/channel_accounts.js +31 -0
- package/dist/src/resources/channel_accounts.js.map +1 -0
- package/dist/src/resources/channels.js +32 -0
- package/dist/src/resources/channels.js.map +1 -0
- package/dist/src/resources/companies.js +16 -0
- package/dist/src/resources/companies.js.map +1 -0
- package/dist/src/resources/contact_preferences.js +14 -0
- package/dist/src/resources/contact_preferences.js.map +1 -0
- package/dist/src/resources/contacts.js +29 -0
- package/dist/src/resources/contacts.js.map +1 -0
- package/dist/src/resources/estates.js +73 -0
- package/dist/src/resources/estates.js.map +1 -0
- package/dist/src/resources/leads.js +26 -0
- package/dist/src/resources/leads.js.map +1 -0
- package/dist/src/resources/negotiators.js +16 -0
- package/dist/src/resources/negotiators.js.map +1 -0
- package/dist/src/resources/offices.js +12 -0
- package/dist/src/resources/offices.js.map +1 -0
- package/dist/src/types.js +40 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/utils.js +28 -0
- package/dist/src/utils.js.map +1 -0
- package/dist/types.d.ts +39 -0
- package/package.json +11 -10
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InternalType = exports.LandUseDesignation = exports.Shape = exports.FloodRisk = exports.EnergyReport = exports.EnergyCategoryExtended = exports.EnergyCategory = exports.Orientation = exports.Condition = exports.Negotiation = exports.PropertyType = exports.PropertySubType = exports.PropertyStatus = exports.AreaType = exports.MeasurementSystem = exports.UnitOfMeasurement = exports.Amenity = exports.ADScale = void 0;
|
|
4
|
+
var ADScale;
|
|
5
|
+
(function (ADScale) {
|
|
6
|
+
ADScale["A"] = "A";
|
|
7
|
+
ADScale["B"] = "B";
|
|
8
|
+
ADScale["C"] = "C";
|
|
9
|
+
ADScale["D"] = "D";
|
|
10
|
+
})(ADScale || (exports.ADScale = ADScale = {}));
|
|
11
|
+
var Amenity;
|
|
12
|
+
(function (Amenity) {
|
|
13
|
+
Amenity["Attic"] = "attic";
|
|
14
|
+
Amenity["Balcony"] = "balcony";
|
|
15
|
+
Amenity["Basement"] = "basement";
|
|
16
|
+
Amenity["ClimateControl"] = "climate_control";
|
|
17
|
+
Amenity["Code"] = "code";
|
|
18
|
+
Amenity["CoolingRoom"] = "cooling_room";
|
|
19
|
+
Amenity["DisplayWindow"] = "display_window";
|
|
20
|
+
Amenity["Drainage"] = "drainage";
|
|
21
|
+
Amenity["ElectricalGate"] = "electrical_gate";
|
|
22
|
+
Amenity["ExteriorParking"] = "exterior_parking";
|
|
23
|
+
Amenity["Fence"] = "fence";
|
|
24
|
+
Amenity["Fenced"] = "fenced";
|
|
25
|
+
Amenity["Garden"] = "garden";
|
|
26
|
+
Amenity["Guesthouse"] = "guesthouse";
|
|
27
|
+
Amenity["InteriorParking"] = "interior_parking";
|
|
28
|
+
Amenity["KeyCard"] = "key_card";
|
|
29
|
+
Amenity["Lift"] = "lift";
|
|
30
|
+
Amenity["ManualGate"] = "manual_gate";
|
|
31
|
+
Amenity["Parking"] = "parking";
|
|
32
|
+
Amenity["Pool"] = "pool";
|
|
33
|
+
Amenity["PrintAndCopyArea"] = "print_and_copy_area";
|
|
34
|
+
Amenity["ReceptionArea"] = "reception_area";
|
|
35
|
+
Amenity["RoadAccess"] = "road_access";
|
|
36
|
+
Amenity["ServerRoom"] = "server_room";
|
|
37
|
+
Amenity["SewerAccess"] = "sewer_access";
|
|
38
|
+
Amenity["StorageSpace"] = "storage_space";
|
|
39
|
+
Amenity["Terrace"] = "terrace";
|
|
40
|
+
Amenity["UtilitiesAccess"] = "utilities_access";
|
|
41
|
+
Amenity["WaitingArea"] = "waiting_area";
|
|
42
|
+
Amenity["WaterAccess"] = "water_access";
|
|
43
|
+
})(Amenity || (exports.Amenity = Amenity = {}));
|
|
44
|
+
var UnitOfMeasurement;
|
|
45
|
+
(function (UnitOfMeasurement) {
|
|
46
|
+
UnitOfMeasurement["cm"] = "cm";
|
|
47
|
+
UnitOfMeasurement["inch"] = "inch";
|
|
48
|
+
UnitOfMeasurement["sq_m"] = "sq_m";
|
|
49
|
+
UnitOfMeasurement["sq_ft"] = "sq_ft";
|
|
50
|
+
})(UnitOfMeasurement || (exports.UnitOfMeasurement = UnitOfMeasurement = {}));
|
|
51
|
+
var MeasurementSystem;
|
|
52
|
+
(function (MeasurementSystem) {
|
|
53
|
+
MeasurementSystem["Metric"] = "metric";
|
|
54
|
+
MeasurementSystem["Imperial"] = "imperial";
|
|
55
|
+
})(MeasurementSystem || (exports.MeasurementSystem = MeasurementSystem = {}));
|
|
56
|
+
var AreaType;
|
|
57
|
+
(function (AreaType) {
|
|
58
|
+
AreaType["Bathrooms"] = "bathrooms";
|
|
59
|
+
AreaType["Bedrooms"] = "bedrooms";
|
|
60
|
+
AreaType["ClosedOfficeSpaces"] = "closed_office_spaces";
|
|
61
|
+
AreaType["ConferenceRooms"] = "conference_rooms";
|
|
62
|
+
AreaType["Floors"] = "floors";
|
|
63
|
+
AreaType["Kitchens"] = "kitchens";
|
|
64
|
+
AreaType["LivingRoom"] = "living_room";
|
|
65
|
+
AreaType["ManufacturingAreas"] = "manufacturing_areas";
|
|
66
|
+
AreaType["MeetingRooms"] = "meeting_rooms";
|
|
67
|
+
AreaType["OpenOfficeSpaces"] = "open_office_spaces";
|
|
68
|
+
AreaType["ParkingSpaces"] = "parking_spaces";
|
|
69
|
+
AreaType["Showrooms"] = "showrooms";
|
|
70
|
+
AreaType["StorageRooms"] = "storage_rooms";
|
|
71
|
+
AreaType["Toilets"] = "toilets";
|
|
72
|
+
})(AreaType || (exports.AreaType = AreaType = {}));
|
|
73
|
+
var PropertyStatus;
|
|
74
|
+
(function (PropertyStatus) {
|
|
75
|
+
PropertyStatus["prospect"] = "prospect";
|
|
76
|
+
PropertyStatus["lost"] = "lost";
|
|
77
|
+
PropertyStatus["available"] = "available";
|
|
78
|
+
PropertyStatus["rented"] = "rented";
|
|
79
|
+
PropertyStatus["sold"] = "sold";
|
|
80
|
+
PropertyStatus["bid"] = "bid";
|
|
81
|
+
PropertyStatus["option"] = "option";
|
|
82
|
+
PropertyStatus["under_contract"] = "under_contract";
|
|
83
|
+
})(PropertyStatus || (exports.PropertyStatus = PropertyStatus = {}));
|
|
84
|
+
var PropertySubType;
|
|
85
|
+
(function (PropertySubType) {
|
|
86
|
+
PropertySubType["duplex"] = "duplex";
|
|
87
|
+
PropertySubType["agricultural"] = "agricultural";
|
|
88
|
+
PropertySubType["pasture_land"] = "pasture_land";
|
|
89
|
+
PropertySubType["private_garage"] = "private_garage";
|
|
90
|
+
PropertySubType["loft"] = "loft";
|
|
91
|
+
PropertySubType["recreational"] = "recreational";
|
|
92
|
+
PropertySubType["investment_property"] = "investment_property";
|
|
93
|
+
PropertySubType["mansion"] = "mansion";
|
|
94
|
+
PropertySubType["terraced"] = "terraced";
|
|
95
|
+
PropertySubType["townhouse"] = "townhouse";
|
|
96
|
+
PropertySubType["condo"] = "condo";
|
|
97
|
+
PropertySubType["penthouse"] = "penthouse";
|
|
98
|
+
PropertySubType["farm"] = "farm";
|
|
99
|
+
PropertySubType["cottage"] = "cottage";
|
|
100
|
+
PropertySubType["buildable"] = "buildable";
|
|
101
|
+
PropertySubType["villa"] = "villa";
|
|
102
|
+
PropertySubType["retail"] = "retail";
|
|
103
|
+
PropertySubType["covered_outdoor_space"] = "covered_outdoor_space";
|
|
104
|
+
PropertySubType["indoor_parking_space"] = "indoor_parking_space";
|
|
105
|
+
PropertySubType["flex_office"] = "flex_office";
|
|
106
|
+
PropertySubType["open_office"] = "open_office";
|
|
107
|
+
PropertySubType["industrial"] = "industrial";
|
|
108
|
+
PropertySubType["restaurant_and_cafe"] = "restaurant_and_cafe";
|
|
109
|
+
PropertySubType["student_accommodation"] = "student_accommodation";
|
|
110
|
+
PropertySubType["leisure_and_sports"] = "leasure_and_sports";
|
|
111
|
+
PropertySubType["outdoor_parking_space"] = "outdoor_parking_space";
|
|
112
|
+
PropertySubType["coworking"] = "coworking";
|
|
113
|
+
PropertySubType["warehouse"] = "warehouse";
|
|
114
|
+
PropertySubType["shop"] = "shop";
|
|
115
|
+
PropertySubType["semi_detached"] = "semi_detached";
|
|
116
|
+
PropertySubType["healthcare"] = "healthcare";
|
|
117
|
+
PropertySubType["detached"] = "detached";
|
|
118
|
+
PropertySubType["bungalow"] = "bungalow";
|
|
119
|
+
})(PropertySubType || (exports.PropertySubType = PropertySubType = {}));
|
|
120
|
+
var PropertyType;
|
|
121
|
+
(function (PropertyType) {
|
|
122
|
+
PropertyType["apartment"] = "apartment";
|
|
123
|
+
PropertyType["house"] = "house";
|
|
124
|
+
PropertyType["land"] = "land";
|
|
125
|
+
PropertyType["office"] = "office";
|
|
126
|
+
PropertyType["parking"] = "parking";
|
|
127
|
+
PropertyType["commercial"] = "commercial";
|
|
128
|
+
})(PropertyType || (exports.PropertyType = PropertyType = {}));
|
|
129
|
+
var Negotiation;
|
|
130
|
+
(function (Negotiation) {
|
|
131
|
+
Negotiation["sale"] = "sale";
|
|
132
|
+
Negotiation["let"] = "let";
|
|
133
|
+
})(Negotiation || (exports.Negotiation = Negotiation = {}));
|
|
134
|
+
var Condition;
|
|
135
|
+
(function (Condition) {
|
|
136
|
+
Condition["new"] = "new";
|
|
137
|
+
Condition["good"] = "good";
|
|
138
|
+
Condition["mint"] = "mint";
|
|
139
|
+
Condition["poor"] = "poor";
|
|
140
|
+
Condition["fair"] = "fair";
|
|
141
|
+
})(Condition || (exports.Condition = Condition = {}));
|
|
142
|
+
var Orientation;
|
|
143
|
+
(function (Orientation) {
|
|
144
|
+
Orientation["N"] = "N";
|
|
145
|
+
Orientation["S"] = "S";
|
|
146
|
+
Orientation["E"] = "E";
|
|
147
|
+
Orientation["W"] = "W";
|
|
148
|
+
Orientation["NE"] = "NE";
|
|
149
|
+
Orientation["NW"] = "NW";
|
|
150
|
+
Orientation["SE"] = "SE";
|
|
151
|
+
Orientation["SW"] = "SW";
|
|
152
|
+
})(Orientation || (exports.Orientation = Orientation = {}));
|
|
153
|
+
var EnergyCategory;
|
|
154
|
+
(function (EnergyCategory) {
|
|
155
|
+
EnergyCategory["A"] = "A";
|
|
156
|
+
EnergyCategory["B"] = "B";
|
|
157
|
+
EnergyCategory["C"] = "C";
|
|
158
|
+
EnergyCategory["D"] = "D";
|
|
159
|
+
EnergyCategory["E"] = "E";
|
|
160
|
+
EnergyCategory["F"] = "F";
|
|
161
|
+
EnergyCategory["G"] = "G";
|
|
162
|
+
})(EnergyCategory || (exports.EnergyCategory = EnergyCategory = {}));
|
|
163
|
+
var EnergyCategoryExtended;
|
|
164
|
+
(function (EnergyCategoryExtended) {
|
|
165
|
+
EnergyCategoryExtended["A_PLUS_PLUS"] = "A++";
|
|
166
|
+
EnergyCategoryExtended["A_PLUS"] = "A+";
|
|
167
|
+
EnergyCategoryExtended["A"] = "A";
|
|
168
|
+
EnergyCategoryExtended["B"] = "B";
|
|
169
|
+
EnergyCategoryExtended["C"] = "C";
|
|
170
|
+
EnergyCategoryExtended["D"] = "D";
|
|
171
|
+
EnergyCategoryExtended["E"] = "E";
|
|
172
|
+
EnergyCategoryExtended["F"] = "F";
|
|
173
|
+
EnergyCategoryExtended["G"] = "G";
|
|
174
|
+
})(EnergyCategoryExtended || (exports.EnergyCategoryExtended = EnergyCategoryExtended = {}));
|
|
175
|
+
var EnergyReport;
|
|
176
|
+
(function (EnergyReport) {
|
|
177
|
+
EnergyReport["conform"] = "conform";
|
|
178
|
+
EnergyReport["not_conform"] = "not_conform";
|
|
179
|
+
EnergyReport["no_report"] = "no_report";
|
|
180
|
+
EnergyReport["not_applicable"] = "not_applicable";
|
|
181
|
+
})(EnergyReport || (exports.EnergyReport = EnergyReport = {}));
|
|
182
|
+
var FloodRisk;
|
|
183
|
+
(function (FloodRisk) {
|
|
184
|
+
FloodRisk["no_flood_risk_area"] = "no_flood_risk_area";
|
|
185
|
+
FloodRisk["potential_flood_sensitive_area"] = "potential_flood_sensitive_area";
|
|
186
|
+
FloodRisk["effective_flood_sensitive_area"] = "effective_flood_sensitive_area";
|
|
187
|
+
})(FloodRisk || (exports.FloodRisk = FloodRisk = {}));
|
|
188
|
+
var Shape;
|
|
189
|
+
(function (Shape) {
|
|
190
|
+
Shape["flat"] = "flat";
|
|
191
|
+
Shape["sloped"] = "sloped";
|
|
192
|
+
Shape["wooded"] = "wooded";
|
|
193
|
+
Shape["has_rivers_lakes_or_ponds"] = "has_rivers_lakes_or_ponds";
|
|
194
|
+
Shape["single"] = "single";
|
|
195
|
+
Shape["double"] = "double";
|
|
196
|
+
})(Shape || (exports.Shape = Shape = {}));
|
|
197
|
+
var LandUseDesignation;
|
|
198
|
+
(function (LandUseDesignation) {
|
|
199
|
+
LandUseDesignation["residential"] = "residential";
|
|
200
|
+
LandUseDesignation["mixed_residential"] = "mixed_residential";
|
|
201
|
+
LandUseDesignation["industrial"] = "industrial";
|
|
202
|
+
LandUseDesignation["recreational"] = "recreational";
|
|
203
|
+
LandUseDesignation["park"] = "park";
|
|
204
|
+
LandUseDesignation["area_with_economical_activity"] = "area_with_economical_activity";
|
|
205
|
+
LandUseDesignation["forest_area"] = "forest_area";
|
|
206
|
+
LandUseDesignation["agricultural"] = "agricultural";
|
|
207
|
+
LandUseDesignation["nature_area"] = "nature_area";
|
|
208
|
+
LandUseDesignation["natural_reserve"] = "natural_reserve";
|
|
209
|
+
LandUseDesignation["residential_area_with_cultural_historical_value"] = "residential_area_with_cultural_historical_value";
|
|
210
|
+
LandUseDesignation["industrial_area_for_sme"] = "industrial_area_for_sme";
|
|
211
|
+
LandUseDesignation["day_recreation_area"] = "day_recreation_area";
|
|
212
|
+
LandUseDesignation["other"] = "other";
|
|
213
|
+
})(LandUseDesignation || (exports.LandUseDesignation = LandUseDesignation = {}));
|
|
214
|
+
var InternalType;
|
|
215
|
+
(function (InternalType) {
|
|
216
|
+
InternalType["project"] = "project";
|
|
217
|
+
InternalType["unit"] = "unit";
|
|
218
|
+
InternalType["standalone"] = "standalone";
|
|
219
|
+
})(InternalType || (exports.InternalType = InternalType = {}));
|
|
220
|
+
//# sourceMappingURL=property.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"property.js","sourceRoot":"","sources":["../../../src/entities/property.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Env = exports.createClient = void 0;
|
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
|
8
|
+
const tiny_invariant_1 = __importDefault(require("tiny-invariant"));
|
|
9
|
+
const channel_accounts_1 = __importDefault(require("./resources/channel_accounts"));
|
|
10
|
+
const channels_1 = __importDefault(require("./resources/channels"));
|
|
11
|
+
const companies_1 = __importDefault(require("./resources/companies"));
|
|
12
|
+
const contact_preferences_1 = __importDefault(require("./resources/contact_preferences"));
|
|
13
|
+
const contacts_1 = __importDefault(require("./resources/contacts"));
|
|
14
|
+
const estates_1 = __importDefault(require("./resources/estates"));
|
|
15
|
+
const leads_1 = __importDefault(require("./resources/leads"));
|
|
16
|
+
const negotiators_1 = __importDefault(require("./resources/negotiators"));
|
|
17
|
+
const offices_1 = __importDefault(require("./resources/offices"));
|
|
18
|
+
const types_1 = require("./types");
|
|
19
|
+
Object.defineProperty(exports, "Env", { enumerable: true, get: function () { return types_1.Env; } });
|
|
20
|
+
const utils_1 = require("./utils");
|
|
21
|
+
const envHosts = {
|
|
22
|
+
[types_1.Env.PRODUCTION]: 'https://api.sweepbright.com',
|
|
23
|
+
[types_1.Env.STAGING]: 'https://api.staging.sweepbright.com',
|
|
24
|
+
[types_1.Env.DEV]: 'https://api.dev.sweepbright.com',
|
|
25
|
+
};
|
|
26
|
+
function createClient(conf) {
|
|
27
|
+
const { clientId, clientSecret, env = types_1.Env.PRODUCTION, version } = conf;
|
|
28
|
+
let _auth = null;
|
|
29
|
+
const httpClient = axios_1.default.create({
|
|
30
|
+
baseURL: envHosts[env],
|
|
31
|
+
});
|
|
32
|
+
//TODO: getData here is an antipattern. Interceptor should not change a type of response
|
|
33
|
+
httpClient.interceptors.response.use(utils_1.getData, utils_1.handleRequestFailure);
|
|
34
|
+
if (version) {
|
|
35
|
+
httpClient.defaults.headers.common['Accept'] = `application/vnd.sweepbright.${version}+json`;
|
|
36
|
+
}
|
|
37
|
+
const ctx = {
|
|
38
|
+
httpClient,
|
|
39
|
+
checkAuth(tokenType) {
|
|
40
|
+
if (!_auth) {
|
|
41
|
+
throw new Error('client is not authenticated');
|
|
42
|
+
}
|
|
43
|
+
if (_auth.type !== tokenType) {
|
|
44
|
+
throw new Error('authenticated with invalid token type');
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
const client = {
|
|
49
|
+
authorize(config = {}) {
|
|
50
|
+
const { scopes = ['companies:read', 'properties:download', 'lead_info:write'], } = config;
|
|
51
|
+
(0, tiny_invariant_1.default)(clientId, 'missing client id');
|
|
52
|
+
(0, tiny_invariant_1.default)(clientSecret, 'missing client secret');
|
|
53
|
+
return httpClient
|
|
54
|
+
.post('/auth/access-token', {
|
|
55
|
+
client_id: clientId,
|
|
56
|
+
client_secret: clientSecret,
|
|
57
|
+
grant_type: 'client_credentials',
|
|
58
|
+
scope: scopes.join(','),
|
|
59
|
+
})
|
|
60
|
+
.then(({ access_token, expires_in }) => {
|
|
61
|
+
(0, tiny_invariant_1.default)(access_token, 'access token should be defined');
|
|
62
|
+
(0, tiny_invariant_1.default)(expires_in, 'expires_in should be defined');
|
|
63
|
+
_auth = {
|
|
64
|
+
token: access_token,
|
|
65
|
+
expiresIn: expires_in,
|
|
66
|
+
type: types_1.TokenType.API_TOKEN,
|
|
67
|
+
};
|
|
68
|
+
// https://github.com/axios/axios#custom-instance-defaults
|
|
69
|
+
httpClient.defaults.headers.common['Authorization'] = `Bearer ${_auth.token}`;
|
|
70
|
+
return client;
|
|
71
|
+
});
|
|
72
|
+
},
|
|
73
|
+
withUserToken: async (accessToken) => {
|
|
74
|
+
_auth = {
|
|
75
|
+
token: accessToken,
|
|
76
|
+
type: types_1.TokenType.USER_TOKEN,
|
|
77
|
+
};
|
|
78
|
+
httpClient.defaults.headers.common['Authorization'] = `Bearer ${_auth.token}`;
|
|
79
|
+
return client;
|
|
80
|
+
},
|
|
81
|
+
leads: (0, leads_1.default)(ctx),
|
|
82
|
+
channels: (0, channels_1.default)(ctx),
|
|
83
|
+
estates: (0, estates_1.default)(ctx),
|
|
84
|
+
channelAccounts: (0, channel_accounts_1.default)(ctx),
|
|
85
|
+
companies: (0, companies_1.default)(ctx),
|
|
86
|
+
contacts: (0, contacts_1.default)(ctx),
|
|
87
|
+
contactPreferences: (0, contact_preferences_1.default)(ctx),
|
|
88
|
+
negotiators: (0, negotiators_1.default)(ctx),
|
|
89
|
+
offices: (0, offices_1.default)(ctx),
|
|
90
|
+
};
|
|
91
|
+
return client;
|
|
92
|
+
}
|
|
93
|
+
exports.createClient = createClient;
|
|
94
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
async function getAll({ companyId }) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
const endpoint = `/services/companies/${companyId}/channel-accounts`;
|
|
8
|
+
return ctx.httpClient.get(endpoint, {
|
|
9
|
+
params: {
|
|
10
|
+
includes: 'channel',
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
async function get({ channelAccountId }) {
|
|
15
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
16
|
+
const endpoint = `/services/channel-accounts/${channelAccountId}`;
|
|
17
|
+
return ctx.httpClient.get(endpoint, {
|
|
18
|
+
params: {
|
|
19
|
+
includes: 'channel',
|
|
20
|
+
},
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
async function getEstateHash({ estateId, channelAccountId, }) {
|
|
24
|
+
const endpoint = `services/estates/${estateId}/channel-accounts/${channelAccountId}/hash`;
|
|
25
|
+
const response = await ctx.httpClient.post(endpoint);
|
|
26
|
+
return response.data;
|
|
27
|
+
}
|
|
28
|
+
return { getAll, get, getEstateHash };
|
|
29
|
+
}
|
|
30
|
+
exports.default = default_1;
|
|
31
|
+
//# sourceMappingURL=channel_accounts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"channel_accounts.js","sourceRoot":"","sources":["../../../src/resources/channel_accounts.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAEhD,mBAAyB,GAAc;IACrC,KAAK,UAAU,MAAM,CAAC,EAAE,SAAS,EAAyB;QACxD,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,MAAM,QAAQ,GAAG,uBAAuB,SAAS,mBAAmB,CAAC;QAErE,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE;YAClC,MAAM,EAAE;gBACN,QAAQ,EAAE,SAAS;aACpB;SACF,CAAC,CAAC;IACL,CAAC;IAED,KAAK,UAAU,GAAG,CAAC,EAAE,gBAAgB,EAAgC;QACnE,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,MAAM,QAAQ,GAAG,8BAA8B,gBAAgB,EAAE,CAAC;QAElE,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE;YAClC,MAAM,EAAE;gBACN,QAAQ,EAAE,SAAS;aACpB;SACF,CAAC,CAAC;IACL,CAAC;IAED,KAAK,UAAU,aAAa,CAAC,EAC3B,QAAQ,EACR,gBAAgB,GAIjB;QACC,MAAM,QAAQ,GAAG,oBAAoB,QAAQ,qBAAqB,gBAAgB,OAAO,CAAC;QAC1F,MAAM,QAAQ,GAAG,MAAM,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACrD,OAAO,QAAQ,CAAC,IAAI,CAAC;IACvB,CAAC;IAED,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,EAAW,CAAC;AACjD,CAAC;AApCD,4BAoCC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated use channels.resolveReferences()
|
|
7
|
+
*/
|
|
8
|
+
async function getPropertyIdFromReference(channel, referenceId) {
|
|
9
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
10
|
+
const endpoint = `/channels/${channel}/channel-references/${referenceId}`;
|
|
11
|
+
return ctx.httpClient.get(endpoint);
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @param channel_id Channel ID, for example, `"immoweb"` or `"immovlan"` etc
|
|
15
|
+
* @param reference_code Reference
|
|
16
|
+
* @param company_id Company ID
|
|
17
|
+
*/
|
|
18
|
+
async function resolveReferences(channel_id, reference_code, company_id) {
|
|
19
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
20
|
+
const endpoint = `/services/channel-references`;
|
|
21
|
+
return ctx.httpClient.get(endpoint, {
|
|
22
|
+
params: {
|
|
23
|
+
channel_id,
|
|
24
|
+
reference_code,
|
|
25
|
+
company_id,
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
return { getPropertyIdFromReference, resolveReferences };
|
|
30
|
+
}
|
|
31
|
+
exports.default = default_1;
|
|
32
|
+
//# sourceMappingURL=channels.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"channels.js","sourceRoot":"","sources":["../../../src/resources/channels.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAchD,mBAAyB,GAAc;IACrC;;OAEG;IACH,KAAK,UAAU,0BAA0B,CACvC,OAAe,EACf,WAAmB;QAEnB,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,MAAM,QAAQ,GAAG,aAAa,OAAO,uBAAuB,WAAW,EAAE,CAAC;QAE1E,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACtC,CAAC;IAED;;;;OAIG;IACH,KAAK,UAAU,iBAAiB,CAC9B,UAAkB,EAClB,cAAsB,EACtB,UAAmB;QAEnB,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,MAAM,QAAQ,GAAG,8BAA8B,CAAC;QAEhD,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE;YAClC,MAAM,EAAE;gBACN,UAAU;gBACV,cAAc;gBACd,UAAU;aACX;SACF,CAAC,CAAC;IACL,CAAC;IAED,OAAO,EAAE,0BAA0B,EAAE,iBAAiB,EAAE,CAAC;AAC3D,CAAC;AArCD,4BAqCC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function get(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient.get(`/companies/${attributes.companyId}`, {
|
|
8
|
+
params: {
|
|
9
|
+
includes: attributes.includes?.join(','),
|
|
10
|
+
},
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
return { get };
|
|
14
|
+
}
|
|
15
|
+
exports.default = default_1;
|
|
16
|
+
//# sourceMappingURL=companies.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"companies.js","sourceRoot":"","sources":["../../../src/resources/companies.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAEhD,mBAAyB,GAAc;IACrC,SAAS,GAAG,CAAC,UAAsD;QACjE,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QAEnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,UAAU,CAAC,SAAS,EAAE,EAAE;YAC9D,MAAM,EAAE;gBACN,QAAQ,EAAE,UAAU,CAAC,QAAQ,EAAE,IAAI,CAAC,GAAG,CAAC;aACzC;SACF,CAAC,CAAC;IACL,CAAC;IAED,OAAO,EAAE,GAAG,EAAE,CAAC;AACjB,CAAC;AAZD,4BAYC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function contact_preferences(ctx) {
|
|
5
|
+
function getAll(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient.get(`/services/contacts/${attributes.contactId}/preferences`);
|
|
8
|
+
}
|
|
9
|
+
return {
|
|
10
|
+
getAll,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
exports.default = contact_preferences;
|
|
14
|
+
//# sourceMappingURL=contact_preferences.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contact_preferences.js","sourceRoot":"","sources":["../../../src/resources/contact_preferences.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAEhD,SAAwB,mBAAmB,CAAC,GAAc;IACxD,SAAS,MAAM,CAAC,UAAiC;QAC/C,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CACvB,sBAAsB,UAAU,CAAC,SAAS,cAAc,CACzD,CAAC;IACJ,CAAC;IAED,OAAO;QACL,MAAM;KACP,CAAC;AACJ,CAAC;AAXD,sCAWC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function getOne(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient.get(`/services/contacts/${attributes.contactId}`);
|
|
8
|
+
}
|
|
9
|
+
function getOneWithNegotiators(attributes) {
|
|
10
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
11
|
+
return ctx.httpClient.get(`/services/contacts/${attributes.contactId}?includes=negotiators`);
|
|
12
|
+
}
|
|
13
|
+
function getAll(attributes) {
|
|
14
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
15
|
+
return ctx.httpClient.get(`/services/companies/${attributes.companyId}/contacts`, {
|
|
16
|
+
params: {
|
|
17
|
+
page: attributes.page ?? 1,
|
|
18
|
+
limit: attributes.limit ?? 10,
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
getOne,
|
|
24
|
+
getOneWithNegotiators,
|
|
25
|
+
getAll,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
exports.default = default_1;
|
|
29
|
+
//# sourceMappingURL=contacts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contacts.js","sourceRoot":"","sources":["../../../src/resources/contacts.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAEhD,mBAAyB,GAAc;IACrC,SAAS,MAAM,CAAC,UAAiC;QAC/C,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,sBAAsB,UAAU,CAAC,SAAS,EAAE,CAAC,CAAC;IAC1E,CAAC;IAED,SAAS,qBAAqB,CAAC,UAAiC;QAC9D,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CACvB,sBAAsB,UAAU,CAAC,SAAS,uBAAuB,CAClE,CAAC;IACJ,CAAC;IAED,SAAS,MAAM,CAAC,UAIf;QACC,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CACvB,uBAAuB,UAAU,CAAC,SAAS,WAAW,EACtD;YACE,MAAM,EAAE;gBACN,IAAI,EAAE,UAAU,CAAC,IAAI,IAAI,CAAC;gBAC1B,KAAK,EAAE,UAAU,CAAC,KAAK,IAAI,EAAE;aAC9B;SACF,CACF,CAAC;IACJ,CAAC;IAED,OAAO;QACL,MAAM;QACN,qBAAqB;QACrB,MAAM;KACP,CAAC;AACJ,CAAC;AAnCD,4BAmCC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function getOne(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient
|
|
8
|
+
.get(`/services/estates/${attributes.estateId}`, {
|
|
9
|
+
params: {
|
|
10
|
+
includes: attributes.includes ?? [],
|
|
11
|
+
},
|
|
12
|
+
})
|
|
13
|
+
.then((res) => res.data);
|
|
14
|
+
}
|
|
15
|
+
function getAll(attributes) {
|
|
16
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
17
|
+
return ctx.httpClient.get(`/services/companies/${attributes.companyId}/estates`, {
|
|
18
|
+
params: {
|
|
19
|
+
page: attributes.page ?? 1,
|
|
20
|
+
limit: attributes.limit ?? 10,
|
|
21
|
+
archived: attributes.archived,
|
|
22
|
+
},
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
function getUnits(projectId, { page, limit, includes } = {}) {
|
|
26
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
27
|
+
return ctx.httpClient.get(`/services/projects/${projectId}/units`, {
|
|
28
|
+
params: {
|
|
29
|
+
page,
|
|
30
|
+
limit,
|
|
31
|
+
includes,
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
function createPublication(attributes) {
|
|
36
|
+
ctx.checkAuth(types_1.TokenType.USER_TOKEN);
|
|
37
|
+
return ctx.httpClient.post(`/estates/${attributes.estateId}/channel-accounts/${attributes.channelAccountId}/ads`, {
|
|
38
|
+
config: attributes.config,
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
function updatePublication(attributes) {
|
|
42
|
+
ctx.checkAuth(types_1.TokenType.USER_TOKEN);
|
|
43
|
+
return ctx.httpClient.put(`/estates/${attributes.estateId}/channel-accounts/${attributes.channelAccountId}/ads`, {
|
|
44
|
+
config: attributes.config,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
function unpublishPublication(attributes) {
|
|
48
|
+
ctx.checkAuth(types_1.TokenType.USER_TOKEN);
|
|
49
|
+
return ctx.httpClient.delete(`/estates/${attributes.estateId}/channel-accounts/${attributes.channelAccountId}/ads`);
|
|
50
|
+
}
|
|
51
|
+
function scheduleVisit(estateId, attributes) {
|
|
52
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
53
|
+
return ctx.httpClient.put(`/properties/${estateId}/schedule-visit`, attributes);
|
|
54
|
+
}
|
|
55
|
+
function unstable_setPublicationUrl({ estateId, url, }) {
|
|
56
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
57
|
+
return ctx.httpClient.put(`/estates/${estateId}/website-url`, {
|
|
58
|
+
published_url: url,
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
return {
|
|
62
|
+
getOne,
|
|
63
|
+
getAll,
|
|
64
|
+
getUnits,
|
|
65
|
+
createPublication,
|
|
66
|
+
updatePublication,
|
|
67
|
+
unpublishPublication,
|
|
68
|
+
scheduleVisit,
|
|
69
|
+
unstable_setPublicationUrl,
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
exports.default = default_1;
|
|
73
|
+
//# sourceMappingURL=estates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"estates.js","sourceRoot":"","sources":["../../../src/resources/estates.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function createLead(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
const { firstName, lastName, propertyId, email, phone, message, portal } = attributes;
|
|
8
|
+
return ctx.httpClient.put(`estates/${propertyId}/leads`, {
|
|
9
|
+
first_name: firstName,
|
|
10
|
+
last_name: lastName,
|
|
11
|
+
message,
|
|
12
|
+
email,
|
|
13
|
+
phone,
|
|
14
|
+
source_type: 'channel',
|
|
15
|
+
external_source: portal,
|
|
16
|
+
location_preference: attributes.location_preference,
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
function createUnassignedLead(companyId, attributes) {
|
|
20
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
21
|
+
return ctx.httpClient.put(`companies/${companyId}/leads`, attributes);
|
|
22
|
+
}
|
|
23
|
+
return { createLead, createUnassignedLead };
|
|
24
|
+
}
|
|
25
|
+
exports.default = default_1;
|
|
26
|
+
//# sourceMappingURL=leads.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leads.js","sourceRoot":"","sources":["../../../src/resources/leads.ts"],"names":[],"mappings":";;AAAA,oCAAgD;AAEhD,mBAAyB,GAAc;IACrC,SAAS,UAAU,CAAC,UAYnB;QACC,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QAEnC,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,GACtE,UAAU,CAAC;QAEb,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,UAAU,QAAQ,EAAE;YACvD,UAAU,EAAE,SAAS;YACrB,SAAS,EAAE,QAAQ;YACnB,OAAO;YACP,KAAK;YACL,KAAK;YACL,WAAW,EAAE,SAAS;YACtB,eAAe,EAAE,MAAM;YACvB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB;SACpD,CAAC,CAAC;IACL,CAAC;IAED,SAAS,oBAAoB,CAC3B,SAAiB,EACjB,UAsBC;QAED,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,aAAa,SAAS,QAAQ,EAAE,UAAU,CAAC,CAAC;IACxE,CAAC;IAED,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAE,CAAC;AAC9C,CAAC;AA9DD,4BA8DC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function getNegotiatorsByIdCompanyId(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient.get(`/services/companies/${attributes.companyId}/negotiators`, {
|
|
8
|
+
params: { ids: attributes.ids },
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
getNegotiatorsByIdCompanyId,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
exports.default = default_1;
|
|
16
|
+
//# sourceMappingURL=negotiators.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"negotiators.js","sourceRoot":"","sources":["../../../src/resources/negotiators.ts"],"names":[],"mappings":";;AAAA,oCAAgE;AAEhE,mBAAyB,GAAc;IACrC,SAAS,2BAA2B,CAAC,UAGpC;QACC,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QACnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CACvB,uBAAuB,UAAU,CAAC,SAAS,cAAc,EACzD;YACE,MAAM,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAG,EAAE;SAChC,CACgD,CAAC;IACtD,CAAC;IACD,OAAO;QACL,2BAA2B;KAC5B,CAAC;AACJ,CAAC;AAhBD,4BAgBC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const types_1 = require("../types");
|
|
4
|
+
function default_1(ctx) {
|
|
5
|
+
function getOffice(attributes) {
|
|
6
|
+
ctx.checkAuth(types_1.TokenType.API_TOKEN);
|
|
7
|
+
return ctx.httpClient.get(`/service/offices/${attributes.officeId}`);
|
|
8
|
+
}
|
|
9
|
+
return { getOffice };
|
|
10
|
+
}
|
|
11
|
+
exports.default = default_1;
|
|
12
|
+
//# sourceMappingURL=offices.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"offices.js","sourceRoot":"","sources":["../../../src/resources/offices.ts"],"names":[],"mappings":";;AACA,oCAAgD;AAEhD,mBAAyB,GAAc;IACrC,SAAS,SAAS,CAAC,UAAgC;QACjD,GAAG,CAAC,SAAS,CAAC,iBAAS,CAAC,SAAS,CAAC,CAAC;QAEnC,OAAO,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,oBAAoB,UAAU,CAAC,QAAQ,EAAE,CAAC,CAAC;IACvE,CAAC;IAED,OAAO,EAAE,SAAS,EAAE,CAAC;AACvB,CAAC;AARD,4BAQC"}
|