@deallony/shared 1.1.75 → 1.1.76
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/esm/constants/events/index.js +4 -4
- package/dist/esm/constants/index.js +1 -1
- package/dist/esm/dto/events/Event.dto.js +1 -1
- package/dist/esm/dto/events/index.js +3 -3
- package/dist/esm/dto/index.js +2 -2
- package/dist/esm/index.js +7 -7
- package/dist/esm/types/ad/Ad.js +4 -4
- package/dist/esm/types/ad/index.js +3 -3
- package/dist/esm/types/ad-common/index.js +6 -6
- package/dist/esm/types/attributes/index.js +4 -4
- package/dist/esm/types/common/index.js +5 -5
- package/dist/esm/types/communication/index.js +5 -5
- package/dist/esm/types/geo/index.js +3 -3
- package/dist/esm/types/index.js +56 -56
- package/dist/esm/types/integrations/index.js +1 -1
- package/dist/esm/types/media/index.js +4 -4
- package/dist/esm/types/motor/index.js +6 -6
- package/dist/esm/types/property/index.js +5 -5
- package/dist/esm/types/service/index.js +4 -4
- package/dist/esm/types/used-product/index.js +1 -1
- package/dist/esm/types/user/index.js +5 -5
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './Event
|
|
2
|
-
export * from './EventType
|
|
3
|
-
export * from './EventWedding
|
|
4
|
-
export * from './EventTemplate
|
|
1
|
+
export * from './Event';
|
|
2
|
+
export * from './EventType';
|
|
3
|
+
export * from './EventWedding';
|
|
4
|
+
export * from './EventTemplate';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * as EVENTS from './events
|
|
1
|
+
export * as EVENTS from './events';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { saveEventWeddingSchema } from './EventWedding.dto
|
|
2
|
+
import { saveEventWeddingSchema } from './EventWedding.dto';
|
|
3
3
|
export const eventBaseSchema = z.object({
|
|
4
4
|
lat: z.coerce.number().optional().nullable(),
|
|
5
5
|
long: z.coerce.number().optional().nullable(),
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './Event.dto
|
|
2
|
-
export * from './EventTimeline.dto
|
|
3
|
-
export * from './EventWedding.dto
|
|
1
|
+
export * from './Event.dto';
|
|
2
|
+
export * from './EventTimeline.dto';
|
|
3
|
+
export * from './EventWedding.dto';
|
package/dist/esm/dto/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AdDto } from './ad/Ad.dto
|
|
2
|
-
export * as EVENTS from './events
|
|
1
|
+
export { AdDto } from './ad/Ad.dto';
|
|
2
|
+
export * as EVENTS from './events';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { ClassService } from './abstract/baseService
|
|
2
|
-
export { Converter, Converter as con } from './utils/converter
|
|
3
|
-
export * as TYPES from './types/index
|
|
4
|
-
export * as EventsDto from './dto/events
|
|
5
|
-
export * as CONSTANTS from './constants/index
|
|
6
|
-
export * as DTO from './dto/index
|
|
7
|
-
export { AdDto } from './dto
|
|
1
|
+
export { ClassService } from './abstract/baseService';
|
|
2
|
+
export { Converter, Converter as con } from './utils/converter';
|
|
3
|
+
export * as TYPES from './types/index';
|
|
4
|
+
export * as EventsDto from './dto/events';
|
|
5
|
+
export * as CONSTANTS from './constants/index';
|
|
6
|
+
export * as DTO from './dto/index';
|
|
7
|
+
export { AdDto } from './dto';
|
package/dist/esm/types/ad/Ad.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { emptyMotor } from "../motor/Motor
|
|
2
|
-
import { emptyProperty } from "../property/Property
|
|
3
|
-
import { emptyService } from "../service/Service
|
|
4
|
-
import { emptyUsedProduct } from "../used-product/UsedProduct
|
|
1
|
+
import { emptyMotor } from "../motor/Motor";
|
|
2
|
+
import { emptyProperty } from "../property/Property";
|
|
3
|
+
import { emptyService } from "../service/Service";
|
|
4
|
+
import { emptyUsedProduct } from "../used-product/UsedProduct";
|
|
5
5
|
export const emptyAd = {
|
|
6
6
|
id: 0,
|
|
7
7
|
user_id: 0,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./Ad
|
|
2
|
-
export * from "./AdLocation
|
|
3
|
-
export * from "./AdPromotion
|
|
1
|
+
export * from "./Ad";
|
|
2
|
+
export * from "./AdLocation";
|
|
3
|
+
export * from "./AdPromotion";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// ==========================================================================================
|
|
2
2
|
// these types are shared between different ad types, so they are placed in a common folder
|
|
3
3
|
// ==========================================================================================
|
|
4
|
-
export * from "./Feature
|
|
5
|
-
export * from "./OfferType
|
|
6
|
-
export * from "./PriceType
|
|
7
|
-
export * from "./PublisherType
|
|
8
|
-
export * from "./UsedProductAge
|
|
9
|
-
export * from "./UsedProductCondition
|
|
4
|
+
export * from "./Feature";
|
|
5
|
+
export * from "./OfferType";
|
|
6
|
+
export * from "./PriceType";
|
|
7
|
+
export * from "./PublisherType";
|
|
8
|
+
export * from "./UsedProductAge";
|
|
9
|
+
export * from "./UsedProductCondition";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Category
|
|
2
|
-
export * from "./CategoryWorkType
|
|
3
|
-
export * from "./Color
|
|
4
|
-
export * from "./Currency
|
|
1
|
+
export * from "./Category";
|
|
2
|
+
export * from "./CategoryWorkType";
|
|
3
|
+
export * from "./Color";
|
|
4
|
+
export * from "./Currency";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./LocalizedName
|
|
2
|
-
export * from "./Response
|
|
3
|
-
export * from "./Subject
|
|
4
|
-
export * from "./Status
|
|
5
|
-
export * from "./Config
|
|
1
|
+
export * from "./LocalizedName";
|
|
2
|
+
export * from "./Response";
|
|
3
|
+
export * from "./Subject";
|
|
4
|
+
export * from "./Status";
|
|
5
|
+
export * from "./Config";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./AppStartScreen
|
|
2
|
-
export * from "./Chat
|
|
3
|
-
export * from "./Device
|
|
4
|
-
export * from "./MessageTemplate
|
|
5
|
-
export * from "./NotificationToken
|
|
1
|
+
export * from "./AppStartScreen";
|
|
2
|
+
export * from "./Chat";
|
|
3
|
+
export * from "./Device";
|
|
4
|
+
export * from "./MessageTemplate";
|
|
5
|
+
export * from "./NotificationToken";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./AdminBoundary
|
|
2
|
-
export * from "./City
|
|
3
|
-
export * from "./District
|
|
1
|
+
export * from "./AdminBoundary";
|
|
2
|
+
export * from "./City";
|
|
3
|
+
export * from "./District";
|
package/dist/esm/types/index.js
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
// common
|
|
2
|
-
export * as LocalizedName from "./common/LocalizedName
|
|
3
|
-
export * as Response from "./common/Response
|
|
4
|
-
export * as Subject from "./common/Subject
|
|
5
|
-
export * as Status from "./common/Status
|
|
6
|
-
export * as AccessType from "./service/AccessType
|
|
7
|
-
export * as Config from "./common/Config
|
|
8
|
-
export * as FilterParams from "./common/FilterParams
|
|
2
|
+
export * as LocalizedName from "./common/LocalizedName";
|
|
3
|
+
export * as Response from "./common/Response";
|
|
4
|
+
export * as Subject from "./common/Subject";
|
|
5
|
+
export * as Status from "./common/Status";
|
|
6
|
+
export * as AccessType from "./service/AccessType";
|
|
7
|
+
export * as Config from "./common/Config";
|
|
8
|
+
export * as FilterParams from "./common/FilterParams";
|
|
9
9
|
// listings
|
|
10
|
-
export * as Ad from "./ad/Ad
|
|
11
|
-
export * as AdLocation from "./ad/AdLocation
|
|
12
|
-
export * as AdPromotion from "./ad/AdPromotion
|
|
13
|
-
export * as Motor from "./motor/Motor
|
|
14
|
-
export * as MotorTrim from "./motor/MotorTrim
|
|
15
|
-
export * as Property from "./property/Property
|
|
16
|
-
export * as PropertySubType from "./property/PropertySubType
|
|
17
|
-
export * as Service from "./service/Service
|
|
18
|
-
export * as UsedProduct from "./used-product/UsedProduct
|
|
10
|
+
export * as Ad from "./ad/Ad";
|
|
11
|
+
export * as AdLocation from "./ad/AdLocation";
|
|
12
|
+
export * as AdPromotion from "./ad/AdPromotion";
|
|
13
|
+
export * as Motor from "./motor/Motor";
|
|
14
|
+
export * as MotorTrim from "./motor/MotorTrim";
|
|
15
|
+
export * as Property from "./property/Property";
|
|
16
|
+
export * as PropertySubType from "./property/PropertySubType";
|
|
17
|
+
export * as Service from "./service/Service";
|
|
18
|
+
export * as UsedProduct from "./used-product/UsedProduct";
|
|
19
19
|
// attributes
|
|
20
|
-
export * as CarBody from "./motor/CarBody
|
|
21
|
-
export * as Category from "./attributes/Category
|
|
22
|
-
export * as CategoryWorkType from "./attributes/CategoryWorkType
|
|
23
|
-
export * as Color from "./attributes/Color
|
|
24
|
-
export * as Currency from "./attributes/Currency
|
|
25
|
-
export * as Facility from "./property/Facility
|
|
26
|
-
export * as Feature from "./ad-common/Feature
|
|
27
|
-
export * as FuelType from "./motor/FuelType
|
|
28
|
-
export * as LicenseType from "./property/LicenseType
|
|
29
|
-
export * as OfferType from "./ad-common/OfferType
|
|
30
|
-
export * as PriceType from "./ad-common/PriceType
|
|
31
|
-
export * as PropertyStatus from "./property/PropertyStatus
|
|
32
|
-
export * as PublisherType from "./ad-common/PublisherType
|
|
33
|
-
export * as RegionalSpec from "./motor/RegionalSpec
|
|
34
|
-
export * as Transmission from "./motor/Transmission
|
|
35
|
-
export * as Unit from "./service/Unit
|
|
36
|
-
export * as UsedProductAge from "./ad-common/UsedProductAge
|
|
37
|
-
export * as UsedProductCondition from "./ad-common/UsedProductCondition
|
|
38
|
-
export * as WorkType from "./service/WorkType
|
|
20
|
+
export * as CarBody from "./motor/CarBody";
|
|
21
|
+
export * as Category from "./attributes/Category";
|
|
22
|
+
export * as CategoryWorkType from "./attributes/CategoryWorkType";
|
|
23
|
+
export * as Color from "./attributes/Color";
|
|
24
|
+
export * as Currency from "./attributes/Currency";
|
|
25
|
+
export * as Facility from "./property/Facility";
|
|
26
|
+
export * as Feature from "./ad-common/Feature";
|
|
27
|
+
export * as FuelType from "./motor/FuelType";
|
|
28
|
+
export * as LicenseType from "./property/LicenseType";
|
|
29
|
+
export * as OfferType from "./ad-common/OfferType";
|
|
30
|
+
export * as PriceType from "./ad-common/PriceType";
|
|
31
|
+
export * as PropertyStatus from "./property/PropertyStatus";
|
|
32
|
+
export * as PublisherType from "./ad-common/PublisherType";
|
|
33
|
+
export * as RegionalSpec from "./motor/RegionalSpec";
|
|
34
|
+
export * as Transmission from "./motor/Transmission";
|
|
35
|
+
export * as Unit from "./service/Unit";
|
|
36
|
+
export * as UsedProductAge from "./ad-common/UsedProductAge";
|
|
37
|
+
export * as UsedProductCondition from "./ad-common/UsedProductCondition";
|
|
38
|
+
export * as WorkType from "./service/WorkType";
|
|
39
39
|
// geo
|
|
40
|
-
export * as AdminBoundary from "./geo/AdminBoundary
|
|
41
|
-
export * as City from "./geo/City
|
|
42
|
-
export * as District from "./geo/District
|
|
40
|
+
export * as AdminBoundary from "./geo/AdminBoundary";
|
|
41
|
+
export * as City from "./geo/City";
|
|
42
|
+
export * as District from "./geo/District";
|
|
43
43
|
// events
|
|
44
|
-
export * as Event from "../dto/events/Event.dto
|
|
45
|
-
export * as EventWedding from "../dto/events/EventWedding.dto
|
|
44
|
+
export * as Event from "../dto/events/Event.dto";
|
|
45
|
+
export * as EventWedding from "../dto/events/EventWedding.dto";
|
|
46
46
|
// user
|
|
47
|
-
export * as User from "./user/User
|
|
48
|
-
export * as Role from "./user/Role
|
|
49
|
-
export * as Permission from "./user/Permission
|
|
50
|
-
export * as Wallet from "./user/Wallet
|
|
51
|
-
export * as PotentialUser from "./user/PotentialUser
|
|
47
|
+
export * as User from "./user/User";
|
|
48
|
+
export * as Role from "./user/Role";
|
|
49
|
+
export * as Permission from "./user/Permission";
|
|
50
|
+
export * as Wallet from "./user/Wallet";
|
|
51
|
+
export * as PotentialUser from "./user/PotentialUser";
|
|
52
52
|
// communication
|
|
53
|
-
export * as AppStartScreen from "./communication/AppStartScreen
|
|
54
|
-
export * as Chat from "./communication/Chat
|
|
55
|
-
export * as Device from "./communication/Device
|
|
56
|
-
export * as MessageTemplate from "./communication/MessageTemplate
|
|
57
|
-
export * as NotificationToken from "./communication/NotificationToken
|
|
53
|
+
export * as AppStartScreen from "./communication/AppStartScreen";
|
|
54
|
+
export * as Chat from "./communication/Chat";
|
|
55
|
+
export * as Device from "./communication/Device";
|
|
56
|
+
export * as MessageTemplate from "./communication/MessageTemplate";
|
|
57
|
+
export * as NotificationToken from "./communication/NotificationToken";
|
|
58
58
|
// media
|
|
59
|
-
export * as Media from "./media/Media
|
|
60
|
-
export * as Image from "./media/Image
|
|
61
|
-
export * as SocialMediaPlatform from "./media/SocialMediaPlatform
|
|
62
|
-
export * as SocialMediaProfile from "./media/SocialMediaProfile
|
|
59
|
+
export * as Media from "./media/Media";
|
|
60
|
+
export * as Image from "./media/Image";
|
|
61
|
+
export * as SocialMediaPlatform from "./media/SocialMediaPlatform";
|
|
62
|
+
export * as SocialMediaProfile from "./media/SocialMediaProfile";
|
|
63
63
|
// integrations
|
|
64
|
-
export * as Google from "./integrations/Google
|
|
64
|
+
export * as Google from "./integrations/Google";
|
|
65
65
|
// analysis
|
|
66
|
-
export * as Analysis from "./analysis/AnalysisDailySnapshot
|
|
66
|
+
export * as Analysis from "./analysis/AnalysisDailySnapshot";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./Google
|
|
1
|
+
export * from "./Google";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Media
|
|
2
|
-
export * from "./Image
|
|
3
|
-
export * from "./SocialMediaPlatform
|
|
4
|
-
export * from "./SocialMediaProfile
|
|
1
|
+
export * from "./Media";
|
|
2
|
+
export * from "./Image";
|
|
3
|
+
export * from "./SocialMediaPlatform";
|
|
4
|
+
export * from "./SocialMediaProfile";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./CarBody
|
|
2
|
-
export * from "./FuelType
|
|
3
|
-
export * from "./Motor
|
|
4
|
-
export * from "./MotorTrim
|
|
5
|
-
export * from "./RegionalSpec
|
|
6
|
-
export * from "./Transmission
|
|
1
|
+
export * from "./CarBody";
|
|
2
|
+
export * from "./FuelType";
|
|
3
|
+
export * from "./Motor";
|
|
4
|
+
export * from "./MotorTrim";
|
|
5
|
+
export * from "./RegionalSpec";
|
|
6
|
+
export * from "./Transmission";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Facility
|
|
2
|
-
export * from "./LicenseType
|
|
3
|
-
export * from "./Property
|
|
4
|
-
export * from "./PropertyStatus
|
|
5
|
-
export * from "./PropertySubType
|
|
1
|
+
export * from "./Facility";
|
|
2
|
+
export * from "./LicenseType";
|
|
3
|
+
export * from "./Property";
|
|
4
|
+
export * from "./PropertyStatus";
|
|
5
|
+
export * from "./PropertySubType";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./AccessType
|
|
2
|
-
export * from "./Service
|
|
3
|
-
export * from "./Unit
|
|
4
|
-
export * from "./WorkType
|
|
1
|
+
export * from "./AccessType";
|
|
2
|
+
export * from "./Service";
|
|
3
|
+
export * from "./Unit";
|
|
4
|
+
export * from "./WorkType";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./UsedProduct
|
|
1
|
+
export * from "./UsedProduct";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./User
|
|
2
|
-
export * from "./Role
|
|
3
|
-
export * from "./Permission
|
|
4
|
-
export * from "./Wallet
|
|
5
|
-
export * from "./PotentialUser
|
|
1
|
+
export * from "./User";
|
|
2
|
+
export * from "./Role";
|
|
3
|
+
export * from "./Permission";
|
|
4
|
+
export * from "./Wallet";
|
|
5
|
+
export * from "./PotentialUser";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deallony/shared",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.76",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dashboard:update": "cd ../frontend-react-aloo && node ./scripts/upgrade-dellony.js",
|
|
28
28
|
"current": "npm view @deallony/shared version",
|
|
29
29
|
"========": "============ DEFAULT ============",
|
|
30
|
-
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json
|
|
30
|
+
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
|
|
31
31
|
"watch": "tsc -p tsconfig.cjs.json --watch",
|
|
32
32
|
"deploy:publish": "npm publish --access public"
|
|
33
33
|
},
|