@getyetty-sdk/sellsy 2026.7.3 → 2026.7.8
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 +31 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +17 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10841,7 +10841,7 @@ type RecordPayment = {
|
|
|
10841
10841
|
tax_id?: number;
|
|
10842
10842
|
rate?: string;
|
|
10843
10843
|
vat_amount?: string;
|
|
10844
|
-
|
|
10844
|
+
amount_excl_vat?: string;
|
|
10845
10845
|
}>;
|
|
10846
10846
|
/**
|
|
10847
10847
|
* Bank deposit to attach to the payment
|
|
@@ -10860,7 +10860,6 @@ type PaymentContext = {
|
|
|
10860
10860
|
document?: {
|
|
10861
10861
|
id?: number;
|
|
10862
10862
|
type?: string;
|
|
10863
|
-
third_id?: number;
|
|
10864
10863
|
total_amount?: string;
|
|
10865
10864
|
due_amount?: string;
|
|
10866
10865
|
currency_id?: number;
|
|
@@ -10873,7 +10872,7 @@ type PaymentContext = {
|
|
|
10873
10872
|
label?: string;
|
|
10874
10873
|
system_label?: string;
|
|
10875
10874
|
vat_amount?: string;
|
|
10876
|
-
|
|
10875
|
+
amount_excl_vat?: string;
|
|
10877
10876
|
}>;
|
|
10878
10877
|
deadlines?: Array<{
|
|
10879
10878
|
id?: number;
|
|
@@ -16379,6 +16378,10 @@ type ComputedProgresssInvoice = {
|
|
|
16379
16378
|
* Tax amount
|
|
16380
16379
|
*/
|
|
16381
16380
|
amount?: string;
|
|
16381
|
+
/**
|
|
16382
|
+
* Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.
|
|
16383
|
+
*/
|
|
16384
|
+
category?: string | null;
|
|
16382
16385
|
}>;
|
|
16383
16386
|
deposits?: Array<{
|
|
16384
16387
|
/**
|
|
@@ -22710,6 +22713,10 @@ type ProgressInvoiceMetadata = {
|
|
|
22710
22713
|
* Tax amount
|
|
22711
22714
|
*/
|
|
22712
22715
|
amount?: string;
|
|
22716
|
+
/**
|
|
22717
|
+
* Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.
|
|
22718
|
+
*/
|
|
22719
|
+
category?: string | null;
|
|
22713
22720
|
}>;
|
|
22714
22721
|
deposits?: Array<{
|
|
22715
22722
|
/**
|
|
@@ -35116,6 +35123,10 @@ type ProgressInvoiceMetadataWritable = {
|
|
|
35116
35123
|
* Tax amount
|
|
35117
35124
|
*/
|
|
35118
35125
|
amount?: string;
|
|
35126
|
+
/**
|
|
35127
|
+
* Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.
|
|
35128
|
+
*/
|
|
35129
|
+
category?: string | null;
|
|
35119
35130
|
}>;
|
|
35120
35131
|
deposits?: Array<{
|
|
35121
35132
|
/**
|
|
@@ -81033,7 +81044,7 @@ declare const RecordPaymentSchema: {
|
|
|
81033
81044
|
readonly vat_amount: {
|
|
81034
81045
|
readonly type: "string";
|
|
81035
81046
|
};
|
|
81036
|
-
readonly
|
|
81047
|
+
readonly amount_excl_vat: {
|
|
81037
81048
|
readonly type: "string";
|
|
81038
81049
|
};
|
|
81039
81050
|
};
|
|
@@ -81075,9 +81086,6 @@ declare const PaymentContextSchema: {
|
|
|
81075
81086
|
readonly type: {
|
|
81076
81087
|
readonly type: "string";
|
|
81077
81088
|
};
|
|
81078
|
-
readonly third_id: {
|
|
81079
|
-
readonly type: "integer";
|
|
81080
|
-
};
|
|
81081
81089
|
readonly total_amount: {
|
|
81082
81090
|
readonly type: "string";
|
|
81083
81091
|
};
|
|
@@ -81115,7 +81123,7 @@ declare const PaymentContextSchema: {
|
|
|
81115
81123
|
readonly vat_amount: {
|
|
81116
81124
|
readonly type: "string";
|
|
81117
81125
|
};
|
|
81118
|
-
readonly
|
|
81126
|
+
readonly amount_excl_vat: {
|
|
81119
81127
|
readonly type: "string";
|
|
81120
81128
|
};
|
|
81121
81129
|
};
|
|
@@ -89782,6 +89790,11 @@ declare const ComputedProgresssInvoiceSchema: {
|
|
|
89782
89790
|
readonly type: "string";
|
|
89783
89791
|
readonly description: "Tax amount";
|
|
89784
89792
|
};
|
|
89793
|
+
readonly category: {
|
|
89794
|
+
readonly type: "string";
|
|
89795
|
+
readonly description: "Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.";
|
|
89796
|
+
readonly nullable: true;
|
|
89797
|
+
};
|
|
89785
89798
|
};
|
|
89786
89799
|
};
|
|
89787
89800
|
};
|
|
@@ -99498,6 +99511,11 @@ declare const ProgressInvoiceMetadataSchema: {
|
|
|
99498
99511
|
readonly type: "string";
|
|
99499
99512
|
readonly description: "Tax amount";
|
|
99500
99513
|
};
|
|
99514
|
+
readonly category: {
|
|
99515
|
+
readonly type: "string";
|
|
99516
|
+
readonly description: "Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.";
|
|
99517
|
+
readonly nullable: true;
|
|
99518
|
+
};
|
|
99501
99519
|
};
|
|
99502
99520
|
};
|
|
99503
99521
|
};
|
|
@@ -118011,6 +118029,11 @@ declare const ProgressInvoiceMetadataWritableSchema: {
|
|
|
118011
118029
|
readonly type: "string";
|
|
118012
118030
|
readonly description: "Tax amount";
|
|
118013
118031
|
};
|
|
118032
|
+
readonly category: {
|
|
118033
|
+
readonly type: "string";
|
|
118034
|
+
readonly description: "Tax category code (EN 16931), e.g. K for intra-community VAT. Null when the tax has no category.";
|
|
118035
|
+
readonly nullable: true;
|
|
118036
|
+
};
|
|
118014
118037
|
};
|
|
118015
118038
|
};
|
|
118016
118039
|
};
|