@otr-app/shared-backend-generated-client 2.2.68 → 2.2.69
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/DashboardAuthorModel.d.ts +16 -0
- package/dist/typescript/model/DashboardAuthorModel.js +13 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -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,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 DashboardAuthorModel {
|
|
13
|
+
"authorFirstName"?: string;
|
|
14
|
+
"authorLastName"?: string;
|
|
15
|
+
"profilePictureUrl"?: string;
|
|
16
|
+
}
|
|
@@ -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 });
|
|
@@ -138,6 +138,7 @@ export * from './CustomerReview';
|
|
|
138
138
|
export * from './CustomerServiceAgentBookingDomain';
|
|
139
139
|
export * from './CustomerServiceAgentDomain';
|
|
140
140
|
export * from './DashboardAddressModel';
|
|
141
|
+
export * from './DashboardAuthorModel';
|
|
141
142
|
export * from './DashboardCaseModel';
|
|
142
143
|
export * from './DashboardCitationModel';
|
|
143
144
|
export * from './DashboardCourtModel';
|
|
@@ -150,6 +150,7 @@ __exportStar(require("./CustomerReview"), exports);
|
|
|
150
150
|
__exportStar(require("./CustomerServiceAgentBookingDomain"), exports);
|
|
151
151
|
__exportStar(require("./CustomerServiceAgentDomain"), exports);
|
|
152
152
|
__exportStar(require("./DashboardAddressModel"), exports);
|
|
153
|
+
__exportStar(require("./DashboardAuthorModel"), exports);
|
|
153
154
|
__exportStar(require("./DashboardCaseModel"), exports);
|
|
154
155
|
__exportStar(require("./DashboardCitationModel"), exports);
|
|
155
156
|
__exportStar(require("./DashboardCourtModel"), exports);
|