@escapenavigator/types 1.10.19 → 1.10.23
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/admin/admin.ro.d.ts +1 -1
- package/dist/admin/current-admin.ro.d.ts +1 -1
- package/dist/agb/agb.ro.d.ts +1 -1
- package/dist/agregator/dto/agregator-questrooms-search.dto.d.ts +1 -1
- package/dist/agregator/map/query-locations-for-map.dto.d.ts +1 -1
- package/dist/agregator/map/query-questroms-by-ids.dto.d.ts +1 -1
- package/dist/article/article.ro.d.ts +1 -1
- package/dist/bookeo/bookeo-info.ro.d.ts +1 -1
- package/dist/bookeo/bookeo-order.ro.d.ts +1 -1
- package/dist/bookeo/bookeo-weekly-slot.ro.d.ts +1 -1
- package/dist/cashbox/cashbox.ro.d.ts +1 -0
- package/dist/cashbox/cashbox.ro.js +4 -0
- package/dist/certificate-sale/promocode/certificate-promocode.ro.d.ts +1 -1
- package/dist/certificate-uploaded/certificate-uploaded.ro.d.ts +1 -1
- package/dist/city/city.ro.d.ts +1 -1
- package/dist/commission/commission.ro.d.ts +1 -1
- package/dist/constants/uploading/types.d.ts +3 -3
- package/dist/dashboard/announcement.ro.d.ts +1 -1
- package/dist/dashboard/dashboard-task.ro.d.ts +1 -1
- package/dist/emails/index.d.ts +9 -9
- package/dist/financeitem/enum/financeitem-type.enum.d.ts +2 -1
- package/dist/financeitem/enum/financeitem-type.enum.js +1 -0
- package/dist/financeitem/financeitem.ro.d.ts +1 -1
- package/dist/image/image.ro.d.ts +1 -1
- package/dist/location/nearest-location.ro.d.ts +1 -1
- package/dist/log/log.ro.d.ts +1 -1
- package/dist/openapi/shared/openapi-order-slot.ro.d.ts +1 -1
- package/dist/openapi/slots/openapi-widget-slot.ro.d.ts +1 -1
- package/dist/order/update-moderator.ro.d.ts +1 -1
- package/dist/order-promocode/order-promocode.ro.d.ts +1 -1
- package/dist/partner/partner.ro.d.ts +1 -1
- package/dist/profile/agb/profile-agb.ro.d.ts +1 -1
- package/dist/profile/agregator-profile.ro.d.ts +1 -1
- package/dist/profile/invoice.ro.d.ts +1 -1
- package/dist/profile/invoices-list.ro.d.ts +1 -1
- package/dist/profile/profile-crm/profile-crm.ro.d.ts +1 -1
- package/dist/profile/profile-for-verification.ro.d.ts +1 -1
- package/dist/profile/subscription-prices.ro.d.ts +1 -1
- package/dist/questroom/agregator-questroom.ro.d.ts +1 -1
- package/dist/questroom/questroom-by-title.ro.d.ts +1 -1
- package/dist/questroom/questroom-meta.ro.d.ts +10 -0
- package/dist/questroom/questroom-meta.ro.js +40 -0
- package/dist/registration-request/registration-request.ro.d.ts +1 -1
- package/dist/review/social-review.ro.d.ts +1 -0
- package/dist/review/social-review.ro.js +4 -0
- package/dist/search/search.ro.d.ts +1 -1
- package/dist/shared/default-values-required.d.ts +1 -1
- package/dist/shared/import-data.dto.d.ts +1 -1
- package/dist/shared/query.ro.d.ts +1 -1
- package/dist/shared/ro.d.ts +3 -3
- package/dist/shared/success.ro.d.ts +1 -1
- package/dist/slot/slot.ro.d.ts +1 -1
- package/dist/statistics/general.d.ts +1 -1
- package/dist/statistics/monthly-general-statisctics.ro.d.ts +1 -1
- package/dist/statistics/revenue.d.ts +3 -1
- package/dist/subscription/subscription.ro.d.ts +1 -1
- package/dist/support/support.ro.d.ts +1 -1
- package/dist/transaction/create-transaction.dto.d.ts +3 -0
- package/dist/transaction/create-transaction.dto.js +12 -0
- package/dist/translation/missing-transaction.ro.d.ts +1 -1
- package/dist/translation/namespace.ro.d.ts +1 -1
- package/dist/translation/translation.ro.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/upload/upload-image.ro.d.ts +1 -1
- package/dist/user/reports/user-monthly-report.ro.d.ts +1 -1
- package/dist/user-message/user-message.ro.d.ts +1 -1
- package/dist/widget/instruction-token.ro.d.ts +1 -1
- package/dist/widget/widget.ro.d.ts +1 -1
- package/package.json +2 -2
package/dist/admin/admin.ro.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { Languages } from '../shared/enum/languages.enum';
|
|
3
3
|
import { ResponseObject } from '../shared/ro';
|
|
4
|
-
export
|
|
4
|
+
export type AdminRO = ResponseObject & {
|
|
5
5
|
email: string;
|
|
6
6
|
name: string;
|
|
7
7
|
phone: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AdminRO } from './admin.ro';
|
|
2
|
-
export
|
|
2
|
+
export type CurrentAdminRO = AdminRO;
|
package/dist/agb/agb.ro.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { ResponseObject } from '../shared/ro';
|
|
3
3
|
import { AgbTypeEnum } from './agb-type.enum';
|
|
4
|
-
export
|
|
4
|
+
export type AgbRO = ResponseObject & {
|
|
5
5
|
text: string;
|
|
6
6
|
type: AgbTypeEnum;
|
|
7
7
|
country?: CountriesEnum;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CountriesEnum } from '../../shared/enum/countries.enum';
|
|
2
2
|
import { Languages } from '../../shared/enum/languages.enum';
|
|
3
3
|
import { TagsEnum, TechTagsEnum } from '../../shared/enum/tags.enum';
|
|
4
|
-
export
|
|
4
|
+
export type AgregatorQuestroomsSearchDTO = {
|
|
5
5
|
limit: number;
|
|
6
6
|
skip?: number;
|
|
7
7
|
country: CountriesEnum;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QuestroomTypeEnum } from '../../questroom/enum/questroom-type.enum';
|
|
2
2
|
import { TagsEnum, TechTagsEnum } from '../../shared/enum/tags.enum';
|
|
3
|
-
export
|
|
3
|
+
export type QueryLocationsForMapDTO = {
|
|
4
4
|
center: string;
|
|
5
5
|
type?: QuestroomTypeEnum;
|
|
6
6
|
questroomTags?: TagsEnum[];
|
|
@@ -44,4 +44,8 @@ __decorate([
|
|
|
44
44
|
(0, class_transformer_1.Expose)(),
|
|
45
45
|
__metadata("design:type", String)
|
|
46
46
|
], CashboxRO.prototype, "increaseType", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
__metadata("design:type", Number)
|
|
50
|
+
], CashboxRO.prototype, "total", void 0);
|
|
47
51
|
exports.CashboxRO = CashboxRO;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ResponseObject } from '../../shared/ro';
|
|
2
2
|
import { CertificateSaleRO } from '../certificate-sale.ro';
|
|
3
|
-
export
|
|
3
|
+
export type CertificatePromocodeRO = ResponseObject & {
|
|
4
4
|
amount: number;
|
|
5
5
|
code: string;
|
|
6
6
|
promocodeId: number;
|
package/dist/city/city.ro.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ResponseObject } from '../shared/ro';
|
|
2
2
|
import { CommissionTypeEnum } from './emun/commission.enum';
|
|
3
|
-
export
|
|
3
|
+
export type CommissionRO = ResponseObject & {
|
|
4
4
|
title: string;
|
|
5
5
|
amount: number;
|
|
6
6
|
type: CommissionTypeEnum;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type UploadFileFormat<T extends string> = Record<T, {
|
|
2
2
|
row: string;
|
|
3
3
|
value?: unknown;
|
|
4
4
|
required: boolean;
|
|
5
5
|
serialize?: (val: unknown) => unknown;
|
|
6
6
|
}>;
|
|
7
|
-
export
|
|
8
|
-
export
|
|
7
|
+
export type UploadCertificateRows = 'source' | 'code' | 'client' | 'nominal' | 'expireDate' | 'createdDate' | 'used';
|
|
8
|
+
export type UploadOrderRows = 'source' | 'name' | 'surname' | 'phone' | 'email' | 'date' | 'players' | 'total' | 'payed';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ResponseObject } from '../shared/ro';
|
|
2
2
|
import { DashboardTaskStatusEnum } from './enum/dashboard-task-status.enum';
|
|
3
|
-
export
|
|
3
|
+
export type DashboardTaskRO = ResponseObject & {
|
|
4
4
|
text: string;
|
|
5
5
|
userId: number;
|
|
6
6
|
assignedTo: number;
|
package/dist/emails/index.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import { EmailSenderEnum } from './enum/email.senders';
|
|
2
|
-
|
|
2
|
+
type Paragraph = {
|
|
3
3
|
type: 'paragraph';
|
|
4
4
|
title?: string;
|
|
5
5
|
text: string;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
type Bitton = {
|
|
8
8
|
type: 'button';
|
|
9
9
|
text: string;
|
|
10
10
|
link: string;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
type Divider = {
|
|
13
13
|
type: 'divider';
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
type Reply = {
|
|
16
16
|
type: 'reply';
|
|
17
17
|
text: string;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
type Image = {
|
|
20
20
|
type: 'image';
|
|
21
21
|
image: string;
|
|
22
22
|
};
|
|
23
|
-
|
|
23
|
+
type List = {
|
|
24
24
|
type: 'list';
|
|
25
25
|
title?: string;
|
|
26
26
|
rows: Array<[string, string]>;
|
|
27
27
|
};
|
|
28
|
-
|
|
28
|
+
type Code = {
|
|
29
29
|
type: 'code';
|
|
30
30
|
code: string;
|
|
31
31
|
};
|
|
32
|
-
|
|
32
|
+
type Context = {
|
|
33
33
|
title: string;
|
|
34
34
|
subtitle?: string;
|
|
35
35
|
questroomEmail?: string;
|
|
@@ -39,7 +39,7 @@ declare type Context = {
|
|
|
39
39
|
logo?: string;
|
|
40
40
|
sections: Array<Divider | Bitton | Paragraph | List | Reply | Image | Code>;
|
|
41
41
|
};
|
|
42
|
-
export
|
|
42
|
+
export type SendEmailRequestParams = {
|
|
43
43
|
from: EmailSenderEnum;
|
|
44
44
|
to: string;
|
|
45
45
|
subject: string;
|
|
@@ -5,4 +5,5 @@ var FinanceitemTypeEnum;
|
|
|
5
5
|
(function (FinanceitemTypeEnum) {
|
|
6
6
|
FinanceitemTypeEnum["INCOME"] = "income";
|
|
7
7
|
FinanceitemTypeEnum["EXPENSE"] = "expense";
|
|
8
|
+
FinanceitemTypeEnum["MOVE"] = "move";
|
|
8
9
|
})(FinanceitemTypeEnum = exports.FinanceitemTypeEnum || (exports.FinanceitemTypeEnum = {}));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ResponseObject } from '../shared/ro';
|
|
2
2
|
import { FinanceitemGroupEnum } from './enum/financeitem-group.enum';
|
|
3
3
|
import { FinanceitemTypeEnum } from './enum/financeitem-type.enum';
|
|
4
|
-
export
|
|
4
|
+
export type FinanceitemResponseObject = ResponseObject & {
|
|
5
5
|
title: string;
|
|
6
6
|
comment?: string;
|
|
7
7
|
type: FinanceitemTypeEnum;
|
package/dist/image/image.ro.d.ts
CHANGED
package/dist/log/log.ro.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ResponseObject } from '../shared/ro';
|
|
2
2
|
import { LogTitleEnum } from './log-title.enum';
|
|
3
3
|
import { LogTypeEnum } from './log-type.enum';
|
|
4
|
-
export
|
|
4
|
+
export type LogRO = ResponseObject & {
|
|
5
5
|
title: LogTitleEnum;
|
|
6
6
|
type: LogTypeEnum[];
|
|
7
7
|
userId?: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QuestroomCancelationTypeEnum } from '../../questroom/enum/questroom-cancelation-type.enum';
|
|
2
|
-
export
|
|
2
|
+
export type SlotType = 'bookeo' | 'crm';
|
|
3
3
|
export declare class OpenapiOrderSlotRO {
|
|
4
4
|
id: number;
|
|
5
5
|
cancelationRule: QuestroomCancelationTypeEnum;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OpenapiBokingRuleRO } from '../shared/openapi-booking-rule.ro';
|
|
2
2
|
import { OpenapiTariffRO } from '../shared/openapi-tariff.ro';
|
|
3
|
-
export
|
|
3
|
+
export type SlotType = 'bookeo' | 'crm';
|
|
4
4
|
export declare class OpenapiSlotRO {
|
|
5
5
|
type: SlotType;
|
|
6
6
|
questroomId: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Languages } from '../shared/enum/languages.enum';
|
|
2
2
|
import { ResponseObject } from '../shared/ro';
|
|
3
3
|
import { ProfileCurrencyEnum } from './enum/profile-currency';
|
|
4
|
-
export
|
|
4
|
+
export type AgregatorProfileRO = ResponseObject & {
|
|
5
5
|
title: string;
|
|
6
6
|
legalTitle: string;
|
|
7
7
|
inn: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Languages } from '../shared/enum/languages.enum';
|
|
2
2
|
import { TagsEnum } from '../shared/enum/tags.enum';
|
|
3
3
|
import { ResponseObject } from '../shared/ro';
|
|
4
|
-
export
|
|
4
|
+
export type AgregatorQuestroomResponseObject = ResponseObject & {
|
|
5
5
|
title: string;
|
|
6
6
|
video?: string;
|
|
7
7
|
photo: string;
|
|
@@ -5,6 +5,8 @@ declare class Review {
|
|
|
5
5
|
export declare class Meta {
|
|
6
6
|
reviews: Review[];
|
|
7
7
|
mk: string;
|
|
8
|
+
nowEscapeReview: any;
|
|
9
|
+
mortyReview: any;
|
|
8
10
|
morty: string;
|
|
9
11
|
nowEscape: string;
|
|
10
12
|
}
|
|
@@ -12,6 +14,14 @@ declare class AI {
|
|
|
12
14
|
aiReview: string;
|
|
13
15
|
aiRating: number;
|
|
14
16
|
aiSummary: string;
|
|
17
|
+
keyFindings: string;
|
|
18
|
+
negatives: string;
|
|
19
|
+
safety: string;
|
|
20
|
+
fear: string;
|
|
21
|
+
actors: string;
|
|
22
|
+
setting: string;
|
|
23
|
+
plot: string;
|
|
24
|
+
venue: string;
|
|
15
25
|
}
|
|
16
26
|
export declare class QuestroomMetaRO {
|
|
17
27
|
meta: Meta;
|
|
@@ -33,6 +33,14 @@ __decorate([
|
|
|
33
33
|
(0, class_transformer_1.Expose)(),
|
|
34
34
|
__metadata("design:type", String)
|
|
35
35
|
], Meta.prototype, "mk", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
__metadata("design:type", Object)
|
|
39
|
+
], Meta.prototype, "nowEscapeReview", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Object)
|
|
43
|
+
], Meta.prototype, "mortyReview", void 0);
|
|
36
44
|
__decorate([
|
|
37
45
|
(0, class_transformer_1.Expose)(),
|
|
38
46
|
__metadata("design:type", String)
|
|
@@ -56,6 +64,38 @@ __decorate([
|
|
|
56
64
|
(0, class_transformer_1.Expose)(),
|
|
57
65
|
__metadata("design:type", String)
|
|
58
66
|
], AI.prototype, "aiSummary", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, class_transformer_1.Expose)(),
|
|
69
|
+
__metadata("design:type", String)
|
|
70
|
+
], AI.prototype, "keyFindings", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, class_transformer_1.Expose)(),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], AI.prototype, "negatives", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, class_transformer_1.Expose)(),
|
|
77
|
+
__metadata("design:type", String)
|
|
78
|
+
], AI.prototype, "safety", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, class_transformer_1.Expose)(),
|
|
81
|
+
__metadata("design:type", String)
|
|
82
|
+
], AI.prototype, "fear", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, class_transformer_1.Expose)(),
|
|
85
|
+
__metadata("design:type", String)
|
|
86
|
+
], AI.prototype, "actors", void 0);
|
|
87
|
+
__decorate([
|
|
88
|
+
(0, class_transformer_1.Expose)(),
|
|
89
|
+
__metadata("design:type", String)
|
|
90
|
+
], AI.prototype, "setting", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_transformer_1.Expose)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], AI.prototype, "plot", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, class_transformer_1.Expose)(),
|
|
97
|
+
__metadata("design:type", String)
|
|
98
|
+
], AI.prototype, "venue", void 0);
|
|
59
99
|
class QuestroomMetaRO {
|
|
60
100
|
}
|
|
61
101
|
__decorate([
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CountriesEnum } from '../shared/enum/countries.enum';
|
|
2
2
|
import { RegistrationRequestStatusEnum } from './enum/registration-request-status';
|
|
3
|
-
export
|
|
3
|
+
export type RegistrationRequestResponseObject = {
|
|
4
4
|
email: string;
|
|
5
5
|
phone: string;
|
|
6
6
|
site: string;
|
|
@@ -38,6 +38,10 @@ __decorate([
|
|
|
38
38
|
(0, class_transformer_1.Expose)(),
|
|
39
39
|
__metadata("design:type", String)
|
|
40
40
|
], SocialReviewRO.prototype, "response", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], SocialReviewRO.prototype, "nickname", void 0);
|
|
41
45
|
__decorate([
|
|
42
46
|
(0, class_transformer_1.Expose)(),
|
|
43
47
|
__metadata("design:type", Boolean)
|
|
@@ -3,7 +3,7 @@ import { CertificateUploadedRO } from '../certificate-uploaded/certificate-uploa
|
|
|
3
3
|
import { ClientRO } from '../client/client.ro';
|
|
4
4
|
import { OrderRO } from '../order/order.ro';
|
|
5
5
|
import { PromocodeRO } from '../promocode/promocode.ro';
|
|
6
|
-
export
|
|
6
|
+
export type SearchRO = {
|
|
7
7
|
clients: ClientRO[];
|
|
8
8
|
orders: OrderRO[];
|
|
9
9
|
certificates: CertificateSaleRO[];
|
package/dist/shared/ro.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type ResponseObject = {
|
|
2
2
|
id: number;
|
|
3
3
|
profileId?: number;
|
|
4
4
|
createdAt: Date;
|
|
5
5
|
updatedAt?: Date;
|
|
6
6
|
deletedAt?: Date;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type ModelResponseObject = {
|
|
9
9
|
id: number;
|
|
10
10
|
profileId?: number;
|
|
11
11
|
createdAt: Date;
|
|
12
12
|
updatedAt?: Date;
|
|
13
13
|
};
|
|
14
|
-
export
|
|
14
|
+
export type ModelWithDelitionResponseObject = {
|
|
15
15
|
deletedAt?: Date;
|
|
16
16
|
};
|
package/dist/slot/slot.ro.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { QuestroomCancelationTypeEnum } from '../questroom/enum/questroom-cancelation-type.enum';
|
|
2
2
|
import { PrepaymentTypeEnum } from './enum/prepayment-type.enum';
|
|
3
|
-
export
|
|
3
|
+
export type SlotRO = {
|
|
4
4
|
id: number;
|
|
5
5
|
questroomId: number;
|
|
6
6
|
onlyPhone: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FinanceitemTypeEnum } from '../financeitem/enum/financeitem-type.enum';
|
|
2
|
-
export
|
|
2
|
+
export type RevenueStatiscticsRO = {
|
|
3
3
|
financeItems: Array<{
|
|
4
4
|
name: string;
|
|
5
5
|
type: FinanceitemTypeEnum;
|
|
@@ -8,7 +8,9 @@ export declare type RevenueStatiscticsRO = {
|
|
|
8
8
|
cashboxesStructure: Array<{
|
|
9
9
|
name: string;
|
|
10
10
|
income: number;
|
|
11
|
+
movedIn: number;
|
|
11
12
|
expence: number;
|
|
13
|
+
movedOut: number;
|
|
12
14
|
}>;
|
|
13
15
|
revenue: Array<{
|
|
14
16
|
name: string;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { FinanceitemTypeEnum } from '../financeitem/enum/financeitem-type.enum';
|
|
1
2
|
export declare class CreateTransactionDto {
|
|
2
3
|
financeitemId: number;
|
|
4
|
+
financeitemType: FinanceitemTypeEnum;
|
|
3
5
|
partnerId: number;
|
|
4
6
|
userId: number;
|
|
5
7
|
employeeId: number;
|
|
6
8
|
cashboxId: number;
|
|
9
|
+
toCashboxId: number;
|
|
7
10
|
amount: number;
|
|
8
11
|
comment?: string;
|
|
9
12
|
paymentPeriod?: string;
|