monkey-front-core 0.0.548 → 0.0.550

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.
@@ -7,6 +7,7 @@ export * from './monkeyecx-country-security';
7
7
  export * from './monkeyecx-embedded';
8
8
  export * from './monkeyecx-error-response';
9
9
  export * from './monkeyecx-filter';
10
+ export * from './monkeyecx-group';
10
11
  export * from './monkeyecx-handled-error-response';
11
12
  export * from './monkeyecx-header-credentials';
12
13
  export * from './monkeyecx-intercom-options';
@@ -0,0 +1,13 @@
1
+ export interface MonkeyEcxGroupCompany {
2
+ governmentId: string;
3
+ id: string;
4
+ role: string;
5
+ status: string;
6
+ }
7
+ export interface MonkeyEcxGroup {
8
+ companies: MonkeyEcxGroupCompany[];
9
+ groupId: string;
10
+ name: string;
11
+ role: string;
12
+ style: 'mandril' | 'koba' | 'colobus' | 'prego' | 'saki' | 'mico-leao' | 'gibbon' | 'babuino';
13
+ }
@@ -1,4 +1,4 @@
1
- import { MonkeyEcxCompany, MonkeyEcxProgram } from '.';
1
+ import { MonkeyEcxCompany, MonkeyEcxGroup, MonkeyEcxProgram } from '.';
2
2
  export interface MonkeyEcxMeCredentials {
3
3
  name?: string;
4
4
  email?: string;
@@ -8,6 +8,7 @@ export interface MonkeyEcxMeCredentials {
8
8
  selectedLanguage?: string;
9
9
  companies?: MonkeyEcxCompany[];
10
10
  programs?: MonkeyEcxProgram[];
11
+ groups?: MonkeyEcxGroup[];
11
12
  nickname?: string;
12
13
  cellPhone?: string;
13
14
  smsNotification?: boolean;
@@ -1,6 +1,13 @@
1
1
  interface MonkeyEcxTokenCredentialsClearIgnore {
2
2
  ignore: string[];
3
3
  }
4
+ export interface MonkeyEcxAccessHandleTokenCredentials {
5
+ access: 'BY_GROUP' | 'REFRESH_TOKEN';
6
+ groupId?: string;
7
+ groupName?: string;
8
+ type?: string;
9
+ programUrl?: string;
10
+ }
4
11
  export interface MonkeyEcxTokenCredentials {
5
12
  username?: string;
6
13
  program?: string;
@@ -16,6 +23,8 @@ export interface MonkeyEcxTokenCredentials {
16
23
  accessType?: string;
17
24
  ownerGovernmentId?: string;
18
25
  name?: string;
26
+ status?: string;
27
+ accessHandle?: MonkeyEcxAccessHandleTokenCredentials;
19
28
  _clearIgnore?: MonkeyEcxTokenCredentialsClearIgnore;
20
29
  }
21
30
  export {};
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.548",
3
+ "version": "0.0.550",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.1.1",
6
6
  "@angular/common": "^13.1.1",
Binary file