@silexpert/core 1.1.151 → 1.1.152
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/Facturation.d.ts +3 -1
- package/dist/cjs/api/resources/Facturation.d.ts.map +1 -1
- package/dist/cjs/api/resources/Facturation.js +8 -0
- package/dist/cjs/api/resources/Facturation.js.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.d.ts +2 -0
- package/dist/cjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandClementine.js +1 -0
- package/dist/cjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/cjs/types/Enum/BrandComptalib.d.ts +3 -0
- package/dist/cjs/types/Enum/BrandComptalib.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandComptalib.js +1 -0
- package/dist/cjs/types/Enum/BrandComptalib.js.map +1 -1
- package/dist/cjs/types/Enum/BrandLegalstart.d.ts +1 -0
- package/dist/cjs/types/Enum/BrandLegalstart.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandLegalstart.js +1 -0
- package/dist/cjs/types/Enum/BrandLegalstart.js.map +1 -1
- package/dist/cjs/types/Enum/BrandPourcentage.d.ts +92 -0
- package/dist/cjs/types/Enum/BrandPourcentage.d.ts.map +1 -1
- package/dist/cjs/types/Enum/BrandPourcentage.js +1 -0
- package/dist/cjs/types/Enum/BrandPourcentage.js.map +1 -1
- package/dist/cjs/types/Interface/api/facturation/Query.d.ts +6 -0
- package/dist/cjs/types/Interface/api/facturation/Query.d.ts.map +1 -1
- package/dist/cjs/types/Interface/api/facturation/Query.js +22 -1
- package/dist/cjs/types/Interface/api/facturation/Query.js.map +1 -1
- package/dist/mjs/api/resources/Facturation.d.ts +3 -1
- package/dist/mjs/api/resources/Facturation.d.ts.map +1 -1
- package/dist/mjs/api/resources/Facturation.js +8 -0
- package/dist/mjs/api/resources/Facturation.js.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.d.ts +2 -0
- package/dist/mjs/types/Enum/BrandClementine.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandClementine.js +1 -0
- package/dist/mjs/types/Enum/BrandClementine.js.map +1 -1
- package/dist/mjs/types/Enum/BrandComptalib.d.ts +3 -0
- package/dist/mjs/types/Enum/BrandComptalib.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandComptalib.js +1 -0
- package/dist/mjs/types/Enum/BrandComptalib.js.map +1 -1
- package/dist/mjs/types/Enum/BrandLegalstart.d.ts +1 -0
- package/dist/mjs/types/Enum/BrandLegalstart.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandLegalstart.js +1 -0
- package/dist/mjs/types/Enum/BrandLegalstart.js.map +1 -1
- package/dist/mjs/types/Enum/BrandPourcentage.d.ts +92 -0
- package/dist/mjs/types/Enum/BrandPourcentage.d.ts.map +1 -1
- package/dist/mjs/types/Enum/BrandPourcentage.js +1 -0
- package/dist/mjs/types/Enum/BrandPourcentage.js.map +1 -1
- package/dist/mjs/types/Interface/api/facturation/Query.d.ts +6 -0
- package/dist/mjs/types/Interface/api/facturation/Query.d.ts.map +1 -1
- package/dist/mjs/types/Interface/api/facturation/Query.js +26 -2
- package/dist/mjs/types/Interface/api/facturation/Query.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Facturation.ts +10 -1
- package/ts/types/Enum/BrandClementine.ts +1 -0
- package/ts/types/Enum/BrandComptalib.ts +1 -0
- package/ts/types/Enum/BrandLegalstart.ts +1 -0
- package/ts/types/Enum/BrandPourcentage.ts +1 -0
- package/ts/types/Interface/api/facturation/Query.ts +19 -2
|
@@ -323,6 +323,7 @@ export const BrandPourcentage = [
|
|
|
323
323
|
nomRaisonSociale: 'SOFRAGECO',
|
|
324
324
|
ECName: 'M. Jean-Louis BOICHÉ',
|
|
325
325
|
ECOrderCity: 'Nancy',
|
|
326
|
+
ECPosition: 'Président',
|
|
326
327
|
phone: '01 48 58 29 45',
|
|
327
328
|
postalAddress: '72 AVENUE PASTEUR',
|
|
328
329
|
rcs: '345 081 996 R.C.S. Bobigny',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
-
IsInt, IsOptional, IsString,
|
|
2
|
+
IsInt, IsNumber, IsOptional, IsString,
|
|
3
3
|
} from 'class-validator';
|
|
4
|
-
import { ApiPropertyOptional } from '../../../../utils';
|
|
4
|
+
import { ApiProperty, ApiPropertyOptional } from '../../../../utils';
|
|
5
5
|
import { OptionalQueryPaginate } from '../BasePaginate';
|
|
6
6
|
|
|
7
7
|
export class QueryPaginatedRebilling extends OptionalQueryPaginate {
|
|
@@ -15,3 +15,20 @@ export class QueryPaginatedRebilling extends OptionalQueryPaginate {
|
|
|
15
15
|
@IsInt()
|
|
16
16
|
idUser?: number;
|
|
17
17
|
}
|
|
18
|
+
|
|
19
|
+
export class CreateRecommanded {
|
|
20
|
+
@ApiProperty()
|
|
21
|
+
@IsNumber()
|
|
22
|
+
idSociety: number;
|
|
23
|
+
|
|
24
|
+
@ApiProperty()
|
|
25
|
+
@IsNumber()
|
|
26
|
+
amount: number;
|
|
27
|
+
|
|
28
|
+
@ApiProperty()
|
|
29
|
+
numberRecommand: string;
|
|
30
|
+
|
|
31
|
+
@ApiProperty()
|
|
32
|
+
dateRecommand: string;
|
|
33
|
+
|
|
34
|
+
}
|