@otr-app/shared-backend-generated-client 2.5.61 → 2.5.63

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.
@@ -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 { GetAccountManagerModel } from './getAccountManagerModel';
12
+ import { AccountManagerModel } from './accountManagerModel';
13
13
 
14
14
 
15
15
  export interface GetAccountManagersResponse {
16
- accountManagers?: Array<GetAccountManagerModel>;
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';
@@ -14,12 +14,12 @@ import { NoteAuthor } from './noteAuthor';
14
14
 
15
15
  export interface NoteModel {
16
16
  author?: NoteAuthor;
17
- deletedDateUtc?: string;
17
+ deletedDateUtc?: number;
18
18
  isDeleted?: boolean;
19
19
  note?: string;
20
20
  noteId?: number;
21
21
  noteType?: NoteModel.NoteTypeEnum;
22
- postedDateUtc?: string;
22
+ postedDateUtc?: number;
23
23
  referenceId?: string;
24
24
  }
25
25
  export namespace NoteModel {
@@ -11,5 +11,5 @@
11
11
  */
12
12
  import * as models from './models';
13
13
  export interface GetAccountManagersResponse {
14
- "accountManagers"?: Array<models.GetAccountManagerModel>;
14
+ "accountManagers"?: Array<models.AccountManagerModel>;
15
15
  }
@@ -12,12 +12,12 @@
12
12
  import * as models from './models';
13
13
  export interface NoteModel {
14
14
  "author"?: models.NoteAuthor;
15
- "deletedDateUtc"?: string;
15
+ "deletedDateUtc"?: number;
16
16
  "isDeleted"?: boolean;
17
17
  "note"?: string;
18
18
  "noteId"?: number;
19
19
  "noteType"?: NoteModel.NoteTypeEnum;
20
- "postedDateUtc"?: string;
20
+ "postedDateUtc"?: number;
21
21
  "referenceId"?: string;
22
22
  }
23
23
  export declare namespace NoteModel {
@@ -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 { GetAccountManagerModel } from './';
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<GetAccountManagerModel>}
21
+ * @type {Array<AccountManagerModel>}
22
22
  * @memberof GetAccountManagersResponse
23
23
  */
24
- accountManagers?: Array<GetAccountManagerModel>;
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 { GetAccountManagerModelFromJSON, GetAccountManagerModelToJSON, } from './';
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(GetAccountManagerModelFromJSON)),
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(GetAccountManagerModelToJSON)),
35
+ 'accountManagers': value.accountManagers === undefined ? undefined : (value.accountManagers.map(AccountManagerModelToJSON)),
36
36
  };
37
37
  }
@@ -24,10 +24,10 @@ export interface NoteModel {
24
24
  author?: NoteAuthor;
25
25
  /**
26
26
  *
27
- * @type {Date}
27
+ * @type {number}
28
28
  * @memberof NoteModel
29
29
  */
30
- deletedDateUtc?: Date;
30
+ deletedDateUtc?: number;
31
31
  /**
32
32
  *
33
33
  * @type {boolean}
@@ -54,10 +54,10 @@ export interface NoteModel {
54
54
  noteType?: NoteModelNoteTypeEnum;
55
55
  /**
56
56
  *
57
- * @type {Date}
57
+ * @type {number}
58
58
  * @memberof NoteModel
59
59
  */
60
- postedDateUtc?: Date;
60
+ postedDateUtc?: number;
61
61
  /**
62
62
  *
63
63
  * @type {string}
@@ -22,12 +22,12 @@ export function NoteModelFromJSONTyped(json, ignoreDiscriminator) {
22
22
  }
23
23
  return {
24
24
  'author': !exists(json, 'author') ? undefined : NoteAuthorFromJSON(json['author']),
25
- 'deletedDateUtc': !exists(json, 'deletedDateUtc') ? undefined : (new Date(json['deletedDateUtc'])),
25
+ 'deletedDateUtc': !exists(json, 'deletedDateUtc') ? undefined : json['deletedDateUtc'],
26
26
  'isDeleted': !exists(json, 'isDeleted') ? undefined : json['isDeleted'],
27
27
  'note': !exists(json, 'note') ? undefined : json['note'],
28
28
  'noteId': !exists(json, 'noteId') ? undefined : json['noteId'],
29
29
  'noteType': !exists(json, 'noteType') ? undefined : json['noteType'],
30
- 'postedDateUtc': !exists(json, 'postedDateUtc') ? undefined : (new Date(json['postedDateUtc'])),
30
+ 'postedDateUtc': !exists(json, 'postedDateUtc') ? undefined : json['postedDateUtc'],
31
31
  'referenceId': !exists(json, 'referenceId') ? undefined : json['referenceId'],
32
32
  };
33
33
  }
@@ -40,12 +40,12 @@ export function NoteModelToJSON(value) {
40
40
  }
41
41
  return {
42
42
  'author': NoteAuthorToJSON(value.author),
43
- 'deletedDateUtc': value.deletedDateUtc === undefined ? undefined : (value.deletedDateUtc.toISOString()),
43
+ 'deletedDateUtc': value.deletedDateUtc,
44
44
  'isDeleted': value.isDeleted,
45
45
  'note': value.note,
46
46
  'noteId': value.noteId,
47
47
  'noteType': value.noteType,
48
- 'postedDateUtc': value.postedDateUtc === undefined ? undefined : (value.postedDateUtc.toISOString()),
48
+ 'postedDateUtc': value.postedDateUtc,
49
49
  'referenceId': value.referenceId,
50
50
  };
51
51
  }
@@ -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"]["GetAccountManagerModel"][];
10628
+ accountManagers?: components["schemas"]["AccountManagerModel"][];
10636
10629
  };
10637
10630
  /** GetActivityFeedResponse */
10638
10631
  GetActivityFeedResponse: {
@@ -13488,16 +13481,16 @@ export interface components {
13488
13481
  /** NoteModel */
13489
13482
  NoteModel: {
13490
13483
  author?: components["schemas"]["NoteAuthor"];
13491
- /** Format: date-time */
13492
- deletedDateUtc?: string;
13484
+ /** Format: int64 */
13485
+ deletedDateUtc?: number;
13493
13486
  isDeleted?: boolean;
13494
13487
  note?: string;
13495
13488
  /** Format: int64 */
13496
13489
  noteId?: number;
13497
13490
  /** @enum {string} */
13498
13491
  noteType?: PathsApiV2NotesSearchGetParametersQueryNoteType;
13499
- /** Format: date-time */
13500
- postedDateUtc?: string;
13492
+ /** Format: int64 */
13493
+ postedDateUtc?: number;
13501
13494
  referenceId?: string;
13502
13495
  };
13503
13496
  /** NotificationEvent */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.61",
3
+ "version": "2.5.63",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"
@@ -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
- }