@otr-app/shared-backend-generated-client 2.2.70 → 2.2.71
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/typescript/model/FeedbackAttachmentModel.d.ts +15 -0
- package/dist/typescript/model/FeedbackAttachmentModel.js +13 -0
- package/dist/typescript/model/FeedbackDomain.d.ts +2 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -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 FeedbackAttachmentModel {
|
|
13
|
+
"base64data"?: string;
|
|
14
|
+
"contentType"?: 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 });
|
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface FeedbackDomain {
|
|
13
14
|
"appVersion"?: string;
|
|
15
|
+
"attachments"?: Array<models.FeedbackAttachmentModel>;
|
|
14
16
|
"body"?: string;
|
|
15
17
|
"device"?: string;
|
|
16
18
|
"subject"?: string;
|
|
@@ -170,6 +170,7 @@ export * from './EnableViolationsForLawfirmRequest';
|
|
|
170
170
|
export * from './EnableViolationsForLawfirmResponse';
|
|
171
171
|
export * from './EstimateInsuranceSavingsRequest';
|
|
172
172
|
export * from './EstimateInsuranceSavingsResponse';
|
|
173
|
+
export * from './FeedbackAttachmentModel';
|
|
173
174
|
export * from './FeedbackDomain';
|
|
174
175
|
export * from './FinancialTransaction';
|
|
175
176
|
export * from './FindChargeDisputesResponse';
|
|
@@ -182,6 +182,7 @@ __exportStar(require("./EnableViolationsForLawfirmRequest"), exports);
|
|
|
182
182
|
__exportStar(require("./EnableViolationsForLawfirmResponse"), exports);
|
|
183
183
|
__exportStar(require("./EstimateInsuranceSavingsRequest"), exports);
|
|
184
184
|
__exportStar(require("./EstimateInsuranceSavingsResponse"), exports);
|
|
185
|
+
__exportStar(require("./FeedbackAttachmentModel"), exports);
|
|
185
186
|
__exportStar(require("./FeedbackDomain"), exports);
|
|
186
187
|
__exportStar(require("./FinancialTransaction"), exports);
|
|
187
188
|
__exportStar(require("./FindChargeDisputesResponse"), exports);
|