@parra/parra-js-sdk 0.3.109 → 0.3.110
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
|
@@ -1392,6 +1392,10 @@ export interface CreateApplicationRequestBody {
|
|
|
1392
1392
|
description?: string | null;
|
|
1393
1393
|
is_new_project: boolean;
|
|
1394
1394
|
type: ApplicationType;
|
|
1395
|
+
ios_bundle_id?: string | null;
|
|
1396
|
+
}
|
|
1397
|
+
export interface ApplicationIosConfig {
|
|
1398
|
+
bundle_id: string;
|
|
1395
1399
|
}
|
|
1396
1400
|
export interface Application {
|
|
1397
1401
|
id: string;
|
|
@@ -1404,6 +1408,7 @@ export interface Application {
|
|
|
1404
1408
|
type: ApplicationType;
|
|
1405
1409
|
tenant_id: string;
|
|
1406
1410
|
icon?: ImageAssetStub | null;
|
|
1411
|
+
ios?: ApplicationIosConfig | null;
|
|
1407
1412
|
}
|
|
1408
1413
|
export interface ApplicationCollectionResponse {
|
|
1409
1414
|
page: number;
|
|
@@ -1416,6 +1421,7 @@ export interface UpdateApplicationRequestBody {
|
|
|
1416
1421
|
name?: string;
|
|
1417
1422
|
description?: string | null;
|
|
1418
1423
|
is_new_project?: boolean;
|
|
1424
|
+
ios_bundle_id?: string | null;
|
|
1419
1425
|
icon?: ImageAssetStub | null;
|
|
1420
1426
|
}
|
|
1421
1427
|
export interface TenantOnboarding {
|