@otr-app/shared-backend-generated-client 2.3.94 → 2.3.95

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.
@@ -143,6 +143,7 @@ model/aggregateRatingMetrics.ts
143
143
  model/aggregateReferralCredit.ts
144
144
  model/alert.ts
145
145
  model/alertNotificationResponse.ts
146
+ model/anonymousTicketUploadModel.ts
146
147
  model/appEventCreateRequest.ts
147
148
  model/appearanceAttorneyDomain.ts
148
149
  model/appleLoginRequest.ts
@@ -318,6 +319,7 @@ model/genericAdminListRequest.ts
318
319
  model/geoRatesRequest.ts
319
320
  model/getActivityFeedResponse.ts
320
321
  model/getAddressInnerResponse.ts
322
+ model/getAnonymousTicketUploads.ts
321
323
  model/getAppConfigResponse.ts
322
324
  model/getAppearanceAttorneysResponse.ts
323
325
  model/getAvailablePaymentPlansResponse.ts
@@ -343,7 +345,6 @@ model/getCasesWithUncapturedChargesRequest.ts
343
345
  model/getCitationPhoneLeadsRequest.ts
344
346
  model/getCitationPhoneLeadsResponse.ts
345
347
  model/getCitationResponse.ts
346
- model/getCitationsResponse.ts
347
348
  model/getCitationsWithMissingFieldsRequest.ts
348
349
  model/getCitationsWithMissingFieldsResponse.ts
349
350
  model/getClientCasesResponse.ts
@@ -31,9 +31,9 @@ import { DeleteCitationResponse } from '../model/deleteCitationResponse';
31
31
  // @ts-ignore
32
32
  import { DismissCitationsFromContactListRequest } from '../model/dismissCitationsFromContactListRequest';
33
33
  // @ts-ignore
34
- import { GetCitationResponse } from '../model/getCitationResponse';
34
+ import { GetAnonymousTicketUploads } from '../model/getAnonymousTicketUploads';
35
35
  // @ts-ignore
36
- import { GetCitationsResponse } from '../model/getCitationsResponse';
36
+ import { GetCitationResponse } from '../model/getCitationResponse';
37
37
  // @ts-ignore
38
38
  import { GetListOfCitationsWithMissingCourtResponse } from '../model/getListOfCitationsWithMissingCourtResponse';
39
39
  // @ts-ignore
