@intuitionrobotics/bug-report 2.0.1 → 2.0.3

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.
@@ -1,2 +1,3 @@
1
- export declare const bugReportRoutes: import("express-serve-static-core").Router;
1
+ import { Router } from "express";
2
+ export declare const bugReportRoutes: Router;
2
3
  //# sourceMappingURL=routes.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/main/app-backend/api/routes.ts"],"names":[],"mappings":"AAiBA,eAAO,MAAM,eAAe,4CAAW,CAAC"}
1
+ {"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/main/app-backend/api/routes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,MAAM,EAAC,MAAM,SAAS,CAAC;AAa/B,eAAO,MAAM,eAAe,EAAE,MAAiB,CAAC"}
@@ -1,14 +1,13 @@
1
1
  // Auto-generated by thunderstorm-bootstrap-routes — initial seed.
2
2
  // Hand-edit this from here. The tool runs ONCE; do not regenerate.
3
3
  import { Router } from "express";
4
- import { mount } from "@intuitionrobotics/thunderstorm/backend";
5
4
  import download from "./v1/bug-reports/download.js";
6
5
  import getLogs from "./v1/bug-reports/get-logs.js";
7
6
  import reports from "./v1/bug-reports/reports.js";
8
7
  const bugReports = Router();
9
- mount(bugReports, "/download-logs", download);
10
- mount(bugReports, "/get-logs", getLogs);
11
- mount(bugReports, "/report", reports);
8
+ bugReports.post("/download", download.handler);
9
+ bugReports.get("/get-logs", getLogs.handler);
10
+ bugReports.post("/reports", reports.handler);
12
11
  const v1 = Router();
13
12
  v1.use("/bug-reports", bugReports);
14
13
  export const bugReportRoutes = Router();
