@otr-app/shared-backend-generated-client 2.5.167 → 2.5.168

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/dist/angular/.openapi-generator/FILES +2 -0
  2. package/dist/angular/api/lawfirmDashboardController.service.ts +60 -0
  3. package/dist/angular/model/ageBracketModel.ts +19 -0
  4. package/dist/angular/model/getActiveCasesByAgeResponse.ts +21 -0
  5. package/dist/angular/model/models.ts +2 -0
  6. package/dist/otrBackendService.js +34 -0
  7. package/dist/otrBackendService.min.js +5 -5
  8. package/dist/typescript/api/LawfirmDashboardControllerApi.d.ts +6 -0
  9. package/dist/typescript/api/LawfirmDashboardControllerApi.js +25 -0
  10. package/dist/typescript/model/AgeBracketModel.d.ts +16 -0
  11. package/dist/typescript/model/AgeBracketModel.js +12 -0
  12. package/dist/typescript/model/GetActiveCasesByAgeResponse.d.ts +18 -0
  13. package/dist/typescript/model/GetActiveCasesByAgeResponse.js +12 -0
  14. package/dist/typescript/model/models.d.ts +2 -0
  15. package/dist/typescript/model/models.js +2 -0
  16. package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.d.ts +12 -1
  17. package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.js +29 -1
  18. package/dist/typescript-fetch/models/AgeBracketModel.d.ts +39 -0
  19. package/dist/typescript-fetch/models/AgeBracketModel.js +40 -0
  20. package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.d.ts +46 -0
  21. package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.js +43 -0
  22. package/dist/typescript-fetch/models/index.d.ts +2 -0
  23. package/dist/typescript-fetch/models/index.js +2 -0
  24. package/dist/typescript-open-api/otr-backend.d.ts +79 -0
  25. package/package.json +1 -1
@@ -17,6 +17,12 @@ export declare class LawfirmDashboardControllerApi {
17
17
  defaultHeaders: any;
18
18
  static $inject: string[];
19
19
  constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
20
+ /**
21
+ *
22
+ * @summary getActiveCasesByAge
23
+ * @param lawfirmId lawfirmId
24
+ */
25
+ getActiveCasesByAgeUsingGET(lawfirmId: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetActiveCasesByAgeResponse>;
20
26
  /**
21
27
  *
22
28
  * @summary getLawfirmGrossEarnings
@@ -20,6 +20,31 @@ export class LawfirmDashboardControllerApi {
20
20
  this.basePath = basePath;
21
21
  }
22
22
  }
23
+ /**
24
+ *
25
+ * @summary getActiveCasesByAge
26
+ * @param lawfirmId lawfirmId
27
+ */
28
+ getActiveCasesByAgeUsingGET(lawfirmId, extraHttpRequestParams) {
29
+ const localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/dashboard/active-cases-by-age'
30
+ .replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
31
+ let queryParameters = {};
32
+ let headerParams = Object.assign({}, this.defaultHeaders);
33
+ // verify required parameter 'lawfirmId' is not null or undefined
34
+ if (lawfirmId === null || lawfirmId === undefined) {
35
+ throw new Error('Required parameter lawfirmId was null or undefined when calling getActiveCasesByAgeUsingGET.');
36
+ }
37
+ let httpRequestParams = {
38
+ method: 'GET',
39
+ url: localVarPath,
40
+ params: queryParameters,
41
+ headers: headerParams
42
+ };
43
+ if (extraHttpRequestParams) {
44
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
45
+ }
46
+ return this.$http(httpRequestParams);
47
+ }
23
48
  /**
24
49
  *
25
50
  * @summary getLawfirmGrossEarnings
@@ -0,0 +1,16 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface AgeBracketModel {
13
+ "bracket"?: string;
14
+ "count"?: number;
15
+ "percentageOfTotal"?: number;
16
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export {};
@@ -0,0 +1,18 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as models from './models';
13
+ export interface GetActiveCasesByAgeResponse {
14
+ "ageBreakdown"?: Array<models.AgeBracketModel>;
15
+ "medianAgeInDays"?: number;
16
+ "networkMedianAgeInDays"?: number;
17
+ "totalActiveCases"?: number;
18
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export {};
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
34
34
  export * from './AddressDomainRes';
35
35
  export * from './AddressEntity';
36
36
  export * from './Admin';
37
+ export * from './AgeBracketModel';
37
38
  export * from './AgentBookingStats';
38
39
  export * from './AgentBookingsSummary';
39
40
  export * from './AggregateBySource';
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
275
276
  export * from './GeoRatesRequest';
276
277
  export * from './GetAcceptedCaseBreakdownResponse';
277
278
  export * from './GetAccountManagersResponse';
279
+ export * from './GetActiveCasesByAgeResponse';
278
280
  export * from './GetActivityFeedResponse';
279
281
  export * from './GetAddressInnerResponse';
280
282
  export * from './GetAnonymousTicketUploads';
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
34
34
  export * from './AddressDomainRes';
35
35
  export * from './AddressEntity';
36
36
  export * from './Admin';
37
+ export * from './AgeBracketModel';
37
38
  export * from './AgentBookingStats';
38
39
  export * from './AgentBookingsSummary';
39
40
  export * from './AggregateBySource';
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
275
276
  export * from './GeoRatesRequest';
276
277
  export * from './GetAcceptedCaseBreakdownResponse';
277
278
  export * from './GetAccountManagersResponse';
279
+ export * from './GetActiveCasesByAgeResponse';
278
280
  export * from './GetActivityFeedResponse';
279
281
  export * from './GetAddressInnerResponse';
280
282
  export * from './GetAnonymousTicketUploads';
@@ -10,7 +10,10 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import { GetLawfirmGrossEarningsResponse, GetTopCourtEarningsResponse } from '../models';
13
+ import { GetActiveCasesByAgeResponse, GetLawfirmGrossEarningsResponse, GetTopCourtEarningsResponse } from '../models';
14
+ export interface GetActiveCasesByAgeUsingGETRequest {
15
+ lawfirmId: number;
16
+ }
14
17
  export interface GetLawfirmGrossEarningsUsingGETRequest {
15
18
  lawfirmId: number;
16
19
  period: GetLawfirmGrossEarningsUsingGETPeriodEnum;
@@ -27,6 +30,14 @@ export interface GetTopCourtEarningsUsingGETRequest {
27
30
  *
28
31
  */
29
32
  export declare class LawfirmDashboardControllerApi extends runtime.BaseAPI {
33
+ /**
34
+ * getActiveCasesByAge
35
+ */
36
+ getActiveCasesByAgeUsingGETRaw(requestParameters: GetActiveCasesByAgeUsingGETRequest): Promise<runtime.ApiResponse<GetActiveCasesByAgeResponse>>;
37
+ /**
38
+ * getActiveCasesByAge
39
+ */
40
+ getActiveCasesByAgeUsingGET(requestParameters: GetActiveCasesByAgeUsingGETRequest): Promise<GetActiveCasesByAgeResponse>;
30
41
  /**
31
42
  * getLawfirmGrossEarnings
32
43
  */
@@ -21,11 +21,39 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
21
21
  });
22
22
  };
