@homespot-sdk/core 0.0.126 → 0.0.127
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/property/client/client.gen.d.ts +3 -0
- package/dist/property/client/client.gen.d.ts.map +1 -0
- package/dist/property/client/client.gen.js +207 -0
- package/dist/property/client/client.gen.js.map +1 -0
- package/dist/property/client/index.d.ts +9 -0
- package/dist/property/client/index.d.ts.map +1 -0
- package/dist/property/client/index.js +7 -0
- package/dist/property/client/index.js.map +1 -0
- package/dist/property/client/types.gen.d.ts +100 -0
- package/dist/property/client/types.gen.d.ts.map +1 -0
- package/dist/property/client/types.gen.js +3 -0
- package/dist/property/client/types.gen.js.map +1 -0
- package/dist/property/client/utils.gen.d.ts +41 -0
- package/dist/property/client/utils.gen.d.ts.map +1 -0
- package/dist/property/client/utils.gen.js +303 -0
- package/dist/property/client/utils.gen.js.map +1 -0
- package/dist/property/client.gen.d.ts +13 -0
- package/dist/property/client.gen.d.ts.map +1 -0
- package/dist/property/client.gen.js +7 -0
- package/dist/property/client.gen.js.map +1 -0
- package/dist/property/core/auth.gen.d.ts +19 -0
- package/dist/property/core/auth.gen.d.ts.map +1 -0
- package/dist/property/core/auth.gen.js +15 -0
- package/dist/property/core/auth.gen.js.map +1 -0
- package/dist/property/core/bodySerializer.gen.d.ts +26 -0
- package/dist/property/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/property/core/bodySerializer.gen.js +58 -0
- package/dist/property/core/bodySerializer.gen.js.map +1 -0
- package/dist/property/core/params.gen.d.ts +44 -0
- package/dist/property/core/params.gen.d.ts.map +1 -0
- package/dist/property/core/params.gen.js +102 -0
- package/dist/property/core/params.gen.js.map +1 -0
- package/dist/property/core/pathSerializer.gen.d.ts +34 -0
- package/dist/property/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/property/core/pathSerializer.gen.js +119 -0
- package/dist/property/core/pathSerializer.gen.js.map +1 -0
- package/dist/property/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/property/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/property/core/queryKeySerializer.gen.js +100 -0
- package/dist/property/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/property/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/property/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/property/core/serverSentEvents.gen.js +140 -0
- package/dist/property/core/serverSentEvents.gen.js.map +1 -0
- package/dist/property/core/types.gen.d.ts +79 -0
- package/dist/property/core/types.gen.d.ts.map +1 -0
- package/dist/property/core/types.gen.js +3 -0
- package/dist/property/core/types.gen.js.map +1 -0
- package/dist/property/core/utils.gen.d.ts +20 -0
- package/dist/property/core/utils.gen.d.ts.map +1 -0
- package/dist/property/core/utils.gen.js +89 -0
- package/dist/property/core/utils.gen.js.map +1 -0
- package/dist/property/index.d.ts +3 -0
- package/dist/property/index.d.ts.map +1 -0
- package/dist/property/index.js +3 -0
- package/dist/property/index.js.map +1 -0
- package/dist/property/schemas.gen.d.ts +1008 -0
- package/dist/property/schemas.gen.d.ts.map +1 -0
- package/dist/property/schemas.gen.js +1136 -0
- package/dist/property/schemas.gen.js.map +1 -0
- package/dist/property/sdk.gen.d.ts +53 -0
- package/dist/property/sdk.gen.d.ts.map +1 -0
- package/dist/property/sdk.gen.js +263 -0
- package/dist/property/sdk.gen.js.map +1 -0
- package/dist/property/transformers.gen.d.ts +4 -0
- package/dist/property/transformers.gen.d.ts.map +1 -0
- package/dist/property/transformers.gen.js +24 -0
- package/dist/property/transformers.gen.js.map +1 -0
- package/dist/property/types.gen.d.ts +832 -0
- package/dist/property/types.gen.d.ts.map +1 -0
- package/dist/property/types.gen.js +3 -0
- package/dist/property/types.gen.js.map +1 -0
- package/dist/property/zod.gen.d.ts +2055 -0
- package/dist/property/zod.gen.d.ts.map +1 -0
- package/dist/property/zod.gen.js +1041 -0
- package/dist/property/zod.gen.js.map +1 -0
- package/dist/rem/zod.gen.d.ts +15 -15
- package/package.json +4 -8
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
import { serializeArrayParam, serializeObjectParam, serializePrimitiveParam, } from './pathSerializer.gen';
|
|
3
|
+
export const PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
4
|
+
export const defaultPathSerializer = ({ path, url: _url }) => {
|
|
5
|
+
let url = _url;
|
|
6
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
7
|
+
if (matches) {
|
|
8
|
+
for (const match of matches) {
|
|
9
|
+
let explode = false;
|
|
10
|
+
let name = match.substring(1, match.length - 1);
|
|
11
|
+
let style = 'simple';
|
|
12
|
+
if (name.endsWith('*')) {
|
|
13
|
+
explode = true;
|
|
14
|
+
name = name.substring(0, name.length - 1);
|
|
15
|
+
}
|
|
16
|
+
if (name.startsWith('.')) {
|
|
17
|
+
name = name.substring(1);
|
|
18
|
+
style = 'label';
|
|
19
|
+
}
|
|
20
|
+
else if (name.startsWith(';')) {
|
|
21
|
+
name = name.substring(1);
|
|
22
|
+
style = 'matrix';
|
|
23
|
+
}
|
|
24
|
+
const value = path[name];
|
|
25
|
+
if (value === undefined || value === null) {
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
if (Array.isArray(value)) {
|
|
29
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
32
|
+
if (typeof value === 'object') {
|
|
33
|
+
url = url.replace(match, serializeObjectParam({
|
|
34
|
+
explode,
|
|
35
|
+
name,
|
|
36
|
+
style,
|
|
37
|
+
value: value,
|
|
38
|
+
valueOnly: true,
|
|
39
|
+
}));
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
if (style === 'matrix') {
|
|
43
|
+
url = url.replace(match, `;${serializePrimitiveParam({
|
|
44
|
+
name,
|
|
45
|
+
value: value,
|
|
46
|
+
})}`);
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const replaceValue = encodeURIComponent(style === 'label' ? `.${value}` : value);
|
|
50
|
+
url = url.replace(match, replaceValue);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return url;
|
|
54
|
+
};
|
|
55
|
+
export const getUrl = ({ baseUrl, path, query, querySerializer, url: _url, }) => {
|
|
56
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
57
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
58
|
+
if (path) {
|
|
59
|
+
url = defaultPathSerializer({ path, url });
|
|
60
|
+
}
|
|
61
|
+
let search = query ? querySerializer(query) : '';
|
|
62
|
+
if (search.startsWith('?')) {
|
|
63
|
+
search = search.substring(1);
|
|
64
|
+
}
|
|
65
|
+
if (search) {
|
|
66
|
+
url += `?${search}`;
|
|
67
|
+
}
|
|
68
|
+
return url;
|
|
69
|
+
};
|
|
70
|
+
export function getValidRequestBody(options) {
|
|
71
|
+
const hasBody = options.body !== undefined;
|
|
72
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
73
|
+
if (isSerializedBody) {
|
|
74
|
+
if ('serializedBody' in options) {
|
|
75
|
+
const hasSerializedBody = options.serializedBody !== undefined &&
|
|
76
|
+
options.serializedBody !== '';
|
|
77
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
78
|
+
}
|
|
79
|
+
// not all clients implement a serializedBody property (i.e. client-axios)
|
|
80
|
+
return options.body !== '' ? options.body : null;
|
|
81
|
+
}
|
|
82
|
+
// plain/text body
|
|
83
|
+
if (hasBody) {
|
|
84
|
+
return options.body;
|
|
85
|
+
}
|
|
86
|
+
// no body was provided
|
|
87
|
+
return undefined;
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=utils.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.gen.js","sourceRoot":"","sources":["../../../api/property/core/utils.gen.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { amenityControllerGetAllAmenities, amenityControllerGetAmenitiesByGroup, amenityControllerGetAmenitiesByGroupAndSpace, amenityControllerValidateAmenities, galleryControllerAddPhotosToSpaceFromGallery, galleryControllerAssignPhotosToSpacesSmart, galleryControllerDeletePropertyPhoto, galleryControllerGeneratePresignedUrls, galleryControllerNotifyPhotoUploadCompletion, galleryControllerReorderPropertyPhotos, galleryQueryControllerGetAllPropertyPhotos, galleryQueryControllerGetUnassignedPhotos, listingControllerCreate, listingControllerExpire, listingControllerPause, listingControllerPublish, listingControllerUpdatePrice, listingQueryControllerDetail, listingQueryControllerSearch, type Options, propertyEditorControllerUpdateAddress, propertyEditorControllerUpdateAmenities1, propertyEditorControllerUpdateDescription1, propertyEditorControllerUpdateMeasurements, propertyEditorControllerUpdateTitle, propertyQueryControllerGetCardViews, propertyQueryControllerGetEditorView, propertyRegistrationControllerRegister, quotaControllerGetCurrentQuota, quotaControllerIncreaseLimit, spaceControllerAddSpace, spaceControllerRemove, spaceControllerUpdateAmenities, spaceControllerUpdateArea, spaceControllerUpdateDescription, spaceQueryControllerGetSpace, spaceQueryControllerGetSpaceGallery, spaceQueryControllerGetSpaces, } from './sdk.gen';
|
|
2
|
+
export type { AddressRef, AddressRefRequest, AddressResponse, AmenitiesRequest, AmenityCatalogDto, AmenityValidationRequest, AmenityValidationResponse, AmenityViewResponse, AreaRequest, CategoryEnum, ClientOptions, Coordinates, CoordinatesRequest, CreateListingRequest, DeletePropertyByPropertyIdGalleryPhotoData, DeletePropertyByPropertyIdGalleryPhotoResponse, DeletePropertyByPropertyIdGalleryPhotoResponses, DeletePropertyByPropertyIdSpaceBySpaceIdData, DeletePropertyByPropertyIdSpaceBySpaceIdResponse, DeletePropertyByPropertyIdSpaceBySpaceIdResponses, GetAmenityByGroupAndSpaceData, GetAmenityByGroupAndSpaceResponse, GetAmenityByGroupAndSpaceResponses, GetAmenityByGroupData, GetAmenityByGroupResponse, GetAmenityByGroupResponses, GetAmenityData, GetAmenityResponse, GetAmenityResponses, GetListingByIdData, GetListingByIdResponse, GetListingByIdResponses, GetListingSearchData, GetListingSearchResponse, GetListingSearchResponses, GetPhotoByPropertyIdData, GetPhotoByPropertyIdResponse, GetPhotoByPropertyIdResponses, GetPhotoByPropertyIdUnassignedData, GetPhotoByPropertyIdUnassignedResponse, GetPhotoByPropertyIdUnassignedResponses, GetPropertyByIdEditorViewData, GetPropertyByIdEditorViewResponse, GetPropertyByIdEditorViewResponses, GetPropertyByPropertyIdSpaceBySpaceIdData, GetPropertyByPropertyIdSpaceBySpaceIdResponse, GetPropertyByPropertyIdSpaceBySpaceIdResponses, GetPropertyByPropertyIdSpaceData, GetPropertyByPropertyIdSpaceEditorData, GetPropertyByPropertyIdSpaceEditorResponse, GetPropertyByPropertyIdSpaceEditorResponses, GetPropertyByPropertyIdSpaceResponse, GetPropertyByPropertyIdSpaceResponses, GetPropertyData, GetPropertyResponse, GetPropertyResponses, GetQuotaData, GetQuotaResponse, GetQuotaResponses, GroupedAmenity, HomespotAmenities, IdResponseUuid, LangTextResponse, LanguageEnum, ListedByResponse, ListingCardResponse, ListingDetailResponse, ListingSearchResponse, MeasurementRequest, MeasurementResponse, MultiLangTextRequest, PhotoIdsRequest, PhotoInternalRequest, PhotoRequest, PhotoResponse, PhotosRequest, PostAmenityValidateData, PostAmenityValidateResponse, PostAmenityValidateResponses, PostInternalPropertyData, PostInternalPropertyResponses, PostListingByIdExpireData, PostListingByIdExpireResponse, PostListingByIdExpireResponses, PostListingByIdPauseData, PostListingByIdPauseResponse, PostListingByIdPauseResponses, PostListingByIdPublishData, PostListingByIdPublishResponse, PostListingByIdPublishResponses, PostListingData, PostListingResponse, PostListingResponses, PostPropertyByPropertyIdGalleryPresignedUrlsNotifyData, PostPropertyByPropertyIdGalleryPresignedUrlsNotifyResponse, PostPropertyByPropertyIdGalleryPresignedUrlsNotifyResponses, PostPropertyByPropertyIdSpaceData, PostPropertyByPropertyIdSpaceResponses, PostQuotaData, PostQuotaResponses, PresignedUrlResponse, PresignedUrlsResponse, PriceRequest, PropertyCardViewResponse, PropertyCreationRequest, PropertyEditorViewResponse, PropertySpaceViewResponse, PutListingByIdPriceData, PutListingByIdPriceResponse, PutListingByIdPriceResponses, PutPropertyByIdAddressData, PutPropertyByIdAddressResponse, PutPropertyByIdAddressResponses, PutPropertyByIdAmenitiesData, PutPropertyByIdAmenitiesResponse, PutPropertyByIdAmenitiesResponses, PutPropertyByIdDescriptionData, PutPropertyByIdDescriptionResponse, PutPropertyByIdDescriptionResponses, PutPropertyByIdMeasurementsData, PutPropertyByIdMeasurementsResponse, PutPropertyByIdMeasurementsResponses, PutPropertyByIdTitleData, PutPropertyByIdTitleResponse, PutPropertyByIdTitleResponses, PutPropertyByPropertyIdGalleryAssignPhotosToSpacesSmartData, PutPropertyByPropertyIdGalleryAssignPhotosToSpacesSmartResponse, PutPropertyByPropertyIdGalleryAssignPhotosToSpacesSmartResponses, PutPropertyByPropertyIdGalleryPresignedUrlsData, PutPropertyByPropertyIdGalleryPresignedUrlsResponse, PutPropertyByPropertyIdGalleryPresignedUrlsResponses, PutPropertyByPropertyIdGalleryReorderData, PutPropertyByPropertyIdGalleryReorderResponse, PutPropertyByPropertyIdGalleryReorderResponses, PutPropertyByPropertyIdGallerySpaceBySpaceIdData, PutPropertyByPropertyIdGallerySpaceBySpaceIdResponse, PutPropertyByPropertyIdGallerySpaceBySpaceIdResponses, PutPropertyByPropertyIdSpaceBySpaceIdAmenitiesData, PutPropertyByPropertyIdSpaceBySpaceIdAmenitiesResponse, PutPropertyByPropertyIdSpaceBySpaceIdAmenitiesResponses, PutPropertyByPropertyIdSpaceBySpaceIdAreaData, PutPropertyByPropertyIdSpaceBySpaceIdAreaResponse, PutPropertyByPropertyIdSpaceBySpaceIdAreaResponses, PutPropertyByPropertyIdSpaceBySpaceIdDescriptionData, PutPropertyByPropertyIdSpaceBySpaceIdDescriptionResponse, PutPropertyByPropertyIdSpaceBySpaceIdDescriptionResponses, SchemaEnum, SchemaEnum2, SchemaEnum3, SchemaEnum4, SpaceEditorViewResponse, SpaceRequest, SpacesEditorViewResponse, SpacesRequest, SpaceViewResponse, StatusEnum, TextRequest, TitleRequest, TypeEnum, TypeEnum2, UploadAcknowledgmentResponse, UserPropertyQuotaResponse, } from './types.gen';
|
|
3
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../api/property/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
export { amenityControllerGetAllAmenities, amenityControllerGetAmenitiesByGroup, amenityControllerGetAmenitiesByGroupAndSpace, amenityControllerValidateAmenities, galleryControllerAddPhotosToSpaceFromGallery, galleryControllerAssignPhotosToSpacesSmart, galleryControllerDeletePropertyPhoto, galleryControllerGeneratePresignedUrls, galleryControllerNotifyPhotoUploadCompletion, galleryControllerReorderPropertyPhotos, galleryQueryControllerGetAllPropertyPhotos, galleryQueryControllerGetUnassignedPhotos, listingControllerCreate, listingControllerExpire, listingControllerPause, listingControllerPublish, listingControllerUpdatePrice, listingQueryControllerDetail, listingQueryControllerSearch, propertyEditorControllerUpdateAddress, propertyEditorControllerUpdateAmenities1, propertyEditorControllerUpdateDescription1, propertyEditorControllerUpdateMeasurements, propertyEditorControllerUpdateTitle, propertyQueryControllerGetCardViews, propertyQueryControllerGetEditorView, propertyRegistrationControllerRegister, quotaControllerGetCurrentQuota, quotaControllerIncreaseLimit, spaceControllerAddSpace, spaceControllerRemove, spaceControllerUpdateAmenities, spaceControllerUpdateArea, spaceControllerUpdateDescription, spaceQueryControllerGetSpace, spaceQueryControllerGetSpaceGallery, spaceQueryControllerGetSpaces, } from './sdk.gen';
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../api/property/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAErD,OAAO,EACH,gCAAgC,EAChC,oCAAoC,EACpC,4CAA4C,EAC5C,kCAAkC,EAClC,4CAA4C,EAC5C,0CAA0C,EAC1C,oCAAoC,EACpC,sCAAsC,EACtC,4CAA4C,EAC5C,sCAAsC,EACtC,0CAA0C,EAC1C,yCAAyC,EACzC,uBAAuB,EACvB,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,4BAA4B,EAC5B,4BAA4B,EAC5B,4BAA4B,EAE5B,qCAAqC,EACrC,wCAAwC,EACxC,0CAA0C,EAC1C,0CAA0C,EAC1C,mCAAmC,EACnC,mCAAmC,EACnC,oCAAoC,EACpC,sCAAsC,EACtC,8BAA8B,EAC9B,4BAA4B,EAC5B,uBAAuB,EACvB,qBAAqB,EACrB,8BAA8B,EAC9B,yBAAyB,EACzB,gCAAgC,EAChC,4BAA4B,EAC5B,mCAAmC,EACnC,6BAA6B,GAChC,MAAM,WAAW,CAAC"}
|