@parra/parra-js-sdk 0.3.207 → 0.3.208
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 +6 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1968,12 +1968,16 @@ export interface TenantOnboardingApplicationIntent {
|
|
|
1968
1968
|
export interface TenantOnboardingDomainIntent {
|
|
1969
1969
|
skipped?: boolean | null;
|
|
1970
1970
|
}
|
|
1971
|
+
export interface TenantOnboardingIntegrationIntent {
|
|
1972
|
+
complete?: boolean | null;
|
|
1973
|
+
skipped?: boolean | null;
|
|
1974
|
+
}
|
|
1971
1975
|
export interface TenantOnboarding {
|
|
1972
1976
|
skipped?: boolean | null;
|
|
1973
1977
|
goal?: TenantOnboardingGoal | null;
|
|
1974
1978
|
application_intent?: TenantOnboardingApplicationIntent | null;
|
|
1975
1979
|
domain?: TenantOnboardingDomainIntent | null;
|
|
1976
|
-
|
|
1980
|
+
integration?: TenantOnboardingIntegrationIntent | null;
|
|
1977
1981
|
}
|
|
1978
1982
|
export interface TenantMetrics {
|
|
1979
1983
|
application_count: number;
|
|
@@ -2334,6 +2338,7 @@ export interface UpdateTenantRequestBody {
|
|
|
2334
2338
|
onboarding_application_intent_app_store_connect_setup?: boolean | null;
|
|
2335
2339
|
onboarding_application_intent_app_store_connect_skipped?: boolean | null;
|
|
2336
2340
|
onboarding_integration_complete?: boolean | null;
|
|
2341
|
+
onboarding_integration_skipped?: boolean | null;
|
|
2337
2342
|
}
|
|
2338
2343
|
export interface CreateTenantForUserRequestBody {
|
|
2339
2344
|
name: string;
|