Skip to content

Commit

Permalink
Updated types and published new 'next' package
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed Aug 23, 2023
1 parent f3868a1 commit a0f5615
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/dexie-cloud-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dexie-cloud-common",
"version": "1.0.27",
"version": "1.0.30",
"description": "Library for shared code between dexie-cloud-addon, dexie-cloud (CLI) and dexie-cloud-server",
"type": "module",
"module": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions libs/dexie-cloud-common/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ export interface TokenFinalResponse {
type: 'tokens';
claims: {
sub: string;
license: 'ok' | 'expired' | 'deactivated';
license?: 'ok' | 'expired' | 'deactivated';
[claimName: string]: any;
};
accessToken: string;
accessTokenExpiration: number;
refreshToken?: string;
refreshTokenExpiration?: number | null;
userType: 'demo' | 'eval' | 'prod';
userType: 'demo' | 'eval' | 'prod' | 'client';
evalDaysLeft?: number;
userValidUntil?: number;
alerts?: {
Expand Down

0 comments on commit a0f5615

Please sign in to comment.