reach-api-sdk 1.0.203 → 1.0.204

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.
@@ -4233,6 +4233,14 @@ type Offer = {
4233
4233
  * Gets or sets the course id.
4234
4234
  */
4235
4235
  courseId?: string | null;
4236
+ /**
4237
+ * Gets or sets the survey id.
4238
+ */
4239
+ surveyId?: string | null;
4240
+ /**
4241
+ * Gets or sets the survey id.
4242
+ */
4243
+ postCompletionSurveyId?: string | null;
4236
4244
  /**
4237
4245
  * Gets or sets the offer name.
4238
4246
  */
@@ -8001,6 +8009,14 @@ type CreateOffer = {
8001
8009
  * Gets or sets the offer description.
8002
8010
  */
8003
8011
  description?: string | null;
8012
+ /**
8013
+ * Gets or sets the survey id.
8014
+ */
8015
+ surveyId?: string | null;
8016
+ /**
8017
+ * Gets or sets the post completion survey id.
8018
+ */
8019
+ postCompletionSurveyId?: string | null;
8004
8020
  };
8005
8021
 
8006
8022
  /**
@@ -8290,6 +8306,14 @@ type UpdateOffer = {
8290
8306
  * Gets or sets the offer description.
8291
8307
  */
8292
8308
  description?: string | null;
8309
+ /**
8310
+ * Gets or sets the survey id.
8311
+ */
8312
+ surveyId?: string | null;
8313
+ /**
8314
+ * Gets or sets the post completion survey id.
8315
+ */
8316
+ postCompletionSurveyId?: string | null;
8293
8317
  };
8294
8318
 
8295
8319
  /**
@@ -21733,6 +21757,14 @@ type OfferPatch = {
21733
21757
  * Gets or sets the course id.
21734
21758
  */
21735
21759
  courseId?: string | null;
21760
+ /**
21761
+ * Gets or sets the survey id.
21762
+ */
21763
+ surveyId?: string | null;
21764
+ /**
21765
+ * Gets or sets the post completion survey id.
21766
+ */
21767
+ postCompletionSurveyId?: string | null;
21736
21768
  /**
21737
21769
  * Gets or sets the offer name.
21738
21770
  */
@@ -21771,6 +21803,14 @@ type OfferPost = {
21771
21803
  * Gets or sets the course id.
21772
21804
  */
21773
21805
  courseId?: string | null;
21806
+ /**
21807
+ * Gets or sets the survey id.
21808
+ */
21809
+ surveyId?: string | null;
21810
+ /**
21811
+ * Gets or sets the post completion survey id.
21812
+ */
21813
+ postCompletionSurveyId?: string | null;
21774
21814
  /**
21775
21815
  * Gets or sets the offer name.
21776
21816
  */
@@ -32901,6 +32941,199 @@ declare class PublicGenericActivityService {
32901
32941
  */
32902
32942
  networkId?: string;
32903
32943
  }): CancelablePromise<Array<Activity>>;