@@ -570,9 +570,9 @@ export class CitationControllerService {
570
570
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
571
571
  * @param reportProgress flag to report request and response progress.
572
572
  */
573
- public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetCitationsResponse>;
574
- public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetCitationsResponse>>;
575
- public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetCitationsResponse>>;
573
+ public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetAnonymousTicketUploads>;
574
+ public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetAnonymousTicketUploads>>;
575
+ public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetAnonymousTicketUploads>>;
576
576
  public getAnonymousTicketUploadsUsingGET(emailAddress: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
577
577
  if (emailAddress === null || emailAddress === undefined) {
578
578
  throw new Error('Required parameter emailAddress was null or undefined when calling getAnonymousTicketUploadsUsingGET.');
@@ -610,7 +610,7 @@ export class CitationControllerService {
610
610
  }
611
611
 
612
612
  let localVarPath = `/api/v1/citations/${this.configuration.encodeParam({name: "emailAddress", value: emailAddress, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}/anonymous-tickets`;
613
- return this.httpClient.request<GetCitationsResponse>('get', `${this.configuration.basePath}${localVarPath}`,
613
+ return this.httpClient.request<GetAnonymousTicketUploads>('get', `${this.configuration.basePath}${localVarPath}`,
614
614
  {
615
615
  context: localVarHttpContext,
616
616
  responseType: <any>responseType_,
@@ -0,0 +1,22 @@
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 interface AnonymousTicketUploadModel {
15
+ citationId?: number;
16
+ clientEmailAddress?: string;
17
+ creationDateUTC?: string;
18
+ isDismissedFromContactList?: boolean;
19
+ ticketImageUrl?: string;
20
+ userId?: number;
21
+ }
22
+
@@ -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 { AnonymousTicketUploadModel } from './anonymousTicketUploadModel';
13
+
14
+
15
+ export interface GetAnonymousTicketUploads {
16
+ citations?: Array<AnonymousTicketUploadModel>;
17
+ }
18
+
@@ -34,6 +34,7 @@ export * from './aggregateRatingMetrics';
34
34
  export * from './aggregateReferralCredit';
35
35
  export * from './alert';
36
36
  export * from './alertNotificationResponse';
37
+ export * from './anonymousTicketUploadModel';
37
38
  export * from './appEventCreateRequest';
38
39
  export * from './appearanceAttorneyDomain';
39
40
  export * from './appleLoginRequest';
@@ -209,6 +210,7 @@ export * from './genericAdminListRequest';
209
210
  export * from './geoRatesRequest';
210
211
  export * from './getActivityFeedResponse';
211
212
  export * from './getAddressInnerResponse';
213
+ export * from './getAnonymousTicketUploads';
212
214
  export * from './getAppConfigResponse';
213
215
  export * from './getAppearanceAttorneysResponse';
214
216
  export * from './getAvailablePaymentPlansResponse';
@@ -234,7 +236,6 @@ export * from './getCasesWithUncapturedChargesRequest';
234
236
  export * from './getCitationPhoneLeadsRequest';
235
237
  export * from './getCitationPhoneLeadsResponse';
236
238
  export * from './getCitationResponse';
237
- export * from './getCitationsResponse';
238
239
  export * from './getCitationsWithMissingFieldsRequest';
239
240
  export * from './getCitationsWithMissingFieldsResponse';
240
241
  export * from './getClientCasesResponse';
@@ -67,7 +67,7 @@ export declare class CitationControllerApi {
67
67
  * @summary getAnonymousTicketUploads
68
68
  * @param emailAddress emailAddress
69
69
  */
70
- getAnonymousTicketUploadsUsingGET(emailAddress: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCitationsResponse>;
70
+ getAnonymousTicketUploadsUsingGET(emailAddress: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetAnonymousTicketUploads>;
71
71
  /**
72
72
  *
73
73
  * @summary getCitation
@@ -0,0 +1,19 @@
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 AnonymousTicketUploadModel {
13
+ "citationId"?: number;
14
+ "clientEmailAddress"?: string;
15
+ "creationDateUTC"?: string;
16
+ "isDismissedFromContactList"?: boolean;
17
+ "ticketImageUrl"?: string;
18
+ "userId"?: number;
19
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
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 GetAnonymousTicketUploads {
14
+ "citations"?: Array<models.AnonymousTicketUploadModel>;
15
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -34,6 +34,7 @@ export * from './AggregateRatingMetrics';
34
34
  export * from './AggregateReferralCredit';
35
35
  export * from './Alert';
36
36
  export * from './AlertNotificationResponse';
37
+ export * from './AnonymousTicketUploadModel';
37
38
  export * from './AppEventCreateRequest';
38
39
  export * from './AppearanceAttorneyDomain';
39
40
  export * from './AppleLoginRequest';
@@ -209,6 +210,7 @@ export * from './GenericAdminListRequest';
209
210
  export * from './GeoRatesRequest';
210
211
  export * from './GetActivityFeedResponse';
211
212
  export * from './GetAddressInnerResponse';
213
+ export * from './GetAnonymousTicketUploads';
212
214
  export * from './GetAppConfigResponse';
213
215
  export * from './GetAppearanceAttorneysResponse';
214
216
  export * from './GetAvailablePaymentPlansResponse';
@@ -234,7 +236,6 @@ export * from './GetCasesWithUncapturedChargesRequest';
234
236
  export * from './GetCitationPhoneLeadsRequest';
235
237
  export * from './GetCitationPhoneLeadsResponse';
236
238
  export * from './GetCitationResponse';
237
- export * from './GetCitationsResponse';
238
239
  export * from './GetCitationsWithMissingFieldsRequest';
239
240
  export * from './GetCitationsWithMissingFieldsResponse';
240
241
  export * from './GetClientCasesResponse';
@@ -46,6 +46,7 @@ __exportStar(require("./AggregateRatingMetrics"), exports);
46
46
  __exportStar(require("./AggregateReferralCredit"), exports);
47
47
  __exportStar(require("./Alert"), exports);
48
48
  __exportStar(require("./AlertNotificationResponse"), exports);
49
+ __exportStar(require("./AnonymousTicketUploadModel"), exports);
49
50
  __exportStar(require("./AppEventCreateRequest"), exports);
50
51
  __exportStar(require("./AppearanceAttorneyDomain"), exports);
51
52
  __exportStar(require("./AppleLoginRequest"), exports);
@@ -221,6 +222,7 @@ __exportStar(require("./GenericAdminListRequest"), exports);
221
222
  __exportStar(require("./GeoRatesRequest"), exports);
222
223
  __exportStar(require("./GetActivityFeedResponse"), exports);
223
224
  __exportStar(require("./GetAddressInnerResponse"), exports);
225
+ __exportStar(require("./GetAnonymousTicketUploads"), exports);
224
226
  __exportStar(require("./GetAppConfigResponse"), exports);
225
227
  __exportStar(require("./GetAppearanceAttorneysResponse"), exports);
226
228
  __exportStar(require("./GetAvailablePaymentPlansResponse"), exports);
@@ -246,7 +248,6 @@ __exportStar(require("./GetCasesWithUncapturedChargesRequest"), exports);
246
248
  __exportStar(require("./GetCitationPhoneLeadsRequest"), exports);
247
249
  __exportStar(require("./GetCitationPhoneLeadsResponse"), exports);
248
250
  __exportStar(require("./GetCitationResponse"), exports);
249
- __exportStar(require("./GetCitationsResponse"), exports);
250
251
  __exportStar(require("./GetCitationsWithMissingFieldsRequest"), exports);
251
252
  __exportStar(require("./GetCitationsWithMissingFieldsResponse"), exports);
252
253
  __exportStar(require("./GetClientCasesResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.94",
3
+ "version": "2.3.95",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"