cecon-interfaces 1.6.73 → 1.6.74
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/payload/entities/payload.entity.mjs +1 -1
- package/dist/esm2022/payio/payload/interfaces/i-payload.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/payload/entities/payload.entity.d.ts +2 -2
- package/dist/payio/payload/interfaces/i-payload.d.ts +2 -2
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EPayuioActivationStatus } from '../../activation-key/enums/activation-key-status.enum';
|
2
|
-
import {
|
2
|
+
import { PayioMemberRoleEntity } from '../../members';
|
3
3
|
import { IPayioJwtPayload } from '../interfaces/i-payload';
|
4
4
|
import { IPayioJwtPayloadApp } from '../interfaces/i-payload-app';
|
5
5
|
import { IPayioJwtPayloadInfo } from '../interfaces/i-payload-info';
|
@@ -17,7 +17,7 @@ export declare class PayioJwtPayloadEntity implements IPayioJwtPayload {
|
|
17
17
|
info: IPayioJwtPayloadInfo | null;
|
18
18
|
iss: string;
|
19
19
|
jti: string;
|
20
|
-
permissions:
|
20
|
+
permissions: PayioMemberRoleEntity[];
|
21
21
|
schedule: PayioJwtPayloadScheduleEntity | null;
|
22
22
|
sub: string;
|
23
23
|
type: string | null;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EPayuioActivationStatus } from '../../activation-key/enums/activation-key-status.enum';
|
2
|
-
import {
|
2
|
+
import { IPayioMemberRole } from '../../members';
|
3
3
|
import { IPayioJwtPayloadApp } from './i-payload-app';
|
4
4
|
import { IPayioJwtPayloadDevice } from './i-payload-device';
|
5
5
|
import { IPayioJwtPayloadInfo } from './i-payload-info';
|
@@ -28,7 +28,7 @@ export interface IPayioJwtPayload {
|
|
28
28
|
*/
|
29
29
|
iss: string;
|
30
30
|
jti: string;
|
31
|
-
permissions:
|
31
|
+
permissions: IPayioMemberRole[];
|
32
32
|
schedule: IPayioJwtPayloadSchedule | null;
|
33
33
|
sub: string;
|
34
34
|
type: string | null;
|