23
23
  import * as runtime from '../runtime';
24
- import { GetLawfirmGrossEarningsResponseFromJSON, GetTopCourtEarningsResponseFromJSON, } from '../models';
24
+ import { GetActiveCasesByAgeResponseFromJSON, GetLawfirmGrossEarningsResponseFromJSON, GetTopCourtEarningsResponseFromJSON, } from '../models';
25
25
  /**
26
26
  *
27
27
  */
28
28
  export class LawfirmDashboardControllerApi extends runtime.BaseAPI {
29
+ /**
30
+ * getActiveCasesByAge
31
+ */
32
+ getActiveCasesByAgeUsingGETRaw(requestParameters) {
33
+ return __awaiter(this, void 0, void 0, function* () {
34
+ if (requestParameters.lawfirmId === null || requestParameters.lawfirmId === undefined) {
35
+ throw new runtime.RequiredError('lawfirmId', 'Required parameter requestParameters.lawfirmId was null or undefined when calling getActiveCasesByAgeUsingGET.');
36
+ }
37
+ const queryParameters = {};
38
+ const headerParameters = {};
39
+ const response = yield this.request({
40
+ path: `/api/v1/lawfirms/{lawfirmId}/dashboard/active-cases-by-age`.replace(`{${"lawfirmId"}}`, encodeURIComponent(String(requestParameters.lawfirmId))),
41
+ method: 'GET',
42
+ headers: headerParameters,
43
+ query: queryParameters,
44
+ });
45
+ return new runtime.JSONApiResponse(response, (jsonValue) => GetActiveCasesByAgeResponseFromJSON(jsonValue));
46
+ });
47
+ }
48
+ /**
49
+ * getActiveCasesByAge
50
+ */
51
+ getActiveCasesByAgeUsingGET(requestParameters) {
52
+ return __awaiter(this, void 0, void 0, function* () {
53
+ const response = yield this.getActiveCasesByAgeUsingGETRaw(requestParameters);
54
+ return yield response.value();
55
+ });
56
+ }
29
57
  /**
30
58
  * getLawfirmGrossEarnings
31
59
  */
@@ -0,0 +1,39 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface AgeBracketModel
16
+ */
17
+ export interface AgeBracketModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof AgeBracketModel
22
+ */
23
+ bracket?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof AgeBracketModel
28
+ */
29
+ count?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof AgeBracketModel
34
+ */
35
+ percentageOfTotal?: number;
36
+ }
37
+ export declare function AgeBracketModelFromJSON(json: any): AgeBracketModel;
38
+ export declare function AgeBracketModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgeBracketModel;
39
+ export declare function AgeBracketModelToJSON(value?: AgeBracketModel | null): any;
@@ -0,0 +1,40 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function AgeBracketModelFromJSON(json) {
16
+ return AgeBracketModelFromJSONTyped(json, false);
17
+ }
18
+ export function AgeBracketModelFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'bracket': !exists(json, 'bracket') ? undefined : json['bracket'],
24
+ 'count': !exists(json, 'count') ? undefined : json['count'],
25
+ 'percentageOfTotal': !exists(json, 'percentageOfTotal') ? undefined : json['percentageOfTotal'],
26
+ };
27
+ }
28
+ export function AgeBracketModelToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'bracket': value.bracket,
37
+ 'count': value.count,
38
+ 'percentageOfTotal': value.percentageOfTotal,
39
+ };
40
+ }
@@ -0,0 +1,46 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AgeBracketModel } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetActiveCasesByAgeResponse
17
+ */
18
+ export interface GetActiveCasesByAgeResponse {
19
+ /**
20
+ *
21
+ * @type {Array<AgeBracketModel>}
22
+ * @memberof GetActiveCasesByAgeResponse
23
+ */
24
+ ageBreakdown?: Array<AgeBracketModel>;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof GetActiveCasesByAgeResponse
29
+ */
30
+ medianAgeInDays?: number;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof GetActiveCasesByAgeResponse
35
+ */
36
+ networkMedianAgeInDays?: number;
37
+ /**
38
+ *
39
+ * @type {number}
40
+ * @memberof GetActiveCasesByAgeResponse
41
+ */
42
+ totalActiveCases?: number;
43
+ }
44
+ export declare function GetActiveCasesByAgeResponseFromJSON(json: any): GetActiveCasesByAgeResponse;
45
+ export declare function GetActiveCasesByAgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActiveCasesByAgeResponse;
46
+ export declare function GetActiveCasesByAgeResponseToJSON(value?: GetActiveCasesByAgeResponse | null): any;
@@ -0,0 +1,43 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ import { AgeBracketModelFromJSON, AgeBracketModelToJSON, } from './';
16
+ export function GetActiveCasesByAgeResponseFromJSON(json) {
17
+ return GetActiveCasesByAgeResponseFromJSONTyped(json, false);
18
+ }
19
+ export function GetActiveCasesByAgeResponseFromJSONTyped(json, ignoreDiscriminator) {
20
+ if ((json === undefined) || (json === null)) {
21
+ return json;
22
+ }
23
+ return {
24
+ 'ageBreakdown': !exists(json, 'ageBreakdown') ? undefined : (json['ageBreakdown'].map(AgeBracketModelFromJSON)),
25
+ 'medianAgeInDays': !exists(json, 'medianAgeInDays') ? undefined : json['medianAgeInDays'],
26
+ 'networkMedianAgeInDays': !exists(json, 'networkMedianAgeInDays') ? undefined : json['networkMedianAgeInDays'],
27
+ 'totalActiveCases': !exists(json, 'totalActiveCases') ? undefined : json['totalActiveCases'],
28
+ };
29
+ }
30
+ export function GetActiveCasesByAgeResponseToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'ageBreakdown': value.ageBreakdown === undefined ? undefined : (value.ageBreakdown.map(AgeBracketModelToJSON)),
39
+ 'medianAgeInDays': value.medianAgeInDays,
40
+ 'networkMedianAgeInDays': value.networkMedianAgeInDays,
41
+ 'totalActiveCases': value.totalActiveCases,
42
+ };
43
+ }
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
34
34
  export * from './AddressDomainRes';
