@parra/parra-js-sdk 0.3.131 → 0.3.132

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.
Files changed (2) hide show
  1. package/dist/ParraAPI.d.ts +15 -1
  2. package/package.json +1 -1
@@ -1584,9 +1584,18 @@ export interface UpdateApplicationRequestBody {
1584
1584
  terms_of_service_policy_document_id?: string | null;
1585
1585
  icon?: ImageAssetStub | null;
1586
1586
  }
1587
+ export interface TenantOnboardingApplicationIntent {
1588
+ skipped?: boolean | null;
1589
+ intent?: string | null;
1590
+ intent_other_description?: string | null;
1591
+ should_notify?: boolean | null;
1592
+ app_store_connect_setup?: boolean | null;
1593
+ app_store_connect_setup_skipped?: boolean | null;
1594
+ }
1587
1595
  export interface TenantOnboarding {
1588
1596
  skipped?: boolean | null;
1589
1597
  goal?: string | null;
1598
+ application_intent?: TenantOnboardingApplicationIntent | null;
1590
1599
  }
1591
1600
  export interface Entitlement {
1592
1601
  }
@@ -1878,8 +1887,13 @@ export interface UpdateTenantRequestBody {
1878
1887
  subdomain?: string | null;
1879
1888
  onboarding_skipped?: boolean;
1880
1889
  onboarding_goal?: string | null;
1881
- application_onboarding_skipped?: boolean;
1882
1890
  logo?: ImageAssetStub | null;
1891
+ onboarding_application_intent_skipped?: boolean | null;
1892
+ onboarding_application_intent?: string | null;
1893
+ onboarding_application_intent_other_description?: string | null;
1894
+ onboarding_application_intent_should_notify?: boolean | null;
1895
+ onboarding_application_intent_app_store_connect_setup?: boolean | null;
1896
+ onboarding_application_intent_app_store_connect_setup_skipped?: boolean | null;
1883
1897
  }
1884
1898
  export interface CreateTenantForUserRequestBody {
1885
1899
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.131",
3
+ "version": "0.3.132",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",