@resolveio/client-lib-core 15.0.0 → 15.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.
@@ -1,6 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare type ScrollEvent = {
3
+ export type ScrollEvent = {
4
4
  isReachingBottom: boolean;
5
5
  isReachingTop: boolean;
6
6
  originalEvent: Event;
@@ -14,7 +14,7 @@ export interface DialogInputFieldSelectOptions {
14
14
  value: string | number;
15
15
  text: string;
16
16
  }
17
- declare type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea' | 'boolean';
17
+ type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea' | 'boolean';
18
18
  export interface DialogSelectWithButtonsOptionModel {
19
19
  value: string | number;
20
20
  text: string;
@@ -6,7 +6,7 @@ export interface NavbarMainTabModel {
6
6
  left?: number;
7
7
  tourAnchor?: string;
8
8
  }
9
- export declare type NavbarMainTabType = 'link' | 'dropdown';
9
+ export type NavbarMainTabType = 'link' | 'dropdown';
10
10
  export interface NavbarMainTabLinkModel {
11
11
  routerLink: string;
12
12
  label: string;
@@ -32,10 +32,10 @@ export interface SupportTicketClientUserModel {
32
32
  user: string;
33
33
  email: string;
34
34
  }
35
- export declare type SupportTicketPriority = 'High' | 'Low';
36
- export declare type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
37
- export declare type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
38
- export declare type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
35
+ export type SupportTicketPriority = 'High' | 'Low';
36
+ export type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
37
+ export type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
38
+ export type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
39
39
  export interface SupportTicketMessageModel {
40
40
  message: string;
41
41
  id_user: string;
@@ -43,7 +43,7 @@ export interface SupportTicketMessageModel {
43
43
  date: Date;
44
44
  type: SupportTicketMessageType;
45
45
  }
46
- declare type SupportTicketMessageType = 'ResolveIO' | 'Client';
46
+ type SupportTicketMessageType = 'ResolveIO' | 'Client';
47
47
  export interface SupportTicketWatchersModel {
48
48
  user: string;
49
49
  id_user: string;
@@ -1,6 +1,7 @@
1
1
  import { CollectionDocument } from './collection-document.model';
2
2
  export interface UserGroupModel extends CollectionDocument {
3
3
  name: string;
4
+ landing_page?: string;
4
5
  permissions: UserGroupPermissionModel[];
5
6
  notifications: UserGroupNotificationModel[];
6
7
  }
@@ -1 +1 @@
1
- export declare type alertType = 'warning' | 'error' | 'success' | 'info' | 'update';
1
+ export type alertType = 'warning' | 'error' | 'success' | 'info' | 'update';
@@ -1,7 +1,7 @@
1
1
  import { EventEmitter, ElementRef } from '@angular/core';
2
2
  import { Subject, Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
- export declare type SortDirectionType = 1 | 0 | -1;
4
+ export type SortDirectionType = 1 | 0 | -1;
5
5
  export interface Sortable {
6
6
  /** The id of the column being sorted. */
7
7
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "15.0.0",
3
+ "version": "15.0.1",
4
4
  "module": "fesm2015/resolveio-client-lib-core.mjs",
5
5
  "es2020": "fesm2020/resolveio-client-lib-core.mjs",
6
6
  "esm2020": "esm2020/resolveio-client-lib-core.mjs",