32944
+ /**
32945
+ * Retrieves a paged list of activities using optimized raw SQL queries.
32946
+ * This endpoint loads all related data (images, offers, sessions) in a single query using JSON aggregation,
32947
+ * eliminating the overhead of OnPagedItemsLoaded method. Returns only minimal required fields.
32948
+ * @returns GenericActivityPage OK
32949
+ * @throws ApiError
32950
+ */
32951
+ getPageOptimized({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32952
+ /**
32953
+ * Gets or sets the wildcard for use in a query search.
32954
+ */
32955
+ wildcard?: string;
32956
+ /**
32957
+ * Gets or sets the queryable Venue Id.
32958
+ */
32959
+ venueId?: string;
32960
+ /**
32961
+ * Gets or sets the queryable Provider Id.
32962
+ */
32963
+ providerId?: string;
32964
+ /**
32965
+ * Gets or sets the queryable Programme Id.
32966
+ */
32967
+ programmeId?: string;
32968
+ /**
32969
+ * Gets or sets a value indicating whether return online activities.
32970
+ */
32971
+ online?: boolean;
32972
+ /**
32973
+ * Gets or sets a value indicating whether to include archived activities.
32974
+ */
32975
+ archived?: boolean;
32976
+ /**
32977
+ * Gets or sets a value indicating whether to include deleted activities.
32978
+ */
32979
+ deleted?: boolean;
32980
+ /**
32981
+ * Gets or sets the activity type.
32982
+ */
32983
+ activityType?: ActivityType;
32984
+ /**
32985
+ * Gets or sets a value indicating whether to inlcude the activities next availability.
32986
+ */
32987
+ includeNextOpportunity?: boolean;
32988
+ /**
32989
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
32990
+ */
32991
+ featured?: boolean;
32992
+ /**
32993
+ * Gets or sets a value indicating does session is private or no.
32994
+ */
32995
+ _private?: boolean;
32996
+ /**
32997
+ * Gets or sets SearchGeoCenter.
32998
+ */
32999
+ searchGeoCenter?: string;
33000
+ /**
33001
+ * Gets or sets OpenactiveActivityId.
33002
+ */
33003
+ openactiveActivityId?: string;
33004
+ /**
33005
+ * Gets or sets Activity id.
33006
+ */
33007
+ activityId?: number;
33008
+ /**
33009
+ * Gets or sets the queryable session Activity ids.
33010
+ */
33011
+ activityIds?: Array<number>;
33012
+ /**
33013
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
33014
+ */
33015
+ networkId?: string;
33016
+ /**
33017
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
33018
+ */
33019
+ tenantStatus?: TenantStatus;
33020
+ /**
33021
+ * Gets or sets Lat.
33022
+ */
33023
+ lat?: number;
33024
+ /**
33025
+ * Gets or sets Lng.
33026
+ */
33027
+ lng?: number;
33028
+ /**
33029
+ * Gets or sets Distance.
33030
+ */
33031
+ distance?: number;
33032
+ /**
33033
+ * Gets or sets MinAgeLTE.
33034
+ */
33035
+ minAgeLte?: number;
33036
+ /**
33037
+ * Gets or sets MinAgeGTE.
33038
+ */
33039
+ minAgeGte?: number;
33040
+ /**
33041
+ * Gets or sets MaxAgeLTE.
33042
+ */
33043
+ maxAgeLte?: number;
33044
+ /**
33045
+ * Gets or sets MaxAgeGTE.
33046
+ */
33047
+ maxAgeGte?: number;
33048
+ /**
33049
+ * Gets or sets PriceTotalGTE.
33050
+ */
33051
+ priceTotalGte?: number;
33052
+ /**
33053
+ * Gets or sets PriceTotalLTE.
33054
+ */
33055
+ priceTotalLte?: number;
33056
+ /**
33057
+ * Gets or sets TimeOfDay.
33058
+ */
33059
+ timeOfDay?: string;
33060
+ /**
33061
+ * Gets or sets StartDateTimeGTE.
33062
+ */
33063
+ startDateTimeGte?: string;
33064
+ /**
33065
+ * Gets or sets EndDateTimeLTE.
33066
+ */
33067
+ endDateTimeLte?: string;
33068
+ /**
33069
+ * Gets or sets Gender.
33070
+ */
33071
+ gender?: Gender;
33072
+ /**
33073
+ * Gets or sets PeriodsOfWeek.
33074
+ */
33075
+ periodsOfWeek?: PeriodsOfWeek;
33076
+ /**
33077
+ * Gets or sets AdditionalSupport.
33078
+ */
33079
+ additionalSupport?: Array<string>;
33080
+ /**
33081
+ * Gets or sets AmenityId.
33082
+ */
33083
+ amenity?: Array<number>;
33084
+ /**
33085
+ * Gets or sets a list of venue type ids.
33086
+ */
33087
+ venueTypeIds?: Array<string>;
33088
+ /**
33089
+ * Gets or sets the Programme ids.
33090
+ */
33091
+ programmeIds?: Array<string>;
33092
+ /**
33093
+ * Gets or sets the page number for paged queries.
33094
+ */
33095
+ pageNumber?: number;
33096
+ /**
33097
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
33098
+ */
33099
+ take?: number;
33100
+ /**
33101
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
33102
+ */
33103
+ skip?: number;
33104
+ /**
33105
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
33106
+ */
33107
+ limitListRequests?: boolean;
33108
+ /**
33109
+ * Gets or sets the Tenant Id.
33110
+ */
33111
+ tenantId?: string;
33112
+ /**
33113
+ * Gets or sets the Modifed By Id.
33114
+ */
33115
+ modifiedById?: string;
33116
+ /**
33117
+ * Gets or sets the Modifed By Ids.
33118
+ */
33119
+ modifiedByIds?: Array<string>;
33120
+ /**
33121
+ * Gets or sets the Date Created greater than equal to.
33122
+ */
33123
+ dateCreatedGte?: string;
33124
+ /**
33125
+ * Gets or sets the Date Created less than equal to.
33126
+ */
33127
+ dateCreatedLte?: string;
33128
+ /**
33129
+ * Gets or sets the queryable only is live status.
33130
+ */
33131
+ isLive?: boolean;
33132
+ /**
33133
+ * Gets or sets the sort order direction.
33134
+ */
33135
+ sortOrderDirection?: SearchSortOrderDirection;
33136
+ }): CancelablePromise<GenericActivityPage>;
32904
33137
  /**
32905
33138
  * Returns a value indicating whether the resource exists in the database given the provided search params.
32906
33139
  * @returns boolean OK
@@ -37599,6 +37832,10 @@ type SurveyCompletionLog = {
37599
37832
  * Gets or sets the course id.
37600
37833
  */
