@xoxno/types 1.0.158 → 1.0.160

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.
@@ -120,7 +120,7 @@ __decorate([
120
120
  ], EventGuestRegistration.prototype, "email", void 0);
121
121
  __decorate([
122
122
  (0, swagger_1.ApiProperty)({
123
- description: 'First name.',
123
+ description: 'Name of the guest',
124
124
  type: String,
125
125
  required: false,
126
126
  }),
@@ -128,7 +128,7 @@ __decorate([
128
128
  ], EventGuestRegistration.prototype, "name", void 0);
129
129
  __decorate([
130
130
  (0, swagger_1.ApiProperty)({
131
- description: 'Last name.',
131
+ description: 'Phone number of the guest',
132
132
  type: String,
133
133
  required: false,
134
134
  }),
@@ -6,6 +6,7 @@ export declare class EventInvitationDoc {
6
6
  eventId: string;
7
7
  name?: string;
8
8
  email?: string;
9
+ phone?: string;
9
10
  tickets: TicketProfileSummary[];
10
11
  startTime: number;
11
12
  endTime: number;
@@ -70,6 +70,14 @@ __decorate([
70
70
  }),
71
71
  __metadata("design:type", String)
72
72
  ], EventInvitationDoc.prototype, "email", void 0);
73
+ __decorate([
74
+ (0, swagger_1.ApiProperty)({
75
+ description: 'Phone number of the guest',
76
+ type: String,
77
+ required: false,
78
+ }),
79
+ __metadata("design:type", String)
80
+ ], EventInvitationDoc.prototype, "phone", void 0);
73
81
  __decorate([
74
82
  (0, swagger_1.ApiProperty)({
75
83
  description: 'List of ticket types with their IDs and quantities.',
@@ -2,5 +2,6 @@ export declare enum EventInvitationStatus {
2
2
  PENDING = "pending",
3
3
  ACCEPTED = "accepted",
4
4
  DECLINED = "declined",
5
- CANCELED = "canceled"
5
+ CANCELED = "canceled",
6
+ CHECKED_IN = "checkedIn"
6
7
  }
@@ -7,4 +7,5 @@ var EventInvitationStatus;
7
7
  EventInvitationStatus["ACCEPTED"] = "accepted";
8
8
  EventInvitationStatus["DECLINED"] = "declined";
9
9
  EventInvitationStatus["CANCELED"] = "canceled";
10
+ EventInvitationStatus["CHECKED_IN"] = "checkedIn";
10
11
  })(EventInvitationStatus || (exports.EventInvitationStatus = EventInvitationStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.158",
3
+ "version": "1.0.160",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {