glitch-javascript-sdk 0.1.7 → 0.1.9

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.
@@ -0,0 +1,19 @@
1
+
2
+ /**
3
+ * Select what kind of venue this is for the event.
4
+ * @readonly
5
+ * @enum {integer}
6
+ */
7
+
8
+ export enum VenueType {
9
+ /** @member {integer} */
10
+ /** A virtual only event. */
11
+ VIRTUAL = 1,
12
+ /** @member {integer} */
13
+ /** An in person only event (IRL). */
14
+ IN_PERSON = 2,
15
+ /** @member {integer} */
16
+ /** Combination of IRL and in-person. */
17
+ HYBRID = 3
18
+ }
19
+
package/src/index.ts CHANGED
@@ -25,6 +25,7 @@ import { TeamJoinProcess } from "./constants/TeamJoinProcess";
25
25
  import TicketTypes from "./constants/TicketTypes";
26
26
  import { TicketUsageTypes } from "./constants/TicketUsageTypes";
27
27
  import { TicketVisibility } from "./constants/TicketVisbility";
28
+ import { VenueType } from "./constants/VenueTypes";
28
29
 
29
30
  class Glitch {
30
31
 
@@ -58,7 +59,8 @@ class Glitch {
58
59
  TeamJoinProcess : TeamJoinProcess,
59
60
  TicketTypes : TicketTypes,
60
61
  TicketUsageTypes : TicketUsageTypes,
61
- TicketVisibility : TicketVisibility
62
+ TicketVisibility : TicketVisibility,
63
+ VenueType : VenueType
62
64
  }
63
65
 
64
66