@parra/parra-js-sdk 0.3.473 → 0.3.475
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
@@ -4958,6 +4958,7 @@ declare class ParraAPI {
|
|
4958
4958
|
offset?: number;
|
4959
4959
|
search?: string;
|
4960
4960
|
status?: string | null;
|
4961
|
+
question_id?: string | null;
|
4961
4962
|
}, options?: Options) => Promise<CampaignCollectionResponse>;
|
4962
4963
|
getCampaignById: (tenant_id: string, campaign_id: string, query?: {
|
4963
4964
|
include?: string | null;
|
@@ -5237,6 +5238,7 @@ declare class ParraAPI {
|
|
5237
5238
|
paginateMailTemplatesForTenantById: (tenant_id: string, query?: {
|
5238
5239
|
limit?: number;
|
5239
5240
|
offset?: number;
|
5241
|
+
type?: string | null;
|
5240
5242
|
}, options?: Options) => Promise<MailTemplateCollectionResponse>;
|
5241
5243
|
getMailTemplateByIdForTenantById: (tenant_id: string, mail_template_id: string, options?: Options) => Promise<MailTemplate>;
|
5242
5244
|
updateMailTemplateByIdForTenantById: (tenant_id: string, mail_template_id: string, body?: UpdateMailTemplateRequestBody, options?: Options) => Promise<MailTemplate>;
|