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.
Files changed (32) hide show
  1. package/dist/reach-sdk.d.ts +756 -419
  2. package/dist/reach-sdk.js +355 -182
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +3 -0
  5. package/src/definition/swagger.yaml +1129 -651
  6. package/src/index.ts +4 -0
  7. package/src/models/Course.ts +4 -0
  8. package/src/models/EndUserIdentity.ts +30 -0
  9. package/src/models/EndUserIdentitySecureToken.ts +2 -0
  10. package/src/models/EventTiming.ts +12 -0
  11. package/src/models/Session.ts +4 -0
  12. package/src/models/TenantWebsiteSetting.ts +3 -0
  13. package/src/models/UpcomingLayout.ts +12 -0
  14. package/src/services/BookingService.ts +36 -0
  15. package/src/services/CoursesService.ts +24 -0
  16. package/src/services/DealsService.ts +24 -0
  17. package/src/services/EndUserIdentitySecureTokenService.ts +4 -4
  18. package/src/services/LeasingService.ts +24 -0
  19. package/src/services/OrderItemsService.ts +73 -0
  20. package/src/services/OrdersService.ts +24 -0
  21. package/src/services/PublicBookingService.ts +12 -0
  22. package/src/services/PublicCalendarService.ts +57 -0
  23. package/src/services/PublicCoursesService.ts +12 -0
  24. package/src/services/PublicLeasingService.ts +12 -0
  25. package/src/services/PublicNetworksService.ts +6 -0
  26. package/src/services/PublicOrderItemsService.ts +201 -168
  27. package/src/services/PublicOrdersService.ts +239 -231
  28. package/src/services/PublicScheduledSessionsService.ts +12 -0
  29. package/src/services/PublicSessionsService.ts +18 -0
  30. package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
  31. package/src/services/ScheduledSessionsService.ts +24 -0
  32. package/src/services/SessionsService.ts +24 -0
package/src/index.ts CHANGED
@@ -101,7 +101,9 @@ export type { EmailSetting } from './models/EmailSetting';
101
101
  export type { EmailSettingPage } from './models/EmailSettingPage';
102
102
  export type { EmailSettingPatch } from './models/EmailSettingPatch';
103
103
  export type { EmailSettingPost } from './models/EmailSettingPost';
104
+ export type { EndUserIdentity } from './models/EndUserIdentity';
104
105
  export type { EndUserIdentitySecureToken } from './models/EndUserIdentitySecureToken';
106
+ export { EventTiming } from './models/EventTiming';
105
107
  export type { Facility } from './models/Facility';
106
108
  export type { FacilityIndividual } from './models/FacilityIndividual';
107
109
  export type { FacilityIndividualPage } from './models/FacilityIndividualPage';
@@ -384,6 +386,7 @@ export type { TotalRevenueReportPage } from './models/TotalRevenueReportPage';
384
386
  export type { TotalRevenueReportPatch } from './models/TotalRevenueReportPatch';
385
387
  export type { TotalRevenueReportPost } from './models/TotalRevenueReportPost';
386
388
  export type { UnsplashSearchResponse } from './models/UnsplashSearchResponse';
389
+ export { UpcomingLayout } from './models/UpcomingLayout';
387
390
  export type { UpdateEmailSettings } from './models/UpdateEmailSettings';
388
391
  export type { UpdateOffer } from './models/UpdateOffer';
389
392
  export type { User } from './models/User';
@@ -498,6 +501,7 @@ export { ProgrammesService } from './services/ProgrammesService';
498
501
  export { ProvidersService } from './services/ProvidersService';
499
502
  export { ProviderTypesService } from './services/ProviderTypesService';
500
503
  export { PublicBookingService } from './services/PublicBookingService';
504
+ export { PublicCalendarService } from './services/PublicCalendarService';
501
505
  export { PublicCoursesService } from './services/PublicCoursesService';
502
506
  export { PublicCustomersService } from './services/PublicCustomersService';
503
507
  export { PublicFacilitiesService } from './services/PublicFacilitiesService';
