@getyetty-sdk/sellsy 2026.2.12 → 2026.2.13
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 +4 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -72126,7 +72126,7 @@ declare const EmailSendBodySchema: {
|
|
|
72126
72126
|
readonly description: "Attachments objects";
|
|
72127
72127
|
readonly type: "array";
|
|
72128
72128
|
readonly items: {
|
|
72129
|
-
readonly
|
|
72129
|
+
readonly anyOf: readonly [{
|
|
72130
72130
|
readonly title: "Email uploaded attachment";
|
|
72131
72131
|
readonly description: "An uploaded email attachment";
|
|
72132
72132
|
readonly allOf: readonly [{
|
|
@@ -72180,6 +72180,7 @@ declare const EmailSendBodySchema: {
|
|
|
72180
72180
|
readonly content_id: {
|
|
72181
72181
|
readonly description: "Id of file uploaded. Returned by the upload endpoint POST /email/attachment";
|
|
72182
72182
|
readonly type: "string";
|
|
72183
|
+
readonly minLength: 1;
|
|
72183
72184
|
readonly example: "bpo8p9tcqrf3fcm11j8ikvx9o";
|
|
72184
72185
|
};
|
|
72185
72186
|
};
|
|
@@ -72189,13 +72190,14 @@ declare const EmailSendBodySchema: {
|
|
|
72189
72190
|
readonly title: "Email briefcase attachment";
|
|
72190
72191
|
readonly description: "An email attachment from a public link of your Sellsy account";
|
|
72191
72192
|
readonly allOf: readonly [{
|
|
72192
|
-
readonly $ref: "#/components/schemas/EmailSendBody/properties/attachments/items/
|
|
72193
|
+
readonly $ref: "#/components/schemas/EmailSendBody/properties/attachments/items/anyOf/0/allOf/0";
|
|
72193
72194
|
}, {
|
|
72194
72195
|
readonly type: "object";
|
|
72195
72196
|
readonly properties: {
|
|
72196
72197
|
readonly public_link: {
|
|
72197
72198
|
readonly description: "Public link to the attachment";
|
|
72198
72199
|
readonly type: "string";
|
|
72200
|
+
readonly minLength: 1;
|
|
72199
72201
|
readonly example: "https://file.sellsy.com/?id=xxxx";
|
|
72200
72202
|
};
|
|
72201
72203
|
readonly content_id: {
|