@getyetty-sdk/sellsy 2026.1.20 → 2026.1.28
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/index.d.mts +54 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +41 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6548,6 +6548,10 @@ type Ocr = {
|
|
|
6548
6548
|
*
|
|
6549
6549
|
*/
|
|
6550
6550
|
error_code?: 1 | 2 | 3 | null;
|
|
6551
|
+
/**
|
|
6552
|
+
* Source of the incoming document
|
|
6553
|
+
*/
|
|
6554
|
+
source?: 'ocr' | 'facturx';
|
|
6551
6555
|
};
|
|
6552
6556
|
/**
|
|
6553
6557
|
* Metadata
|
|
@@ -6557,6 +6561,22 @@ type OcrPurInvoiceMetas = {
|
|
|
6557
6561
|
* Use can validate a purchase invoice
|
|
6558
6562
|
*/
|
|
6559
6563
|
user_can_validate_pur_invoice: boolean;
|
|
6564
|
+
/**
|
|
6565
|
+
* Use can create a payment
|
|
6566
|
+
*/
|
|
6567
|
+
create_payment: boolean;
|
|
6568
|
+
/**
|
|
6569
|
+
* Use can create a purchase invoice
|
|
6570
|
+
*/
|
|
6571
|
+
create: boolean;
|
|
6572
|
+
/**
|
|
6573
|
+
* Use can create a fast purchase invoice
|
|
6574
|
+
*/
|
|
6575
|
+
create_fast: boolean;
|
|
6576
|
+
/**
|
|
6577
|
+
* Use can import a purchase invoice
|
|
6578
|
+
*/
|
|
6579
|
+
import: boolean;
|
|
6560
6580
|
};
|
|
6561
6581
|
/**
|
|
6562
6582
|
* conformityState
|
|
@@ -24215,6 +24235,10 @@ type OcrWritable = {
|
|
|
24215
24235
|
*
|
|
24216
24236
|
*/
|
|
24217
24237
|
error_code?: 1 | 2 | 3 | null;
|
|
24238
|
+
/**
|
|
24239
|
+
* Source of the incoming document
|
|
24240
|
+
*/
|
|
24241
|
+
source?: 'ocr' | 'facturx';
|
|
24218
24242
|
};
|
|
24219
24243
|
/**
|
|
24220
24244
|
* conformityState
|
|
@@ -66250,6 +66274,12 @@ declare const OcrSchema: {
|
|
|
66250
66274
|
readonly enum: readonly [1, 2, 3, null];
|
|
66251
66275
|
readonly nullable: true;
|
|
66252
66276
|
};
|
|
66277
|
+
readonly source: {
|
|
66278
|
+
readonly type: "string";
|
|
66279
|
+
readonly description: "Source of the incoming document";
|
|
66280
|
+
readonly enum: readonly ["ocr", "facturx"];
|
|
66281
|
+
readonly example: "ocr";
|
|
66282
|
+
};
|
|
66253
66283
|
};
|
|
66254
66284
|
};
|
|
66255
66285
|
declare const OcrPurInvoiceMetasSchema: {
|
|
@@ -66258,10 +66288,26 @@ declare const OcrPurInvoiceMetasSchema: {
|
|
|
66258
66288
|
readonly properties: {
|
|
66259
66289
|
readonly user_can_validate_pur_invoice: {
|
|
66260
66290
|
readonly type: "boolean";
|
|
66261
|
-
readonly description: "Use can validate a purchase invoice
|
|
66291
|
+
readonly description: "Use can validate a purchase invoice";
|
|
66292
|
+
};
|
|
66293
|
+
readonly create_payment: {
|
|
66294
|
+
readonly type: "boolean";
|
|
66295
|
+
readonly description: "Use can create a payment";
|
|
66296
|
+
};
|
|
66297
|
+
readonly create: {
|
|
66298
|
+
readonly type: "boolean";
|
|
66299
|
+
readonly description: "Use can create a purchase invoice";
|
|
66300
|
+
};
|
|
66301
|
+
readonly create_fast: {
|
|
66302
|
+
readonly type: "boolean";
|
|
66303
|
+
readonly description: "Use can create a fast purchase invoice";
|
|
66304
|
+
};
|
|
66305
|
+
readonly import: {
|
|
66306
|
+
readonly type: "boolean";
|
|
66307
|
+
readonly description: "Use can import a purchase invoice";
|
|
66262
66308
|
};
|
|
66263
66309
|
};
|
|
66264
|
-
readonly required: readonly ["user_can_validate_pur_invoice"];
|
|
66310
|
+
readonly required: readonly ["user_can_validate_pur_invoice", "create_payment", "create", "create_fast", "import"];
|
|
66265
66311
|
};
|
|
66266
66312
|
declare const InvoicingConformityStateSchema: {
|
|
66267
66313
|
readonly title: "conformityState";
|
|
@@ -93710,6 +93756,12 @@ declare const OcrWritableSchema: {
|
|
|
93710
93756
|
readonly enum: readonly [1, 2, 3, null];
|
|
93711
93757
|
readonly nullable: true;
|
|
93712
93758
|
};
|
|
93759
|
+
readonly source: {
|
|
93760
|
+
readonly type: "string";
|
|
93761
|
+
readonly description: "Source of the incoming document";
|
|
93762
|
+
readonly enum: readonly ["ocr", "facturx"];
|
|
93763
|
+
readonly example: "ocr";
|
|
93764
|
+
};
|
|
93713
93765
|
};
|
|
93714
93766
|
};
|
|
93715
93767
|
declare const InvoicingConformityStateWritableSchema: {
|