reach-api-sdk 1.0.102 → 1.0.103

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.
@@ -2663,6 +2663,10 @@ type Session = {
2663
2663
  * Gets or sets a value indicating whether the Session can be used as a template.
2664
2664
  */
2665
2665
  allowTemplating?: boolean;
2666
+ /**
2667
+ * Gets or sets the reminder hours before start.
2668
+ */
2669
+ reminderHoursBeforeStart?: number | null;
2666
2670
  /**
2667
2671
  * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
2668
2672
  */
@@ -3859,6 +3863,10 @@ type Course = {
3859
3863
  */
3860
3864
  postCompletionEmailSent?: boolean;
3861
3865
  status?: CourseStatus;
3866
+ /**
3867
+ * Gets or sets the reminder hours before start.
3868
+ */
3869
+ reminderHoursBeforeStart?: number | null;
3862
3870
  /**
3863
3871
  * Gets or sets a value indicating whether the course is archived and should be ignored under normal operation.
3864
3872
  */
@@ -5412,6 +5420,10 @@ type CreateEmailSettings = {
5412
5420
  * Gets or sets the order post completion text.
5413
5421
  */
5414
5422
  postCompletionText?: string | null;
5423
+ /**
5424
+ * Gets or sets the order post completion text.
5425
+ */
5426
+ reminderEmailText?: string | null;
5415
5427
  };
5416
5428
 
5417
5429
  /**
@@ -5618,6 +5630,10 @@ type UpdateEmailSettings = {
5618
5630
  * Gets or sets the order post completion text.
5619
5631
  */
5620
5632
  postCompletionText?: string | null;
5633
+ /**
5634
+ * Gets or sets the order post completion text.
5635
+ */
5636
+ reminderEmailText?: string | null;
5621
5637
  };
5622
5638
 
5623
5639
  /**
@@ -5735,6 +5751,10 @@ type CoursePatch = {
5735
5751
  * Gets or sets a value indicating whether the course can be used as a template.
5736
5752
  */
5737
5753
  allowTemplating?: boolean | null;
5754
+ /**
5755
+ * Gets or sets the Reminder Hours Before Start.
5756
+ */
5757
+ reminderHoursBeforeStart?: number | null;
5738
5758
  /**
5739
5759
  * Gets or sets a value indicating whether the course is archived and should be ignored under normal operation.
5740
5760
  */
@@ -8242,17 +8262,17 @@ type EmailReminderSchedule = {
8242
8262
  */
8243
8263
  isLive: boolean;
8244
8264
  /**
8245
- * Gets or sets the order Id.
8265
+ * Gets or sets the scheduled session id.
8246
8266
  */
8247
- orderId?: string | null;
8267
+ scheduledSessionId?: string | null;
8248
8268
  /**
8249
- * Gets or sets the date the reminder is scheduled to send.
8269
+ * Gets or sets the course id.
8250
8270
  */
8251
- dateScheduled?: string;
8271
+ courseSessionId?: string | null;
8252
8272
  /**
8253
- * Gets or sets the pre calculated reminder json.
8273
+ * Gets or sets the date the reminder is scheduled to send.
8254
8274
  */
8255
- reminderJson?: string | null;
8275
+ dateScheduled?: string;
8256
8276
  /**
8257
8277
  * Gets or sets a value indicating whether the reminder has been sent.
8258
8278
  */
@@ -8324,11 +8344,15 @@ declare class EmailReminderSchedulesService {
8324
8344
  * @returns boolean Success
8325
8345
  * @throws ApiError
8326
8346
  */
8327
- exists({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8347
+ exists({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8328
8348
  /**
8329
- * Gets or sets the queryable Order Id.
8349
+ * Gets or sets the queryable Course Session Id.
8330
8350
  */
8331
- orderId?: string;
8351
+ courseSessionId?: string;
8352
+ /**
8353
+ * Gets or sets the queryable Scheduled Session Id.
8354
+ */
8355
+ scheduledSessionId?: string;
8332
8356
  /**
8333
8357
  * Gets or sets the queryable date scheduled greater than.
8334
8358
  */
@@ -8337,6 +8361,10 @@ declare class EmailReminderSchedulesService {
8337
8361
  * Gets or sets the queryable date scheduled less than.
8338
8362
  */
8339
8363
  dateScheduledLte?: string;
8364
+ /**
8365
+ * Gets or sets the queryable if reminder id sent or no.
8366
+ */
8367
+ sent?: boolean;
8340
8368
  /**
8341
8369
  * Gets or sets the page number for paged queries.
8342
8370
  */
@@ -8383,11 +8411,15 @@ declare class EmailReminderSchedulesService {
8383
8411
  * @returns EmailReminderSchedulePage Success
8384
8412
  * @throws ApiError
8385
8413
  */
8386
- getPage({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8414
+ getPage({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8387
8415
  /**
8388
- * Gets or sets the queryable Order Id.
8416
+ * Gets or sets the queryable Course Session Id.
8389
8417
  */
8390
- orderId?: string;
8418
+ courseSessionId?: string;
8419
+ /**
8420
+ * Gets or sets the queryable Scheduled Session Id.
8421
+ */
8422
+ scheduledSessionId?: string;
8391
8423
  /**
8392
8424
  * Gets or sets the queryable date scheduled greater than.
8393
8425
  */
@@ -8396,6 +8428,10 @@ declare class EmailReminderSchedulesService {
8396
8428
  * Gets or sets the queryable date scheduled less than.
8397
8429
  */
8398
8430
  dateScheduledLte?: string;
8431
+ /**
8432
+ * Gets or sets the queryable if reminder id sent or no.
8433
+ */
8434
+ sent?: boolean;
8399
8435
  /**
8400
8436
  * Gets or sets the page number for paged queries.
8401
8437
  */
@@ -8453,11 +8489,15 @@ declare class EmailReminderSchedulesService {
8453
8489
  * @returns EmailReminderSchedule Success
8454
8490
  * @throws ApiError
8455
8491
  */
8456
- getListWithoutReferences({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8492
+ getListWithoutReferences({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8457
8493
  /**
8458
- * Gets or sets the queryable Order Id.
8494
+ * Gets or sets the queryable Course Session Id.
8459
8495
  */
8460
- orderId?: string;
8496
+ courseSessionId?: string;
8497
+ /**
8498
+ * Gets or sets the queryable Scheduled Session Id.
8499
+ */
8500
+ scheduledSessionId?: string;
8461
8501
  /**
8462
8502
  * Gets or sets the queryable date scheduled greater than.
8463
8503
  */
@@ -8466,6 +8506,10 @@ declare class EmailReminderSchedulesService {
8466
8506
  * Gets or sets the queryable date scheduled less than.
8467
8507
  */
8468
8508
  dateScheduledLte?: string;
8509
+ /**
8510
+ * Gets or sets the queryable if reminder id sent or no.
8511
+ */
8512
+ sent?: boolean;
8469
8513
  /**
8470
8514
  * Gets or sets the page number for paged queries.
8471
8515
  */
@@ -8512,11 +8556,15 @@ declare class EmailReminderSchedulesService {
8512
8556
  * @returns EmailReminderSchedule Success
8513
8557
  * @throws ApiError
8514
8558
  */
8515
- getListIdName({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8559
+ getListIdName({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8516
8560
  /**
8517
- * Gets or sets the queryable Order Id.
8561
+ * Gets or sets the queryable Course Session Id.
8518
8562
  */
8519
- orderId?: string;
8563
+ courseSessionId?: string;
8564
+ /**
8565
+ * Gets or sets the queryable Scheduled Session Id.
8566
+ */
8567
+ scheduledSessionId?: string;
8520
8568
  /**
8521
8569
  * Gets or sets the queryable date scheduled greater than.
8522
8570
  */
@@ -8525,6 +8573,10 @@ declare class EmailReminderSchedulesService {
8525
8573
  * Gets or sets the queryable date scheduled less than.
8526
8574
  */
8527
8575
  dateScheduledLte?: string;
8576
+ /**
8577
+ * Gets or sets the queryable if reminder id sent or no.
8578
+ */
8579
+ sent?: boolean;
8528
8580
  /**
8529
8581
  * Gets or sets the page number for paged queries.
8530
8582
  */
@@ -8679,6 +8731,10 @@ type EmailSetting = {
8679
8731
  * Gets or sets the order post completion text.
8680
8732
  */
8681
8733
  postCompletionText?: string | null;
8734
+ /**
8735
+ * Gets or sets the reminder email text.
8736
+ */
8737
+ reminderEmailText?: string | null;
8682
8738
  };
8683
8739
 
8684
8740
  type EmailSettingPage = {
@@ -10017,6 +10073,10 @@ type GenericActivity = {
10017
10073
  * Gets or sets the max age.
10018
10074
  */
10019
10075
  maxAge?: number | null;
10076
+ /**
10077
+ * Gets or sets a value indicating whether there is an age restriction.
10078
+ */
10079
+ noAgeRestriction?: boolean;
10020
10080
  /**
10021
10081
  * Gets or sets the start date.
10022
10082
  */
@@ -11173,6 +11233,10 @@ type ImageLibraryCategory = {
11173
11233
  */
11174
11234
  sortOrder?: number | null;
11175
11235
  activity?: Activity;
11236
+ /**
11237
+ * Gets or sets a value indicating whether the category is active or not.
11238
+ */
11239
+ active?: boolean;
11176
11240
  /**
11177
11241
  * Gets or sets the image library images.
11178
11242
  */
@@ -11891,7 +11955,15 @@ declare class ImageUploadHistoryService {
11891
11955
  * @returns boolean Success
11892
11956
  * @throws ApiError
11893
11957
  */
11894
- exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11958
+ exists({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11959
+ /**
11960
+ * Gets or sets the queryable user id.
11961
+ */
11962
+ userId?: string;
11963
+ /**
11964
+ * Gets or sets the queryable image url.
11965
+ */
11966
+ imageUrl?: string;
11895
11967
  /**
11896
11968
  * Gets or sets the page number for paged queries.
11897
11969
  */
@@ -11938,7 +12010,15 @@ declare class ImageUploadHistoryService {
11938
12010
  * @returns ImageUploadHistoryPage Success
11939
12011
  * @throws ApiError
11940
12012
  */
11941
- getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12013
+ getPage({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12014
+ /**
12015
+ * Gets or sets the queryable user id.
12016
+ */
12017
+ userId?: string;
12018
+ /**
12019
+ * Gets or sets the queryable image url.
12020
+ */
12021
+ imageUrl?: string;
11942
12022
  /**
11943
12023
  * Gets or sets the page number for paged queries.
11944
12024
  */
@@ -11996,7 +12076,15 @@ declare class ImageUploadHistoryService {
11996
12076
  * @returns ImageUploadHistory Success
11997
12077
  * @throws ApiError
11998
12078
  */
11999
- getListWithoutReferences({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12079
+ getListWithoutReferences({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12080
+ /**
12081
+ * Gets or sets the queryable user id.
12082
+ */
12083
+ userId?: string;
12084
+ /**
12085
+ * Gets or sets the queryable image url.
12086
+ */
12087
+ imageUrl?: string;
12000
12088
  /**
12001
12089
  * Gets or sets the page number for paged queries.
12002
12090
  */
@@ -12043,7 +12131,15 @@ declare class ImageUploadHistoryService {
12043
12131
  * @returns ImageUploadHistory Success
12044
12132
  * @throws ApiError
12045
12133
  */
12046
- getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12134
+ getListIdName({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12135
+ /**
12136
+ * Gets or sets the queryable user id.
12137
+ */
12138
+ userId?: string;
12139
+ /**
12140
+ * Gets or sets the queryable image url.
12141
+ */
12142
+ imageUrl?: string;
12047
12143
  /**
12048
12144
  * Gets or sets the page number for paged queries.
12049
12145
  */
@@ -19968,11 +20064,15 @@ declare class PublicFilestackWebhookService {
19968
20064
  * @returns any Success
19969
20065
  * @throws ApiError
19970
20066
  */
19971
- processWebhookEvent({ xFilestackSignature, }: {
20067
+ processWebhookEvent({ fsSignature, fsTimestamp, }: {
19972
20068
  /**
19973
20069
  * The filestack signature.
19974
20070
  */
19975
- xFilestackSignature?: string;
20071
+ fsSignature?: string;
20072
+ /**
20073
+ * The filestack signature.
20074
+ */
20075
+ fsTimestamp?: string;
19976
20076
  }): CancelablePromise<any>;
19977
20077
  }
19978
20078
 
@@ -19980,7 +20080,7 @@ declare class PublicGenericActivityService {
19980
20080
  readonly httpRequest: BaseHttpRequest;
19981
20081
  constructor(httpRequest: BaseHttpRequest);
19982
20082
  /**
19983
- * GetSessions.
20083
+ * Get activities for a network.
19984
20084
  * @returns GenericActivityPage Success
19985
20085
  * @throws ApiError
19986
20086
  */
@@ -22031,6 +22131,10 @@ type SessionPatch = {
22031
22131
  * Gets or sets a value indicating whether the Session can be used as a template.
22032
22132
  */
22033
22133
  allowTemplating?: boolean | null;
22134
+ /**
22135
+ * Gets or sets the Reminder Hours Before Start.
22136
+ */
22137
+ reminderHoursBeforeStart?: number | null;
22034
22138
  /**
22035
22139
  * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
22036
22140
  */
@@ -24883,7 +24987,7 @@ declare class PublicVenuesService {
24883
24987
  * @returns VenuePage Success
24884
24988
  * @throws ApiError
24885
24989
  */
24886
- getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24990
+ getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24887
24991
  xTenantSubdomain?: string;
24888
24992
  /**
24889
24993
  * Gets or sets the queryable user ids.
@@ -24929,6 +25033,10 @@ declare class PublicVenuesService {
24929
25033
  * Gets or sets a value indicating whether to show published venues.
24930
25034
  */
24931
25035
  publishedOnWeb?: boolean;
25036
+ /**
25037
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25038
+ */
25039
+ networkId?: string;
24932
25040
  /**
24933
25041
  * Gets or sets the queryable programme Id.
24934
25042
  */
@@ -24945,6 +25053,10 @@ declare class PublicVenuesService {
24945
25053
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
24946
25054
  */
24947
25055
  includeNextOpportunity?: boolean;
25056
+ /**
25057
+ * Gets or sets Distance.
25058
+ */
25059
+ distance?: number;
24948
25060
  /**
24949
25061
  * Gets or sets the page number for paged queries.
24950
25062
  */
@@ -25001,12 +25113,127 @@ declare class PublicVenuesService {
25001
25113
  */
25002
25114
  requestBody?: Venue;
25003
25115
  }): CancelablePromise<any>;
25116
+ /**
25117
+ * Get Venues for a network.
25118
+ * @returns VenuePage Success
25119
+ * @throws ApiError
25120
+ */
25121
+ getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25122
+ /**
25123
+ * Gets or sets the queryable user ids.
25124
+ */
25125
+ ids?: Array<string>;
25126
+ /**
25127
+ * Gets or sets the queryable venue name wildcard.
25128
+ */
25129
+ wildcard?: string;
25130
+ /**
25131
+ * Gets or sets the queryable venue name.
25132
+ */
25133
+ name?: string;
25134
+ /**
25135
+ * Gets or sets the queryable venue street address.
25136
+ */
25137
+ streetAddress?: string;
25138
+ /**
25139
+ * Gets or sets the queryable venue address postal code.
25140
+ */
25141
+ addressPostalcode?: string;
25142
+ /**
25143
+ * Gets or sets the queryable venue name wildcard.
25144
+ */
25145
+ nameLike?: string;
25146
+ /**
25147
+ * Gets or sets the queryable venue url slug.
25148
+ */
25149
+ slug?: string;
25150
+ /**
25151
+ * Gets or sets the queryable assign to Id.
25152
+ */
25153
+ assignedTo?: string;
25154
+ /**
25155
+ * Gets or sets the queryable stripe account Id.
25156
+ */
25157
+ stripeAccountId?: string;
25158
+ /**
25159
+ * Gets or sets the queryable search geo center.
25160
+ */
25161
+ searchGeoCenter?: string;
25162
+ /**
25163
+ * Gets or sets a value indicating whether to show published venues.
25164
+ */
25165
+ publishedOnWeb?: boolean;
25166
+ /**
25167
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25168
+ */
25169
+ networkId?: string;
25170
+ /**
25171
+ * Gets or sets the queryable programme Id.
25172
+ */
25173
+ programmeId?: string;
25174
+ /**
25175
+ * Gets or sets a value indicating whether to inlcude the venues opportunity images.
25176
+ */
25177
+ includeOpportunityImages?: boolean;
25178
+ /**
25179
+ * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
25180
+ */
25181
+ includeOpportunityOffers?: boolean;
25182
+ /**
25183
+ * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
25184
+ */
25185
+ includeNextOpportunity?: boolean;
25186
+ /**
25187
+ * Gets or sets Distance.
25188
+ */
25189
+ distance?: number;
25190
+ /**
25191
+ * Gets or sets the page number for paged queries.
25192
+ */
25193
+ pageNumber?: number;
25194
+ /**
25195
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
25196
+ */
25197
+ take?: number;
25198
+ /**
25199
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
25200
+ */
25201
+ limitListRequests?: boolean;
25202
+ /**
25203
+ * Gets or sets the Tenant Id.
25204
+ */
25205
+ tenantId?: string;
25206
+ /**
25207
+ * Gets or sets the Modifed By Id.
25208
+ */
25209
+ modifiedById?: string;
25210
+ /**
25211
+ * Gets or sets the Modifed By Ids.
25212
+ */
25213
+ modifiedByIds?: Array<string>;
25214
+ /**
25215
+ * Gets or sets the Date Created greater than equal to.
25216
+ */
25217
+ dateCreatedGte?: string;
25218
+ /**
25219
+ * Gets or sets the Date Created less than equal to.
25220
+ */
25221
+ dateCreatedLte?: string;
25222
+ /**
25223
+ * Gets or sets the queryable only is live status.
25224
+ */
25225
+ isLive?: boolean;
25226
+ /**
25227
+ * Gets or sets the sort order direction.
25228
+ */
25229
+ sortOrderDirection?: SearchSortOrderDirection;
25230
+ }): CancelablePromise<VenuePage>;
25004
25231
  /**
25005
25232
  * Returns a value indicating whether the resource exists in the database given the provided search params.
25006
25233
  * @returns boolean Success
25007
25234
  * @throws ApiError
25008
25235
  */
25009
- exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25236
+ exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25010
25237
  /**
25011
25238
  * The tenants subdomain.
25012
25239
  */
@@ -25055,6 +25282,10 @@ declare class PublicVenuesService {
25055
25282
  * Gets or sets a value indicating whether to show published venues.
25056
25283
  */
25057
25284
  publishedOnWeb?: boolean;
25285
+ /**
25286
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25287
+ */
25288
+ networkId?: string;
25058
25289
  /**
25059
25290
  * Gets or sets the queryable programme Id.
25060
25291
  */
@@ -25071,6 +25302,10 @@ declare class PublicVenuesService {
25071
25302
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
25072
25303
  */
25073
25304
  includeNextOpportunity?: boolean;
25305
+ /**
25306
+ * Gets or sets Distance.
25307
+ */
25308
+ distance?: number;
25074
25309
  /**
25075
25310
  * Gets or sets the page number for paged queries.
25076
25311
  */
@@ -33305,6 +33540,14 @@ type TemplateDetail = {
33305
33540
  * Gets or sets the order post completion text.
33306
33541
  */
33307
33542
  postCompletionText?: string | null;
33543
+ /**
33544
+ * Gets or sets the order post completion text.
33545
+ */
33546
+ reminderEmailText?: string | null;
33547
+ /**
33548
+ * Gets or sets the order post completion text.
33549
+ */
33550
+ reminderHoursBeforeStart?: number | null;
33308
33551
  /**
33309
33552
  * Gets or sets the templates referenced offers.
33310
33553
  */
@@ -33417,6 +33660,14 @@ type TemplateDetailPatch = {
33417
33660
  * Gets or sets the order post completion text.
33418
33661
  */
33419
33662
  postCompletionText?: string | null;
33663
+ /**
33664
+ * Gets or sets the order confirmation text.
33665
+ */
33666
+ reminderEmailText?: string | null;
33667
+ /**
33668
+ * Gets or sets the templates reminder hours before start.
33669
+ */
33670
+ reminderHoursBeforeStart?: number | null;
33420
33671
  /**
33421
33672
  * Gets or sets the templates referenced offers.
33422
33673
  */
@@ -34205,6 +34456,14 @@ type CreateTemplateDetail = {
34205
34456
  * Gets or sets the order post completion text.
34206
34457
  */
34207
34458
  postCompletionText?: string | null;
34459
+ /**
34460
+ * Gets or sets the order confirmation text.
34461
+ */
34462
+ reminderEmailText?: string | null;
34463
+ /**
34464
+ * Gets or sets the templates reminder hours before start.
34465
+ */
34466
+ reminderHoursBeforeStart?: number | null;
34208
34467
  /**
34209
34468
  * Gets or sets the templates referenced offers.
34210
34469
  */
@@ -37189,7 +37448,7 @@ declare class VenuesService {
37189
37448
  * @returns boolean Success
37190
37449
  * @throws ApiError
37191
37450
  */
37192
- exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37451
+ exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37193
37452
  /**
37194
37453
  * Gets or sets the queryable user ids.
37195
37454
  */
@@ -37234,6 +37493,10 @@ declare class VenuesService {
37234
37493
  * Gets or sets a value indicating whether to show published venues.
37235
37494
  */
37236
37495
  publishedOnWeb?: boolean;
37496
+ /**
37497
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37498
+ */
37499
+ networkId?: string;
37237
37500
  /**
37238
37501
  * Gets or sets the queryable programme Id.
37239
37502
  */
@@ -37250,6 +37513,10 @@ declare class VenuesService {
37250
37513
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
37251
37514
  */
37252
37515
  includeNextOpportunity?: boolean;
37516
+ /**
37517
+ * Gets or sets Distance.
37518
+ */
37519
+ distance?: number;
37253
37520
  /**
37254
37521
  * Gets or sets the page number for paged queries.
37255
37522
  */
@@ -37296,7 +37563,7 @@ declare class VenuesService {
37296
37563
  * @returns VenuePage Success
37297
37564
  * @throws ApiError
37298
37565
  */
37299
- getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37566
+ getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37300
37567
  /**
37301
37568
  * Gets or sets the queryable user ids.
37302
37569
  */
@@ -37341,6 +37608,10 @@ declare class VenuesService {
37341
37608
  * Gets or sets a value indicating whether to show published venues.
37342
37609
  */
37343
37610
  publishedOnWeb?: boolean;
37611
+ /**
37612
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37613
+ */
37614
+ networkId?: string;
37344
37615
  /**
37345
37616
  * Gets or sets the queryable programme Id.
37346
37617
  */
@@ -37357,6 +37628,10 @@ declare class VenuesService {
37357
37628
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
37358
37629
  */
37359
37630
  includeNextOpportunity?: boolean;
37631
+ /**
37632
+ * Gets or sets Distance.
37633
+ */
37634
+ distance?: number;
37360
37635
  /**
37361
37636
  * Gets or sets the page number for paged queries.
37362
37637
  */
@@ -37414,7 +37689,7 @@ declare class VenuesService {
37414
37689
  * @returns Venue Success
37415
37690
  * @throws ApiError
37416
37691
  */
37417
- getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37692
+ getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37418
37693
  /**
37419
37694
  * Gets or sets the queryable user ids.
37420
37695
  */
@@ -37459,6 +37734,10 @@ declare class VenuesService {
37459
37734
  * Gets or sets a value indicating whether to show published venues.
37460
37735
  */
37461
37736
  publishedOnWeb?: boolean;
37737
+ /**
37738
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37739
+ */
37740
+ networkId?: string;
37462
37741
  /**
37463
37742
  * Gets or sets the queryable programme Id.
37464
37743
  */
@@ -37475,6 +37754,10 @@ declare class VenuesService {
37475
37754
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
37476
37755
  */
37477
37756
  includeNextOpportunity?: boolean;
37757
+ /**
37758
+ * Gets or sets Distance.
37759
+ */
37760
+ distance?: number;
37478
37761
  /**
37479
37762
  * Gets or sets the page number for paged queries.
37480
37763
  */
@@ -37521,7 +37804,7 @@ declare class VenuesService {
37521
37804
  * @returns Venue Success
37522
37805
  * @throws ApiError
37523
37806
  */
37524
- getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37807
+ getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37525
37808
  /**
37526
37809
  * Gets or sets the queryable user ids.
37527
37810
  */
@@ -37566,6 +37849,10 @@ declare class VenuesService {
37566
37849
  * Gets or sets a value indicating whether to show published venues.
37567
37850
  */
37568
37851
  publishedOnWeb?: boolean;
37852
+ /**
37853
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37854
+ */
37855
+ networkId?: string;
37569
37856
  /**
37570
37857
  * Gets or sets the queryable programme Id.
37571
37858
  */
@@ -37582,6 +37869,10 @@ declare class VenuesService {
37582
37869
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
37583
37870
  */
37584
37871
  includeNextOpportunity?: boolean;
37872
+ /**
37873
+ * Gets or sets Distance.
37874
+ */
37875
+ distance?: number;
37585
37876
  /**
37586
37877
  * Gets or sets the page number for paged queries.
37587
37878
  */