@parra/parra-js-sdk 0.3.138 → 0.3.141

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.
@@ -1541,11 +1541,15 @@ export interface UpdateClientRequestBody {
1541
1541
  export interface AppStoreConnectApp {
1542
1542
  id: string;
1543
1543
  name: string;
1544
+ bundle_id: string;
1545
+ icon_url?: string | null;
1546
+ imported: boolean;
1544
1547
  }
1545
1548
  export declare enum ApplicationType {
1546
1549
  ios = "ios"
1547
1550
  }
1548
1551
  export interface ApplicationIosConfig {
1552
+ app_id?: string | null;
1549
1553
  bundle_id: string;
1550
1554
  }
1551
1555
  export interface Application {
@@ -1568,6 +1572,7 @@ export interface CreateApplicationRequestBody {
1568
1572
  description?: string | null;
1569
1573
  is_new_project: boolean;
1570
1574
  type: ApplicationType;
1575
+ ios_app_id?: string | null;
1571
1576
  ios_bundle_id?: string | null;
1572
1577
  privacy_policy_document_id?: string | null;
1573
1578
  terms_of_service_policy_document_id?: string | null;
@@ -1583,6 +1588,7 @@ export interface UpdateApplicationRequestBody {
1583
1588
  name?: string;
1584
1589
  description?: string | null;
1585
1590
  is_new_project?: boolean;
1591
+ ios_app_id?: string | null;
1586
1592
  ios_bundle_id?: string | null;
1587
1593
  privacy_policy_document_id?: string | null;
1588
1594
  terms_of_service_policy_document_id?: string | null;
@@ -1914,7 +1920,7 @@ export interface UpdateTenantRequestBody {
1914
1920
  onboarding_application_intent_other_description?: string | null;
1915
1921
  onboarding_application_intent_should_notify?: boolean | null;
1916
1922
  onboarding_application_intent_app_store_connect_setup?: boolean | null;
1917
- onboarding_application_intent_app_store_connect_setup_skipped?: boolean | null;
1923
+ onboarding_application_intent_app_store_connect_skipped?: boolean | null;
1918
1924
  }
1919
1925
  export interface CreateTenantForUserRequestBody {
1920
1926
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.138",
3
+ "version": "0.3.141",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",