35
35
  export * from './AddressEntity';
36
36
  export * from './Admin';
37
+ export * from './AgeBracketModel';
37
38
  export * from './AgentBookingStats';
38
39
  export * from './AgentBookingsSummary';
39
40
  export * from './AggregateBySource';
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
275
276
  export * from './GeoRatesRequest';
276
277
  export * from './GetAcceptedCaseBreakdownResponse';
277
278
  export * from './GetAccountManagersResponse';
279
+ export * from './GetActiveCasesByAgeResponse';
278
280
  export * from './GetActivityFeedResponse';
279
281
  export * from './GetAddressInnerResponse';
280
282
  export * from './GetAnonymousTicketUploads';
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
34
34
  export * from './AddressDomainRes';
35
35
  export * from './AddressEntity';
36
36
  export * from './Admin';
37
+ export * from './AgeBracketModel';
37
38
  export * from './AgentBookingStats';
38
39
  export * from './AgentBookingsSummary';
39
40
  export * from './AggregateBySource';
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
275
276
  export * from './GeoRatesRequest';
276
277
  export * from './GetAcceptedCaseBreakdownResponse';
277
278
  export * from './GetAccountManagersResponse';
279
+ export * from './GetActiveCasesByAgeResponse';
278
280
  export * from './GetActivityFeedResponse';
