@trii/types 2.10.614 → 2.10.616
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.
|
@@ -117,8 +117,8 @@ export interface IContactField {
|
|
|
117
117
|
readOnly: boolean;
|
|
118
118
|
hide: boolean;
|
|
119
119
|
useMask: boolean;
|
|
120
|
-
min
|
|
121
|
-
max
|
|
120
|
+
min?: number;
|
|
121
|
+
max?: number;
|
|
122
122
|
createdAt?: string | null;
|
|
123
123
|
createdBy?: string | null;
|
|
124
124
|
deleted: boolean;
|
package/dist/Spaces/spaces.d.ts
CHANGED
|
@@ -69,11 +69,18 @@ export interface ISpace {
|
|
|
69
69
|
domain_active: string;
|
|
70
70
|
domain_subdomain: string;
|
|
71
71
|
domain_custom: ICustomDomain;
|
|
72
|
+
contactNameFormat: nameFormat;
|
|
72
73
|
showItemsInDevelopment: boolean;
|
|
73
74
|
timeZone: string;
|
|
74
75
|
createdAt: Date;
|
|
75
76
|
deletedAt: Date;
|
|
76
77
|
}
|
|
78
|
+
export declare enum nameFormat {
|
|
79
|
+
FIRST_LAST = 0,
|
|
80
|
+
LAST_FIRST = 1,
|
|
81
|
+
FIRST_COMMA_LAST = 2,
|
|
82
|
+
LAST_COMMA_FIRST = 3
|
|
83
|
+
}
|
|
77
84
|
export interface ICustomDomain {
|
|
78
85
|
host: string;
|
|
79
86
|
status: CustomDomain_Status;
|
package/dist/Spaces/spaces.js
CHANGED
|
@@ -1,6 +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;
|
|
3
|
+
exports.CustomDomain_CertStatus = exports.CustomDomain_Status = exports.nameFormat = exports.RegionInfo = exports.Region = exports.Status = exports.AccessLevel = exports.ISpaceInfo = void 0;
|
|
4
4
|
class ISpaceInfo {
|
|
5
5
|
}
|
|
6
6
|
exports.ISpaceInfo = ISpaceInfo;
|
|
@@ -65,6 +65,13 @@ exports.RegionInfo = {
|
|
|
65
65
|
return null;
|
|
66
66
|
}
|
|
67
67
|
};
|
|
68
|
+
var nameFormat;
|
|
69
|
+
(function (nameFormat) {
|
|
70
|
+
nameFormat[nameFormat["FIRST_LAST"] = 0] = "FIRST_LAST";
|
|
71
|
+
nameFormat[nameFormat["LAST_FIRST"] = 1] = "LAST_FIRST";
|
|
72
|
+
nameFormat[nameFormat["FIRST_COMMA_LAST"] = 2] = "FIRST_COMMA_LAST";
|
|
73
|
+
nameFormat[nameFormat["LAST_COMMA_FIRST"] = 3] = "LAST_COMMA_FIRST";
|
|
74
|
+
})(nameFormat || (exports.nameFormat = nameFormat = {}));
|
|
68
75
|
var CustomDomain_Status;
|
|
69
76
|
(function (CustomDomain_Status) {
|
|
70
77
|
CustomDomain_Status[CustomDomain_Status["NOT_CONFIGURED"] = 0] = "NOT_CONFIGURED";
|