@parra/parra-js-sdk 0.3.296 → 0.3.298
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
|
@@ -191,6 +191,8 @@ export interface ApplicationIosConfig {
|
|
|
191
191
|
app_id?: string | null;
|
|
192
192
|
team_id?: string | null;
|
|
193
193
|
bundle_id: string;
|
|
194
|
+
app_store_connect_connection_id?: string | null;
|
|
195
|
+
app_store_connect_linked_at?: string | null;
|
|
194
196
|
}
|
|
195
197
|
export interface IosApplicationAppInfoStub {
|
|
196
198
|
id: string;
|
|
@@ -200,6 +202,8 @@ export interface IosApplicationAppInfoStub {
|
|
|
200
202
|
app_id?: string | null;
|
|
201
203
|
team_id?: string | null;
|
|
202
204
|
bundle_id: string;
|
|
205
|
+
app_store_connect_connection_id?: string | null;
|
|
206
|
+
app_store_connect_linked_at?: string | null;
|
|
203
207
|
name: string;
|
|
204
208
|
description?: string | null;
|
|
205
209
|
type: ApplicationType;
|
|
@@ -213,6 +217,8 @@ export interface ApplicationAppInfoStub {
|
|
|
213
217
|
app_id?: string | null;
|
|
214
218
|
team_id?: string | null;
|
|
215
219
|
bundle_id: string;
|
|
220
|
+
app_store_connect_connection_id?: string | null;
|
|
221
|
+
app_store_connect_linked_at?: string | null;
|
|
216
222
|
name: string;
|
|
217
223
|
description?: string | null;
|
|
218
224
|
type: ApplicationType;
|