@connectedxm/client 7.4.3 → 7.4.5
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/index.d.ts +8 -1
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -186,7 +186,10 @@ declare enum AccountAttributeType {
|
|
|
186
186
|
text = "text",
|
|
187
187
|
number = "number",
|
|
188
188
|
date = "date",
|
|
189
|
-
boolean = "boolean"
|
|
189
|
+
boolean = "boolean",
|
|
190
|
+
select = "select",
|
|
191
|
+
search = "search",
|
|
192
|
+
location = "location"
|
|
190
193
|
}
|
|
191
194
|
interface BaseAccountAttribute {
|
|
192
195
|
name: string;
|
|
@@ -932,6 +935,7 @@ interface BaseBlock {
|
|
|
932
935
|
description: string | null;
|
|
933
936
|
limit: number;
|
|
934
937
|
grouped: boolean;
|
|
938
|
+
collapsed: boolean;
|
|
935
939
|
}
|
|
936
940
|
interface Block extends BaseBlock {
|
|
937
941
|
sessions: BaseSession[];
|
|
@@ -2116,6 +2120,9 @@ interface OrganizationConfig {
|
|
|
2116
2120
|
editable: boolean;
|
|
2117
2121
|
required: boolean;
|
|
2118
2122
|
public: boolean;
|
|
2123
|
+
options: string[];
|
|
2124
|
+
locationOption: LocationQuestionOption;
|
|
2125
|
+
searchListId: string | null;
|
|
2119
2126
|
}[];
|
|
2120
2127
|
OPTIONS: Record<string, any> | null;
|
|
2121
2128
|
}
|
package/dist/index.js
CHANGED
|
@@ -8097,6 +8097,9 @@ var AccountAttributeType = /* @__PURE__ */ ((AccountAttributeType2) => {
|
|
|
8097
8097
|
AccountAttributeType2["number"] = "number";
|
|
8098
8098
|
AccountAttributeType2["date"] = "date";
|
|
8099
8099
|
AccountAttributeType2["boolean"] = "boolean";
|
|
8100
|
+
AccountAttributeType2["select"] = "select";
|
|
8101
|
+
AccountAttributeType2["search"] = "search";
|
|
8102
|
+
AccountAttributeType2["location"] = "location";
|
|
8100
8103
|
return AccountAttributeType2;
|
|
8101
8104
|
})(AccountAttributeType || {});
|
|
8102
8105
|
var isSelf = (account) => {
|