@verdocs/js-sdk 6.0.0 → 6.0.1
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/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -150,11 +150,12 @@ interface ISigningSession {
|
|
|
150
150
|
aud: string;
|
|
151
151
|
iss: string;
|
|
152
152
|
sub: string; // Verdocs access key ID
|
|
153
|
-
email: string;
|
|
154
153
|
iat: number;
|
|
155
154
|
exp: number;
|
|
156
155
|
session_type: "signing";
|
|
157
156
|
key_type: TAccessKeyType;
|
|
157
|
+
email: string;
|
|
158
|
+
profile_id: string;
|
|
158
159
|
envelope_id: string;
|
|
159
160
|
role_name: string;
|
|
160
161
|
// @deprecated
|
|
@@ -174,10 +175,10 @@ interface IUserSession {
|
|
|
174
175
|
aud: string;
|
|
175
176
|
iss: string;
|
|
176
177
|
sub: string; // Verdocs user_id
|
|
177
|
-
email: string;
|
|
178
178
|
iat: number;
|
|
179
179
|
exp: number;
|
|
180
180
|
session_type: "user";
|
|
181
|
+
email: string;
|
|
181
182
|
profile_id: string;
|
|
182
183
|
organization_id: string;
|
|
183
184
|
global_admin: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -150,11 +150,12 @@ interface ISigningSession {
|
|
|
150
150
|
aud: string;
|
|
151
151
|
iss: string;
|
|
152
152
|
sub: string; // Verdocs access key ID
|
|
153
|
-
email: string;
|
|
154
153
|
iat: number;
|
|
155
154
|
exp: number;
|
|
156
155
|
session_type: "signing";
|
|
157
156
|
key_type: TAccessKeyType;
|
|
157
|
+
email: string;
|
|
158
|
+
profile_id: string;
|
|
158
159
|
envelope_id: string;
|
|
159
160
|
role_name: string;
|
|
160
161
|
// @deprecated
|
|
@@ -174,10 +175,10 @@ interface IUserSession {
|
|
|
174
175
|
aud: string;
|
|
175
176
|
iss: string;
|
|
176
177
|
sub: string; // Verdocs user_id
|
|
177
|
-
email: string;
|
|
178
178
|
iat: number;
|
|
179
179
|
exp: number;
|
|
180
180
|
session_type: "user";
|
|
181
|
+
email: string;
|
|
181
182
|
profile_id: string;
|
|
182
183
|
organization_id: string;
|
|
183
184
|
global_admin: boolean;
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
6
|
"description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/js-sdk",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "https://github.com/Verdocs/js-sdk",
|
|
6
6
|
"description": "Isomorphic JS/TS SDK providing types and API wrappers for the Verdocs platform for Node and browser clients",
|