@forge/jira-bridge

0.40.10.40.1-experimental-04cc2b9
~

Modified (90 files)

Index: package/out/custom-field/getCustomFieldInternalAPI.js
===================================================================
--- package/out/custom-field/getCustomFieldInternalAPI.js
+++ package/out/custom-field/getCustomFieldInternalAPI.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.getCustomFieldInternalAPI = void 0;
+exports.getCustomFieldInternalAPI = getCustomFieldInternalAPI;
 const errors_1 = require("../errors");
 const bridge_1 = require("../bridge");
 const callBridge = (0, bridge_1.getCallBridge)();
 async function getCustomFieldInternalAPI() {
@@ -16,5 +16,4 @@
         const message = err instanceof Error ? err.message : String(err);
         throw new errors_1.BridgeAPIError('Unable to initialize custom field module: ' + message);
     }
 }
-exports.getCustomFieldInternalAPI = getCustomFieldInternalAPI;
Index: package/out/custom-field/getFieldData.js
===================================================================
--- package/out/custom-field/getFieldData.js
+++ package/out/custom-field/getFieldData.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.getFieldData = void 0;
+exports.getFieldData = getFieldData;
 const errors_1 = require("../errors");
 const getCustomFieldInternalAPI_1 = require("./getCustomFieldInternalAPI");
 async function getFieldData(callback) {
     const { actions: { onFieldDataChange, onBridgeError } } = await (0, getCustomFieldInternalAPI_1.getCustomFieldInternalAPI)();
@@ -24,5 +24,4 @@
         }
         throw error;
     }
 }
-exports.getFieldData = getFieldData;
Index: package/out/ui-modifications/getInternalAPI.js
===================================================================
--- package/out/ui-modifications/getInternalAPI.js
+++ package/out/ui-modifications/getInternalAPI.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.getInternalAPI = void 0;
+exports.getInternalAPI = getInternalAPI;
 const errors_1 = require("../errors");
 const bridge_1 = require("../bridge");
 const callBridge = (0, bridge_1.getCallBridge)();
 async function getInternalAPI() {
@@ -23,5 +23,4 @@
             logError({ error: errors_1.GET_API_ERROR, cause: err });
         throw new errors_1.BridgeAPIError('Unable to initialize UI modifications module: ' + err.message);
     }
 }
-exports.getInternalAPI = getInternalAPI;
Index: package/out/ui-modifications/onChange.js
===================================================================
--- package/out/ui-modifications/onChange.js
+++ package/out/ui-modifications/onChange.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.onChange = void 0;
+exports.onChange = onChange;
 const apiBuilder_1 = require("./apiBuilder");
 const getInternalAPI_1 = require("./getInternalAPI");
 const errors_1 = require("../errors");
 async function onChange(onChangeCallback, registerOnChangeFieldsCallback) {
@@ -48,5 +48,4 @@
             throw error;
         }
     });
 }
-exports.onChange = onChange;
Index: package/out/workflow/onConfigure.js
===================================================================
--- package/out/workflow/onConfigure.js
+++ package/out/workflow/onConfigure.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.onConfigure = void 0;
+exports.onConfigure = onConfigure;
 const bridge_1 = require("../bridge");
 const errors_1 = require("../errors");
 const callBridge = (0, bridge_1.getCallBridge)();
 async function onConfigure(onConfigureFn) {
@@ -18,5 +18,4 @@
     catch (err) {
         throw new errors_1.BridgeAPIError('Unable to add workflow rule configuration callback.');
     }
 }
-exports.onConfigure = onConfigure;
Index: package/out/ui-modifications/onError.js
===================================================================
--- package/out/ui-modifications/onError.js
+++ package/out/ui-modifications/onError.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.onError = void 0;
+exports.onError = onError;
 const getInternalAPI_1 = require("./getInternalAPI");
 const errors_1 = require("../errors");
 async function onError(errorCallback) {
     const { actions: { subscribeToErrors, onBridgeError } } = await (0, getInternalAPI_1.getInternalAPI)();
@@ -31,5 +31,4 @@
         }
         throw error;
     }
 }
-exports.onError = onError;
Index: package/out/ui-modifications/onInit.js
===================================================================
--- package/out/ui-modifications/onInit.js
+++ package/out/ui-modifications/onInit.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.onInit = void 0;
+exports.onInit = onInit;
 const apiBuilder_1 = require("./apiBuilder");
 const getInternalAPI_1 = require("./getInternalAPI");
 const errors_1 = require("../errors");
 async function onInit(onInitCallback, registerOnInitFieldsCallback) {
@@ -47,5 +47,4 @@
         }
         throw error;
     }
 }
-exports.onInit = onInit;
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
 {
   "name": "@forge/jira-bridge",
-  "version": "0.40.1",
+  "version": "0.40.1-experimental-04cc2b9",
   "description": "Forge Jira bridge API for custom UI apps",
   "author": "Atlassian",
   "license": "SEE LICENSE IN LICENSE.txt",
   "browser": "out/index.js",
@@ -12,6 +12,17 @@
     "compile": "tsc -b -v"
   },
   "publishConfig": {
     "registry": "https://packages.atlassian.com/api/npm/npm-public/"
+  },
+  "peerDependencies": {
+    "typescript": ">=5.0.0"
+  },
+  "peerDependenciesMeta": {
+    "typescript": {
+      "optional": true
+    }
+  },
+  "devDependencies": {
+    "typescript": "5.9.2"
   }
 }