@@ -1 +1 @@
1
- {"version":3,"file":"routes.js","sourceRoot":"","sources":["../../../src/main/app-backend/api/routes.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,mEAAmE;AAEnE,OAAO,EAAC,MAAM,EAAC,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAC,KAAK,EAAC,MAAM,yCAAyC,CAAC;AAE9D,OAAO,QAAQ,MAAM,8BAA8B,CAAC;AACpD,OAAO,OAAO,MAAM,8BAA8B,CAAC;AACnD,OAAO,OAAO,MAAM,6BAA6B,CAAC;AAClD,MAAM,UAAU,GAAG,MAAM,EAAE,CAAC;AAC5B,KAAK,CAAC,UAAU,EAAE,gBAAgB,EAAE,QAAQ,CAAC,CAAC;AAC9C,KAAK,CAAC,UAAU,EAAE,WAAW,EAAE,OAAO,CAAC,CAAC;AACxC,KAAK,CAAC,UAAU,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AAEtC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AACpB,EAAE,CAAC,GAAG,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;AAEnC,MAAM,CAAC,MAAM,eAAe,GAAG,MAAM,EAAE,CAAC;AACxC,eAAe,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC"}
1
+ {"version":3,"file":"routes.js","sourceRoot":"","sources":["../../../src/main/app-backend/api/routes.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,mEAAmE;AAEnE,OAAO,EAAC,MAAM,EAAC,MAAM,SAAS,CAAC;AAE/B,OAAO,QAAQ,MAAM,8BAA8B,CAAC;AACpD,OAAO,OAAO,MAAM,8BAA8B,CAAC;AACnD,OAAO,OAAO,MAAM,6BAA6B,CAAC;AAClD,MAAM,UAAU,GAAG,MAAM,EAAE,CAAC;AAC5B,UAAU,CAAC,IAAI,CAAC,WAAW,EAAE,QAAQ,CAAC,OAAO,CAAC,CAAC;AAC/C,UAAU,CAAC,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;AAC7C,UAAU,CAAC,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;AAE7C,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AACpB,EAAE,CAAC,GAAG,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;AAEnC,MAAM,CAAC,MAAM,eAAe,GAAW,MAAM,EAAE,CAAC;AAChD,eAAe,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC"}
@@ -1,6 +1,6 @@
1
- import { ApiResponse, type ExpressRequest, ServerApi_Post } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, type ExpressRequest, ServerApi } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { type ApiPostPath, type Paths } from "./_imports.js";
3
- declare class ServerApi_DownloadLogs extends ServerApi_Post<ApiPostPath> {
3
+ declare class ServerApi_DownloadLogs extends ServerApi<ApiPostPath> {
4
4
  constructor();
5
5
  protected process(request: ExpressRequest, response: ApiResponse, queryParams: {}, body: Paths): Promise<{
6
6
  fileName: string;
@@ -1 +1 @@
1
- {"version":3,"file":"download.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/download.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EACX,KAAK,cAAc,EACnB,cAAc,EACd,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAEN,KAAK,WAAW,EAChB,KAAK,KAAK,EACV,MAAM,eAAe,CAAC;AAEvB,cAAM,sBACL,SAAQ,cAAc,CAAC,WAAW,CAAC;;cAMnB,OAAO,CAAC,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,KAAK;;;;;CAGpG;;AAED,wBAA4C"}
1
+ {"version":3,"file":"download.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/download.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAE,KAAK,cAAc,EAAc,SAAS,EAAC,MAAM,yCAAyC,CAAC;AAChH,OAAO,EAEN,KAAK,WAAW,EAChB,KAAK,KAAK,EACV,MAAM,eAAe,CAAC;AAEvB,cAAM,sBACL,SAAQ,SAAS,CAAC,WAAW,CAAC;;cAMd,OAAO,CAAC,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,KAAK;;;;;CAGpG;;AAED,wBAA4C"}
@@ -1,8 +1,8 @@
1
- import { ApiResponse, ServerApi_Post } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, HttpMethod, ServerApi } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { AdminBRModule } from "./_imports.js";
3
- class ServerApi_DownloadLogs extends ServerApi_Post {
3
+ class ServerApi_DownloadLogs extends ServerApi {
4
4
  constructor() {
5
- super();
5
+ super(HttpMethod.POST);
6
6
  }
7
7
  async process(request, response, queryParams, body) {
8
8
  return AdminBRModule.downloadFiles(body);
@@ -1 +1 @@
1
- {"version":3,"file":"download.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/download.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EAEX,cAAc,EACd,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACN,aAAa,EAGb,MAAM,eAAe,CAAC;AAEvB,MAAM,sBACL,SAAQ,cAA2B;IAEnC;QACC,KAAK,EAAE,CAAC;IACT,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,OAAuB,EAAE,QAAqB,EAAE,WAAe,EAAE,IAAW;QACnG,OAAO,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;CACD;AAED,eAAe,IAAI,sBAAsB,EAAE,CAAC"}
1
+ {"version":3,"file":"download.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/download.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAuB,UAAU,EAAE,SAAS,EAAC,MAAM,yCAAyC,CAAC;AAChH,OAAO,EACN,aAAa,EAGb,MAAM,eAAe,CAAC;AAEvB,MAAM,sBACL,SAAQ,SAAsB;IAE9B;QACC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,OAAuB,EAAE,QAAqB,EAAE,WAAe,EAAE,IAAW;QACnG,OAAO,aAAa,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IAC1C,CAAC;CACD;AAED,eAAe,IAAI,sBAAsB,EAAE,CAAC"}
@@ -1,6 +1,6 @@
1
- import { ApiResponse, type ExpressRequest, ServerApi_Get } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, type ExpressRequest, ServerApi } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { type ApiGetLog } from "./_imports.js";
3
- declare class ServerApi_GetReport extends ServerApi_Get<ApiGetLog> {
3
+ declare class ServerApi_GetReport extends ServerApi<ApiGetLog> {
4
4
  constructor();
5
5
  protected process(_request: ExpressRequest, _response: ApiResponse, _queryParams: {}, _body: void): Promise<import("./_imports.js").DB_BugReport[]>;
6
6
  }
@@ -1 +1 @@
1
- {"version":3,"file":"get-logs.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/get-logs.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EACX,KAAK,cAAc,EACnB,aAAa,EACb,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAEN,KAAK,SAAS,EACd,MAAM,eAAe,CAAC;AAEvB,cAAM,mBACL,SAAQ,aAAa,CAAC,SAAS,CAAC;;cAMhB,OAAO,CAAC,QAAQ,EAAE,cAAc,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI;CAGvG;;AAED,wBAAyC"}
1
+ {"version":3,"file":"get-logs.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/get-logs.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAE,KAAK,cAAc,EAAc,SAAS,EAAC,MAAM,yCAAyC,CAAC;AAChH,OAAO,EAEN,KAAK,SAAS,EACd,MAAM,eAAe,CAAC;AAEvB,cAAM,mBACL,SAAQ,SAAS,CAAC,SAAS,CAAC;;cAMZ,OAAO,CAAC,QAAQ,EAAE,cAAc,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI;CAGvG;;AAED,wBAAyC"}
@@ -1,8 +1,8 @@
1
- import { ApiResponse, ServerApi_Get, } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, HttpMethod, ServerApi } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { AdminBRModule } from "./_imports.js";
3
- class ServerApi_GetReport extends ServerApi_Get {
3
+ class ServerApi_GetReport extends ServerApi {
4
4
  constructor() {
5
- super();
5
+ super(HttpMethod.GET);
6
6
  }
7
7
  async process(_request, _response, _queryParams, _body) {
8
8
  return AdminBRModule.getFilesFirebase();
@@ -1 +1 @@
1
- {"version":3,"file":"get-logs.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/get-logs.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EAEX,aAAa,GACb,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACN,aAAa,EAEb,MAAM,eAAe,CAAC;AAEvB,MAAM,mBACL,SAAQ,aAAwB;IAEhC;QACC,KAAK,EAAE,CAAC;IACT,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,QAAwB,EAAE,SAAsB,EAAE,YAAgB,EAAE,KAAW;QACtG,OAAO,aAAa,CAAC,gBAAgB,EAAE,CAAC;IACzC,CAAC;CACD;AAED,eAAe,IAAI,mBAAmB,EAAE,CAAC"}
1
+ {"version":3,"file":"get-logs.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/get-logs.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAuB,UAAU,EAAE,SAAS,EAAC,MAAM,yCAAyC,CAAC;AAChH,OAAO,EACN,aAAa,EAEb,MAAM,eAAe,CAAC;AAEvB,MAAM,mBACL,SAAQ,SAAoB;IAE5B;QACC,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;IACvB,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,QAAwB,EAAE,SAAsB,EAAE,YAAgB,EAAE,KAAW;QACtG,OAAO,aAAa,CAAC,gBAAgB,EAAE,CAAC;IACzC,CAAC;CACD;AAED,eAAe,IAAI,mBAAmB,EAAE,CAAC"}
@@ -1,6 +1,6 @@
1
- import { ApiResponse, type ExpressRequest, ServerApi_Post } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, type ExpressRequest, ServerApi } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { type ApiBugReport, type Request_BugReport } from "./_imports.js";
3
- declare class ServerApi_SendReport extends ServerApi_Post<ApiBugReport> {
3
+ declare class ServerApi_SendReport extends ServerApi<ApiBugReport> {
4
4
  constructor();
5
5
  protected process(request: ExpressRequest, response: ApiResponse, queryParams: {}, body: Request_BugReport): Promise<import("./_imports.js").TicketDetails[]>;
6
6
  }
@@ -1 +1 @@
1
- {"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/reports.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EAEX,KAAK,cAAc,EACnB,cAAc,EACd,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACN,KAAK,YAAY,EAEjB,KAAK,iBAAiB,EACtB,MAAM,eAAe,CAAC;AAKvB,cAAM,oBACL,SAAQ,cAAc,CAAC,YAAY,CAAC;;cAgBpB,OAAO,CAAC,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,iBAAiB;CAMhH;;AAED,wBAA0C"}
1
+ {"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/reports.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAE,KAAK,cAAc,EAAc,SAAS,EAA4B,MAAM,yCAAyC,CAAC;AAC3I,OAAO,EACN,KAAK,YAAY,EAEjB,KAAK,iBAAiB,EACtB,MAAM,eAAe,CAAC;AAKvB,cAAM,oBACL,SAAQ,SAAS,CAAC,YAAY,CAAC;;cAgBf,OAAO,CAAC,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,iBAAiB;CAMhH;;AAED,wBAA0C"}
@@ -1,10 +1,10 @@
1
- import { ApiResponse, dispatch_queryRequestInfo, ServerApi_Post, } from "@intuitionrobotics/thunderstorm/backend";
1
+ import { ApiResponse, HttpMethod, ServerApi, dispatch_queryRequestInfo } from "@intuitionrobotics/thunderstorm/backend";
2
2
  import { BugReportModule } from "./_imports.js";
3
3
  import { validateArray, validateObjectValues, validateString } from "@intuitionrobotics/ts-common";
4
4
  // import {AccountModule} from "@intuitionrobotics/user-account/backend";
5
- class ServerApi_SendReport extends ServerApi_Post {
5
+ class ServerApi_SendReport extends ServerApi {
6
6
  constructor() {
7
- super();
7
+ super(HttpMethod.POST);
8
8
  this.setBodyValidator({
9
9
  subject: validateString(),
10
10
  description: validateString(),
@@ -1 +1 @@
1
- {"version":3,"file":"reports.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/reports.ts"],"names":[],"mappings":"AACA,OAAO,EACN,WAAW,EACX,yBAAyB,EAEzB,cAAc,GACd,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAEN,eAAe,EAEf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,aAAa,EAAE,oBAAoB,EAAE,cAAc,EAAC,MAAM,8BAA8B,CAAC;AAEjG,yEAAyE;AAEzE,MAAM,oBACL,SAAQ,cAA4B;IAEpC;QACC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,gBAAgB,CACpB;YACC,OAAO,EAAE,cAAc,EAAE;YACzB,WAAW,EAAE,cAAc,EAAE;YAC7B,OAAO,EAAE,aAAa,CAAC,oBAAoB,CAAC;gBAC3C,IAAI,EAAE,cAAc,EAAE;gBACtB,GAAG,EAAE,aAAa,CAAC,cAAc,EAAE,CAAC;aAC7B,CAAC,CAAC;YACV,SAAS,EAAE,aAAa,CAAC,cAAc,EAAE,CAAC;SAC1C,CAAC,CAAA;IACJ,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,OAAuB,EAAE,QAAqB,EAAE,WAAe,EAAE,IAAuB;QAC/G,MAAM,IAAI,GAAG,MAAM,yBAAyB,CAAC,mBAAmB,CAAC,OAAO,CAAC,CAAC;QAC1E,MAAM,MAAM,GAAuB,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,gBAAgB,CAAC,EAAE,IAAI,EAAE,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,aAAa,CAAC,EAAE,IAAI,CAAC;QAE5I,OAAO,MAAM,eAAe,CAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACrD,CAAC;CACD;AAED,eAAe,IAAI,oBAAoB,EAAE,CAAC"}
1
+ {"version":3,"file":"reports.js","sourceRoot":"","sources":["../../../../../src/main/app-backend/api/v1/bug-reports/reports.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAuB,UAAU,EAAE,SAAS,EAAE,yBAAyB,EAAC,MAAM,yCAAyC,CAAC;AAC3I,OAAO,EAEN,eAAe,EAEf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,aAAa,EAAE,oBAAoB,EAAE,cAAc,EAAC,MAAM,8BAA8B,CAAC;AAEjG,yEAAyE;AAEzE,MAAM,oBACL,SAAQ,SAAuB;IAE/B;QACC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACvB,IAAI,CAAC,gBAAgB,CACpB;YACC,OAAO,EAAE,cAAc,EAAE;YACzB,WAAW,EAAE,cAAc,EAAE;YAC7B,OAAO,EAAE,aAAa,CAAC,oBAAoB,CAAC;gBAC3C,IAAI,EAAE,cAAc,EAAE;gBACtB,GAAG,EAAE,aAAa,CAAC,cAAc,EAAE,CAAC;aAC7B,CAAC,CAAC;YACV,SAAS,EAAE,aAAa,CAAC,cAAc,EAAE,CAAC;SAC1C,CAAC,CAAA;IACJ,CAAC;IAES,KAAK,CAAC,OAAO,CAAC,OAAuB,EAAE,QAAqB,EAAE,WAAe,EAAE,IAAuB;QAC/G,MAAM,IAAI,GAAG,MAAM,yBAAyB,CAAC,mBAAmB,CAAC,OAAO,CAAC,CAAC;QAC1E,MAAM,MAAM,GAAuB,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,gBAAgB,CAAC,EAAE,IAAI,EAAE,KAAK,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,aAAa,CAAC,EAAE,IAAI,CAAC;QAE5I,OAAO,MAAM,eAAe,CAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACrD,CAAC;CACD;AAED,eAAe,IAAI,oBAAoB,EAAE,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { type ApiWithBody, type ApiWithQuery } from "@intuitionrobotics/thunderstorm";
2
2
  import { type Auditable } from "@intuitionrobotics/ts-common";
3
- import { type TicketDetails } from "../app-backend/modules/BugReportModule.js";
3
+ import type { TicketDetails } from "../app-backend/modules/BugReportModule.js";
4
4
  type DB_Object = {
5
5
  _id: string;
6
6
  };
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/main/shared/api.ts"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAC,KAAK,aAAa,EAAC,MAAM,2CAA2C,CAAC;AAE7E,KAAK,SAAS,GAAG;IAChB,GAAG,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,SAAS,GAAG;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,EAAE,CAAA;CACb,CAAA;AAED,eAAO,MAAM,aAAa,SAAS,CAAC;AACpC,eAAO,MAAM,cAAc,UAAU,CAAC;AAEtC,MAAM,MAAM,iBAAiB,GAAG;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,SAAS,EAAE,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACpB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAA;CACf,CAAA;AACD,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,aAAa,EAAE,CAAA;IACxB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,aAAa,EAAE,CAAA;CACzB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACZ,CAAA;AAED,MAAM,MAAM,KAAK,GAAG;IACnB,IAAI,EAAE,MAAM,CAAA;CACZ,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACxB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,CAAC,MAAM,EAAE,YAAY,EAAE,CAAC,CAAA;AAC5D,MAAM,MAAM,WAAW,GAAG,WAAW,CAAC,+BAA+B,EAAE,KAAK,EAAE,UAAU,CAAC,CAAA;AACzF,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,wBAAwB,EAAE,iBAAiB,EAAE,aAAa,EAAE,CAAC,CAAA"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/main/shared/api.ts"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAK5D,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,2CAA2C,CAAC;AAE7E,KAAK,SAAS,GAAG;IAChB,GAAG,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,SAAS,GAAG;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,EAAE,CAAA;CACb,CAAA;AAED,eAAO,MAAM,aAAa,SAAS,CAAC;AACpC,eAAO,MAAM,cAAc,UAAU,CAAC;AAEtC,MAAM,MAAM,iBAAiB,GAAG;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,SAAS,EAAE,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACpB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAA;CACf,CAAA;AACD,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,aAAa,EAAE,CAAA;IACxB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,aAAa,EAAE,CAAA;CACzB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACZ,CAAA;AAED,MAAM,MAAM,KAAK,GAAG;IACnB,IAAI,EAAE,MAAM,CAAA;CACZ,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACxB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,SAAS,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,YAAY,CAAC,MAAM,EAAE,YAAY,EAAE,CAAC,CAAA;AAC5D,MAAM,MAAM,WAAW,GAAG,WAAW,CAAC,+BAA+B,EAAE,KAAK,EAAE,UAAU,CAAC,CAAA;AACzF,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,wBAAwB,EAAE,iBAAiB,EAAE,aAAa,EAAE,CAAC,CAAA"}
@@ -1,6 +1,5 @@
1
1
  import {} from "@intuitionrobotics/thunderstorm";
2
2
  import {} from "@intuitionrobotics/ts-common";
3
- import {} from "../app-backend/modules/BugReportModule.js";
4
3
  export const Platform_Jira = "jira";
5
4
  export const Platform_Slack = "slack";
6
5
  //# sourceMappingURL=api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/main/shared/api.ts"],"names":[],"mappings":"AACA,OAAO,EAGN,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAgB,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAoB,MAAM,2CAA2C,CAAC;AAW7E,MAAM,CAAC,MAAM,aAAa,GAAG,MAAM,CAAC;AACpC,MAAM,CAAC,MAAM,cAAc,GAAG,OAAO,CAAC"}
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/main/shared/api.ts"],"names":[],"mappings":"AACA,OAAO,EAGN,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAgB,MAAM,8BAA8B,CAAC;AAgB5D,MAAM,CAAC,MAAM,aAAa,GAAG,MAAM,CAAC;AACpC,MAAM,CAAC,MAAM,cAAc,GAAG,OAAO,CAAC"}