reach-api-sdk 1.0.163 → 1.0.164
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 +59 -10
- package/dist/reach-sdk.js +21 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +66 -0
- package/src/models/NotificationSetting.ts +4 -0
- package/src/models/NotificationType.ts +1 -0
- package/src/models/OrderItem.ts +4 -0
- package/src/services/NotificationSettingsService.ts +24 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -5165,6 +5165,10 @@ type OrderItem = {
|
|
|
5165
5165
|
* Gets or sets the post survey completed date.
|
|
5166
5166
|
*/
|
|
5167
5167
|
postCompletionSurveyCompletedDate?: string | null;
|
|
5168
|
+
/**
|
|
5169
|
+
* Gets or sets the parent order item id.
|
|
5170
|
+
*/
|
|
5171
|
+
parentOrderItemId?: string | null;
|
|
5168
5172
|
order?: Order;
|
|
5169
5173
|
slot?: Slot;
|
|
5170
5174
|
scheduledSession?: ScheduledSession;
|
|
@@ -16942,6 +16946,7 @@ declare class LoqatePlacesService {
|
|
|
16942
16946
|
declare enum NotificationType {
|
|
16943
16947
|
NEW_BOOKING = "NewBooking",
|
|
16944
16948
|
CANCELLATION = "Cancellation",
|
|
16949
|
+
RESCHEDULE = "Reschedule",
|
|
16945
16950
|
WAITLIST_ACTIVITY = "WaitlistActivity",
|
|
16946
16951
|
WAITLIST_OPPORTUNITY = "WaitlistOpportunity",
|
|
16947
16952
|
CAPACITY_REACHED = "CapacityReached",
|
|
@@ -17403,6 +17408,10 @@ type NotificationSetting = {
|
|
|
17403
17408
|
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
17404
17409
|
*/
|
|
17405
17410
|
cancellation?: boolean;
|
|
17411
|
+
/**
|
|
17412
|
+
* Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
17413
|
+
*/
|
|
17414
|
+
reschedule?: boolean;
|
|
17406
17415
|
/**
|
|
17407
17416
|
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
17408
17417
|
*/
|
|
@@ -17593,7 +17602,7 @@ declare class NotificationSettingsService {
|
|
|
17593
17602
|
* @returns NotificationSettingPage Success
|
|
17594
17603
|
* @throws ApiError
|
|
17595
17604
|
*/
|
|
17596
|
-
getPage({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17605
|
+
getPage({ userId, newBooking, cancellation, reschedule, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17597
17606
|
/**
|
|
17598
17607
|
* Gets or sets the queryable user id.
|
|
17599
17608
|
*/
|
|
@@ -17606,6 +17615,10 @@ declare class NotificationSettingsService {
|
|
|
17606
17615
|
* Gets or sets the queryable cancellation flag.
|
|
17607
17616
|
*/
|
|
17608
17617
|
cancellation?: boolean;
|
|
17618
|
+
/**
|
|
17619
|
+
* Gets or sets the queryable reschedule flag.
|
|
17620
|
+
*/
|
|
17621
|
+
reschedule?: boolean;
|
|
17609
17622
|
/**
|
|
17610
17623
|
* Gets or sets the queryable waitlist activity flag.
|
|
17611
17624
|
*/
|
|
@@ -17733,7 +17746,7 @@ declare class NotificationSettingsService {
|
|
|
17733
17746
|
* @returns boolean Success
|
|
17734
17747
|
* @throws ApiError
|
|
17735
17748
|
*/
|
|
17736
|
-
exists({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17749
|
+
exists({ userId, newBooking, cancellation, reschedule, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17737
17750
|
/**
|
|
17738
17751
|
* Gets or sets the queryable user id.
|
|
17739
17752
|
*/
|
|
@@ -17746,6 +17759,10 @@ declare class NotificationSettingsService {
|
|
|
17746
17759
|
* Gets or sets the queryable cancellation flag.
|
|
17747
17760
|
*/
|
|
17748
17761
|
cancellation?: boolean;
|
|
17762
|
+
/**
|
|
17763
|
+
* Gets or sets the queryable reschedule flag.
|
|
17764
|
+
*/
|
|
17765
|
+
reschedule?: boolean;
|
|
17749
17766
|
/**
|
|
17750
17767
|
* Gets or sets the queryable waitlist activity flag.
|
|
17751
17768
|
*/
|
|
@@ -17840,7 +17857,7 @@ declare class NotificationSettingsService {
|
|
|
17840
17857
|
* @returns NotificationSetting Success
|
|
17841
17858
|
* @throws ApiError
|
|
17842
17859
|
*/
|
|
17843
|
-
getListWithoutReferences({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17860
|
+
getListWithoutReferences({ userId, newBooking, cancellation, reschedule, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17844
17861
|
/**
|
|
17845
17862
|
* Gets or sets the queryable user id.
|
|
17846
17863
|
*/
|
|
@@ -17853,6 +17870,10 @@ declare class NotificationSettingsService {
|
|
|
17853
17870
|
* Gets or sets the queryable cancellation flag.
|
|
17854
17871
|
*/
|
|
17855
17872
|
cancellation?: boolean;
|
|
17873
|
+
/**
|
|
17874
|
+
* Gets or sets the queryable reschedule flag.
|
|
17875
|
+
*/
|
|
17876
|
+
reschedule?: boolean;
|
|
17856
17877
|
/**
|
|
17857
17878
|
* Gets or sets the queryable waitlist activity flag.
|
|
17858
17879
|
*/
|
|
@@ -17947,7 +17968,7 @@ declare class NotificationSettingsService {
|
|
|
17947
17968
|
* @returns NotificationSetting Success
|
|
17948
17969
|
* @throws ApiError
|
|
17949
17970
|
*/
|
|
17950
|
-
getListIdName({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17971
|
+
getListIdName({ userId, newBooking, cancellation, reschedule, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17951
17972
|
/**
|
|
17952
17973
|
* Gets or sets the queryable user id.
|
|
17953
17974
|
*/
|
|
@@ -17960,6 +17981,10 @@ declare class NotificationSettingsService {
|
|
|
17960
17981
|
* Gets or sets the queryable cancellation flag.
|
|
17961
17982
|
*/
|
|
17962
17983
|
cancellation?: boolean;
|
|
17984
|
+
/**
|
|
17985
|
+
* Gets or sets the queryable reschedule flag.
|
|
17986
|
+
*/
|
|
17987
|
+
reschedule?: boolean;
|
|
17963
17988
|
/**
|
|
17964
17989
|
* Gets or sets the queryable waitlist activity flag.
|
|
17965
17990
|
*/
|
|
@@ -20869,7 +20894,7 @@ declare class OrderItemsService {
|
|
|
20869
20894
|
* @returns OrderItemPage Success
|
|
20870
20895
|
* @throws ApiError
|
|
20871
20896
|
*/
|
|
20872
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20897
|
+
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20873
20898
|
/**
|
|
20874
20899
|
* Gets or sets the queryable order item ids.
|
|
20875
20900
|
*/
|
|
@@ -20898,6 +20923,10 @@ declare class OrderItemsService {
|
|
|
20898
20923
|
* Gets or sets the queryable order statuses.
|
|
20899
20924
|
*/
|
|
20900
20925
|
statuses?: Array<OrderItemStatus>;
|
|
20926
|
+
/**
|
|
20927
|
+
* Gets or sets the queryable parent order item id id.
|
|
20928
|
+
*/
|
|
20929
|
+
parentOrderItemId?: string;
|
|
20901
20930
|
/**
|
|
20902
20931
|
* Gets or sets the page number for paged queries.
|
|
20903
20932
|
*/
|
|
@@ -20981,7 +21010,7 @@ declare class OrderItemsService {
|
|
|
20981
21010
|
* @returns boolean Success
|
|
20982
21011
|
* @throws ApiError
|
|
20983
21012
|
*/
|
|
20984
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21013
|
+
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20985
21014
|
/**
|
|
20986
21015
|
* Gets or sets the queryable order item ids.
|
|
20987
21016
|
*/
|
|
@@ -21010,6 +21039,10 @@ declare class OrderItemsService {
|
|
|
21010
21039
|
* Gets or sets the queryable order statuses.
|
|
21011
21040
|
*/
|
|
21012
21041
|
statuses?: Array<OrderItemStatus>;
|
|
21042
|
+
/**
|
|
21043
|
+
* Gets or sets the queryable parent order item id id.
|
|
21044
|
+
*/
|
|
21045
|
+
parentOrderItemId?: string;
|
|
21013
21046
|
/**
|
|
21014
21047
|
* Gets or sets the page number for paged queries.
|
|
21015
21048
|
*/
|
|
@@ -21060,7 +21093,7 @@ declare class OrderItemsService {
|
|
|
21060
21093
|
* @returns OrderItem Success
|
|
21061
21094
|
* @throws ApiError
|
|
21062
21095
|
*/
|
|
21063
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21096
|
+
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21064
21097
|
/**
|
|
21065
21098
|
* Gets or sets the queryable order item ids.
|
|
21066
21099
|
*/
|
|
@@ -21089,6 +21122,10 @@ declare class OrderItemsService {
|
|
|
21089
21122
|
* Gets or sets the queryable order statuses.
|
|
21090
21123
|
*/
|
|
21091
21124
|
statuses?: Array<OrderItemStatus>;
|
|
21125
|
+
/**
|
|
21126
|
+
* Gets or sets the queryable parent order item id id.
|
|
21127
|
+
*/
|
|
21128
|
+
parentOrderItemId?: string;
|
|
21092
21129
|
/**
|
|
21093
21130
|
* Gets or sets the page number for paged queries.
|
|
21094
21131
|
*/
|
|
@@ -21139,7 +21176,7 @@ declare class OrderItemsService {
|
|
|
21139
21176
|
* @returns OrderItem Success
|
|
21140
21177
|
* @throws ApiError
|
|
21141
21178
|
*/
|
|
21142
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21179
|
+
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21143
21180
|
/**
|
|
21144
21181
|
* Gets or sets the queryable order item ids.
|
|
21145
21182
|
*/
|
|
@@ -21168,6 +21205,10 @@ declare class OrderItemsService {
|
|
|
21168
21205
|
* Gets or sets the queryable order statuses.
|
|
21169
21206
|
*/
|
|
21170
21207
|
statuses?: Array<OrderItemStatus>;
|
|
21208
|
+
/**
|
|
21209
|
+
* Gets or sets the queryable parent order item id id.
|
|
21210
|
+
*/
|
|
21211
|
+
parentOrderItemId?: string;
|
|
21171
21212
|
/**
|
|
21172
21213
|
* Gets or sets the page number for paged queries.
|
|
21173
21214
|
*/
|
|
@@ -28755,7 +28796,7 @@ declare class PublicOrderItemsService {
|
|
|
28755
28796
|
* @returns OrderItemPage Success
|
|
28756
28797
|
* @throws ApiError
|
|
28757
28798
|
*/
|
|
28758
|
-
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28799
|
+
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28759
28800
|
/**
|
|
28760
28801
|
* The tenants subdomain.
|
|
28761
28802
|
*/
|
|
@@ -28788,6 +28829,10 @@ declare class PublicOrderItemsService {
|
|
|
28788
28829
|
* Gets or sets the queryable order statuses.
|
|
28789
28830
|
*/
|
|
28790
28831
|
statuses?: Array<OrderItemStatus>;
|
|
28832
|
+
/**
|
|
28833
|
+
* Gets or sets the queryable parent order item id id.
|
|
28834
|
+
*/
|
|
28835
|
+
parentOrderItemId?: string;
|
|
28791
28836
|
/**
|
|
28792
28837
|
* Gets or sets the page number for paged queries.
|
|
28793
28838
|
*/
|
|
@@ -28868,7 +28913,7 @@ declare class PublicOrderItemsService {
|
|
|
28868
28913
|
* @returns boolean Success
|
|
28869
28914
|
* @throws ApiError
|
|
28870
28915
|
*/
|
|
28871
|
-
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28916
|
+
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28872
28917
|
/**
|
|
28873
28918
|
* The tenants subdomain.
|
|
28874
28919
|
*/
|
|
@@ -28901,6 +28946,10 @@ declare class PublicOrderItemsService {
|
|
|
28901
28946
|
* Gets or sets the queryable order statuses.
|
|
28902
28947
|
*/
|
|
28903
28948
|
statuses?: Array<OrderItemStatus>;
|
|
28949
|
+
/**
|
|
28950
|
+
* Gets or sets the queryable parent order item id id.
|
|
28951
|
+
*/
|
|
28952
|
+
parentOrderItemId?: string;
|
|
28904
28953
|
/**
|
|
28905
28954
|
* Gets or sets the page number for paged queries.
|
|
28906
28955
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -10685,6 +10685,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10685
10685
|
userId,
|
|
10686
10686
|
newBooking,
|
|
10687
10687
|
cancellation,
|
|
10688
|
+
reschedule,
|
|
10688
10689
|
waitlistActivity,
|
|
10689
10690
|
waitlistOpportunity,
|
|
10690
10691
|
capacityReached,
|
|
@@ -10715,6 +10716,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10715
10716
|
UserId: userId,
|
|
10716
10717
|
NewBooking: newBooking,
|
|
10717
10718
|
Cancellation: cancellation,
|
|
10719
|
+
Reschedule: reschedule,
|
|
10718
10720
|
WaitlistActivity: waitlistActivity,
|
|
10719
10721
|
WaitlistOpportunity: waitlistOpportunity,
|
|
10720
10722
|
CapacityReached: capacityReached,
|
|
@@ -10817,6 +10819,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10817
10819
|
userId,
|
|
10818
10820
|
newBooking,
|
|
10819
10821
|
cancellation,
|
|
10822
|
+
reschedule,
|
|
10820
10823
|
waitlistActivity,
|
|
10821
10824
|
waitlistOpportunity,
|
|
10822
10825
|
capacityReached,
|
|
@@ -10847,6 +10850,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10847
10850
|
UserId: userId,
|
|
10848
10851
|
NewBooking: newBooking,
|
|
10849
10852
|
Cancellation: cancellation,
|
|
10853
|
+
Reschedule: reschedule,
|
|
10850
10854
|
WaitlistActivity: waitlistActivity,
|
|
10851
10855
|
WaitlistOpportunity: waitlistOpportunity,
|
|
10852
10856
|
CapacityReached: capacityReached,
|
|
@@ -10886,6 +10890,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10886
10890
|
userId,
|
|
10887
10891
|
newBooking,
|
|
10888
10892
|
cancellation,
|
|
10893
|
+
reschedule,
|
|
10889
10894
|
waitlistActivity,
|
|
10890
10895
|
waitlistOpportunity,
|
|
10891
10896
|
capacityReached,
|
|
@@ -10916,6 +10921,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10916
10921
|
UserId: userId,
|
|
10917
10922
|
NewBooking: newBooking,
|
|
10918
10923
|
Cancellation: cancellation,
|
|
10924
|
+
Reschedule: reschedule,
|
|
10919
10925
|
WaitlistActivity: waitlistActivity,
|
|
10920
10926
|
WaitlistOpportunity: waitlistOpportunity,
|
|
10921
10927
|
CapacityReached: capacityReached,
|
|
@@ -10955,6 +10961,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10955
10961
|
userId,
|
|
10956
10962
|
newBooking,
|
|
10957
10963
|
cancellation,
|
|
10964
|
+
reschedule,
|
|
10958
10965
|
waitlistActivity,
|
|
10959
10966
|
waitlistOpportunity,
|
|
10960
10967
|
capacityReached,
|
|
@@ -10985,6 +10992,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10985
10992
|
UserId: userId,
|
|
10986
10993
|
NewBooking: newBooking,
|
|
10987
10994
|
Cancellation: cancellation,
|
|
10995
|
+
Reschedule: reschedule,
|
|
10988
10996
|
WaitlistActivity: waitlistActivity,
|
|
10989
10997
|
WaitlistOpportunity: waitlistOpportunity,
|
|
10990
10998
|
CapacityReached: capacityReached,
|
|
@@ -13231,6 +13239,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13231
13239
|
courseId,
|
|
13232
13240
|
status,
|
|
13233
13241
|
statuses,
|
|
13242
|
+
parentOrderItemId,
|
|
13234
13243
|
pageNumber,
|
|
13235
13244
|
take,
|
|
13236
13245
|
skip,
|
|
@@ -13254,6 +13263,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13254
13263
|
CourseId: courseId,
|
|
13255
13264
|
Status: status,
|
|
13256
13265
|
Statuses: statuses,
|
|
13266
|
+
ParentOrderItemId: parentOrderItemId,
|
|
13257
13267
|
PageNumber: pageNumber,
|
|
13258
13268
|
Take: take,
|
|
13259
13269
|
Skip: skip,
|
|
@@ -13349,6 +13359,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13349
13359
|
courseId,
|
|
13350
13360
|
status,
|
|
13351
13361
|
statuses,
|
|
13362
|
+
parentOrderItemId,
|
|
13352
13363
|
pageNumber,
|
|
13353
13364
|
take,
|
|
13354
13365
|
skip,
|
|
@@ -13372,6 +13383,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13372
13383
|
CourseId: courseId,
|
|
13373
13384
|
Status: status,
|
|
13374
13385
|
Statuses: statuses,
|
|
13386
|
+
ParentOrderItemId: parentOrderItemId,
|
|
13375
13387
|
PageNumber: pageNumber,
|
|
13376
13388
|
Take: take,
|
|
13377
13389
|
Skip: skip,
|
|
@@ -13404,6 +13416,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13404
13416
|
courseId,
|
|
13405
13417
|
status,
|
|
13406
13418
|
statuses,
|
|
13419
|
+
parentOrderItemId,
|
|
13407
13420
|
pageNumber,
|
|
13408
13421
|
take,
|
|
13409
13422
|
skip,
|
|
@@ -13427,6 +13440,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13427
13440
|
CourseId: courseId,
|
|
13428
13441
|
Status: status,
|
|
13429
13442
|
Statuses: statuses,
|
|
13443
|
+
ParentOrderItemId: parentOrderItemId,
|
|
13430
13444
|
PageNumber: pageNumber,
|
|
13431
13445
|
Take: take,
|
|
13432
13446
|
Skip: skip,
|
|
@@ -13459,6 +13473,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13459
13473
|
courseId,
|
|
13460
13474
|
status,
|
|
13461
13475
|
statuses,
|
|
13476
|
+
parentOrderItemId,
|
|
13462
13477
|
pageNumber,
|
|
13463
13478
|
take,
|
|
13464
13479
|
skip,
|
|
@@ -13482,6 +13497,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13482
13497
|
CourseId: courseId,
|
|
13483
13498
|
Status: status,
|
|
13484
13499
|
Statuses: statuses,
|
|
13500
|
+
ParentOrderItemId: parentOrderItemId,
|
|
13485
13501
|
PageNumber: pageNumber,
|
|
13486
13502
|
Take: take,
|
|
13487
13503
|
Skip: skip,
|
|
@@ -19740,6 +19756,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19740
19756
|
courseId,
|
|
19741
19757
|
status,
|
|
19742
19758
|
statuses,
|
|
19759
|
+
parentOrderItemId,
|
|
19743
19760
|
pageNumber,
|
|
19744
19761
|
take,
|
|
19745
19762
|
skip,
|
|
@@ -19766,6 +19783,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19766
19783
|
CourseId: courseId,
|
|
19767
19784
|
Status: status,
|
|
19768
19785
|
Statuses: statuses,
|
|
19786
|
+
ParentOrderItemId: parentOrderItemId,
|
|
19769
19787
|
PageNumber: pageNumber,
|
|
19770
19788
|
Take: take,
|
|
19771
19789
|
Skip: skip,
|
|
@@ -19849,6 +19867,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19849
19867
|
courseId,
|
|
19850
19868
|
status,
|
|
19851
19869
|
statuses,
|
|
19870
|
+
parentOrderItemId,
|
|
19852
19871
|
pageNumber,
|
|
19853
19872
|
take,
|
|
19854
19873
|
skip,
|
|
@@ -19875,6 +19894,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19875
19894
|
CourseId: courseId,
|
|
19876
19895
|
Status: status,
|
|
19877
19896
|
Statuses: statuses,
|
|
19897
|
+
ParentOrderItemId: parentOrderItemId,
|
|
19878
19898
|
PageNumber: pageNumber,
|
|
19879
19899
|
Take: take,
|
|
19880
19900
|
Skip: skip,
|
|
@@ -39997,6 +40017,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
39997
40017
|
})(InviteStatus || {});var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
39998
40018
|
NotificationType2["NEW_BOOKING"] = "NewBooking";
|
|
39999
40019
|
NotificationType2["CANCELLATION"] = "Cancellation";
|
|
40020
|
+
NotificationType2["RESCHEDULE"] = "Reschedule";
|
|
40000
40021
|
NotificationType2["WAITLIST_ACTIVITY"] = "WaitlistActivity";
|
|
40001
40022
|
NotificationType2["WAITLIST_OPPORTUNITY"] = "WaitlistOpportunity";
|
|
40002
40023
|
NotificationType2["CAPACITY_REACHED"] = "CapacityReached";
|
package/package.json
CHANGED
|
@@ -31074,6 +31074,11 @@ paths:
|
|
|
31074
31074
|
description: Gets or sets the queryable cancellation flag.
|
|
31075
31075
|
schema:
|
|
31076
31076
|
type: boolean
|
|
31077
|
+
- name: Reschedule
|
|
31078
|
+
in: query
|
|
31079
|
+
description: Gets or sets the queryable reschedule flag.
|
|
31080
|
+
schema:
|
|
31081
|
+
type: boolean
|
|
31077
31082
|
- name: WaitlistActivity
|
|
31078
31083
|
in: query
|
|
31079
31084
|
description: Gets or sets the queryable waitlist activity flag.
|
|
@@ -31444,6 +31449,11 @@ paths:
|
|
|
31444
31449
|
description: Gets or sets the queryable cancellation flag.
|
|
31445
31450
|
schema:
|
|
31446
31451
|
type: boolean
|
|
31452
|
+
- name: Reschedule
|
|
31453
|
+
in: query
|
|
31454
|
+
description: Gets or sets the queryable reschedule flag.
|
|
31455
|
+
schema:
|
|
31456
|
+
type: boolean
|
|
31447
31457
|
- name: WaitlistActivity
|
|
31448
31458
|
in: query
|
|
31449
31459
|
description: Gets or sets the queryable waitlist activity flag.
|
|
@@ -31636,6 +31646,11 @@ paths:
|
|
|
31636
31646
|
description: Gets or sets the queryable cancellation flag.
|
|
31637
31647
|
schema:
|
|
31638
31648
|
type: boolean
|
|
31649
|
+
- name: Reschedule
|
|
31650
|
+
in: query
|
|
31651
|
+
description: Gets or sets the queryable reschedule flag.
|
|
31652
|
+
schema:
|
|
31653
|
+
type: boolean
|
|
31639
31654
|
- name: WaitlistActivity
|
|
31640
31655
|
in: query
|
|
31641
31656
|
description: Gets or sets the queryable waitlist activity flag.
|
|
@@ -31834,6 +31849,11 @@ paths:
|
|
|
31834
31849
|
description: Gets or sets the queryable cancellation flag.
|
|
31835
31850
|
schema:
|
|
31836
31851
|
type: boolean
|
|
31852
|
+
- name: Reschedule
|
|
31853
|
+
in: query
|
|
31854
|
+
description: Gets or sets the queryable reschedule flag.
|
|
31855
|
+
schema:
|
|
31856
|
+
type: boolean
|
|
31837
31857
|
- name: WaitlistActivity
|
|
31838
31858
|
in: query
|
|
31839
31859
|
description: Gets or sets the queryable waitlist activity flag.
|
|
@@ -38768,6 +38788,12 @@ paths:
|
|
|
38768
38788
|
type: array
|
|
38769
38789
|
items:
|
|
38770
38790
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
38791
|
+
- name: ParentOrderItemId
|
|
38792
|
+
in: query
|
|
38793
|
+
description: Gets or sets the queryable parent order item id id.
|
|
38794
|
+
schema:
|
|
38795
|
+
type: string
|
|
38796
|
+
format: uuid
|
|
38771
38797
|
- name: PageNumber
|
|
38772
38798
|
in: query
|
|
38773
38799
|
description: Gets or sets the page number for paged queries.
|
|
@@ -39111,6 +39137,12 @@ paths:
|
|
|
39111
39137
|
type: array
|
|
39112
39138
|
items:
|
|
39113
39139
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
39140
|
+
- name: ParentOrderItemId
|
|
39141
|
+
in: query
|
|
39142
|
+
description: Gets or sets the queryable parent order item id id.
|
|
39143
|
+
schema:
|
|
39144
|
+
type: string
|
|
39145
|
+
format: uuid
|
|
39114
39146
|
- name: PageNumber
|
|
39115
39147
|
in: query
|
|
39116
39148
|
description: Gets or sets the page number for paged queries.
|
|
@@ -39276,6 +39308,12 @@ paths:
|
|
|
39276
39308
|
type: array
|
|
39277
39309
|
items:
|
|
39278
39310
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
39311
|
+
- name: ParentOrderItemId
|
|
39312
|
+
in: query
|
|
39313
|
+
description: Gets or sets the queryable parent order item id id.
|
|
39314
|
+
schema:
|
|
39315
|
+
type: string
|
|
39316
|
+
format: uuid
|
|
39279
39317
|
- name: PageNumber
|
|
39280
39318
|
in: query
|
|
39281
39319
|
description: Gets or sets the page number for paged queries.
|
|
@@ -39447,6 +39485,12 @@ paths:
|
|
|
39447
39485
|
type: array
|
|
39448
39486
|
items:
|
|
39449
39487
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
39488
|
+
- name: ParentOrderItemId
|
|
39489
|
+
in: query
|
|
39490
|
+
description: Gets or sets the queryable parent order item id id.
|
|
39491
|
+
schema:
|
|
39492
|
+
type: string
|
|
39493
|
+
format: uuid
|
|
39450
39494
|
- name: PageNumber
|
|
39451
39495
|
in: query
|
|
39452
39496
|
description: Gets or sets the page number for paged queries.
|
|
@@ -57814,6 +57858,12 @@ paths:
|
|
|
57814
57858
|
type: array
|
|
57815
57859
|
items:
|
|
57816
57860
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
57861
|
+
- name: ParentOrderItemId
|
|
57862
|
+
in: query
|
|
57863
|
+
description: Gets or sets the queryable parent order item id id.
|
|
57864
|
+
schema:
|
|
57865
|
+
type: string
|
|
57866
|
+
format: uuid
|
|
57817
57867
|
- name: PageNumber
|
|
57818
57868
|
in: query
|
|
57819
57869
|
description: Gets or sets the page number for paged queries.
|
|
@@ -58108,6 +58158,12 @@ paths:
|
|
|
58108
58158
|
type: array
|
|
58109
58159
|
items:
|
|
58110
58160
|
$ref: '#/components/schemas/OrderItemStatus'
|
|
58161
|
+
- name: ParentOrderItemId
|
|
58162
|
+
in: query
|
|
58163
|
+
description: Gets or sets the queryable parent order item id id.
|
|
58164
|
+
schema:
|
|
58165
|
+
type: string
|
|
58166
|
+
format: uuid
|
|
58111
58167
|
- name: PageNumber
|
|
58112
58168
|
in: query
|
|
58113
58169
|
description: Gets or sets the page number for paged queries.
|
|
@@ -121376,6 +121432,10 @@ components:
|
|
|
121376
121432
|
type: boolean
|
|
121377
121433
|
description: Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
121378
121434
|
default: false
|
|
121435
|
+
reschedule:
|
|
121436
|
+
type: boolean
|
|
121437
|
+
description: Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
121438
|
+
default: false
|
|
121379
121439
|
waitlistActivity:
|
|
121380
121440
|
type: boolean
|
|
121381
121441
|
description: Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
@@ -121519,6 +121579,7 @@ components:
|
|
|
121519
121579
|
enum:
|
|
121520
121580
|
- NewBooking
|
|
121521
121581
|
- Cancellation
|
|
121582
|
+
- Reschedule
|
|
121522
121583
|
- WaitlistActivity
|
|
121523
121584
|
- WaitlistOpportunity
|
|
121524
121585
|
- CapacityReached
|
|
@@ -122549,6 +122610,11 @@ components:
|
|
|
122549
122610
|
description: Gets or sets the post survey completed date.
|
|
122550
122611
|
format: date-time
|
|
122551
122612
|
nullable: true
|
|
122613
|
+
parentOrderItemId:
|
|
122614
|
+
type: string
|
|
122615
|
+
description: Gets or sets the parent order item id.
|
|
122616
|
+
format: uuid
|
|
122617
|
+
nullable: true
|
|
122552
122618
|
order:
|
|
122553
122619
|
$ref: '#/components/schemas/Order'
|
|
122554
122620
|
slot:
|
|
@@ -43,6 +43,10 @@ export type NotificationSetting = {
|
|
|
43
43
|
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
44
44
|
*/
|
|
45
45
|
cancellation?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
48
|
+
*/
|
|
49
|
+
reschedule?: boolean;
|
|
46
50
|
/**
|
|
47
51
|
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
48
52
|
*/
|
package/src/models/OrderItem.ts
CHANGED
|
@@ -99,6 +99,10 @@ export type OrderItem = {
|
|
|
99
99
|
* Gets or sets the post survey completed date.
|
|
100
100
|
*/
|
|
101
101
|
postCompletionSurveyCompletedDate?: string | null;
|
|
102
|
+
/**
|
|
103
|
+
* Gets or sets the parent order item id.
|
|
104
|
+
*/
|
|
105
|
+
parentOrderItemId?: string | null;
|
|
102
106
|
order?: Order;
|
|
103
107
|
slot?: Slot;
|
|
104
108
|
scheduledSession?: ScheduledSession;
|
|
@@ -153,6 +153,7 @@ export class NotificationSettingsService {
|
|
|
153
153
|
userId,
|
|
154
154
|
newBooking,
|
|
155
155
|
cancellation,
|
|
156
|
+
reschedule,
|
|
156
157
|
waitlistActivity,
|
|
157
158
|
waitlistOpportunity,
|
|
158
159
|
capacityReached,
|
|
@@ -188,6 +189,10 @@ export class NotificationSettingsService {
|
|
|
188
189
|
* Gets or sets the queryable cancellation flag.
|
|
189
190
|
*/
|
|
190
191
|
cancellation?: boolean;
|
|
192
|
+
/**
|
|
193
|
+
* Gets or sets the queryable reschedule flag.
|
|
194
|
+
*/
|
|
195
|
+
reschedule?: boolean;
|
|
191
196
|
/**
|
|
192
197
|
* Gets or sets the queryable waitlist activity flag.
|
|
193
198
|
*/
|
|
@@ -284,6 +289,7 @@ export class NotificationSettingsService {
|
|
|
284
289
|
UserId: userId,
|
|
285
290
|
NewBooking: newBooking,
|
|
286
291
|
Cancellation: cancellation,
|
|
292
|
+
Reschedule: reschedule,
|
|
287
293
|
WaitlistActivity: waitlistActivity,
|
|
288
294
|
WaitlistOpportunity: waitlistOpportunity,
|
|
289
295
|
CapacityReached: capacityReached,
|
|
@@ -405,6 +411,7 @@ export class NotificationSettingsService {
|
|
|
405
411
|
userId,
|
|
406
412
|
newBooking,
|
|
407
413
|
cancellation,
|
|
414
|
+
reschedule,
|
|
408
415
|
waitlistActivity,
|
|
409
416
|
waitlistOpportunity,
|
|
410
417
|
capacityReached,
|
|
@@ -440,6 +447,10 @@ export class NotificationSettingsService {
|
|
|
440
447
|
* Gets or sets the queryable cancellation flag.
|
|
441
448
|
*/
|
|
442
449
|
cancellation?: boolean;
|
|
450
|
+
/**
|
|
451
|
+
* Gets or sets the queryable reschedule flag.
|
|
452
|
+
*/
|
|
453
|
+
reschedule?: boolean;
|
|
443
454
|
/**
|
|
444
455
|
* Gets or sets the queryable waitlist activity flag.
|
|
445
456
|
*/
|
|
@@ -536,6 +547,7 @@ export class NotificationSettingsService {
|
|
|
536
547
|
UserId: userId,
|
|
537
548
|
NewBooking: newBooking,
|
|
538
549
|
Cancellation: cancellation,
|
|
550
|
+
Reschedule: reschedule,
|
|
539
551
|
WaitlistActivity: waitlistActivity,
|
|
540
552
|
WaitlistOpportunity: waitlistOpportunity,
|
|
541
553
|
CapacityReached: capacityReached,
|
|
@@ -576,6 +588,7 @@ export class NotificationSettingsService {
|
|
|
576
588
|
userId,
|
|
577
589
|
newBooking,
|
|
578
590
|
cancellation,
|
|
591
|
+
reschedule,
|
|
579
592
|
waitlistActivity,
|
|
580
593
|
waitlistOpportunity,
|
|
581
594
|
capacityReached,
|
|
@@ -611,6 +624,10 @@ export class NotificationSettingsService {
|
|
|
611
624
|
* Gets or sets the queryable cancellation flag.
|
|
612
625
|
*/
|
|
613
626
|
cancellation?: boolean;
|
|
627
|
+
/**
|
|
628
|
+
* Gets or sets the queryable reschedule flag.
|
|
629
|
+
*/
|
|
630
|
+
reschedule?: boolean;
|
|
614
631
|
/**
|
|
615
632
|
* Gets or sets the queryable waitlist activity flag.
|
|
616
633
|
*/
|
|
@@ -707,6 +724,7 @@ export class NotificationSettingsService {
|
|
|
707
724
|
UserId: userId,
|
|
708
725
|
NewBooking: newBooking,
|
|
709
726
|
Cancellation: cancellation,
|
|
727
|
+
Reschedule: reschedule,
|
|
710
728
|
WaitlistActivity: waitlistActivity,
|
|
711
729
|
WaitlistOpportunity: waitlistOpportunity,
|
|
712
730
|
CapacityReached: capacityReached,
|
|
@@ -747,6 +765,7 @@ export class NotificationSettingsService {
|
|
|
747
765
|
userId,
|
|
748
766
|
newBooking,
|
|
749
767
|
cancellation,
|
|
768
|
+
reschedule,
|
|
750
769
|
waitlistActivity,
|
|
751
770
|
waitlistOpportunity,
|
|
752
771
|
capacityReached,
|
|
@@ -782,6 +801,10 @@ export class NotificationSettingsService {
|
|
|
782
801
|
* Gets or sets the queryable cancellation flag.
|
|
783
802
|
*/
|
|
784
803
|
cancellation?: boolean;
|
|
804
|
+
/**
|
|
805
|
+
* Gets or sets the queryable reschedule flag.
|
|
806
|
+
*/
|
|
807
|
+
reschedule?: boolean;
|
|
785
808
|
/**
|
|
786
809
|
* Gets or sets the queryable waitlist activity flag.
|
|
787
810
|
*/
|
|
@@ -878,6 +901,7 @@ export class NotificationSettingsService {
|
|
|
878
901
|
UserId: userId,
|
|
879
902
|
NewBooking: newBooking,
|
|
880
903
|
Cancellation: cancellation,
|
|
904
|
+
Reschedule: reschedule,
|
|
881
905
|
WaitlistActivity: waitlistActivity,
|
|
882
906
|
WaitlistOpportunity: waitlistOpportunity,
|
|
883
907
|
CapacityReached: capacityReached,
|
|
@@ -199,6 +199,7 @@ export class OrderItemsService {
|
|
|
199
199
|
courseId,
|
|
200
200
|
status,
|
|
201
201
|
statuses,
|
|
202
|
+
parentOrderItemId,
|
|
202
203
|
pageNumber,
|
|
203
204
|
take,
|
|
204
205
|
skip,
|
|
@@ -239,6 +240,10 @@ export class OrderItemsService {
|
|
|
239
240
|
* Gets or sets the queryable order statuses.
|
|
240
241
|
*/
|
|
241
242
|
statuses?: Array<OrderItemStatus>;
|
|
243
|
+
/**
|
|
244
|
+
* Gets or sets the queryable parent order item id id.
|
|
245
|
+
*/
|
|
246
|
+
parentOrderItemId?: string;
|
|
242
247
|
/**
|
|
243
248
|
* Gets or sets the page number for paged queries.
|
|
244
249
|
*/
|
|
@@ -295,6 +300,7 @@ export class OrderItemsService {
|
|
|
295
300
|
CourseId: courseId,
|
|
296
301
|
Status: status,
|
|
297
302
|
Statuses: statuses,
|
|
303
|
+
ParentOrderItemId: parentOrderItemId,
|
|
298
304
|
PageNumber: pageNumber,
|
|
299
305
|
Take: take,
|
|
300
306
|
Skip: skip,
|
|
@@ -409,6 +415,7 @@ export class OrderItemsService {
|
|
|
409
415
|
courseId,
|
|
410
416
|
status,
|
|
411
417
|
statuses,
|
|
418
|
+
parentOrderItemId,
|
|
412
419
|
pageNumber,
|
|
413
420
|
take,
|
|
414
421
|
skip,
|
|
@@ -449,6 +456,10 @@ export class OrderItemsService {
|
|
|
449
456
|
* Gets or sets the queryable order statuses.
|
|
450
457
|
*/
|
|
451
458
|
statuses?: Array<OrderItemStatus>;
|
|
459
|
+
/**
|
|
460
|
+
* Gets or sets the queryable parent order item id id.
|
|
461
|
+
*/
|
|
462
|
+
parentOrderItemId?: string;
|
|
452
463
|
/**
|
|
453
464
|
* Gets or sets the page number for paged queries.
|
|
454
465
|
*/
|
|
@@ -505,6 +516,7 @@ export class OrderItemsService {
|
|
|
505
516
|
CourseId: courseId,
|
|
506
517
|
Status: status,
|
|
507
518
|
Statuses: statuses,
|
|
519
|
+
ParentOrderItemId: parentOrderItemId,
|
|
508
520
|
PageNumber: pageNumber,
|
|
509
521
|
Take: take,
|
|
510
522
|
Skip: skip,
|
|
@@ -538,6 +550,7 @@ export class OrderItemsService {
|
|
|
538
550
|
courseId,
|
|
539
551
|
status,
|
|
540
552
|
statuses,
|
|
553
|
+
parentOrderItemId,
|
|
541
554
|
pageNumber,
|
|
542
555
|
take,
|
|
543
556
|
skip,
|
|
@@ -578,6 +591,10 @@ export class OrderItemsService {
|
|
|
578
591
|
* Gets or sets the queryable order statuses.
|
|
579
592
|
*/
|
|
580
593
|
statuses?: Array<OrderItemStatus>;
|
|
594
|
+
/**
|
|
595
|
+
* Gets or sets the queryable parent order item id id.
|
|
596
|
+
*/
|
|
597
|
+
parentOrderItemId?: string;
|
|
581
598
|
/**
|
|
582
599
|
* Gets or sets the page number for paged queries.
|
|
583
600
|
*/
|
|
@@ -634,6 +651,7 @@ export class OrderItemsService {
|
|
|
634
651
|
CourseId: courseId,
|
|
635
652
|
Status: status,
|
|
636
653
|
Statuses: statuses,
|
|
654
|
+
ParentOrderItemId: parentOrderItemId,
|
|
637
655
|
PageNumber: pageNumber,
|
|
638
656
|
Take: take,
|
|
639
657
|
Skip: skip,
|
|
@@ -667,6 +685,7 @@ export class OrderItemsService {
|
|
|
667
685
|
courseId,
|
|
668
686
|
status,
|
|
669
687
|
statuses,
|
|
688
|
+
parentOrderItemId,
|
|
670
689
|
pageNumber,
|
|
671
690
|
take,
|
|
672
691
|
skip,
|
|
@@ -707,6 +726,10 @@ export class OrderItemsService {
|
|
|
707
726
|
* Gets or sets the queryable order statuses.
|
|
708
727
|
*/
|
|
709
728
|
statuses?: Array<OrderItemStatus>;
|
|
729
|
+
/**
|
|
730
|
+
* Gets or sets the queryable parent order item id id.
|
|
731
|
+
*/
|
|
732
|
+
parentOrderItemId?: string;
|
|
710
733
|
/**
|
|
711
734
|
* Gets or sets the page number for paged queries.
|
|
712
735
|
*/
|
|
@@ -763,6 +786,7 @@ export class OrderItemsService {
|
|
|
763
786
|
CourseId: courseId,
|
|
764
787
|
Status: status,
|
|
765
788
|
Statuses: statuses,
|
|
789
|
+
ParentOrderItemId: parentOrderItemId,
|
|
766
790
|
PageNumber: pageNumber,
|
|
767
791
|
Take: take,
|
|
768
792
|
Skip: skip,
|
|
@@ -206,6 +206,7 @@ export class PublicOrderItemsService {
|
|
|
206
206
|
courseId,
|
|
207
207
|
status,
|
|
208
208
|
statuses,
|
|
209
|
+
parentOrderItemId,
|
|
209
210
|
pageNumber,
|
|
210
211
|
take,
|
|
211
212
|
skip,
|
|
@@ -250,6 +251,10 @@ export class PublicOrderItemsService {
|
|
|
250
251
|
* Gets or sets the queryable order statuses.
|
|
251
252
|
*/
|
|
252
253
|
statuses?: Array<OrderItemStatus>;
|
|
254
|
+
/**
|
|
255
|
+
* Gets or sets the queryable parent order item id id.
|
|
256
|
+
*/
|
|
257
|
+
parentOrderItemId?: string;
|
|
253
258
|
/**
|
|
254
259
|
* Gets or sets the page number for paged queries.
|
|
255
260
|
*/
|
|
@@ -309,6 +314,7 @@ export class PublicOrderItemsService {
|
|
|
309
314
|
CourseId: courseId,
|
|
310
315
|
Status: status,
|
|
311
316
|
Statuses: statuses,
|
|
317
|
+
ParentOrderItemId: parentOrderItemId,
|
|
312
318
|
PageNumber: pageNumber,
|
|
313
319
|
Take: take,
|
|
314
320
|
Skip: skip,
|
|
@@ -413,6 +419,7 @@ export class PublicOrderItemsService {
|
|
|
413
419
|
courseId,
|
|
414
420
|
status,
|
|
415
421
|
statuses,
|
|
422
|
+
parentOrderItemId,
|
|
416
423
|
pageNumber,
|
|
417
424
|
take,
|
|
418
425
|
skip,
|
|
@@ -457,6 +464,10 @@ export class PublicOrderItemsService {
|
|
|
457
464
|
* Gets or sets the queryable order statuses.
|
|
458
465
|
*/
|
|
459
466
|
statuses?: Array<OrderItemStatus>;
|
|
467
|
+
/**
|
|
468
|
+
* Gets or sets the queryable parent order item id id.
|
|
469
|
+
*/
|
|
470
|
+
parentOrderItemId?: string;
|
|
460
471
|
/**
|
|
461
472
|
* Gets or sets the page number for paged queries.
|
|
462
473
|
*/
|
|
@@ -516,6 +527,7 @@ export class PublicOrderItemsService {
|
|
|
516
527
|
CourseId: courseId,
|
|
517
528
|
Status: status,
|
|
518
529
|
Statuses: statuses,
|
|
530
|
+
ParentOrderItemId: parentOrderItemId,
|
|
519
531
|
PageNumber: pageNumber,
|
|
520
532
|
Take: take,
|
|
521
533
|
Skip: skip,
|