@silexpert/core 1.1.102 → 1.1.103
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/es/api/resources/FIle.d.ts +2 -2
- package/es/api/resources/FIle.d.ts.map +1 -1
- package/es/api/resources/FIle.js +2 -2
- package/es/api/resources/FIle.js.map +1 -1
- package/es/types/Enum/RoleDetail.js +2 -2
- package/es/types/Enum/RoleDetail.js.map +1 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts +1 -0
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.d.ts.map +1 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +7 -1
- package/es/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
- package/es/types/index.d.ts +0 -1
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +0 -1
- package/es/types/index.js.map +1 -1
- package/js/api/resources/FIle.js +1 -2
- package/js/api/resources/FIle.js.map +1 -1
- package/js/types/Enum/RoleDetail.js +2 -2
- package/js/types/Enum/RoleDetail.js.map +1 -1
- package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js +1 -0
- package/js/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.js.map +1 -1
- package/js/types/index.js +15 -25
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/FIle.ts +2 -3
- package/ts/types/Enum/RoleDetail.ts +2 -2
- package/ts/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.ts +7 -1
- package/ts/types/index.ts +0 -1
- package/es/types/Interface/api/file/Query.d.ts +0 -4
- package/es/types/Interface/api/file/Query.d.ts.map +0 -1
- package/es/types/Interface/api/file/Query.js +0 -17
- package/es/types/Interface/api/file/Query.js.map +0 -1
- package/js/types/Interface/api/file/Query.js +0 -21
- package/js/types/Interface/api/file/Query.js.map +0 -1
- package/ts/types/Interface/api/file/Query.ts +0 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnnotateAccountingTransaction.js","names":["_classValidator","require","_utils","_boolean","FormEntry","exports","UpdateAccountingTransaction","__decorate","ApiPropertyOptional","IsBoolean","ToBoolean","IsOptional","Date"],"sources":["../../../../../ts/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.ts"],"sourcesContent":["import { IsBoolean, IsOptional } from 'class-validator';\nimport { IAccountingTransaction, IImmobilization } from '../../..';\nimport { IThirdParty } from '../../models/IThirdParty';\nimport { ApiPropertyOptional } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport type FormImmobilization = IImmobilization;\n\nexport class FormEntry {\n vat? : number | {\n idVat: number;\n amount: number;\n }[];\n isVatIntracom?: boolean;\n isVatImportation?: boolean;\n idAccount?: number;\n idThirdParty?: number;\n amountAllTaxIncludedPurchase?: number;\n designation?: string;\n amountAllTaxIncluded?: number;\n immobilization?: FormImmobilization; // pour la création d'une immo\n idImmobilization?: number; //\n}\n\n// Permet d'annoté une transaction bancaire Split, Marge, Intracom, Immo etc...\nexport type AnnotateAccountingTransaction = FormEntry[];\n\nexport class UpdateAccountingTransaction {\n @ApiPropertyOptional()\n // @Type(() => FormEntry)\n entries?: FormEntry[];\n @ApiPropertyOptional()\n comment?: string;\n @ApiPropertyOptional()\n idSocietyPartner?: number;\n @ApiPropertyOptional()\n exported?: Date | null;\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n isAsset?: boolean;\n @ApiPropertyOptional()\n dateValue?: Date;\n @ApiPropertyOptional()\n invoiceNumber?: string;\n @ApiPropertyOptional()\n name?: string;\n @ApiPropertyOptional()\n amountAllTaxIncluded?: number;\n}\n\n// Permet d'afficher une transaction bancaire avec les informations de base ainsi que les informations d'annotations\nexport interface ReadFormattedAccountingTransaction extends IAccountingTransaction {\n amount: number;\n comment: string | null;\n designation: string | null;\n debit: number;\n credit: number;\n autoAnnotateWithML: boolean;\n entries?: AnnotateAccountingTransaction;\n thirdPartySuggestions?: IThirdParty[];\n}\n"],"mappings":";;;;;;AAAA,IAAAA,eAAA,GAAAC,OAAA;AAGA,IAAAC,MAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;;;;;;;;;;;AAIM,MAAOG,SAAS;AAcrBC,OAAA,CAdYD,SAAS,GAATA,SAAS;AAmBhB,MAAOE,2BAA2B;
|
|
1
|
+
{"version":3,"file":"AnnotateAccountingTransaction.js","names":["_classValidator","require","_utils","_boolean","FormEntry","exports","UpdateAccountingTransaction","__decorate","ApiPropertyOptional","IsBoolean","ToBoolean","IsOptional","Date","IsNumber"],"sources":["../../../../../ts/types/Interface/api/accountingEntry/AnnotateAccountingTransaction.ts"],"sourcesContent":["import { IsBoolean, IsNumber, IsOptional } from 'class-validator';\nimport { IAccountingTransaction, IImmobilization } from '../../..';\nimport { IThirdParty } from '../../models/IThirdParty';\nimport { ApiPropertyOptional } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport type FormImmobilization = IImmobilization;\n\nexport class FormEntry {\n vat? : number | {\n idVat: number;\n amount: number;\n }[];\n isVatIntracom?: boolean;\n isVatImportation?: boolean;\n idAccount?: number;\n idThirdParty?: number;\n amountAllTaxIncludedPurchase?: number;\n designation?: string;\n amountAllTaxIncluded?: number;\n immobilization?: FormImmobilization; // pour la création d'une immo\n idImmobilization?: number; //\n}\n\n// Permet d'annoté une transaction bancaire Split, Marge, Intracom, Immo etc...\nexport type AnnotateAccountingTransaction = FormEntry[];\n\nexport class UpdateAccountingTransaction {\n @ApiPropertyOptional()\n // @Type(() => FormEntry)\n entries?: FormEntry[];\n @ApiPropertyOptional()\n comment?: string;\n @ApiPropertyOptional()\n idSocietyPartner?: number;\n @ApiPropertyOptional()\n exported?: Date | null;\n @ApiPropertyOptional()\n @IsBoolean()\n @ToBoolean()\n @IsOptional()\n isAsset?: boolean;\n @ApiPropertyOptional()\n dateValue?: Date;\n @ApiPropertyOptional()\n invoiceNumber?: string;\n @ApiPropertyOptional()\n name?: string;\n @ApiPropertyOptional()\n amountAllTaxIncluded?: number;\n \n @ApiPropertyOptional()\n @IsOptional()\n @IsNumber()\n idAccountant?: number;\n\n}\n\n// Permet d'afficher une transaction bancaire avec les informations de base ainsi que les informations d'annotations\nexport interface ReadFormattedAccountingTransaction extends IAccountingTransaction {\n amount: number;\n comment: string | null;\n designation: string | null;\n debit: number;\n credit: number;\n autoAnnotateWithML: boolean;\n entries?: AnnotateAccountingTransaction;\n thirdPartySuggestions?: IThirdParty[];\n}\n"],"mappings":";;;;;;AAAA,IAAAA,eAAA,GAAAC,OAAA;AAGA,IAAAC,MAAA,GAAAD,OAAA;AACA,IAAAE,QAAA,GAAAF,OAAA;;;;;;;;;;;AAIM,MAAOG,SAAS;AAcrBC,OAAA,CAdYD,SAAS,GAATA,SAAS;AAmBhB,MAAOE,2BAA2B;AA6BvCD,OAAA,CA7BYC,2BAA2B,GAA3BA,2BAA2B;AACtCC,UAAA,EAAC,IAAAC,0BAAmB;AACpB;AAAA,E,4FACwB;AACxBD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,6FACH;AACnBD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,sGACM;AAC5BD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,8FACG;AACzBD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,EACrB,IAAAC,yBAAS,GAAE,EACX,IAAAC,kBAAS,GAAE,EACX,IAAAC,0BAAU,GAAE,E,8FACO;AACpBJ,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,0BACRI,IAAI,E,6DAAC;AACnBL,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,mGACG;AACzBD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,0FACN;AAChBD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,E,0GACU;AAEhCD,UAAA,EAAC,IAAAC,0BAAmB,GAAE,EACrB,IAAAG,0BAAU,GAAE,EACZ,IAAAE,wBAAQ,GAAE,E,kGACa"}
|
package/js/types/index.js
CHANGED
|
@@ -8853,16 +8853,6 @@ Object.keys(_Read8).forEach(function (key) {
|
|
|
8853
8853
|
}
|
|
8854
8854
|
});
|
|
8855
8855
|
});
|
|
8856
|
-
var _Query9 = require("./Interface/api/file/Query");
|
|
8857
|
-
Object.keys(_Query9).forEach(function (key) {
|
|
8858
|
-
if (key === "default" || key === "__esModule") return;
|
|
8859
|
-
Object.defineProperty(exports, key, {
|
|
8860
|
-
enumerable: true,
|
|
8861
|
-
get: function () {
|
|
8862
|
-
return _Query9[key];
|
|
8863
|
-
}
|
|
8864
|
-
});
|
|
8865
|
-
});
|
|
8866
8856
|
var _update = require("./Interface/api/societyConfig/update");
|
|
8867
8857
|
Object.keys(_update).forEach(function (key) {
|
|
8868
8858
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -9053,13 +9043,13 @@ Object.keys(_CreateFileToSign).forEach(function (key) {
|
|
|
9053
9043
|
}
|
|
9054
9044
|
});
|
|
9055
9045
|
});
|
|
9056
|
-
var
|
|
9057
|
-
Object.keys(
|
|
9046
|
+
var _Query9 = require("./Interface/api/rule/Query");
|
|
9047
|
+
Object.keys(_Query9).forEach(function (key) {
|
|
9058
9048
|
if (key === "default" || key === "__esModule") return;
|
|
9059
9049
|
Object.defineProperty(exports, key, {
|
|
9060
9050
|
enumerable: true,
|
|
9061
9051
|
get: function () {
|
|
9062
|
-
return
|
|
9052
|
+
return _Query9[key];
|
|
9063
9053
|
}
|
|
9064
9054
|
});
|
|
9065
9055
|
});
|
|
@@ -9173,13 +9163,13 @@ Object.keys(_Read10).forEach(function (key) {
|
|
|
9173
9163
|
}
|
|
9174
9164
|
});
|
|
9175
9165
|
});
|
|
9176
|
-
var
|
|
9177
|
-
Object.keys(
|
|
9166
|
+
var _Query10 = require("./Interface/api/commercialImport/Query");
|
|
9167
|
+
Object.keys(_Query10).forEach(function (key) {
|
|
9178
9168
|
if (key === "default" || key === "__esModule") return;
|
|
9179
9169
|
Object.defineProperty(exports, key, {
|
|
9180
9170
|
enumerable: true,
|
|
9181
9171
|
get: function () {
|
|
9182
|
-
return
|
|
9172
|
+
return _Query10[key];
|
|
9183
9173
|
}
|
|
9184
9174
|
});
|
|
9185
9175
|
});
|
|
@@ -9243,13 +9233,13 @@ Object.keys(_Create14).forEach(function (key) {
|
|
|
9243
9233
|
}
|
|
9244
9234
|
});
|
|
9245
9235
|
});
|
|
9246
|
-
var
|
|
9247
|
-
Object.keys(
|
|
9236
|
+
var _Query11 = require("./Interface/api/businessSector/Query");
|
|
9237
|
+
Object.keys(_Query11).forEach(function (key) {
|
|
9248
9238
|
if (key === "default" || key === "__esModule") return;
|
|
9249
9239
|
Object.defineProperty(exports, key, {
|
|
9250
9240
|
enumerable: true,
|
|
9251
9241
|
get: function () {
|
|
9252
|
-
return
|
|
9242
|
+
return _Query11[key];
|
|
9253
9243
|
}
|
|
9254
9244
|
});
|
|
9255
9245
|
});
|
|
@@ -9263,23 +9253,23 @@ Object.keys(_Delete2).forEach(function (key) {
|
|
|
9263
9253
|
}
|
|
9264
9254
|
});
|
|
9265
9255
|
});
|
|
9266
|
-
var
|
|
9267
|
-
Object.keys(
|
|
9256
|
+
var _Query12 = require("./Interface/api/accountsSectors/Query");
|
|
9257
|
+
Object.keys(_Query12).forEach(function (key) {
|
|
9268
9258
|
if (key === "default" || key === "__esModule") return;
|
|
9269
9259
|
Object.defineProperty(exports, key, {
|
|
9270
9260
|
enumerable: true,
|
|
9271
9261
|
get: function () {
|
|
9272
|
-
return
|
|
9262
|
+
return _Query12[key];
|
|
9273
9263
|
}
|
|
9274
9264
|
});
|
|
9275
9265
|
});
|
|
9276
|
-
var
|
|
9277
|
-
Object.keys(
|
|
9266
|
+
var _Query13 = require("./Interface/api/visualizedInformation/Query");
|
|
9267
|
+
Object.keys(_Query13).forEach(function (key) {
|
|
9278
9268
|
if (key === "default" || key === "__esModule") return;
|
|
9279
9269
|
Object.defineProperty(exports, key, {
|
|
9280
9270
|
enumerable: true,
|
|
9281
9271
|
get: function () {
|
|
9282
|
-
return
|
|
9272
|
+
return _Query13[key];
|
|
9283
9273
|
}
|
|
9284
9274
|
});
|
|
9285
9275
|
});
|