@getyetty-sdk/sellsy 2026.5.18 → 2026.5.19
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 +25 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +15 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6791,7 +6791,7 @@ type Ocr = {
|
|
|
6791
6791
|
/**
|
|
6792
6792
|
* Source of the incoming document
|
|
6793
6793
|
*/
|
|
6794
|
-
source?: 'ocr' | '
|
|
6794
|
+
source?: 'ocr' | 'einvoicing';
|
|
6795
6795
|
/**
|
|
6796
6796
|
* Supplier name
|
|
6797
6797
|
*/
|
|
@@ -12003,6 +12003,10 @@ type ScanList = Array<{
|
|
|
12003
12003
|
*/
|
|
12004
12004
|
address_line_2?: string | null;
|
|
12005
12005
|
};
|
|
12006
|
+
/**
|
|
12007
|
+
* Employee count range of the company (e.g. "3-5", "10-19")
|
|
12008
|
+
*/
|
|
12009
|
+
company_employee_range?: string | null;
|
|
12006
12010
|
}>;
|
|
12007
12011
|
/**
|
|
12008
12012
|
* Search results
|
|
@@ -12108,6 +12112,10 @@ type ScanFetch = {
|
|
|
12108
12112
|
* Sign of company
|
|
12109
12113
|
*/
|
|
12110
12114
|
company_sign?: string | null;
|
|
12115
|
+
/**
|
|
12116
|
+
* Employee count range of the company (e.g. "3-5", "10-19")
|
|
12117
|
+
*/
|
|
12118
|
+
company_employee_range?: string | null;
|
|
12111
12119
|
};
|
|
12112
12120
|
/**
|
|
12113
12121
|
* Notification
|
|
@@ -26849,7 +26857,7 @@ type OcrWritable = {
|
|
|
26849
26857
|
/**
|
|
26850
26858
|
* Source of the incoming document
|
|
26851
26859
|
*/
|
|
26852
|
-
source?: 'ocr' | '
|
|
26860
|
+
source?: 'ocr' | 'einvoicing';
|
|
26853
26861
|
/**
|
|
26854
26862
|
* Supplier name
|
|
26855
26863
|
*/
|
|
@@ -72794,7 +72802,7 @@ declare const OcrSchema: {
|
|
|
72794
72802
|
readonly source: {
|
|
72795
72803
|
readonly type: "string";
|
|
72796
72804
|
readonly description: "Source of the incoming document";
|
|
72797
|
-
readonly enum: readonly ["ocr", "
|
|
72805
|
+
readonly enum: readonly ["ocr", "einvoicing"];
|
|
72798
72806
|
readonly example: "ocr";
|
|
72799
72807
|
};
|
|
72800
72808
|
readonly supplier: {
|
|
@@ -78031,7 +78039,7 @@ declare const EmailSendBatchBodySchema: {
|
|
|
78031
78039
|
readonly type: "array";
|
|
78032
78040
|
readonly description: "List of related objects for the email. All items must have the same type.";
|
|
78033
78041
|
readonly minItems: 1;
|
|
78034
|
-
readonly maxItems:
|
|
78042
|
+
readonly maxItems: 2000;
|
|
78035
78043
|
readonly items: {
|
|
78036
78044
|
readonly type: "object";
|
|
78037
78045
|
readonly required: readonly ["type", "id"];
|
|
@@ -81703,6 +81711,12 @@ declare const ScanListSchema: {
|
|
|
81703
81711
|
};
|
|
81704
81712
|
};
|
|
81705
81713
|
};
|
|
81714
|
+
readonly company_employee_range: {
|
|
81715
|
+
readonly type: "string";
|
|
81716
|
+
readonly description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")";
|
|
81717
|
+
readonly example: "3-5";
|
|
81718
|
+
readonly nullable: true;
|
|
81719
|
+
};
|
|
81706
81720
|
};
|
|
81707
81721
|
};
|
|
81708
81722
|
};
|
|
@@ -81850,6 +81864,12 @@ declare const ScanFetchSchema: {
|
|
|
81850
81864
|
readonly description: "Sign of company";
|
|
81851
81865
|
readonly nullable: true;
|
|
81852
81866
|
};
|
|
81867
|
+
readonly company_employee_range: {
|
|
81868
|
+
readonly type: "string";
|
|
81869
|
+
readonly description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")";
|
|
81870
|
+
readonly example: "3-5";
|
|
81871
|
+
readonly nullable: true;
|
|
81872
|
+
};
|
|
81853
81873
|
};
|
|
81854
81874
|
};
|
|
81855
81875
|
declare const NotificationSchema: {
|
|
@@ -103836,7 +103856,7 @@ declare const OcrWritableSchema: {
|
|
|
103836
103856
|
readonly source: {
|
|
103837
103857
|
readonly type: "string";
|
|
103838
103858
|
readonly description: "Source of the incoming document";
|
|
103839
|
-
readonly enum: readonly ["ocr", "
|
|
103859
|
+
readonly enum: readonly ["ocr", "einvoicing"];
|
|
103840
103860
|
readonly example: "ocr";
|
|
103841
103861
|
};
|
|
103842
103862
|
readonly supplier: {
|