@otr-app/shared-backend-generated-client 2.5.106 → 2.5.107

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.
@@ -16,6 +16,7 @@ export interface GetInviteByTokenResponse {
16
16
  emailAddress?: string;
17
17
  fullName?: string;
18
18
  hasAccount?: boolean;
19
+ inviteeEmailAddress?: string;
19
20
  inviteeFirstName?: string;
20
21
  inviteeLastName?: string;
21
22
  inviteeRoleType?: GetInviteByTokenResponse.InviteeRoleTypeEnum;
@@ -14,6 +14,7 @@ export interface GetInviteByTokenResponse {
14
14
  "emailAddress"?: string;
15
15
  "fullName"?: string;
16
16
  "hasAccount"?: boolean;
17
+ "inviteeEmailAddress"?: string;
17
18
  "inviteeFirstName"?: string;
18
19
  "inviteeLastName"?: string;
19
20
  "inviteeRoleType"?: GetInviteByTokenResponse.InviteeRoleTypeEnum;
@@ -34,6 +34,12 @@ export interface GetInviteByTokenResponse {
34
34
  * @memberof GetInviteByTokenResponse
35
35
  */
36
36
  hasAccount?: boolean;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof GetInviteByTokenResponse
41
+ */
42
+ inviteeEmailAddress?: string;
37
43
  /**
38
44
  *
39
45
  * @type {string}
@@ -24,6 +24,7 @@ export function GetInviteByTokenResponseFromJSONTyped(json, ignoreDiscriminator)
24
24
  'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
25
25
  'fullName': !exists(json, 'fullName') ? undefined : json['fullName'],
26
26
  'hasAccount': !exists(json, 'hasAccount') ? undefined : json['hasAccount'],
27
+ 'inviteeEmailAddress': !exists(json, 'inviteeEmailAddress') ? undefined : json['inviteeEmailAddress'],
27
28
  'inviteeFirstName': !exists(json, 'inviteeFirstName') ? undefined : json['inviteeFirstName'],
28
29
  'inviteeLastName': !exists(json, 'inviteeLastName') ? undefined : json['inviteeLastName'],
29
30
  'inviteeRoleType': !exists(json, 'inviteeRoleType') ? undefined : json['inviteeRoleType'],
@@ -45,6 +46,7 @@ export function GetInviteByTokenResponseToJSON(value) {
45
46
  'emailAddress': value.emailAddress,
46
47
  'fullName': value.fullName,
47
48
  'hasAccount': value.hasAccount,
49
+ 'inviteeEmailAddress': value.inviteeEmailAddress,
48
50
  'inviteeFirstName': value.inviteeFirstName,
49
51
  'inviteeLastName': value.inviteeLastName,
50
52
  'inviteeRoleType': value.inviteeRoleType,
@@ -11181,6 +11181,7 @@ export interface components {
11181
11181
  emailAddress?: string;
11182
11182
  fullName?: string;
11183
11183
  hasAccount?: boolean;
11184
+ inviteeEmailAddress?: string;
11184
11185
  inviteeFirstName?: string;
11185
11186
  inviteeLastName?: string;
11186
11187
  /** @enum {string} */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.106",
3
+ "version": "2.5.107",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"