reach-api-sdk 1.0.3 → 1.0.5

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 (66) hide show
  1. package/dist/reach-sdk.d.ts +92 -92
  2. package/package.json +1 -1
  3. package/src/apiClient.ts +242 -242
  4. package/src/definition/swagger.yaml +312 -126
  5. package/src/index.ts +1 -1
  6. package/src/models/Course.ts +252 -252
  7. package/src/models/CoursePage.ts +2 -2
  8. package/src/models/CourseSession.ts +88 -88
  9. package/src/models/CourseSessionPage.ts +2 -2
  10. package/src/models/CourseSessionSchedulePage.ts +2 -2
  11. package/src/models/CustomerPage.ts +2 -2
  12. package/src/models/EmailReminderSchedulePage.ts +2 -2
  13. package/src/models/EmailSettingPage.ts +2 -2
  14. package/src/models/Facility.ts +105 -105
  15. package/src/models/FacilityIndividualPage.ts +2 -2
  16. package/src/models/FacilityPage.ts +2 -2
  17. package/src/models/GenericActivityPage.ts +2 -2
  18. package/src/models/ImagePage.ts +2 -2
  19. package/src/models/NotificationQueuePage.ts +2 -2
  20. package/src/models/NotificationSettingPage.ts +2 -2
  21. package/src/models/Offer.ts +100 -100
  22. package/src/models/OfferPage.ts +2 -2
  23. package/src/models/OpenactiveFeedIntermediatePage.ts +2 -2
  24. package/src/models/OpenactiveFeedItemPage.ts +2 -2
  25. package/src/models/Order.ts +212 -212
  26. package/src/models/OrderItem.ts +98 -98
  27. package/src/models/OrderItemPage.ts +2 -2
  28. package/src/models/OrderPage.ts +2 -2
  29. package/src/models/OrderTokenPage.ts +2 -2
  30. package/src/models/OrgCourseUtilisationPage.ts +2 -2
  31. package/src/models/{PageMeta.ts → Pagination.ts} +5 -5
  32. package/src/models/PaymentPage.ts +2 -2
  33. package/src/models/PermissionPage.ts +2 -2
  34. package/src/models/ProgrammePage.ts +2 -2
  35. package/src/models/RecentOrderActivityReportPage.ts +2 -2
  36. package/src/models/ScheduledSessionPage.ts +2 -2
  37. package/src/models/ScheduledSessionSchedulePage.ts +2 -2
  38. package/src/models/Session.ts +191 -191
  39. package/src/models/SessionPage.ts +2 -2
  40. package/src/models/SlotOfferPage.ts +2 -2
  41. package/src/models/SlotPage.ts +2 -2
  42. package/src/models/SlotScheduleOfferPage.ts +2 -2
  43. package/src/models/SlotSchedulePage.ts +2 -2
  44. package/src/models/StripeAccountPage.ts +2 -2
  45. package/src/models/Survey.ts +51 -51
  46. package/src/models/SurveyAnswer.ts +58 -58
  47. package/src/models/SurveyAnswerPage.ts +2 -2
  48. package/src/models/SurveyPage.ts +2 -2
  49. package/src/models/SurveyQuestion.ts +69 -69
  50. package/src/models/SurveyQuestionOption.ts +45 -45
  51. package/src/models/SurveyQuestionPage.ts +2 -2
  52. package/src/models/SurveyReportExtended.ts +33 -33
  53. package/src/models/SurveyReportExtendedPage.ts +2 -2
  54. package/src/models/Tenant.ts +242 -242
  55. package/src/models/TenantPage.ts +2 -2
  56. package/src/models/TenantWebsiteSettingPage.ts +2 -2
  57. package/src/models/TotalRevenueReportPage.ts +2 -2
  58. package/src/models/UserPage.ts +2 -2
  59. package/src/models/Venue.ts +187 -187
  60. package/src/models/VenuePage.ts +2 -2
  61. package/src/models/VenuesReportPage.ts +2 -2
  62. package/src/models/WaitlistActivity.ts +58 -58
  63. package/src/models/WaitlistActivityPage.ts +2 -2
  64. package/src/models/WaitlistOpportunity.ts +68 -68
  65. package/src/models/WaitlistOpportunityPage.ts +2 -2
  66. package/src/services/SurveyReportExtendedService.ts +618 -618
