reach-api-sdk 1.0.195 → 1.0.196
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 +96 -18
- package/dist/reach-sdk.js +52 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +145 -0
- package/src/services/DiscountCodeUsesService.ts +31 -0
- package/src/services/PublicWaitlistOpportunityService.ts +12 -0
- package/src/services/WaitlistOpportunityReportService.ts +53 -0
- package/src/services/WaitlistOpportunityService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -13001,7 +13001,7 @@ declare class DiscountCodeUsesService {
|
|
|
13001
13001
|
* @returns DiscountCodeUsePage OK
|
|
13002
13002
|
* @throws ApiError
|
|
13003
13003
|
*/
|
|
13004
|
-
getPage({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13004
|
+
getPage({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13005
13005
|
/**
|
|
13006
13006
|
* Gets or sets the deal id.
|
|
13007
13007
|
*/
|
|
@@ -13014,6 +13014,10 @@ declare class DiscountCodeUsesService {
|
|
|
13014
13014
|
* Gets or sets the customer id.
|
|
13015
13015
|
*/
|
|
13016
13016
|
customerId?: string;
|
|
13017
|
+
/**
|
|
13018
|
+
* Gets or sets the queryable order stages.
|
|
13019
|
+
*/
|
|
13020
|
+
orderStages?: Array<OrderStage>;
|
|
13017
13021
|
/**
|
|
13018
13022
|
* Gets or sets the page number for paged queries.
|
|
13019
13023
|
*/
|
|
@@ -13097,7 +13101,7 @@ declare class DiscountCodeUsesService {
|
|
|
13097
13101
|
* @returns boolean OK
|
|
13098
13102
|
* @throws ApiError
|
|
13099
13103
|
*/
|
|
13100
|
-
exists({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13104
|
+
exists({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13101
13105
|
/**
|
|
13102
13106
|
* Gets or sets the deal id.
|
|
13103
13107
|
*/
|
|
@@ -13110,6 +13114,10 @@ declare class DiscountCodeUsesService {
|
|
|
13110
13114
|
* Gets or sets the customer id.
|
|
13111
13115
|
*/
|
|
13112
13116
|
customerId?: string;
|
|
13117
|
+
/**
|
|
13118
|
+
* Gets or sets the queryable order stages.
|
|
13119
|
+
*/
|
|
13120
|
+
orderStages?: Array<OrderStage>;
|
|
13113
13121
|
/**
|
|
13114
13122
|
* Gets or sets the page number for paged queries.
|
|
13115
13123
|
*/
|
|
@@ -13160,7 +13168,7 @@ declare class DiscountCodeUsesService {
|
|
|
13160
13168
|
* @returns number OK
|
|
13161
13169
|
* @throws ApiError
|
|
13162
13170
|
*/
|
|
13163
|
-
count({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13171
|
+
count({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13164
13172
|
/**
|
|
13165
13173
|
* Gets or sets the deal id.
|
|
13166
13174
|
*/
|
|
@@ -13173,6 +13181,10 @@ declare class DiscountCodeUsesService {
|
|
|
13173
13181
|
* Gets or sets the customer id.
|
|
13174
13182
|
*/
|
|
13175
13183
|
customerId?: string;
|
|
13184
|
+
/**
|
|
13185
|
+
* Gets or sets the queryable order stages.
|
|
13186
|
+
*/
|
|
13187
|
+
orderStages?: Array<OrderStage>;
|
|
13176
13188
|
/**
|
|
13177
13189
|
* Gets or sets the page number for paged queries.
|
|
13178
13190
|
*/
|
|
@@ -13223,7 +13235,7 @@ declare class DiscountCodeUsesService {
|
|
|
13223
13235
|
* @returns DiscountCodeUse OK
|
|
13224
13236
|
* @throws ApiError
|
|
13225
13237
|
*/
|
|
13226
|
-
getListWithoutReferences({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13238
|
+
getListWithoutReferences({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13227
13239
|
/**
|
|
13228
13240
|
* Gets or sets the deal id.
|
|
13229
13241
|
*/
|
|
@@ -13236,6 +13248,10 @@ declare class DiscountCodeUsesService {
|
|
|
13236
13248
|
* Gets or sets the customer id.
|
|
13237
13249
|
*/
|
|
13238
13250
|
customerId?: string;
|
|
13251
|
+
/**
|
|
13252
|
+
* Gets or sets the queryable order stages.
|
|
13253
|
+
*/
|
|
13254
|
+
orderStages?: Array<OrderStage>;
|
|
13239
13255
|
/**
|
|
13240
13256
|
* Gets or sets the page number for paged queries.
|
|
13241
13257
|
*/
|
|
@@ -13286,7 +13302,7 @@ declare class DiscountCodeUsesService {
|
|
|
13286
13302
|
* @returns DiscountCodeUse OK
|
|
13287
13303
|
* @throws ApiError
|
|
13288
13304
|
*/
|
|
13289
|
-
getListIdName({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13305
|
+
getListIdName({ dealId, orderId, customerId, orderStages, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13290
13306
|
/**
|
|
13291
13307
|
* Gets or sets the deal id.
|
|
13292
13308
|
*/
|
|
@@ -13299,6 +13315,10 @@ declare class DiscountCodeUsesService {
|
|
|
13299
13315
|
* Gets or sets the customer id.
|
|
13300
13316
|
*/
|
|
13301
13317
|
customerId?: string;
|
|
13318
|
+
/**
|
|
13319
|
+
* Gets or sets the queryable order stages.
|
|
13320
|
+
*/
|
|
13321
|
+
orderStages?: Array<OrderStage>;
|
|
13302
13322
|
/**
|
|
13303
13323
|
* Gets or sets the page number for paged queries.
|
|
13304
13324
|
*/
|
|
@@ -39728,7 +39748,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39728
39748
|
* @returns WaitlistOpportunityPage OK
|
|
39729
39749
|
* @throws ApiError
|
|
39730
39750
|
*/
|
|
39731
|
-
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39751
|
+
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39732
39752
|
/**
|
|
39733
39753
|
* The tenants subdomain.
|
|
39734
39754
|
*/
|
|
@@ -39753,6 +39773,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39753
39773
|
* Gets or sets the queryable Email.
|
|
39754
39774
|
*/
|
|
39755
39775
|
email?: string;
|
|
39776
|
+
/**
|
|
39777
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39778
|
+
*/
|
|
39779
|
+
futureOnly?: boolean;
|
|
39756
39780
|
/**
|
|
39757
39781
|
* Gets or sets the page number for paged queries.
|
|
39758
39782
|
*/
|
|
@@ -39833,7 +39857,7 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39833
39857
|
* @returns boolean OK
|
|
39834
39858
|
* @throws ApiError
|
|
39835
39859
|
*/
|
|
39836
|
-
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39860
|
+
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39837
39861
|
/**
|
|
39838
39862
|
* The tenants subdomain.
|
|
39839
39863
|
*/
|
|
@@ -39858,6 +39882,10 @@ declare class PublicWaitlistOpportunityService {
|
|
|
39858
39882
|
* Gets or sets the queryable Email.
|
|
39859
39883
|
*/
|
|
39860
39884
|
email?: string;
|
|
39885
|
+
/**
|
|
39886
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
39887
|
+
*/
|
|
39888
|
+
futureOnly?: boolean;
|
|
39861
39889
|
/**
|
|
39862
39890
|
* Gets or sets the page number for paged queries.
|
|
39863
39891
|
*/
|
|
@@ -60433,7 +60461,7 @@ declare class WaitlistOpportunityService {
|
|
|
60433
60461
|
* @returns WaitlistOpportunityPage OK
|
|
60434
60462
|
* @throws ApiError
|
|
60435
60463
|
*/
|
|
60436
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60464
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60437
60465
|
/**
|
|
60438
60466
|
* Gets or sets the queryable User Id.
|
|
60439
60467
|
*/
|
|
@@ -60454,6 +60482,10 @@ declare class WaitlistOpportunityService {
|
|
|
60454
60482
|
* Gets or sets the queryable Email.
|
|
60455
60483
|
*/
|
|
60456
60484
|
email?: string;
|
|
60485
|
+
/**
|
|
60486
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60487
|
+
*/
|
|
60488
|
+
futureOnly?: boolean;
|
|
60457
60489
|
/**
|
|
60458
60490
|
* Gets or sets the page number for paged queries.
|
|
60459
60491
|
*/
|
|
@@ -60537,7 +60569,7 @@ declare class WaitlistOpportunityService {
|
|
|
60537
60569
|
* @returns boolean OK
|
|
60538
60570
|
* @throws ApiError
|
|
60539
60571
|
*/
|
|
60540
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60572
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60541
60573
|
/**
|
|
60542
60574
|
* Gets or sets the queryable User Id.
|
|
60543
60575
|
*/
|
|
@@ -60558,6 +60590,10 @@ declare class WaitlistOpportunityService {
|
|
|
60558
60590
|
* Gets or sets the queryable Email.
|
|
60559
60591
|
*/
|
|
60560
60592
|
email?: string;
|
|
60593
|
+
/**
|
|
60594
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60595
|
+
*/
|
|
60596
|
+
futureOnly?: boolean;
|
|
60561
60597
|
/**
|
|
60562
60598
|
* Gets or sets the page number for paged queries.
|
|
60563
60599
|
*/
|
|
@@ -60608,7 +60644,7 @@ declare class WaitlistOpportunityService {
|
|
|
60608
60644
|
* @returns number OK
|
|
60609
60645
|
* @throws ApiError
|
|
60610
60646
|
*/
|
|
60611
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60647
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60612
60648
|
/**
|
|
60613
60649
|
* Gets or sets the queryable User Id.
|
|
60614
60650
|
*/
|
|
@@ -60629,6 +60665,10 @@ declare class WaitlistOpportunityService {
|
|
|
60629
60665
|
* Gets or sets the queryable Email.
|
|
60630
60666
|
*/
|
|
60631
60667
|
email?: string;
|
|
60668
|
+
/**
|
|
60669
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60670
|
+
*/
|
|
60671
|
+
futureOnly?: boolean;
|
|
60632
60672
|
/**
|
|
60633
60673
|
* Gets or sets the page number for paged queries.
|
|
60634
60674
|
*/
|
|
@@ -60679,7 +60719,7 @@ declare class WaitlistOpportunityService {
|
|
|
60679
60719
|
* @returns WaitlistOpportunity OK
|
|
60680
60720
|
* @throws ApiError
|
|
60681
60721
|
*/
|
|
60682
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60722
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60683
60723
|
/**
|
|
60684
60724
|
* Gets or sets the queryable User Id.
|
|
60685
60725
|
*/
|
|
@@ -60700,6 +60740,10 @@ declare class WaitlistOpportunityService {
|
|
|
60700
60740
|
* Gets or sets the queryable Email.
|
|
60701
60741
|
*/
|
|
60702
60742
|
email?: string;
|
|
60743
|
+
/**
|
|
60744
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60745
|
+
*/
|
|
60746
|
+
futureOnly?: boolean;
|
|
60703
60747
|
/**
|
|
60704
60748
|
* Gets or sets the page number for paged queries.
|
|
60705
60749
|
*/
|
|
@@ -60750,7 +60794,7 @@ declare class WaitlistOpportunityService {
|
|
|
60750
60794
|
* @returns WaitlistOpportunity OK
|
|
60751
60795
|
* @throws ApiError
|
|
60752
60796
|
*/
|
|
60753
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60797
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60754
60798
|
/**
|
|
60755
60799
|
* Gets or sets the queryable User Id.
|
|
60756
60800
|
*/
|
|
@@ -60771,6 +60815,10 @@ declare class WaitlistOpportunityService {
|
|
|
60771
60815
|
* Gets or sets the queryable Email.
|
|
60772
60816
|
*/
|
|
60773
60817
|
email?: string;
|
|
60818
|
+
/**
|
|
60819
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60820
|
+
*/
|
|
60821
|
+
futureOnly?: boolean;
|
|
60774
60822
|
/**
|
|
60775
60823
|
* Gets or sets the page number for paged queries.
|
|
60776
60824
|
*/
|
|
@@ -60886,7 +60934,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
60886
60934
|
* @returns any OK
|
|
60887
60935
|
* @throws ApiError
|
|
60888
60936
|
*/
|
|
60889
|
-
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
60937
|
+
exportToCsv({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
60890
60938
|
/**
|
|
60891
60939
|
* Gets or sets the queryable User Id.
|
|
60892
60940
|
*/
|
|
@@ -60907,6 +60955,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
60907
60955
|
* Gets or sets the queryable Email.
|
|
60908
60956
|
*/
|
|
60909
60957
|
email?: string;
|
|
60958
|
+
/**
|
|
60959
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
60960
|
+
*/
|
|
60961
|
+
futureOnly?: boolean;
|
|
60910
60962
|
/**
|
|
60911
60963
|
* Gets or sets the page number for paged queries.
|
|
60912
60964
|
*/
|
|
@@ -60958,6 +61010,12 @@ declare class WaitlistOpportunityReportService {
|
|
|
60958
61010
|
Token?: string;
|
|
60959
61011
|
};
|
|
60960
61012
|
}): CancelablePromise<any>;
|
|
61013
|
+
/**
|
|
61014
|
+
* Gets waitlist conversion statistics.
|
|
61015
|
+
* @returns any OK
|
|
61016
|
+
* @throws ApiError
|
|
61017
|
+
*/
|
|
61018
|
+
getConversionStats(): CancelablePromise<any>;
|
|
60961
61019
|
/**
|
|
60962
61020
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
60963
61021
|
* @returns WaitlistOpportunityReport OK
|
|
@@ -61018,7 +61076,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61018
61076
|
* @returns WaitlistOpportunityReportPage OK
|
|
61019
61077
|
* @throws ApiError
|
|
61020
61078
|
*/
|
|
61021
|
-
getPage({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61079
|
+
getPage({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61022
61080
|
/**
|
|
61023
61081
|
* Gets or sets the queryable User Id.
|
|
61024
61082
|
*/
|
|
@@ -61039,6 +61097,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61039
61097
|
* Gets or sets the queryable Email.
|
|
61040
61098
|
*/
|
|
61041
61099
|
email?: string;
|
|
61100
|
+
/**
|
|
61101
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61102
|
+
*/
|
|
61103
|
+
futureOnly?: boolean;
|
|
61042
61104
|
/**
|
|
61043
61105
|
* Gets or sets the page number for paged queries.
|
|
61044
61106
|
*/
|
|
@@ -61122,7 +61184,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61122
61184
|
* @returns boolean OK
|
|
61123
61185
|
* @throws ApiError
|
|
61124
61186
|
*/
|
|
61125
|
-
exists({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61187
|
+
exists({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61126
61188
|
/**
|
|
61127
61189
|
* Gets or sets the queryable User Id.
|
|
61128
61190
|
*/
|
|
@@ -61143,6 +61205,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61143
61205
|
* Gets or sets the queryable Email.
|
|
61144
61206
|
*/
|
|
61145
61207
|
email?: string;
|
|
61208
|
+
/**
|
|
61209
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61210
|
+
*/
|
|
61211
|
+
futureOnly?: boolean;
|
|
61146
61212
|
/**
|
|
61147
61213
|
* Gets or sets the page number for paged queries.
|
|
61148
61214
|
*/
|
|
@@ -61193,7 +61259,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61193
61259
|
* @returns number OK
|
|
61194
61260
|
* @throws ApiError
|
|
61195
61261
|
*/
|
|
61196
|
-
count({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61262
|
+
count({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61197
61263
|
/**
|
|
61198
61264
|
* Gets or sets the queryable User Id.
|
|
61199
61265
|
*/
|
|
@@ -61214,6 +61280,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61214
61280
|
* Gets or sets the queryable Email.
|
|
61215
61281
|
*/
|
|
61216
61282
|
email?: string;
|
|
61283
|
+
/**
|
|
61284
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61285
|
+
*/
|
|
61286
|
+
futureOnly?: boolean;
|
|
61217
61287
|
/**
|
|
61218
61288
|
* Gets or sets the page number for paged queries.
|
|
61219
61289
|
*/
|
|
@@ -61264,7 +61334,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61264
61334
|
* @returns WaitlistOpportunityReport OK
|
|
61265
61335
|
* @throws ApiError
|
|
61266
61336
|
*/
|
|
61267
|
-
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61337
|
+
getListWithoutReferences({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61268
61338
|
/**
|
|
61269
61339
|
* Gets or sets the queryable User Id.
|
|
61270
61340
|
*/
|
|
@@ -61285,6 +61355,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61285
61355
|
* Gets or sets the queryable Email.
|
|
61286
61356
|
*/
|
|
61287
61357
|
email?: string;
|
|
61358
|
+
/**
|
|
61359
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61360
|
+
*/
|
|
61361
|
+
futureOnly?: boolean;
|
|
61288
61362
|
/**
|
|
61289
61363
|
* Gets or sets the page number for paged queries.
|
|
61290
61364
|
*/
|
|
@@ -61335,7 +61409,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
61335
61409
|
* @returns WaitlistOpportunityReport OK
|
|
61336
61410
|
* @throws ApiError
|
|
61337
61411
|
*/
|
|
61338
|
-
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61412
|
+
getListIdName({ userId, slotId, scheduledSessionId, courseId, email, futureOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61339
61413
|
/**
|
|
61340
61414
|
* Gets or sets the queryable User Id.
|
|
61341
61415
|
*/
|
|
@@ -61356,6 +61430,10 @@ declare class WaitlistOpportunityReportService {
|
|
|
61356
61430
|
* Gets or sets the queryable Email.
|
|
61357
61431
|
*/
|
|
61358
61432
|
email?: string;
|
|
61433
|
+
/**
|
|
61434
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
61435
|
+
*/
|
|
61436
|
+
futureOnly?: boolean;
|
|
61359
61437
|
/**
|
|
61360
61438
|
* Gets or sets the page number for paged queries.
|
|
61361
61439
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -6889,6 +6889,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6889
6889
|
dealId,
|
|
6890
6890
|
orderId,
|
|
6891
6891
|
customerId,
|
|
6892
|
+
orderStages,
|
|
6892
6893
|
pageNumber,
|
|
6893
6894
|
take,
|
|
6894
6895
|
skip,
|
|
@@ -6908,6 +6909,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6908
6909
|
DealId: dealId,
|
|
6909
6910
|
OrderId: orderId,
|
|
6910
6911
|
CustomerId: customerId,
|
|
6912
|
+
OrderStages: orderStages,
|
|
6911
6913
|
PageNumber: pageNumber,
|
|
6912
6914
|
Take: take,
|
|
6913
6915
|
Skip: skip,
|
|
@@ -6999,6 +7001,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6999
7001
|
dealId,
|
|
7000
7002
|
orderId,
|
|
7001
7003
|
customerId,
|
|
7004
|
+
orderStages,
|
|
7002
7005
|
pageNumber,
|
|
7003
7006
|
take,
|
|
7004
7007
|
skip,
|
|
@@ -7018,6 +7021,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7018
7021
|
DealId: dealId,
|
|
7019
7022
|
OrderId: orderId,
|
|
7020
7023
|
CustomerId: customerId,
|
|
7024
|
+
OrderStages: orderStages,
|
|
7021
7025
|
PageNumber: pageNumber,
|
|
7022
7026
|
Take: take,
|
|
7023
7027
|
Skip: skip,
|
|
@@ -7046,6 +7050,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7046
7050
|
dealId,
|
|
7047
7051
|
orderId,
|
|
7048
7052
|
customerId,
|
|
7053
|
+
orderStages,
|
|
7049
7054
|
pageNumber,
|
|
7050
7055
|
take,
|
|
7051
7056
|
skip,
|
|
@@ -7065,6 +7070,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7065
7070
|
DealId: dealId,
|
|
7066
7071
|
OrderId: orderId,
|
|
7067
7072
|
CustomerId: customerId,
|
|
7073
|
+
OrderStages: orderStages,
|
|
7068
7074
|
PageNumber: pageNumber,
|
|
7069
7075
|
Take: take,
|
|
7070
7076
|
Skip: skip,
|
|
@@ -7093,6 +7099,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7093
7099
|
dealId,
|
|
7094
7100
|
orderId,
|
|
7095
7101
|
customerId,
|
|
7102
|
+
orderStages,
|
|
7096
7103
|
pageNumber,
|
|
7097
7104
|
take,
|
|
7098
7105
|
skip,
|
|
@@ -7112,6 +7119,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7112
7119
|
DealId: dealId,
|
|
7113
7120
|
OrderId: orderId,
|
|
7114
7121
|
CustomerId: customerId,
|
|
7122
|
+
OrderStages: orderStages,
|
|
7115
7123
|
PageNumber: pageNumber,
|
|
7116
7124
|
Take: take,
|
|
7117
7125
|
Skip: skip,
|
|
@@ -7140,6 +7148,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7140
7148
|
dealId,
|
|
7141
7149
|
orderId,
|
|
7142
7150
|
customerId,
|
|
7151
|
+
orderStages,
|
|
7143
7152
|
pageNumber,
|
|
7144
7153
|
take,
|
|
7145
7154
|
skip,
|
|
@@ -7159,6 +7168,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7159
7168
|
DealId: dealId,
|
|
7160
7169
|
OrderId: orderId,
|
|
7161
7170
|
CustomerId: customerId,
|
|
7171
|
+
OrderStages: orderStages,
|
|
7162
7172
|
PageNumber: pageNumber,
|
|
7163
7173
|
Take: take,
|
|
7164
7174
|
Skip: skip,
|
|
@@ -27608,6 +27618,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27608
27618
|
scheduledSessionId,
|
|
27609
27619
|
courseId,
|
|
27610
27620
|
email,
|
|
27621
|
+
futureOnly,
|
|
27611
27622
|
pageNumber,
|
|
27612
27623
|
take,
|
|
27613
27624
|
skip,
|
|
@@ -27632,6 +27643,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27632
27643
|
ScheduledSessionId: scheduledSessionId,
|
|
27633
27644
|
CourseId: courseId,
|
|
27634
27645
|
Email: email,
|
|
27646
|
+
FutureOnly: futureOnly,
|
|
27635
27647
|
PageNumber: pageNumber,
|
|
27636
27648
|
Take: take,
|
|
27637
27649
|
Skip: skip,
|
|
@@ -27713,6 +27725,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27713
27725
|
scheduledSessionId,
|
|
27714
27726
|
courseId,
|
|
27715
27727
|
email,
|
|
27728
|
+
futureOnly,
|
|
27716
27729
|
pageNumber,
|
|
27717
27730
|
take,
|
|
27718
27731
|
skip,
|
|
@@ -27737,6 +27750,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27737
27750
|
ScheduledSessionId: scheduledSessionId,
|
|
27738
27751
|
CourseId: courseId,
|
|
27739
27752
|
Email: email,
|
|
27753
|
+
FutureOnly: futureOnly,
|
|
27740
27754
|
PageNumber: pageNumber,
|
|
27741
27755
|
Take: take,
|
|
27742
27756
|
Skip: skip,
|
|
@@ -44394,6 +44408,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44394
44408
|
scheduledSessionId,
|
|
44395
44409
|
courseId,
|
|
44396
44410
|
email,
|
|
44411
|
+
futureOnly,
|
|
44397
44412
|
pageNumber,
|
|
44398
44413
|
take,
|
|
44399
44414
|
skip,
|
|
@@ -44415,6 +44430,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44415
44430
|
ScheduledSessionId: scheduledSessionId,
|
|
44416
44431
|
CourseId: courseId,
|
|
44417
44432
|
Email: email,
|
|
44433
|
+
FutureOnly: futureOnly,
|
|
44418
44434
|
PageNumber: pageNumber,
|
|
44419
44435
|
Take: take,
|
|
44420
44436
|
Skip: skip,
|
|
@@ -44508,6 +44524,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44508
44524
|
scheduledSessionId,
|
|
44509
44525
|
courseId,
|
|
44510
44526
|
email,
|
|
44527
|
+
futureOnly,
|
|
44511
44528
|
pageNumber,
|
|
44512
44529
|
take,
|
|
44513
44530
|
skip,
|
|
@@ -44529,6 +44546,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44529
44546
|
ScheduledSessionId: scheduledSessionId,
|
|
44530
44547
|
CourseId: courseId,
|
|
44531
44548
|
Email: email,
|
|
44549
|
+
FutureOnly: futureOnly,
|
|
44532
44550
|
PageNumber: pageNumber,
|
|
44533
44551
|
Take: take,
|
|
44534
44552
|
Skip: skip,
|
|
@@ -44559,6 +44577,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44559
44577
|
scheduledSessionId,
|
|
44560
44578
|
courseId,
|
|
44561
44579
|
email,
|
|
44580
|
+
futureOnly,
|
|
44562
44581
|
pageNumber,
|
|
44563
44582
|
take,
|
|
44564
44583
|
skip,
|
|
@@ -44580,6 +44599,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44580
44599
|
ScheduledSessionId: scheduledSessionId,
|
|
44581
44600
|
CourseId: courseId,
|
|
44582
44601
|
Email: email,
|
|
44602
|
+
FutureOnly: futureOnly,
|
|
44583
44603
|
PageNumber: pageNumber,
|
|
44584
44604
|
Take: take,
|
|
44585
44605
|
Skip: skip,
|
|
@@ -44610,6 +44630,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44610
44630
|
scheduledSessionId,
|
|
44611
44631
|
courseId,
|
|
44612
44632
|
email,
|
|
44633
|
+
futureOnly,
|
|
44613
44634
|
pageNumber,
|
|
44614
44635
|
take,
|
|
44615
44636
|
skip,
|
|
@@ -44631,6 +44652,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44631
44652
|
ScheduledSessionId: scheduledSessionId,
|
|
44632
44653
|
CourseId: courseId,
|
|
44633
44654
|
Email: email,
|
|
44655
|
+
FutureOnly: futureOnly,
|
|
44634
44656
|
PageNumber: pageNumber,
|
|
44635
44657
|
Take: take,
|
|
44636
44658
|
Skip: skip,
|
|
@@ -44661,6 +44683,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44661
44683
|
scheduledSessionId,
|
|
44662
44684
|
courseId,
|
|
44663
44685
|
email,
|
|
44686
|
+
futureOnly,
|
|
44664
44687
|
pageNumber,
|
|
44665
44688
|
take,
|
|
44666
44689
|
skip,
|
|
@@ -44682,6 +44705,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44682
44705
|
ScheduledSessionId: scheduledSessionId,
|
|
44683
44706
|
CourseId: courseId,
|
|
44684
44707
|
Email: email,
|
|
44708
|
+
FutureOnly: futureOnly,
|
|
44685
44709
|
PageNumber: pageNumber,
|
|
44686
44710
|
Take: take,
|
|
44687
44711
|
Skip: skip,
|
|
@@ -44717,6 +44741,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44717
44741
|
scheduledSessionId,
|
|
44718
44742
|
courseId,
|
|
44719
44743
|
email,
|
|
44744
|
+
futureOnly,
|
|
44720
44745
|
pageNumber,
|
|
44721
44746
|
take,
|
|
44722
44747
|
skip,
|
|
@@ -44739,6 +44764,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44739
44764
|
ScheduledSessionId: scheduledSessionId,
|
|
44740
44765
|
CourseId: courseId,
|
|
44741
44766
|
Email: email,
|
|
44767
|
+
FutureOnly: futureOnly,
|
|
44742
44768
|
PageNumber: pageNumber,
|
|
44743
44769
|
Take: take,
|
|
44744
44770
|
Skip: skip,
|
|
@@ -44760,6 +44786,22 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44760
44786
|
}
|
|
44761
44787
|
});
|
|
44762
44788
|
}
|
|
44789
|
+
/**
|
|
44790
|
+
* Gets waitlist conversion statistics.
|
|
44791
|
+
* @returns any OK
|
|
44792
|
+
* @throws ApiError
|
|
44793
|
+
*/
|
|
44794
|
+
getConversionStats() {
|
|
44795
|
+
return this.httpRequest.request({
|
|
44796
|
+
method: "GET",
|
|
44797
|
+
url: "/api/waitlist-opportunity-report/conversion-stats",
|
|
44798
|
+
errors: {
|
|
44799
|
+
400: `Bad Request`,
|
|
44800
|
+
422: `Unprocessable Content`,
|
|
44801
|
+
500: `Internal Server Error`
|
|
44802
|
+
}
|
|
44803
|
+
});
|
|
44804
|
+
}
|
|
44763
44805
|
/**
|
|
44764
44806
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
44765
44807
|
* @returns WaitlistOpportunityReport OK
|
|
@@ -44871,6 +44913,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44871
44913
|
scheduledSessionId,
|
|
44872
44914
|
courseId,
|
|
44873
44915
|
email,
|
|
44916
|
+
futureOnly,
|
|
44874
44917
|
pageNumber,
|
|
44875
44918
|
take,
|
|
44876
44919
|
skip,
|
|
@@ -44892,6 +44935,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44892
44935
|
ScheduledSessionId: scheduledSessionId,
|
|
44893
44936
|
CourseId: courseId,
|
|
44894
44937
|
Email: email,
|
|
44938
|
+
FutureOnly: futureOnly,
|
|
44895
44939
|
PageNumber: pageNumber,
|
|
44896
44940
|
Take: take,
|
|
44897
44941
|
Skip: skip,
|
|
@@ -44985,6 +45029,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44985
45029
|
scheduledSessionId,
|
|
44986
45030
|
courseId,
|
|
44987
45031
|
email,
|
|
45032
|
+
futureOnly,
|
|
44988
45033
|
pageNumber,
|
|
44989
45034
|
take,
|
|
44990
45035
|
skip,
|
|
@@ -45006,6 +45051,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45006
45051
|
ScheduledSessionId: scheduledSessionId,
|
|
45007
45052
|
CourseId: courseId,
|
|
45008
45053
|
Email: email,
|
|
45054
|
+
FutureOnly: futureOnly,
|
|
45009
45055
|
PageNumber: pageNumber,
|
|
45010
45056
|
Take: take,
|
|
45011
45057
|
Skip: skip,
|
|
@@ -45036,6 +45082,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45036
45082
|
scheduledSessionId,
|
|
45037
45083
|
courseId,
|
|
45038
45084
|
email,
|
|
45085
|
+
futureOnly,
|
|
45039
45086
|
pageNumber,
|
|
45040
45087
|
take,
|
|
45041
45088
|
skip,
|
|
@@ -45057,6 +45104,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45057
45104
|
ScheduledSessionId: scheduledSessionId,
|
|
45058
45105
|
CourseId: courseId,
|
|
45059
45106
|
Email: email,
|
|
45107
|
+
FutureOnly: futureOnly,
|
|
45060
45108
|
PageNumber: pageNumber,
|
|
45061
45109
|
Take: take,
|
|
45062
45110
|
Skip: skip,
|
|
@@ -45087,6 +45135,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45087
45135
|
scheduledSessionId,
|
|
45088
45136
|
courseId,
|
|
45089
45137
|
email,
|
|
45138
|
+
futureOnly,
|
|
45090
45139
|
pageNumber,
|
|
45091
45140
|
take,
|
|
45092
45141
|
skip,
|
|
@@ -45108,6 +45157,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45108
45157
|
ScheduledSessionId: scheduledSessionId,
|
|
45109
45158
|
CourseId: courseId,
|
|
45110
45159
|
Email: email,
|
|
45160
|
+
FutureOnly: futureOnly,
|
|
45111
45161
|
PageNumber: pageNumber,
|
|
45112
45162
|
Take: take,
|
|
45113
45163
|
Skip: skip,
|
|
@@ -45138,6 +45188,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45138
45188
|
scheduledSessionId,
|
|
45139
45189
|
courseId,
|
|
45140
45190
|
email,
|
|
45191
|
+
futureOnly,
|
|
45141
45192
|
pageNumber,
|
|
45142
45193
|
take,
|
|
45143
45194
|
skip,
|
|
@@ -45159,6 +45210,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45159
45210
|
ScheduledSessionId: scheduledSessionId,
|
|
45160
45211
|
CourseId: courseId,
|
|
45161
45212
|
Email: email,
|
|
45213
|
+
FutureOnly: futureOnly,
|
|
45162
45214
|
PageNumber: pageNumber,
|
|
45163
45215
|
Take: take,
|
|
45164
45216
|
Skip: skip,
|