@onereach/types-contacts-api 0.0.1

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/index.d.ts ADDED
@@ -0,0 +1,21 @@
1
+ declare module "create-contact-book.dto" {
2
+ export default class CreateContactBookDto {
3
+ label: string;
4
+ schema: object;
5
+ }
6
+ }
7
+ declare module "contact-book-response.dto" {
8
+ import CreateContactBookDto from "create-contact-book.dto";
9
+ export default class ContactBookResponseDto extends CreateContactBookDto {
10
+ id: number;
11
+ created: Date;
12
+ updated: Date;
13
+ }
14
+ }
15
+ declare module "update-contact-book.dto" {
16
+ import CreateContactBookDto from "create-contact-book.dto";
17
+ const UpdateContactBookDto_base: import("@nestjs/common").Type<Partial<CreateContactBookDto>>;
18
+ export class UpdateContactBookDto extends UpdateContactBookDto_base {
19
+ }
20
+ }
21
+ //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/modules/contact-book/dto/create-contact-book.dto.ts","../src/modules/contact-book/dto/contact-book-response.dto.ts","../src/modules/contact-book/dto/update-contact-book.dto.ts"],"names":[],"mappings":";IAKA,MAAM,CAAC,OAAO,OAAO,oBAAoB;QAIrC,KAAK,EAAE,MAAM,CAAC;QAMd,MAAM,EAAE,MAAM,CAAC;KAClB;;;ICfD,OAAO,oBAAoB,gCAA2D;IAItF,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,oBAAoB;QAGpE,EAAE,EAAE,MAAM,CAAC;QAIX,OAAO,EAAE,IAAI,CAAC;QAId,OAAO,EAAE,IAAI,CAAC;KACjB;;;ICjBD,OAAO,oBAAoB,gCAA2D;;IAKtF,MAAM,OAAO,oBAAqB,SAAQ,yBAAiC;KAAG"}
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@onereach/types-contacts-api",
3
+ "version": "0.0.1",
4
+ "author": "OneReach.ai",
5
+ "main": "",
6
+ "types": "index.d.ts",
7
+ "publishConfig": {
8
+ "access": "restricted"
9
+ }
10
+ }