@parra/parra-js-sdk 0.3.471 → 0.3.473
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
@@ -5142,6 +5142,8 @@ declare class ParraAPI {
|
|
5142
5142
|
paginateApplicationsForTenantById: (tenant_id: string, query?: {
|
5143
5143
|
limit?: number;
|
5144
5144
|
offset?: number;
|
5145
|
+
type?: string | null;
|
5146
|
+
include?: string | null;
|
5145
5147
|
}, options?: Options) => Promise<ApplicationCollectionResponse>;
|
5146
5148
|
getApplicationByIdForTenantById: (tenant_id: string, application_id: string, options?: Options) => Promise<Application>;
|
5147
5149
|
updateApplicationByIdForTenantById: (tenant_id: string, application_id: string, body?: UpdateApplicationRequestBody, options?: Options) => Promise<Application>;
|