@@ -1238,19 +1238,19 @@ type WaitlistOpportunity = {
1238
1238
  /**
1239
1239
  * Gets or sets the first name.
1240
1240
  */
1241
- firstName?: string | null;
1241
+ firstName: string;
1242
1242
  /**
1243
1243
  * Gets or sets the last name.
1244
1244
  */
1245
- lastName?: string | null;
1245
+ lastName: string;
1246
1246
  /**
1247
1247
  * Gets or sets the email.
1248
1248
  */
1249
- email?: string | null;
1249
+ email: string;
1250
1250
  /**
1251
1251
  * Gets or sets the spaces required.
1252
1252
  */
1253
- spacesRequired?: number;
1253
+ spacesRequired: number;
1254
1254
  slot?: Slot;
1255
1255
  scheduledSession?: ScheduledSession;
1256
1256
  course?: Course;
@@ -1440,15 +1440,15 @@ type WaitlistActivity = {
1440
1440
  /**
1441
1441
  * Gets or sets the first name.
1442
1442
  */
1443
- firstName?: string | null;
1443
+ firstName: string;
1444
1444
  /**
1445
1445
  * Gets or sets the last name.
1446
1446
  */
1447
- lastName?: string | null;
1447
+ lastName: string;
1448
1448
  /**
1449
1449
  * Gets or sets the email.
1450
1450
  */
1451
- email?: string | null;
1451
+ email: string;
1452
1452
  session?: Session;
1453
1453
  course?: Course;
1454
1454
  };
@@ -1484,11 +1484,11 @@ type Session = {
1484
1484
  /**
1485
1485
  * Gets or sets the session venue id.
1486
1486
  */
1487
- venueId?: string | null;
1487
+ venueId: string;
1488
1488
  /**
1489
1489
  * Gets or sets the session activity id.
1490
1490
  */
1491
- activityId?: number | null;
1491
+ activityId: number;
1492
1492
  /**
1493
1493
  * Gets or sets the session programme id.
1494
1494
  */
@@ -1505,11 +1505,11 @@ type Session = {
1505
1505
  /**
1506
1506
  * Gets or sets the session name.
1507
1507
  */
1508
- name?: string | null;
1508
+ name: string;
1509
1509
  /**
1510
1510
  * Gets or sets the session description.
1511
1511
  */
1512
- description?: string | null;
1512
+ description: string;
1513
1513
  /**
1514
1514
  * Gets or sets the openactive activity Id.
1515
1515
  */
@@ -1689,7 +1689,7 @@ type Offer = {
1689
1689
  /**
1690
1690
  * Gets or sets the offer total/gross price.
1691
1691
  */
1692
- priceTotal?: number | null;
1692
+ priceTotal: number;
1693
1693
  /**
1694
1694
  * Gets or sets the offer currency.
1695
1695
  */
@@ -1828,11 +1828,11 @@ type Facility = {
1828
1828
  /**
1829
1829
  * Gets or sets the facility venue id.
1830
1830
  */
1831
- venueId?: string | null;
1831
+ venueId: string;
1832
1832
  /**
1833
1833
  * Gets or sets the facility activity id.
1834
1834
  */
1835
- activityId?: number | null;
1835
+ activityId: number;
1836
1836
  /**
1837
1837
  * Gets or sets the facility survey id.
1838
1838
  */
@@ -1844,11 +1844,11 @@ type Facility = {
1844
1844
  /**
1845
1845
  * Gets or sets the facility name.
1846
1846
  */
1847
- name?: string | null;
1847
+ name: string;
1848
1848
  /**
1849
1849
  * Gets or sets the facility description.
1850
1850
  */
1851
- description?: string | null;
1851
+ description: string;
1852
1852
  facilityIndividualsType?: FacilityIndividualsType;
1853
1853
  /**
1854
1854
  * Gets or sets the openactive activity Id.
@@ -2105,7 +2105,7 @@ type Venue = {
2105
2105
  /**
2106
2106
  * Gets or sets the venues Country id.
2107
2107
  */
2108
- countryId?: number | null;
2108
+ countryId: number;
2109
2109
  /**
2110
2110
  * Gets or sets the venues lat.
2111
2111
  */
@@ -2219,7 +2219,7 @@ type Tenant = {
2219
2219
  /**
2220
2220
  * Gets or sets the name of the organisation.
2221
2221
  */
2222
- name?: string | null;
2222
+ name: string;
2223
2223
  /**
2224
2224
  * Gets or sets the legal name of the organisation.
2225
2225
  */
@@ -2534,7 +2534,7 @@ type CourseSession = {
2534
2534
  /**
2535
2535
  * Gets or sets the session id.
2536
2536
  */
2537
- courseId?: string | null;
2537
+ courseId: string;
2538
2538
  status?: SlotStatus;
2539
2539
  /**
2540
2540
  * Gets or sets the scheduled session creation lease expiry. Preventing other scheduled sessions from overwriting until the lease expires.
@@ -2607,11 +2607,11 @@ type Course = {
2607
2607
  /**
2608
2608
  * Gets or sets the course venue id.
2609
2609
  */
2610
- venueId?: string | null;
2610
+ venueId: string;
2611
2611
  /**
2612
2612
  * Gets or sets the course activity id.
2613
2613
  */
2614
- activityId?: number | null;
2614
+ activityId: number;
2615
2615
  /**
2616
2616
  * Gets or sets the course programme id.
2617
2617
  */
@@ -2627,11 +2627,11 @@ type Course = {
2627
2627
  /**
2628
2628
  * Gets or sets the course name.
2629
2629
  */
2630
- name?: string | null;
2630
+ name: string;
2631
2631
  /**
2632
2632
  * Gets or sets the course description.
2633
2633
  */
2634
- description?: string | null;
2634
+ description: string;
2635
2635
  /**
2636
2636
  * Gets or sets the room name.
2637
2637
  */
@@ -2911,7 +2911,7 @@ type OrderItem = {
2911
2911
  /**
2912
2912
  * Gets or sets the order id.
2913
2913
  */
2914
- orderId?: string | null;
2914
+ orderId: string;
2915
2915
  /**
2916
2916
  * Gets or sets the slot id.
2917
2917
  */
@@ -2927,7 +2927,7 @@ type OrderItem = {
2927
2927
  /**
2928
2928
  * Gets or sets the offer id.
2929
2929
  */
2930
- offerId?: string | null;
2930
+ offerId: string;
2931
2931
  /**
2932
2932
  * Gets the venue id.
2933
2933
  */
@@ -2935,7 +2935,7 @@ type OrderItem = {
2935
2935
  /**
2936
2936
  * Gets or sets the quantity of opportunities required on the order item.
2937
2937
  */
2938
- quantity?: number | null;
2938
+ quantity: number;
2939
2939
  status?: OrderItemStatus;
2940
2940
  /**
2941
2941
  * Gets or sets a value indicating whether the order item can result in excess scheduled session capacity.
@@ -3086,7 +3086,7 @@ type Order = {
3086
3086
  /**
3087
3087
  * Gets or sets the venue Id.
3088
3088
  */
3089
- venueId?: string | null;
3089
+ venueId: string;
3090
3090
  /**
3091
3091
  * Gets or sets the customer Id.
3092
3092
  */
@@ -3170,11 +3170,11 @@ type Order = {
3170
3170
  /**
3171
3171
  * Gets or sets the first name.
3172
3172
  */
3173
- firstName?: string | null;
3173
+ firstName: string;
3174
3174
  /**
3175
3175
  * Gets or sets the last name.
3176
3176
  */
3177
- lastName?: string | null;
3177
+ lastName: string;
3178
3178
  /**
3179
3179
  * Gets or sets the organisation name.
3180
3180
  */
@@ -3182,11 +3182,11 @@ type Order = {
3182
3182
  /**
3183
3183
  * Gets or sets the email.
3184
3184
  */
3185
- email?: string | null;
3185
+ email: string;
3186
3186
  /**
3187
3187
  * Gets or sets the phone number.
3188
3188
  */
3189
- phone?: string | null;
3189
+ phone: string;
3190
3190
  /**
3191
3191
  * Gets or sets the orders street address.
3192
3192
  */
@@ -3256,27 +3256,27 @@ type Order = {
3256
3256
  /**
3257
3257
  * Describes meta data for results returned as pages.
3258
3258
  */
3259
- type PageMeta = {
3259
+ type Pagination = {
3260
3260
  /**
3261
3261
  * Gets the page number.
3262
3262
  */
3263
- readonly pageNumber?: number;
3263
+ readonly pageNumber: number;
3264
3264
  /**
3265
3265
  * Gets the total number of pages.
3266
3266
  */
3267
- readonly totalPages?: number;
3267
+ readonly totalPages: number;
3268
3268
  /**
3269
3269
  * Gets the total number of items in each page.
3270
3270
  */
3271
- readonly itemsPerPage?: number;
3271
+ readonly itemsPerPage: number;
3272
3272
  /**
3273
3273
  * Gets the total number of items.
3274
3274
  */
3275
- readonly totalItems?: number;
3275
+ readonly totalItems: number;
3276
3276
  };
3277
3277
 
3278
3278
  type OrderPage = {
3279
- meta?: PageMeta;
3279
+ pagination?: Pagination;
3280
3280
  readonly items?: Array<Order> | null;
3281
3281
  };
3282
3282
 
@@ -3945,7 +3945,7 @@ declare class CountryService {
3945
3945
  }
3946
3946
 
3947
3947
  type CoursePage = {
3948
- meta?: PageMeta;
3948
+ pagination?: Pagination;
3949
3949
  readonly items?: Array<Course> | null;
3950
3950
  };
3951
3951
 
@@ -4483,7 +4483,7 @@ declare class CoursesService {
4483
4483
  }
4484
4484
 
4485
4485
  type CourseSessionPage = {
4486
- meta?: PageMeta;
4486
+ pagination?: Pagination;
4487
4487
  readonly items?: Array<CourseSession> | null;
4488
4488
  };
4489
4489
 
@@ -4883,7 +4883,7 @@ declare class CourseSessionsService {
4883
4883
  }
4884
4884
 
4885
4885
  type CourseSessionSchedulePage = {
4886
- meta?: PageMeta;
4886
+ pagination?: Pagination;
4887
4887
  readonly items?: Array<CourseSessionSchedule> | null;
4888
4888
  };
4889
4889
 
@@ -5199,7 +5199,7 @@ declare class CourseSessionSchedulesService {
5199
5199
  }
5200
5200
 
5201
5201
  type CustomerPage = {
5202
- meta?: PageMeta;
5202
+ pagination?: Pagination;
5203
5203
  readonly items?: Array<Customer> | null;
5204
5204
  };
5205
5205
 
@@ -5652,7 +5652,7 @@ type EmailReminderSchedule = {
5652
5652
  };
5653
5653
 
5654
5654
  type EmailReminderSchedulePage = {
5655
- meta?: PageMeta;
5655
+ pagination?: Pagination;
5656
5656
  readonly items?: Array<EmailReminderSchedule> | null;
5657
5657
  };
5658
5658
 
@@ -5991,7 +5991,7 @@ type EmailSetting = {
5991
5991
  };
5992
5992
 
5993
5993
  type EmailSettingPage = {
5994
- meta?: PageMeta;
5994
+ pagination?: Pagination;
5995
5995
  readonly items?: Array<EmailSetting> | null;
5996
5996
  };
5997
5997
 
@@ -6278,7 +6278,7 @@ declare class EmailSettingsService {
6278
6278
  }
6279
6279
 
6280
6280
  type FacilityPage = {
6281
- meta?: PageMeta;
6281
+ pagination?: Pagination;
6282
6282
  readonly items?: Array<Facility> | null;
6283
6283
  };
6284
6284
 
@@ -6623,7 +6623,7 @@ declare class FacilitiesService {
6623
6623
  }
6624
6624
 
6625
6625
  type FacilityIndividualPage = {
6626
- meta?: PageMeta;
6626
+ pagination?: Pagination;
6627
6627
  readonly items?: Array<FacilityIndividual> | null;
6628
6628
  };
6629
6629
 
@@ -7004,7 +7004,7 @@ type GenericActivity = {
7004
7004
  };
7005
7005
 
7006
7006
  type GenericActivityPage = {
7007
- meta?: PageMeta;
7007
+ pagination?: Pagination;
7008
7008
  readonly items?: Array<GenericActivity> | null;
7009
7009
  };
7010
7010
 
@@ -7434,7 +7434,7 @@ declare class GeocodeService {
7434
7434
  }
7435
7435
 
7436
7436
  type ImagePage = {
7437
- meta?: PageMeta;
7437
+ pagination?: Pagination;
7438
7438
  readonly items?: Array<Image> | null;
7439
7439
  };
7440
7440
 
@@ -8389,7 +8389,7 @@ type NotificationQueue = {
8389
8389
  };
8390
8390
 
8391
8391
  type NotificationQueuePage = {
8392
- meta?: PageMeta;
8392
+ pagination?: Pagination;
8393
8393
  readonly items?: Array<NotificationQueue> | null;
8394
8394
  };
8395
8395
 
@@ -8744,7 +8744,7 @@ type NotificationSetting = {
8744
8744
  };
8745
8745
 
8746
8746
  type NotificationSettingPage = {
8747
- meta?: PageMeta;
8747
+ pagination?: Pagination;
8748
8748
  readonly items?: Array<NotificationSetting> | null;
8749
8749
  };
8750
8750
 
@@ -9151,7 +9151,7 @@ declare class NotificationSettingsService {
9151
9151
  }
9152
9152
 
9153
9153
  type OfferPage = {
9154
- meta?: PageMeta;
9154
+ pagination?: Pagination;
9155
9155
  readonly items?: Array<Offer> | null;
9156
9156
  };
9157
9157
 
@@ -9577,7 +9577,7 @@ type OpenactiveFeedIntermediate = {
9577
9577
  };
9578
9578
 
9579
9579
  type OpenactiveFeedIntermediatePage = {
9580
- meta?: PageMeta;
9580
+ pagination?: Pagination;
9581
9581
  readonly items?: Array<OpenactiveFeedIntermediate> | null;
9582
9582
  };
9583
9583
 
@@ -9885,7 +9885,7 @@ type OpenactiveFeedItem = {
9885
9885
  };
9886
9886
 
9887
9887
  type OpenactiveFeedItemPage = {
9888
- meta?: PageMeta;
9888
+ pagination?: Pagination;
9889
9889
  readonly items?: Array<OpenactiveFeedItem> | null;
9890
9890
  };
9891
9891
 
@@ -10148,7 +10148,7 @@ declare class OpenactiveFeedItemService {
10148
10148
  }
10149
10149
 
10150
10150
  type OrderItemPage = {
10151
- meta?: PageMeta;
10151
+ pagination?: Pagination;
10152
10152
  readonly items?: Array<OrderItem> | null;
10153
10153
  };
10154
10154
 
@@ -10936,7 +10936,7 @@ type OrgCourseUtilisation = {
10936
10936
  };
10937
10937
 
10938
10938
  type OrgCourseUtilisationPage = {
10939
- meta?: PageMeta;
10939
+ pagination?: Pagination;
10940
10940
  readonly items?: Array<OrgCourseUtilisation> | null;
10941
10941
  };
10942
10942
 
@@ -11373,7 +11373,7 @@ declare class OrgCourseUtilisationService {
11373
11373
  }
11374
11374
 
11375
11375
  type PaymentPage = {
11376
- meta?: PageMeta;
11376
+ pagination?: Pagination;
11377
11377
  readonly items?: Array<Payment> | null;
11378
11378
  };
11379
11379
 
@@ -11698,7 +11698,7 @@ type Permission = {
11698
11698
  };
11699
11699
 
11700
11700
  type PermissionPage = {
11701
- meta?: PageMeta;
11701
+ pagination?: Pagination;
11702
11702
  readonly items?: Array<Permission> | null;
11703
11703
  };
11704
11704
 
@@ -12026,7 +12026,7 @@ declare class PlacesService {
12026
12026
  }
12027
12027
 
12028
12028
  type ProgrammePage = {
12029
- meta?: PageMeta;
12029
+ pagination?: Pagination;
12030
12030
  readonly items?: Array<Programme> | null;
12031
12031
  };
12032
12032
 
@@ -13847,7 +13847,7 @@ type OrderToken = {
13847
13847
  };
13848
13848
 
13849
13849
  type OrderTokenPage = {
13850
- meta?: PageMeta;
13850
+ pagination?: Pagination;
13851
13851
  readonly items?: Array<OrderToken> | null;
13852
13852
  };
13853
13853
 
@@ -14299,7 +14299,7 @@ declare class PublicProgrammesService {
14299
14299
  }
14300
14300
 
14301
14301
  type ScheduledSessionPage = {
14302
- meta?: PageMeta;
14302
+ pagination?: Pagination;
14303
14303
  readonly items?: Array<ScheduledSession> | null;
14304
14304
  };
14305
14305
 
@@ -14657,7 +14657,7 @@ declare class PublicScheduledSessionsService {
14657
14657
  }
14658
14658
 
14659
14659
  type SessionPage = {
14660
- meta?: PageMeta;
14660
+ pagination?: Pagination;
14661
14661
  readonly items?: Array<Session> | null;
14662
14662
  };
14663
14663
 
@@ -15051,7 +15051,7 @@ declare class PublicSessionsService {
15051
15051
  }
15052
15052
 
15053
15053
  type SlotPage = {
15054
- meta?: PageMeta;
15054
+ pagination?: Pagination;
15055
15055
  readonly items?: Array<Slot> | null;
15056
15056
  };
15057
15057
 
@@ -15567,11 +15567,11 @@ type SurveyQuestionOption = {
15567
15567
  /**
15568
15568
  * Gets or sets the survey question id.
15569
15569
  */
15570
- surveyQuestionId?: string | null;
15570
+ surveyQuestionId: string;
15571
15571
  /**
15572
15572
  * Gets or sets the survey question option name.
15573
15573
  */
15574
- name?: string | null;
15574
+ name: string;
15575
15575
  /**
15576
15576
  * Gets or sets the survey question option sort number.
15577
15577
  */
@@ -15619,15 +15619,15 @@ type SurveyQuestion = {
15619
15619
  /**
15620
15620
  * Gets or sets the survey id.
15621
15621
  */
15622
- surveyId?: string | null;
15622
+ surveyId: string;
15623
15623
  /**
15624
15624
  * Gets or sets the survey question name.
15625
15625
  */
15626
- name?: string | null;
15626
+ name: string;
15627
15627
  /**
15628
15628
  * Gets or sets the survey question number.
15629
15629
  */
15630
- number?: number;
15630
+ number: number;
15631
15631
  type?: SurveyQuestionType;
15632
15632
  /**
15633
15633
  * Gets or sets a value indicating whether the question is required.
@@ -15652,7 +15652,7 @@ type SurveyQuestion = {
15652
15652
  };
15653
15653
 
15654
15654
  type SurveyQuestionPage = {
15655
- meta?: PageMeta;
15655
+ pagination?: Pagination;
15656
15656
  readonly items?: Array<SurveyQuestion> | null;
15657
15657
  };
15658
15658
 
@@ -15939,9 +15939,9 @@ type Survey = {
15939
15939
  /**
15940
15940
  * Gets or sets the survey name.
15941
15941
  */
15942
- name?: string | null;
15943
- type?: SurveyType;
15944
- target?: SurveyQuestionsTarget;
15942
+ name: string;
15943
+ type: SurveyType;
15944
+ target: SurveyQuestionsTarget;
15945
15945
  /**
15946
15946
  * Gets or sets a value indicating whether the survey is active.
15947
15947
  */
@@ -15953,7 +15953,7 @@ type Survey = {
15953
15953
  };
15954
15954
 
15955
15955
  type SurveyPage = {
15956
- meta?: PageMeta;
15956
+ pagination?: Pagination;
15957
15957
  readonly items?: Array<Survey> | null;
15958
15958
  };
15959
15959
 
@@ -16144,7 +16144,7 @@ declare class PublicSurveysService {
16144
16144
  }
16145
16145
 
16146
16146
  type TenantPage = {
16147
- meta?: PageMeta;
16147
+ pagination?: Pagination;
16148
16148
  readonly items?: Array<Tenant> | null;
16149
16149
  };
16150
16150
 
@@ -16365,7 +16365,7 @@ declare class PublicTenantsService {
16365
16365
  }
16366
16366
 
16367
16367
  type VenuePage = {
16368
- meta?: PageMeta;
16368
+ pagination?: Pagination;
16369
16369
  readonly items?: Array<Venue> | null;
16370
16370
  };
16371
16371
 
@@ -16652,7 +16652,7 @@ declare class PublicVenuesService {
16652
16652
  }
16653
16653
 
16654
16654
  type WaitlistActivityPage = {
16655
- meta?: PageMeta;
16655
+ pagination?: Pagination;
16656
16656
  readonly items?: Array<WaitlistActivity> | null;
16657
16657
  };
16658
16658
 
@@ -16887,7 +16887,7 @@ declare class PublicWaitlistActivityService {
16887
16887
  }
16888
16888
 
16889
16889
  type WaitlistOpportunityPage = {
16890
- meta?: PageMeta;
16890
+ pagination?: Pagination;
16891
16891
  readonly items?: Array<WaitlistOpportunity> | null;
16892
16892
  };
16893
16893
 
@@ -17192,7 +17192,7 @@ type RecentOrderActivityReport = {
17192
17192
  };
17193
17193
 
17194
17194
  type RecentOrderActivityReportPage = {
17195
- meta?: PageMeta;
17195
+ pagination?: Pagination;
17196
17196
  readonly items?: Array<RecentOrderActivityReport> | null;
17197
17197
  };
17198
17198
 
@@ -17993,7 +17993,7 @@ declare class ScheduledSessionsService {
17993
17993
  }
17994
17994
 
17995
17995
  type ScheduledSessionSchedulePage = {
17996
- meta?: PageMeta;
17996
+ pagination?: Pagination;
17997
17997
  readonly items?: Array<ScheduledSessionSchedule> | null;
17998
17998
  };
17999
17999
 
@@ -18717,7 +18717,7 @@ type SlotOffer = {
18717
18717
  };
18718
18718
 
18719
18719
  type SlotOfferPage = {
18720
- meta?: PageMeta;
18720
+ pagination?: Pagination;
18721
18721
  readonly items?: Array<SlotOffer> | null;
18722
18722
  };
18723
18723
 
@@ -19498,7 +19498,7 @@ type SlotScheduleOffer = {
19498
19498
  };
19499
19499
 
19500
19500
  type SlotScheduleOfferPage = {
19501
- meta?: PageMeta;
19501
+ pagination?: Pagination;
19502
19502
  readonly items?: Array<SlotScheduleOffer> | null;
19503
19503
  };
19504
19504
 
@@ -19761,7 +19761,7 @@ declare class SlotScheduleOffersService {
19761
19761
  }
19762
19762
 
19763
19763
  type SlotSchedulePage = {
19764
- meta?: PageMeta;
19764
+ pagination?: Pagination;
19765
19765
  readonly items?: Array<SlotSchedule> | null;
19766
19766
  };
19767
19767
 
@@ -20107,7 +20107,7 @@ declare class SlotSchedulesService {
20107
20107
  }
20108
20108
 
20109
20109
  type StripeAccountPage = {
20110
- meta?: PageMeta;
20110
+ pagination?: Pagination;
20111
20111
  readonly items?: Array<StripeAccount> | null;
20112
20112
  };
20113
20113
 
@@ -20488,19 +20488,19 @@ type SurveyAnswer = {
20488
20488
  /**
20489
20489
  * Gets or sets the survey id.
20490
20490
  */
20491
- surveyId?: string | null;
20491
+ surveyId: string;
20492
20492
  /**
20493
20493
  * Gets or sets the question id.
20494
20494
  */
20495
- surveyQuestionId?: string | null;
20495
+ surveyQuestionId: string;
20496
20496
  /**
20497
20497
  * Gets or sets the order id.
20498
20498
  */
20499
- orderItemId?: string | null;
20499
+ orderItemId: string;
20500
20500
  /**
20501
20501
  * Gets or sets the survey question answer.
20502
20502
  */
20503
- answer?: string | null;
20503
+ answer: string;
20504
20504
  /**
20505
20505
  * Gets or sets the survey question attendee number.
20506
20506
  */
@@ -20510,7 +20510,7 @@ type SurveyAnswer = {
20510
20510
  };
20511
20511
 
20512
20512
  type SurveyAnswerPage = {
20513
- meta?: PageMeta;
20513
+ pagination?: Pagination;
20514
20514
  readonly items?: Array<SurveyAnswer> | null;
20515
20515
  };
20516
20516
 
@@ -21193,7 +21193,7 @@ type SurveyReportExtended = {
21193
21193
  };
21194
21194
 
21195
21195
  type SurveyReportExtendedPage = {
21196
- meta?: PageMeta;
21196
+ pagination?: Pagination;
21197
21197
  readonly items?: Array<SurveyReportExtended> | null;
21198
21198
  };
21199
21199
 
@@ -22165,7 +22165,7 @@ declare class TenantsService {
22165
22165
  }
22166
22166
 
22167
22167
  type TenantWebsiteSettingPage = {
22168
- meta?: PageMeta;
22168
+ pagination?: Pagination;
22169
22169
  readonly items?: Array<TenantWebsiteSetting> | null;
22170
22170
  };
22171
22171
 
@@ -22552,7 +22552,7 @@ type TotalRevenueReport = {
22552
22552
  };
22553
22553
 
22554
22554
  type TotalRevenueReportPage = {
22555
- meta?: PageMeta;
22555
+ pagination?: Pagination;
22556
22556
  readonly items?: Array<TotalRevenueReport> | null;
22557
22557
  };
22558
22558
 
@@ -22839,7 +22839,7 @@ declare class TotalRevenueReportService {
22839
22839
  }
22840
22840
 
22841
22841
  type UserPage = {
22842
- meta?: PageMeta;
22842
+ pagination?: Pagination;
22843
22843
  readonly items?: Array<User> | null;
22844
22844
  };
22845
22845
 
@@ -23604,7 +23604,7 @@ type VenuesReport = {
23604
23604
  };
23605
23605
 
23606
23606
  type VenuesReportPage = {
23607
- meta?: PageMeta;
23607
+ pagination?: Pagination;
23608
23608
  readonly items?: Array<VenuesReport> | null;
23609
23609
  };
23610
23610
 
@@ -24715,4 +24715,4 @@ type ReachError = {
24715
24715
  readonly clientError?: any;
24716
24716
  };
24717
24717
 
24718
- export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, AutoCompleteResponseModel, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CoursePage, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulesService, CourseSessionsService, CoursesService, Customer, CustomerCancellationOption, CustomerPage, CustomerType, CustomersService, DayOfWeek, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HttpStatusCode, IOpportunity, Image, ImagePage, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingsService, NotificationType, Offer, OfferPage, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemService, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemStatus, OrderItemsService, OrderPage, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, PageMeta, Payment, PaymentMethod, PaymentPage, PaymentsService, Permission, PermissionPage, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammesService, PublicBookingService, PublicCoursesService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportService, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionGender, SessionPage, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOffersService, SlotPage, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswersService, SurveyPage, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedService, SurveySubmissionModel, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportService, User, UserPage, UserRole, UsersService, Venue, VenueOpeningHours, VenuePage, VenuesReport, VenuesReportPage, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityService };
24718
+ export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, AutoCompleteResponseModel, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CoursePage, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulesService, CourseSessionsService, CoursesService, Customer, CustomerCancellationOption, CustomerPage, CustomerType, CustomersService, DayOfWeek, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HttpStatusCode, IOpportunity, Image, ImagePage, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingsService, NotificationType, Offer, OfferPage, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemService, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemStatus, OrderItemsService, OrderPage, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentsService, Permission, PermissionPage, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammesService, PublicBookingService, PublicCoursesService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportService, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionGender, SessionPage, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOffersService, SlotPage, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswersService, SurveyPage, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedService, SurveySubmissionModel, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportService, User, UserPage, UserRole, UsersService, Venue, VenueOpeningHours, VenuePage, VenuesReport, VenuesReportPage, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityService };