reach-api-sdk 1.0.197 → 1.0.199
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.
- package/dist/reach-sdk.d.ts +67 -13
- package/dist/reach-sdk.js +26 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +70 -0
- package/src/models/Venue.ts +2 -0
- package/src/models/VenuePatch.ts +2 -0
- package/src/services/PublicWaitlistOpportunityService.ts +12 -0
- package/src/services/WaitlistOpportunityReportService.ts +36 -0
- package/src/services/WaitlistOpportunityService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -4652,6 +4652,7 @@ type Venue = {
|
|
|
4652
4652
|
* Gets or sets the contact website.
|
|
4653
4653
|
*/
|
|
4654
4654
|
contactWebsite?: string | null;
|
|
4655
|
+
upcomingLayout?: UpcomingLayout;
|
|
4655
4656
|
/**
|
|
4656
4657
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
4657
4658
|
*/
|
|
@@ -38885,6 +38886,7 @@ type VenuePatch = {
|
|
|
38885
38886
|
* Gets or sets the contact website.
|
|
38886
38887
|
*/
|
|
38887
38888
|
contactWebsite?: string | null;
|
|
38889
|
+
upcomingLayout: UpcomingLayout;
|
|
38888
38890
|
/**
|
|
38889
38891
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
38890
38892
|
*/
|
|
@@ -39850,7 +39852,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39850
39852
|
* @returns WaitlistOpportunityPage OK
|
|
39851
39853
|
* @throws ApiError
|
|
39852
39854
|
*/
|
|
39853
|
-
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39855
|
+
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39854
39856
|
/**
|
|
39855
39857
|
* The tenants subdomain.
|
|
39856
39858
|
*/
|
|
@@ -39879,6 +39881,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39879
39881
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39880
39882
|
*/
|
|
39881
39883
|
futureOnly?: boolean;
|
|
39884
|
+
/**
|
|
39885
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
39886
|
+
*/
|
|
39887
|
+
converted?: boolean;
|
|
39882
39888
|
/**
|
|
39883
39889
|
* Gets or sets the page number for paged queries.
|
|
39884
39890
|
*/
|
|
@@ -39959,7 +39965,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39959
39965
|
* @returns boolean OK
|
|
39960
39966
|
* @throws ApiError
|
|
39961
39967
|
*/
|
|
39962
|
-
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39968
|
+
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39963
39969
|
/**
|
|
39964
39970
|
* The tenants subdomain.
|
|
39965
39971
|
*/
|
|
@@ -39988,6 +39994,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39988
39994
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39989
39995
|
*/
|
|
39990
39996
|
futureOnly?: boolean;
|
|
39997
|
+
/**
|
|
39998
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
39999
|
+
*/
|
|
40000
|
+
converted?: boolean;
|
|
39991
40001
|
/**
|
|
39992
40002
|
* Gets or sets the page number for paged queries.
|
|
39993
40003
|
*/
|
|
@@ -60598,7 +60608,7 @@ declare class WaitlistOpportunityService {
|
|
|
60598
60608
|
* @returns WaitlistOpportunityPage OK
|
|
60599
60609
|
* @throws ApiError
|
|
60600
60610
|
*/
|
|
60601
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60611
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60602
60612
|
/**
|
|
60603
60613
|
* Gets or sets the queryable User Id.
|
|
60604
60614
|
*/
|
|
@@ -60623,6 +60633,10 @@ declare class WaitlistOpportunityService {
|
|
|
60623
60633
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60624
60634
|
*/
|
|
60625
60635
|
futureOnly?: boolean;
|
|
60636
|
+
/**
|
|
60637
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
60638
|
+
*/
|
|
60639
|
+
converted?: boolean;
|
|
60626
60640
|
/**
|
|
60627
60641
|
* Gets or sets the page number for paged queries.
|
|
60628
60642
|
*/
|
|
@@ -60706,7 +60720,7 @@ declare class WaitlistOpportunityService {
|
|
|
60706
60720
|
* @returns boolean OK
|
|
60707
60721
|
* @throws ApiError
|
|
60708
60722
|
*/
|
|
60709
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60723
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60710
60724
|
/**
|
|
60711
60725
|
* Gets or sets the queryable User Id.
|
|
60712
60726
|
*/
|
|
@@ -60731,6 +60745,10 @@ declare class WaitlistOpportunityService {
|
|
|
60731
60745
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60732
60746
|
*/
|
|
60733
60747
|
futureOnly?: boolean;
|
|
60748
|
+
/**
|
|
60749
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
60750
|
+
*/
|
|
60751
|
+
converted?: boolean;
|
|
60734
60752
|
/**
|
|
60735
60753
|
* Gets or sets the page number for paged queries.
|
|
60736
60754
|
*/
|
|
@@ -60781,7 +60799,7 @@ declare class WaitlistOpportunityService {
|
|
|
60781
60799
|
* @returns number OK
|
|
60782
60800
|
* @throws ApiError
|
|
60783
60801
|
*/
|
|
60784
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60802
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60785
60803
|
/**
|
|
60786
60804
|
* Gets or sets the queryable User Id.
|
|
60787
60805
|
*/
|
|
@@ -60806,6 +60824,10 @@ declare class WaitlistOpportunityService {
|
|
|
60806
60824
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60807
60825
|
*/
|
|
60808
60826
|
futureOnly?: boolean;
|
|
60827
|
+
/**
|
|
60828
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
60829
|
+
*/
|
|
60830
|
+
converted?: boolean;
|
|
60809
60831
|
/**
|
|
60810
60832
|
* Gets or sets the page number for paged queries.
|
|
60811
60833
|
*/
|
|
@@ -60856,7 +60878,7 @@ declare class WaitlistOpportunityService {
|
|
|
60856
60878
|
* @returns WaitlistOpportunity OK
|
|
60857
60879
|
* @throws ApiError
|
|
60858
60880
|
*/
|
|
60859
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60881
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60860
60882
|
/**
|
|
60861
60883
|
* Gets or sets the queryable User Id.
|
|
60862
60884
|
*/
|
|
@@ -60881,6 +60903,10 @@ declare class WaitlistOpportunityService {
|
|
|
60881
60903
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60882
60904
|
*/
|
|
60883
60905
|
futureOnly?: boolean;
|
|
60906
|
+
/**
|
|
60907
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
60908
|
+
*/
|
|
60909
|
+
converted?: boolean;
|
|
60884
60910
|
/**
|
|
60885
60911
|
* Gets or sets the page number for paged queries.
|
|
60886
60912
|
*/
|
|
@@ -60931,7 +60957,7 @@ declare class WaitlistOpportunityService {
|
|
|
60931
60957
|
* @returns WaitlistOpportunity OK
|
|
60932
60958
|
* @throws ApiError
|
|
60933
60959
|
*/
|
|
60934
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60960
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60935
60961
|
/**
|
|
60936
60962
|
* Gets or sets the queryable User Id.
|
|
60937
60963
|
*/
|
|
@@ -60956,6 +60982,10 @@ declare class WaitlistOpportunityService {
|
|
|
60956
60982
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60957
60983
|
*/
|
|
60958
60984
|
futureOnly?: boolean;
|
|
60985
|
+
/**
|
|
60986
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
60987
|
+
*/
|
|
60988
|
+
converted?: boolean;
|
|
60959
60989
|
/**
|
|
60960
60990
|
* Gets or sets the page number for paged queries.
|
|
60961
60991
|
*/
|
|
@@ -61077,7 +61107,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61077
61107
|
* @returns any OK
|
|
61078
61108
|
* @throws ApiError
|
|
61079
61109
|
*/
|
|
61080
|
-
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
61110
|
+
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
61081
61111
|
/**
|
|
61082
61112
|
* Gets or sets the queryable User Id.
|
|
61083
61113
|
*/
|
|
@@ -61102,6 +61132,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61102
61132
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61103
61133
|
*/
|
|
61104
61134
|
futureOnly?: boolean;
|
|
61135
|
+
/**
|
|
61136
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61137
|
+
*/
|
|
61138
|
+
converted?: boolean;
|
|
61105
61139
|
/**
|
|
61106
61140
|
* Gets or sets the page number for paged queries.
|
|
61107
61141
|
*/
|
|
@@ -61219,7 +61253,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61219
61253
|
* @returns WaitlistOpportunityReportPage OK
|
|
61220
61254
|
* @throws ApiError
|
|
61221
61255
|
*/
|
|
61222
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61256
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61223
61257
|
/**
|
|
61224
61258
|
* Gets or sets the queryable User Id.
|
|
61225
61259
|
*/
|
|
@@ -61244,6 +61278,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61244
61278
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61245
61279
|
*/
|
|
61246
61280
|
futureOnly?: boolean;
|
|
61281
|
+
/**
|
|
61282
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61283
|
+
*/
|
|
61284
|
+
converted?: boolean;
|
|
61247
61285
|
/**
|
|
61248
61286
|
* Gets or sets the page number for paged queries.
|
|
61249
61287
|
*/
|
|
@@ -61327,7 +61365,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61327
61365
|
* @returns boolean OK
|
|
61328
61366
|
* @throws ApiError
|
|
61329
61367
|
*/
|
|
61330
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61368
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61331
61369
|
/**
|
|
61332
61370
|
* Gets or sets the queryable User Id.
|
|
61333
61371
|
*/
|
|
@@ -61352,6 +61390,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61352
61390
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61353
61391
|
*/
|
|
61354
61392
|
futureOnly?: boolean;
|
|
61393
|
+
/**
|
|
61394
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61395
|
+
*/
|
|
61396
|
+
converted?: boolean;
|
|
61355
61397
|
/**
|
|
61356
61398
|
* Gets or sets the page number for paged queries.
|
|
61357
61399
|
*/
|
|
@@ -61402,7 +61444,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61402
61444
|
* @returns number OK
|
|
61403
61445
|
* @throws ApiError
|
|
61404
61446
|
*/
|
|
61405
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61447
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61406
61448
|
/**
|
|
61407
61449
|
* Gets or sets the queryable User Id.
|
|
61408
61450
|
*/
|
|
@@ -61427,6 +61469,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61427
61469
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61428
61470
|
*/
|
|
61429
61471
|
futureOnly?: boolean;
|
|
61472
|
+
/**
|
|
61473
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61474
|
+
*/
|
|
61475
|
+
converted?: boolean;
|
|
61430
61476
|
/**
|
|
61431
61477
|
* Gets or sets the page number for paged queries.
|
|
61432
61478
|
*/
|
|
@@ -61477,7 +61523,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61477
61523
|
* @returns WaitlistOpportunityReport OK
|
|
61478
61524
|
* @throws ApiError
|
|
61479
61525
|
*/
|
|
61480
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61526
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61481
61527
|
/**
|
|
61482
61528
|
* Gets or sets the queryable User Id.
|
|
61483
61529
|
*/
|
|
@@ -61502,6 +61548,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61502
61548
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61503
61549
|
*/
|
|
61504
61550
|
futureOnly?: boolean;
|
|
61551
|
+
/**
|
|
61552
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61553
|
+
*/
|
|
61554
|
+
converted?: boolean;
|
|
61505
61555
|
/**
|
|
61506
61556
|
* Gets or sets the page number for paged queries.
|
|
61507
61557
|
*/
|
|
@@ -61552,7 +61602,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61552
61602
|
* @returns WaitlistOpportunityReport OK
|
|
61553
61603
|
* @throws ApiError
|
|
61554
61604
|
*/
|
|
61555
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61605
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, converted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61556
61606
|
/**
|
|
61557
61607
|
* Gets or sets the queryable User Id.
|
|
61558
61608
|
*/
|
|
@@ -61577,6 +61627,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61577
61627
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61578
61628
|
*/
|
|
61579
61629
|
futureOnly?: boolean;
|
|
61630
|
+
/**
|
|
61631
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
61632
|
+
*/
|
|
61633
|
+
converted?: boolean;
|
|
61580
61634
|
/**
|
|
61581
61635
|
* Gets or sets the page number for paged queries.
|
|
61582
61636
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -27659,6 +27659,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27659
27659
|
courseId,
|
|
27660
27660
|
email,
|
|
27661
27661
|
futureOnly,
|
|
27662
|
+
converted,
|
|
27662
27663
|
pageNumber,
|
|
27663
27664
|
take,
|
|
27664
27665
|
skip,
|
|
@@ -27684,6 +27685,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27684
27685
|
CourseId: courseId,
|
|
27685
27686
|
Email: email,
|
|
27686
27687
|
FutureOnly: futureOnly,
|
|
27688
|
+
Converted: converted,
|
|
27687
27689
|
PageNumber: pageNumber,
|
|
27688
27690
|
Take: take,
|
|
27689
27691
|
Skip: skip,
|
|
@@ -27766,6 +27768,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27766
27768
|
courseId,
|
|
27767
27769
|
email,
|
|
27768
27770
|
futureOnly,
|
|
27771
|
+
converted,
|
|
27769
27772
|
pageNumber,
|
|
27770
27773
|
take,
|
|
27771
27774
|
skip,
|
|
@@ -27791,6 +27794,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27791
27794
|
CourseId: courseId,
|
|
27792
27795
|
Email: email,
|
|
27793
27796
|
FutureOnly: futureOnly,
|
|
27797
|
+
Converted: converted,
|
|
27794
27798
|
PageNumber: pageNumber,
|
|
27795
27799
|
Take: take,
|
|
27796
27800
|
Skip: skip,
|
|
@@ -44459,6 +44463,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44459
44463
|
courseId,
|
|
44460
44464
|
email,
|
|
44461
44465
|
futureOnly,
|
|
44466
|
+
converted,
|
|
44462
44467
|
pageNumber,
|
|
44463
44468
|
take,
|
|
44464
44469
|
skip,
|
|
@@ -44481,6 +44486,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44481
44486
|
CourseId: courseId,
|
|
44482
44487
|
Email: email,
|
|
44483
44488
|
FutureOnly: futureOnly,
|
|
44489
|
+
Converted: converted,
|
|
44484
44490
|
PageNumber: pageNumber,
|
|
44485
44491
|
Take: take,
|
|
44486
44492
|
Skip: skip,
|
|
@@ -44575,6 +44581,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44575
44581
|
courseId,
|
|
44576
44582
|
email,
|
|
44577
44583
|
futureOnly,
|
|
44584
|
+
converted,
|
|
44578
44585
|
pageNumber,
|
|
44579
44586
|
take,
|
|
44580
44587
|
skip,
|
|
@@ -44597,6 +44604,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44597
44604
|
CourseId: courseId,
|
|
44598
44605
|
Email: email,
|
|
44599
44606
|
FutureOnly: futureOnly,
|
|
44607
|
+
Converted: converted,
|
|
44600
44608
|
PageNumber: pageNumber,
|
|
44601
44609
|
Take: take,
|
|
44602
44610
|
Skip: skip,
|
|
@@ -44628,6 +44636,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44628
44636
|
courseId,
|
|
44629
44637
|
email,
|
|
44630
44638
|
futureOnly,
|
|
44639
|
+
converted,
|
|
44631
44640
|
pageNumber,
|
|
44632
44641
|
take,
|
|
44633
44642
|
skip,
|
|
@@ -44650,6 +44659,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44650
44659
|
CourseId: courseId,
|
|
44651
44660
|
Email: email,
|
|
44652
44661
|
FutureOnly: futureOnly,
|
|
44662
|
+
Converted: converted,
|
|
44653
44663
|
PageNumber: pageNumber,
|
|
44654
44664
|
Take: take,
|
|
44655
44665
|
Skip: skip,
|
|
@@ -44681,6 +44691,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44681
44691
|
courseId,
|
|
44682
44692
|
email,
|
|
44683
44693
|
futureOnly,
|
|
44694
|
+
converted,
|
|
44684
44695
|
pageNumber,
|
|
44685
44696
|
take,
|
|
44686
44697
|
skip,
|
|
@@ -44703,6 +44714,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44703
44714
|
CourseId: courseId,
|
|
44704
44715
|
Email: email,
|
|
44705
44716
|
FutureOnly: futureOnly,
|
|
44717
|
+
Converted: converted,
|
|
44706
44718
|
PageNumber: pageNumber,
|
|
44707
44719
|
Take: take,
|
|
44708
44720
|
Skip: skip,
|
|
@@ -44734,6 +44746,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44734
44746
|
courseId,
|
|
44735
44747
|
email,
|
|
44736
44748
|
futureOnly,
|
|
44749
|
+
converted,
|
|
44737
44750
|
pageNumber,
|
|
44738
44751
|
take,
|
|
44739
44752
|
skip,
|
|
@@ -44756,6 +44769,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44756
44769
|
CourseId: courseId,
|
|
44757
44770
|
Email: email,
|
|
44758
44771
|
FutureOnly: futureOnly,
|
|
44772
|
+
Converted: converted,
|
|
44759
44773
|
PageNumber: pageNumber,
|
|
44760
44774
|
Take: take,
|
|
44761
44775
|
Skip: skip,
|
|
@@ -44792,6 +44806,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44792
44806
|
courseId,
|
|
44793
44807
|
email,
|
|
44794
44808
|
futureOnly,
|
|
44809
|
+
converted,
|
|
44795
44810
|
pageNumber,
|
|
44796
44811
|
take,
|
|
44797
44812
|
skip,
|
|
@@ -44815,6 +44830,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44815
44830
|
CourseId: courseId,
|
|
44816
44831
|
Email: email,
|
|
44817
44832
|
FutureOnly: futureOnly,
|
|
44833
|
+
Converted: converted,
|
|
44818
44834
|
PageNumber: pageNumber,
|
|
44819
44835
|
Take: take,
|
|
44820
44836
|
Skip: skip,
|
|
@@ -44964,6 +44980,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44964
44980
|
courseId,
|
|
44965
44981
|
email,
|
|
44966
44982
|
futureOnly,
|
|
44983
|
+
converted,
|
|
44967
44984
|
pageNumber,
|
|
44968
44985
|
take,
|
|
44969
44986
|
skip,
|
|
@@ -44986,6 +45003,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44986
45003
|
CourseId: courseId,
|
|
44987
45004
|
Email: email,
|
|
44988
45005
|
FutureOnly: futureOnly,
|
|
45006
|
+
Converted: converted,
|
|
44989
45007
|
PageNumber: pageNumber,
|
|
44990
45008
|
Take: take,
|
|
44991
45009
|
Skip: skip,
|
|
@@ -45080,6 +45098,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45080
45098
|
courseId,
|
|
45081
45099
|
email,
|
|
45082
45100
|
futureOnly,
|
|
45101
|
+
converted,
|
|
45083
45102
|
pageNumber,
|
|
45084
45103
|
take,
|
|
45085
45104
|
skip,
|
|
@@ -45102,6 +45121,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45102
45121
|
CourseId: courseId,
|
|
45103
45122
|
Email: email,
|
|
45104
45123
|
FutureOnly: futureOnly,
|
|
45124
|
+
Converted: converted,
|
|
45105
45125
|
PageNumber: pageNumber,
|
|
45106
45126
|
Take: take,
|
|
45107
45127
|
Skip: skip,
|
|
@@ -45133,6 +45153,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45133
45153
|
courseId,
|
|
45134
45154
|
email,
|
|
45135
45155
|
futureOnly,
|
|
45156
|
+
converted,
|
|
45136
45157
|
pageNumber,
|
|
45137
45158
|
take,
|
|
45138
45159
|
skip,
|
|
@@ -45155,6 +45176,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45155
45176
|
CourseId: courseId,
|
|
45156
45177
|
Email: email,
|
|
45157
45178
|
FutureOnly: futureOnly,
|
|
45179
|
+
Converted: converted,
|
|
45158
45180
|
PageNumber: pageNumber,
|
|
45159
45181
|
Take: take,
|
|
45160
45182
|
Skip: skip,
|
|
@@ -45186,6 +45208,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45186
45208
|
courseId,
|
|
45187
45209
|
email,
|
|
45188
45210
|
futureOnly,
|
|
45211
|
+
converted,
|
|
45189
45212
|
pageNumber,
|
|
45190
45213
|
take,
|
|
45191
45214
|
skip,
|
|
@@ -45208,6 +45231,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45208
45231
|
CourseId: courseId,
|
|
45209
45232
|
Email: email,
|
|
45210
45233
|
FutureOnly: futureOnly,
|
|
45234
|
+
Converted: converted,
|
|
45211
45235
|
PageNumber: pageNumber,
|
|
45212
45236
|
Take: take,
|
|
45213
45237
|
Skip: skip,
|
|
@@ -45239,6 +45263,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45239
45263
|
courseId,
|
|
45240
45264
|
email,
|
|
45241
45265
|
futureOnly,
|
|
45266
|
+
converted,
|
|
45242
45267
|
pageNumber,
|
|
45243
45268
|
take,
|
|
45244
45269
|
skip,
|
|
@@ -45261,6 +45286,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45261
45286
|
CourseId: courseId,
|
|
45262
45287
|
Email: email,
|
|
45263
45288
|
FutureOnly: futureOnly,
|
|
45289
|
+
Converted: converted,
|
|
45264
45290
|
PageNumber: pageNumber,
|
|
45265
45291
|
Take: take,
|
|
45266
45292
|
Skip: skip,
|
package/package.json
CHANGED
|
@@ -80470,6 +80470,11 @@ paths:
|
|
|
80470
80470
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
80471
80471
|
schema:
|
|
80472
80472
|
type: boolean
|
|
80473
|
+
- name: Converted
|
|
80474
|
+
in: query
|
|
80475
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
80476
|
+
schema:
|
|
80477
|
+
type: boolean
|
|
80473
80478
|
- name: PageNumber
|
|
80474
80479
|
in: query
|
|
80475
80480
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80754,6 +80759,11 @@ paths:
|
|
|
80754
80759
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
80755
80760
|
schema:
|
|
80756
80761
|
type: boolean
|
|
80762
|
+
- name: Converted
|
|
80763
|
+
in: query
|
|
80764
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
80765
|
+
schema:
|
|
80766
|
+
type: boolean
|
|
80757
80767
|
- name: PageNumber
|
|
80758
80768
|
in: query
|
|
80759
80769
|
description: Gets or sets the page number for paged queries.
|
|
@@ -131378,6 +131388,11 @@ paths:
|
|
|
131378
131388
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
131379
131389
|
schema:
|
|
131380
131390
|
type: boolean
|
|
131391
|
+
- name: Converted
|
|
131392
|
+
in: query
|
|
131393
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
131394
|
+
schema:
|
|
131395
|
+
type: boolean
|
|
131381
131396
|
- name: PageNumber
|
|
131382
131397
|
in: query
|
|
131383
131398
|
description: Gets or sets the page number for paged queries.
|
|
@@ -131711,6 +131726,11 @@ paths:
|
|
|
131711
131726
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
131712
131727
|
schema:
|
|
131713
131728
|
type: boolean
|
|
131729
|
+
- name: Converted
|
|
131730
|
+
in: query
|
|
131731
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
131732
|
+
schema:
|
|
131733
|
+
type: boolean
|
|
131714
131734
|
- name: PageNumber
|
|
131715
131735
|
in: query
|
|
131716
131736
|
description: Gets or sets the page number for paged queries.
|
|
@@ -131866,6 +131886,11 @@ paths:
|
|
|
131866
131886
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
131867
131887
|
schema:
|
|
131868
131888
|
type: boolean
|
|
131889
|
+
- name: Converted
|
|
131890
|
+
in: query
|
|
131891
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
131892
|
+
schema:
|
|
131893
|
+
type: boolean
|
|
131869
131894
|
- name: PageNumber
|
|
131870
131895
|
in: query
|
|
131871
131896
|
description: Gets or sets the page number for paged queries.
|
|
@@ -132024,6 +132049,11 @@ paths:
|
|
|
132024
132049
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
132025
132050
|
schema:
|
|
132026
132051
|
type: boolean
|
|
132052
|
+
- name: Converted
|
|
132053
|
+
in: query
|
|
132054
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
132055
|
+
schema:
|
|
132056
|
+
type: boolean
|
|
132027
132057
|
- name: PageNumber
|
|
132028
132058
|
in: query
|
|
132029
132059
|
description: Gets or sets the page number for paged queries.
|
|
@@ -132185,6 +132215,11 @@ paths:
|
|
|
132185
132215
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
132186
132216
|
schema:
|
|
132187
132217
|
type: boolean
|
|
132218
|
+
- name: Converted
|
|
132219
|
+
in: query
|
|
132220
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
132221
|
+
schema:
|
|
132222
|
+
type: boolean
|
|
132188
132223
|
- name: PageNumber
|
|
132189
132224
|
in: query
|
|
132190
132225
|
description: Gets or sets the page number for paged queries.
|
|
@@ -132347,6 +132382,11 @@ paths:
|
|
|
132347
132382
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
132348
132383
|
schema:
|
|
132349
132384
|
type: boolean
|
|
132385
|
+
- name: Converted
|
|
132386
|
+
in: query
|
|
132387
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
132388
|
+
schema:
|
|
132389
|
+
type: boolean
|
|
132350
132390
|
- name: PageNumber
|
|
132351
132391
|
in: query
|
|
132352
132392
|
description: Gets or sets the page number for paged queries.
|
|
@@ -132894,6 +132934,11 @@ paths:
|
|
|
132894
132934
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
132895
132935
|
schema:
|
|
132896
132936
|
type: boolean
|
|
132937
|
+
- name: Converted
|
|
132938
|
+
in: query
|
|
132939
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
132940
|
+
schema:
|
|
132941
|
+
type: boolean
|
|
132897
132942
|
- name: PageNumber
|
|
132898
132943
|
in: query
|
|
132899
132944
|
description: Gets or sets the page number for paged queries.
|
|
@@ -133227,6 +133272,11 @@ paths:
|
|
|
133227
133272
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
133228
133273
|
schema:
|
|
133229
133274
|
type: boolean
|
|
133275
|
+
- name: Converted
|
|
133276
|
+
in: query
|
|
133277
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
133278
|
+
schema:
|
|
133279
|
+
type: boolean
|
|
133230
133280
|
- name: PageNumber
|
|
133231
133281
|
in: query
|
|
133232
133282
|
description: Gets or sets the page number for paged queries.
|
|
@@ -133382,6 +133432,11 @@ paths:
|
|
|
133382
133432
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
133383
133433
|
schema:
|
|
133384
133434
|
type: boolean
|
|
133435
|
+
- name: Converted
|
|
133436
|
+
in: query
|
|
133437
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
133438
|
+
schema:
|
|
133439
|
+
type: boolean
|
|
133385
133440
|
- name: PageNumber
|
|
133386
133441
|
in: query
|
|
133387
133442
|
description: Gets or sets the page number for paged queries.
|
|
@@ -133540,6 +133595,11 @@ paths:
|
|
|
133540
133595
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
133541
133596
|
schema:
|
|
133542
133597
|
type: boolean
|
|
133598
|
+
- name: Converted
|
|
133599
|
+
in: query
|
|
133600
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
133601
|
+
schema:
|
|
133602
|
+
type: boolean
|
|
133543
133603
|
- name: PageNumber
|
|
133544
133604
|
in: query
|
|
133545
133605
|
description: Gets or sets the page number for paged queries.
|
|
@@ -133701,6 +133761,11 @@ paths:
|
|
|
133701
133761
|
description: Gets or sets a value indicating whether to filter for future opportunities only.
|
|
133702
133762
|
schema:
|
|
133703
133763
|
type: boolean
|
|
133764
|
+
- name: Converted
|
|
133765
|
+
in: query
|
|
133766
|
+
description: Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
133767
|
+
schema:
|
|
133768
|
+
type: boolean
|
|
133704
133769
|
- name: PageNumber
|
|
133705
133770
|
in: query
|
|
133706
133771
|
description: Gets or sets the page number for paged queries.
|
|
@@ -148536,6 +148601,8 @@ components:
|
|
|
148536
148601
|
type: string
|
|
148537
148602
|
description: Gets or sets the contact website.
|
|
148538
148603
|
nullable: true
|
|
148604
|
+
upcomingLayout:
|
|
148605
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
148539
148606
|
online:
|
|
148540
148607
|
type: boolean
|
|
148541
148608
|
description: Gets or sets a value indicating whether the venue can take bookings.
|
|
@@ -149010,6 +149077,7 @@ components:
|
|
|
149010
149077
|
required:
|
|
149011
149078
|
- id
|
|
149012
149079
|
- tenantId
|
|
149080
|
+
- upcomingLayout
|
|
149013
149081
|
type: object
|
|
149014
149082
|
properties:
|
|
149015
149083
|
tenantId:
|
|
@@ -149084,6 +149152,8 @@ components:
|
|
|
149084
149152
|
type: string
|
|
149085
149153
|
description: Gets or sets the contact website.
|
|
149086
149154
|
nullable: true
|
|
149155
|
+
upcomingLayout:
|
|
149156
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
149087
149157
|
online:
|
|
149088
149158
|
type: boolean
|
|
149089
149159
|
description: Gets or sets a value indicating whether the venue can take bookings.
|
package/src/models/Venue.ts
CHANGED
|
@@ -12,6 +12,7 @@ import type { Image } from './Image';
|
|
|
12
12
|
import type { Session } from './Session';
|
|
13
13
|
import type { StripeAccount } from './StripeAccount';
|
|
14
14
|
import type { Tenant } from './Tenant';
|
|
15
|
+
import type { UpcomingLayout } from './UpcomingLayout';
|
|
15
16
|
import type { User } from './User';
|
|
16
17
|
import type { VenueOpeningHours } from './VenueOpeningHours';
|
|
17
18
|
|
|
@@ -163,6 +164,7 @@ export type Venue = {
|
|
|
163
164
|
* Gets or sets the contact website.
|
|
164
165
|
*/
|
|
165
166
|
contactWebsite?: string | null;
|
|
167
|
+
upcomingLayout?: UpcomingLayout;
|
|
166
168
|
/**
|
|
167
169
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
168
170
|
*/
|
package/src/models/VenuePatch.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { UpcomingLayout } from './UpcomingLayout';
|
|
6
7
|
import type { UpdateEmailSettings } from './UpdateEmailSettings';
|
|
7
8
|
import type { VenueOpeningHourUpdate } from './VenueOpeningHourUpdate';
|
|
8
9
|
|
|
@@ -78,6 +79,7 @@ export type VenuePatch = {
|
|
|
78
79
|
* Gets or sets the contact website.
|
|
79
80
|
*/
|
|
80
81
|
contactWebsite?: string | null;
|
|
82
|
+
upcomingLayout: UpcomingLayout;
|
|
81
83
|
/**
|
|
82
84
|
* Gets or sets a value indicating whether the venue can take bookings.
|
|
83
85
|
*/
|
|
@@ -163,6 +163,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
163
163
|
courseId,
|
|
164
164
|
email,
|
|
165
165
|
futureOnly,
|
|
166
|
+
converted,
|
|
166
167
|
pageNumber,
|
|
167
168
|
take,
|
|
168
169
|
skip,
|
|
@@ -203,6 +204,10 @@ export class PublicWaitlistOpportunityService {
|
|
|
203
204
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
204
205
|
*/
|
|
205
206
|
futureOnly?: boolean;
|
|
207
|
+
/**
|
|
208
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
209
|
+
*/
|
|
210
|
+
converted?: boolean;
|
|
206
211
|
/**
|
|
207
212
|
* Gets or sets the page number for paged queries.
|
|
208
213
|
*/
|
|
@@ -261,6 +266,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
261
266
|
CourseId: courseId,
|
|
262
267
|
Email: email,
|
|
263
268
|
FutureOnly: futureOnly,
|
|
269
|
+
Converted: converted,
|
|
264
270
|
PageNumber: pageNumber,
|
|
265
271
|
Take: take,
|
|
266
272
|
Skip: skip,
|
|
@@ -364,6 +370,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
364
370
|
courseId,
|
|
365
371
|
email,
|
|
366
372
|
futureOnly,
|
|
373
|
+
converted,
|
|
367
374
|
pageNumber,
|
|
368
375
|
take,
|
|
369
376
|
skip,
|
|
@@ -404,6 +411,10 @@ export class PublicWaitlistOpportunityService {
|
|
|
404
411
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
405
412
|
*/
|
|
406
413
|
futureOnly?: boolean;
|
|
414
|
+
/**
|
|
415
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
416
|
+
*/
|
|
417
|
+
converted?: boolean;
|
|
407
418
|
/**
|
|
408
419
|
* Gets or sets the page number for paged queries.
|
|
409
420
|
*/
|
|
@@ -462,6 +473,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
462
473
|
CourseId: courseId,
|
|
463
474
|
Email: email,
|
|
464
475
|
FutureOnly: futureOnly,
|
|
476
|
+
Converted: converted,
|
|
465
477
|
PageNumber: pageNumber,
|
|
466
478
|
Take: take,
|
|
467
479
|
Skip: skip,
|
|
@@ -28,6 +28,7 @@ export class WaitlistOpportunityReportService {
|
|
|
28
28
|
courseId,
|
|
29
29
|
email,
|
|
30
30
|
futureOnly,
|
|
31
|
+
converted,
|
|
31
32
|
pageNumber,
|
|
32
33
|
take,
|
|
33
34
|
skip,
|
|
@@ -65,6 +66,10 @@ export class WaitlistOpportunityReportService {
|
|
|
65
66
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
66
67
|
*/
|
|
67
68
|
futureOnly?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
71
|
+
*/
|
|
72
|
+
converted?: boolean;
|
|
68
73
|
/**
|
|
69
74
|
* Gets or sets the page number for paged queries.
|
|
70
75
|
*/
|
|
@@ -126,6 +131,7 @@ export class WaitlistOpportunityReportService {
|
|
|
126
131
|
CourseId: courseId,
|
|
127
132
|
Email: email,
|
|
128
133
|
FutureOnly: futureOnly,
|
|
134
|
+
Converted: converted,
|
|
129
135
|
PageNumber: pageNumber,
|
|
130
136
|
Take: take,
|
|
131
137
|
Skip: skip,
|
|
@@ -307,6 +313,7 @@ export class WaitlistOpportunityReportService {
|
|
|
307
313
|
courseId,
|
|
308
314
|
email,
|
|
309
315
|
futureOnly,
|
|
316
|
+
converted,
|
|
310
317
|
pageNumber,
|
|
311
318
|
take,
|
|
312
319
|
skip,
|
|
@@ -343,6 +350,10 @@ export class WaitlistOpportunityReportService {
|
|
|
343
350
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
344
351
|
*/
|
|
345
352
|
futureOnly?: boolean;
|
|
353
|
+
/**
|
|
354
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
355
|
+
*/
|
|
356
|
+
converted?: boolean;
|
|
346
357
|
/**
|
|
347
358
|
* Gets or sets the page number for paged queries.
|
|
348
359
|
*/
|
|
@@ -398,6 +409,7 @@ export class WaitlistOpportunityReportService {
|
|
|
398
409
|
CourseId: courseId,
|
|
399
410
|
Email: email,
|
|
400
411
|
FutureOnly: futureOnly,
|
|
412
|
+
Converted: converted,
|
|
401
413
|
PageNumber: pageNumber,
|
|
402
414
|
Take: take,
|
|
403
415
|
Skip: skip,
|
|
@@ -511,6 +523,7 @@ export class WaitlistOpportunityReportService {
|
|
|
511
523
|
courseId,
|
|
512
524
|
email,
|
|
513
525
|
futureOnly,
|
|
526
|
+
converted,
|
|
514
527
|
pageNumber,
|
|
515
528
|
take,
|
|
516
529
|
skip,
|
|
@@ -547,6 +560,10 @@ export class WaitlistOpportunityReportService {
|
|
|
547
560
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
548
561
|
*/
|
|
549
562
|
futureOnly?: boolean;
|
|
563
|
+
/**
|
|
564
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
565
|
+
*/
|
|
566
|
+
converted?: boolean;
|
|
550
567
|
/**
|
|
551
568
|
* Gets or sets the page number for paged queries.
|
|
552
569
|
*/
|
|
@@ -602,6 +619,7 @@ export class WaitlistOpportunityReportService {
|
|
|
602
619
|
CourseId: courseId,
|
|
603
620
|
Email: email,
|
|
604
621
|
FutureOnly: futureOnly,
|
|
622
|
+
Converted: converted,
|
|
605
623
|
PageNumber: pageNumber,
|
|
606
624
|
Take: take,
|
|
607
625
|
Skip: skip,
|
|
@@ -634,6 +652,7 @@ export class WaitlistOpportunityReportService {
|
|
|
634
652
|
courseId,
|
|
635
653
|
email,
|
|
636
654
|
futureOnly,
|
|
655
|
+
converted,
|
|
637
656
|
pageNumber,
|
|
638
657
|
take,
|
|
639
658
|
skip,
|
|
@@ -670,6 +689,10 @@ export class WaitlistOpportunityReportService {
|
|
|
670
689
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
671
690
|
*/
|
|
672
691
|
futureOnly?: boolean;
|
|
692
|
+
/**
|
|
693
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
694
|
+
*/
|
|
695
|
+
converted?: boolean;
|
|
673
696
|
/**
|
|
674
697
|
* Gets or sets the page number for paged queries.
|
|
675
698
|
*/
|
|
@@ -725,6 +748,7 @@ export class WaitlistOpportunityReportService {
|
|
|
725
748
|
CourseId: courseId,
|
|
726
749
|
Email: email,
|
|
727
750
|
FutureOnly: futureOnly,
|
|
751
|
+
Converted: converted,
|
|
728
752
|
PageNumber: pageNumber,
|
|
729
753
|
Take: take,
|
|
730
754
|
Skip: skip,
|
|
@@ -757,6 +781,7 @@ export class WaitlistOpportunityReportService {
|
|
|
757
781
|
courseId,
|
|
758
782
|
email,
|
|
759
783
|
futureOnly,
|
|
784
|
+
converted,
|
|
760
785
|
pageNumber,
|
|
761
786
|
take,
|
|
762
787
|
skip,
|
|
@@ -793,6 +818,10 @@ export class WaitlistOpportunityReportService {
|
|
|
793
818
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
794
819
|
*/
|
|
795
820
|
futureOnly?: boolean;
|
|
821
|
+
/**
|
|
822
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
823
|
+
*/
|
|
824
|
+
converted?: boolean;
|
|
796
825
|
/**
|
|
797
826
|
* Gets or sets the page number for paged queries.
|
|
798
827
|
*/
|
|
@@ -848,6 +877,7 @@ export class WaitlistOpportunityReportService {
|
|
|
848
877
|
CourseId: courseId,
|
|
849
878
|
Email: email,
|
|
850
879
|
FutureOnly: futureOnly,
|
|
880
|
+
Converted: converted,
|
|
851
881
|
PageNumber: pageNumber,
|
|
852
882
|
Take: take,
|
|
853
883
|
Skip: skip,
|
|
@@ -880,6 +910,7 @@ export class WaitlistOpportunityReportService {
|
|
|
880
910
|
courseId,
|
|
881
911
|
email,
|
|
882
912
|
futureOnly,
|
|
913
|
+
converted,
|
|
883
914
|
pageNumber,
|
|
884
915
|
take,
|
|
885
916
|
skip,
|
|
@@ -916,6 +947,10 @@ export class WaitlistOpportunityReportService {
|
|
|
916
947
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
917
948
|
*/
|
|
918
949
|
futureOnly?: boolean;
|
|
950
|
+
/**
|
|
951
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
952
|
+
*/
|
|
953
|
+
converted?: boolean;
|
|
919
954
|
/**
|
|
920
955
|
* Gets or sets the page number for paged queries.
|
|
921
956
|
*/
|
|
@@ -971,6 +1006,7 @@ export class WaitlistOpportunityReportService {
|
|
|
971
1006
|
CourseId: courseId,
|
|
972
1007
|
Email: email,
|
|
973
1008
|
FutureOnly: futureOnly,
|
|
1009
|
+
Converted: converted,
|
|
974
1010
|
PageNumber: pageNumber,
|
|
975
1011
|
Take: take,
|
|
976
1012
|
Skip: skip,
|
|
@@ -156,6 +156,7 @@ export class WaitlistOpportunityService {
|
|
|
156
156
|
courseId,
|
|
157
157
|
email,
|
|
158
158
|
futureOnly,
|
|
159
|
+
converted,
|
|
159
160
|
pageNumber,
|
|
160
161
|
take,
|
|
161
162
|
skip,
|
|
@@ -192,6 +193,10 @@ export class WaitlistOpportunityService {
|
|
|
192
193
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
193
194
|
*/
|
|
194
195
|
futureOnly?: boolean;
|
|
196
|
+
/**
|
|
197
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
198
|
+
*/
|
|
199
|
+
converted?: boolean;
|
|
195
200
|
/**
|
|
196
201
|
* Gets or sets the page number for paged queries.
|
|
197
202
|
*/
|
|
@@ -247,6 +252,7 @@ export class WaitlistOpportunityService {
|
|
|
247
252
|
CourseId: courseId,
|
|
248
253
|
Email: email,
|
|
249
254
|
FutureOnly: futureOnly,
|
|
255
|
+
Converted: converted,
|
|
250
256
|
PageNumber: pageNumber,
|
|
251
257
|
Take: take,
|
|
252
258
|
Skip: skip,
|
|
@@ -360,6 +366,7 @@ export class WaitlistOpportunityService {
|
|
|
360
366
|
courseId,
|
|
361
367
|
email,
|
|
362
368
|
futureOnly,
|
|
369
|
+
converted,
|
|
363
370
|
pageNumber,
|
|
364
371
|
take,
|
|
365
372
|
skip,
|
|
@@ -396,6 +403,10 @@ export class WaitlistOpportunityService {
|
|
|
396
403
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
397
404
|
*/
|
|
398
405
|
futureOnly?: boolean;
|
|
406
|
+
/**
|
|
407
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
408
|
+
*/
|
|
409
|
+
converted?: boolean;
|
|
399
410
|
/**
|
|
400
411
|
* Gets or sets the page number for paged queries.
|
|
401
412
|
*/
|
|
@@ -451,6 +462,7 @@ export class WaitlistOpportunityService {
|
|
|
451
462
|
CourseId: courseId,
|
|
452
463
|
Email: email,
|
|
453
464
|
FutureOnly: futureOnly,
|
|
465
|
+
Converted: converted,
|
|
454
466
|
PageNumber: pageNumber,
|
|
455
467
|
Take: take,
|
|
456
468
|
Skip: skip,
|
|
@@ -483,6 +495,7 @@ export class WaitlistOpportunityService {
|
|
|
483
495
|
courseId,
|
|
484
496
|
email,
|
|
485
497
|
futureOnly,
|
|
498
|
+
converted,
|
|
486
499
|
pageNumber,
|
|
487
500
|
take,
|
|
488
501
|
skip,
|
|
@@ -519,6 +532,10 @@ export class WaitlistOpportunityService {
|
|
|
519
532
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
520
533
|
*/
|
|
521
534
|
futureOnly?: boolean;
|
|
535
|
+
/**
|
|
536
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
537
|
+
*/
|
|
538
|
+
converted?: boolean;
|
|
522
539
|
/**
|
|
523
540
|
* Gets or sets the page number for paged queries.
|
|
524
541
|
*/
|
|
@@ -574,6 +591,7 @@ export class WaitlistOpportunityService {
|
|
|
574
591
|
CourseId: courseId,
|
|
575
592
|
Email: email,
|
|
576
593
|
FutureOnly: futureOnly,
|
|
594
|
+
Converted: converted,
|
|
577
595
|
PageNumber: pageNumber,
|
|
578
596
|
Take: take,
|
|
579
597
|
Skip: skip,
|
|
@@ -606,6 +624,7 @@ export class WaitlistOpportunityService {
|
|
|
606
624
|
courseId,
|
|
607
625
|
email,
|
|
608
626
|
futureOnly,
|
|
627
|
+
converted,
|
|
609
628
|
pageNumber,
|
|
610
629
|
take,
|
|
611
630
|
skip,
|
|
@@ -642,6 +661,10 @@ export class WaitlistOpportunityService {
|
|
|
642
661
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
643
662
|
*/
|
|
644
663
|
futureOnly?: boolean;
|
|
664
|
+
/**
|
|
665
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
666
|
+
*/
|
|
667
|
+
converted?: boolean;
|
|
645
668
|
/**
|
|
646
669
|
* Gets or sets the page number for paged queries.
|
|
647
670
|
*/
|
|
@@ -697,6 +720,7 @@ export class WaitlistOpportunityService {
|
|
|
697
720
|
CourseId: courseId,
|
|
698
721
|
Email: email,
|
|
699
722
|
FutureOnly: futureOnly,
|
|
723
|
+
Converted: converted,
|
|
700
724
|
PageNumber: pageNumber,
|
|
701
725
|
Take: take,
|
|
702
726
|
Skip: skip,
|
|
@@ -729,6 +753,7 @@ export class WaitlistOpportunityService {
|
|
|
729
753
|
courseId,
|
|
730
754
|
email,
|
|
731
755
|
futureOnly,
|
|
756
|
+
converted,
|
|
732
757
|
pageNumber,
|
|
733
758
|
take,
|
|
734
759
|
skip,
|
|
@@ -765,6 +790,10 @@ export class WaitlistOpportunityService {
|
|
|
765
790
|
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
766
791
|
*/
|
|
767
792
|
futureOnly?: boolean;
|
|
793
|
+
/**
|
|
794
|
+
* Gets or sets a value indicating whether the waitlist opportunity is converted..
|
|
795
|
+
*/
|
|
796
|
+
converted?: boolean;
|
|
768
797
|
/**
|
|
769
798
|
* Gets or sets the page number for paged queries.
|
|
770
799
|
*/
|
|
@@ -820,6 +849,7 @@ export class WaitlistOpportunityService {
|
|
|
820
849
|
CourseId: courseId,
|
|
821
850
|
Email: email,
|
|
822
851
|
FutureOnly: futureOnly,
|
|
852
|
+
Converted: converted,
|
|
823
853
|
PageNumber: pageNumber,
|
|
824
854
|
Take: take,
|
|
825
855
|
Skip: skip,
|