@parra/parra-js-sdk 0.3.206 → 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.
@@ -1968,11 +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;
1980
+ integration?: TenantOnboardingIntegrationIntent | null;
1976
1981
  }
1977
1982
  export interface TenantMetrics {
1978
1983
  application_count: number;
@@ -2332,6 +2337,8 @@ export interface UpdateTenantRequestBody {
2332
2337
  onboarding_application_intent_should_notify?: boolean | null;
2333
2338
  onboarding_application_intent_app_store_connect_setup?: boolean | null;
2334
2339
  onboarding_application_intent_app_store_connect_skipped?: boolean | null;
2340
+ onboarding_integration_complete?: boolean | null;
2341
+ onboarding_integration_skipped?: boolean | null;
2335
2342
  }
2336
2343
  export interface CreateTenantForUserRequestBody {
2337
2344
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.206",
3
+ "version": "0.3.208",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",