@parra/parra-js-sdk 0.3.107 → 0.3.108
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 +8 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1415,6 +1415,10 @@ export interface UpdateApplicationRequestBody {
|
|
|
1415
1415
|
description?: string | null;
|
|
1416
1416
|
icon?: ImageAssetStub | null;
|
|
1417
1417
|
}
|
|
1418
|
+
export interface TenantOnboarding {
|
|
1419
|
+
skipped?: boolean | null;
|
|
1420
|
+
goal?: string | null;
|
|
1421
|
+
}
|
|
1418
1422
|
export interface Entitlement {
|
|
1419
1423
|
}
|
|
1420
1424
|
export interface TenantMetrics {
|
|
@@ -1439,6 +1443,7 @@ export interface Tenant {
|
|
|
1439
1443
|
name: string;
|
|
1440
1444
|
is_test: boolean;
|
|
1441
1445
|
parent_tenant_id?: string | null;
|
|
1446
|
+
onboarding?: TenantOnboarding | null;
|
|
1442
1447
|
logo?: ImageAssetStub | null;
|
|
1443
1448
|
entitlements?: Array<Entitlement> | null;
|
|
1444
1449
|
metrics?: TenantMetrics | null;
|
|
@@ -1684,8 +1689,9 @@ export interface TenantUserCollectionResponse {
|
|
|
1684
1689
|
}
|
|
1685
1690
|
export interface UpdateTenantRequestBody {
|
|
1686
1691
|
name?: string;
|
|
1687
|
-
|
|
1688
|
-
|
|
1692
|
+
onboarding_skipped?: boolean;
|
|
1693
|
+
onboarding_goal?: string | null;
|
|
1694
|
+
application_onboarding_skipped?: boolean;
|
|
1689
1695
|
logo?: ImageAssetStub | null;
|
|
1690
1696
|
}
|
|
1691
1697
|
export interface CreateTenantForUserRequestBody {
|