@connectedxm/client 7.5.2 → 7.5.4
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/.prettierrc +23 -0
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/.prettierrc
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"arrowParens": "always",
|
|
3
|
+
"bracketSpacing": true,
|
|
4
|
+
"endOfLine": "lf",
|
|
5
|
+
"htmlWhitespaceSensitivity": "css",
|
|
6
|
+
"insertPragma": false,
|
|
7
|
+
"singleAttributePerLine": false,
|
|
8
|
+
"bracketSameLine": false,
|
|
9
|
+
"jsxBracketSameLine": false,
|
|
10
|
+
"jsxSingleQuote": false,
|
|
11
|
+
"printWidth": 80,
|
|
12
|
+
"proseWrap": "preserve",
|
|
13
|
+
"quoteProps": "as-needed",
|
|
14
|
+
"requirePragma": false,
|
|
15
|
+
"semi": true,
|
|
16
|
+
"singleQuote": false,
|
|
17
|
+
"tabWidth": 2,
|
|
18
|
+
"trailingComma": "es5",
|
|
19
|
+
"useTabs": false,
|
|
20
|
+
"embeddedLanguageFormatting": "auto",
|
|
21
|
+
"vueIndentScriptAndStyle": false,
|
|
22
|
+
"experimentalTernaries": false
|
|
23
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -418,6 +418,7 @@ interface Event extends BaseEvent {
|
|
|
418
418
|
registrationHideTitle: boolean;
|
|
419
419
|
publicRegistrants: boolean;
|
|
420
420
|
activityFeedEnabled: boolean;
|
|
421
|
+
activationsEnabled: boolean | null;
|
|
421
422
|
chatBotNumber: string | null;
|
|
422
423
|
sessionsVisibility: EventAgendaVisibility;
|
|
423
424
|
speakersVisibility: EventAgendaVisibility;
|
|
@@ -1616,7 +1617,7 @@ interface EventActivation extends BaseEventActivation {
|
|
|
1616
1617
|
longDescription: string | null;
|
|
1617
1618
|
completions?: BaseEventActivationCompletion[];
|
|
1618
1619
|
survey: BaseSurvey | null;
|
|
1619
|
-
|
|
1620
|
+
sessions: BaseSession[] | null;
|
|
1620
1621
|
createdAt: string;
|
|
1621
1622
|
updatedAt: string;
|
|
1622
1623
|
}
|
|
@@ -2462,7 +2463,7 @@ interface Survey extends BaseSurvey {
|
|
|
2462
2463
|
description: string | null;
|
|
2463
2464
|
requireAuth: boolean;
|
|
2464
2465
|
event: BaseEvent | null;
|
|
2465
|
-
|
|
2466
|
+
sessions: BaseSession[] | null;
|
|
2466
2467
|
activation: BaseEventActivation | null;
|
|
2467
2468
|
}
|
|
2468
2469
|
interface BaseSurveySection {
|