279
281
  export * from './GetAddressInnerResponse';
280
282
  export * from './GetAnonymousTicketUploads';
@@ -3879,6 +3879,23 @@ export interface paths {
3879
3879
  patch?: never;
3880
3880
  trace?: never;
3881
3881
  };
3882
+ "/api/v1/lawfirms/{lawfirmId}/dashboard/active-cases-by-age": {
3883
+ parameters: {
3884
+ query?: never;
3885
+ header?: never;
3886
+ path?: never;
3887
+ cookie?: never;
3888
+ };
3889
+ /** getActiveCasesByAge */
3890
+ get: operations["getActiveCasesByAgeUsingGET"];
3891
+ put?: never;
3892
+ post?: never;
3893
+ delete?: never;
3894
+ options?: never;
3895
+ head?: never;
3896
+ patch?: never;
3897
+ trace?: never;
3898
+ };
3882
3899
  "/api/v1/lawfirms/{lawfirmId}/dashboard/earnings/top-courts": {
3883
3900
  parameters: {
3884
3901
  query?: never;
@@ -7747,6 +7764,14 @@ export interface components {
7747
7764
  name?: string;
7748
7765
  type?: string;
7749
7766
  };
7767
+ /** AgeBracketModel */
7768
+ AgeBracketModel: {
7769
+ bracket?: string;
7770
+ /** Format: int32 */
7771
+ count?: number;
7772
+ /** Format: bigdecimal */
7773
+ percentageOfTotal?: number;
7774
+ };
7750
7775
  /** AgentBookingStats */
7751
7776
  AgentBookingStats: {
7752
7777
  /** Format: int32 */
@@ -10900,6 +10925,16 @@ export interface components {
10900
10925
  GetAccountManagersResponse: {
10901
10926
  accountManagers?: components["schemas"]["AccountManagerModel"][];
10902
10927
  };
10928
+ /** GetActiveCasesByAgeResponse */
10929
+ GetActiveCasesByAgeResponse: {
10930
+ ageBreakdown?: components["schemas"]["AgeBracketModel"][];
10931
+ /** Format: int64 */
10932
+ medianAgeInDays?: number;
10933
+ /** Format: int64 */
10934
+ networkMedianAgeInDays?: number;
10935
+ /** Format: int32 */
10936
+ totalActiveCases?: number;
10937
+ };
10903
10938
  /** GetActivityFeedResponse */
10904
10939
  GetActivityFeedResponse: {
10905
10940
  activity?: components["schemas"]["ActivityFeedModel"][];
@@ -29627,6 +29662,50 @@ export interface operations {
29627
29662
  };
29628
29663
  };
29629
29664
  };
29665
+ getActiveCasesByAgeUsingGET: {
29666
+ parameters: {
29667
+ query?: never;
29668
+ header?: never;
29669
+ path: {
29670
+ /** @description lawfirmId */
29671
+ lawfirmId: number;
29672
+ };
29673
+ cookie?: never;
29674
+ };
29675
+ requestBody?: never;
29676
+ responses: {
29677
+ /** @description OK */
29678
+ 200: {
29679
+ headers: {
29680
+ [name: string]: unknown;
29681
+ };
29682
+ content: {
29683
+ "*/*": components["schemas"]["GetActiveCasesByAgeResponse"];
29684
+ };
29685
+ };
29686
+ /** @description Unauthorized */
29687
+ 401: {
29688
+ headers: {
29689
+ [name: string]: unknown;
29690
+ };
29691
+ content?: never;
29692
+ };
29693
+ /** @description Forbidden */
29694
+ 403: {
29695
+ headers: {
29696
+ [name: string]: unknown;
29697
+ };
29698
+ content?: never;
29699
+ };
29700
+ /** @description Not Found */
29701
+ 404: {
29702
+ headers: {
29703
+ [name: string]: unknown;
29704
+ };
29705
+ content?: never;
29706
+ };
29707
+ };
29708
+ };
29630
29709
  getTopCourtEarningsUsingGET: {
29631
29710
  parameters: {
29632
29711
  query?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.167",
3
+ "version": "2.5.168",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"