37601
37834
  courseId?: string | null;
37835
+ /**
37836
+ * Gets or sets the offer id.
37837
+ */
37838
+ offerId?: string | null;
37602
37839
  };
37603
37840
 
37604
37841
  type SurveyCompletionLogPage = {
@@ -37660,7 +37897,7 @@ declare class PublicSurveyCompletionLogsService {
37660
37897
  * @returns SurveyCompletionLogPage OK
37661
37898
  * @throws ApiError
37662
37899
  */
37663
- getPage({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37900
+ getPage({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37664
37901
  xTenantSubdomain?: string;
37665
37902
  /**
37666
37903
  * Gets or sets the queryable Survey Id.
@@ -37686,6 +37923,10 @@ declare class PublicSurveyCompletionLogsService {
37686
37923
  * Gets or sets the queryable Course Id.
37687
37924
  */
37688
37925
  courseId?: string;
37926
+ /**
37927
+ * Gets or sets the queryable Offer Id.
37928
+ */
37929
+ offerId?: string;
37689
37930
  /**
37690
37931
  * Gets or sets the page number for paged queries.
37691
37932
  */
@@ -37796,7 +38037,7 @@ declare class PublicSurveyCompletionLogsService {
37796
38037
  * @returns boolean OK
37797
38038
  * @throws ApiError
37798
38039
  */
37799
- exists({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38040
+ exists({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37800
38041
  /**
37801
38042
  * The tenants subdomain.
37802
38043
  */
@@ -37825,6 +38066,10 @@ declare class PublicSurveyCompletionLogsService {
37825
38066
  * Gets or sets the queryable Course Id.
37826
38067
  */
37827
38068
  courseId?: string;
38069
+ /**
38070
+ * Gets or sets the queryable Offer Id.
38071
+ */
38072
+ offerId?: string;
37828
38073
  /**
37829
38074
  * Gets or sets the page number for paged queries.
37830
38075
  */
@@ -37921,7 +38166,12 @@ declare enum SurveyQuestionType {
37921
38166
  TEXT = "Text",
37922
38167
  SELECT = "Select",
37923
38168
  CHECKBOX = "Checkbox",
37924
- NUMBER = "Number"
38169
+ NUMBER = "Number",
38170
+ TEXT_LONG = "TextLong",
38171
+ BOOLEAN = "Boolean",
38172
+ DATE = "Date",
38173
+ RATING = "Rating",
38174
+ FILE_UPLOAD = "FileUpload"
37925
38175
  }
37926
38176
 
37927
38177
  /**
@@ -39717,6 +39967,145 @@ declare class PublicVenuesService {
39717
39967
  */
39718
39968
  sortOrderDirection?: SearchSortOrderDirection;
39719
39969
  }): CancelablePromise<VenuePage>;
39970
+ /**
39971
+ * Get Venues for a network using optimized query.
39972
+ * @returns VenuePage OK
39973
+ * @throws ApiError
39974
+ */
39975
+ getNetworkPageOptimized({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39976
+ /**
39977
+ * Gets or sets the queryable venue ids.
39978
+ */
39979
+ ids?: Array<string>;
39980
+ /**
39981
+ * Gets or sets the queryable venue name wildcard.
39982
+ */
39983
+ wildcard?: string;
39984
+ /**
39985
+ * Gets or sets the queryable venue name.
39986
+ */
39987
+ name?: string;
39988
+ /**
39989
+ * Gets or sets the queryable venue street address.
39990
+ */
39991
+ streetAddress?: string;
39992
+ /**
39993
+ * Gets or sets the queryable venue address postal code.
39994
+ */
39995
+ addressPostalcode?: string;
39996
+ /**
39997
+ * Gets or sets the queryable venue name wildcard.
39998
+ */
39999
+ nameLike?: string;
40000
+ /**
40001
+ * Gets or sets the queryable venue url slug.
40002
+ */
40003
+ slug?: string;
40004
+ /**
40005
+ * Gets or sets the queryable assign to Id.
40006
+ */
40007
+ assignedTo?: string;
40008
+ /**
40009
+ * Gets or sets the queryable stripe account Id.
40010
+ */
40011
+ stripeAccountId?: string;
40012
+ /**
40013
+ * Gets or sets the queryable search geo center.
40014
+ */
40015
+ searchGeoCenter?: string;
40016
+ /**
40017
+ * Gets or sets a value indicating whether to show published venues.
40018
+ */
40019
+ publishedOnWeb?: boolean;
40020
+ /**
40021
+ * Gets or sets a value indicating whether to include archived venues.
40022
+ */
40023
+ archived?: boolean;
40024
+ /**
40025
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
40026
+ */
40027
+ networkId?: string;
40028
+ /**
40029
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
40030
+ */
40031
+ tenantStatus?: TenantStatus;
40032
+ /**
40033
+ * Gets or sets the queryable programme Id.
40034
+ */
40035
+ programmeId?: string;
40036
+ /**
40037
+ * Gets or sets a value indicating whether to inlcude the venues opportunity images.
40038
+ */
40039
+ includeOpportunityImages?: boolean;
40040
+ /**
40041
+ * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
40042
+ */
40043
+ includeOpportunityOffers?: boolean;
40044
+ /**
40045
+ * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
40046
+ */
40047
+ includeNextOpportunity?: boolean;
40048
+ /**
40049
+ * Gets or sets Distance.
40050
+ */
40051
+ distance?: number;
40052
+ /**
40053
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
40054
+ */
40055
+ dashboardRequest?: boolean;
40056
+ /**
40057
+ * Gets or sets the programme ids.
40058
+ */
40059
+ programmeIds?: Array<string>;
40060
+ /**
40061
+ * Gets or sets the venue type ids.
40062
+ */
40063
+ venueTypeIds?: Array<string>;
40064
+ /**
40065
+ * Gets or sets the page number for paged queries.
40066
+ */
40067
+ pageNumber?: number;
40068
+ /**
40069
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
40070
+ */
40071
+ take?: number;
40072
+ /**
40073
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
40074
+ */
40075
+ skip?: number;
40076
+ /**
40077
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
40078
+ */
40079
+ limitListRequests?: boolean;
40080
+ /**
40081
+ * Gets or sets the Tenant Id.
40082
+ */
40083
+ tenantId?: string;
40084
+ /**
40085
+ * Gets or sets the Modifed By Id.
40086
+ */
40087
+ modifiedById?: string;
40088
+ /**
40089
+ * Gets or sets the Modifed By Ids.
40090
+ */
40091
+ modifiedByIds?: Array<string>;
40092
+ /**
40093
+ * Gets or sets the Date Created greater than equal to.
40094
+ */
40095
+ dateCreatedGte?: string;
40096
+ /**
40097
+ * Gets or sets the Date Created less than equal to.
40098
+ */
40099
+ dateCreatedLte?: string;
40100
+ /**
40101
+ * Gets or sets the queryable only is live status.
40102
+ */
40103
+ isLive?: boolean;
40104
+ /**
40105
+ * Gets or sets the sort order direction.
40106
+ */
40107
+ sortOrderDirection?: SearchSortOrderDirection;
40108
+ }): CancelablePromise<VenuePage>;
39720
40109
  /**
39721
40110
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
39722
40111
  * @returns Venue OK
@@ -49060,7 +49449,7 @@ declare class SurveyCompletionLogService {
49060
49449
  * @returns SurveyCompletionLogPage OK
49061
49450
  * @throws ApiError
49062
49451
  */
49063
- getPage({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49452
+ getPage({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49064
49453
  /**
49065
49454
  * Gets or sets the queryable Survey Id.
49066
49455
  */
@@ -49085,6 +49474,10 @@ declare class SurveyCompletionLogService {
49085
49474
  * Gets or sets the queryable Course Id.
49086
49475
  */
49087
49476
  courseId?: string;
49477
+ /**
49478
+ * Gets or sets the queryable Offer Id.
49479
+ */
49480
+ offerId?: string;
49088
49481
  /**
49089
49482
  * Gets or sets the page number for paged queries.
49090
49483
  */
@@ -49168,7 +49561,7 @@ declare class SurveyCompletionLogService {
49168
49561
  * @returns boolean OK
49169
49562
  * @throws ApiError
49170
49563
  */
49171
- exists({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49564
+ exists({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49172
49565
  /**
49173
49566
  * Gets or sets the queryable Survey Id.
49174
49567
  */
@@ -49193,6 +49586,10 @@ declare class SurveyCompletionLogService {
49193
49586
  * Gets or sets the queryable Course Id.
49194
49587
  */
49195
49588
  courseId?: string;
49589
+ /**
49590
+ * Gets or sets the queryable Offer Id.
49591
+ */
49592
+ offerId?: string;
49196
49593
  /**
49197
49594
  * Gets or sets the page number for paged queries.
49198
49595
  */
@@ -49243,7 +49640,7 @@ declare class SurveyCompletionLogService {
49243
49640
  * @returns number OK
49244
49641
  * @throws ApiError
49245
49642
  */
49246
- count({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49643
+ count({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49247
49644
  /**
49248
49645
  * Gets or sets the queryable Survey Id.
49249
49646
  */
@@ -49268,6 +49665,10 @@ declare class SurveyCompletionLogService {
49268
49665
  * Gets or sets the queryable Course Id.
49269
49666
  */
49270
49667
  courseId?: string;
49668
+ /**
49669
+ * Gets or sets the queryable Offer Id.
49670
+ */
49671
+ offerId?: string;
49271
49672
  /**
49272
49673
  * Gets or sets the page number for paged queries.
49273
49674
  */
@@ -49318,7 +49719,7 @@ declare class SurveyCompletionLogService {
49318
49719
  * @returns SurveyCompletionLog OK
49319
49720
  * @throws ApiError
49320
49721
  */
49321
- getListWithoutReferences({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49722
+ getListWithoutReferences({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49322
49723
  /**
49323
49724
  * Gets or sets the queryable Survey Id.
49324
49725
  */
@@ -49343,6 +49744,10 @@ declare class SurveyCompletionLogService {
49343
49744
  * Gets or sets the queryable Course Id.
49344
49745
  */
49345
49746
  courseId?: string;
49747
+ /**
49748
+ * Gets or sets the queryable Offer Id.
49749
+ */
49750
+ offerId?: string;
49346
49751
  /**
49347
49752
  * Gets or sets the page number for paged queries.
49348
49753
  */
@@ -49393,7 +49798,7 @@ declare class SurveyCompletionLogService {
49393
49798
  * @returns SurveyCompletionLog OK
49394
49799
  * @throws ApiError
49395
49800
  */
49396
- getListIdName({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49801
+ getListIdName({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49397
49802
  /**
49398
49803
  * Gets or sets the queryable Survey Id.
49399
49804
  */
@@ -49418,6 +49823,10 @@ declare class SurveyCompletionLogService {
49418
49823
  * Gets or sets the queryable Course Id.
49419
49824
  */
49420
49825
  courseId?: string;
49826
+ /**
49827
+ * Gets or sets the queryable Offer Id.
49828
+ */
49829
+ offerId?: string;
49421
49830
  /**
49422
49831
  * Gets or sets the page number for paged queries.
49423
49832
  */
@@ -50415,6 +50824,10 @@ type CreateQuestion = {
50415
50824
  */
50416
50825
  number: number;
50417
50826
  type: SurveyQuestionType;
50827
+ /**
50828
+ * Gets or sets a value indicating whether question is required or not.
50829
+ */
50830
+ required: boolean;
50418
50831
  /**
50419
50832
  * Gets or sets the survey question options.
50420
50833
  */
@@ -51153,6 +51566,14 @@ type TemplateOffer = {
51153
51566
  * Gets or sets the offer description.
51154
51567
  */
51155
51568
  description?: string | null;
51569
+ /**
51570
+ * Gets or sets the survey id.
51571
+ */
51572
+ surveyId?: string | null;
51573
+ /**
51574
+ * Gets or sets the survey id.
51575
+ */
51576
+ postCompletionSurveyId?: string | null;
51156
51577
  };
51157
51578
 
51158
51579
  /**