@silexpert/core 1.1.350 → 1.1.352
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/resources/Account.d.ts +2 -2
- package/dist/cjs/api/resources/Account.d.ts.map +1 -1
- package/dist/cjs/api/resources/Account.js +2 -2
- package/dist/cjs/api/resources/Account.js.map +1 -1
- package/dist/cjs/api/resources/Facturation.d.ts +2 -3
- package/dist/cjs/api/resources/Facturation.d.ts.map +1 -1
- package/dist/cjs/api/resources/Facturation.js +1 -6
- package/dist/cjs/api/resources/Facturation.js.map +1 -1
- package/dist/cjs/types/Enum/MailAuto.d.ts +2 -1
- package/dist/cjs/types/Enum/MailAuto.d.ts.map +1 -1
- package/dist/cjs/types/Enum/MailAuto.js +1 -0
- package/dist/cjs/types/Enum/MailAuto.js.map +1 -1
- package/dist/cjs/types/Interface/api/account/Delete.d.ts +5 -0
- package/dist/cjs/types/Interface/api/account/Delete.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/account/Delete.js +32 -0
- package/dist/cjs/types/Interface/api/account/Delete.js.map +1 -0
- package/dist/cjs/types/Interface/api/facturation/ReadRecommanded.d.ts +6 -0
- package/dist/cjs/types/Interface/api/facturation/ReadRecommanded.d.ts.map +1 -0
- package/dist/cjs/types/Interface/api/facturation/ReadRecommanded.js +3 -0
- package/dist/cjs/types/Interface/api/facturation/ReadRecommanded.js.map +1 -0
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/index.d.ts.map +1 -1
- package/dist/cjs/types/index.js +2 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/mjs/api/resources/Account.d.ts +2 -2
- package/dist/mjs/api/resources/Account.d.ts.map +1 -1
- package/dist/mjs/api/resources/Account.js +2 -2
- package/dist/mjs/api/resources/Account.js.map +1 -1
- package/dist/mjs/api/resources/Facturation.d.ts +2 -3
- package/dist/mjs/api/resources/Facturation.d.ts.map +1 -1
- package/dist/mjs/api/resources/Facturation.js +1 -6
- package/dist/mjs/api/resources/Facturation.js.map +1 -1
- package/dist/mjs/types/Enum/MailAuto.d.ts +2 -1
- package/dist/mjs/types/Enum/MailAuto.d.ts.map +1 -1
- package/dist/mjs/types/Enum/MailAuto.js +1 -0
- package/dist/mjs/types/Enum/MailAuto.js.map +1 -1
- package/dist/mjs/types/Interface/api/account/Delete.d.ts +5 -0
- package/dist/mjs/types/Interface/api/account/Delete.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/account/Delete.js +30 -0
- package/dist/mjs/types/Interface/api/account/Delete.js.map +1 -0
- package/dist/mjs/types/Interface/api/facturation/ReadRecommanded.d.ts +6 -0
- package/dist/mjs/types/Interface/api/facturation/ReadRecommanded.d.ts.map +1 -0
- package/dist/mjs/types/Interface/api/facturation/ReadRecommanded.js +2 -0
- package/dist/mjs/types/Interface/api/facturation/ReadRecommanded.js.map +1 -0
- package/dist/mjs/types/index.d.ts +2 -0
- package/dist/mjs/types/index.d.ts.map +1 -1
- package/dist/mjs/types/index.js +2 -0
- package/dist/mjs/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Account.ts +3 -2
- package/ts/api/resources/Facturation.ts +3 -7
- package/ts/types/Enum/MailAuto.ts +1 -0
- package/ts/types/Interface/api/account/Delete.ts +17 -0
- package/ts/types/Interface/api/facturation/ReadRecommanded.ts +5 -0
- package/ts/types/index.ts +2 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IsBoolean, IsNumber, IsOptional } from 'class-validator';
|
|
2
|
+
import { ApiPropertyOptional } from '../../../../utils';
|
|
3
|
+
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
4
|
+
|
|
5
|
+
export class DeleteAccountSociety {
|
|
6
|
+
@ApiPropertyOptional()
|
|
7
|
+
@IsNumber()
|
|
8
|
+
@IsOptional()
|
|
9
|
+
idAccount?: number;
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@ApiPropertyOptional()
|
|
13
|
+
@IsBoolean()
|
|
14
|
+
@ToBoolean()
|
|
15
|
+
@IsOptional()
|
|
16
|
+
bypassIdParent?: boolean;
|
|
17
|
+
}
|
package/ts/types/index.ts
CHANGED
|
@@ -585,6 +585,7 @@ export * from './Interface/api/accountType/ReadAccountType';
|
|
|
585
585
|
export * from './Interface/api/account/Query';
|
|
586
586
|
export * from './Interface/api/account/Create';
|
|
587
587
|
export * from './Interface/api/account/Update';
|
|
588
|
+
export * from './Interface/api/account/Delete';
|
|
588
589
|
export * from './Interface/api/accountingTransaction/QueryTransaction';
|
|
589
590
|
export * from './Interface/api/accountingTransaction/DeleteInvoices';
|
|
590
591
|
export * from './Interface/api/accountingTransaction/GetTransactionsBetweenDates';
|
|
@@ -634,6 +635,7 @@ export * from './Interface/api/facturation/QueryPaginatedSocietyWithFacturation'
|
|
|
634
635
|
export * from './Interface/api/billingHistory/QueryPaginatedBillingHistory';
|
|
635
636
|
export * from './Interface/api/facturation/CreateRebilling';
|
|
636
637
|
export * from './Interface/api/facturation/GoToFacturation';
|
|
638
|
+
export * from './Interface/api/facturation/ReadRecommanded';
|
|
637
639
|
export * from './Interface/api/OnBoarding';
|
|
638
640
|
export * from './Interface/api/commercial/QueryGetStats';
|
|
639
641
|
export * from './Interface/api/commercial/QueryGetStatsHistory';
|