@royalinvest/dto 0.4.1 → 0.5.2

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/country.d.ts CHANGED
@@ -1,5 +1,7 @@
1
+ import { IState } from "./state";
1
2
  export interface ICountry {
2
3
  id?: string;
3
4
  name: string;
4
5
  abbrev: string;
6
+ states: IState[];
5
7
  }
package/dist/index.d.ts CHANGED
@@ -17,3 +17,4 @@ export * from "./expense";
17
17
  export * from "./sort";
18
18
  export * from "./key-value";
19
19
  export * from "./category";
20
+ export * from "./template-variant";
package/dist/index.js CHANGED
@@ -33,3 +33,4 @@ __exportStar(require("./expense"), exports);
33
33
  __exportStar(require("./sort"), exports);
34
34
  __exportStar(require("./key-value"), exports);
35
35
  __exportStar(require("./category"), exports);
36
+ __exportStar(require("./template-variant"), exports);
@@ -0,0 +1,6 @@
1
+ export interface ITemplateVariant {
2
+ id?: string;
3
+ name: string;
4
+ language: string;
5
+ file_name: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,6 +2,4 @@ export interface ITemplate {
2
2
  id?: string;
3
3
  name: string;
4
4
  description: string;
5
- file_name: string;
6
- state_id: string;
7
5
  }
package/package.json CHANGED
@@ -1,32 +1,32 @@
1
- {
2
- "name": "@royalinvest/dto",
3
- "version": "0.4.1",
4
- "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
- "main": "./src/index.ts",
6
- "types": "./dist/index.d.ts",
7
- "module": "./dist/index.js",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js"
12
- }
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git@ssh.dev.azure.com:v3/royalinvest/royalinvest/royalinvestserver"
17
- },
18
- "files": [
19
- "./dist"
20
- ],
21
- "publishConfig": {
22
- "access": "public"
23
- },
24
- "scripts": {
25
- "build": "npx tsc",
26
- "clean": "rm -rf ./dist",
27
- "test": "echo \"Error: no test specified\" && exit 1"
28
- },
29
- "author": "Samos Technologies Inc.",
30
- "license": "ISC",
31
- "dependencies": {}
32
- }
1
+ {
2
+ "name": "@royalinvest/dto",
3
+ "version": "0.5.2",
4
+ "description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
5
+ "main": "./src/index.ts",
6
+ "types": "./dist/index.d.ts",
7
+ "module": "./dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git@ssh.dev.azure.com:v3/royalinvest/royalinvest/royalinvestserver"
17
+ },
18
+ "files": [
19
+ "./dist"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "scripts": {
25
+ "build": "npx tsc",
26
+ "clean": "rm -rf ./dist",
27
+ "test": "echo \"Error: no test specified\" && exit 1"
28
+ },
29
+ "author": "Samos Technologies Inc.",
30
+ "license": "ISC",
31
+ "dependencies": {}
32
+ }
package/readMe.md CHANGED
@@ -1 +1 @@
1
- # This is Royal Invest DTO package to share data between frontend and backend processes.
1
+ # This is Royal Invest DTO package to share data between frontend and backend processes.