reach-api-sdk 1.0.217 → 1.0.219

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.
Files changed (74) hide show
  1. package/dist/reach-sdk.d.ts +3711 -580
  2. package/dist/reach-sdk.js +2422 -284
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +18 -0
  5. package/src/definition/swagger.yaml +19899 -12337
  6. package/src/index.ts +26 -0
  7. package/src/models/AccessCredential.ts +74 -0
  8. package/src/models/AccessCredentialPage.ts +12 -0
  9. package/src/models/AccessCredentialPatch.ts +18 -0
  10. package/src/models/AccessCredentialPost.ts +14 -0
  11. package/src/models/ActivityType.ts +1 -0
  12. package/src/models/CodelocksLock.ts +62 -0
  13. package/src/models/CodelocksLockPage.ts +12 -0
  14. package/src/models/CodelocksLockPatch.ts +46 -0
  15. package/src/models/CodelocksLockPost.ts +42 -0
  16. package/src/models/Course.ts +4 -0
  17. package/src/models/CourseCreate.ts +4 -0
  18. package/src/models/CoursePatch.ts +4 -0
  19. package/src/models/CourseSession.ts +1 -1
  20. package/src/models/DealActivity.ts +4 -0
  21. package/src/models/DealActivityPost.ts +4 -0
  22. package/src/models/EmailSetting.ts +4 -0
  23. package/src/models/Facility.ts +8 -4
  24. package/src/models/FacilityPatch.ts +4 -0
  25. package/src/models/FacilityPost.ts +4 -0
  26. package/src/models/FeatureAnnouncementDismissPost.ts +14 -0
  27. package/src/models/FeatureAnnouncementForUserDto.ts +38 -0
  28. package/src/models/GenericActivity.ts +4 -0
  29. package/src/models/Image.ts +4 -0
  30. package/src/models/IntegrationCodelocksSettings.ts +38 -0
  31. package/src/models/IntegrationCodelocksSettingsCreate.ts +18 -0
  32. package/src/models/IntegrationCodelocksSettingsPage.ts +12 -0
  33. package/src/models/IntegrationCodelocksSettingsPatch.ts +22 -0
  34. package/src/models/IntegrationCodelocksSettingsPost.ts +18 -0
  35. package/src/models/IntegrationQueue.ts +4 -0
  36. package/src/models/IntegrationType.ts +1 -0
  37. package/src/models/NotificationType.ts +1 -0
  38. package/src/models/Offer.ts +4 -0
  39. package/src/models/OfferPatch.ts +4 -0
  40. package/src/models/OfferPost.ts +4 -0
  41. package/src/models/OpportunityType.ts +1 -0
  42. package/src/models/Order.ts +3 -3
  43. package/src/models/OrderItem.ts +11 -3
  44. package/src/models/OrderItemCodelocksAccess.ts +14 -0
  45. package/src/models/OrderItemReport.ts +25 -1
  46. package/src/models/OrderPatchItem.ts +4 -0
  47. package/src/models/OrderPostItem.ts +4 -0
  48. package/src/models/SellableItem.ts +194 -0
  49. package/src/models/SellableItemPage.ts +12 -0
  50. package/src/models/SellableItemPatch.ts +150 -0
  51. package/src/models/SellableItemPost.ts +145 -0
  52. package/src/models/Session.ts +4 -0
  53. package/src/models/SessionCreate.ts +4 -0
  54. package/src/models/SessionPatch.ts +4 -0
  55. package/src/models/Survey.ts +3 -3
  56. package/src/models/SurveyAnswer.ts +4 -4
  57. package/src/models/SurveyQuestion.ts +3 -3
  58. package/src/models/SurveyQuestionOption.ts +2 -2
  59. package/src/models/WaitlistActivity.ts +3 -3
  60. package/src/models/WaitlistOpportunity.ts +4 -4
  61. package/src/services/AccessCredentialsService.ts +812 -0
  62. package/src/services/CodelocksLocksService.ts +752 -0
  63. package/src/services/DealActivitiesService.ts +60 -0
  64. package/src/services/EmailSettingsService.ts +30 -0
  65. package/src/services/FeatureAnnouncementsService.ts +56 -0
  66. package/src/services/ImagesService.ts +30 -0
  67. package/src/services/IntegrationCodelocksSettingsService.ts +689 -0
  68. package/src/services/IntegrationQueueService.ts +30 -0
  69. package/src/services/OffersService.ts +60 -0
  70. package/src/services/OrderItemsService.ts +30 -0
  71. package/src/services/PublicOrderItemsService.ts +12 -0
  72. package/src/services/PublicSellableItemsService.ts +473 -0
  73. package/src/services/SellableItemsService.ts +962 -0
  74. package/src/services/SessionsService.ts +2 -2
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * Create/update payload for Codelocks integration settings (upsert from partner settings UI).
8
+ */
9
+ export type IntegrationCodelocksSettingsCreate = {
10
+ /**
11
+ * Gets or sets the tenant Id.
12
+ */
13
+ tenantId: string;
14
+ /**
15
+ * Gets or sets a value indicating whether the integration is enabled.
16
+ */
17
+ enabled: boolean;
18
+ };
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ import type { IntegrationCodelocksSettings } from './IntegrationCodelocksSettings';
7
+ import type { Pagination } from './Pagination';
8
+
9
+ export type IntegrationCodelocksSettingsPage = {
10
+ pagination: Pagination;
11
+ readonly items: Array<IntegrationCodelocksSettings>;
12
+ };
@@ -0,0 +1,22 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * Patch model for Codelocks integration settings updates.
8
+ */
9
+ export type IntegrationCodelocksSettingsPatch = {
10
+ /**
11
+ * Gets or sets the tenant Id.
12
+ */
13
+ tenantId: string;
14
+ /**
15
+ * Gets or sets the Id.
16
+ */
17
+ id: string;
18
+ /**
19
+ * Gets or sets a value indicating whether the integration is enabled.
20
+ */
21
+ enabled?: boolean | null;
22
+ };
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * Post model for Codelocks integration settings inserts.
8
+ */
9
+ export type IntegrationCodelocksSettingsPost = {
10
+ /**
11
+ * Gets or sets the tenant Id.
12
+ */
13
+ tenantId: string;
14
+ /**
15
+ * Gets or sets a value indicating whether the integration is enabled.
16
+ */
17
+ enabled?: boolean | null;
18
+ };
@@ -54,4 +54,8 @@ export type IntegrationQueue = {
54
54
  * Gets or sets the last error message if any.
55
55
  */
56
56
  lastError?: string | null;
57
+ /**
58
+ * Gets or sets the earliest UTC instant when this queue item may be processed (e.g. NetCode T−60m).
59
+ */
60
+ processAfterUtc?: string | null;
57
61
  };
