@silexpert/core 1.1.222 → 1.1.224
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/cjs/api/Resource.d.ts +1 -0
- package/dist/cjs/api/Resource.d.ts.map +1 -1
- package/dist/cjs/api/Resource.js.map +1 -1
- package/dist/cjs/api/resources/BankAccount.d.ts +3 -1
- package/dist/cjs/api/resources/BankAccount.d.ts.map +1 -1
- package/dist/cjs/api/resources/BankAccount.js +6 -0
- package/dist/cjs/api/resources/BankAccount.js.map +1 -1
- package/dist/cjs/api/resources/BankStatement.d.ts +1 -0
- package/dist/cjs/api/resources/BankStatement.d.ts.map +1 -1
- package/dist/cjs/api/resources/BankStatement.js +3 -0
- package/dist/cjs/api/resources/BankStatement.js.map +1 -1
- package/dist/cjs/api/resources/Transaction.d.ts +2 -1
- package/dist/cjs/api/resources/Transaction.d.ts.map +1 -1
- package/dist/cjs/api/resources/Transaction.js +4 -1
- package/dist/cjs/api/resources/Transaction.js.map +1 -1
- package/dist/cjs/api/resources/VatControl.d.ts +1 -2
- package/dist/cjs/api/resources/VatControl.d.ts.map +1 -1
- package/dist/cjs/api/resources/VatControl.js +2 -5
- package/dist/cjs/api/resources/VatControl.js.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.js +1 -1
- package/dist/cjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/cjs/types/Interface/api/accountingEntry/Create.d.ts +16 -0
- package/dist/cjs/types/Interface/api/accountingEntry/Create.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/accountingEntry/Create.js +76 -0
- package/dist/cjs/types/Interface/api/accountingEntry/Create.js.map +1 -0
- package/dist/cjs/types/Interface/api/bankAccount/Query.d.ts +29 -0
- package/dist/cjs/types/Interface/api/bankAccount/Query.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/bankAccount/Query.js +122 -0
- package/dist/cjs/types/Interface/api/bankAccount/Query.js.map +1 -0
- package/dist/cjs/types/Interface/api/bankAccount/Read.d.ts +16 -0
- package/dist/cjs/types/Interface/api/bankAccount/Read.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/bankAccount/{ReadExpiredBankAccount.js → Read.js} +1 -1
- package/dist/cjs/types/Interface/api/bankAccount/Read.js.map +1 -0
- package/dist/cjs/types/index.d.ts +3 -3
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +3 -3
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/Resource.d.ts +1 -0
- package/dist/mjs/api/Resource.d.ts.map +1 -1
- package/dist/mjs/api/Resource.js.map +1 -1
- package/dist/mjs/api/resources/BankAccount.d.ts +3 -1
- package/dist/mjs/api/resources/BankAccount.d.ts.map +1 -1
- package/dist/mjs/api/resources/BankAccount.js +6 -0
- package/dist/mjs/api/resources/BankAccount.js.map +1 -1
- package/dist/mjs/api/resources/BankStatement.d.ts +1 -0
- package/dist/mjs/api/resources/BankStatement.d.ts.map +1 -1
- package/dist/mjs/api/resources/BankStatement.js +3 -0
- package/dist/mjs/api/resources/BankStatement.js.map +1 -1
- package/dist/mjs/api/resources/Transaction.d.ts +2 -1
- package/dist/mjs/api/resources/Transaction.d.ts.map +1 -1
- package/dist/mjs/api/resources/Transaction.js +4 -1
- package/dist/mjs/api/resources/Transaction.js.map +1 -1
- package/dist/mjs/api/resources/VatControl.d.ts +1 -2
- package/dist/mjs/api/resources/VatControl.d.ts.map +1 -1
- package/dist/mjs/api/resources/VatControl.js +2 -5
- package/dist/mjs/api/resources/VatControl.js.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.js +1 -1
- package/dist/mjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/mjs/types/Interface/api/accountingEntry/Create.d.ts +16 -0
- package/dist/mjs/types/Interface/api/accountingEntry/Create.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/accountingEntry/{CreateManualEntry.js → Create.js} +45 -2
- package/dist/mjs/types/Interface/api/accountingEntry/Create.js.map +1 -0
- package/dist/mjs/types/Interface/api/bankAccount/Query.d.ts +29 -0
- package/dist/mjs/types/Interface/api/bankAccount/Query.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/bankAccount/Query.js +135 -0
- package/dist/mjs/types/Interface/api/bankAccount/Query.js.map +1 -0
- package/dist/mjs/types/Interface/api/bankAccount/Read.d.ts +16 -0
- package/dist/mjs/types/Interface/api/bankAccount/Read.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/bankAccount/Read.js +2 -0
- package/dist/mjs/types/Interface/api/bankAccount/Read.js.map +1 -0
- package/dist/mjs/types/index.d.ts +3 -3
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +3 -3
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/Resource.ts +1 -0
- package/ts/api/resources/BankAccount.ts +9 -1
- package/ts/api/resources/BankStatement.ts +4 -0
- package/ts/api/resources/Transaction.ts +6 -2
- package/ts/api/resources/VatControl.ts +2 -6
- package/ts/types/Enum/BrandClementine.ts +1 -1
- package/ts/types/Interface/api/accountingEntry/Create.ts +52 -0
- package/ts/types/Interface/api/bankAccount/Query.ts +90 -0
- package/ts/types/Interface/api/bankAccount/Read.ts +16 -0
- package/ts/types/index.ts +3 -3
- package/dist/cjs/types/Interface/api/accountingEntry/CreateManualEntry.d.ts +0 -8
- package/dist/cjs/types/Interface/api/accountingEntry/CreateManualEntry.d.ts.map +0 -1
- package/dist/cjs/types/Interface/api/accountingEntry/CreateManualEntry.js +0 -37
- package/dist/cjs/types/Interface/api/accountingEntry/CreateManualEntry.js.map +0 -1
- package/dist/cjs/types/Interface/api/bankAccount/DeleteTransaction.d.ts +0 -14
- package/dist/cjs/types/Interface/api/bankAccount/DeleteTransaction.d.ts.map +0 -1
- package/dist/cjs/types/Interface/api/bankAccount/DeleteTransaction.js +0 -54
- package/dist/cjs/types/Interface/api/bankAccount/DeleteTransaction.js.map +0 -1
- package/dist/cjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.d.ts +0 -5
- package/dist/cjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.d.ts.map +0 -1
- package/dist/cjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.js.map +0 -1
- package/dist/mjs/types/Interface/api/accountingEntry/CreateManualEntry.d.ts +0 -8
- package/dist/mjs/types/Interface/api/accountingEntry/CreateManualEntry.d.ts.map +0 -1
- package/dist/mjs/types/Interface/api/accountingEntry/CreateManualEntry.js.map +0 -1
- package/dist/mjs/types/Interface/api/bankAccount/DeleteTransaction.d.ts +0 -14
- package/dist/mjs/types/Interface/api/bankAccount/DeleteTransaction.d.ts.map +0 -1
- package/dist/mjs/types/Interface/api/bankAccount/DeleteTransaction.js +0 -57
- package/dist/mjs/types/Interface/api/bankAccount/DeleteTransaction.js.map +0 -1
- package/dist/mjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.d.ts +0 -5
- package/dist/mjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.d.ts.map +0 -1
- package/dist/mjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.js +0 -2
- package/dist/mjs/types/Interface/api/bankAccount/ReadExpiredBankAccount.js.map +0 -1
- package/ts/types/Interface/api/accountingEntry/CreateManualEntry.ts +0 -18
- package/ts/types/Interface/api/bankAccount/DeleteTransaction.ts +0 -32
- package/ts/types/Interface/api/bankAccount/ReadExpiredBankAccount.ts +0 -5
|
@@ -441,7 +441,7 @@ export const BrandClementine = [
|
|
|
441
441
|
urlApi1: 'https://api.compta-clementine.fr',
|
|
442
442
|
urlApi2: 'https://api-next.compta-clementine.fr',
|
|
443
443
|
urlExpert: 'https://expert.compta-clementine.fr',
|
|
444
|
-
urlClient: 'https://www.
|
|
444
|
+
urlClient: 'https://www.klems.fr',
|
|
445
445
|
miniLogoUrl: 'logo-klems.svg',
|
|
446
446
|
listPhones: {
|
|
447
447
|
contact: '03 83 93 14 14',
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { IsArray, IsBoolean, IsInt, IsNumber, IsOptional, IsString } from 'class-validator';
|
|
2
|
+
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
3
|
+
import { AccountingJournal } from '../../../Enum/AccountingJournal';
|
|
4
|
+
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
5
|
+
|
|
6
|
+
export class CreateManualEntry {
|
|
7
|
+
@ApiProperty()
|
|
8
|
+
@IsNumber()
|
|
9
|
+
debit: number;
|
|
10
|
+
|
|
11
|
+
@ApiProperty()
|
|
12
|
+
@IsNumber()
|
|
13
|
+
credit: number;
|
|
14
|
+
|
|
15
|
+
@ApiProperty()
|
|
16
|
+
@IsNumber()
|
|
17
|
+
idAccount: number;
|
|
18
|
+
|
|
19
|
+
@ApiProperty()
|
|
20
|
+
@IsString()
|
|
21
|
+
designation: string;
|
|
22
|
+
|
|
23
|
+
@ApiProperty()
|
|
24
|
+
dateValue: Date;
|
|
25
|
+
|
|
26
|
+
@ApiPropertyOptional()
|
|
27
|
+
@IsNumber()
|
|
28
|
+
@IsOptional()
|
|
29
|
+
idAccountingJournal?: AccountingJournal | null;
|
|
30
|
+
|
|
31
|
+
@ApiPropertyOptional()
|
|
32
|
+
@IsNumber()
|
|
33
|
+
@IsOptional()
|
|
34
|
+
idBankAccount?: number | null;
|
|
35
|
+
|
|
36
|
+
@ApiPropertyOptional()
|
|
37
|
+
@IsBoolean()
|
|
38
|
+
@ToBoolean()
|
|
39
|
+
@IsOptional()
|
|
40
|
+
balanceIsOptionnal?: boolean;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export class DuplicateAccountingTransaction {
|
|
44
|
+
@ApiProperty()
|
|
45
|
+
@IsArray()
|
|
46
|
+
@IsInt({ each: true })
|
|
47
|
+
idAccountingTransactions : number[];
|
|
48
|
+
|
|
49
|
+
@ApiProperty()
|
|
50
|
+
@IsString()
|
|
51
|
+
dateValue: string;
|
|
52
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { IsBoolean, IsNumber, IsOptional, IsString } from 'class-validator';
|
|
2
|
+
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
3
|
+
import { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';
|
|
4
|
+
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
5
|
+
import { Nature } from '../../../Enum/Nature';
|
|
6
|
+
export class DeleteTransactions {
|
|
7
|
+
@ApiProperty()
|
|
8
|
+
idBankAccount: number;
|
|
9
|
+
|
|
10
|
+
@ApiPropertyOptional()
|
|
11
|
+
isLocked?: boolean;
|
|
12
|
+
|
|
13
|
+
@ApiPropertyOptional()
|
|
14
|
+
isExported?: boolean;
|
|
15
|
+
|
|
16
|
+
@ApiPropertyOptional()
|
|
17
|
+
startDate?: string;
|
|
18
|
+
|
|
19
|
+
@ApiPropertyOptional()
|
|
20
|
+
endDate?: string;
|
|
21
|
+
|
|
22
|
+
@ApiPropertyOptional({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' })
|
|
23
|
+
deleteBankAccount?: boolean;
|
|
24
|
+
|
|
25
|
+
@ApiPropertyOptional()
|
|
26
|
+
@IsOptional()
|
|
27
|
+
partnerTransactionTypes?: PartnerTransactionType[];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export class DeleteSocietyTransactions {
|
|
31
|
+
@ApiProperty()
|
|
32
|
+
id: number | number[];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
export type FilterByType = 'debit' | 'credit' | null;
|
|
37
|
+
|
|
38
|
+
export class QueryTransactionsForComparisonPaginated {
|
|
39
|
+
@ApiProperty()
|
|
40
|
+
@IsNumber()
|
|
41
|
+
idSociety: number;
|
|
42
|
+
|
|
43
|
+
@ApiProperty()
|
|
44
|
+
@IsString()
|
|
45
|
+
startDate: string;
|
|
46
|
+
|
|
47
|
+
@ApiProperty()
|
|
48
|
+
@IsString()
|
|
49
|
+
endDate: string;
|
|
50
|
+
|
|
51
|
+
@ApiPropertyOptional()
|
|
52
|
+
@IsNumber()
|
|
53
|
+
@IsOptional()
|
|
54
|
+
limit?: number;
|
|
55
|
+
|
|
56
|
+
@ApiPropertyOptional()
|
|
57
|
+
@IsNumber()
|
|
58
|
+
@IsOptional()
|
|
59
|
+
page?: number;
|
|
60
|
+
|
|
61
|
+
@ApiPropertyOptional()
|
|
62
|
+
@IsString()
|
|
63
|
+
@IsOptional()
|
|
64
|
+
search?: string;
|
|
65
|
+
|
|
66
|
+
@ApiPropertyOptional()
|
|
67
|
+
@IsString()
|
|
68
|
+
@IsOptional()
|
|
69
|
+
order?: string;
|
|
70
|
+
|
|
71
|
+
@ApiPropertyOptional()
|
|
72
|
+
@IsOptional()
|
|
73
|
+
@IsBoolean()
|
|
74
|
+
@ToBoolean()
|
|
75
|
+
descending?: boolean;
|
|
76
|
+
|
|
77
|
+
@ApiPropertyOptional()
|
|
78
|
+
@IsOptional()
|
|
79
|
+
filterByType?: Nature;
|
|
80
|
+
|
|
81
|
+
@ApiPropertyOptional()
|
|
82
|
+
@IsNumber()
|
|
83
|
+
@IsOptional()
|
|
84
|
+
minimumAmount?: number;
|
|
85
|
+
|
|
86
|
+
@ApiPropertyOptional()
|
|
87
|
+
@IsNumber()
|
|
88
|
+
@IsOptional()
|
|
89
|
+
maximumAmount?: number;
|
|
90
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface ReadExpiredBankAccount {
|
|
2
|
+
idBankAccount: number;
|
|
3
|
+
isExpired: boolean;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export type ReadBankAccountTransactionsIntermediateSolde = {
|
|
7
|
+
idAccountingtransaction: number;
|
|
8
|
+
debit: number | null;
|
|
9
|
+
credit: number | null;
|
|
10
|
+
dateValue: Date;
|
|
11
|
+
designation: string;
|
|
12
|
+
exported: Date | null;
|
|
13
|
+
intermediateSolde: number;
|
|
14
|
+
balanceBankAccount: number;
|
|
15
|
+
difference: number | null;
|
|
16
|
+
};
|
package/ts/types/index.ts
CHANGED
|
@@ -546,7 +546,7 @@ export * from './Interface/api/businessPartner/UpdateBusinessPartnerParams';
|
|
|
546
546
|
export * from './Interface/api/simulation/CreateSimulation';
|
|
547
547
|
export * from './Interface/api/ocr/CreateOcr';
|
|
548
548
|
export * from './Interface/api/accountingEntry/AnnotateAccountingTransaction';
|
|
549
|
-
export * from './Interface/api/accountingEntry/
|
|
549
|
+
export * from './Interface/api/accountingEntry/Create';
|
|
550
550
|
export * from './Interface/api/immobilization/ReadFormattedImmobilization';
|
|
551
551
|
export * from './Interface/api/immobilization/CreateImmobilization';
|
|
552
552
|
export * from './Interface/api/payment/QueryMonthlyPayment';
|
|
@@ -785,7 +785,7 @@ export * from './Interface/api/statistic/QueryInternal';
|
|
|
785
785
|
export * from './Interface/api/statistic/QueryGetDirection';
|
|
786
786
|
export * from './Interface/api/statistic/QueryCustomerSuccess';
|
|
787
787
|
export * from './Interface/api/pappers/CreatePappers';
|
|
788
|
-
export * from './Interface/api/bankAccount/
|
|
788
|
+
export * from './Interface/api/bankAccount/Query';
|
|
789
789
|
export * from './Interface/api/stripe/QueryStripe';
|
|
790
790
|
export * from './Interface/api/stripe/ReadStripe';
|
|
791
791
|
export * from './Interface/api/salariesFile/ReadSalariesFile';
|
|
@@ -902,7 +902,7 @@ export * from './Interface/api/kilometricAllowance/CreateKilometricAllowanceVali
|
|
|
902
902
|
export * from './Interface/api/thirdParty/CreateThirdPartyForm';
|
|
903
903
|
export * from './Interface/api/thirdParty/UpdateThirdPartyForm';
|
|
904
904
|
export * from './Interface/api/thirdParty/QueryThirdParty';
|
|
905
|
-
export * from './Interface/api/bankAccount/
|
|
905
|
+
export * from './Interface/api/bankAccount/Read';
|
|
906
906
|
export * from './Interface/api/sheetMonthSchedule/QuerySheetMonthSchedule';
|
|
907
907
|
export * from './Interface/api/calendarEvent/createCalendarEvent';
|
|
908
908
|
export * from './Interface/api/calendarEvent/createCalendarEventForUsers';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreateManualEntry.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/accountingEntry/CreateManualEntry.ts"],"names":[],"mappings":"AAEA,qBAAa,iBAAiB;IAE1B,KAAK,EAAE,MAAM,CAAC;IAGd,MAAM,EAAE,MAAM,CAAC;IAGf,SAAS,EAAE,MAAM,CAAC;IAGlB,WAAW,EAAE,MAAM,CAAC;IAGpB,SAAS,EAAE,IAAI,CAAC;CACnB"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.CreateManualEntry = void 0;
|
|
13
|
-
const utils_1 = require("../../../../utils");
|
|
14
|
-
class CreateManualEntry {
|
|
15
|
-
}
|
|
16
|
-
__decorate([
|
|
17
|
-
(0, utils_1.ApiProperty)(),
|
|
18
|
-
__metadata("design:type", Number)
|
|
19
|
-
], CreateManualEntry.prototype, "debit", void 0);
|
|
20
|
-
__decorate([
|
|
21
|
-
(0, utils_1.ApiProperty)(),
|
|
22
|
-
__metadata("design:type", Number)
|
|
23
|
-
], CreateManualEntry.prototype, "credit", void 0);
|
|
24
|
-
__decorate([
|
|
25
|
-
(0, utils_1.ApiProperty)(),
|
|
26
|
-
__metadata("design:type", Number)
|
|
27
|
-
], CreateManualEntry.prototype, "idAccount", void 0);
|
|
28
|
-
__decorate([
|
|
29
|
-
(0, utils_1.ApiProperty)(),
|
|
30
|
-
__metadata("design:type", String)
|
|
31
|
-
], CreateManualEntry.prototype, "designation", void 0);
|
|
32
|
-
__decorate([
|
|
33
|
-
(0, utils_1.ApiProperty)(),
|
|
34
|
-
__metadata("design:type", Date)
|
|
35
|
-
], CreateManualEntry.prototype, "dateValue", void 0);
|
|
36
|
-
exports.CreateManualEntry = CreateManualEntry;
|
|
37
|
-
//# sourceMappingURL=CreateManualEntry.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreateManualEntry.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/accountingEntry/CreateManualEntry.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAgD;AAEhD,MAAa,iBAAiB;CAe7B;AAdC;IAAC,IAAA,mBAAW,GAAE;;gDACE;AAEhB;IAAC,IAAA,mBAAW,GAAE;;iDACG;AAEjB;IAAC,IAAA,mBAAW,GAAE;;oDACM;AAEpB;IAAC,IAAA,mBAAW,GAAE;;sDACQ;AAEtB;IAAC,IAAA,mBAAW,GAAE;8BACD,IAAI;oDAAC;AAdpB,8CAeC","sourcesContent":["import { ApiProperty } from '../../../../utils';\n\nexport class CreateManualEntry {\n @ApiProperty()\n debit: number;\n\n @ApiProperty()\n credit: number;\n\n @ApiProperty()\n idAccount: number;\n\n @ApiProperty()\n designation: string;\n\n @ApiProperty()\n dateValue: Date;\n}\n"]}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';
|
|
2
|
-
export declare class DeleteTransactions {
|
|
3
|
-
idBankAccount: number;
|
|
4
|
-
isLocked?: boolean;
|
|
5
|
-
isExported?: boolean;
|
|
6
|
-
startDate?: string;
|
|
7
|
-
endDate?: string;
|
|
8
|
-
deleteBankAccount?: boolean;
|
|
9
|
-
partnerTransactionTypes?: PartnerTransactionType[];
|
|
10
|
-
}
|
|
11
|
-
export declare class DeleteSocietyTransactions {
|
|
12
|
-
id: number | number[];
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=DeleteTransaction.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteTransaction.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/DeleteTransaction.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAE9E,qBAAa,kBAAkB;IAE3B,aAAa,EAAE,MAAM,CAAC;IAGtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAGnB,UAAU,CAAC,EAAE,OAAO,CAAC;IAGrB,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAI5B,uBAAuB,CAAC,EAAE,sBAAsB,EAAE,CAAC;CACtD;AAED,qBAAa,yBAAyB;IAElC,EAAE,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CACzB"}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.DeleteSocietyTransactions = exports.DeleteTransactions = void 0;
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
14
|
-
const utils_1 = require("../../../../utils");
|
|
15
|
-
class DeleteTransactions {
|
|
16
|
-
}
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, utils_1.ApiProperty)(),
|
|
19
|
-
__metadata("design:type", Number)
|
|
20
|
-
], DeleteTransactions.prototype, "idBankAccount", void 0);
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, utils_1.ApiPropertyOptional)(),
|
|
23
|
-
__metadata("design:type", Boolean)
|
|
24
|
-
], DeleteTransactions.prototype, "isLocked", void 0);
|
|
25
|
-
__decorate([
|
|
26
|
-
(0, utils_1.ApiPropertyOptional)(),
|
|
27
|
-
__metadata("design:type", Boolean)
|
|
28
|
-
], DeleteTransactions.prototype, "isExported", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, utils_1.ApiPropertyOptional)(),
|
|
31
|
-
__metadata("design:type", String)
|
|
32
|
-
], DeleteTransactions.prototype, "startDate", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
(0, utils_1.ApiPropertyOptional)(),
|
|
35
|
-
__metadata("design:type", String)
|
|
36
|
-
], DeleteTransactions.prototype, "endDate", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
(0, utils_1.ApiPropertyOptional)({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' }),
|
|
39
|
-
__metadata("design:type", Boolean)
|
|
40
|
-
], DeleteTransactions.prototype, "deleteBankAccount", void 0);
|
|
41
|
-
__decorate([
|
|
42
|
-
(0, utils_1.ApiPropertyOptional)(),
|
|
43
|
-
(0, class_validator_1.IsOptional)(),
|
|
44
|
-
__metadata("design:type", Array)
|
|
45
|
-
], DeleteTransactions.prototype, "partnerTransactionTypes", void 0);
|
|
46
|
-
exports.DeleteTransactions = DeleteTransactions;
|
|
47
|
-
class DeleteSocietyTransactions {
|
|
48
|
-
}
|
|
49
|
-
__decorate([
|
|
50
|
-
(0, utils_1.ApiProperty)(),
|
|
51
|
-
__metadata("design:type", Object)
|
|
52
|
-
], DeleteSocietyTransactions.prototype, "id", void 0);
|
|
53
|
-
exports.DeleteSocietyTransactions = DeleteSocietyTransactions;
|
|
54
|
-
//# sourceMappingURL=DeleteTransaction.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteTransaction.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/DeleteTransaction.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAA6C;AAC7C,6CAAqE;AAGrE,MAAa,kBAAkB;CAsB9B;AArBC;IAAC,IAAA,mBAAW,GAAE;;yDACU;AAExB;IAAC,IAAA,2BAAmB,GAAE;;oDACD;AAErB;IAAC,IAAA,2BAAmB,GAAE;;sDACC;AAEvB;IAAC,IAAA,2BAAmB,GAAE;;qDACD;AAErB;IAAC,IAAA,2BAAmB,GAAE;;mDACH;AAEnB;IAAC,IAAA,2BAAmB,EAAC,EAAE,WAAW,EAAE,sGAAsG,EAAE,CAAC;;6DAC/G;AAE9B;IAAC,IAAA,2BAAmB,GAAE;IACrB,IAAA,4BAAU,GAAE;;mEACwC;AArBvD,gDAsBC;AAED,MAAa,yBAAyB;CAGrC;AAFC;IAAC,IAAA,mBAAW,GAAE;;qDACU;AAF1B,8DAGC","sourcesContent":["import { IsOptional } from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\nimport { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';\n\nexport class DeleteTransactions {\n @ApiProperty()\n idBankAccount: number;\n\n @ApiPropertyOptional()\n isLocked?: boolean;\n\n @ApiPropertyOptional()\n isExported?: boolean;\n\n @ApiPropertyOptional()\n startDate?: string;\n\n @ApiPropertyOptional()\n endDate?: string;\n\n @ApiPropertyOptional({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' })\n deleteBankAccount?: boolean;\n\n @ApiPropertyOptional()\n @IsOptional()\n partnerTransactionTypes?: PartnerTransactionType[];\n}\n\nexport class DeleteSocietyTransactions {\n @ApiProperty()\n id: number | number[];\n}"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReadExpiredBankAccount.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/ReadExpiredBankAccount.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAA;CAEnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReadExpiredBankAccount.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/ReadExpiredBankAccount.ts"],"names":[],"mappings":"","sourcesContent":["export interface ReadExpiredBankAccount {\n idBankAccount: number,\n isExpired: boolean\n\n}\n"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreateManualEntry.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/accountingEntry/CreateManualEntry.ts"],"names":[],"mappings":"AAEA,qBAAa,iBAAiB;IAE1B,KAAK,EAAE,MAAM,CAAC;IAGd,MAAM,EAAE,MAAM,CAAC;IAGf,SAAS,EAAE,MAAM,CAAC;IAGlB,WAAW,EAAE,MAAM,CAAC;IAGpB,SAAS,EAAE,IAAI,CAAC;CACnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreateManualEntry.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/accountingEntry/CreateManualEntry.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD,MAAM,OAAO,iBAAiB;IAE1B,KAAK,CAAS;IAGd,MAAM,CAAS;IAGf,SAAS,CAAS;IAGlB,WAAW,CAAS;IAGpB,SAAS,CAAO;CACnB;AAdC;IAAC,WAAW,EAAE;;gDACE;AAEhB;IAAC,WAAW,EAAE;;iDACG;AAEjB;IAAC,WAAW,EAAE;;oDACM;AAEpB;IAAC,WAAW,EAAE;;sDACQ;AAEtB;IAAC,WAAW,EAAE;8BACD,IAAI;oDAAC","sourcesContent":["import { ApiProperty } from '../../../../utils';\n\nexport class CreateManualEntry {\n @ApiProperty()\n debit: number;\n\n @ApiProperty()\n credit: number;\n\n @ApiProperty()\n idAccount: number;\n\n @ApiProperty()\n designation: string;\n\n @ApiProperty()\n dateValue: Date;\n}\n"]}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';
|
|
2
|
-
export declare class DeleteTransactions {
|
|
3
|
-
idBankAccount: number;
|
|
4
|
-
isLocked?: boolean;
|
|
5
|
-
isExported?: boolean;
|
|
6
|
-
startDate?: string;
|
|
7
|
-
endDate?: string;
|
|
8
|
-
deleteBankAccount?: boolean;
|
|
9
|
-
partnerTransactionTypes?: PartnerTransactionType[];
|
|
10
|
-
}
|
|
11
|
-
export declare class DeleteSocietyTransactions {
|
|
12
|
-
id: number | number[];
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=DeleteTransaction.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteTransaction.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/DeleteTransaction.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAE9E,qBAAa,kBAAkB;IAE3B,aAAa,EAAE,MAAM,CAAC;IAGtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAGnB,UAAU,CAAC,EAAE,OAAO,CAAC;IAGrB,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAI5B,uBAAuB,CAAC,EAAE,sBAAsB,EAAE,CAAC;CACtD;AAED,qBAAa,yBAAyB;IAElC,EAAE,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CACzB"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
};
|
|
7
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
-
};
|
|
10
|
-
import { IsOptional } from 'class-validator';
|
|
11
|
-
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
12
|
-
export class DeleteTransactions {
|
|
13
|
-
idBankAccount;
|
|
14
|
-
isLocked;
|
|
15
|
-
isExported;
|
|
16
|
-
startDate;
|
|
17
|
-
endDate;
|
|
18
|
-
deleteBankAccount;
|
|
19
|
-
partnerTransactionTypes;
|
|
20
|
-
}
|
|
21
|
-
__decorate([
|
|
22
|
-
ApiProperty(),
|
|
23
|
-
__metadata("design:type", Number)
|
|
24
|
-
], DeleteTransactions.prototype, "idBankAccount", void 0);
|
|
25
|
-
__decorate([
|
|
26
|
-
ApiPropertyOptional(),
|
|
27
|
-
__metadata("design:type", Boolean)
|
|
28
|
-
], DeleteTransactions.prototype, "isLocked", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
ApiPropertyOptional(),
|
|
31
|
-
__metadata("design:type", Boolean)
|
|
32
|
-
], DeleteTransactions.prototype, "isExported", void 0);
|
|
33
|
-
__decorate([
|
|
34
|
-
ApiPropertyOptional(),
|
|
35
|
-
__metadata("design:type", String)
|
|
36
|
-
], DeleteTransactions.prototype, "startDate", void 0);
|
|
37
|
-
__decorate([
|
|
38
|
-
ApiPropertyOptional(),
|
|
39
|
-
__metadata("design:type", String)
|
|
40
|
-
], DeleteTransactions.prototype, "endDate", void 0);
|
|
41
|
-
__decorate([
|
|
42
|
-
ApiPropertyOptional({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' }),
|
|
43
|
-
__metadata("design:type", Boolean)
|
|
44
|
-
], DeleteTransactions.prototype, "deleteBankAccount", void 0);
|
|
45
|
-
__decorate([
|
|
46
|
-
ApiPropertyOptional(),
|
|
47
|
-
IsOptional(),
|
|
48
|
-
__metadata("design:type", Array)
|
|
49
|
-
], DeleteTransactions.prototype, "partnerTransactionTypes", void 0);
|
|
50
|
-
export class DeleteSocietyTransactions {
|
|
51
|
-
id;
|
|
52
|
-
}
|
|
53
|
-
__decorate([
|
|
54
|
-
ApiProperty(),
|
|
55
|
-
__metadata("design:type", Object)
|
|
56
|
-
], DeleteSocietyTransactions.prototype, "id", void 0);
|
|
57
|
-
//# sourceMappingURL=DeleteTransaction.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteTransaction.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/DeleteTransaction.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAGrE,MAAM,OAAO,kBAAkB;IAE3B,aAAa,CAAS;IAGtB,QAAQ,CAAW;IAGnB,UAAU,CAAW;IAGrB,SAAS,CAAU;IAGnB,OAAO,CAAU;IAGjB,iBAAiB,CAAW;IAI5B,uBAAuB,CAA4B;CACtD;AArBC;IAAC,WAAW,EAAE;;yDACU;AAExB;IAAC,mBAAmB,EAAE;;oDACD;AAErB;IAAC,mBAAmB,EAAE;;sDACC;AAEvB;IAAC,mBAAmB,EAAE;;qDACD;AAErB;IAAC,mBAAmB,EAAE;;mDACH;AAEnB;IAAC,mBAAmB,CAAC,EAAE,WAAW,EAAE,sGAAsG,EAAE,CAAC;;6DAC/G;AAE9B;IAAC,mBAAmB,EAAE;IACrB,UAAU,EAAE;;mEACwC;AAGvD,MAAM,OAAO,yBAAyB;IAElC,EAAE,CAAoB;CACzB;AAFC;IAAC,WAAW,EAAE;;qDACU","sourcesContent":["import { IsOptional } from 'class-validator';\nimport { ApiProperty, ApiPropertyOptional } from '../../../../utils';\nimport { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';\n\nexport class DeleteTransactions {\n @ApiProperty()\n idBankAccount: number;\n\n @ApiPropertyOptional()\n isLocked?: boolean;\n\n @ApiPropertyOptional()\n isExported?: boolean;\n\n @ApiPropertyOptional()\n startDate?: string;\n\n @ApiPropertyOptional()\n endDate?: string;\n\n @ApiPropertyOptional({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' })\n deleteBankAccount?: boolean;\n\n @ApiPropertyOptional()\n @IsOptional()\n partnerTransactionTypes?: PartnerTransactionType[];\n}\n\nexport class DeleteSocietyTransactions {\n @ApiProperty()\n id: number | number[];\n}"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReadExpiredBankAccount.d.ts","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/ReadExpiredBankAccount.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAA;CAEnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReadExpiredBankAccount.js","sourceRoot":"","sources":["../../../../../../ts/types/Interface/api/bankAccount/ReadExpiredBankAccount.ts"],"names":[],"mappings":"","sourcesContent":["export interface ReadExpiredBankAccount {\n idBankAccount: number,\n isExpired: boolean\n\n}\n"]}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { ApiProperty } from '../../../../utils';
|
|
2
|
-
|
|
3
|
-
export class CreateManualEntry {
|
|
4
|
-
@ApiProperty()
|
|
5
|
-
debit: number;
|
|
6
|
-
|
|
7
|
-
@ApiProperty()
|
|
8
|
-
credit: number;
|
|
9
|
-
|
|
10
|
-
@ApiProperty()
|
|
11
|
-
idAccount: number;
|
|
12
|
-
|
|
13
|
-
@ApiProperty()
|
|
14
|
-
designation: string;
|
|
15
|
-
|
|
16
|
-
@ApiProperty()
|
|
17
|
-
dateValue: Date;
|
|
18
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { IsOptional } from 'class-validator';
|
|
2
|
-
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
3
|
-
import { PartnerTransactionType } from '../../../Enum/PartnerTransactionType';
|
|
4
|
-
|
|
5
|
-
export class DeleteTransactions {
|
|
6
|
-
@ApiProperty()
|
|
7
|
-
idBankAccount: number;
|
|
8
|
-
|
|
9
|
-
@ApiPropertyOptional()
|
|
10
|
-
isLocked?: boolean;
|
|
11
|
-
|
|
12
|
-
@ApiPropertyOptional()
|
|
13
|
-
isExported?: boolean;
|
|
14
|
-
|
|
15
|
-
@ApiPropertyOptional()
|
|
16
|
-
startDate?: string;
|
|
17
|
-
|
|
18
|
-
@ApiPropertyOptional()
|
|
19
|
-
endDate?: string;
|
|
20
|
-
|
|
21
|
-
@ApiPropertyOptional({ description: 'Deleting the bank account. Warning ! this delete also the transactions of the specified bank account' })
|
|
22
|
-
deleteBankAccount?: boolean;
|
|
23
|
-
|
|
24
|
-
@ApiPropertyOptional()
|
|
25
|
-
@IsOptional()
|
|
26
|
-
partnerTransactionTypes?: PartnerTransactionType[];
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export class DeleteSocietyTransactions {
|
|
30
|
-
@ApiProperty()
|
|
31
|
-
id: number | number[];
|
|
32
|
-
}
|