@otr-app/shared-backend-generated-client 2.5.61 → 2.5.62
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 +0 -1
- package/dist/angular/model/getAccountManagersResponse.ts +2 -2
- package/dist/angular/model/models.ts +0 -1
- package/dist/typescript/model/GetAccountManagersResponse.d.ts +1 -1
- package/dist/typescript/model/models.d.ts +0 -1
- package/dist/typescript/model/models.js +0 -1
- package/dist/typescript-fetch/models/GetAccountManagersResponse.d.ts +3 -3
- package/dist/typescript-fetch/models/GetAccountManagersResponse.js +3 -3
- package/dist/typescript-fetch/models/index.d.ts +0 -1
- package/dist/typescript-fetch/models/index.js +0 -1
- package/dist/typescript-open-api/otr-backend.d.ts +1 -8
- package/package.json +1 -1
- package/dist/typescript-fetch/models/GetAccountManagerModel.d.ts +0 -39
- package/dist/typescript-fetch/models/GetAccountManagerModel.js +0 -40
|
@@ -392,7 +392,6 @@ model/generateCounterOfferCasePaymentsResponse.ts
|
|
|
392
392
|
model/generateTemplateRequest.ts
|
|
393
393
|
model/genericAdminListRequest.ts
|
|
394
394
|
model/geoRatesRequest.ts
|
|
395
|
-
model/getAccountManagerModel.ts
|
|
396
395
|
model/getAccountManagersResponse.ts
|
|
397
396
|
model/getActivityFeedResponse.ts
|
|
398
397
|
model/getAddressInnerResponse.ts
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { AccountManagerModel } from './accountManagerModel';
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
export interface GetAccountManagersResponse {
|
|
16
|
-
accountManagers?: Array<
|
|
16
|
+
accountManagers?: Array<AccountManagerModel>;
|
|
17
17
|
}
|
|
18
18
|
|
|
@@ -267,7 +267,6 @@ export * from './generateCounterOfferCasePaymentsResponse';
|
|
|
267
267
|
export * from './generateTemplateRequest';
|
|
268
268
|
export * from './genericAdminListRequest';
|
|
269
269
|
export * from './geoRatesRequest';
|
|
270
|
-
export * from './getAccountManagerModel';
|
|
271
270
|
export * from './getAccountManagersResponse';
|
|
272
271
|
export * from './getActivityFeedResponse';
|
|
273
272
|
export * from './getAddressInnerResponse';
|
|
@@ -267,7 +267,6 @@ export * from './GenerateCounterOfferCasePaymentsResponse';
|
|
|
267
267
|
export * from './GenerateTemplateRequest';
|
|
268
268
|
export * from './GenericAdminListRequest';
|
|
269
269
|
export * from './GeoRatesRequest';
|
|
270
|
-
export * from './GetAccountManagerModel';
|
|
271
270
|
export * from './GetAccountManagersResponse';
|
|
272
271
|
export * from './GetActivityFeedResponse';
|
|
273
272
|
export * from './GetAddressInnerResponse';
|
|
@@ -267,7 +267,6 @@ export * from './GenerateCounterOfferCasePaymentsResponse';
|
|
|
267
267
|
export * from './GenerateTemplateRequest';
|
|
268
268
|
export * from './GenericAdminListRequest';
|
|
269
269
|
export * from './GeoRatesRequest';
|
|
270
|
-
export * from './GetAccountManagerModel';
|
|
271
270
|
export * from './GetAccountManagersResponse';
|
|
272
271
|
export * from './GetActivityFeedResponse';
|
|
273
272
|
export * from './GetAddressInnerResponse';
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { AccountManagerModel } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -18,10 +18,10 @@ import { GetAccountManagerModel } from './';
|
|
|
18
18
|
export interface GetAccountManagersResponse {
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
|
-
* @type {Array<
|
|
21
|
+
* @type {Array<AccountManagerModel>}
|
|
22
22
|
* @memberof GetAccountManagersResponse
|
|
23
23
|
*/
|
|
24
|
-
accountManagers?: Array<
|
|
24
|
+
accountManagers?: Array<AccountManagerModel>;
|
|
25
25
|
}
|
|
26
26
|
export declare function GetAccountManagersResponseFromJSON(json: any): GetAccountManagersResponse;
|
|
27
27
|
export declare function GetAccountManagersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountManagersResponse;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import {
|
|
15
|
+
import { AccountManagerModelFromJSON, AccountManagerModelToJSON, } from './';
|
|
16
16
|
export function GetAccountManagersResponseFromJSON(json) {
|
|
17
17
|
return GetAccountManagersResponseFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -21,7 +21,7 @@ export function GetAccountManagersResponseFromJSONTyped(json, ignoreDiscriminato
|
|
|
21
21
|
return json;
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
|
-
'accountManagers': !exists(json, 'accountManagers') ? undefined : (json['accountManagers'].map(
|
|
24
|
+
'accountManagers': !exists(json, 'accountManagers') ? undefined : (json['accountManagers'].map(AccountManagerModelFromJSON)),
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
27
|
export function GetAccountManagersResponseToJSON(value) {
|
|
@@ -32,6 +32,6 @@ export function GetAccountManagersResponseToJSON(value) {
|
|
|
32
32
|
return null;
|
|
33
33
|
}
|
|
34
34
|
return {
|
|
35
|
-
'accountManagers': value.accountManagers === undefined ? undefined : (value.accountManagers.map(
|
|
35
|
+
'accountManagers': value.accountManagers === undefined ? undefined : (value.accountManagers.map(AccountManagerModelToJSON)),
|
|
36
36
|
};
|
|
37
37
|
}
|
|
@@ -267,7 +267,6 @@ export * from './GenerateCounterOfferCasePaymentsResponse';
|
|
|
267
267
|
export * from './GenerateTemplateRequest';
|
|
268
268
|
export * from './GenericAdminListRequest';
|
|
269
269
|
export * from './GeoRatesRequest';
|
|
270
|
-
export * from './GetAccountManagerModel';
|
|
271
270
|
export * from './GetAccountManagersResponse';
|
|
272
271
|
export * from './GetActivityFeedResponse';
|
|
273
272
|
export * from './GetAddressInnerResponse';
|
|
@@ -267,7 +267,6 @@ export * from './GenerateCounterOfferCasePaymentsResponse';
|
|
|
267
267
|
export * from './GenerateTemplateRequest';
|
|
268
268
|
export * from './GenericAdminListRequest';
|
|
269
269
|
export * from './GeoRatesRequest';
|
|
270
|
-
export * from './GetAccountManagerModel';
|
|
271
270
|
export * from './GetAccountManagersResponse';
|
|
272
271
|
export * from './GetActivityFeedResponse';
|
|
273
272
|
export * from './GetAddressInnerResponse';
|
|
@@ -10623,16 +10623,9 @@ export interface components {
|
|
|
10623
10623
|
violationCount?: number;
|
|
10624
10624
|
violations?: components["schemas"]["ViolationInputRequest"][];
|
|
10625
10625
|
};
|
|
10626
|
-
/** GetAccountManagerModel */
|
|
10627
|
-
GetAccountManagerModel: {
|
|
10628
|
-
firstName?: string;
|
|
10629
|
-
lastName?: string;
|
|
10630
|
-
/** Format: int64 */
|
|
10631
|
-
userId?: number;
|
|
10632
|
-
};
|
|
10633
10626
|
/** GetAccountManagersResponse */
|
|
10634
10627
|
GetAccountManagersResponse: {
|
|
10635
|
-
accountManagers?: components["schemas"]["
|
|
10628
|
+
accountManagers?: components["schemas"]["AccountManagerModel"][];
|
|
10636
10629
|
};
|
|
10637
10630
|
/** GetActivityFeedResponse */
|
|
10638
10631
|
GetActivityFeedResponse: {
|
package/package.json
CHANGED
|
@@ -1,39 +0,0 @@
|
|
|
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 GetAccountManagerModel
|
|
16
|
-
*/
|
|
17
|
-
export interface GetAccountManagerModel {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof GetAccountManagerModel
|
|
22
|
-
*/
|
|
23
|
-
firstName?: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof GetAccountManagerModel
|
|
28
|
-
*/
|
|
29
|
-
lastName?: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof GetAccountManagerModel
|
|
34
|
-
*/
|
|
35
|
-
userId?: number;
|
|
36
|
-
}
|
|
37
|
-
export declare function GetAccountManagerModelFromJSON(json: any): GetAccountManagerModel;
|
|
38
|
-
export declare function GetAccountManagerModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountManagerModel;
|
|
39
|
-
export declare function GetAccountManagerModelToJSON(value?: GetAccountManagerModel | null): any;
|
|
@@ -1,40 +0,0 @@
|
|
|
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 GetAccountManagerModelFromJSON(json) {
|
|
16
|
-
return GetAccountManagerModelFromJSONTyped(json, false);
|
|
17
|
-
}
|
|
18
|
-
export function GetAccountManagerModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
-
if ((json === undefined) || (json === null)) {
|
|
20
|
-
return json;
|
|
21
|
-
}
|
|
22
|
-
return {
|
|
23
|
-
'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
|
|
24
|
-
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
25
|
-
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
export function GetAccountManagerModelToJSON(value) {
|
|
29
|
-
if (value === undefined) {
|
|
30
|
-
return undefined;
|
|
31
|
-
}
|
|
32
|
-
if (value === null) {
|
|
33
|
-
return null;
|
|
34
|
-
}
|
|
35
|
-
return {
|
|
36
|
-
'firstName': value.firstName,
|
|
37
|
-
'lastName': value.lastName,
|
|
38
|
-
'userId': value.userId,
|
|
39
|
-
};
|
|
40
|
-
}
|