@getyetty-sdk/sellsy 2026.2.5 → 2026.2.12
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 +6 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -58946,18 +58946,21 @@ declare const ContactItemSchema: {
|
|
|
58946
58946
|
readonly type: "string";
|
|
58947
58947
|
readonly description: "Contact phone number";
|
|
58948
58948
|
readonly example: "+33100000000";
|
|
58949
|
+
readonly maxLength: 50;
|
|
58949
58950
|
readonly nullable: true;
|
|
58950
58951
|
};
|
|
58951
58952
|
readonly mobile_number: {
|
|
58952
58953
|
readonly type: "string";
|
|
58953
58954
|
readonly description: "Contact mobile number";
|
|
58954
58955
|
readonly example: "+33600000000";
|
|
58956
|
+
readonly maxLength: 50;
|
|
58955
58957
|
readonly nullable: true;
|
|
58956
58958
|
};
|
|
58957
58959
|
readonly fax_number: {
|
|
58958
58960
|
readonly type: "string";
|
|
58959
58961
|
readonly description: "Contact Fax number";
|
|
58960
58962
|
readonly example: "+33100000000";
|
|
58963
|
+
readonly maxLength: 50;
|
|
58961
58964
|
readonly nullable: true;
|
|
58962
58965
|
};
|
|
58963
58966
|
readonly position: {
|
|
@@ -89880,18 +89883,21 @@ declare const ContactItemWritableSchema: {
|
|
|
89880
89883
|
readonly type: "string";
|
|
89881
89884
|
readonly description: "Contact phone number";
|
|
89882
89885
|
readonly example: "+33100000000";
|
|
89886
|
+
readonly maxLength: 50;
|
|
89883
89887
|
readonly nullable: true;
|
|
89884
89888
|
};
|
|
89885
89889
|
readonly mobile_number: {
|
|
89886
89890
|
readonly type: "string";
|
|
89887
89891
|
readonly description: "Contact mobile number";
|
|
89888
89892
|
readonly example: "+33600000000";
|
|
89893
|
+
readonly maxLength: 50;
|
|
89889
89894
|
readonly nullable: true;
|
|
89890
89895
|
};
|
|
89891
89896
|
readonly fax_number: {
|
|
89892
89897
|
readonly type: "string";
|
|
89893
89898
|
readonly description: "Contact Fax number";
|
|
89894
89899
|
readonly example: "+33100000000";
|
|
89900
|
+
readonly maxLength: 50;
|
|
89895
89901
|
readonly nullable: true;
|
|
89896
89902
|
};
|
|
89897
89903
|
readonly position: {
|