@silexpert/core 1.3.80-2 → 1.3.80-3
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/BalanceSheetReport.d.ts +2 -2
- package/dist/cjs/api/resources/BalanceSheetReport.js.map +1 -1
- package/dist/cjs/types/Enum/PrestationType.js +8 -8
- package/dist/cjs/types/Enum/PrestationType.js.map +1 -1
- package/dist/mjs/api/resources/BalanceSheetReport.d.ts +2 -2
- package/dist/mjs/api/resources/BalanceSheetReport.js.map +1 -1
- package/dist/mjs/types/Enum/PrestationType.js +8 -8
- package/dist/mjs/types/Enum/PrestationType.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/BalanceSheetReport.ts +2 -2
- package/ts/types/Enum/PrestationType.ts +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silexpert/core",
|
|
3
|
-
"version": "1.3.80-
|
|
3
|
+
"version": "1.3.80-3",
|
|
4
4
|
"description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
|
|
5
5
|
"homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { BasePaginate,
|
|
1
|
+
import { BasePaginate, IAttestation, QueryBalanceSheetReportPaginated } from '../../types';
|
|
2
2
|
import { Resource } from '../Resource';
|
|
3
3
|
|
|
4
4
|
export class BalanceSheetReport extends Resource {
|
|
5
5
|
public getPaginated(
|
|
6
6
|
params: QueryBalanceSheetReportPaginated,
|
|
7
7
|
signal?: AbortSignal,
|
|
8
|
-
): Promise<BasePaginate<
|
|
8
|
+
): Promise<BasePaginate<IAttestation>> {
|
|
9
9
|
return this.axios.$get('balance-sheet/report/paginated', {
|
|
10
10
|
...(signal ? { signal } : {}),
|
|
11
11
|
params,
|
|
@@ -1739,7 +1739,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
1739
1739
|
},
|
|
1740
1740
|
ATTESTATION_SALAIRE: {
|
|
1741
1741
|
id: 82,
|
|
1742
|
-
name: '
|
|
1742
|
+
name: 'Rapportde salaire',
|
|
1743
1743
|
isComptable: false,
|
|
1744
1744
|
isJuridique: false,
|
|
1745
1745
|
isSocial: true,
|
|
@@ -1967,7 +1967,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
1967
1967
|
},
|
|
1968
1968
|
ATTESTATION_REMUNERATION: {
|
|
1969
1969
|
id: 95,
|
|
1970
|
-
name: '
|
|
1970
|
+
name: 'Rapportde rémunération',
|
|
1971
1971
|
isComptable: true,
|
|
1972
1972
|
isJuridique: false,
|
|
1973
1973
|
isSocial: false,
|
|
@@ -1987,7 +1987,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
1987
1987
|
// FIXME: Doublon ?
|
|
1988
1988
|
ATTESTATION_NON_REMUNERATION: {
|
|
1989
1989
|
id: 96,
|
|
1990
|
-
name: '
|
|
1990
|
+
name: 'Rapportde non-rémunération',
|
|
1991
1991
|
isComptable: true,
|
|
1992
1992
|
isJuridique: false,
|
|
1993
1993
|
isSocial: false,
|
|
@@ -2006,7 +2006,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
2006
2006
|
},
|
|
2007
2007
|
ATTESTATION_CA: {
|
|
2008
2008
|
id: 97,
|
|
2009
|
-
name: "
|
|
2009
|
+
name: "Rapportde chiffre d'affaires",
|
|
2010
2010
|
isComptable: true,
|
|
2011
2011
|
isJuridique: false,
|
|
2012
2012
|
isSocial: false,
|
|
@@ -2025,7 +2025,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
2025
2025
|
},
|
|
2026
2026
|
ATTESTATION_COMPTE_COURANT: {
|
|
2027
2027
|
id: 98,
|
|
2028
|
-
name: '
|
|
2028
|
+
name: 'Rapportde compte-courant',
|
|
2029
2029
|
isComptable: true,
|
|
2030
2030
|
isJuridique: false,
|
|
2031
2031
|
isSocial: false,
|
|
@@ -2310,7 +2310,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
2310
2310
|
},
|
|
2311
2311
|
ATTESTATION_DE_SALAIRE_MALADIE: {
|
|
2312
2312
|
id: 116,
|
|
2313
|
-
name: '
|
|
2313
|
+
name: 'Rapportde salaire maladie',
|
|
2314
2314
|
isComptable: true,
|
|
2315
2315
|
isJuridique: false,
|
|
2316
2316
|
isSocial: false,
|
|
@@ -2538,7 +2538,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
2538
2538
|
},
|
|
2539
2539
|
ATTESTATION_MASSE_SALARIALE: {
|
|
2540
2540
|
id: 128,
|
|
2541
|
-
name: '
|
|
2541
|
+
name: 'Rapportde masse salariale',
|
|
2542
2542
|
isComptable: true,
|
|
2543
2543
|
isJuridique: false,
|
|
2544
2544
|
isSocial: false,
|
|
@@ -3184,7 +3184,7 @@ export const PrestationDetail: PrestationDetailEnum = {
|
|
|
3184
3184
|
},
|
|
3185
3185
|
ATTESTATION_NON_REMUNERATION_RECURRENTE: {
|
|
3186
3186
|
id: 200,
|
|
3187
|
-
name: '
|
|
3187
|
+
name: 'Rapportnon remunération recurrente',
|
|
3188
3188
|
isComptable: true,
|
|
3189
3189
|
isJuridique: false,
|
|
3190
3190
|
isSocial: false,
|