@parra/parra-js-sdk 0.3.138 → 0.3.140
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 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -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;
|