reach-api-sdk 1.0.190 → 1.0.192
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 +756 -419
- package/dist/reach-sdk.js +355 -182
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +1129 -651
- package/src/index.ts +4 -0
- package/src/models/Course.ts +4 -0
- package/src/models/EndUserIdentity.ts +30 -0
- package/src/models/EndUserIdentitySecureToken.ts +2 -0
- package/src/models/EventTiming.ts +12 -0
- package/src/models/Session.ts +4 -0
- package/src/models/TenantWebsiteSetting.ts +3 -0
- package/src/models/UpcomingLayout.ts +12 -0
- package/src/services/BookingService.ts +36 -0
- package/src/services/CoursesService.ts +24 -0
- package/src/services/DealsService.ts +24 -0
- package/src/services/EndUserIdentitySecureTokenService.ts +4 -4
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +73 -0
- package/src/services/OrdersService.ts +24 -0
- package/src/services/PublicBookingService.ts +12 -0
- package/src/services/PublicCalendarService.ts +57 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +201 -168
- package/src/services/PublicOrdersService.ts +239 -231
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +24 -0
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
+
import type { EventTiming } from '../models/EventTiming';
|
|
5
6
|
import type { OrderItem } from '../models/OrderItem';
|
|
6
7
|
import type { OrderItemPage } from '../models/OrderItemPage';
|
|
7
8
|
import type { OrderItemPatch } from '../models/OrderItemPatch';
|
|
@@ -16,38 +17,154 @@ export class PublicOrderItemsService {
|
|
|
16
17
|
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
17
18
|
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @returns OrderItem OK
|
|
20
|
+
* @returns OrderItemPage OK
|
|
21
21
|
* @throws ApiError
|
|
22
22
|
*/
|
|
23
|
-
public
|
|
24
|
-
orderItemId,
|
|
25
|
-
scheduledSessionId,
|
|
23
|
+
public getPage({
|
|
26
24
|
xTenantSubdomain,
|
|
25
|
+
ids,
|
|
26
|
+
orderId,
|
|
27
|
+
scheduledSessionId,
|
|
28
|
+
slotId,
|
|
29
|
+
courseId,
|
|
30
|
+
status,
|
|
31
|
+
statuses,
|
|
32
|
+
parentOrderItemId,
|
|
33
|
+
orderByOpportunityStartdate,
|
|
34
|
+
eventTiming,
|
|
35
|
+
endUserIdentityId,
|
|
36
|
+
pageNumber,
|
|
37
|
+
take,
|
|
38
|
+
skip,
|
|
39
|
+
limitListRequests,
|
|
40
|
+
tenantId,
|
|
41
|
+
modifiedById,
|
|
42
|
+
modifiedByIds,
|
|
43
|
+
dateCreatedGte,
|
|
44
|
+
dateCreatedLte,
|
|
45
|
+
isLive,
|
|
46
|
+
sortOrderDirection,
|
|
27
47
|
}: {
|
|
48
|
+
xTenantSubdomain?: string;
|
|
28
49
|
/**
|
|
29
|
-
*
|
|
50
|
+
* Gets or sets the queryable order item ids.
|
|
30
51
|
*/
|
|
31
|
-
|
|
52
|
+
ids?: Array<string>;
|
|
32
53
|
/**
|
|
33
|
-
*
|
|
54
|
+
* Gets or sets the queryable order id.
|
|
34
55
|
*/
|
|
35
|
-
|
|
56
|
+
orderId?: string;
|
|
36
57
|
/**
|
|
37
|
-
*
|
|
58
|
+
* Gets or sets the queryable scheduled session id.
|
|
38
59
|
*/
|
|
39
|
-
|
|
40
|
-
|
|
60
|
+
scheduledSessionId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Gets or sets the queryable slot id.
|
|
63
|
+
*/
|
|
64
|
+
slotId?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Gets or sets the queryable course id.
|
|
67
|
+
*/
|
|
68
|
+
courseId?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Gets or sets the queryable order item status id.
|
|
71
|
+
*/
|
|
72
|
+
status?: OrderItemStatus;
|
|
73
|
+
/**
|
|
74
|
+
* Gets or sets the queryable order statuses.
|
|
75
|
+
*/
|
|
76
|
+
statuses?: Array<OrderItemStatus>;
|
|
77
|
+
/**
|
|
78
|
+
* Gets or sets the queryable parent order item id id.
|
|
79
|
+
*/
|
|
80
|
+
parentOrderItemId?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
83
|
+
*/
|
|
84
|
+
orderByOpportunityStartdate?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Gets or sets the queryable event timing.
|
|
87
|
+
*/
|
|
88
|
+
eventTiming?: EventTiming;
|
|
89
|
+
/**
|
|
90
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
91
|
+
*/
|
|
92
|
+
endUserIdentityId?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Gets or sets the page number for paged queries.
|
|
95
|
+
*/
|
|
96
|
+
pageNumber?: number;
|
|
97
|
+
/**
|
|
98
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
99
|
+
*/
|
|
100
|
+
take?: number;
|
|
101
|
+
/**
|
|
102
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
103
|
+
*/
|
|
104
|
+
skip?: number;
|
|
105
|
+
/**
|
|
106
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
107
|
+
*/
|
|
108
|
+
limitListRequests?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Gets or sets the Tenant Id.
|
|
111
|
+
*/
|
|
112
|
+
tenantId?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Gets or sets the Modifed By Id.
|
|
115
|
+
*/
|
|
116
|
+
modifiedById?: string;
|
|
117
|
+
/**
|
|
118
|
+
* Gets or sets the Modifed By Ids.
|
|
119
|
+
*/
|
|
120
|
+
modifiedByIds?: Array<string>;
|
|
121
|
+
/**
|
|
122
|
+
* Gets or sets the Date Created greater than equal to.
|
|
123
|
+
*/
|
|
124
|
+
dateCreatedGte?: string;
|
|
125
|
+
/**
|
|
126
|
+
* Gets or sets the Date Created less than equal to.
|
|
127
|
+
*/
|
|
128
|
+
dateCreatedLte?: string;
|
|
129
|
+
/**
|
|
130
|
+
* Gets or sets the queryable only is live status.
|
|
131
|
+
*/
|
|
132
|
+
isLive?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Gets or sets the sort order direction.
|
|
135
|
+
*/
|
|
136
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
137
|
+
}): CancelablePromise<OrderItemPage> {
|
|
41
138
|
return this.httpRequest.request({
|
|
42
139
|
method: 'GET',
|
|
43
|
-
url: '/api/public/order-items
|
|
44
|
-
path: {
|
|
45
|
-
orderItemId: orderItemId,
|
|
46
|
-
scheduledSessionId: scheduledSessionId,
|
|
47
|
-
},
|
|
140
|
+
url: '/api/public/order-items',
|
|
48
141
|
headers: {
|
|
49
142
|
x_tenant_subdomain: xTenantSubdomain,
|
|
50
143
|
},
|
|
144
|
+
query: {
|
|
145
|
+
Ids: ids,
|
|
146
|
+
OrderId: orderId,
|
|
147
|
+
ScheduledSessionId: scheduledSessionId,
|
|
148
|
+
SlotId: slotId,
|
|
149
|
+
CourseId: courseId,
|
|
150
|
+
Status: status,
|
|
151
|
+
Statuses: statuses,
|
|
152
|
+
ParentOrderItemId: parentOrderItemId,
|
|
153
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
154
|
+
EventTiming: eventTiming,
|
|
155
|
+
EndUserIdentityId: endUserIdentityId,
|
|
156
|
+
PageNumber: pageNumber,
|
|
157
|
+
Take: take,
|
|
158
|
+
Skip: skip,
|
|
159
|
+
LimitListRequests: limitListRequests,
|
|
160
|
+
TenantId: tenantId,
|
|
161
|
+
ModifiedById: modifiedById,
|
|
162
|
+
ModifiedByIds: modifiedByIds,
|
|
163
|
+
DateCreatedGTE: dateCreatedGte,
|
|
164
|
+
DateCreatedLTE: dateCreatedLte,
|
|
165
|
+
IsLive: isLive,
|
|
166
|
+
SortOrderDirection: sortOrderDirection,
|
|
167
|
+
},
|
|
51
168
|
errors: {
|
|
52
169
|
400: `Bad Request`,
|
|
53
170
|
422: `Unprocessable Content`,
|
|
@@ -57,11 +174,11 @@ export class PublicOrderItemsService {
|
|
|
57
174
|
}
|
|
58
175
|
|
|
59
176
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @returns
|
|
177
|
+
* Deletes the resource.
|
|
178
|
+
* @returns any OK
|
|
62
179
|
* @throws ApiError
|
|
63
180
|
*/
|
|
64
|
-
public
|
|
181
|
+
public deleteByObject({
|
|
65
182
|
xTenantSubdomain,
|
|
66
183
|
requestBody,
|
|
67
184
|
}: {
|
|
@@ -72,11 +189,11 @@ export class PublicOrderItemsService {
|
|
|
72
189
|
/**
|
|
73
190
|
* The <typeparamref name="TObject" /> model.
|
|
74
191
|
*/
|
|
75
|
-
requestBody?:
|
|
76
|
-
}): CancelablePromise<
|
|
192
|
+
requestBody?: OrderItem;
|
|
193
|
+
}): CancelablePromise<any> {
|
|
77
194
|
return this.httpRequest.request({
|
|
78
|
-
method: '
|
|
79
|
-
url: '/api/public/order-items
|
|
195
|
+
method: 'DELETE',
|
|
196
|
+
url: '/api/public/order-items',
|
|
80
197
|
headers: {
|
|
81
198
|
x_tenant_subdomain: xTenantSubdomain,
|
|
82
199
|
},
|
|
@@ -91,31 +208,38 @@ export class PublicOrderItemsService {
|
|
|
91
208
|
}
|
|
92
209
|
|
|
93
210
|
/**
|
|
94
|
-
*
|
|
211
|
+
* Reschedules the order item to another scheduled session.
|
|
95
212
|
* @returns OrderItem OK
|
|
96
213
|
* @throws ApiError
|
|
97
214
|
*/
|
|
98
|
-
public
|
|
215
|
+
public reschedule({
|
|
216
|
+
orderItemId,
|
|
217
|
+
scheduledSessionId,
|
|
99
218
|
xTenantSubdomain,
|
|
100
|
-
requestBody,
|
|
101
219
|
}: {
|
|
102
220
|
/**
|
|
103
|
-
* The
|
|
221
|
+
* The current register the attendee is assigned to.
|
|
104
222
|
*/
|
|
105
|
-
|
|
223
|
+
orderItemId: string;
|
|
106
224
|
/**
|
|
107
|
-
* The
|
|
225
|
+
* The scheduled session the attendee needs to be moved to.
|
|
108
226
|
*/
|
|
109
|
-
|
|
227
|
+
scheduledSessionId: string;
|
|
228
|
+
/**
|
|
229
|
+
* The tenants subdomain.
|
|
230
|
+
*/
|
|
231
|
+
xTenantSubdomain?: string;
|
|
110
232
|
}): CancelablePromise<OrderItem> {
|
|
111
233
|
return this.httpRequest.request({
|
|
112
|
-
method: '
|
|
113
|
-
url: '/api/public/order-items/
|
|
234
|
+
method: 'GET',
|
|
235
|
+
url: '/api/public/order-items/{orderItemId}/reschedule-to/{scheduledSessionId}',
|
|
236
|
+
path: {
|
|
237
|
+
orderItemId: orderItemId,
|
|
238
|
+
scheduledSessionId: scheduledSessionId,
|
|
239
|
+
},
|
|
114
240
|
headers: {
|
|
115
241
|
x_tenant_subdomain: xTenantSubdomain,
|
|
116
242
|
},
|
|
117
|
-
body: requestBody,
|
|
118
|
-
mediaType: 'application/json',
|
|
119
243
|
errors: {
|
|
120
244
|
400: `Bad Request`,
|
|
121
245
|
422: `Unprocessable Content`,
|
|
@@ -125,11 +249,11 @@ export class PublicOrderItemsService {
|
|
|
125
249
|
}
|
|
126
250
|
|
|
127
251
|
/**
|
|
128
|
-
* Inserts a
|
|
252
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
129
253
|
* @returns OrderItem OK
|
|
130
254
|
* @throws ApiError
|
|
131
255
|
*/
|
|
132
|
-
public
|
|
256
|
+
public post({
|
|
133
257
|
xTenantSubdomain,
|
|
134
258
|
requestBody,
|
|
135
259
|
}: {
|
|
@@ -138,13 +262,13 @@ export class PublicOrderItemsService {
|
|
|
138
262
|
*/
|
|
139
263
|
xTenantSubdomain?: string;
|
|
140
264
|
/**
|
|
141
|
-
* The
|
|
265
|
+
* The <typeparamref name="TObject" /> model.
|
|
142
266
|
*/
|
|
143
|
-
requestBody?:
|
|
144
|
-
}): CancelablePromise<
|
|
267
|
+
requestBody?: OrderItemPost;
|
|
268
|
+
}): CancelablePromise<OrderItem> {
|
|
145
269
|
return this.httpRequest.request({
|
|
146
270
|
method: 'POST',
|
|
147
|
-
url: '/api/public/order-items/v2-temporary-route
|
|
271
|
+
url: '/api/public/order-items/v2-temporary-route',
|
|
148
272
|
headers: {
|
|
149
273
|
x_tenant_subdomain: xTenantSubdomain,
|
|
150
274
|
},
|
|
@@ -159,11 +283,11 @@ export class PublicOrderItemsService {
|
|
|
159
283
|
}
|
|
160
284
|
|
|
161
285
|
/**
|
|
162
|
-
*
|
|
163
|
-
* @returns
|
|
286
|
+
* Patches the resource.
|
|
287
|
+
* @returns OrderItem OK
|
|
164
288
|
* @throws ApiError
|
|
165
289
|
*/
|
|
166
|
-
public
|
|
290
|
+
public patch({
|
|
167
291
|
xTenantSubdomain,
|
|
168
292
|
requestBody,
|
|
169
293
|
}: {
|
|
@@ -174,11 +298,11 @@ export class PublicOrderItemsService {
|
|
|
174
298
|
/**
|
|
175
299
|
* The <typeparamref name="TObject" /> model.
|
|
176
300
|
*/
|
|
177
|
-
requestBody?:
|
|
178
|
-
}): CancelablePromise<
|
|
301
|
+
requestBody?: OrderItemPatch;
|
|
302
|
+
}): CancelablePromise<OrderItem> {
|
|
179
303
|
return this.httpRequest.request({
|
|
180
|
-
method: '
|
|
181
|
-
url: '/api/public/order-items',
|
|
304
|
+
method: 'PATCH',
|
|
305
|
+
url: '/api/public/order-items/v2-temporary-route',
|
|
182
306
|
headers: {
|
|
183
307
|
x_tenant_subdomain: xTenantSubdomain,
|
|
184
308
|
},
|
|
@@ -193,140 +317,31 @@ export class PublicOrderItemsService {
|
|
|
193
317
|
}
|
|
194
318
|
|
|
195
319
|
/**
|
|
196
|
-
*
|
|
197
|
-
* @returns
|
|
320
|
+
* Inserts a list of resources.
|
|
321
|
+
* @returns OrderItem OK
|
|
198
322
|
* @throws ApiError
|
|
199
323
|
*/
|
|
200
|
-
public
|
|
324
|
+
public postList({
|
|
201
325
|
xTenantSubdomain,
|
|
202
|
-
|
|
203
|
-
orderId,
|
|
204
|
-
scheduledSessionId,
|
|
205
|
-
slotId,
|
|
206
|
-
courseId,
|
|
207
|
-
status,
|
|
208
|
-
statuses,
|
|
209
|
-
parentOrderItemId,
|
|
210
|
-
pageNumber,
|
|
211
|
-
take,
|
|
212
|
-
skip,
|
|
213
|
-
limitListRequests,
|
|
214
|
-
tenantId,
|
|
215
|
-
modifiedById,
|
|
216
|
-
modifiedByIds,
|
|
217
|
-
dateCreatedGte,
|
|
218
|
-
dateCreatedLte,
|
|
219
|
-
isLive,
|
|
220
|
-
sortOrderDirection,
|
|
326
|
+
requestBody,
|
|
221
327
|
}: {
|
|
222
328
|
/**
|
|
223
329
|
* The tenants subdomain.
|
|
224
330
|
*/
|
|
225
331
|
xTenantSubdomain?: string;
|
|
226
332
|
/**
|
|
227
|
-
*
|
|
228
|
-
*/
|
|
229
|
-
ids?: Array<string>;
|
|
230
|
-
/**
|
|
231
|
-
* Gets or sets the queryable order id.
|
|
232
|
-
*/
|
|
233
|
-
orderId?: string;
|
|
234
|
-
/**
|
|
235
|
-
* Gets or sets the queryable scheduled session id.
|
|
236
|
-
*/
|
|
237
|
-
scheduledSessionId?: string;
|
|
238
|
-
/**
|
|
239
|
-
* Gets or sets the queryable slot id.
|
|
240
|
-
*/
|
|
241
|
-
slotId?: string;
|
|
242
|
-
/**
|
|
243
|
-
* Gets or sets the queryable course id.
|
|
244
|
-
*/
|
|
245
|
-
courseId?: string;
|
|
246
|
-
/**
|
|
247
|
-
* Gets or sets the queryable order item status id.
|
|
248
|
-
*/
|
|
249
|
-
status?: OrderItemStatus;
|
|
250
|
-
/**
|
|
251
|
-
* Gets or sets the queryable order statuses.
|
|
252
|
-
*/
|
|
253
|
-
statuses?: Array<OrderItemStatus>;
|
|
254
|
-
/**
|
|
255
|
-
* Gets or sets the queryable parent order item id id.
|
|
256
|
-
*/
|
|
257
|
-
parentOrderItemId?: string;
|
|
258
|
-
/**
|
|
259
|
-
* Gets or sets the page number for paged queries.
|
|
260
|
-
*/
|
|
261
|
-
pageNumber?: number;
|
|
262
|
-
/**
|
|
263
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
264
|
-
*/
|
|
265
|
-
take?: number;
|
|
266
|
-
/**
|
|
267
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
268
|
-
*/
|
|
269
|
-
skip?: number;
|
|
270
|
-
/**
|
|
271
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
272
|
-
*/
|
|
273
|
-
limitListRequests?: boolean;
|
|
274
|
-
/**
|
|
275
|
-
* Gets or sets the Tenant Id.
|
|
276
|
-
*/
|
|
277
|
-
tenantId?: string;
|
|
278
|
-
/**
|
|
279
|
-
* Gets or sets the Modifed By Id.
|
|
280
|
-
*/
|
|
281
|
-
modifiedById?: string;
|
|
282
|
-
/**
|
|
283
|
-
* Gets or sets the Modifed By Ids.
|
|
284
|
-
*/
|
|
285
|
-
modifiedByIds?: Array<string>;
|
|
286
|
-
/**
|
|
287
|
-
* Gets or sets the Date Created greater than equal to.
|
|
288
|
-
*/
|
|
289
|
-
dateCreatedGte?: string;
|
|
290
|
-
/**
|
|
291
|
-
* Gets or sets the Date Created less than equal to.
|
|
292
|
-
*/
|
|
293
|
-
dateCreatedLte?: string;
|
|
294
|
-
/**
|
|
295
|
-
* Gets or sets the queryable only is live status.
|
|
296
|
-
*/
|
|
297
|
-
isLive?: boolean;
|
|
298
|
-
/**
|
|
299
|
-
* Gets or sets the sort order direction.
|
|
333
|
+
* The list of <typeparamref name="TObject" />.
|
|
300
334
|
*/
|
|
301
|
-
|
|
302
|
-
}): CancelablePromise<
|
|
335
|
+
requestBody?: Array<OrderItemPost>;
|
|
336
|
+
}): CancelablePromise<Array<OrderItem>> {
|
|
303
337
|
return this.httpRequest.request({
|
|
304
|
-
method: '
|
|
305
|
-
url: '/api/public/order-items',
|
|
338
|
+
method: 'POST',
|
|
339
|
+
url: '/api/public/order-items/v2-temporary-route/list',
|
|
306
340
|
headers: {
|
|
307
341
|
x_tenant_subdomain: xTenantSubdomain,
|
|
308
342
|
},
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
OrderId: orderId,
|
|
312
|
-
ScheduledSessionId: scheduledSessionId,
|
|
313
|
-
SlotId: slotId,
|
|
314
|
-
CourseId: courseId,
|
|
315
|
-
Status: status,
|
|
316
|
-
Statuses: statuses,
|
|
317
|
-
ParentOrderItemId: parentOrderItemId,
|
|
318
|
-
PageNumber: pageNumber,
|
|
319
|
-
Take: take,
|
|
320
|
-
Skip: skip,
|
|
321
|
-
LimitListRequests: limitListRequests,
|
|
322
|
-
TenantId: tenantId,
|
|
323
|
-
ModifiedById: modifiedById,
|
|
324
|
-
ModifiedByIds: modifiedByIds,
|
|
325
|
-
DateCreatedGTE: dateCreatedGte,
|
|
326
|
-
DateCreatedLTE: dateCreatedLte,
|
|
327
|
-
IsLive: isLive,
|
|
328
|
-
SortOrderDirection: sortOrderDirection,
|
|
329
|
-
},
|
|
343
|
+
body: requestBody,
|
|
344
|
+
mediaType: 'application/json',
|
|
330
345
|
errors: {
|
|
331
346
|
400: `Bad Request`,
|
|
332
347
|
422: `Unprocessable Content`,
|
|
@@ -420,6 +435,9 @@ export class PublicOrderItemsService {
|
|
|
420
435
|
status,
|
|
421
436
|
statuses,
|
|
422
437
|
parentOrderItemId,
|
|
438
|
+
orderByOpportunityStartdate,
|
|
439
|
+
eventTiming,
|
|
440
|
+
endUserIdentityId,
|
|
423
441
|
pageNumber,
|
|
424
442
|
take,
|
|
425
443
|
skip,
|
|
@@ -468,6 +486,18 @@ export class PublicOrderItemsService {
|
|
|
468
486
|
* Gets or sets the queryable parent order item id id.
|
|
469
487
|
*/
|
|
470
488
|
parentOrderItemId?: string;
|
|
489
|
+
/**
|
|
490
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
491
|
+
*/
|
|
492
|
+
orderByOpportunityStartdate?: boolean;
|
|
493
|
+
/**
|
|
494
|
+
* Gets or sets the queryable event timing.
|
|
495
|
+
*/
|
|
496
|
+
eventTiming?: EventTiming;
|
|
497
|
+
/**
|
|
498
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
499
|
+
*/
|
|
500
|
+
endUserIdentityId?: string;
|
|
471
501
|
/**
|
|
472
502
|
* Gets or sets the page number for paged queries.
|
|
473
503
|
*/
|
|
@@ -528,6 +558,9 @@ export class PublicOrderItemsService {
|
|
|
528
558
|
Status: status,
|
|
529
559
|
Statuses: statuses,
|
|
530
560
|
ParentOrderItemId: parentOrderItemId,
|
|
561
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
562
|
+
EventTiming: eventTiming,
|
|
563
|
+
EndUserIdentityId: endUserIdentityId,
|
|
531
564
|
PageNumber: pageNumber,
|
|
532
565
|
Take: take,
|
|
533
566
|
Skip: skip,
|