@deallony/shared 1.0.76 → 1.0.78

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.
@@ -21,4 +21,5 @@ export type MotorType = {
21
21
  price_type_id?: number;
22
22
  seats_count: number | null;
23
23
  };
24
+ export type IMotor = MotorType;
24
25
  export declare const emptyMotor: MotorType;
@@ -25,6 +25,7 @@ export type PropertyType = {
25
25
  furnished?: boolean;
26
26
  parking?: boolean;
27
27
  };
28
+ export type IProperty = PropertyType;
28
29
  export type PropertyFacilitiesType = {
29
30
  distance_in_meters: number;
30
31
  facility_id: number;
@@ -6,4 +6,5 @@ export type ServiceType = {
6
6
  work_type_id: number | null;
7
7
  locations: ServiceLocationType[];
8
8
  };
9
+ export type IService = ServiceType;
9
10
  export declare const emptyService: ServiceType;
@@ -5,4 +5,5 @@ export type UsedProductType = {
5
5
  isDeliveryAvailable: undefined;
6
6
  product_type_id: undefined;
7
7
  };
8
+ export type IProduct = UsedProductType;
8
9
  export declare const emptyUsedProduct: UsedProductType;
@@ -1,5 +1,10 @@
1
1
  export * as Ad from './AdType';
2
2
  export * as AdLocation from './AdLocationType';
3
+ export * as Motor from './MotorType';
4
+ export * as Property from './PropertyType';
5
+ export * as Service from './ServiceType';
6
+ export * as Product from './UsedProductType';
7
+ export * as SubjectTable from './SubjectType';
3
8
  export * as AdminBoundary from './AdminBoundaryType';
4
9
  export * as Media from './MediaType';
5
10
  export * from './PropertyTypeType';
@@ -1,5 +1,10 @@
1
1
  export * as Ad from './AdType';
2
2
  export * as AdLocation from './AdLocationType';
3
+ export * as Motor from './MotorType';
4
+ export * as Property from './PropertyType';
5
+ export * as Service from './ServiceType';
6
+ export * as Product from './UsedProductType';
7
+ export * as SubjectTable from './SubjectType';
3
8
  export * as AdminBoundary from './AdminBoundaryType';
4
9
  export * as Media from './MediaType';
5
10
  export * from './PropertyTypeType';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deallony/shared",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",