@hubs101/js-api-skd-client 1.0.10310 → 1.0.10312
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.
|
@@ -132,6 +132,14 @@ export type AttendeeProfile = Attendee & {
|
|
|
132
132
|
};
|
|
133
133
|
secret?: string;
|
|
134
134
|
type?: string;
|
|
135
|
+
addition?: {
|
|
136
|
+
dinner?: number;
|
|
137
|
+
icebreaker?: number;
|
|
138
|
+
};
|
|
139
|
+
booking_answers: {
|
|
140
|
+
answers: AnswersType[];
|
|
141
|
+
count: number;
|
|
142
|
+
};
|
|
135
143
|
};
|
|
136
144
|
export type Speaker = Attendee & {
|
|
137
145
|
priority: number;
|
package/lib/api/event/types.d.ts
CHANGED
|
@@ -611,10 +611,10 @@ export type BookingDetails = {
|
|
|
611
611
|
date: string;
|
|
612
612
|
};
|
|
613
613
|
booking_answers: {
|
|
614
|
-
answers:
|
|
614
|
+
answers: AnswersType[];
|
|
615
615
|
count: number;
|
|
616
616
|
};
|
|
617
|
-
booking_questions:
|
|
617
|
+
booking_questions: BookingQuestion[];
|
|
618
618
|
event: {
|
|
619
619
|
end_date: string;
|
|
620
620
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubs101/js-api-skd-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10312",
|
|
4
4
|
"author": "Liveware",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "jest --config jestconfig.json",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"preversion": "npm run lint",
|
|
13
13
|
"version": "npm run format && git add -A src",
|
|
14
14
|
"postversion": "git push && git push --tags",
|
|
15
|
-
"new-version": "git pull
|
|
15
|
+
"new-version": "git pull; npm run build && git commit -m \"update api\" -a --no-verify; npm version patch && npm publish"
|
|
16
16
|
},
|
|
17
17
|
"meta": {},
|
|
18
18
|
"description": "Package for easy access to Event App API",
|