@equisoft/account-service-sdk-typescript 6.7.1-snapshot.20240429140200 → 6.7.1-snapshot.20240508130633
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/esm/models/User.js
CHANGED
|
@@ -66,6 +66,7 @@ export function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
66
66
|
'agreement': UserAgreementFromJSON(json['agreement']),
|
|
67
67
|
'created': !exists(json, 'created') ? undefined : (json['created'] === null ? null : new Date(json['created'])),
|
|
68
68
|
'modified': !exists(json, 'modified') ? undefined : (json['modified'] === null ? null : new Date(json['modified'])),
|
|
69
|
+
'ownerOrganization': !exists(json, 'ownerOrganization') ? undefined : json['ownerOrganization'],
|
|
69
70
|
'organizations': json['organizations'],
|
|
70
71
|
'services': (json['services'].map(UserServiceAssociationFromJSON)),
|
|
71
72
|
'legacyServices': (json['legacyServices'].map(ServiceAccessFromJSON)),
|
|
@@ -99,6 +100,7 @@ export function UserToJSON(value) {
|
|
|
99
100
|
'agreement': UserAgreementToJSON(value.agreement),
|
|
100
101
|
'created': value.created === undefined ? undefined : (value.created === null ? null : value.created.toISOString()),
|
|
101
102
|
'modified': value.modified === undefined ? undefined : (value.modified === null ? null : value.modified.toISOString()),
|
|
103
|
+
'ownerOrganization': value.ownerOrganization,
|
|
102
104
|
'organizations': value.organizations,
|
|
103
105
|
'services': (value.services.map(UserServiceAssociationToJSON)),
|
|
104
106
|
'legacyServices': (value.legacyServices.map(ServiceAccessToJSON)),
|
package/dist/models/User.d.ts
CHANGED
package/dist/models/User.js
CHANGED
|
@@ -71,6 +71,7 @@ function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
71
71
|
'agreement': (0, UserAgreement_1.UserAgreementFromJSON)(json['agreement']),
|
|
72
72
|
'created': !(0, runtime_1.exists)(json, 'created') ? undefined : (json['created'] === null ? null : new Date(json['created'])),
|
|
73
73
|
'modified': !(0, runtime_1.exists)(json, 'modified') ? undefined : (json['modified'] === null ? null : new Date(json['modified'])),
|
|
74
|
+
'ownerOrganization': !(0, runtime_1.exists)(json, 'ownerOrganization') ? undefined : json['ownerOrganization'],
|
|
74
75
|
'organizations': json['organizations'],
|
|
75
76
|
'services': (json['services'].map(UserServiceAssociation_1.UserServiceAssociationFromJSON)),
|
|
76
77
|
'legacyServices': (json['legacyServices'].map(ServiceAccess_1.ServiceAccessFromJSON)),
|
|
@@ -105,6 +106,7 @@ function UserToJSON(value) {
|
|
|
105
106
|
'agreement': (0, UserAgreement_1.UserAgreementToJSON)(value.agreement),
|
|
106
107
|
'created': value.created === undefined ? undefined : (value.created === null ? null : value.created.toISOString()),
|
|
107
108
|
'modified': value.modified === undefined ? undefined : (value.modified === null ? null : value.modified.toISOString()),
|
|
109
|
+
'ownerOrganization': value.ownerOrganization,
|
|
108
110
|
'organizations': value.organizations,
|
|
109
111
|
'services': (value.services.map(UserServiceAssociation_1.UserServiceAssociationToJSON)),
|
|
110
112
|
'legacyServices': (value.legacyServices.map(ServiceAccess_1.ServiceAccessToJSON)),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "6.7.1-snapshot.
|
|
3
|
+
"version": "6.7.1-snapshot.20240508130633",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
package/src/models/User.ts
CHANGED
|
@@ -152,6 +152,12 @@ export interface User {
|
|
|
152
152
|
* @memberof User
|
|
153
153
|
*/
|
|
154
154
|
modified?: Date | null;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof User
|
|
159
|
+
*/
|
|
160
|
+
ownerOrganization?: string | null;
|
|
155
161
|
/**
|
|
156
162
|
*
|
|
157
163
|
* @type {Array<string>}
|
|
@@ -243,6 +249,7 @@ export function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User
|
|
|
243
249
|
'agreement': UserAgreementFromJSON(json['agreement']),
|
|
244
250
|
'created': !exists(json, 'created') ? undefined : (json['created'] === null ? null : new Date(json['created'])),
|
|
245
251
|
'modified': !exists(json, 'modified') ? undefined : (json['modified'] === null ? null : new Date(json['modified'])),
|
|
252
|
+
'ownerOrganization': !exists(json, 'ownerOrganization') ? undefined : json['ownerOrganization'],
|
|
246
253
|
'organizations': json['organizations'],
|
|
247
254
|
'services': ((json['services'] as Array<any>).map(UserServiceAssociationFromJSON)),
|
|
248
255
|
'legacyServices': ((json['legacyServices'] as Array<any>).map(ServiceAccessFromJSON)),
|
|
@@ -278,6 +285,7 @@ export function UserToJSON(value?: User | null): any {
|
|
|
278
285
|
'agreement': UserAgreementToJSON(value.agreement),
|
|
279
286
|
'created': value.created === undefined ? undefined : (value.created === null ? null : value.created.toISOString()),
|
|
280
287
|
'modified': value.modified === undefined ? undefined : (value.modified === null ? null : value.modified.toISOString()),
|
|
288
|
+
'ownerOrganization': value.ownerOrganization,
|
|
281
289
|
'organizations': value.organizations,
|
|
282
290
|
'services': ((value.services as Array<any>).map(UserServiceAssociationToJSON)),
|
|
283
291
|
'legacyServices': ((value.legacyServices as Array<any>).map(ServiceAccessToJSON)),
|