@parra/parra-js-sdk 0.3.477 → 0.3.479
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 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -5035,7 +5035,7 @@ declare class ParraAPI {
|
|
5035
5035
|
offset?: number;
|
5036
5036
|
search?: string;
|
5037
5037
|
sort?: string;
|
5038
|
-
|
5038
|
+
include?: string | null;
|
5039
5039
|
status?: string;
|
5040
5040
|
}, options?: Options) => Promise<ReleaseCollectionResponse>;
|
5041
5041
|
getReleaseForTenantById: (tenant_id: string, release_id: string, options?: Options) => Promise<Release>;
|
@@ -5146,7 +5146,6 @@ declare class ParraAPI {
|
|
5146
5146
|
limit?: number;
|
5147
5147
|
offset?: number;
|
5148
5148
|
type?: string | null;
|
5149
|
-
include?: string | null;
|
5150
5149
|
}, options?: Options) => Promise<ApplicationCollectionResponse>;
|
5151
5150
|
getApplicationByIdForTenantById: (tenant_id: string, application_id: string, options?: Options) => Promise<Application>;
|
5152
5151
|
updateApplicationByIdForTenantById: (tenant_id: string, application_id: string, body?: UpdateApplicationRequestBody, options?: Options) => Promise<Application>;
|
@@ -5215,6 +5214,7 @@ declare class ParraAPI {
|
|
5215
5214
|
offset?: number;
|
5216
5215
|
sort?: string;
|
5217
5216
|
search?: string;
|
5217
|
+
include?: string | null;
|
5218
5218
|
}, options?: Options) => Promise<TenantUserCollectionResponse>;
|
5219
5219
|
createIdentityForTenantUser: (tenant_id: string, user_id: string, body?: CreateTenantUserIdentityRequestBody, options?: Options) => Promise<Identity>;
|
5220
5220
|
deleteIdentityForTenantById: (tenant_id: string, identity_id: string, options?: Options) => Promise<Response>;
|