wedance-shared 1.0.142 → 1.0.144
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,24 @@
|
|
|
1
|
+
export interface EventCheckinCode {
|
|
2
|
+
id: string;
|
|
3
|
+
eventId: string | null;
|
|
4
|
+
code: string;
|
|
5
|
+
createdBy: string | null;
|
|
6
|
+
createdAt: string;
|
|
7
|
+
expiresAt: string;
|
|
8
|
+
disabledAt: string | null;
|
|
9
|
+
replacedAt: string | null;
|
|
10
|
+
}
|
|
11
|
+
export interface CreateEventCheckinCodeInput {
|
|
12
|
+
eventId: string;
|
|
13
|
+
code: string;
|
|
14
|
+
expiresAt?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface VerifyCheckinCodeInput {
|
|
17
|
+
code: string;
|
|
18
|
+
}
|
|
19
|
+
export interface VerifyCheckinCodeResponse {
|
|
20
|
+
token: string;
|
|
21
|
+
organizerId: string;
|
|
22
|
+
eventId: string;
|
|
23
|
+
uid: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkin.js","sourceRoot":"","sources":["../../src/types/checkin.ts"],"names":[],"mappings":""}
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export * from "./infoBanner.js";
|
|
|
10
10
|
export * from "./wedancePosts.js";
|
|
11
11
|
export * from "./support.js";
|
|
12
12
|
export * from "./coupons.js";
|
|
13
|
+
export * from "./checkin.js";
|
|
13
14
|
// Re-export from subdirectories
|
|
14
15
|
export * from "./festivals/index.js";
|
|
15
16
|
//# sourceMappingURL=index.js.map
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAE7B,gCAAgC;AAChC,cAAc,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAE7B,gCAAgC;AAChC,cAAc,sBAAsB,CAAC"}
|
package/package.json
CHANGED