@getyetty-sdk/sellsy 2026.3.15 → 2026.3.20
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 +67 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +42 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6646,6 +6646,18 @@ type Ocr = {
|
|
|
6646
6646
|
* Source of the incoming document
|
|
6647
6647
|
*/
|
|
6648
6648
|
source?: 'ocr' | 'facturx';
|
|
6649
|
+
/**
|
|
6650
|
+
* Supplier name
|
|
6651
|
+
*/
|
|
6652
|
+
supplier?: string | null;
|
|
6653
|
+
/**
|
|
6654
|
+
* Total amount excluding tax
|
|
6655
|
+
*/
|
|
6656
|
+
total_excl_tax?: string | null;
|
|
6657
|
+
/**
|
|
6658
|
+
* Currency code
|
|
6659
|
+
*/
|
|
6660
|
+
currency?: string | null;
|
|
6649
6661
|
};
|
|
6650
6662
|
/**
|
|
6651
6663
|
* Metadata
|
|
@@ -25213,6 +25225,18 @@ type OcrWritable = {
|
|
|
25213
25225
|
* Source of the incoming document
|
|
25214
25226
|
*/
|
|
25215
25227
|
source?: 'ocr' | 'facturx';
|
|
25228
|
+
/**
|
|
25229
|
+
* Supplier name
|
|
25230
|
+
*/
|
|
25231
|
+
supplier?: string | null;
|
|
25232
|
+
/**
|
|
25233
|
+
* Total amount excluding tax
|
|
25234
|
+
*/
|
|
25235
|
+
total_excl_tax?: string | null;
|
|
25236
|
+
/**
|
|
25237
|
+
* Currency code
|
|
25238
|
+
*/
|
|
25239
|
+
currency?: string | null;
|
|
25216
25240
|
};
|
|
25217
25241
|
/**
|
|
25218
25242
|
* conformityState
|
|
@@ -31972,6 +31996,11 @@ type CustomActivityOrder = (typeof CustomActivityOrder)[keyof typeof CustomActiv
|
|
|
31972
31996
|
declare const OcrOrder: {
|
|
31973
31997
|
readonly CREATED_AT: "created_at";
|
|
31974
31998
|
readonly COMPLETED_AT: "completed_at";
|
|
31999
|
+
readonly LINKED_TYPE: "linked_type";
|
|
32000
|
+
readonly SOURCE: "source";
|
|
32001
|
+
readonly SUPPLIER: "supplier";
|
|
32002
|
+
readonly TOTAL_EXCL_TAX: "total_excl_tax";
|
|
32003
|
+
readonly STATE: "state";
|
|
31975
32004
|
};
|
|
31976
32005
|
/**
|
|
31977
32006
|
* The order field
|
|
@@ -45022,7 +45051,7 @@ type GetOcrPurInvoiceData = {
|
|
|
45022
45051
|
/**
|
|
45023
45052
|
* The order field
|
|
45024
45053
|
*/
|
|
45025
|
-
order?: 'created_at' | 'completed_at';
|
|
45054
|
+
order?: 'created_at' | 'completed_at' | 'linked_type' | 'source' | 'supplier' | 'total_excl_tax' | 'state';
|
|
45026
45055
|
/**
|
|
45027
45056
|
* Pagination limit
|
|
45028
45057
|
*/
|
|
@@ -45066,7 +45095,7 @@ type SearchOcrPurInvoiceData = {
|
|
|
45066
45095
|
/**
|
|
45067
45096
|
* The order field
|
|
45068
45097
|
*/
|
|
45069
|
-
order?: 'created_at' | 'completed_at';
|
|
45098
|
+
order?: 'created_at' | 'completed_at' | 'linked_type' | 'source' | 'supplier' | 'total_excl_tax' | 'state';
|
|
45070
45099
|
/**
|
|
45071
45100
|
* Pagination limit
|
|
45072
45101
|
*/
|
|
@@ -68383,6 +68412,24 @@ declare const OcrSchema: {
|
|
|
68383
68412
|
readonly enum: readonly ["ocr", "facturx"];
|
|
68384
68413
|
readonly example: "ocr";
|
|
68385
68414
|
};
|
|
68415
|
+
readonly supplier: {
|
|
68416
|
+
readonly type: "string";
|
|
68417
|
+
readonly description: "Supplier name";
|
|
68418
|
+
readonly nullable: true;
|
|
68419
|
+
readonly example: "SELLSY";
|
|
68420
|
+
};
|
|
68421
|
+
readonly total_excl_tax: {
|
|
68422
|
+
readonly type: "string";
|
|
68423
|
+
readonly description: "Total amount excluding tax";
|
|
68424
|
+
readonly nullable: true;
|
|
68425
|
+
readonly example: "35.00";
|
|
68426
|
+
};
|
|
68427
|
+
readonly currency: {
|
|
68428
|
+
readonly type: "string";
|
|
68429
|
+
readonly description: "Currency code";
|
|
68430
|
+
readonly nullable: true;
|
|
68431
|
+
readonly example: "EUR";
|
|
68432
|
+
};
|
|
68386
68433
|
};
|
|
68387
68434
|
};
|
|
68388
68435
|
declare const OcrPurInvoiceMetasSchema: {
|
|
@@ -97154,6 +97201,24 @@ declare const OcrWritableSchema: {
|
|
|
97154
97201
|
readonly enum: readonly ["ocr", "facturx"];
|
|
97155
97202
|
readonly example: "ocr";
|
|
97156
97203
|
};
|
|
97204
|
+
readonly supplier: {
|
|
97205
|
+
readonly type: "string";
|
|
97206
|
+
readonly description: "Supplier name";
|
|
97207
|
+
readonly nullable: true;
|
|
97208
|
+
readonly example: "SELLSY";
|
|
97209
|
+
};
|
|
97210
|
+
readonly total_excl_tax: {
|
|
97211
|
+
readonly type: "string";
|
|
97212
|
+
readonly description: "Total amount excluding tax";
|
|
97213
|
+
readonly nullable: true;
|
|
97214
|
+
readonly example: "35.00";
|
|
97215
|
+
};
|
|
97216
|
+
readonly currency: {
|
|
97217
|
+
readonly type: "string";
|
|
97218
|
+
readonly description: "Currency code";
|
|
97219
|
+
readonly nullable: true;
|
|
97220
|
+
readonly example: "EUR";
|
|
97221
|
+
};
|
|
97157
97222
|
};
|
|
97158
97223
|
};
|
|
97159
97224
|
declare const InvoicingConformityStateWritableSchema: {
|