@@ -177,6 +177,10 @@ export type Course = {
177
177
  * Gets or sets the booking link override if checkout will occur externally.
178
178
  */
179
179
  bookingLinkOverride?: string | null;
180
+ /**
181
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
182
+ */
183
+ featured?: boolean;
180
184
  /**
181
185
  * Gets the computed image url.
182
186
  */
@@ -0,0 +1,30 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * Represents an end user identity within the Reach application.
8
+ */
9
+ export type EndUserIdentity = {
10
+ /**
11
+ * Gets or sets the activities Id.
12
+ */
13
+ id?: string;
14
+ /**
15
+ * Gets or sets the canonical email.
16
+ */
17
+ canonicalEmail?: string | null;
18
+ /**
19
+ * Gets or sets the first name.
20
+ */
21
+ firstName?: string | null;
22
+ /**
23
+ * Gets or sets the last name.
24
+ */
25
+ lastName?: string | null;
26
+ /**
27
+ * Gets or sets the date created.
28
+ */
29
+ dateCreated?: string;
30
+ };
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
 
6
+ import type { EndUserIdentity } from './EndUserIdentity';
6
7
  import type { Tenant } from './Tenant';
7
8
 
8
9
  /**
@@ -34,4 +35,5 @@ export type EndUserIdentitySecureToken = {
34
35
  */
35
36
  isActive?: boolean;
36
37
  tenant?: Tenant;
38
+ endUserIdentity?: EndUserIdentity;
37
39
  };
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * EventTiming.
8
+ */
9
+ export enum EventTiming {
10
+ UPCOMING = 'Upcoming',
11
+ PAST = 'Past',
12
+ }
@@ -170,6 +170,10 @@ export type Session = {
170
170
  * Gets or sets the booking link override if checkout will occur externally.
171
171
  */
172
172
  bookingLinkOverride?: string | null;
173
+ /**
174
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
175
+ */
176
+ featured?: boolean;
173
177
  /**
174
178
  * Gets the computed image url.
175
179
  */
@@ -3,6 +3,8 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
 
6
+ import type { UpcomingLayout } from './UpcomingLayout';
7
+
6
8
  /**
7
9
  * Represents an organisation within the Reach application.
8
10
  */
@@ -95,4 +97,5 @@ export type TenantWebsiteSetting = {
95
97
  * Gets or sets the tenants website marketing optin text.
96
98
  */
97
99
  tenantMarketingOptinText?: string | null;
100
+ upcomingLayout?: UpcomingLayout;
98
101
  };
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * UpcomingLayout.
8
+ */
9
+ export enum UpcomingLayout {
10
+ GRID = 'Grid',
11
+ CALENDAR = 'Calendar',
12
+ }
@@ -107,6 +107,7 @@ export class BookingService {
107
107
  orderStages,
108
108
  orderDateGte,
109
109
  orderDateLte,
110
+ endUserIdentityId,
110
111
  pageNumber,
111
112
  take,
112
113
  skip,
@@ -192,6 +193,10 @@ export class BookingService {
192
193
  * Gets or sets the queryable order date created is less than or equal to.
193
194
  */
194
195
  orderDateLte?: string;
196
+ /**
197
+ * Gets or sets the end user identity Id for use in a query search.
198
+ */
199
+ endUserIdentityId?: string;
195
200
  /**
196
201
  * Gets or sets the page number for paged queries.
197
202
  */
@@ -265,6 +270,7 @@ export class BookingService {
265
270
  OrderStages: orderStages,
266
271
  OrderDateGTE: orderDateGte,
267
272
  OrderDateLTE: orderDateLte,
273
+ EndUserIdentityId: endUserIdentityId,
268
274
  PageNumber: pageNumber,
269
275
  Take: take,
270
276
  Skip: skip,
@@ -312,6 +318,7 @@ export class BookingService {
312
318
  orderStages,
313
319
  orderDateGte,
314
320
  orderDateLte,
321
+ endUserIdentityId,
315
322
  pageNumber,
316
323
  take,
317
324
  skip,
@@ -397,6 +404,10 @@ export class BookingService {
397
404
  * Gets or sets the queryable order date created is less than or equal to.
398
405
  */
399
406
  orderDateLte?: string;
407
+ /**
408
+ * Gets or sets the end user identity Id for use in a query search.
409
+ */
410
+ endUserIdentityId?: string;
400
411
  /**
401
412
  * Gets or sets the page number for paged queries.
402
413
  */
@@ -470,6 +481,7 @@ export class BookingService {
470
481
  OrderStages: orderStages,
471
482
  OrderDateGTE: orderDateGte,
472
483
  OrderDateLTE: orderDateLte,
484
+ EndUserIdentityId: endUserIdentityId,
473
485
  PageNumber: pageNumber,
474
486
  Take: take,
475
487
  Skip: skip,
@@ -646,6 +658,7 @@ export class BookingService {
646
658
  orderStages,
647
659
  orderDateGte,
648
660
  orderDateLte,
661
+ endUserIdentityId,
649
662
  pageNumber,
650
663
  take,
651
664
  skip,
@@ -730,6 +743,10 @@ export class BookingService {
730
743
  * Gets or sets the queryable order date created is less than or equal to.
731
744
  */
732
745
  orderDateLte?: string;
746
+ /**
747
+ * Gets or sets the end user identity Id for use in a query search.
748
+ */
749
+ endUserIdentityId?: string;
733
750
  /**
734
751
  * Gets or sets the page number for paged queries.
735
752
  */
@@ -797,6 +814,7 @@ export class BookingService {
797
814
  OrderStages: orderStages,
798
815
  OrderDateGTE: orderDateGte,
799
816
  OrderDateLTE: orderDateLte,
817
+ EndUserIdentityId: endUserIdentityId,
800
818
  PageNumber: pageNumber,
801
819
  Take: take,
802
820
  Skip: skip,
@@ -922,6 +940,7 @@ export class BookingService {
922
940
  orderStages,
923
941
  orderDateGte,
924
942
  orderDateLte,
943
+ endUserIdentityId,
925
944
  pageNumber,
926
945
  take,
927
946
  skip,
@@ -1006,6 +1025,10 @@ export class BookingService {
1006
1025
  * Gets or sets the queryable order date created is less than or equal to.
1007
1026
  */
1008
1027
  orderDateLte?: string;
1028
+ /**
1029
+ * Gets or sets the end user identity Id for use in a query search.
1030
+ */
1031
+ endUserIdentityId?: string;
1009
1032
  /**
1010
1033
  * Gets or sets the page number for paged queries.
1011
1034
  */
@@ -1073,6 +1096,7 @@ export class BookingService {
1073
1096
  OrderStages: orderStages,
1074
1097
  OrderDateGTE: orderDateGte,
1075
1098
  OrderDateLTE: orderDateLte,
1099
+ EndUserIdentityId: endUserIdentityId,
1076
1100
  PageNumber: pageNumber,
1077
1101
  Take: take,
1078
1102
  Skip: skip,
@@ -1117,6 +1141,7 @@ export class BookingService {
1117
1141
  orderStages,
1118
1142
  orderDateGte,
1119
1143
  orderDateLte,
1144
+ endUserIdentityId,
1120
1145
  pageNumber,
1121
1146
  take,
1122
1147
  skip,
@@ -1201,6 +1226,10 @@ export class BookingService {
1201
1226
  * Gets or sets the queryable order date created is less than or equal to.
1202
1227
  */
1203
1228
  orderDateLte?: string;
1229
+ /**
1230
+ * Gets or sets the end user identity Id for use in a query search.
1231
+ */
1232
+ endUserIdentityId?: string;
1204
1233
  /**
1205
1234
  * Gets or sets the page number for paged queries.
1206
1235
  */
@@ -1268,6 +1297,7 @@ export class BookingService {
1268
1297
  OrderStages: orderStages,
1269
1298
  OrderDateGTE: orderDateGte,
1270
1299
  OrderDateLTE: orderDateLte,
1300
+ EndUserIdentityId: endUserIdentityId,
1271
1301
  PageNumber: pageNumber,
1272
1302
  Take: take,
1273
1303
  Skip: skip,
@@ -1312,6 +1342,7 @@ export class BookingService {
1312
1342
  orderStages,
1313
1343
  orderDateGte,
1314
1344
  orderDateLte,
1345
+ endUserIdentityId,
1315
1346
  pageNumber,
1316
1347
  take,
1317
1348
  skip,
@@ -1396,6 +1427,10 @@ export class BookingService {
1396
1427
  * Gets or sets the queryable order date created is less than or equal to.
1397
1428
  */
1398
1429
  orderDateLte?: string;
1430
+ /**
1431
+ * Gets or sets the end user identity Id for use in a query search.
1432
+ */
1433
+ endUserIdentityId?: string;
1399
1434
  /**
1400
1435
  * Gets or sets the page number for paged queries.
1401
1436
  */
@@ -1463,6 +1498,7 @@ export class BookingService {
1463
1498
  OrderStages: orderStages,
1464
1499
  OrderDateGTE: orderDateGte,
1465
1500
  OrderDateLTE: orderDateLte,
1501
+ EndUserIdentityId: endUserIdentityId,
1466
1502
  PageNumber: pageNumber,
1467
1503
  Take: take,
1468
1504
  Skip: skip,
@@ -503,6 +503,7 @@ export class CoursesService {
503
503
  remainingUsesGte,
504
504
  futureOnly,
505
505
  online,
506
+ featured,
506
507
  hasAvailability,
507
508
  orderFirstNameContains,
508
509
  orderLastNameContains,
@@ -604,6 +605,10 @@ export class CoursesService {
604
605
  * Gets or sets a value indicating whether return online courses.
605
606
  */
606
607
  online?: boolean;
608
+ /**
609
+ * Gets or sets a value indicating whether the course is featured on the storefront.
610
+ */
611
+ featured?: boolean;
607
612
  /**
608
613
  * Gets or sets a value indicating whether the scheduled session has availability.
609
614
  */
@@ -709,6 +714,7 @@ export class CoursesService {
709
714
  RemainingUsesGTE: remainingUsesGte,
710
715
  FutureOnly: futureOnly,
711
716
  Online: online,
717
+ Featured: featured,
712
718
  HasAvailability: hasAvailability,
713
719
  OrderFirstNameContains: orderFirstNameContains,
714
720
  OrderLastNameContains: orderLastNameContains,
@@ -845,6 +851,7 @@ export class CoursesService {
845
851
  remainingUsesGte,
846
852
  futureOnly,
847
853
  online,
854
+ featured,
848
855
  hasAvailability,
849
856
  orderFirstNameContains,
850
857
  orderLastNameContains,
@@ -946,6 +953,10 @@ export class CoursesService {
946
953
  * Gets or sets a value indicating whether return online courses.
947
954
  */
948
955
  online?: boolean;
956
+ /**
957
+ * Gets or sets a value indicating whether the course is featured on the storefront.
958
+ */
959
+ featured?: boolean;
949
960
  /**
950
961
  * Gets or sets a value indicating whether the scheduled session has availability.
951
962
  */
@@ -1051,6 +1062,7 @@ export class CoursesService {
1051
1062
  RemainingUsesGTE: remainingUsesGte,
1052
1063
  FutureOnly: futureOnly,
1053
1064
  Online: online,
1065
+ Featured: featured,
1054
1066
  HasAvailability: hasAvailability,
1055
1067
  OrderFirstNameContains: orderFirstNameContains,
1056
1068
  OrderLastNameContains: orderLastNameContains,
@@ -1106,6 +1118,7 @@ export class CoursesService {
1106
1118
  remainingUsesGte,
1107
1119
  futureOnly,
1108
1120
  online,
1121
+ featured,
1109
1122
  hasAvailability,
1110
1123
  orderFirstNameContains,
1111
1124
  orderLastNameContains,
@@ -1207,6 +1220,10 @@ export class CoursesService {
1207
1220
  * Gets or sets a value indicating whether return online courses.
1208
1221
  */
1209
1222
  online?: boolean;
1223
+ /**
1224
+ * Gets or sets a value indicating whether the course is featured on the storefront.
1225
+ */
1226
+ featured?: boolean;
1210
1227
  /**
1211
1228
  * Gets or sets a value indicating whether the scheduled session has availability.
1212
1229
  */
@@ -1312,6 +1329,7 @@ export class CoursesService {
1312
1329
  RemainingUsesGTE: remainingUsesGte,
1313
1330
  FutureOnly: futureOnly,
1314
1331
  Online: online,
1332
+ Featured: featured,
1315
1333
  HasAvailability: hasAvailability,
1316
1334
  OrderFirstNameContains: orderFirstNameContains,
1317
1335
  OrderLastNameContains: orderLastNameContains,
@@ -1367,6 +1385,7 @@ export class CoursesService {
1367
1385
  remainingUsesGte,
1368
1386
  futureOnly,
1369
1387
  online,
1388
+ featured,
1370
1389
  hasAvailability,
1371
1390
  orderFirstNameContains,
1372
1391
  orderLastNameContains,
@@ -1468,6 +1487,10 @@ export class CoursesService {
1468
1487
  * Gets or sets a value indicating whether return online courses.
1469
1488
  */
1470
1489
  online?: boolean;
1490
+ /**
1491
+ * Gets or sets a value indicating whether the course is featured on the storefront.
1492
+ */
1493
+ featured?: boolean;
1471
1494
  /**
1472
1495
  * Gets or sets a value indicating whether the scheduled session has availability.
1473
1496
  */
@@ -1573,6 +1596,7 @@ export class CoursesService {
1573
1596
  RemainingUsesGTE: remainingUsesGte,
1574
1597
  FutureOnly: futureOnly,
1575
1598
  Online: online,
1599
+ Featured: featured,
1576
1600
  HasAvailability: hasAvailability,
1577
1601
  OrderFirstNameContains: orderFirstNameContains,
1578
1602
  OrderLastNameContains: orderLastNameContains,
@@ -200,6 +200,7 @@ export class DealsService {
200
200
  ids,
201
201
  target,
202
202
  type,
203
+ types,
203
204
  discountCode,
204
205
  pageNumber,
205
206
  take,
@@ -229,6 +230,10 @@ export class DealsService {
229
230
  * Gets or sets the queryable type.
230
231
  */
231
232
  type?: DealType;
233
+ /**
234
+ * Gets or sets the queryable Deal types.
235
+ */
236
+ types?: Array<DealType>;
232
237
  /**
233
238
  * Gets or sets the queryable discount code.
234
239
  */
@@ -286,6 +291,7 @@ export class DealsService {
286
291
  Ids: ids,
287
292
  Target: target,
288
293
  Type: type,
294
+ Types: types,
289
295
  DiscountCode: discountCode,
290
296
  PageNumber: pageNumber,
291
297
  Take: take,
@@ -398,6 +404,7 @@ export class DealsService {
398
404
  ids,
399
405
  target,
400
406
  type,
407
+ types,
401
408
  discountCode,
402
409
  pageNumber,
403
410
  take,
@@ -427,6 +434,10 @@ export class DealsService {
427
434
  * Gets or sets the queryable type.
428
435
  */
429
436
  type?: DealType;
437
+ /**
438
+ * Gets or sets the queryable Deal types.
439
+ */
440
+ types?: Array<DealType>;
430
441
  /**
431
442
  * Gets or sets the queryable discount code.
432
443
  */
@@ -484,6 +495,7 @@ export class DealsService {
484
495
  Ids: ids,
485
496
  Target: target,
486
497
  Type: type,
498
+ Types: types,
487
499
  DiscountCode: discountCode,
488
500
  PageNumber: pageNumber,
489
501
  Take: take,
@@ -515,6 +527,7 @@ export class DealsService {
515
527
  ids,
516
528
  target,
517
529
  type,
530
+ types,
518
531
  discountCode,
519
532
  pageNumber,
520
533
  take,
@@ -544,6 +557,10 @@ export class DealsService {
544
557
  * Gets or sets the queryable type.
545
558
  */
546
559
  type?: DealType;
560
+ /**
561
+ * Gets or sets the queryable Deal types.
562
+ */
563
+ types?: Array<DealType>;
547
564
  /**
548
565
  * Gets or sets the queryable discount code.
549
566
  */
@@ -601,6 +618,7 @@ export class DealsService {
601
618
  Ids: ids,
602
619
  Target: target,
603
620
  Type: type,
621
+ Types: types,
604
622
  DiscountCode: discountCode,
605
623
  PageNumber: pageNumber,
606
624
  Take: take,
@@ -632,6 +650,7 @@ export class DealsService {
632
650
  ids,
633
651
  target,
634
652
  type,
653
+ types,
635
654
  discountCode,
636
655
  pageNumber,
637
656
  take,
@@ -661,6 +680,10 @@ export class DealsService {
661
680
  * Gets or sets the queryable type.
662
681
  */
663
682
  type?: DealType;
683
+ /**
684
+ * Gets or sets the queryable Deal types.
685
+ */
686
+ types?: Array<DealType>;
664
687
  /**
665
688
  * Gets or sets the queryable discount code.
666
689
  */
@@ -718,6 +741,7 @@ export class DealsService {
718
741
  Ids: ids,
719
742
  Target: target,
720
743
  Type: type,
744
+ Types: types,
721
745
  DiscountCode: discountCode,
722
746
  PageNumber: pageNumber,
723
747
  Take: take,
@@ -27,7 +27,7 @@ export class EndUserIdentitySecureTokenService {
27
27
  }): CancelablePromise<EndUserIdentitySecureToken> {
28
28
  return this.httpRequest.request({
29
29
  method: 'GET',
30
- url: '/api/end-user-identity-secure-tokens/{id}',
30
+ url: '/api/public/end-user-identity-secure-tokens/{id}',
31
31
  path: {
32
32
  id: id,
33
33
  },
@@ -54,7 +54,7 @@ export class EndUserIdentitySecureTokenService {
54
54
  }): CancelablePromise<EndUserIdentitySecureToken> {
55
55
  return this.httpRequest.request({
56
56
  method: 'POST',
57
- url: '/api/end-user-identity-secure-tokens/resolve',
57
+ url: '/api/public/end-user-identity-secure-tokens/resolve',
58
58
  body: requestBody,
59
59
  mediaType: 'application/json',
60
60
  errors: {
@@ -135,7 +135,7 @@ export class EndUserIdentitySecureTokenService {
135
135
  }): CancelablePromise<Array<EndUserIdentitySecureToken>> {
136
136
  return this.httpRequest.request({
137
137
  method: 'GET',
138
- url: '/api/end-user-identity-secure-tokens',
138
+ url: '/api/public/end-user-identity-secure-tokens',
139
139
  query: {
140
140
  Token: token,
141
141
  PageNumber: pageNumber,
@@ -166,7 +166,7 @@ export class EndUserIdentitySecureTokenService {
166
166
  public backfillTokens(): CancelablePromise<any> {
167
167
  return this.httpRequest.request({
168
168
  method: 'GET',
169
- url: '/api/end-user-identity-secure-tokens/back-fill',
169
+ url: '/api/public/end-user-identity-secure-tokens/back-fill',
170
170
  errors: {
171
171
  400: `Bad Request`,
172
172
  422: `Unprocessable Content`,
@@ -237,6 +237,7 @@ export class LeasingService {
237
237
  orderStages,
238
238
  orderDateGte,
239
239
  orderDateLte,
240
+ endUserIdentityId,
240
241
  pageNumber,
241
242
  take,
242
243
  skip,
@@ -317,6 +318,10 @@ export class LeasingService {
317
318
  * Gets or sets the queryable order date created is less than or equal to.
318
319
  */
319
320
  orderDateLte?: string;
321
+ /**
322
+ * Gets or sets the end user identity Id for use in a query search.
323
+ */
324
+ endUserIdentityId?: string;
320
325
  /**
321
326
  * Gets or sets the page number for paged queries.
322
327
  */
@@ -383,6 +388,7 @@ export class LeasingService {
383
388
  OrderStages: orderStages,
384
389
  OrderDateGTE: orderDateGte,
385
390
  OrderDateLTE: orderDateLte,
391
+ EndUserIdentityId: endUserIdentityId,
386
392
  PageNumber: pageNumber,
387
393
  Take: take,
388
394
  Skip: skip,
@@ -507,6 +513,7 @@ export class LeasingService {
507
513
  orderStages,
508
514
  orderDateGte,
509
515
  orderDateLte,
516
+ endUserIdentityId,
510
517
  pageNumber,
511
518
  take,
512
519
  skip,
@@ -587,6 +594,10 @@ export class LeasingService {
587
594
  * Gets or sets the queryable order date created is less than or equal to.
588
595
  */
589
596
  orderDateLte?: string;
597
+ /**
598
+ * Gets or sets the end user identity Id for use in a query search.
599
+ */
600
+ endUserIdentityId?: string;
590
601
  /**
591
602
  * Gets or sets the page number for paged queries.
592
603
  */
@@ -653,6 +664,7 @@ export class LeasingService {
653
664
  OrderStages: orderStages,
654
665
  OrderDateGTE: orderDateGte,
655
666
  OrderDateLTE: orderDateLte,
667
+ EndUserIdentityId: endUserIdentityId,
656
668
  PageNumber: pageNumber,
657
669
  Take: take,
658
670
  Skip: skip,
@@ -696,6 +708,7 @@ export class LeasingService {
696
708
  orderStages,
697
709
  orderDateGte,
698
710
  orderDateLte,
711
+ endUserIdentityId,
699
712
  pageNumber,
700
713
  take,
701
714
  skip,
@@ -776,6 +789,10 @@ export class LeasingService {
776
789
  * Gets or sets the queryable order date created is less than or equal to.
777
790
  */
778
791
  orderDateLte?: string;
792
+ /**
793
+ * Gets or sets the end user identity Id for use in a query search.
794
+ */
795
+ endUserIdentityId?: string;
779
796
  /**
780
797
  * Gets or sets the page number for paged queries.
781
798
  */
@@ -842,6 +859,7 @@ export class LeasingService {
842
859
  OrderStages: orderStages,
843
860
  OrderDateGTE: orderDateGte,
844
861
  OrderDateLTE: orderDateLte,
862
+ EndUserIdentityId: endUserIdentityId,
845
863
  PageNumber: pageNumber,
846
864
  Take: take,
847
865
  Skip: skip,
@@ -885,6 +903,7 @@ export class LeasingService {
885
903
  orderStages,
886
904
  orderDateGte,
887
905
  orderDateLte,
906
+ endUserIdentityId,
888
907
  pageNumber,
889
908
  take,
890
909
  skip,
@@ -965,6 +984,10 @@ export class LeasingService {
965
984
  * Gets or sets the queryable order date created is less than or equal to.
966
985
  */
967
986
  orderDateLte?: string;
987
+ /**
988
+ * Gets or sets the end user identity Id for use in a query search.
989
+ */
990
+ endUserIdentityId?: string;
968
991
  /**
969
992
  * Gets or sets the page number for paged queries.
970
993
  */
@@ -1031,6 +1054,7 @@ export class LeasingService {
1031
1054
  OrderStages: orderStages,
1032
1055
  OrderDateGTE: orderDateGte,
1033
1056
  OrderDateLTE: orderDateLte,
1057
+ EndUserIdentityId: endUserIdentityId,
1034
1058
  PageNumber: pageNumber,
1035
1059
  Take: take,
1036
1060
  Skip: skip,