reach-api-sdk 1.0.21 → 1.0.23

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.
@@ -773,11 +773,11 @@ type Country = {
773
773
  /**
774
774
  * Gets or sets the countries Name.
775
775
  */
776
- code?: string | null;
776
+ code: string;
777
777
  /**
778
778
  * Gets or sets the countries Code.
779
779
  */
780
- name?: string | null;
780
+ name: string;
781
781
  /**
782
782
  * Gets or sets the countries Code.
783
783
  */
@@ -797,7 +797,7 @@ type Country = {
797
797
  /**
798
798
  * Gets or sets a value indicating whether the country is active.
799
799
  */
800
- active?: boolean;
800
+ active: boolean;
801
801
  /**
802
802
  * Gets or sets the available taxes.
803
803
  */
@@ -1145,23 +1145,27 @@ type User = {
1145
1145
  * Gets or sets a value indicating whether the record is live and available for use within the application.
1146
1146
  */
1147
1147
  isLive: boolean;
1148
- tenant?: Tenant;
1148
+ tenant: Tenant;
1149
1149
  /**
1150
- * Gets or sets the users first name.
1150
+ * Gets or sets the users name.
1151
1151
  */
1152
- name?: string | null;
1152
+ name: string;
1153
+ /**
1154
+ * Gets the users abbreviated name.
1155
+ */
1156
+ readonly nameAbbreviation: string;
1153
1157
  /**
1154
1158
  * Gets or sets the users email.
1155
1159
  */
1156
- email?: string | null;
1160
+ email: string;
1157
1161
  /**
1158
1162
  * Gets the users name plus email.
1159
1163
  */
1160
- readonly nameEmail?: string | null;
1164
+ readonly nameEmail: string;
1161
1165
  /**
1162
1166
  * Gets or sets a value indicating whether the users email address has been confirmed.
1163
1167
  */
1164
- emailConfirmed?: boolean;
1168
+ emailConfirmed: boolean;
1165
1169
  applicationRole?: ApplicationRole;
1166
1170
  inviteStatus?: InviteStatus;
1167
1171
  /**
@@ -2882,12 +2886,12 @@ type Tenant = {
2882
2886
  */
2883
2887
  copyManagersOnConfirmation: boolean;
2884
2888
  contactOnConfirmation: ContactOnConfirmation;
2885
- websiteSetting?: TenantWebsiteSetting;
2889
+ websiteSetting: TenantWebsiteSetting;
2886
2890
  /**
2887
2891
  * Gets or sets the Tenant venues.
2888
2892
  */
2889
2893
  venues?: Array<Venue> | null;
2890
- country?: Country;
2894
+ country: Country;
2891
2895
  tax?: Tax;
2892
2896
  /**
2893
2897
  * Gets or sets the Tenant users.
@@ -4571,7 +4575,7 @@ declare class CoursesService {
4571
4575
  * @returns boolean Success
4572
4576
  * @throws ApiError
4573
4577
  */
4574
- exists({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4578
+ exists({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4575
4579
  /**
4576
4580
  * Gets or sets the queryable Course Id.
4577
4581
  */
@@ -4600,6 +4604,10 @@ declare class CoursesService {
4600
4604
  * Gets or sets a value indicating whether to include deleted courses.
4601
4605
  */
4602
4606
  deleted?: boolean;
4607
+ /**
4608
+ * Gets or sets a value indicating this an openactive reaquest.
4609
+ */
4610
+ openActiveUpdate?: boolean;
4603
4611
  /**
4604
4612
  * Gets or sets the queryable booking status.
4605
4613
  */
@@ -4702,7 +4710,7 @@ declare class CoursesService {
4702
4710
  * @returns CoursePage Success
4703
4711
  * @throws ApiError
4704
4712
  */
4705
- getPage({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4713
+ getPage({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4706
4714
  /**
4707
4715
  * Gets or sets the queryable Course Id.
4708
4716
  */
@@ -4731,6 +4739,10 @@ declare class CoursesService {
4731
4739
  * Gets or sets a value indicating whether to include deleted courses.
4732
4740
  */
4733
4741
  deleted?: boolean;
4742
+ /**
4743
+ * Gets or sets a value indicating this an openactive reaquest.
4744
+ */
4745
+ openActiveUpdate?: boolean;
4734
4746
  /**
4735
4747
  * Gets or sets the queryable booking status.
4736
4748
  */
@@ -4844,7 +4856,7 @@ declare class CoursesService {
4844
4856
  * @returns Course Success
4845
4857
  * @throws ApiError
4846
4858
  */
4847
- getListIdName({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4859
+ getListIdName({ id, ids, venueId, programmeId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
4848
4860
  /**
4849
4861
  * Gets or sets the queryable Course Id.
4850
4862
  */
@@ -4873,6 +4885,10 @@ declare class CoursesService {
4873
4885
  * Gets or sets a value indicating whether to include deleted courses.
4874
4886
  */
4875
4887
  deleted?: boolean;
4888
+ /**
4889
+ * Gets or sets a value indicating this an openactive reaquest.
4890
+ */
4891
+ openActiveUpdate?: boolean;
4876
4892
  /**
4877
4893
  * Gets or sets the queryable booking status.
4878
4894
  */
@@ -7139,7 +7155,7 @@ declare class FacilitiesService {
7139
7155
  * @returns boolean Success
7140
7156
  * @throws ApiError
7141
7157
  */
7142
- exists({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7158
+ exists({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7143
7159
  /**
7144
7160
  * Gets or sets the queryable facility ids.
7145
7161
  */
@@ -7168,6 +7184,10 @@ declare class FacilitiesService {
7168
7184
  * Gets or sets a value indicating whether to include deleted facilities.
7169
7185
  */
7170
7186
  deleted?: boolean;
7187
+ /**
7188
+ * Gets or sets a value indicating this an openactive reaquest.
7189
+ */
7190
+ openActiveUpdate?: boolean;
7171
7191
  /**
7172
7192
  * Gets or sets the page number for paged queries.
7173
7193
  */
@@ -7214,7 +7234,7 @@ declare class FacilitiesService {
7214
7234
  * @returns FacilityPage Success
7215
7235
  * @throws ApiError
7216
7236
  */
7217
- getPage({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7237
+ getPage({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7218
7238
  /**
7219
7239
  * Gets or sets the queryable facility ids.
7220
7240
  */
@@ -7243,6 +7263,10 @@ declare class FacilitiesService {
7243
7263
  * Gets or sets a value indicating whether to include deleted facilities.
7244
7264
  */
7245
7265
  deleted?: boolean;
7266
+ /**
7267
+ * Gets or sets a value indicating this an openactive reaquest.
7268
+ */
7269
+ openActiveUpdate?: boolean;
7246
7270
  /**
7247
7271
  * Gets or sets the page number for paged queries.
7248
7272
  */
@@ -7300,7 +7324,7 @@ declare class FacilitiesService {
7300
7324
  * @returns Facility Success
7301
7325
  * @throws ApiError
7302
7326
  */
7303
- getListIdName({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7327
+ getListIdName({ ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
7304
7328
  /**
7305
7329
  * Gets or sets the queryable facility ids.
7306
7330
  */
@@ -7329,6 +7353,10 @@ declare class FacilitiesService {
7329
7353
  * Gets or sets a value indicating whether to include deleted facilities.
7330
7354
  */
7331
7355
  deleted?: boolean;
7356
+ /**
7357
+ * Gets or sets a value indicating this an openactive reaquest.
7358
+ */
7359
+ openActiveUpdate?: boolean;
7332
7360
  /**
7333
7361
  * Gets or sets the page number for paged queries.
7334
7362
  */
@@ -14134,7 +14162,7 @@ declare class PublicCoursesService {
14134
14162
  * @returns CoursePage Success
14135
14163
  * @throws ApiError
14136
14164
  */
14137
- getPage({ xTenantSubdomain, id, ids, venueId, programmeId, allowTemplating, archived, deleted, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14165
+ getPage({ xTenantSubdomain, id, ids, venueId, programmeId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14138
14166
  xTenantSubdomain?: string;
14139
14167
  /**
14140
14168
  * Gets or sets the queryable Course Id.
@@ -14164,6 +14192,10 @@ declare class PublicCoursesService {
14164
14192
  * Gets or sets a value indicating whether to include deleted courses.
14165
14193
  */
14166
14194
  deleted?: boolean;
14195
+ /**
14196
+ * Gets or sets a value indicating this an openactive reaquest.
14197
+ */
14198
+ openActiveUpdate?: boolean;
14167
14199
  /**
14168
14200
  * Gets or sets the queryable booking status.
14169
14201
  */
@@ -14281,7 +14313,7 @@ declare class PublicCoursesService {
14281
14313
  * @returns boolean Success
14282
14314
  * @throws ApiError
14283
14315
  */
14284
- exists({ xTenantSubdomain, id, ids, venueId, programmeId, allowTemplating, archived, deleted, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14316
+ exists({ xTenantSubdomain, id, ids, venueId, programmeId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14285
14317
  /**
14286
14318
  * The tenants subdomain.
14287
14319
  */
@@ -14314,6 +14346,10 @@ declare class PublicCoursesService {
14314
14346
  * Gets or sets a value indicating whether to include deleted courses.
14315
14347
  */
14316
14348
  deleted?: boolean;
14349
+ /**
14350
+ * Gets or sets a value indicating this an openactive reaquest.
14351
+ */
14352
+ openActiveUpdate?: boolean;
14317
14353
  /**
14318
14354
  * Gets or sets the queryable booking status.
14319
14355
  */
@@ -14488,7 +14524,7 @@ declare class PublicFacilitiesService {
14488
14524
  * @returns FacilityPage Success
14489
14525
  * @throws ApiError
14490
14526
  */
14491
- getPage({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14527
+ getPage({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14492
14528
  xTenantSubdomain?: string;
14493
14529
  /**
14494
14530
  * Gets or sets the queryable facility ids.
@@ -14518,6 +14554,10 @@ declare class PublicFacilitiesService {
14518
14554
  * Gets or sets a value indicating whether to include deleted facilities.
14519
14555
  */
14520
14556
  deleted?: boolean;
14557
+ /**
14558
+ * Gets or sets a value indicating this an openactive reaquest.
14559
+ */
14560
+ openActiveUpdate?: boolean;
14521
14561
  /**
14522
14562
  * Gets or sets the page number for paged queries.
14523
14563
  */
@@ -14579,7 +14619,7 @@ declare class PublicFacilitiesService {
14579
14619
  * @returns boolean Success
14580
14620
  * @throws ApiError
14581
14621
  */
14582
- exists({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14622
+ exists({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14583
14623
  /**
14584
14624
  * The tenants subdomain.
14585
14625
  */
@@ -14612,6 +14652,10 @@ declare class PublicFacilitiesService {
14612
14652
  * Gets or sets a value indicating whether to include deleted facilities.
14613
14653
  */
14614
14654
  deleted?: boolean;
14655
+ /**
14656
+ * Gets or sets a value indicating this an openactive reaquest.
14657
+ */
14658
+ openActiveUpdate?: boolean;
14615
14659
  /**
14616
14660
  * Gets or sets the page number for paged queries.
14617
14661
  */
@@ -16409,7 +16453,7 @@ declare class PublicSessionsService {
16409
16453
  * @returns SessionPage Success
16410
16454
  * @throws ApiError
16411
16455
  */
16412
- getPage({ xTenantSubdomain, ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16456
+ getPage({ xTenantSubdomain, ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16413
16457
  xTenantSubdomain?: string;
16414
16458
  /**
16415
16459
  * Gets or sets the queryable session ids.
@@ -16447,6 +16491,10 @@ declare class PublicSessionsService {
16447
16491
  * Gets or sets a value indicating whether to include deleted sessions.
16448
16492
  */
16449
16493
  deleted?: boolean;
16494
+ /**
16495
+ * Gets or sets a value indicating this an openactive reaquest.
16496
+ */
16497
+ openActiveUpdate?: boolean;
16450
16498
  /**
16451
16499
  * Gets or sets the page number for paged queries.
16452
16500
  */
@@ -16643,7 +16691,7 @@ declare class PublicSessionsService {
16643
16691
  * @returns boolean Success
16644
16692
  * @throws ApiError
16645
16693
  */
16646
- exists({ xTenantSubdomain, ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16694
+ exists({ xTenantSubdomain, ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16647
16695
  /**
16648
16696
  * The tenants subdomain.
16649
16697
  */
@@ -16684,6 +16732,10 @@ declare class PublicSessionsService {
16684
16732
  * Gets or sets a value indicating whether to include deleted sessions.
16685
16733
  */
16686
16734
  deleted?: boolean;
16735
+ /**
16736
+ * Gets or sets a value indicating this an openactive reaquest.
16737
+ */
16738
+ openActiveUpdate?: boolean;
16687
16739
  /**
16688
16740
  * Gets or sets the page number for paged queries.
16689
16741
  */
@@ -20780,7 +20832,7 @@ declare class SessionsService {
20780
20832
  * @returns boolean Success
20781
20833
  * @throws ApiError
20782
20834
  */
20783
- exists({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20835
+ exists({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20784
20836
  /**
20785
20837
  * Gets or sets the queryable session ids.
20786
20838
  */
@@ -20817,6 +20869,10 @@ declare class SessionsService {
20817
20869
  * Gets or sets a value indicating whether to include deleted sessions.
20818
20870
  */
20819
20871
  deleted?: boolean;
20872
+ /**
20873
+ * Gets or sets a value indicating this an openactive reaquest.
20874
+ */
20875
+ openActiveUpdate?: boolean;
20820
20876
  /**
20821
20877
  * Gets or sets the page number for paged queries.
20822
20878
  */
@@ -20863,7 +20919,7 @@ declare class SessionsService {
20863
20919
  * @returns SessionPage Success
20864
20920
  * @throws ApiError
20865
20921
  */
20866
- getPage({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20922
+ getPage({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20867
20923
  /**
20868
20924
  * Gets or sets the queryable session ids.
20869
20925
  */
@@ -20900,6 +20956,10 @@ declare class SessionsService {
20900
20956
  * Gets or sets a value indicating whether to include deleted sessions.
20901
20957
  */
20902
20958
  deleted?: boolean;
20959
+ /**
20960
+ * Gets or sets a value indicating this an openactive reaquest.
20961
+ */
20962
+ openActiveUpdate?: boolean;
20903
20963
  /**
20904
20964
  * Gets or sets the page number for paged queries.
20905
20965
  */
@@ -20957,7 +21017,7 @@ declare class SessionsService {
20957
21017
  * @returns Session Success
20958
21018
  * @throws ApiError
20959
21019
  */
20960
- getListIdName({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
21020
+ getListIdName({ ids, venueId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20961
21021
  /**
20962
21022
  * Gets or sets the queryable session ids.
20963
21023
  */
@@ -20994,6 +21054,10 @@ declare class SessionsService {
20994
21054
  * Gets or sets a value indicating whether to include deleted sessions.
20995
21055
  */
20996
21056
  deleted?: boolean;
21057
+ /**
21058
+ * Gets or sets a value indicating this an openactive reaquest.
21059
+ */
21060
+ openActiveUpdate?: boolean;
20997
21061
  /**
20998
21062
  * Gets or sets the page number for paged queries.
20999
21063
  */
@@ -25575,6 +25639,14 @@ type UserPatch = {
25575
25639
  * Gets or sets the Id.
25576
25640
  */
25577
25641
  id: string;
25642
+ /**
25643
+ * Gets or sets the users first name.
25644
+ */
25645
+ name: string;
25646
+ /**
25647
+ * Gets or sets the users avatar url.
25648
+ */
25649
+ avatar?: string | null;
25578
25650
  };
25579
25651
 
25580
25652
  /**
package/dist/reach-sdk.js CHANGED
@@ -1594,6 +1594,7 @@ const request = (config, options, axiosClient = axios) => {
1594
1594
  allowTemplating,
1595
1595
  archived,
1596
1596
  deleted,
1597
+ openActiveUpdate,
1597
1598
  bookingStatus,
1598
1599
  startDateTimeLte,
1599
1600
  startDateTimeGte,
@@ -1630,6 +1631,7 @@ const request = (config, options, axiosClient = axios) => {
1630
1631
  AllowTemplating: allowTemplating,
1631
1632
  Archived: archived,
1632
1633
  Deleted: deleted,
1634
+ OpenActiveUpdate: openActiveUpdate,
1633
1635
  BookingStatus: bookingStatus,
1634
1636
  StartDateTimeLTE: startDateTimeLte,
1635
1637
  StartDateTimeGTE: startDateTimeGte,
@@ -1675,6 +1677,7 @@ const request = (config, options, axiosClient = axios) => {
1675
1677
  allowTemplating,
1676
1678
  archived,
1677
1679
  deleted,
1680
+ openActiveUpdate,
1678
1681
  bookingStatus,
1679
1682
  startDateTimeLte,
1680
1683
  startDateTimeGte,
@@ -1711,6 +1714,7 @@ const request = (config, options, axiosClient = axios) => {
1711
1714
  AllowTemplating: allowTemplating,
1712
1715
  Archived: archived,
1713
1716
  Deleted: deleted,
1717
+ OpenActiveUpdate: openActiveUpdate,
1714
1718
  BookingStatus: bookingStatus,
1715
1719
  StartDateTimeLTE: startDateTimeLte,
1716
1720
  StartDateTimeGTE: startDateTimeGte,
@@ -1776,6 +1780,7 @@ const request = (config, options, axiosClient = axios) => {
1776
1780
  allowTemplating,
1777
1781
  archived,
1778
1782
  deleted,
1783
+ openActiveUpdate,
1779
1784
  bookingStatus,
1780
1785
  startDateTimeLte,
1781
1786
  startDateTimeGte,
@@ -1812,6 +1817,7 @@ const request = (config, options, axiosClient = axios) => {
1812
1817
  AllowTemplating: allowTemplating,
1813
1818
  Archived: archived,
1814
1819
  Deleted: deleted,
1820
+ OpenActiveUpdate: openActiveUpdate,
1815
1821
  BookingStatus: bookingStatus,
1816
1822
  StartDateTimeLTE: startDateTimeLte,
1817
1823
  StartDateTimeGTE: startDateTimeGte,
@@ -3816,6 +3822,7 @@ const request = (config, options, axiosClient = axios) => {
3816
3822
  includeNextOpportunity,
3817
3823
  archived,
3818
3824
  deleted,
3825
+ openActiveUpdate,
3819
3826
  pageNumber,
3820
3827
  take,
3821
3828
  limitListRequests,
@@ -3838,6 +3845,7 @@ const request = (config, options, axiosClient = axios) => {
3838
3845
  IncludeNextOpportunity: includeNextOpportunity,
3839
3846
  Archived: archived,
3840
3847
  Deleted: deleted,
3848
+ OpenActiveUpdate: openActiveUpdate,
3841
3849
  PageNumber: pageNumber,
3842
3850
  Take: take,
3843
3851
  LimitListRequests: limitListRequests,
@@ -3869,6 +3877,7 @@ const request = (config, options, axiosClient = axios) => {
3869
3877
  includeNextOpportunity,
3870
3878
  archived,
3871
3879
  deleted,
3880
+ openActiveUpdate,
3872
3881
  pageNumber,
3873
3882
  take,
3874
3883
  limitListRequests,
@@ -3891,6 +3900,7 @@ const request = (config, options, axiosClient = axios) => {
3891
3900
  IncludeNextOpportunity: includeNextOpportunity,
3892
3901
  Archived: archived,
3893
3902
  Deleted: deleted,
3903
+ OpenActiveUpdate: openActiveUpdate,
3894
3904
  PageNumber: pageNumber,
3895
3905
  Take: take,
3896
3906
  LimitListRequests: limitListRequests,
@@ -3942,6 +3952,7 @@ const request = (config, options, axiosClient = axios) => {
3942
3952
  includeNextOpportunity,
3943
3953
  archived,
3944
3954
  deleted,
3955
+ openActiveUpdate,
3945
3956
  pageNumber,
3946
3957
  take,
3947
3958
  limitListRequests,
@@ -3964,6 +3975,7 @@ const request = (config, options, axiosClient = axios) => {
3964
3975
  IncludeNextOpportunity: includeNextOpportunity,
3965
3976
  Archived: archived,
3966
3977
  Deleted: deleted,
3978
+ OpenActiveUpdate: openActiveUpdate,
3967
3979
  PageNumber: pageNumber,
3968
3980
  Take: take,
3969
3981
  LimitListRequests: limitListRequests,
@@ -9791,6 +9803,7 @@ const request = (config, options, axiosClient = axios) => {
9791
9803
  allowTemplating,
9792
9804
  archived,
9793
9805
  deleted,
9806
+ openActiveUpdate,
9794
9807
  bookingStatus,
9795
9808
  startDateTimeLte,
9796
9809
  startDateTimeGte,
@@ -9830,6 +9843,7 @@ const request = (config, options, axiosClient = axios) => {
9830
9843
  AllowTemplating: allowTemplating,
9831
9844
  Archived: archived,
9832
9845
  Deleted: deleted,
9846
+ OpenActiveUpdate: openActiveUpdate,
9833
9847
  BookingStatus: bookingStatus,
9834
9848
  StartDateTimeLTE: startDateTimeLte,
9835
9849
  StartDateTimeGTE: startDateTimeGte,
@@ -9900,6 +9914,7 @@ const request = (config, options, axiosClient = axios) => {
9900
9914
  allowTemplating,
9901
9915
  archived,
9902
9916
  deleted,
9917
+ openActiveUpdate,
9903
9918
  bookingStatus,
9904
9919
  startDateTimeLte,
9905
9920
  startDateTimeGte,
@@ -9939,6 +9954,7 @@ const request = (config, options, axiosClient = axios) => {
9939
9954
  AllowTemplating: allowTemplating,
9940
9955
  Archived: archived,
9941
9956
  Deleted: deleted,
9957
+ OpenActiveUpdate: openActiveUpdate,
9942
9958
  BookingStatus: bookingStatus,
9943
9959
  StartDateTimeLTE: startDateTimeLte,
9944
9960
  StartDateTimeGTE: startDateTimeGte,
@@ -10109,6 +10125,7 @@ const request = (config, options, axiosClient = axios) => {
10109
10125
  includeNextOpportunity,
10110
10126
  archived,
10111
10127
  deleted,
10128
+ openActiveUpdate,
10112
10129
  pageNumber,
10113
10130
  take,
10114
10131
  limitListRequests,
@@ -10134,6 +10151,7 @@ const request = (config, options, axiosClient = axios) => {
10134
10151
  IncludeNextOpportunity: includeNextOpportunity,
10135
10152
  Archived: archived,
10136
10153
  Deleted: deleted,
10154
+ OpenActiveUpdate: openActiveUpdate,
10137
10155
  PageNumber: pageNumber,
10138
10156
  Take: take,
10139
10157
  LimitListRequests: limitListRequests,
@@ -10190,6 +10208,7 @@ const request = (config, options, axiosClient = axios) => {
10190
10208
  includeNextOpportunity,
10191
10209
  archived,
10192
10210
  deleted,
10211
+ openActiveUpdate,
10193
10212
  pageNumber,
10194
10213
  take,
10195
10214
  limitListRequests,
@@ -10215,6 +10234,7 @@ const request = (config, options, axiosClient = axios) => {
10215
10234
  IncludeNextOpportunity: includeNextOpportunity,
10216
10235
  Archived: archived,
10217
10236
  Deleted: deleted,
10237
+ OpenActiveUpdate: openActiveUpdate,
10218
10238
  PageNumber: pageNumber,
10219
10239
  Take: take,
10220
10240
  LimitListRequests: limitListRequests,
@@ -11876,6 +11896,7 @@ const request = (config, options, axiosClient = axios) => {
11876
11896
  allowTemplating,
11877
11897
  archived,
11878
11898
  deleted,
11899
+ openActiveUpdate,
11879
11900
  pageNumber,
11880
11901
  take,
11881
11902
  limitListRequests,
@@ -11903,6 +11924,7 @@ const request = (config, options, axiosClient = axios) => {
11903
11924
  AllowTemplating: allowTemplating,
11904
11925
  Archived: archived,
11905
11926
  Deleted: deleted,
11927
+ OpenActiveUpdate: openActiveUpdate,
11906
11928
  PageNumber: pageNumber,
11907
11929
  Take: take,
11908
11930
  LimitListRequests: limitListRequests,
@@ -12046,6 +12068,7 @@ const request = (config, options, axiosClient = axios) => {
12046
12068
  allowTemplating,
12047
12069
  archived,
12048
12070
  deleted,
12071
+ openActiveUpdate,
12049
12072
  pageNumber,
12050
12073
  take,
12051
12074
  limitListRequests,
@@ -12073,6 +12096,7 @@ const request = (config, options, axiosClient = axios) => {
12073
12096
  AllowTemplating: allowTemplating,
12074
12097
  Archived: archived,
12075
12098
  Deleted: deleted,
12099
+ OpenActiveUpdate: openActiveUpdate,
12076
12100
  PageNumber: pageNumber,
12077
12101
  Take: take,
12078
12102
  LimitListRequests: limitListRequests,
@@ -15457,6 +15481,7 @@ const request = (config, options, axiosClient = axios) => {
15457
15481
  allowTemplating,
15458
15482
  archived,
15459
15483
  deleted,
15484
+ openActiveUpdate,
15460
15485
  pageNumber,
15461
15486
  take,
15462
15487
  limitListRequests,
@@ -15481,6 +15506,7 @@ const request = (config, options, axiosClient = axios) => {
15481
15506
  AllowTemplating: allowTemplating,
15482
15507
  Archived: archived,
15483
15508
  Deleted: deleted,
15509
+ OpenActiveUpdate: openActiveUpdate,
15484
15510
  PageNumber: pageNumber,
15485
15511
  Take: take,
15486
15512
  LimitListRequests: limitListRequests,
@@ -15514,6 +15540,7 @@ const request = (config, options, axiosClient = axios) => {
15514
15540
  allowTemplating,
15515
15541
  archived,
15516
15542
  deleted,
15543
+ openActiveUpdate,
15517
15544
  pageNumber,
15518
15545
  take,
15519
15546
  limitListRequests,
@@ -15538,6 +15565,7 @@ const request = (config, options, axiosClient = axios) => {
15538
15565
  AllowTemplating: allowTemplating,
15539
15566
  Archived: archived,
15540
15567
  Deleted: deleted,
15568
+ OpenActiveUpdate: openActiveUpdate,
15541
15569
  PageNumber: pageNumber,
15542
15570
  Take: take,
15543
15571
  LimitListRequests: limitListRequests,
@@ -15591,6 +15619,7 @@ const request = (config, options, axiosClient = axios) => {
15591
15619
  allowTemplating,
15592
15620
  archived,
15593
15621
  deleted,
15622
+ openActiveUpdate,
15594
15623
  pageNumber,
15595
15624
  take,
15596
15625
  limitListRequests,
@@ -15615,6 +15644,7 @@ const request = (config, options, axiosClient = axios) => {
15615
15644
  AllowTemplating: allowTemplating,
15616
15645
  Archived: archived,
15617
15646
  Deleted: deleted,
15647
+ OpenActiveUpdate: openActiveUpdate,
15618
15648
  PageNumber: pageNumber,
15619
15649
  Take: take,
15620
15650
  LimitListRequests: limitListRequests,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",