@plyaz/types 1.13.17 → 1.14.1
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/api/endpoints/infobip/types.d.ts +5 -0
- package/dist/auth/index.cjs +12 -4196
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.js +10 -6
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/schemas.d.ts +20 -21
- package/dist/db/databaseEventsType.d.ts +9 -0
- package/dist/db/eventEmitter.d.ts +43 -0
- package/dist/db/index.cjs +13 -0
- package/dist/db/index.cjs.map +1 -1
- package/dist/db/index.d.ts +1 -0
- package/dist/db/index.js +13 -1
- package/dist/db/index.js.map +1 -1
- package/dist/errors/types.d.ts +42 -3
- package/dist/index.cjs +165 -4206
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +142 -6
- package/dist/index.js.map +1 -1
- package/dist/notifications/index.cjs +155 -4201
- package/dist/notifications/index.cjs.map +1 -1
- package/dist/notifications/index.d.ts +11 -0
- package/dist/notifications/index.js +133 -1
- package/dist/notifications/index.js.map +1 -1
- package/dist/notifications/schemas.d.ts +13 -3
- package/dist/notifications/types.d.ts +66 -24
- package/dist/notifications/webhooks.schemas.d.ts +278 -0
- package/package.json +4 -4
|
@@ -226,6 +226,11 @@ export type InfobipEmailStatus = EmailComponents['schemas']['34438aa163eb13a2a06
|
|
|
226
226
|
* Email attachment
|
|
227
227
|
*/
|
|
228
228
|
export type InfobipEmailAttachment = EmailComponents['schemas']['39bb6975d36d214ea076d974c69ec0b82edda805f4c6bf36a3f6f7d154c98fa0.Attachment'];
|
|
229
|
+
/**
|
|
230
|
+
* Email binary attachment (base64-encoded content)
|
|
231
|
+
* Used when sending emails with attachments
|
|
232
|
+
*/
|
|
233
|
+
export type InfobipEmailMediaBinaryAttachment = EmailComponents['schemas']['34438aa163eb13a2a06ad96ae98170e41cc2ee8902e8b7655aba73ceb0bb23f1.EmailMediaBinaryAttachment'];
|
|
229
234
|
/**
|
|
230
235
|
* Email delivery report
|
|
231
236
|
*/
|