@parra/parra-js-sdk 0.3.180 → 0.3.181
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/ParraAPI.d.ts +3 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2365,7 +2365,7 @@ export interface MailTemplateStub {
|
|
|
2365
2365
|
slug?: string | null;
|
|
2366
2366
|
status: MailTemplateStatus;
|
|
2367
2367
|
sender: MailSender;
|
|
2368
|
-
connected_app_connection
|
|
2368
|
+
connected_app_connection: ConnectedAppConnectionStub;
|
|
2369
2369
|
}
|
|
2370
2370
|
export interface MailTemplateCollectionStub {
|
|
2371
2371
|
id: string;
|
|
@@ -2380,7 +2380,7 @@ export interface MailTemplateCollectionStub {
|
|
|
2380
2380
|
slug?: string | null;
|
|
2381
2381
|
status: MailTemplateStatus;
|
|
2382
2382
|
sender: MailSender;
|
|
2383
|
-
connected_app_connection
|
|
2383
|
+
connected_app_connection: ConnectedAppConnectionStub;
|
|
2384
2384
|
versions: Array<MailTemplateVersionStub>;
|
|
2385
2385
|
}
|
|
2386
2386
|
export interface MailTemplate {
|
|
@@ -2396,7 +2396,7 @@ export interface MailTemplate {
|
|
|
2396
2396
|
slug?: string | null;
|
|
2397
2397
|
status: MailTemplateStatus;
|
|
2398
2398
|
sender: MailSender;
|
|
2399
|
-
connected_app_connection
|
|
2399
|
+
connected_app_connection: ConnectedAppConnectionStub;
|
|
2400
2400
|
versions: Array<MailTemplateVersionStub>;
|
|
2401
2401
|
}
|
|
2402
2402
|
export interface MailTemplateCollectionResponse {
|