@parra/parra-js-sdk 0.3.472 → 0.3.474
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 +2 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -5143,6 +5143,7 @@ declare class ParraAPI {
|
|
5143
5143
|
limit?: number;
|
5144
5144
|
offset?: number;
|
5145
5145
|
type?: string | null;
|
5146
|
+
include?: string | null;
|
5146
5147
|
}, options?: Options) => Promise<ApplicationCollectionResponse>;
|
5147
5148
|
getApplicationByIdForTenantById: (tenant_id: string, application_id: string, options?: Options) => Promise<Application>;
|
5148
5149
|
updateApplicationByIdForTenantById: (tenant_id: string, application_id: string, body?: UpdateApplicationRequestBody, options?: Options) => Promise<Application>;
|
@@ -5236,6 +5237,7 @@ declare class ParraAPI {
|
|
5236
5237
|
paginateMailTemplatesForTenantById: (tenant_id: string, query?: {
|
5237
5238
|
limit?: number;
|
5238
5239
|
offset?: number;
|
5240
|
+
type?: string | null;
|
5239
5241
|
}, options?: Options) => Promise<MailTemplateCollectionResponse>;
|
5240
5242
|
getMailTemplateByIdForTenantById: (tenant_id: string, mail_template_id: string, options?: Options) => Promise<MailTemplate>;
|
5241
5243
|
updateMailTemplateByIdForTenantById: (tenant_id: string, mail_template_id: string, body?: UpdateMailTemplateRequestBody, options?: Options) => Promise<MailTemplate>;
|