@parra/parra-js-sdk 0.3.224 → 0.3.226

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 +16 -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",
@@ -1972,6 +1985,7 @@ export interface Application {
1972
1985
  tenant_id: string;
1973
1986
  privacy_policy_document_id?: string | null;
1974
1987
  terms_of_service_policy_document_id?: string | null;
1988
+ default_feedback_form_id?: string | null;
1975
1989
  icon?: ImageAssetStub | null;
1976
1990
  ios?: ApplicationIosConfig | null;
1977
1991
  }
@@ -2028,6 +2042,7 @@ export interface UpdateApplicationRequestBody {
2028
2042
  ios_team_id?: string | null;
2029
2043
  privacy_policy_document_id?: string | null;
2030
2044
  terms_of_service_policy_document_id?: string | null;
2045
+ default_feedback_form_id?: string | null;
2031
2046
  icon?: ImageAssetStub | null;
2032
2047
  }
2033
2048
  export interface LinkAppStoreConnectAppRequestBody {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.224",
3
+ "version": "0.3.226",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",