@parra/parra-js-sdk 0.3.229 → 0.3.231

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.
@@ -6,7 +6,8 @@ export interface AppReleaseConfiguration {
6
6
  export declare enum TicketType {
7
7
  bug = "bug",
8
8
  feature = "feature",
9
- improvement = "improvement"
9
+ improvement = "improvement",
10
+ task = "task"
10
11
  }
11
12
  export declare enum TicketStatus {
12
13
  open = "open",
@@ -217,6 +218,7 @@ export interface ApplicationAppInfoStub {
217
218
  icon?: ImageAssetStub | null;
218
219
  default_feedback_form_id?: string | null;
219
220
  error_feedback_form_id?: string | null;
221
+ metadata?: object | null;
220
222
  }
221
223
  export declare enum DomainType {
222
224
  managed = "managed",
@@ -2097,6 +2099,7 @@ export interface Application {
2097
2099
  default_feedback_form_id?: string | null;
2098
2100
  error_feedback_form_id?: string | null;
2099
2101
  icon?: ImageAssetStub | null;
2102
+ metadata?: object | null;
2100
2103
  ios?: ApplicationIosConfig | null;
2101
2104
  }
2102
2105
  export declare enum DashboardChecklistItemType {
package/dist/ParraAPI.js CHANGED
@@ -17,6 +17,7 @@ var TicketType;
17
17
  TicketType["bug"] = "bug";
18
18
  TicketType["feature"] = "feature";
19
19
  TicketType["improvement"] = "improvement";
20
+ TicketType["task"] = "task";
20
21
  })(TicketType || (exports.TicketType = TicketType = {}));
21
22
  var TicketStatus;
22
23
  (function (TicketStatus) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.229",
3
+ "version": "0.3.231",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "devDependencies": {
21
21
  "@types/node": "^20.11.25",
22
22
  "prettier": "^3.2.5",
23
- "typescript": "^5.4.2"
23
+ "typescript": "^5.6.2"
24
24
  },
25
25
  "dependencies": {
26
26
  "@parra/http-client": "0.5.7"