@equisoft/account-service-sdk-typescript 8.3.1-snapshot.20250312205919 → 8.3.1-snapshot.20250314125217
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/Session.d.ts +8 -0
- package/dist/esm/models/Session.js +2 -0
- package/dist/esm/models/SessionPayload.d.ts +8 -0
- package/dist/esm/models/SessionPayload.js +2 -0
- package/dist/models/Session.d.ts +8 -0
- package/dist/models/Session.js +2 -0
- package/dist/models/SessionPayload.d.ts +8 -0
- package/dist/models/SessionPayload.js +2 -0
- package/package.json +1 -1
- package/src/models/Session.ts +8 -0
- package/src/models/SessionPayload.ts +8 -0
|
@@ -84,6 +84,14 @@ export interface Session {
|
|
|
84
84
|
* @memberof Session
|
|
85
85
|
*/
|
|
86
86
|
mobile: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Claims and assertions received from an external source (SSO).
|
|
89
|
+
* @type {{ [key: string]: string; }}
|
|
90
|
+
* @memberof Session
|
|
91
|
+
*/
|
|
92
|
+
externalClaims?: {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
} | null;
|
|
87
95
|
}
|
|
88
96
|
/**
|
|
89
97
|
* Check if a given object implements the Session interface.
|
|
@@ -55,6 +55,7 @@ export function SessionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
55
55
|
'sso': json['sso'] == null ? undefined : SsoProviderFromJSON(json['sso']),
|
|
56
56
|
'enabledForEquisoftConnect': json['enabledForEquisoftConnect'],
|
|
57
57
|
'mobile': json['mobile'],
|
|
58
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
58
59
|
};
|
|
59
60
|
}
|
|
60
61
|
export function SessionToJSON(value) {
|
|
@@ -73,5 +74,6 @@ export function SessionToJSON(value) {
|
|
|
73
74
|
'sso': SsoProviderToJSON(value['sso']),
|
|
74
75
|
'enabledForEquisoftConnect': value['enabledForEquisoftConnect'],
|
|
75
76
|
'mobile': value['mobile'],
|
|
77
|
+
'externalClaims': value['externalClaims'],
|
|
76
78
|
};
|
|
77
79
|
}
|
|
@@ -52,6 +52,14 @@ export interface SessionPayload {
|
|
|
52
52
|
* @memberof SessionPayload
|
|
53
53
|
*/
|
|
54
54
|
cookieDomain?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Claims and assertions received from an external source (SSO).
|
|
57
|
+
* @type {{ [key: string]: string; }}
|
|
58
|
+
* @memberof SessionPayload
|
|
59
|
+
*/
|
|
60
|
+
externalClaims?: {
|
|
61
|
+
[key: string]: string;
|
|
62
|
+
} | null;
|
|
55
63
|
}
|
|
56
64
|
/**
|
|
57
65
|
* Check if a given object implements the SessionPayload interface.
|
|
@@ -36,6 +36,7 @@ export function SessionPayloadFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'publicComputer': json['publicComputer'] == null ? undefined : json['publicComputer'],
|
|
37
37
|
'mobileDevice': json['mobileDevice'] == null ? undefined : json['mobileDevice'],
|
|
38
38
|
'cookieDomain': json['cookieDomain'] == null ? undefined : json['cookieDomain'],
|
|
39
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
39
40
|
};
|
|
40
41
|
}
|
|
41
42
|
export function SessionPayloadToJSON(value) {
|
|
@@ -49,5 +50,6 @@ export function SessionPayloadToJSON(value) {
|
|
|
49
50
|
'publicComputer': value['publicComputer'],
|
|
50
51
|
'mobileDevice': value['mobileDevice'],
|
|
51
52
|
'cookieDomain': value['cookieDomain'],
|
|
53
|
+
'externalClaims': value['externalClaims'],
|
|
52
54
|
};
|
|
53
55
|
}
|
package/dist/models/Session.d.ts
CHANGED
|
@@ -84,6 +84,14 @@ export interface Session {
|
|
|
84
84
|
* @memberof Session
|
|
85
85
|
*/
|
|
86
86
|
mobile: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Claims and assertions received from an external source (SSO).
|
|
89
|
+
* @type {{ [key: string]: string; }}
|
|
90
|
+
* @memberof Session
|
|
91
|
+
*/
|
|
92
|
+
externalClaims?: {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
} | null;
|
|
87
95
|
}
|
|
88
96
|
/**
|
|
89
97
|
* Check if a given object implements the Session interface.
|
package/dist/models/Session.js
CHANGED
|
@@ -61,6 +61,7 @@ function SessionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
61
61
|
'sso': json['sso'] == null ? undefined : (0, SsoProvider_1.SsoProviderFromJSON)(json['sso']),
|
|
62
62
|
'enabledForEquisoftConnect': json['enabledForEquisoftConnect'],
|
|
63
63
|
'mobile': json['mobile'],
|
|
64
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
64
65
|
};
|
|
65
66
|
}
|
|
66
67
|
function SessionToJSON(value) {
|
|
@@ -79,5 +80,6 @@ function SessionToJSON(value) {
|
|
|
79
80
|
'sso': (0, SsoProvider_1.SsoProviderToJSON)(value['sso']),
|
|
80
81
|
'enabledForEquisoftConnect': value['enabledForEquisoftConnect'],
|
|
81
82
|
'mobile': value['mobile'],
|
|
83
|
+
'externalClaims': value['externalClaims'],
|
|
82
84
|
};
|
|
83
85
|
}
|
|
@@ -52,6 +52,14 @@ export interface SessionPayload {
|
|
|
52
52
|
* @memberof SessionPayload
|
|
53
53
|
*/
|
|
54
54
|
cookieDomain?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Claims and assertions received from an external source (SSO).
|
|
57
|
+
* @type {{ [key: string]: string; }}
|
|
58
|
+
* @memberof SessionPayload
|
|
59
|
+
*/
|
|
60
|
+
externalClaims?: {
|
|
61
|
+
[key: string]: string;
|
|
62
|
+
} | null;
|
|
55
63
|
}
|
|
56
64
|
/**
|
|
57
65
|
* Check if a given object implements the SessionPayload interface.
|
|
@@ -42,6 +42,7 @@ function SessionPayloadFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
42
|
'publicComputer': json['publicComputer'] == null ? undefined : json['publicComputer'],
|
|
43
43
|
'mobileDevice': json['mobileDevice'] == null ? undefined : json['mobileDevice'],
|
|
44
44
|
'cookieDomain': json['cookieDomain'] == null ? undefined : json['cookieDomain'],
|
|
45
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
45
46
|
};
|
|
46
47
|
}
|
|
47
48
|
function SessionPayloadToJSON(value) {
|
|
@@ -55,5 +56,6 @@ function SessionPayloadToJSON(value) {
|
|
|
55
56
|
'publicComputer': value['publicComputer'],
|
|
56
57
|
'mobileDevice': value['mobileDevice'],
|
|
57
58
|
'cookieDomain': value['cookieDomain'],
|
|
59
|
+
'externalClaims': value['externalClaims'],
|
|
58
60
|
};
|
|
59
61
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "8.3.1-snapshot.
|
|
3
|
+
"version": "8.3.1-snapshot.20250314125217",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
package/src/models/Session.ts
CHANGED
|
@@ -104,6 +104,12 @@ export interface Session {
|
|
|
104
104
|
* @memberof Session
|
|
105
105
|
*/
|
|
106
106
|
mobile: boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Claims and assertions received from an external source (SSO).
|
|
109
|
+
* @type {{ [key: string]: string; }}
|
|
110
|
+
* @memberof Session
|
|
111
|
+
*/
|
|
112
|
+
externalClaims?: { [key: string]: string; } | null;
|
|
107
113
|
}
|
|
108
114
|
|
|
109
115
|
/**
|
|
@@ -142,6 +148,7 @@ export function SessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): S
|
|
|
142
148
|
'sso': json['sso'] == null ? undefined : SsoProviderFromJSON(json['sso']),
|
|
143
149
|
'enabledForEquisoftConnect': json['enabledForEquisoftConnect'],
|
|
144
150
|
'mobile': json['mobile'],
|
|
151
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
145
152
|
};
|
|
146
153
|
}
|
|
147
154
|
|
|
@@ -162,6 +169,7 @@ export function SessionToJSON(value?: Session | null): any {
|
|
|
162
169
|
'sso': SsoProviderToJSON(value['sso']),
|
|
163
170
|
'enabledForEquisoftConnect': value['enabledForEquisoftConnect'],
|
|
164
171
|
'mobile': value['mobile'],
|
|
172
|
+
'externalClaims': value['externalClaims'],
|
|
165
173
|
};
|
|
166
174
|
}
|
|
167
175
|
|
|
@@ -62,6 +62,12 @@ export interface SessionPayload {
|
|
|
62
62
|
* @memberof SessionPayload
|
|
63
63
|
*/
|
|
64
64
|
cookieDomain?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Claims and assertions received from an external source (SSO).
|
|
67
|
+
* @type {{ [key: string]: string; }}
|
|
68
|
+
* @memberof SessionPayload
|
|
69
|
+
*/
|
|
70
|
+
externalClaims?: { [key: string]: string; } | null;
|
|
65
71
|
}
|
|
66
72
|
|
|
67
73
|
/**
|
|
@@ -89,6 +95,7 @@ export function SessionPayloadFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
89
95
|
'publicComputer': json['publicComputer'] == null ? undefined : json['publicComputer'],
|
|
90
96
|
'mobileDevice': json['mobileDevice'] == null ? undefined : json['mobileDevice'],
|
|
91
97
|
'cookieDomain': json['cookieDomain'] == null ? undefined : json['cookieDomain'],
|
|
98
|
+
'externalClaims': json['externalClaims'] == null ? undefined : json['externalClaims'],
|
|
92
99
|
};
|
|
93
100
|
}
|
|
94
101
|
|
|
@@ -104,6 +111,7 @@ export function SessionPayloadToJSON(value?: SessionPayload | null): any {
|
|
|
104
111
|
'publicComputer': value['publicComputer'],
|
|
105
112
|
'mobileDevice': value['mobileDevice'],
|
|
106
113
|
'cookieDomain': value['cookieDomain'],
|
|
114
|
+
'externalClaims': value['externalClaims'],
|
|
107
115
|
};
|
|
108
116
|
}
|
|
109
117
|
|