@parra/parra-js-sdk 0.3.475 → 0.3.477
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
@@ -4970,6 +4970,8 @@ declare class ParraAPI {
|
|
4970
4970
|
paginateTemplatesForTenantById: (tenant_id: string, query?: {
|
4971
4971
|
limit?: number;
|
4972
4972
|
offset?: number;
|
4973
|
+
search?: string;
|
4974
|
+
tag_id?: string | null;
|
4973
4975
|
}, options?: Options) => Promise<TemplateCollectionResponse>;
|
4974
4976
|
cloneTemplateForTenantById: (tenant_id: string, template_id: string, options?: Options) => Promise<Template>;
|
4975
4977
|
paginateTemplateTags: (query?: {
|