@@ -8,4 +8,5 @@
8
8
  */
9
9
  export enum IntegrationType {
10
10
  DOTDIGITAL_UPSERT_CONTACT = 'DotdigitalUpsertContact',
11
+ CODELOCKS_GENERATE_NET_CODE = 'CodelocksGenerateNetCode',
11
12
  }
@@ -21,4 +21,5 @@ export enum NotificationType {
21
21
  NEW_ACTIVITY = 'NewActivity',
22
22
  PAYMENT_RECIEVED = 'PaymentRecieved',
23
23
  POST_COMPLETION_SURVEY_COMPLETED = 'PostCompletionSurveyCompleted',
24
+ CODELOCKS_ACCESS_CODE_READY = 'CodelocksAccessCodeReady',
24
25
  }
@@ -53,6 +53,10 @@ export type Offer = {
53
53
  * Gets or sets the course id.
54
54
  */
55
55
  courseId?: string | null;
56
+ /**
57
+ * Gets or sets the sellable item id.
58
+ */
59
+ sellableItemId?: string | null;
56
60
  /**
57
61
  * Gets or sets the survey id.
58
62
  */
@@ -31,6 +31,10 @@ export type OfferPatch = {
31
31
  * Gets or sets the course id.
32
32
  */
33
33
  courseId?: string | null;
34
+ /**
35
+ * Gets or sets the sellable item id.
36
+ */
37
+ sellableItemId?: string | null;
34
38
  /**
35
39
  * Gets or sets the survey id.
36
40
  */
@@ -27,6 +27,10 @@ export type OfferPost = {
27
27
  * Gets or sets the course id.
28
28
  */
29
29
  courseId?: string | null;
30
+ /**
31
+ * Gets or sets the sellable item id.
32
+ */
33
+ sellableItemId?: string | null;
30
34
  /**
31
35
  * Gets or sets the survey id.
32
36
  */
@@ -10,4 +10,5 @@ export enum OpportunityType {
10
10
  SLOT = 'Slot',
11
11
  SCHEDULED_SESSION = 'ScheduledSession',
12
12
  COURSE = 'Course',
13
+ SELLABLE_ITEM = 'SellableItem',
13
14
  }
@@ -165,7 +165,7 @@ export type Order = {
165
165
  /**
166
166
  * Gets or sets the last name.
167
167
  */
168
- lastName?: string | null;
168
+ lastName: string;
169
169
  /**
170
170
  * Gets the attendees abbreviated name.
171
171
  */
@@ -177,11 +177,11 @@ export type Order = {
177
177
  /**
178
178
  * Gets or sets the email.
179
179
  */
180
- email?: string | null;
180
+ email: string;
181
181
  /**
182
182
  * Gets or sets the phone number.
183
183
  */
184
- phone?: string | null;
184
+ phone: string;
185
185
  /**
186
186
  * Gets or sets the orders street address.
187
187
  */
@@ -9,9 +9,11 @@ import type { IOpportunity } from './IOpportunity';
9
9
  import type { Offer } from './Offer';
10
10
  import type { OpportunityType } from './OpportunityType';
11
11
  import type { Order } from './Order';
12
+ import type { OrderItemCodelocksAccess } from './OrderItemCodelocksAccess';
12
13
  import type { OrderItemDeal } from './OrderItemDeal';
13
14
  import type { OrderItemStatus } from './OrderItemStatus';
14
15
  import type { ScheduledSession } from './ScheduledSession';
16
+ import type { SellableItem } from './SellableItem';
15
17
  import type { Slot } from './Slot';
16
18
 
17
19
  /**
@@ -45,7 +47,7 @@ export type OrderItem = {
45
47
  /**
46
48
  * Gets or sets the order id.
47
49
  */
48
- orderId?: string | null;
50
+ orderId: string;
49
51
  /**
50
52
  * Gets or sets the slot id.
51
53
  */
@@ -58,10 +60,14 @@ export type OrderItem = {
58
60
  * Gets or sets the course id.
59
61
  */
60
62
  courseId?: string | null;
63
+ /**
64
+ * Gets or sets the sellable item id.
65
+ */
66
+ sellableItemId?: string | null;
61
67
  /**
62
68
  * Gets or sets the offer id.
63
69
  */
64
- offerId?: string | null;
70
+ offerId: string;
65
71
  /**
66
72
  * Gets or sets the payment policy id.
67
73
  */
@@ -77,7 +83,7 @@ export type OrderItem = {
77
83
  /**
78
84
  * Gets or sets the quantity of opportunities required on the order item.
79
85
  */
80
- quantity?: number | null;
86
+ quantity: number;
81
87
  status?: OrderItemStatus;
82
88
  /**
83
89
  * Gets or sets a value indicating whether the order item has been refunded.
@@ -111,6 +117,7 @@ export type OrderItem = {
111
117
  slot?: Slot;
112
118
  scheduledSession?: ScheduledSession;
113
119
  course?: Course;
120
+ sellableItem?: SellableItem;
114
121
  offer?: Offer;
115
122
  /**
116
123
  * Gets or sets the order item deals.
@@ -127,6 +134,7 @@ export type OrderItem = {
127
134
  * Gets or sets a value indicating whether the order item is rescheduleable.
128
135
  */
129
136
  rescheduleable?: boolean | null;
137
+ codelocksAccess?: OrderItemCodelocksAccess;
130
138
  /**
131
139
  * Gets or sets the unit price before discount.
132
140
  */
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * Generated Codelocks access for a single order line (customer portal JSON only; not persisted on Reach.Models.OrderItem).
8
+ */
9
+ export type OrderItemCodelocksAccess = {
10
+ /**
11
+ * Gets or sets the access code (NetCode) shown to the customer.
12
+ */
13
+ accessCode?: string | null;
14
+ };
@@ -91,9 +91,33 @@ export type OrderItemReport = {
91
91
  */
92
92
  offerName?: string | null;
93
93
  /**
94
- * Gets or sets the order item value.
94
+ * Gets or sets the unit list price before discount (per unit).
95
+ */
96
+ unitPriceBeforeDiscount?: number | null;
97
+ /**
98
+ * Gets or sets the unit price after discount (per unit).
99
+ */
100
+ unitPriceAfterDiscount?: number | null;
101
+ /**
102
+ * Gets or sets the order item list line total (offer unit price × quantity).
95
103
  */
96
104
  orderItemValue?: number;
105
+ /**
106
+ * Gets or sets the line total after discount (`effective_item_price`).
107
+ */
108
+ orderItemValueAfterDiscount?: number | null;
109
+ /**
110
+ * Gets or sets applied deal names (semicolon-separated when multiple).
111
+ */
112
+ dealName?: string | null;
113
+ /**
114
+ * Gets or sets discount codes from applied deals (semicolon-separated when multiple).
115
+ */
116
+ discountCode?: string | null;
117
+ /**
118
+ * Gets or sets total deal discount value allocated to this line.
119
+ */
120
+ dealValue?: number | null;
97
121
  /**
98
122
  * Gets or sets the currency.
99
123
  */
@@ -23,6 +23,10 @@ export type OrderPatchItem = {
23
23
  * Gets or sets the course id.
24
24
  */
25
25
  courseId?: string | null;
26
+ /**
27
+ * Gets or sets the sellable item id.
28
+ */
29
+ sellableItemId?: string | null;
26
30
  /**
27
31
  * Gets or sets the offer id.
28
32
  */
@@ -19,6 +19,10 @@ export type OrderPostItem = {
19
19
  * Gets or sets the course id.
20
20
  */
21
21
  courseId?: string | null;
22
+ /**
23
+ * Gets or sets the sellable item id.
24
+ */
25
+ sellableItemId?: string | null;
22
26
  /**
23
27
  * Gets or sets the offer id.
24
28
  */
@@ -0,0 +1,194 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ import type { Activity } from './Activity';
7
+ import type { CancellationPolicy } from './CancellationPolicy';
8
+ import type { CheckoutPlatform } from './CheckoutPlatform';
9
+ import type { Deal } from './Deal';
10
+ import type { Gender } from './Gender';
11
+ import type { Image } from './Image';
12
+ import type { Offer } from './Offer';
13
+ import type { PaymentPolicy } from './PaymentPolicy';
14
+ import type { Venue } from './Venue';
15
+
16
+ /**
17
+ * A venue-scoped product with inventory (no scheduled session or course).
18
+ */
19
+ export type SellableItem = {
20
+ /**
21
+ * Gets or sets the entities Id.
22
+ */
23
+ id?: string;
24
+ /**
25
+ * Gets or sets the tenant Id.
26
+ */
27
+ tenantId: string;
28
+ /**
29
+ * Gets or sets the created date of this entity.
30
+ */
31
+ dateCreated: string;
32
+ /**
33
+ * Gets or sets the last modified date of this entity.
34
+ */
35
+ dateModified: string;
36
+ /**
37
+ * Gets or sets the modified by Id.
38
+ */
39
+ modifiedById?: string | null;
40
+ /**
41
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
42
+ */
43
+ isLive: boolean;
44
+ /**
45
+ * Gets or sets the provider id.
46
+ */
47
+ providerId?: string | null;
48
+ /**
49
+ * Gets or sets the venue id.
50
+ */
51
+ venueId?: string | null;
52
+ /**
53
+ * Gets or sets the activity category id.
54
+ */
55
+ activityId?: number | null;
56
+ /**
57
+ * Gets or sets the name.
58
+ */
59
+ name?: string | null;
60
+ /**
61
+ * Gets or sets the description.
62
+ */
63
+ description?: string | null;
64
+ /**
65
+ * Gets or sets the image url.
66
+ */
67
+ imageUrl?: string | null;
68
+ /**
69
+ * Gets or sets a value indicating whether the item is bookable on the web.
70
+ */
71
+ online?: boolean | null;
72
+ /**
73
+ * Gets or sets a value indicating whether the item is archived.
74
+ */
75
+ archived?: boolean | null;
76
+ /**
77
+ * Gets or sets a value indicating whether the item is deleted.
78
+ */
79
+ deleted?: boolean | null;
80
+ /**
81
+ * Gets or sets remaining stock (decremented when orders are booked).
82
+ */
83
+ stockQuantity?: number;
84
+ /**
85
+ * Gets or sets a value indicating whether the item is featured on the storefront.
86
+ */
87
+ featured?: boolean;
88
+ /**
89
+ * Gets or sets a value indicating whether the item is private.
90
+ */
91
+ private?: boolean;
92
+ /**
93
+ * Gets or sets the checkout survey id.
94
+ */
95
+ surveyId?: string | null;
96
+ /**
97
+ * Gets or sets the post-completion survey id.
98
+ */
99
+ postCompletionSurveyId?: string | null;
100
+ /**
101
+ * Gets or sets the cancellation policy id.
102
+ */
103
+ cancellationPolicyId?: string;
104
+ /**
105
+ * Gets or sets the payment policy id.
106
+ */
107
+ paymentPolicyId?: string;
108
+ gender?: Gender;
109
+ /**
110
+ * Gets or sets the min age.
111
+ */
112
+ minAge?: number | null;
113
+ /**
114
+ * Gets or sets the max age.
115
+ */
116
+ maxAge?: number | null;
117
+ /**
118
+ * Gets or sets a value indicating whether there is no age restriction.
119
+ */
120
+ noAgeRestriction?: boolean;
121
+ /**
122
+ * Gets or sets additional support options.
123
+ */
124
+ additionalSupport?: Array<string> | null;
125
+ /**
126
+ * Gets or sets the contact name.
127
+ */
128
+ contactName?: string | null;
129
+ /**
130
+ * Gets or sets the contact phone.
131
+ */
132
+ contactPhone?: string | null;
133
+ /**
134
+ * Gets or sets the contact email.
135
+ */
136
+ contactEmail?: string | null;
137
+ /**
138
+ * Gets or sets the admin contact name.
139
+ */
140
+ adminContactName?: string | null;
141
+ /**
142
+ * Gets or sets the admin contact phone.
143
+ */
144
+ adminContactPhone?: string | null;
145
+ /**
146
+ * Gets or sets the admin contact email.
147
+ */
148
+ adminContactEmail?: string | null;
149
+ /**
150
+ * Gets or sets a value indicating whether to send reminder emails.
151
+ */
152
+ sendReminder?: boolean | null;
153
+ /**
154
+ * Gets or sets the reminder hours before start.
155
+ */
156
+ reminderHoursBeforeStart?: number | null;
157
+ checkoutPlatform?: CheckoutPlatform;
158
+ /**
159
+ * Gets or sets the booking link override when checkout is external.
160
+ */
161
+ bookingLinkOverride?: string | null;
162
+ /**
163
+ * Gets or sets a value indicating whether pre-registration is enabled.
164
+ */
165
+ preRegistrationEnabled?: boolean | null;
166
+ /**
167
+ * Gets or sets when pre-registration opens.
168
+ */
169
+ preRegistrationOpensAt?: string | null;
170
+ /**
171
+ * Gets or sets when pre-registration closes.
172
+ */
173
+ preRegistrationClosesAt?: string | null;
174
+ /**
175
+ * Gets or sets the pre-registration storefront message.
176
+ */
177
+ preRegistrationMessage?: string | null;
178
+ venue?: Venue;
179
+ cancellationPolicy?: CancellationPolicy;
180
+ paymentPolicy?: PaymentPolicy;
181
+ activity?: Activity;
182
+ /**
183
+ * Gets or sets offers for this item.
184
+ */
185
+ offers?: Array<Offer> | null;
186
+ /**
187
+ * Gets or sets images.
188
+ */
189
+ images?: Array<Image> | null;
190
+ /**
191
+ * Gets or sets deals applicable to this item.
192
+ */
193
+ deals?: Array<Deal> | null;
194
+ };
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ import type { Pagination } from './Pagination';
7
+ import type { SellableItem } from './SellableItem';
8
+
9
+ export type SellableItemPage = {
10
+ pagination: Pagination;
11
+ readonly items: Array<SellableItem>;
12
+ };
@@ -0,0 +1,150 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ import type { CheckoutPlatform } from './CheckoutPlatform';
7
+ import type { Gender } from './Gender';
8
+ import type { UpdateEmailSettings } from './UpdateEmailSettings';
9
+ import type { UpdateOffer } from './UpdateOffer';
10
+
11
+ /**
12
+ * Patch model for sellable item updates.
13
+ */
14
+ export type SellableItemPatch = {
15
+ /**
16
+ * Gets or sets the tenant Id.
17
+ */
18
+ tenantId: string;
19
+ /**
20
+ * Gets or sets the Id.
21
+ */
22
+ id: string;
23
+ /**
24
+ * Gets or sets the venue id.
25
+ */
26
+ venueId?: string | null;
27
+ /**
28
+ * Gets or sets the activity category id.
29
+ */
30
+ activityId?: number | null;
31
+ /**
32
+ * Gets or sets the name.
33
+ */
34
+ name?: string | null;
35
+ /**
36
+ * Gets or sets the description.
37
+ */
38
+ description?: string | null;
39
+ /**
40
+ * Gets or sets the image url.
41
+ */
42
+ imageUrl?: string | null;
43
+ /**
44
+ * Gets or sets a value indicating whether the item is bookable on the web.
45
+ */
46
+ online?: boolean | null;
47
+ /**
48
+ * Gets or sets remaining stock.
49
+ */
50
+ stockQuantity?: number;
51
+ /**
52
+ * Gets or sets a value indicating whether the item is featured.
53
+ */
54
+ featured?: boolean | null;
55
+ /**
56
+ * Gets or sets a value indicating whether the item is private.
57
+ */
58
+ private?: boolean | null;
59
+ /**
60
+ * Gets or sets the checkout survey id.
61
+ */
62
+ surveyId?: string | null;
63
+ /**
64
+ * Gets or sets the post-completion survey id.
65
+ */
66
+ postCompletionSurveyId?: string | null;
67
+ /**
68
+ * Gets or sets the cancellation policy id.
69
+ */
70
+ cancellationPolicyId?: string | null;
71
+ /**
72
+ * Gets or sets the payment policy id.
73
+ */
74
+ paymentPolicyId?: string | null;
75
+ gender?: Gender;
76
+ /**
77
+ * Gets or sets the min age.
78
+ */
79
+ minAge?: number | null;
80
+ /**
81
+ * Gets or sets the max age.
82
+ */
83
+ maxAge?: number | null;
84
+ /**
85
+ * Gets or sets a value indicating whether there is no age restriction.
86
+ */
87
+ noAgeRestriction?: boolean | null;
88
+ /**
89
+ * Gets or sets additional support options.
90
+ */
91
+ additionalSupport?: Array<string> | null;
92
+ /**
93
+ * Gets or sets the contact name.
94
+ */
95
+ contactName?: string | null;
96
+ /**
97
+ * Gets or sets the contact phone.
98
+ */
99
+ contactPhone?: string | null;
100
+ /**
101
+ * Gets or sets the contact email.
102
+ */
103
+ contactEmail?: string | null;
104
+ /**
105
+ * Gets or sets the admin contact name.
106
+ */
107
+ adminContactName?: string | null;
108
+ /**
109
+ * Gets or sets the admin contact phone.
110
+ */
111
+ adminContactPhone?: string | null;
112
+ /**
113
+ * Gets or sets the admin contact email.
114
+ */
115
+ adminContactEmail?: string | null;
116
+ /**
117
+ * Gets or sets a value indicating whether to send reminder emails.
118
+ */
119
+ sendReminder?: boolean | null;
120
+ /**
121
+ * Gets or sets the reminder hours before start.
122
+ */
123
+ reminderHoursBeforeStart?: number | null;
124
+ checkoutPlatform?: CheckoutPlatform;
125
+ /**
126
+ * Gets or sets the booking link override.
127
+ */
128
+ bookingLinkOverride?: string | null;
129
+ /**
130
+ * Gets or sets a value indicating whether pre-registration is enabled.
131
+ */
132
+ preRegistrationEnabled?: boolean | null;
133
+ /**
134
+ * Gets or sets when pre-registration opens.
135
+ */
136
+ preRegistrationOpensAt?: string | null;
137
+ /**
138
+ * Gets or sets when pre-registration closes.
139
+ */
140
+ preRegistrationClosesAt?: string | null;
141
+ /**
142
+ * Gets or sets the pre-registration message.
143
+ */
144
+ preRegistrationMessage?: string | null;
145
+ emailSettings?: UpdateEmailSettings;
146
+ /**
147
+ * Gets or sets ticket types / offers for this item.
148
+ */
149
+ offers?: Array<UpdateOffer> | null;
150
+ };