@robosystems/client 0.2.3 → 0.2.4
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/package.json +1 -1
- package/sdk/types.gen.d.ts +10 -0
- package/sdk/types.gen.ts +10 -0
- package/types.gen.d.ts +10 -0
- package/types.gen.ts +10 -0
package/package.json
CHANGED
package/sdk/types.gen.d.ts
CHANGED
|
@@ -418,6 +418,16 @@ export type AuthResponse = {
|
|
|
418
418
|
* JWT authentication token (optional for cookie-based auth)
|
|
419
419
|
*/
|
|
420
420
|
token?: string | null;
|
|
421
|
+
/**
|
|
422
|
+
* Expires In
|
|
423
|
+
* Token expiry time in seconds from now
|
|
424
|
+
*/
|
|
425
|
+
expires_in?: number | null;
|
|
426
|
+
/**
|
|
427
|
+
* Refresh Threshold
|
|
428
|
+
* Recommended refresh threshold in seconds before expiry
|
|
429
|
+
*/
|
|
430
|
+
refresh_threshold?: number | null;
|
|
421
431
|
};
|
|
422
432
|
/**
|
|
423
433
|
* AvailableExtension
|
package/sdk/types.gen.ts
CHANGED
|
@@ -433,6 +433,16 @@ export type AuthResponse = {
|
|
|
433
433
|
* JWT authentication token (optional for cookie-based auth)
|
|
434
434
|
*/
|
|
435
435
|
token?: string | null;
|
|
436
|
+
/**
|
|
437
|
+
* Expires In
|
|
438
|
+
* Token expiry time in seconds from now
|
|
439
|
+
*/
|
|
440
|
+
expires_in?: number | null;
|
|
441
|
+
/**
|
|
442
|
+
* Refresh Threshold
|
|
443
|
+
* Recommended refresh threshold in seconds before expiry
|
|
444
|
+
*/
|
|
445
|
+
refresh_threshold?: number | null;
|
|
436
446
|
};
|
|
437
447
|
|
|
438
448
|
/**
|
package/types.gen.d.ts
CHANGED
|
@@ -418,6 +418,16 @@ export type AuthResponse = {
|
|
|
418
418
|
* JWT authentication token (optional for cookie-based auth)
|
|
419
419
|
*/
|
|
420
420
|
token?: string | null;
|
|
421
|
+
/**
|
|
422
|
+
* Expires In
|
|
423
|
+
* Token expiry time in seconds from now
|
|
424
|
+
*/
|
|
425
|
+
expires_in?: number | null;
|
|
426
|
+
/**
|
|
427
|
+
* Refresh Threshold
|
|
428
|
+
* Recommended refresh threshold in seconds before expiry
|
|
429
|
+
*/
|
|
430
|
+
refresh_threshold?: number | null;
|
|
421
431
|
};
|
|
422
432
|
/**
|
|
423
433
|
* AvailableExtension
|
package/types.gen.ts
CHANGED
|
@@ -433,6 +433,16 @@ export type AuthResponse = {
|
|
|
433
433
|
* JWT authentication token (optional for cookie-based auth)
|
|
434
434
|
*/
|
|
435
435
|
token?: string | null;
|
|
436
|
+
/**
|
|
437
|
+
* Expires In
|
|
438
|
+
* Token expiry time in seconds from now
|
|
439
|
+
*/
|
|
440
|
+
expires_in?: number | null;
|
|
441
|
+
/**
|
|
442
|
+
* Refresh Threshold
|
|
443
|
+
* Recommended refresh threshold in seconds before expiry
|
|
444
|
+
*/
|
|
445
|
+
refresh_threshold?: number | null;
|
|
436
446
|
};
|
|
437
447
|
|
|
438
448
|
/**
|