@dev-crew-berlin/enter-js-utils 0.60.1 → 0.60.2
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.
|
@@ -190,9 +190,36 @@ export declare type components = {
|
|
|
190
190
|
* Alternatively you can set `is_edit` to trigger email that are sent on edit instead.
|
|
191
191
|
*/
|
|
192
192
|
AttendeeRespondedEvent: {
|
|
193
|
+
/**
|
|
194
|
+
* Id
|
|
195
|
+
* Format: uuid
|
|
196
|
+
*/
|
|
197
|
+
id?: string;
|
|
198
|
+
/**
|
|
199
|
+
* Event
|
|
200
|
+
* @default attendee-responded
|
|
201
|
+
* @constant
|
|
202
|
+
* @enum {string}
|
|
203
|
+
*/
|
|
204
|
+
event?: "attendee-responded";
|
|
205
|
+
/** Group */
|
|
206
|
+
group?: components["schemas"]["EventGroup"] | components["schemas"]["NoGroup"];
|
|
207
|
+
preconditions?: components["schemas"]["Preconditions"] | null;
|
|
208
|
+
/** Instancename */
|
|
209
|
+
instanceName: string;
|
|
210
|
+
/** Attendeeid */
|
|
211
|
+
attendeeId: string;
|
|
212
|
+
/** Rsvp */
|
|
193
213
|
rsvp: {
|
|
194
|
-
[key: string]:
|
|
214
|
+
[key: string]: number | null;
|
|
195
215
|
};
|
|
216
|
+
/**
|
|
217
|
+
* Responsetime
|
|
218
|
+
* Format: date-time
|
|
219
|
+
*/
|
|
220
|
+
responseTime?: string;
|
|
221
|
+
/** Isedit */
|
|
222
|
+
isEdit: boolean;
|
|
196
223
|
};
|
|
197
224
|
/** AttendeeUpdate */
|
|
198
225
|
AttendeeUpdate: {
|
|
@@ -224,9 +251,27 @@ export declare type components = {
|
|
|
224
251
|
* @description Attendee was updated. This includes `userdata` but also other data such as `payment`, `rsvp` or `tags`
|
|
225
252
|
*/
|
|
226
253
|
AttendeeUpdatedEvent: {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
254
|
+
/**
|
|
255
|
+
* Id
|
|
256
|
+
* Format: uuid
|
|
257
|
+
*/
|
|
258
|
+
id?: string;
|
|
259
|
+
/**
|
|
260
|
+
* Event
|
|
261
|
+
* @default attendee-updated
|
|
262
|
+
* @constant
|
|
263
|
+
* @enum {string}
|
|
264
|
+
*/
|
|
265
|
+
event?: "attendee-updated";
|
|
266
|
+
/** Group */
|
|
267
|
+
group?: components["schemas"]["EventGroup"] | components["schemas"]["NoGroup"];
|
|
268
|
+
/** Preconditions */
|
|
269
|
+
preconditions?: [components["schemas"]["Filter"], components["schemas"]["FieldGroup-Input"][]] | null;
|
|
270
|
+
/** Instancename */
|
|
271
|
+
instanceName: string;
|
|
272
|
+
/** Attendeeid */
|
|
273
|
+
attendeeId: string;
|
|
274
|
+
updates: components["schemas"]["AttendeeUpdate"];
|
|
230
275
|
};
|
|
231
276
|
/** AuthCode */
|
|
232
277
|
AuthCode: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-crew-berlin/enter-js-utils",
|
|
3
|
-
"version": "0.60.
|
|
3
|
+
"version": "0.60.2",
|
|
4
4
|
"description": "utils such as vaildation and other helpers to work with data from the enter app",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
23
23
|
"storybook": "start-storybook -p 6006",
|
|
24
24
|
"build-storybook": "build-storybook",
|
|
25
|
-
"generate-client": "openapi-typescript https://api.enter.events/openapi.json --output src/generated/api-schema.ts --
|
|
25
|
+
"generate-client": "openapi-typescript https://api.enter.events/openapi.json --output src/generated/api-schema.ts --empty-objects-unknown --export-type"
|
|
26
26
|
},
|
|
27
27
|
"lint-staged": {
|
|
28
28
|
"**/*": "prettier --write --ignore-unknown"
|