tychat-contracts 1.0.30 → 1.0.32
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/payments/index.d.ts +1 -1
- package/dist/payments/index.d.ts.map +1 -1
- package/dist/payments/index.js +1 -1
- package/dist/payments/list-payment-response.dto.d.ts +8 -0
- package/dist/payments/list-payment-response.dto.d.ts.map +1 -0
- package/dist/payments/list-payment-response.dto.js +2 -0
- package/package.json +1 -1
- package/src/payments/index.ts +2 -2
- package/src/payments/list-payment-response.dto.ts +8 -0
- package/src/payments/payment.dto.ts +0 -15
package/dist/payments/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export * from './create-payment.dto';
|
|
|
2
2
|
export * from './update-payment.dto';
|
|
3
3
|
export * from './list-payments-query.dto';
|
|
4
4
|
export * from './payment-response.dto';
|
|
5
|
-
export * from './payment.dto';
|
|
6
5
|
export * from './payment-method.dto';
|
|
7
6
|
export * from './payment-status.dto';
|
|
7
|
+
export * from './list-payment-response.dto';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/payments/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/payments/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC"}
|
package/dist/payments/index.js
CHANGED
|
@@ -18,6 +18,6 @@ __exportStar(require("./create-payment.dto"), exports);
|
|
|
18
18
|
__exportStar(require("./update-payment.dto"), exports);
|
|
19
19
|
__exportStar(require("./list-payments-query.dto"), exports);
|
|
20
20
|
__exportStar(require("./payment-response.dto"), exports);
|
|
21
|
-
__exportStar(require("./payment.dto"), exports);
|
|
22
21
|
__exportStar(require("./payment-method.dto"), exports);
|
|
23
22
|
__exportStar(require("./payment-status.dto"), exports);
|
|
23
|
+
__exportStar(require("./list-payment-response.dto"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-payment-response.dto.d.ts","sourceRoot":"","sources":["../../src/payments/list-payment-response.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,kBAAkB,EAAE,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf"}
|
package/package.json
CHANGED
package/src/payments/index.ts
CHANGED
|
@@ -2,6 +2,6 @@ export * from './create-payment.dto';
|
|
|
2
2
|
export * from './update-payment.dto';
|
|
3
3
|
export * from './list-payments-query.dto';
|
|
4
4
|
export * from './payment-response.dto';
|
|
5
|
-
export * from './payment.dto';
|
|
6
5
|
export * from './payment-method.dto';
|
|
7
|
-
export * from './payment-status.dto';
|
|
6
|
+
export * from './payment-status.dto';
|
|
7
|
+
export * from './list-payment-response.dto';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { PaymentMethodDto } from "./payment-method.dto";
|
|
2
|
-
import { PaymentStatusDto } from "./payment-status.dto";
|
|
3
|
-
|
|
4
|
-
export interface PaymentDto {
|
|
5
|
-
id: string;
|
|
6
|
-
method: PaymentMethodDto;
|
|
7
|
-
status: PaymentStatusDto;
|
|
8
|
-
value: number;
|
|
9
|
-
dueDate: string;
|
|
10
|
-
payedAt: string | null;
|
|
11
|
-
createdAt: string;
|
|
12
|
-
updatedAt: string;
|
|
13
|
-
patientId: string;
|
|
14
|
-
appointmentId: string;
|
|
15
|
-
}
|