@otr-app/shared-backend-generated-client 2.3.254 → 2.3.256
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.
- package/dist/angular/.openapi-generator/FILES +2 -0
- package/dist/angular/api/citationController.service.ts +72 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/angular/model/signImageUrlRequest.ts +18 -0
- package/dist/angular/model/signImageUrlResponse.ts +17 -0
- package/dist/angular/model/validateDirectMailResponse.ts +2 -1
- package/dist/otrBackendService.js +37 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/CitationControllerApi.d.ts +6 -0
- package/dist/typescript/api/CitationControllerApi.js +25 -0
- package/dist/typescript/model/SignImageUrlRequest.d.ts +15 -0
- package/dist/typescript/model/SignImageUrlRequest.js +13 -0
- package/dist/typescript/model/SignImageUrlResponse.d.ts +14 -0
- package/dist/typescript/model/SignImageUrlResponse.js +13 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/package.json +1 -1
|
@@ -107,6 +107,12 @@ export declare class CitationControllerApi {
|
|
|
107
107
|
* @param isLocked isLocked
|
|
108
108
|
*/
|
|
109
109
|
setLockForCitationUsingPUT(citationId: number, isLocked: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @summary signImageUrl
|
|
113
|
+
* @param request request
|
|
114
|
+
*/
|
|
115
|
+
signImageUrlUsingPOST(request: models.SignImageUrlRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SignImageUrlResponse>;
|
|
110
116
|
/**
|
|
111
117
|
*
|
|
112
118
|
* @summary toggleDeleteCitation
|
|
@@ -399,6 +399,31 @@ var CitationControllerApi = /** @class */ (function () {
|
|
|
399
399
|
}
|
|
400
400
|
return this.$http(httpRequestParams);
|
|
401
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
*
|
|
404
|
+
* @summary signImageUrl
|
|
405
|
+
* @param request request
|
|
406
|
+
*/
|
|
407
|
+
CitationControllerApi.prototype.signImageUrlUsingPOST = function (request, extraHttpRequestParams) {
|
|
408
|
+
var localVarPath = this.basePath + '/api/v1/citations/sign-image-url';
|
|
409
|
+
var queryParameters = {};
|
|
410
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
411
|
+
// verify required parameter 'request' is not null or undefined
|
|
412
|
+
if (request === null || request === undefined) {
|
|
413
|
+
throw new Error('Required parameter request was null or undefined when calling signImageUrlUsingPOST.');
|
|
414
|
+
}
|
|
415
|
+
var httpRequestParams = {
|
|
416
|
+
method: 'POST',
|
|
417
|
+
url: localVarPath,
|
|
418
|
+
data: request,
|
|
419
|
+
params: queryParameters,
|
|
420
|
+
headers: headerParams
|
|
421
|
+
};
|
|
422
|
+
if (extraHttpRequestParams) {
|
|
423
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
424
|
+
}
|
|
425
|
+
return this.$http(httpRequestParams);
|
|
426
|
+
};
|
|
402
427
|
/**
|
|
403
428
|
*
|
|
404
429
|
* @summary toggleDeleteCitation
|
|
@@ -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
|
+
export interface SignImageUrlRequest {
|
|
13
|
+
"minutes"?: number;
|
|
14
|
+
"unsignedImageUrl"?: string;
|
|
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 });
|
|
@@ -0,0 +1,14 @@
|
|
|
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 SignImageUrlResponse {
|
|
13
|
+
"signedImageUrl"?: string;
|
|
14
|
+
}
|
|
@@ -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 });
|
|
@@ -107,6 +107,7 @@ var ValidateDirectMailResponse;
|
|
|
107
107
|
OtrErrorEnum[OtrErrorEnum["INVALIDCASECOUNTERID"] = 'INVALID_CASE_COUNTER_ID'] = "INVALIDCASECOUNTERID";
|
|
108
108
|
OtrErrorEnum[OtrErrorEnum["INVALIDCASEID"] = 'INVALID_CASE_ID'] = "INVALIDCASEID";
|
|
109
109
|
OtrErrorEnum[OtrErrorEnum["INVALIDCASEPAYMENTID"] = 'INVALID_CASE_PAYMENT_ID'] = "INVALIDCASEPAYMENTID";
|
|
110
|
+
OtrErrorEnum[OtrErrorEnum["INVALIDCASESTATUSFORCASERESOLVE"] = 'INVALID_CASE_STATUS_FOR_CASE_RESOLVE'] = "INVALIDCASESTATUSFORCASERESOLVE";
|
|
110
111
|
OtrErrorEnum[OtrErrorEnum["INVALIDCITATIONID"] = 'INVALID_CITATION_ID'] = "INVALIDCITATIONID";
|
|
111
112
|
OtrErrorEnum[OtrErrorEnum["INVALIDCODE"] = 'INVALID_CODE'] = "INVALIDCODE";
|
|
112
113
|
OtrErrorEnum[OtrErrorEnum["INVALIDCOURTID"] = 'INVALID_COURT_ID'] = "INVALIDCOURTID";
|
|
@@ -622,6 +622,8 @@ export * from './SetStarOnMessageModel';
|
|
|
622
622
|
export * from './SetStarOnMessagesRequest';
|
|
623
623
|
export * from './SettingRequest';
|
|
624
624
|
export * from './SettingResponse';
|
|
625
|
+
export * from './SignImageUrlRequest';
|
|
626
|
+
export * from './SignImageUrlResponse';
|
|
625
627
|
export * from './SignRecordingUrlRequest';
|
|
626
628
|
export * from './SignRecordingUrlResponse';
|
|
627
629
|
export * from './SimpleCredentialsResponse';
|
|
@@ -634,6 +634,8 @@ __exportStar(require("./SetStarOnMessageModel"), exports);
|
|
|
634
634
|
__exportStar(require("./SetStarOnMessagesRequest"), exports);
|
|
635
635
|
__exportStar(require("./SettingRequest"), exports);
|
|
636
636
|
__exportStar(require("./SettingResponse"), exports);
|
|
637
|
+
__exportStar(require("./SignImageUrlRequest"), exports);
|
|
638
|
+
__exportStar(require("./SignImageUrlResponse"), exports);
|
|
637
639
|
__exportStar(require("./SignRecordingUrlRequest"), exports);
|
|
638
640
|
__exportStar(require("./SignRecordingUrlResponse"), exports);
|
|
639
641
|
__exportStar(require("./SimpleCredentialsResponse"), exports);
|