@trii/types 2.10.615 → 2.10.617

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,5 +1,5 @@
1
1
  import { UserInfo } from "../Users/index";
2
- export declare class ISpaceInfo {
2
+ export interface ISpaceInfo {
3
3
  id: string;
4
4
  name: string;
5
5
  imageUrl: string;
@@ -13,6 +13,7 @@ export declare class ISpaceInfo {
13
13
  joinTimeStamp?: Date;
14
14
  members: UserInfo[];
15
15
  showItemsInDevelopment: boolean;
16
+ contactNameFormat: nameFormat;
16
17
  }
17
18
  export declare enum AccessLevel {
18
19
  NULL = 0,
@@ -69,11 +70,18 @@ export interface ISpace {
69
70
  domain_active: string;
70
71
  domain_subdomain: string;
71
72
  domain_custom: ICustomDomain;
73
+ contactNameFormat: nameFormat;
72
74
  showItemsInDevelopment: boolean;
73
75
  timeZone: string;
74
76
  createdAt: Date;
75
77
  deletedAt: Date;
76
78
  }
79
+ export declare enum nameFormat {
80
+ FIRST_LAST = 0,
81
+ LAST_FIRST = 1,
82
+ FIRST_COMMA_LAST = 2,
83
+ LAST_COMMA_FIRST = 3
84
+ }
77
85
  export interface ICustomDomain {
78
86
  host: string;
79
87
  status: CustomDomain_Status;
@@ -1,9 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CustomDomain_CertStatus = exports.CustomDomain_Status = exports.RegionInfo = exports.Region = exports.Status = exports.AccessLevel = exports.ISpaceInfo = void 0;
4
- class ISpaceInfo {
5
- }
6
- exports.ISpaceInfo = ISpaceInfo;
3
+ exports.CustomDomain_CertStatus = exports.CustomDomain_Status = exports.nameFormat = exports.RegionInfo = exports.Region = exports.Status = exports.AccessLevel = void 0;
7
4
  var AccessLevel;
8
5
  (function (AccessLevel) {
9
6
  AccessLevel[AccessLevel["NULL"] = 0] = "NULL";
@@ -65,6 +62,13 @@ exports.RegionInfo = {
65
62
  return null;
66
63
  }
67
64
  };
65
+ var nameFormat;
66
+ (function (nameFormat) {
67
+ nameFormat[nameFormat["FIRST_LAST"] = 0] = "FIRST_LAST";
68
+ nameFormat[nameFormat["LAST_FIRST"] = 1] = "LAST_FIRST";
69
+ nameFormat[nameFormat["FIRST_COMMA_LAST"] = 2] = "FIRST_COMMA_LAST";
70
+ nameFormat[nameFormat["LAST_COMMA_FIRST"] = 3] = "LAST_COMMA_FIRST";
71
+ })(nameFormat || (exports.nameFormat = nameFormat = {}));
68
72
  var CustomDomain_Status;
69
73
  (function (CustomDomain_Status) {
70
74
  CustomDomain_Status[CustomDomain_Status["NOT_CONFIGURED"] = 0] = "NOT_CONFIGURED";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.615",
3
+ "version": "2.10.617",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",