@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.
- package/dist/angular/model/getInviteByTokenResponse.ts +1 -0
- package/dist/typescript/model/GetInviteByTokenResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/GetInviteByTokenResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/GetInviteByTokenResponse.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|