@trii/types 2.10.615 → 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.
- package/dist/Spaces/spaces.d.ts +7 -0
- package/dist/Spaces/spaces.js +8 -1
- package/package.json +1 -1
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";
|