@otr-app/shared-backend-generated-client 2.5.156 → 2.5.157

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.
@@ -14,6 +14,7 @@ import { LawyerInviteByTokenModel } from './lawyerInviteByTokenModel';
14
14
 
15
15
  export interface GetInviteByTokenResponse {
16
16
  emailAddress?: string;
17
+ expiryDateUtc?: string;
17
18
  fullName?: string;
18
19
  hasAccount?: boolean;
19
20
  inviteeEmailAddress?: string;
@@ -12,6 +12,7 @@
12
12
  import * as models from './models';
13
13
  export interface GetInviteByTokenResponse {
14
14
  "emailAddress"?: string;
15
+ "expiryDateUtc"?: string;
15
16
  "fullName"?: string;
16
17
  "hasAccount"?: boolean;
17
18
  "inviteeEmailAddress"?: string;
@@ -22,6 +22,12 @@ export interface GetInviteByTokenResponse {
22
22
  * @memberof GetInviteByTokenResponse
23
23
  */
24
24
  emailAddress?: string;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof GetInviteByTokenResponse
29
+ */
30
+ expiryDateUtc?: Date;
25
31
  /**
26
32
  *
27
33
  * @type {string}
@@ -22,6 +22,7 @@ export function GetInviteByTokenResponseFromJSONTyped(json, ignoreDiscriminator)
22
22
  }
23
23
  return {
24
24
  'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
25
+ 'expiryDateUtc': !exists(json, 'expiryDateUtc') ? undefined : (new Date(json['expiryDateUtc'])),
25
26
  'fullName': !exists(json, 'fullName') ? undefined : json['fullName'],
26
27
  'hasAccount': !exists(json, 'hasAccount') ? undefined : json['hasAccount'],
27
28
  'inviteeEmailAddress': !exists(json, 'inviteeEmailAddress') ? undefined : json['inviteeEmailAddress'],
@@ -44,6 +45,7 @@ export function GetInviteByTokenResponseToJSON(value) {
44
45
  }
45
46
  return {
46
47
  'emailAddress': value.emailAddress,
48
+ 'expiryDateUtc': value.expiryDateUtc === undefined ? undefined : (value.expiryDateUtc.toISOString()),
47
49
  'fullName': value.fullName,
48
50
  'hasAccount': value.hasAccount,
49
51
  'inviteeEmailAddress': value.inviteeEmailAddress,
@@ -11219,6 +11219,8 @@ export interface components {
11219
11219
  /** GetInviteByTokenResponse */
11220
11220
  GetInviteByTokenResponse: {
11221
11221
  emailAddress?: string;
11222
+ /** Format: date-time */
11223
+ expiryDateUtc?: string;
11222
11224
  fullName?: string;
11223
11225
  hasAccount?: boolean;
11224
11226
  inviteeEmailAddress?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.156",
3
+ "version": "2.5.157",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"