@parra/parra-js-sdk 0.3.458 → 0.3.459
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 -7
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -4854,13 +4854,9 @@ declare class ParraAPI {
|
|
4854
4854
|
deleteCreatorUpdateTemplateById: (tenant_id: string, creator_update_template_id: string, options?: Options) => Promise<Response>;
|
4855
4855
|
createCreatorUpdateForTenant: (tenant_id: string, body?: CreateCreatorUpdateRequestBody, options?: Options) => Promise<CreatorUpdate>;
|
4856
4856
|
paginateCreatorUpdatesForTenant: (tenant_id: string, query?: {
|
4857
|
-
|
4858
|
-
|
4859
|
-
|
4860
|
-
$orderby?: string;
|
4861
|
-
$filter?: string;
|
4862
|
-
$expand?: string;
|
4863
|
-
$search?: string;
|
4857
|
+
topic?: string;
|
4858
|
+
limit?: number;
|
4859
|
+
offset?: number;
|
4864
4860
|
}, options?: Options) => Promise<CreatorUpdateCollectionResponse>;
|
4865
4861
|
getCreatorUpdate: (tenant_id: string, creator_update_id: string, options?: Options) => Promise<CreatorUpdate>;
|
4866
4862
|
updateCreatorUpdate: (tenant_id: string, creator_update_id: string, body?: UpdateCreatorUpdateRequestBody, options?: Options) => Promise<CreatorUpdate>;
|