@royalinvest/dto 0.8.2 → 0.9.0

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/auth.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IUser } from "./user";
1
+ import { IUser } from './user';
2
2
  export type IAuth = {
3
3
  accessToken: string;
4
4
  user: IUser;
@@ -0,0 +1,4 @@
1
+ export interface ICheckout {
2
+ quantity: number;
3
+ language: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/country.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IState } from "./state";
1
+ import { IState } from './state';
2
2
  export interface ICountry {
3
3
  id?: string;
4
4
  name: string;
package/dist/expense.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { IProperty } from "./property";
2
- import { ICategory } from "./category";
1
+ import { IProperty } from './property';
2
+ import { ICategory } from './category';
3
3
  export interface IExpense {
4
4
  id?: string;
5
5
  name: string;
package/dist/index.d.ts CHANGED
@@ -21,3 +21,4 @@ export * from "./template-variant";
21
21
  export * from "./messageNotification";
22
22
  export * from "./messageGenerate";
23
23
  export * from "./file";
24
+ export * from "./checkout";
package/dist/index.js CHANGED
@@ -37,3 +37,4 @@ __exportStar(require("./template-variant"), exports);
37
37
  __exportStar(require("./messageNotification"), exports);
38
38
  __exportStar(require("./messageGenerate"), exports);
39
39
  __exportStar(require("./file"), exports);
40
+ __exportStar(require("./checkout"), exports);
package/dist/lease.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { LeaseStatusEnum } from "./enum";
2
- import { Sections } from "./quebec-lease-dwelling";
1
+ import { LeaseStatusEnum } from './enum';
2
+ import { Sections } from './quebec-lease-dwelling';
3
3
  export interface ILease {
4
4
  id: string;
5
5
  details: Sections;
@@ -1,4 +1,4 @@
1
- import { Sections } from "./quebec-lease-dwelling";
1
+ import { Sections } from './quebec-lease-dwelling';
2
2
  export type ContractType = Sections;
3
3
  export interface IMessageGenerate {
4
4
  contract_id: string;
@@ -1,12 +1,12 @@
1
- import { sectionA } from "./sectionA";
2
- import { sectionB } from "./sectionB";
3
- import { sectionC } from "./sectionC";
4
- import { sectionD } from "./sectionD";
5
- import { sectionE } from "./sectionE";
6
- import { sectionF } from "./sectionF";
7
- import { sectionG } from "./sectionG";
8
- import { sectionH } from "./sectionH";
9
- import { sectionI } from "./sectionI";
1
+ import { sectionA } from './sectionA';
2
+ import { sectionB } from './sectionB';
3
+ import { sectionC } from './sectionC';
4
+ import { sectionD } from './sectionD';
5
+ import { sectionE } from './sectionE';
6
+ import { sectionF } from './sectionF';
7
+ import { sectionG } from './sectionG';
8
+ import { sectionH } from './sectionH';
9
+ import { sectionI } from './sectionI';
10
10
  export interface Sections {
11
11
  sectionA: sectionA;
12
12
  sectionB: sectionB;
@@ -1,5 +1,5 @@
1
- import { PartyTypeEnum } from "../enum";
2
- import { IAddress } from "../address";
1
+ import { PartyTypeEnum } from '../enum';
2
+ import { IAddress } from '../address';
3
3
  export interface sectionA {
4
4
  lessor: fields[];
5
5
  lessee: fields[];
@@ -1,4 +1,4 @@
1
- import { IAddress } from "../address";
1
+ import { IAddress } from '../address';
2
2
  export interface sectionB extends IAddress {
3
3
  id?: string;
4
4
  number_of_rooms: string;
package/dist/sort.d.ts CHANGED
@@ -1 +1 @@
1
- export type SortType = "asc" | "desc";
1
+ export type SortType = 'asc' | 'desc';
package/dist/state.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ICountry } from "./country";
1
+ import { ICountry } from './country';
2
2
  export interface IState {
3
3
  id?: string;
4
4
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@royalinvest/dto",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./dist/index.d.ts",