Index: package/out/ui-modifications/types/fields/assignee.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/assignee.d.ts.map
+++ package/out/ui-modifications/types/fields/assignee.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"assignee.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/assignee.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC;AAElD,oBAAY,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"assignee.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/assignee.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC;AAElD,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/cascading-select.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/cascading-select.d.ts.map
+++ package/out/ui-modifications/types/fields/cascading-select.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"cascading-select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/cascading-select.ts"],"names":[],"mappings":"AAAA,oBAAY,4BAA4B,GAAG;IACzC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;CAClB,GAAG,IAAI,CAAC;AAET,oBAAY,oBAAoB,GAAG;IACjC,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACtC,KAAK,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;CAC7C,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"cascading-select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/cascading-select.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,4BAA4B,GAAG;IACzC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;CAClB,GAAG,IAAI,CAAC;AAET,MAAM,MAAM,oBAAoB,GAAG;IACjC,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACtC,KAAK,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;CAC7C,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/changesBuffer.d.ts.map
===================================================================
--- package/out/ui-modifications/changesBuffer.d.ts.map
+++ package/out/ui-modifications/changesBuffer.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"changesBuffer.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/changesBuffer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,YAAY,EACZ,WAAW,EACX,sBAAsB,EACtB,WAAW,EACX,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,SAAS,CAAC;AAEjB,oBAAY,mBAAmB,GAAG,WAAW,CAAC;AAC9C,oBAAY,yBAAyB,GAAG,iBAAiB,CAAC;AAE1D,qBAAa,aAAa;IACxB,OAAO,CAAC,UAAU,CAA2B;IAC7C,OAAO,CAAC,gBAAgB,CAAiC;IAElD,cAAc,IAAI,mBAAmB;IAIrC,oBAAoB,IAAI,yBAAyB;IAIjD,mBAAmB,CAAC,QAAQ,SAAS,MAAM,YAAY,EAC5D,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,YAAY,CAAC,QAAQ,CAAC,GAC5B,IAAI;IAOA,uBAAuB,CAAC,QAAQ,SAAS,MAAM,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,EAChF,cAAc,EAAE,sBAAsB,EACtC,KAAK,EAAE,WAAW,EAClB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,gBAAgB,CAAC,QAAQ,CAAC,GAChC,IAAI;IAsBA,2BAA2B,CAAC,QAAQ,SAAS,MAAM,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,EACpF,cAAc,EAAE,sBAAsB,EACtC,SAAS,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,OAAO,EAC1C,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,gBAAgB,CAAC,QAAQ,CAAC,GAChC,IAAI;CAOR"}
\ No newline at end of file
+{"version":3,"file":"changesBuffer.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/changesBuffer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,YAAY,EACZ,WAAW,EACX,sBAAsB,EACtB,WAAW,EACX,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,SAAS,CAAC;AAEjB,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC;AAC9C,MAAM,MAAM,yBAAyB,GAAG,iBAAiB,CAAC;AAE1D,qBAAa,aAAa;IACxB,OAAO,CAAC,UAAU,CAA2B;IAC7C,OAAO,CAAC,gBAAgB,CAAiC;IAElD,cAAc,IAAI,mBAAmB;IAIrC,oBAAoB,IAAI,yBAAyB;IAIjD,mBAAmB,CAAC,QAAQ,SAAS,MAAM,YAAY,EAC5D,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,YAAY,CAAC,QAAQ,CAAC,GAC5B,IAAI;IAOA,uBAAuB,CAAC,QAAQ,SAAS,MAAM,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,EAChF,cAAc,EAAE,sBAAsB,EACtC,KAAK,EAAE,WAAW,EAClB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,gBAAgB,CAAC,QAAQ,CAAC,GAChC,IAAI;IAsBA,2BAA2B,CAAC,QAAQ,SAAS,MAAM,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,EACpF,cAAc,EAAE,sBAAsB,EACtC,SAAS,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,OAAO,EAC1C,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,gBAAgB,CAAC,QAAQ,CAAC,GAChC,IAAI;CAOR"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/checkboxes.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/checkboxes.d.ts.map
+++ package/out/ui-modifications/types/fields/checkboxes.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"checkboxes.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/checkboxes.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB,GAAG,MAAM,EAAE,CAAC;AAE/C,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"checkboxes.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/checkboxes.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG,MAAM,EAAE,CAAC;AAE/C,MAAM,MAAM,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/components.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/components.d.ts.map
+++ package/out/ui-modifications/types/fields/components.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/components.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB,GAAG,MAAM,EAAE,CAAC;AAE/C,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/components.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG,MAAM,EAAE,CAAC;AAE/C,MAAM,MAAM,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/date-picker.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/date-picker.d.ts.map
+++ package/out/ui-modifications/types/fields/date-picker.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/date-picker.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/date-picker.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/date-time.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/date-time.d.ts.map
+++ package/out/ui-modifications/types/fields/date-time.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"date-time.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/date-time.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"date-time.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/date-time.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/description.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/description.d.ts.map
+++ package/out/ui-modifications/types/fields/description.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"description.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/description.ts"],"names":[],"mappings":"AACA,oBAAY,gBAAgB,CAAC,OAAO,GAAG,OAAO,IAC1C;IACE,OAAO,EAAE,CAAC,CAAC;IACX,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB,GACD,MAAM,CAAC"}
\ No newline at end of file
+{"version":3,"file":"description.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/description.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,gBAAgB,CAAC,OAAO,GAAG,OAAO,IAC1C;IACE,OAAO,EAAE,CAAC,CAAC;IACX,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB,GACD,MAAM,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/errors.d.ts.map
===================================================================
--- package/out/ui-modifications/types/errors.d.ts.map
+++ package/out/ui-modifications/types/errors.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/errors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExD,oBAAY,2BAA2B,GAAG,yBAAyB,CAAC;AACpE,oBAAY,gCAAgC,GAAG,8BAA8B,CAAC;AAC9E,oBAAY,oCAAoC,GAAG,sCAAsC,CAAC;AAE1F,oBAAY,sBAAsB,GAAG,wBAAwB,CAAC;AAC9D,oBAAY,kCAAkC,GAAG,OAAO,CAAC;AACzD,oBAAY,uCAAuC,GAAG,YAAY,CAAC;AAEnE,oBAAY,aAAa,GAAG,QAAQ,GAAG,UAAU,CAAC;AAElD,oBAAY,eAAe,GACvB;IACE,IAAI,EAAE,2BAA2B,CAAC;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,GACD;IACE,IAAI,EAAE,gCAAgC,CAAC;IACvC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEN,oBAAY,sBAAsB,GAAG;IACnC,IAAI,EAAE,oCAAoC,CAAC;IAC3C,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,oBAAY,oBAAoB,GAC5B;IACE,IAAI,EAAE,sBAAsB,CAAC;IAC7B,KAAK,EAAE,kCAAkC,CAAC;IAC1C,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC,CAAC;IAC/B,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CAClB,GACD;IACE,IAAI,EAAE,sBAAsB,CAAC;IAC7B,KAAK,EAAE,uCAAuC,CAAC;IAC/C,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC"}
\ No newline at end of file
+{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/errors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExD,MAAM,MAAM,2BAA2B,GAAG,yBAAyB,CAAC;AACpE,MAAM,MAAM,gCAAgC,GAAG,8BAA8B,CAAC;AAC9E,MAAM,MAAM,oCAAoC,GAAG,sCAAsC,CAAC;AAE1F,MAAM,MAAM,sBAAsB,GAAG,wBAAwB,CAAC;AAC9D,MAAM,MAAM,kCAAkC,GAAG,OAAO,CAAC;AACzD,MAAM,MAAM,uCAAuC,GAAG,YAAY,CAAC;AAEnE,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,UAAU,CAAC;AAElD,MAAM,MAAM,eAAe,GACvB;IACE,IAAI,EAAE,2BAA2B,CAAC;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,GACD;IACE,IAAI,EAAE,gCAAgC,CAAC;IACvC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEN,MAAM,MAAM,sBAAsB,GAAG;IACnC,IAAI,EAAE,oCAAoC,CAAC;IAC3C,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAC5B;IACE,IAAI,EAAE,sBAAsB,CAAC;IAC7B,KAAK,EAAE,kCAAkC,CAAC;IAC1C,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,KAAK,CAAC,SAAS,CAAC,CAAC;IAC/B,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,OAAO,CAAC;CAClB,GACD;IACE,IAAI,EAAE,sBAAsB,CAAC;IAC7B,KAAK,EAAE,uCAAuC,CAAC;IAC/C,aAAa,EAAE,aAAa,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/extension.d.ts.map
===================================================================
--- package/out/ui-modifications/types/extension.d.ts.map
+++ package/out/ui-modifications/types/extension.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/extension.ts"],"names":[],"mappings":"AAAA,aAAK,SAAS,GAAG,KAAK,GAAG,WAAW,GAAG,iBAAiB,CAAC;AAEzD,aAAK,aAAa,CAAC,SAAS,SAAS,SAAS,IAAI;IAChD,IAAI,EAAE,sBAAsB,CAAC;IAC7B,OAAO,EAAE;QACP,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,SAAS,EAAE;QACT,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC;AAEF,oBAAY,2BAA2B,GACnC,aAAa,CAAC,KAAK,CAAC,GACpB,CAAC,aAAa,CAAC,WAAW,CAAC,GAAG;IAC5B,KAAK,EAAE;QACL,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH,CAAC,GACF,CAAC,aAAa,CAAC,iBAAiB,CAAC,GAAG;IAClC,KAAK,EAAE;QACL,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;IACF,eAAe,EAAE;QACf,EAAE,EAAE,MAAM,CAAC;KACZ,CAAC;CACH,CAAC,CAAC"}
\ No newline at end of file
+{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/extension.ts"],"names":[],"mappings":"AAAA,KAAK,SAAS,GAAG,KAAK,GAAG,WAAW,GAAG,iBAAiB,CAAC;AAEzD,KAAK,aAAa,CAAC,SAAS,SAAS,SAAS,IAAI;IAChD,IAAI,EAAE,sBAAsB,CAAC;IAC7B,OAAO,EAAE;QACP,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,SAAS,EAAE;QACT,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IACF,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,2BAA2B,GACnC,aAAa,CAAC,KAAK,CAAC,GACpB,CAAC,aAAa,CAAC,WAAW,CAAC,GAAG;IAC5B,KAAK,EAAE;QACL,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH,CAAC,GACF,CAAC,aAAa,CAAC,iBAAiB,CAAC,GAAG;IAClC,KAAK,EAAE;QACL,EAAE,EAAE,MAAM,CAAC;QACX,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;IACF,eAAe,EAAE;QACf,EAAE,EAAE,MAAM,CAAC;KACZ,CAAC;CACH,CAAC,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/field-api.d.ts.map
===================================================================
--- package/out/ui-modifications/types/field-api.d.ts.map
+++ package/out/ui-modifications/types/field-api.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"field-api.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/field-api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"field-api.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/field-api.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/fix-versions.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/fix-versions.d.ts.map
+++ package/out/ui-modifications/types/fields/fix-versions.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"fix-versions.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/fix-versions.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB,GAAG,MAAM,EAAE,CAAC;AAE7C,oBAAY,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,EAAE,CAAC;AAEJ,oBAAY,wBAAwB,GAAG,qBAAqB,CAAC;AAE7D,oBAAY,gBAAgB,GAAG,aAAa,CAAC"}
\ No newline at end of file
+{"version":3,"file":"fix-versions.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/fix-versions.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG,MAAM,EAAE,CAAC;AAE7C,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,EAAE,CAAC;AAEJ,MAAM,MAAM,wBAAwB,GAAG,qBAAqB,CAAC;AAE7D,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/index.d.ts.map
===================================================================
--- package/out/ui-modifications/types/index.d.ts.map
+++ package/out/ui-modifications/types/index.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/index.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/index.ts"],"names":[],"mappings":"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"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/issue-type.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/issue-type.d.ts.map
+++ package/out/ui-modifications/types/fields/issue-type.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"issue-type.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/issue-type.ts"],"names":[],"mappings":"AAAA,oBAAY,sBAAsB,GAAG,MAAM,CAAC;AAE5C,oBAAY,cAAc,GAAG;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC"}
\ No newline at end of file
+{"version":3,"file":"issue-type.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/issue-type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC;AAE5C,MAAM,MAAM,cAAc,GAAG;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/labels.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/labels.d.ts.map
+++ package/out/ui-modifications/types/fields/labels.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"labels.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/labels.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW,GAAG,MAAM,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"labels.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/labels.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,MAAM,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/multi-select.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/multi-select.d.ts.map
+++ package/out/ui-modifications/types/fields/multi-select.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"multi-select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/multi-select.ts"],"names":[],"mappings":"AAAA,oBAAY,wBAAwB,GAAG,MAAM,EAAE,CAAC;AAEhD,oBAAY,gBAAgB,GAAG;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"multi-select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/multi-select.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,wBAAwB,GAAG,MAAM,EAAE,CAAC;AAEhD,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/multi-user-picker.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/multi-user-picker.d.ts.map
+++ package/out/ui-modifications/types/fields/multi-user-picker.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"multi-user-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/multi-user-picker.ts"],"names":[],"mappings":"AAAA,oBAAY,4BAA4B,GAAG,MAAM,EAAE,CAAC;AAEpD,oBAAY,oBAAoB,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"multi-user-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/multi-user-picker.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,4BAA4B,GAAG,MAAM,EAAE,CAAC;AAEpD,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/number.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/number.d.ts.map
+++ package/out/ui-modifications/types/fields/number.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"number.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/number.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"number.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/number.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/onChange.d.ts.map
===================================================================
--- package/out/ui-modifications/onChange.d.ts.map
+++ package/out/ui-modifications/onChange.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"onChange.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/onChange.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAGvE,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAG9C,oBAAY,WAAW,GAAG;IACxB,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;CAC5B,CAAC;AAEF,oBAAY,oBAAoB,GAAG,CAAC,KAAK,EAAE;IACzC,GAAG,EAAE,OAAO,CAAC;IACb,MAAM,EAAE,WAAW,CAAC;IACpB,eAAe,EAAE,cAAc,EAAE,CAAC;CACnC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAE3B,oBAAY,8BAA8B,GAAG,CAAC,OAAO,EAAE;IACrD,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,MAAM,EAAE,WAAW,CAAC;CACrB,KAAK,KAAK,CAAC,OAAO,CAAC,CAAC;AAErB,wBAAsB,QAAQ,CAC5B,gBAAgB,EAAE,oBAAoB,EACtC,8BAA8B,EAAE,8BAA8B,GAC7D,OAAO,CAAC,IAAI,CAAC,CAkDf"}
\ No newline at end of file
+{"version":3,"file":"onChange.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/onChange.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAGvE,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAG9C,MAAM,MAAM,WAAW,GAAG;IACxB,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE;IACzC,GAAG,EAAE,OAAO,CAAC;IACb,MAAM,EAAE,WAAW,CAAC;IACpB,eAAe,EAAE,cAAc,EAAE,CAAC;CACnC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAE3B,MAAM,MAAM,8BAA8B,GAAG,CAAC,OAAO,EAAE;IACrD,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,MAAM,EAAE,WAAW,CAAC;CACrB,KAAK,KAAK,CAAC,OAAO,CAAC,CAAC;AAErB,wBAAsB,QAAQ,CAC5B,gBAAgB,EAAE,oBAAoB,EACtC,8BAA8B,EAAE,8BAA8B,GAC7D,OAAO,CAAC,IAAI,CAAC,CAkDf"}
\ No newline at end of file
Index: package/out/ui-modifications/onInit.d.ts.map
===================================================================
--- package/out/ui-modifications/onInit.d.ts.map
+++ package/out/ui-modifications/onInit.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"onInit.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/onInit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAKhE,oBAAY,kBAAkB,GAAG,CAAC,KAAK,EAAE;IAAE,GAAG,EAAE,OAAO,CAAC;IAAC,eAAe,EAAE,cAAc,EAAE,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEtH,oBAAY,4BAA4B,GAAG,CAAC,KAAK,EAAE;IAAE,eAAe,EAAE,cAAc,EAAE,CAAA;CAAE,KAAK,KAAK,CAAC,OAAO,CAAC,CAAC;AAE5G,wBAAsB,MAAM,CAC1B,cAAc,EAAE,kBAAkB,EAClC,4BAA4B,EAAE,4BAA4B,GACzD,OAAO,CAAC,IAAI,CAAC,CAiDf"}
\ No newline at end of file
+{"version":3,"file":"onInit.d.ts","sourceRoot":"","sources":["../../src/ui-modifications/onInit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAKhE,MAAM,MAAM,kBAAkB,GAAG,CAAC,KAAK,EAAE;IAAE,GAAG,EAAE,OAAO,CAAC;IAAC,eAAe,EAAE,cAAc,EAAE,CAAA;CAAE,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEtH,MAAM,MAAM,4BAA4B,GAAG,CAAC,KAAK,EAAE;IAAE,eAAe,EAAE,cAAc,EAAE,CAAA;CAAE,KAAK,KAAK,CAAC,OAAO,CAAC,CAAC;AAE5G,wBAAsB,MAAM,CAC1B,cAAc,EAAE,kBAAkB,EAClC,4BAA4B,EAAE,4BAA4B,GACzD,OAAO,CAAC,IAAI,CAAC,CAiDf"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/original-estimate.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/original-estimate.d.ts.map
+++ package/out/ui-modifications/types/fields/original-estimate.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"original-estimate.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/original-estimate.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"original-estimate.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/original-estimate.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/paragraph.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/paragraph.d.ts.map
+++ package/out/ui-modifications/types/fields/paragraph.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"paragraph.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/paragraph.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc,CAAC,OAAO,GAAG,OAAO,IACxC;IACE,OAAO,EAAE,CAAC,CAAC;IACX,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB,GACD,MAAM,CAAC"}
\ No newline at end of file
+{"version":3,"file":"paragraph.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/paragraph.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,CAAC,OAAO,GAAG,OAAO,IACxC;IACE,OAAO,EAAE,CAAC,CAAC;IACX,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB,GACD,MAAM,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/parent.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/parent.d.ts.map
+++ package/out/ui-modifications/types/fields/parent.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"parent.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/parent.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEhD,oBAAY,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;CACb,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"parent.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/parent.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEhD,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;CACb,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/people.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/people.d.ts.map
+++ package/out/ui-modifications/types/fields/people.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"people.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/people.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG,MAAM,EAAE,CAAC;AAE3C,oBAAY,WAAW,GAAG;IACxB,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,CAAC"}
\ No newline at end of file
+{"version":3,"file":"people.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/people.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG,MAAM,EAAE,CAAC;AAE3C,MAAM,MAAM,WAAW,GAAG;IACxB,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/priority.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/priority.d.ts.map
+++ package/out/ui-modifications/types/fields/priority.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"priority.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/priority.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB,GAAG,MAAM,CAAC;AAE3C,oBAAY,aAAa,GAAG;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC"}
\ No newline at end of file
+{"version":3,"file":"priority.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/priority.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC;AAE3C,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/project-picker.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/project-picker.d.ts.map
+++ package/out/ui-modifications/types/fields/project-picker.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"project-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/project-picker.ts"],"names":[],"mappings":"AAUA,oBAAY,0BAA0B,GAAG,MAAM,GAAG,IAAI,CAAC;AAUvD,oBAAY,kBAAkB,GAAG;IAE/B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"project-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/project-picker.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,0BAA0B,GAAG,MAAM,GAAG,IAAI,CAAC;AAUvD,MAAM,MAAM,kBAAkB,GAAG;IAE/B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/radio-buttons.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/radio-buttons.d.ts.map
+++ package/out/ui-modifications/types/fields/radio-buttons.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"radio-buttons.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/radio-buttons.ts"],"names":[],"mappings":"AAAA,oBAAY,yBAAyB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEtD,oBAAY,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"radio-buttons.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/radio-buttons.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,yBAAyB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEtD,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/reporter.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/reporter.d.ts.map
+++ package/out/ui-modifications/types/fields/reporter.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"reporter.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/reporter.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC;AAElD,oBAAY,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"reporter.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/reporter.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,qBAAqB,GAAG,MAAM,GAAG,IAAI,CAAC;AAElD,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/request-type.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/request-type.d.ts.map
+++ package/out/ui-modifications/types/fields/request-type.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"request-type.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/request-type.ts"],"names":[],"mappings":"AAUA,oBAAY,wBAAwB,GAAG,MAAM,GAAG,IAAI,CAAC;AAUrD,oBAAY,gBAAgB,GAAG;IAE7B,aAAa,EAAE,MAAM,CAAC;CACvB,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"request-type.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/request-type.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,wBAAwB,GAAG,MAAM,GAAG,IAAI,CAAC;AAUrD,MAAM,MAAM,gBAAgB,GAAG;IAE7B,aAAa,EAAE,MAAM,CAAC;CACvB,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/resolution.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/resolution.d.ts.map
+++ package/out/ui-modifications/types/fields/resolution.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"resolution.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/resolution.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB,GAAG,MAAM,GAAG,IAAI,CAAC;AAE/C,oBAAY,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"resolution.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/resolution.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,IAAI,CAAC;AAE/C,MAAM,MAAM,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/screen-tab-api.d.ts.map
===================================================================
--- package/out/ui-modifications/types/screen-tab-api.d.ts.map
+++ package/out/ui-modifications/types/screen-tab-api.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"screen-tab-api.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/screen-tab-api.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW,GAAG,MAAM,CAAC;AAEjC,oBAAY,SAAS,GAAG;IACtB,KAAK,EAAE,MAAM,WAAW,CAAC;IAEzB,SAAS,EAAE,MAAM,OAAO,CAAC;IACzB,UAAU,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,SAAS,CAAC;IAE9C,KAAK,EAAE,MAAM,SAAS,CAAC;CACxB,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAChC,gBAAgB,CAAC,WAAW,EAAE,WAAW,GAAG,SAAS,GAAG,SAAS,CAAC;IAElE,aAAa,EAAE,MAAM,SAAS,EAAE,CAAC;CAClC"}
\ No newline at end of file
+{"version":3,"file":"screen-tab-api.d.ts","sourceRoot":"","sources":["../../../src/ui-modifications/types/screen-tab-api.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAEjC,MAAM,MAAM,SAAS,GAAG;IACtB,KAAK,EAAE,MAAM,WAAW,CAAC;IAEzB,SAAS,EAAE,MAAM,OAAO,CAAC;IACzB,UAAU,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,SAAS,CAAC;IAE9C,KAAK,EAAE,MAAM,SAAS,CAAC;CACxB,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAChC,gBAAgB,CAAC,WAAW,EAAE,WAAW,GAAG,SAAS,GAAG,SAAS,CAAC;IAElE,aAAa,EAAE,MAAM,SAAS,EAAE,CAAC;CAClC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/select.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/select.d.ts.map
+++ package/out/ui-modifications/types/fields/select.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/select.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEhD,oBAAY,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/select.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEhD,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/status.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/status.d.ts.map
+++ package/out/ui-modifications/types/fields/status.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/status.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG,MAAM,CAAC;AAEzC,oBAAY,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC"}
\ No newline at end of file
+{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/status.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC;AAEzC,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/summary.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/summary.d.ts.map
+++ package/out/ui-modifications/types/fields/summary.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/summary.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY,GAAG,MAAM,CAAC"}
\ No newline at end of file
+{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/summary.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/text-field.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/text-field.d.ts.map
+++ package/out/ui-modifications/types/fields/text-field.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"text-field.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/text-field.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS,GAAG,MAAM,CAAC"}
\ No newline at end of file
+{"version":3,"file":"text-field.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/text-field.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC"}
\ No newline at end of file
Index: package/out/custom-field/types.d.ts.map
===================================================================
--- package/out/custom-field/types.d.ts.map
+++ package/out/custom-field/types.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/custom-field/types.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS,GAAG;IACtB,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AACF,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE;QACP,iBAAiB,EAAE,CAAC,QAAQ,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,KAAK,IAAI,CAAC;QACtE,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,OAAO,CAAA;SAAE,KAAK,IAAI,CAAC;KACtE,CAAC;CACH"}
\ No newline at end of file
+{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/custom-field/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG;IACtB,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AACF,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE;QACP,iBAAiB,EAAE,CAAC,QAAQ,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,IAAI,KAAK,IAAI,CAAC;QACtE,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,OAAO,CAAA;SAAE,KAAK,IAAI,CAAC;KACtE,CAAC;CACH"}
\ No newline at end of file
Index: package/out/modal/types.d.ts.map
===================================================================
--- package/out/modal/types.d.ts.map
+++ package/out/modal/types.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/modal/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE;QACP,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,oBAAY,uBAAuB,GAAG;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,CAAC,cAAc,EAAE,MAAM,GAAG,GAAG,CAAC;CAC/B,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACtC,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE;QACf,OAAO,EAAE;YACP,OAAO,EAAE,MAAM,CAAC;SACjB,EAAE,CAAC;KACL,KAAK,IAAI,CAAC;CACZ"}
\ No newline at end of file
+{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/modal/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE;QACP,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,CAAC,cAAc,EAAE,MAAM,GAAG,GAAG,CAAC;CAC/B,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACtC,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE;QACf,OAAO,EAAE;YACP,OAAO,EAAE,MAAM,CAAC;SACjB,EAAE,CAAC;KACL,KAAK,IAAI,CAAC;CACZ"}
\ No newline at end of file
Index: package/out/workflow/types.d.ts.map
===================================================================
--- package/out/workflow/types.d.ts.map
+++ package/out/workflow/types.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/workflow/types.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG,MAAM,CAAC;AAEzC,oBAAY,aAAa,GAAG,MAAM,OAAO,CAAC,mBAAmB,CAAC,GAAG,mBAAmB,CAAC;AAErF,MAAM,WAAW,mCAAmC;IAClD,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B"}
\ No newline at end of file
+{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/workflow/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC;AAEzC,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,CAAC,mBAAmB,CAAC,GAAG,mBAAmB,CAAC;AAErF,MAAM,WAAW,mCAAmC;IAClD,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/url.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/url.d.ts.map
+++ package/out/ui-modifications/types/fields/url.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"url.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/url.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ,GAAG,MAAM,CAAC"}
\ No newline at end of file
+{"version":3,"file":"url.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/url.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC"}
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/user-picker.d.ts.map
===================================================================
--- package/out/ui-modifications/types/fields/user-picker.d.ts.map
+++ package/out/ui-modifications/types/fields/user-picker.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"user-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/user-picker.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEpD,oBAAY,eAAe,GAAG;IAC5B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
+{"version":3,"file":"user-picker.d.ts","sourceRoot":"","sources":["../../../../src/ui-modifications/types/fields/user-picker.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG,MAAM,GAAG,IAAI,CAAC;AAEpD,MAAM,MAAM,eAAe,GAAG;IAC5B,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,IAAI,CAAC"}
\ No newline at end of file
Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,6 +1,12 @@
 # @forge/jira-bridge
 
+## 0.40.1-experimental-04cc2b9
+
+### Major Changes
+
+- d9ef926: Adds support for TypeScript 5
+
 ## 0.40.1
 
 ### Patch Changes
Index: package/out/ui-modifications/types/fields/assignee.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/assignee.d.ts
+++ package/out/ui-modifications/types/fields/assignee.d.ts
@@ -1,5 +1,5 @@
-export declare type AssigneeFieldSetValue = string | null;
-export declare type AssigneeField = {
+export type AssigneeFieldSetValue = string | null;
+export type AssigneeField = {
     accountId: string;
 } | null;
 //# sourceMappingURL=assignee.d.ts.map
\ No newline at end of file
Index: package/out/bridge.d.ts
===================================================================
--- package/out/bridge.d.ts
+++ package/out/bridge.d.ts
@@ -1,2 +1,2 @@
-export declare const getCallBridge: () => Window['__bridge']['callBridge'];
+export declare const getCallBridge: () => Window["__bridge"]["callBridge"];
 //# sourceMappingURL=bridge.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/cascading-select.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/cascading-select.d.ts
+++ package/out/ui-modifications/types/fields/cascading-select.d.ts
@@ -1,9 +1,9 @@
-export declare type CascadingSelectFieldSetValue = {
+export type CascadingSelectFieldSetValue = {
     childId: string | null;
     parentId: string;
 } | null;
-export declare type CascadingSelectField = {
+export type CascadingSelectField = {
     parent: {
         id: string;
         value: string;
     };
Index: package/out/ui-modifications/changesBuffer.d.ts
===================================================================
--- package/out/ui-modifications/changesBuffer.d.ts
+++ package/out/ui-modifications/changesBuffer.d.ts
@@ -1,7 +1,7 @@
 import { FieldId, FieldChanges, FormChanges, ReceivedScreenTabsData, ScreenTabId, ScreenTabChanges, ScreenTabsChanges } from './types';
-export declare type BufferedFormChanges = FormChanges;
-export declare type BufferedScreenTabsChanges = ScreenTabsChanges;
+export type BufferedFormChanges = FormChanges;
+export type BufferedScreenTabsChanges = ScreenTabsChanges;
 export declare class ChangesBuffer {
     private formBuffer;
     private screenTabsBuffer;
     getFormChanges(): BufferedFormChanges;
Index: package/out/ui-modifications/types/fields/checkboxes.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/checkboxes.d.ts
+++ package/out/ui-modifications/types/fields/checkboxes.d.ts
@@ -1,6 +1,6 @@
-export declare type CheckboxesFieldSetValue = string[];
-export declare type CheckboxesField = {
+export type CheckboxesFieldSetValue = string[];
+export type CheckboxesField = {
     id: string;
     value: string;
 }[];
 //# sourceMappingURL=checkboxes.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/components.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/components.d.ts
+++ package/out/ui-modifications/types/fields/components.d.ts
@@ -1,6 +1,6 @@
-export declare type ComponentsFieldSetValue = string[];
-export declare type ComponentsField = {
+export type ComponentsFieldSetValue = string[];
+export type ComponentsField = {
     id: string;
     name: string;
 }[];
 //# sourceMappingURL=components.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/date-picker.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/date-picker.d.ts
+++ package/out/ui-modifications/types/fields/date-picker.d.ts
@@ -1,2 +1,2 @@
-export declare type DatePickerField = string | null;
+export type DatePickerField = string | null;
 //# sourceMappingURL=date-picker.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/date-time.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/date-time.d.ts
+++ package/out/ui-modifications/types/fields/date-time.d.ts
@@ -1,2 +1,2 @@
-export declare type DateTimeField = string | null;
+export type DateTimeField = string | null;
 //# sourceMappingURL=date-time.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/description.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/description.d.ts
+++ package/out/ui-modifications/types/fields/description.d.ts
@@ -1,5 +1,5 @@
-export declare type DescriptionField<CONTENT = unknown> = {
+export type DescriptionField<CONTENT = unknown> = {
     version: 1;
     type: 'doc';
     content: CONTENT[];
 } | string;
Index: package/out/ui-modifications/types/errors.d.ts
===================================================================
--- package/out/ui-modifications/types/errors.d.ts
+++ package/out/ui-modifications/types/errors.d.ts
@@ -1,13 +1,13 @@
 import { Field, FieldId, FieldType } from './field-api';
-export declare type FIELD_VALIDATION_ERROR_TYPE = 'FIELD_VALIDATION_FAILED';
-export declare type SCREENTABS_VALIDATION_ERROR_TYPE = 'SCREENTABS_VALIDATION_FAILED';
-export declare type APPLY_CHANGES_FOR_UNREGISTERED_FIELD = 'APPLY_CHANGES_FOR_UNREGISTERED_FIELD';
-export declare type MULTIPLE_APPS_CONFLICT = 'MULTIPLE_APPS_CONFLICT';
-export declare type MULTIPLE_APPS_CONFLICT_CAUSE_FIELD = 'FIELD';
-export declare type MULTIPLE_APPS_CONFLICT_CAUSE_SCREENTABS = 'SCREENTABS';
-export declare type LifecycleHook = 'onInit' | 'onChange';
-export declare type ValidationError = {
+export type FIELD_VALIDATION_ERROR_TYPE = 'FIELD_VALIDATION_FAILED';
+export type SCREENTABS_VALIDATION_ERROR_TYPE = 'SCREENTABS_VALIDATION_FAILED';
+export type APPLY_CHANGES_FOR_UNREGISTERED_FIELD = 'APPLY_CHANGES_FOR_UNREGISTERED_FIELD';
+export type MULTIPLE_APPS_CONFLICT = 'MULTIPLE_APPS_CONFLICT';
+export type MULTIPLE_APPS_CONFLICT_CAUSE_FIELD = 'FIELD';
+export type MULTIPLE_APPS_CONFLICT_CAUSE_SCREENTABS = 'SCREENTABS';
+export type LifecycleHook = 'onInit' | 'onChange';
+export type ValidationError = {
     type: FIELD_VALIDATION_ERROR_TYPE;
     fieldId: string;
     fieldType: string;
     method: keyof Field<FieldType>;
@@ -15,15 +15,15 @@
 } | {
     type: SCREENTABS_VALIDATION_ERROR_TYPE;
     message?: string;
 };
-export declare type UnregisteredFieldError = {
+export type UnregisteredFieldError = {
     type: APPLY_CHANGES_FOR_UNREGISTERED_FIELD;
     message: string;
     fieldType: FieldType;
     fieldId: FieldId;
 };
-export declare type MultipleAppsConflict = {
+export type MultipleAppsConflict = {
     type: MULTIPLE_APPS_CONFLICT;
     cause: MULTIPLE_APPS_CONFLICT_CAUSE_FIELD;
     lifecycleHook: LifecycleHook;
     message: string;
Index: package/out/ui-modifications/types/extension.d.ts
===================================================================
--- package/out/ui-modifications/types/extension.d.ts
+++ package/out/ui-modifications/types/extension.d.ts
@@ -1,6 +1,6 @@
-declare type ViewTypes = 'GIC' | 'IssueView' | 'IssueTransition';
-declare type ExtensionBase<VIEW_TYPE extends ViewTypes> = {
+type ViewTypes = 'GIC' | 'IssueView' | 'IssueTransition';
+type ExtensionBase<VIEW_TYPE extends ViewTypes> = {
     type: 'jira:uiModifications';
     project: {
         id: string;
         key: string;
@@ -11,9 +11,9 @@
         name: string;
     };
     viewType: VIEW_TYPE;
 };
-export declare type UiModificationExtensionData = ExtensionBase<'GIC'> | (ExtensionBase<'IssueView'> & {
+export type UiModificationExtensionData = ExtensionBase<'GIC'> | (ExtensionBase<'IssueView'> & {
     issue: {
         id: string;
         key: string;
     };
Index: package/out/ui-modifications/types/field-api.d.ts
===================================================================
--- package/out/ui-modifications/types/field-api.d.ts
+++ package/out/ui-modifications/types/field-api.d.ts
@@ -16,9 +16,9 @@
 export declare const NUMBER_CF_TYPE = "com.atlassian.jira.plugin.system.customfieldtypes:float";
 export declare const CASCADING_SELECT_CF_TYPE = "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselect";
 export declare const PROJECT_CF_TYPE = "com.atlassian.jira.plugin.system.customfieldtypes:project";
 export declare const REQUEST_TYPE_CF_TYPE = "com.atlassian.servicedesk:vp-origin";
-export declare type FieldGetValue = {
+export type FieldGetValue = {
     assignee: AssigneeField;
     summary: SummaryField;
     labels: LabelsField;
     description: DescriptionField;
@@ -51,9 +51,9 @@
     [CASCADING_SELECT_CF_TYPE]: CascadingSelectField;
     [PROJECT_CF_TYPE]: ProjectPickerField;
     [REQUEST_TYPE_CF_TYPE]: RequestTypeField;
 };
-export declare type FieldSetValue = {
+export type FieldSetValue = {
     assignee: AssigneeFieldSetValue;
     summary: SummaryField;
     labels: LabelsField;
     description: DescriptionField;
@@ -86,15 +86,15 @@
     [CASCADING_SELECT_CF_TYPE]: CascadingSelectFieldSetValue;
     [PROJECT_CF_TYPE]: ProjectPickerFieldSetValue;
     [REQUEST_TYPE_CF_TYPE]: RequestTypeFieldSetValue;
 };
-export declare type FieldId = 'issuetype' | 'priority' | 'assignee' | 'summary' | 'description' | 'labels' | 'reporter' | 'components' | 'fixVersions' | 'versions' | 'parent' | 'status' | 'resolution' | 'duedate' | 'timeoriginalestimate' | string;
-export declare type FieldType = typeof PEOPLE_CF_TYPE | typeof CHECKBOXES_CF_TYPE | typeof SELECT_CF_TYPE | typeof PARAGRAPH_CF_TYPE | typeof MULTISELECT_CF_TYPE | typeof USER_CF_TYPE | typeof MULTI_USER_CF_TYPE | typeof TEXTFIELD_CF_TYPE | typeof URL_CF_TYPE | typeof DATE_PICKER_CF_TYPE | typeof TARGET_START_CF_TYPE | typeof TARGET_END_CF_TYPE | typeof DATETIME_CF_TYPE | typeof RADIO_BUTTONS_CF_TYPE | typeof NUMBER_CF_TYPE | typeof CASCADING_SELECT_CF_TYPE | typeof PROJECT_CF_TYPE | typeof REQUEST_TYPE_CF_TYPE | 'issuetype' | 'priority' | 'assignee' | 'summary' | 'description' | 'labels' | 'reporter' | 'components' | 'fixVersions' | 'versions' | 'parent' | 'status' | 'resolution' | 'duedate' | 'timeoriginalestimate';
-export declare type OptionsVisibility = {
+export type FieldId = 'issuetype' | 'priority' | 'assignee' | 'summary' | 'description' | 'labels' | 'reporter' | 'components' | 'fixVersions' | 'versions' | 'parent' | 'status' | 'resolution' | 'duedate' | 'timeoriginalestimate' | string;
+export type FieldType = typeof PEOPLE_CF_TYPE | typeof CHECKBOXES_CF_TYPE | typeof SELECT_CF_TYPE | typeof PARAGRAPH_CF_TYPE | typeof MULTISELECT_CF_TYPE | typeof USER_CF_TYPE | typeof MULTI_USER_CF_TYPE | typeof TEXTFIELD_CF_TYPE | typeof URL_CF_TYPE | typeof DATE_PICKER_CF_TYPE | typeof TARGET_START_CF_TYPE | typeof TARGET_END_CF_TYPE | typeof DATETIME_CF_TYPE | typeof RADIO_BUTTONS_CF_TYPE | typeof NUMBER_CF_TYPE | typeof CASCADING_SELECT_CF_TYPE | typeof PROJECT_CF_TYPE | typeof REQUEST_TYPE_CF_TYPE | 'issuetype' | 'priority' | 'assignee' | 'summary' | 'description' | 'labels' | 'reporter' | 'components' | 'fixVersions' | 'versions' | 'parent' | 'status' | 'resolution' | 'duedate' | 'timeoriginalestimate';
+export type OptionsVisibility = {
     options: string[];
     isVisible: boolean;
 };
-export declare type FieldOptionsVisibility = {
+export type FieldOptionsVisibility = {
     priority?: OptionsVisibility;
     assignee: undefined;
     reporter: undefined;
     components: undefined;
@@ -127,9 +127,9 @@
     [CASCADING_SELECT_CF_TYPE]: undefined;
     [PROJECT_CF_TYPE]: undefined;
     [REQUEST_TYPE_CF_TYPE]?: OptionsVisibility;
 };
-export declare type Field<FIELD_TYPE extends FieldType> = {
+export type Field<FIELD_TYPE extends FieldType> = {
     getId: () => FieldId;
     getType: () => FieldType;
     getName: () => string;
     setName: (name: string) => Field<FIELD_TYPE>;
Index: package/out/ui-modifications/types/fields/fix-versions.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/fix-versions.d.ts
+++ package/out/ui-modifications/types/fields/fix-versions.d.ts
@@ -1,8 +1,8 @@
-export declare type VersionsFieldSetValue = string[];
-export declare type VersionsField = {
+export type VersionsFieldSetValue = string[];
+export type VersionsField = {
     id: string;
     name: string;
 }[];
-export declare type FixVersionsFieldSetValue = VersionsFieldSetValue;
-export declare type FixVersionsField = VersionsField;
+export type FixVersionsFieldSetValue = VersionsFieldSetValue;
+export type FixVersionsField = VersionsField;
 //# sourceMappingURL=fix-versions.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/index.d.ts
===================================================================
--- package/out/ui-modifications/types/index.d.ts
+++ package/out/ui-modifications/types/index.d.ts
@@ -1,9 +1,9 @@
 import { ERROR_TYPES } from '../../errors';
 import { Field, FieldGetValue, FieldId, FieldsHookApi, FieldType, OptionsVisibility } from './field-api';
 import { ValidationError, MultipleAppsConflict, UnregisteredFieldError } from './errors';
 import { ScreenTab, ScreenTabId, ScreenTabsHookApi } from './screen-tab-api';
-export declare type HookApi = FieldsHookApi & Partial<ScreenTabsHookApi>;
+export type HookApi = FieldsHookApi & Partial<ScreenTabsHookApi>;
 export interface ReceivedFieldData<FIELD_VALUE> {
     value: FIELD_VALUE;
     description: string;
     fieldId: FieldId;
@@ -13,15 +13,15 @@
     isReadOnly: boolean;
     isRequired: boolean;
     optionsVisibility?: OptionsVisibility;
 }
-export declare type ReceivedFormData = Record<FieldId, ReceivedFieldData<FieldGetValue[FieldType]>>;
+export type ReceivedFormData = Record<FieldId, ReceivedFieldData<FieldGetValue[FieldType]>>;
 export interface ReceivedScreenTabData {
     id: ScreenTabId;
     isVisible: boolean;
     isActive: boolean;
 }
-export declare type ReceivedScreenTabsData = ReceivedScreenTabData[];
+export type ReceivedScreenTabsData = ReceivedScreenTabData[];
 export interface FieldChanges {
     description?: string;
     fieldName?: string;
     isVisible?: boolean;
@@ -34,32 +34,32 @@
     id: ScreenTabId;
     isVisible: boolean;
     isActive: boolean;
 }
-export declare type FormChanges = Partial<Record<FieldId, FieldChanges>>;
-export declare type ScreenTabsChanges = ScreenTabChanges[];
-export declare type UiModification = {
+export type FormChanges = Partial<Record<FieldId, FieldChanges>>;
+export type ScreenTabsChanges = ScreenTabChanges[];
+export type UiModification = {
     id: string;
     data?: string;
 };
-export declare type UniqueId = string;
-export declare type SubscribeToChangesCallbackPayload = {
+export type UniqueId = string;
+export type SubscribeToChangesCallbackPayload = {
     changedFieldId: FieldId;
     changeId: UniqueId;
     currentFormState: ReceivedFormData;
     currentScreenTabsState?: ReceivedScreenTabsData;
     uiModifications: UiModification[];
 };
-export declare type GetOnInitData = {
+export type GetOnInitData = {
     currentFormState: ReceivedFormData;
     currentScreenTabsState?: ReceivedScreenTabsData;
 };
-declare type BridgeError = (typeof ERROR_TYPES)[number];
-export declare type SubscribeToErrorsCallbackPayload = {
+type BridgeError = (typeof ERROR_TYPES)[number];
+export type SubscribeToErrorsCallbackPayload = {
     errors: (ValidationError | UnregisteredFieldError | MultipleAppsConflict)[];
 };
-export declare type ErrorCallback = (payload: SubscribeToErrorsCallbackPayload) => void;
-export declare type PublicFeatureFlags = Record<string, boolean>;
+export type ErrorCallback = (payload: SubscribeToErrorsCallbackPayload) => void;
+export type PublicFeatureFlags = Record<string, boolean>;
 export interface UiModificationsInternalAPI {
     data: {
         onInitChangeId: UniqueId;
         uiModifications: UiModification[];
Index: package/out/ui-modifications/types/fields/issue-type.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/issue-type.d.ts
+++ package/out/ui-modifications/types/fields/issue-type.d.ts
@@ -1,6 +1,6 @@
-export declare type IssueTypeFieldSetValue = string;
-export declare type IssueTypeField = {
+export type IssueTypeFieldSetValue = string;
+export type IssueTypeField = {
     id: string;
     name: string;
 };
 //# sourceMappingURL=issue-type.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/labels.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/labels.d.ts
+++ package/out/ui-modifications/types/fields/labels.d.ts
@@ -1,2 +1,2 @@
-export declare type LabelsField = string[];
+export type LabelsField = string[];
 //# sourceMappingURL=labels.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/multi-select.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/multi-select.d.ts
+++ package/out/ui-modifications/types/fields/multi-select.d.ts
@@ -1,6 +1,6 @@
-export declare type MultiSelectFieldSetValue = string[];
-export declare type MultiSelectField = {
+export type MultiSelectFieldSetValue = string[];
+export type MultiSelectField = {
     id: string;
     value: string;
 }[];
 //# sourceMappingURL=multi-select.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/multi-user-picker.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/multi-user-picker.d.ts
+++ package/out/ui-modifications/types/fields/multi-user-picker.d.ts
@@ -1,5 +1,5 @@
-export declare type MultiUserPickerFieldSetValue = string[];
-export declare type MultiUserPickerField = {
+export type MultiUserPickerFieldSetValue = string[];
+export type MultiUserPickerField = {
     accountId: string;
 }[];
 //# sourceMappingURL=multi-user-picker.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/number.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/number.d.ts
+++ package/out/ui-modifications/types/fields/number.d.ts
@@ -1,2 +1,2 @@
-export declare type NumberField = number | null;
+export type NumberField = number | null;
 //# sourceMappingURL=number.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/onChange.d.ts
===================================================================
--- package/out/ui-modifications/onChange.d.ts
+++ package/out/ui-modifications/onChange.d.ts
@@ -1,15 +1,15 @@
 import type { Field, FieldId, HookApi, UiModification } from './types';
 import { FieldType } from './types/field-api';
-export declare type FieldChange = {
+export type FieldChange = {
     current?: Field<FieldType>;
 };
-export declare type OnChangeHookCallback = (props: {
+export type OnChangeHookCallback = (props: {
     api: HookApi;
     change: FieldChange;
     uiModifications: UiModification[];
 }) => Promise<void> | void;
-export declare type RegisterOnChangeFieldsCallback = (payload: {
+export type RegisterOnChangeFieldsCallback = (payload: {
     uiModifications: UiModification[];
     change: FieldChange;
 }) => Array<FieldId>;
 export declare function onChange(onChangeCallback: OnChangeHookCallback, registerOnChangeFieldsCallback: RegisterOnChangeFieldsCallback): Promise<void>;
Index: package/out/ui-modifications/onInit.d.ts
===================================================================
--- package/out/ui-modifications/onInit.d.ts
+++ package/out/ui-modifications/onInit.d.ts
@@ -1,10 +1,10 @@
 import type { FieldId, HookApi, UiModification } from './types';
-export declare type OnInitHookCallback = (props: {
+export type OnInitHookCallback = (props: {
     api: HookApi;
     uiModifications: UiModification[];
 }) => Promise<void> | void;
-export declare type RegisterOnInitFieldsCallback = (props: {
+export type RegisterOnInitFieldsCallback = (props: {
     uiModifications: UiModification[];
 }) => Array<FieldId>;
 export declare function onInit(onInitCallback: OnInitHookCallback, registerOnInitFieldsCallback: RegisterOnInitFieldsCallback): Promise<void>;
 //# sourceMappingURL=onInit.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/original-estimate.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/original-estimate.d.ts
+++ package/out/ui-modifications/types/fields/original-estimate.d.ts
@@ -1,2 +1,2 @@
-export declare type OriginalEstimateField = number | null;
+export type OriginalEstimateField = number | null;
 //# sourceMappingURL=original-estimate.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/paragraph.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/paragraph.d.ts
+++ package/out/ui-modifications/types/fields/paragraph.d.ts
@@ -1,5 +1,5 @@
-export declare type ParagraphField<CONTENT = unknown> = {
+export type ParagraphField<CONTENT = unknown> = {
     version: 1;
     type: 'doc';
     content: CONTENT[];
 } | string;
Index: package/out/ui-modifications/types/fields/parent.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/parent.d.ts
+++ package/out/ui-modifications/types/fields/parent.d.ts
@@ -1,6 +1,6 @@
-export declare type ParentFieldSetValue = string | null;
-export declare type ParentField = {
+export type ParentFieldSetValue = string | null;
+export type ParentField = {
     id: string;
     key: string;
 } | null;
 //# sourceMappingURL=parent.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/people.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/people.d.ts
+++ package/out/ui-modifications/types/fields/people.d.ts
@@ -1,5 +1,5 @@
-export declare type PeopleFieldSetValue = string[];
-export declare type PeopleField = {
+export type PeopleFieldSetValue = string[];
+export type PeopleField = {
     accountId: string;
 }[];
 //# sourceMappingURL=people.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/priority.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/priority.d.ts
+++ package/out/ui-modifications/types/fields/priority.d.ts
@@ -1,6 +1,6 @@
-export declare type PriorityFieldSetValue = string;
-export declare type PriorityField = {
+export type PriorityFieldSetValue = string;
+export type PriorityField = {
     iconUrl?: string;
     name: string;
     id: string;
 };
Index: package/out/ui-modifications/types/fields/project-picker.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/project-picker.d.ts
+++ package/out/ui-modifications/types/fields/project-picker.d.ts
@@ -1,5 +1,5 @@
-export declare type ProjectPickerFieldSetValue = string | null;
-export declare type ProjectPickerField = {
+export type ProjectPickerFieldSetValue = string | null;
+export type ProjectPickerField = {
     projectId: string;
 } | null;
 //# sourceMappingURL=project-picker.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/radio-buttons.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/radio-buttons.d.ts
+++ package/out/ui-modifications/types/fields/radio-buttons.d.ts
@@ -1,6 +1,6 @@
-export declare type RadioButtonsFieldSetValue = string | null;
-export declare type RadioButtonsField = {
+export type RadioButtonsFieldSetValue = string | null;
+export type RadioButtonsField = {
     id: string;
     value: string;
 } | null;
 //# sourceMappingURL=radio-buttons.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/reporter.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/reporter.d.ts
+++ package/out/ui-modifications/types/fields/reporter.d.ts
@@ -1,5 +1,5 @@
-export declare type ReporterFieldSetValue = string | null;
-export declare type ReporterField = {
+export type ReporterFieldSetValue = string | null;
+export type ReporterField = {
     accountId: string;
 } | null;
 //# sourceMappingURL=reporter.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/request-type.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/request-type.d.ts
+++ package/out/ui-modifications/types/fields/request-type.d.ts
@@ -1,5 +1,5 @@
-export declare type RequestTypeFieldSetValue = string | null;
-export declare type RequestTypeField = {
+export type RequestTypeFieldSetValue = string | null;
+export type RequestTypeField = {
     requestTypeId: string;
 } | null;
 //# sourceMappingURL=request-type.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/resolution.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/resolution.d.ts
+++ package/out/ui-modifications/types/fields/resolution.d.ts
@@ -1,6 +1,6 @@
-export declare type ResolutionSetValue = string | null;
-export declare type ResolutionField = {
+export type ResolutionSetValue = string | null;
+export type ResolutionField = {
     id: string;
     value: string;
 } | null;
 //# sourceMappingURL=resolution.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/screen-tab-api.d.ts
===================================================================
--- package/out/ui-modifications/types/screen-tab-api.d.ts
+++ package/out/ui-modifications/types/screen-tab-api.d.ts
@@ -1,6 +1,6 @@
-export declare type ScreenTabId = string;
-export declare type ScreenTab = {
+export type ScreenTabId = string;
+export type ScreenTab = {
     getId: () => ScreenTabId;
     isVisible: () => boolean;
     setVisible: (isVisible: boolean) => ScreenTab;
     focus: () => ScreenTab;
Index: package/out/ui-modifications/types/fields/select.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/select.d.ts
+++ package/out/ui-modifications/types/fields/select.d.ts
@@ -1,6 +1,6 @@
-export declare type SelectFieldSetValue = string | null;
-export declare type SelectField = {
+export type SelectFieldSetValue = string | null;
+export type SelectField = {
     id: string;
     value: string;
 } | null;
 //# sourceMappingURL=select.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/status.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/status.d.ts
+++ package/out/ui-modifications/types/fields/status.d.ts
@@ -1,6 +1,6 @@
-export declare type StatusFieldSetValue = string;
-export declare type StatusField = {
+export type StatusFieldSetValue = string;
+export type StatusField = {
     id: string;
     name: string;
 };
 //# sourceMappingURL=status.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/summary.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/summary.d.ts
+++ package/out/ui-modifications/types/fields/summary.d.ts
@@ -1,2 +1,2 @@
-export declare type SummaryField = string;
+export type SummaryField = string;
 //# sourceMappingURL=summary.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/text-field.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/text-field.d.ts
+++ package/out/ui-modifications/types/fields/text-field.d.ts
@@ -1,2 +1,2 @@
-export declare type TextField = string;
+export type TextField = string;
 //# sourceMappingURL=text-field.d.ts.map
\ No newline at end of file
Index: package/out/custom-field/types.d.ts
===================================================================
--- package/out/custom-field/types.d.ts
+++ package/out/custom-field/types.d.ts
@@ -1,5 +1,5 @@
-export declare type FieldData = {
+export type FieldData = {
     fieldValue: unknown;
 };
 export interface CustomFieldInternalAPI {
     actions: {
Index: package/out/modal/types.d.ts
===================================================================
--- package/out/modal/types.d.ts
+++ package/out/modal/types.d.ts
@@ -6,9 +6,9 @@
         issueKey: string;
     };
     onClose?: () => void;
 }
-export declare type CreateIssueModalContext = {
+export type CreateIssueModalContext = {
     projectId?: string;
     issueTypeId?: string;
     parentId?: string;
     summary?: string;
Index: package/out/workflow/types.d.ts
===================================================================
--- package/out/workflow/types.d.ts
+++ package/out/workflow/types.d.ts
@@ -1,6 +1,6 @@
-export declare type OnConfigureResponse = string;
-export declare type OnConfigureFn = () => Promise<OnConfigureResponse> | OnConfigureResponse;
+export type OnConfigureResponse = string;
+export type OnConfigureFn = () => Promise<OnConfigureResponse> | OnConfigureResponse;
 export interface SetWorkflowRuleConfigurationOptions {
     onConfigure?: OnConfigureFn;
 }
 //# sourceMappingURL=types.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/url.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/url.d.ts
+++ package/out/ui-modifications/types/fields/url.d.ts
@@ -1,2 +1,2 @@
-export declare type UrlField = string;
+export type UrlField = string;
 //# sourceMappingURL=url.d.ts.map
\ No newline at end of file
Index: package/out/ui-modifications/types/fields/user-picker.d.ts
===================================================================
--- package/out/ui-modifications/types/fields/user-picker.d.ts
+++ package/out/ui-modifications/types/fields/user-picker.d.ts
@@ -1,5 +1,5 @@
-export declare type UserPickerFieldSetValue = string | null;
-export declare type UserPickerField = {
+export type UserPickerFieldSetValue = string | null;
+export type UserPickerField = {
     accountId: string;
 } | null;
 //# sourceMappingURL=user-picker.d.ts.map
\ No newline at end of file