@parra/parra-js-sdk 0.3.223 → 0.3.225

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
@@ -203,7 +203,20 @@ export interface IosApplicationAppInfoStub {
203
203
  type: ApplicationType;
204
204
  icon?: ImageAssetStub | null;
205
205
  }
206
- export type ApplicationAppInfoStub = IosApplicationAppInfoStub;
206
+ export interface ApplicationAppInfoStub {
207
+ id: string;
208
+ created_at: string;
209
+ updated_at: string;
210
+ deleted_at?: string | null;
211
+ app_id?: string | null;
212
+ team_id?: string | null;
213
+ bundle_id: string;
214
+ name: string;
215
+ description?: string | null;
216
+ type: ApplicationType;
217
+ icon?: ImageAssetStub | null;
218
+ default_feedback_form_id?: string | null;
219
+ }
207
220
  export declare enum DomainType {
208
221
  managed = "managed",
209
222
  external = "external",
@@ -2028,6 +2041,7 @@ export interface UpdateApplicationRequestBody {
2028
2041
  ios_team_id?: string | null;
2029
2042
  privacy_policy_document_id?: string | null;
2030
2043
  terms_of_service_policy_document_id?: string | null;
2044
+ default_feedback_form_id?: string | null;
2031
2045
  icon?: ImageAssetStub | null;
2032
2046
  }
2033
2047
  export interface LinkAppStoreConnectAppRequestBody {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.223",
3
+ "version": "0.3.225",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",