reach-api-sdk 1.0.228 → 1.0.230

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.js CHANGED
@@ -1598,6 +1598,7 @@ const request = (config, options, axiosClient = axios) => {
1598
1598
  customerId,
1599
1599
  firstName,
1600
1600
  lastName,
1601
+ externalReference,
1601
1602
  pageNumber,
1602
1603
  take,
1603
1604
  skip,
@@ -1617,6 +1618,7 @@ const request = (config, options, axiosClient = axios) => {
1617
1618
  CustomerId: customerId,
1618
1619
  FirstName: firstName,
1619
1620
  LastName: lastName,
1621
+ ExternalReference: externalReference,
1620
1622
  PageNumber: pageNumber,
1621
1623
  Take: take,
1622
1624
  Skip: skip,
@@ -1708,6 +1710,7 @@ const request = (config, options, axiosClient = axios) => {
1708
1710
  customerId,
1709
1711
  firstName,
1710
1712
  lastName,
1713
+ externalReference,
1711
1714
  pageNumber,
1712
1715
  take,
1713
1716
  skip,
@@ -1727,6 +1730,7 @@ const request = (config, options, axiosClient = axios) => {
1727
1730
  CustomerId: customerId,
1728
1731
  FirstName: firstName,
1729
1732
  LastName: lastName,
1733
+ ExternalReference: externalReference,
1730
1734
  PageNumber: pageNumber,
1731
1735
  Take: take,
1732
1736
  Skip: skip,
@@ -1755,6 +1759,7 @@ const request = (config, options, axiosClient = axios) => {
1755
1759
  customerId,
1756
1760
  firstName,
1757
1761
  lastName,
1762
+ externalReference,
1758
1763
  pageNumber,
1759
1764
  take,
1760
1765
  skip,
@@ -1774,6 +1779,7 @@ const request = (config, options, axiosClient = axios) => {
1774
1779
  CustomerId: customerId,
1775
1780
  FirstName: firstName,
1776
1781
  LastName: lastName,
1782
+ ExternalReference: externalReference,
1777
1783
  PageNumber: pageNumber,
1778
1784
  Take: take,
1779
1785
  Skip: skip,
@@ -1802,6 +1808,7 @@ const request = (config, options, axiosClient = axios) => {
1802
1808
  customerId,
1803
1809
  firstName,
1804
1810
  lastName,
1811
+ externalReference,
1805
1812
  pageNumber,
1806
1813
  take,
1807
1814
  skip,
@@ -1821,6 +1828,7 @@ const request = (config, options, axiosClient = axios) => {
1821
1828
  CustomerId: customerId,
1822
1829
  FirstName: firstName,
1823
1830
  LastName: lastName,
1831
+ ExternalReference: externalReference,
1824
1832
  PageNumber: pageNumber,
1825
1833
  Take: take,
1826
1834
  Skip: skip,
@@ -1849,6 +1857,7 @@ const request = (config, options, axiosClient = axios) => {
1849
1857
  customerId,
1850
1858
  firstName,
1851
1859
  lastName,
1860
+ externalReference,
1852
1861
  pageNumber,
1853
1862
  take,
1854
1863
  skip,
@@ -1868,6 +1877,7 @@ const request = (config, options, axiosClient = axios) => {
1868
1877
  CustomerId: customerId,
1869
1878
  FirstName: firstName,
1870
1879
  LastName: lastName,
1880
+ ExternalReference: externalReference,
1871
1881
  PageNumber: pageNumber,
1872
1882
  Take: take,
1873
1883
  Skip: skip,
@@ -6244,6 +6254,454 @@ const request = (config, options, axiosClient = axios) => {
6244
6254
  }
6245
6255
  });
6246
6256
  }
6257
+ }class CustomerAccountInviteSchedulesService {
6258
+ constructor(httpRequest) {
6259
+ this.httpRequest = httpRequest;
6260
+ }
6261
+ /**
6262
+ * Sends due customer account invite emails.
6263
+ * @returns any OK
6264
+ * @throws ApiError
6265
+ */
6266
+ sendDueInvites() {
6267
+ return this.httpRequest.request({
6268
+ method: "GET",
6269
+ url: "/api/customer-account-invite-schedules/send-batch",
6270
+ errors: {
6271
+ 400: `Bad Request`,
6272
+ 422: `Unprocessable Content`,
6273
+ 500: `Internal Server Error`
6274
+ }
6275
+ });
6276
+ }
6277
+ /**
6278
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
6279
+ * @returns CustomerAccountInviteSchedule OK
6280
+ * @throws ApiError
6281
+ */
6282
+ post({
6283
+ requestBody
6284
+ }) {
6285
+ return this.httpRequest.request({
6286
+ method: "POST",
6287
+ url: "/api/customer-account-invite-schedules/v2-temporary-route",
6288
+ body: requestBody,
6289
+ mediaType: "application/json",
6290
+ errors: {
6291
+ 400: `Bad Request`,
6292
+ 422: `Unprocessable Content`,
6293
+ 500: `Internal Server Error`
6294
+ }
6295
+ });
6296
+ }
6297
+ /**
6298
+ * Patches the resource.
6299
+ * @returns CustomerAccountInviteSchedule OK
6300
+ * @throws ApiError
6301
+ */
6302
+ patch({
6303
+ requestBody
6304
+ }) {
6305
+ return this.httpRequest.request({
6306
+ method: "PATCH",
6307
+ url: "/api/customer-account-invite-schedules/v2-temporary-route",
6308
+ body: requestBody,
6309
+ mediaType: "application/json",
6310
+ errors: {
6311
+ 400: `Bad Request`,
6312
+ 422: `Unprocessable Content`,
6313
+ 500: `Internal Server Error`
6314
+ }
6315
+ });
6316
+ }
6317
+ /**
6318
+ * Inserts a list of resources.
6319
+ * @returns CustomerAccountInviteSchedule OK
6320
+ * @throws ApiError
6321
+ */
6322
+ postList({
6323
+ requestBody
6324
+ }) {
6325
+ return this.httpRequest.request({
6326
+ method: "POST",
6327
+ url: "/api/customer-account-invite-schedules/v2-temporary-route/list",
6328
+ body: requestBody,
6329
+ mediaType: "application/json",
6330
+ errors: {
6331
+ 400: `Bad Request`,
6332
+ 422: `Unprocessable Content`,
6333
+ 500: `Internal Server Error`
6334
+ }
6335
+ });
6336
+ }
6337
+ /**
6338
+ * Patches the resource.
6339
+ * @returns CustomerAccountInviteSchedule OK
6340
+ * @throws ApiError
6341
+ */
6342
+ patchWithReferences({
6343
+ requestBody
6344
+ }) {
6345
+ return this.httpRequest.request({
6346
+ method: "PATCH",
6347
+ url: "/api/customer-account-invite-schedules/v2-temporary-route/with-references",
6348
+ body: requestBody,
6349
+ mediaType: "application/json",
6350
+ errors: {
6351
+ 400: `Bad Request`,
6352
+ 422: `Unprocessable Content`,
6353
+ 500: `Internal Server Error`
6354
+ }
6355
+ });
6356
+ }
6357
+ /**
6358
+ * Deletes the resource.
6359
+ * @returns any OK
6360
+ * @throws ApiError
6361
+ */
6362
+ deleteByObject({
6363
+ requestBody
6364
+ }) {
6365
+ return this.httpRequest.request({
6366
+ method: "DELETE",
6367
+ url: "/api/customer-account-invite-schedules",
6368
+ body: requestBody,
6369
+ mediaType: "application/json",
6370
+ errors: {
6371
+ 400: `Bad Request`,
6372
+ 422: `Unprocessable Content`,
6373
+ 500: `Internal Server Error`
6374
+ }
6375
+ });
6376
+ }
6377
+ /**
6378
+ * Gets a list of resources.
6379
+ * @returns CustomerAccountInviteSchedulePage OK
6380
+ * @throws ApiError
6381
+ */
6382
+ getPage({
6383
+ customerId,
6384
+ walletCreditPeriodId,
6385
+ dateScheduledGte,
6386
+ dateScheduledLte,
6387
+ sent,
6388
+ errored,
6389
+ pageNumber,
6390
+ take,
6391
+ skip,
6392
+ limitListRequests,
6393
+ tenantId,
6394
+ modifiedById,
6395
+ modifiedByIds,
6396
+ dateCreatedGte,
6397
+ dateCreatedLte,
6398
+ isLive,
6399
+ sortOrderDirection
6400
+ }) {
6401
+ return this.httpRequest.request({
6402
+ method: "GET",
6403
+ url: "/api/customer-account-invite-schedules",
6404
+ query: {
6405
+ CustomerId: customerId,
6406
+ WalletCreditPeriodId: walletCreditPeriodId,
6407
+ DateScheduledGTE: dateScheduledGte,
6408
+ DateScheduledLTE: dateScheduledLte,
6409
+ Sent: sent,
6410
+ Errored: errored,
6411
+ PageNumber: pageNumber,
6412
+ Take: take,
6413
+ Skip: skip,
6414
+ LimitListRequests: limitListRequests,
6415
+ TenantId: tenantId,
6416
+ ModifiedById: modifiedById,
6417
+ ModifiedByIds: modifiedByIds,
6418
+ DateCreatedGTE: dateCreatedGte,
6419
+ DateCreatedLTE: dateCreatedLte,
6420
+ IsLive: isLive,
6421
+ SortOrderDirection: sortOrderDirection
6422
+ },
6423
+ errors: {
6424
+ 400: `Bad Request`,
6425
+ 422: `Unprocessable Content`,
6426
+ 500: `Internal Server Error`
6427
+ }
6428
+ });
6429
+ }
6430
+ /**
6431
+ * Deletes the resource.
6432
+ * @returns any OK
6433
+ * @throws ApiError
6434
+ */
6435
+ deleteById({
6436
+ id
6437
+ }) {
6438
+ return this.httpRequest.request({
6439
+ method: "DELETE",
6440
+ url: "/api/customer-account-invite-schedules/{id}",
6441
+ path: {
6442
+ id
6443
+ },
6444
+ errors: {
6445
+ 400: `Bad Request`,
6446
+ 422: `Unprocessable Content`,
6447
+ 500: `Internal Server Error`
6448
+ }
6449
+ });
6450
+ }
6451
+ /**
6452
+ * Gets the resource by its Id.
6453
+ * @returns CustomerAccountInviteSchedule OK
6454
+ * @throws ApiError
6455
+ */
6456
+ getObject({
6457
+ id
6458
+ }) {
6459
+ return this.httpRequest.request({
6460
+ method: "GET",
6461
+ url: "/api/customer-account-invite-schedules/{id}",
6462
+ path: {
6463
+ id
6464
+ },
6465
+ errors: {
6466
+ 400: `Bad Request`,
6467
+ 422: `Unprocessable Content`,
6468
+ 500: `Internal Server Error`
6469
+ }
6470
+ });
6471
+ }
6472
+ /**
6473
+ * Returns a value indicating whether the resource is deletable.
6474
+ * @returns boolean OK
6475
+ * @throws ApiError
6476
+ */
6477
+ canDelete({
6478
+ id
6479
+ }) {
6480
+ return this.httpRequest.request({
6481
+ method: "GET",
6482
+ url: "/api/customer-account-invite-schedules/{id}/deletable",
6483
+ path: {
6484
+ id
6485
+ },
6486
+ errors: {
6487
+ 400: `Bad Request`,
6488
+ 422: `Unprocessable Content`,
6489
+ 500: `Internal Server Error`
6490
+ }
6491
+ });
6492
+ }
6493
+ /**
6494
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
6495
+ * @returns boolean OK
6496
+ * @throws ApiError
6497
+ */
6498
+ exists({
6499
+ customerId,
6500
+ walletCreditPeriodId,
6501
+ dateScheduledGte,
6502
+ dateScheduledLte,
6503
+ sent,
6504
+ errored,
6505
+ pageNumber,
6506
+ take,
6507
+ skip,
6508
+ limitListRequests,
6509
+ tenantId,
6510
+ modifiedById,
6511
+ modifiedByIds,
6512
+ dateCreatedGte,
6513
+ dateCreatedLte,
6514
+ isLive,
6515
+ sortOrderDirection
6516
+ }) {
6517
+ return this.httpRequest.request({
6518
+ method: "GET",
6519
+ url: "/api/customer-account-invite-schedules/exists",
6520
+ query: {
6521
+ CustomerId: customerId,
6522
+ WalletCreditPeriodId: walletCreditPeriodId,
6523
+ DateScheduledGTE: dateScheduledGte,
6524
+ DateScheduledLTE: dateScheduledLte,
6525
+ Sent: sent,
6526
+ Errored: errored,
6527
+ PageNumber: pageNumber,
6528
+ Take: take,
6529
+ Skip: skip,
6530
+ LimitListRequests: limitListRequests,
6531
+ TenantId: tenantId,
6532
+ ModifiedById: modifiedById,
6533
+ ModifiedByIds: modifiedByIds,
6534
+ DateCreatedGTE: dateCreatedGte,
6535
+ DateCreatedLTE: dateCreatedLte,
6536
+ IsLive: isLive,
6537
+ SortOrderDirection: sortOrderDirection
6538
+ },
6539
+ errors: {
6540
+ 400: `Bad Request`,
6541
+ 422: `Unprocessable Content`,
6542
+ 500: `Internal Server Error`
6543
+ }
6544
+ });
6545
+ }
6546
+ /**
6547
+ * Returns the number of results in the database given the provided search params.
6548
+ * @returns number OK
6549
+ * @throws ApiError
6550
+ */
6551
+ count({
6552
+ customerId,
6553
+ walletCreditPeriodId,
6554
+ dateScheduledGte,
6555
+ dateScheduledLte,
6556
+ sent,
6557
+ errored,
6558
+ pageNumber,
6559
+ take,
6560
+ skip,
6561
+ limitListRequests,
6562
+ tenantId,
6563
+ modifiedById,
6564
+ modifiedByIds,
6565
+ dateCreatedGte,
6566
+ dateCreatedLte,
6567
+ isLive,
6568
+ sortOrderDirection
6569
+ }) {
6570
+ return this.httpRequest.request({
6571
+ method: "GET",
6572
+ url: "/api/customer-account-invite-schedules/count",
6573
+ query: {
6574
+ CustomerId: customerId,
6575
+ WalletCreditPeriodId: walletCreditPeriodId,
6576
+ DateScheduledGTE: dateScheduledGte,
6577
+ DateScheduledLTE: dateScheduledLte,
6578
+ Sent: sent,
6579
+ Errored: errored,
6580
+ PageNumber: pageNumber,
6581
+ Take: take,
6582
+ Skip: skip,
6583
+ LimitListRequests: limitListRequests,
6584
+ TenantId: tenantId,
6585
+ ModifiedById: modifiedById,
6586
+ ModifiedByIds: modifiedByIds,
6587
+ DateCreatedGTE: dateCreatedGte,
6588
+ DateCreatedLTE: dateCreatedLte,
6589
+ IsLive: isLive,
6590
+ SortOrderDirection: sortOrderDirection
6591
+ },
6592
+ errors: {
6593
+ 400: `Bad Request`,
6594
+ 422: `Unprocessable Content`,
6595
+ 500: `Internal Server Error`
6596
+ }
6597
+ });
6598
+ }
6599
+ /**
6600
+ * Gets a list of resources unpaged and without references.
6601
+ * @returns CustomerAccountInviteSchedule OK
6602
+ * @throws ApiError
6603
+ */
6604
+ getListWithoutReferences({
6605
+ customerId,
6606
+ walletCreditPeriodId,
6607
+ dateScheduledGte,
6608
+ dateScheduledLte,
6609
+ sent,
6610
+ errored,
6611
+ pageNumber,
6612
+ take,
6613
+ skip,
6614
+ limitListRequests,
6615
+ tenantId,
6616
+ modifiedById,
6617
+ modifiedByIds,
6618
+ dateCreatedGte,
6619
+ dateCreatedLte,
6620
+ isLive,
6621
+ sortOrderDirection
6622
+ }) {
6623
+ return this.httpRequest.request({
6624
+ method: "GET",
6625
+ url: "/api/customer-account-invite-schedules/without-references",
6626
+ query: {
6627
+ CustomerId: customerId,
6628
+ WalletCreditPeriodId: walletCreditPeriodId,
6629
+ DateScheduledGTE: dateScheduledGte,
6630
+ DateScheduledLTE: dateScheduledLte,
6631
+ Sent: sent,
6632
+ Errored: errored,
6633
+ PageNumber: pageNumber,
6634
+ Take: take,
6635
+ Skip: skip,
6636
+ LimitListRequests: limitListRequests,
6637
+ TenantId: tenantId,
6638
+ ModifiedById: modifiedById,
6639
+ ModifiedByIds: modifiedByIds,
6640
+ DateCreatedGTE: dateCreatedGte,
6641
+ DateCreatedLTE: dateCreatedLte,
6642
+ IsLive: isLive,
6643
+ SortOrderDirection: sortOrderDirection
6644
+ },
6645
+ errors: {
6646
+ 400: `Bad Request`,
6647
+ 422: `Unprocessable Content`,
6648
+ 500: `Internal Server Error`
6649
+ }
6650
+ });
6651
+ }
6652
+ /**
6653
+ * Gets a list of resources.
6654
+ * @returns CustomerAccountInviteSchedule OK
6655
+ * @throws ApiError
6656
+ */
6657
+ getListIdName({
6658
+ customerId,
6659
+ walletCreditPeriodId,
6660
+ dateScheduledGte,
6661
+ dateScheduledLte,
6662
+ sent,
6663
+ errored,
6664
+ pageNumber,
6665
+ take,
6666
+ skip,
6667
+ limitListRequests,
6668
+ tenantId,
6669
+ modifiedById,
6670
+ modifiedByIds,
6671
+ dateCreatedGte,
6672
+ dateCreatedLte,
6673
+ isLive,
6674
+ sortOrderDirection
6675
+ }) {
6676
+ return this.httpRequest.request({
6677
+ method: "GET",
6678
+ url: "/api/customer-account-invite-schedules/id-name",
6679
+ query: {
6680
+ CustomerId: customerId,
6681
+ WalletCreditPeriodId: walletCreditPeriodId,
6682
+ DateScheduledGTE: dateScheduledGte,
6683
+ DateScheduledLTE: dateScheduledLte,
6684
+ Sent: sent,
6685
+ Errored: errored,
6686
+ PageNumber: pageNumber,
6687
+ Take: take,
6688
+ Skip: skip,
6689
+ LimitListRequests: limitListRequests,
6690
+ TenantId: tenantId,
6691
+ ModifiedById: modifiedById,
6692
+ ModifiedByIds: modifiedByIds,
6693
+ DateCreatedGTE: dateCreatedGte,
6694
+ DateCreatedLTE: dateCreatedLte,
6695
+ IsLive: isLive,
6696
+ SortOrderDirection: sortOrderDirection
6697
+ },
6698
+ errors: {
6699
+ 400: `Bad Request`,
6700
+ 422: `Unprocessable Content`,
6701
+ 500: `Internal Server Error`
6702
+ }
6703
+ });
6704
+ }
6247
6705
  }class CustomerAuthService {
6248
6706
  constructor(httpRequest) {
6249
6707
  this.httpRequest = httpRequest;
@@ -53150,6 +53608,7 @@ const request = (config, options, axiosClient = axios) => {
53150
53608
  courses;
53151
53609
  courseSessions;
53152
53610
  courseSessionSchedules;
53611
+ customerAccountInviteSchedules;
53153
53612
  customerAuth;
53154
53613
  customerPortal;
53155
53614
  customers;
@@ -53303,6 +53762,7 @@ const request = (config, options, axiosClient = axios) => {
53303
53762
  this.courses = new CoursesService(this.request);
53304
53763
  this.courseSessions = new CourseSessionsService(this.request);
53305
53764
  this.courseSessionSchedules = new CourseSessionSchedulesService(this.request);
53765
+ this.customerAccountInviteSchedules = new CustomerAccountInviteSchedulesService(this.request);
53306
53766
  this.customerAuth = new CustomerAuthService(this.request);
53307
53767
  this.customerPortal = new CustomerPortalService(this.request);
53308
53768
  this.customers = new CustomersService(this.request);
@@ -53898,4 +54358,4 @@ const request = (config, options, axiosClient = axios) => {
53898
54358
  WebsiteHomepage2["DEFAULT"] = "Default";
53899
54359
  WebsiteHomepage2["MAP"] = "Map";
53900
54360
  return WebsiteHomepage2;
53901
- })(WebsiteHomepage || {});export{AccessCredentialsService,ActivityPerformanceService,ActivityService,ActivityType,ActivityTypeCategoryService,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,CodelocksLocksService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomFieldDataType,CustomFieldValueEntityType,CustomFieldsService,CustomerAuthService,CustomerCancellationOption,CustomerPortalService,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,DotdigitalCanonicalField,DotdigitalService,DotdigitalSourceType,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FeatureAnnouncementsService,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,IntegrationCodelocksSettingsService,IntegrationDotDigitalSettingsService,IntegrationDotdigitalFieldMapService,IntegrationDotdigitalLogService,IntegrationDotdigitalLogStatus,IntegrationQueueService,IntegrationType,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSellableItemsService,PublicSessionsService,PublicSlotsService,PublicStorefrontStaffPreviewService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantFaqsService,PublicTenantsService,PublicVenueTypesService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SellableItemsService,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StorefrontStaffPreviewService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantFaqsService,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenueTypeService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService,WalletCreditPeriodStatus,WalletTrackingLevel,WalletTransactionType,WalletTransactionsService,WalletsService,WebsiteHomepage};
54361
+ })(WebsiteHomepage || {});export{AccessCredentialsService,ActivityPerformanceService,ActivityService,ActivityType,ActivityTypeCategoryService,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,CodelocksLocksService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomFieldDataType,CustomFieldValueEntityType,CustomFieldsService,CustomerAccountInviteSchedulesService,CustomerAuthService,CustomerCancellationOption,CustomerPortalService,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,DotdigitalCanonicalField,DotdigitalService,DotdigitalSourceType,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FeatureAnnouncementsService,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,IntegrationCodelocksSettingsService,IntegrationDotDigitalSettingsService,IntegrationDotdigitalFieldMapService,IntegrationDotdigitalLogService,IntegrationDotdigitalLogStatus,IntegrationQueueService,IntegrationType,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSellableItemsService,PublicSessionsService,PublicSlotsService,PublicStorefrontStaffPreviewService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantFaqsService,PublicTenantsService,PublicVenueTypesService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SellableItemsService,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StorefrontStaffPreviewService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantFaqsService,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenueTypeService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService,WalletCreditPeriodStatus,WalletTrackingLevel,WalletTransactionType,WalletTransactionsService,WalletsService,WebsiteHomepage};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.228",
3
+ "version": "1.0.230",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/apiClient.ts CHANGED
@@ -21,6 +21,7 @@ import { CountryService } from './services/CountryService';
21
21
  import { CoursesService } from './services/CoursesService';
22
22
  import { CourseSessionsService } from './services/CourseSessionsService';
23
23
  import { CourseSessionSchedulesService } from './services/CourseSessionSchedulesService';
24
+ import { CustomerAccountInviteSchedulesService } from './services/CustomerAccountInviteSchedulesService';
24
25
  import { CustomerAuthService } from './services/CustomerAuthService';
25
26
  import { CustomerPortalService } from './services/CustomerPortalService';
26
27
  import { CustomersService } from './services/CustomersService';
@@ -165,6 +166,7 @@ export class ApiClient {
165
166
  public readonly courses: CoursesService;
166
167
  public readonly courseSessions: CourseSessionsService;
167
168
  public readonly courseSessionSchedules: CourseSessionSchedulesService;
169
+ public readonly customerAccountInviteSchedules: CustomerAccountInviteSchedulesService;
168
170
  public readonly customerAuth: CustomerAuthService;
169
171
  public readonly customerPortal: CustomerPortalService;
170
172
  public readonly customers: CustomersService;
@@ -324,6 +326,7 @@ export class ApiClient {
324
326
  this.courses = new CoursesService(this.request);
325
327
  this.courseSessions = new CourseSessionsService(this.request);
326
328
  this.courseSessionSchedules = new CourseSessionSchedulesService(this.request);
329
+ this.customerAccountInviteSchedules = new CustomerAccountInviteSchedulesService(this.request);
327
330
  this.customerAuth = new CustomerAuthService(this.request);
328
331
  this.customerPortal = new CustomerPortalService(this.request);
329
332
  this.customers = new CustomersService(this.request);