reach-api-sdk 1.0.146 → 1.0.147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +2261 -1275
- package/dist/reach-sdk.js +1888 -1112
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +5350 -2754
- package/src/index.ts +10 -0
- package/src/models/LocationReport.ts +70 -0
- package/src/models/LocationReportPage.ts +12 -0
- package/src/models/LocationReportPatch.ts +18 -0
- package/src/models/LocationReportPost.ts +14 -0
- package/src/models/RegisterReport.ts +106 -0
- package/src/models/RegisterReportPage.ts +12 -0
- package/src/models/RegisterReportPatch.ts +18 -0
- package/src/models/RegisterReportPost.ts +14 -0
- package/src/models/WaitlistActivity.ts +4 -0
- package/src/models/WaitlistOpportunity.ts +4 -0
- package/src/services/LocationsReportService.ts +702 -0
- package/src/services/RegisterReportService.ts +702 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -3135,6 +3135,10 @@ type WaitlistOpportunity = {
|
|
|
3135
3135
|
* Gets or sets the email.
|
|
3136
3136
|
*/
|
|
3137
3137
|
email?: string | null;
|
|
3138
|
+
/**
|
|
3139
|
+
* Gets or sets the phone.
|
|
3140
|
+
*/
|
|
3141
|
+
phone?: string | null;
|
|
3138
3142
|
/**
|
|
3139
3143
|
* Gets or sets the spaces required.
|
|
3140
3144
|
*/
|
|
@@ -3340,6 +3344,10 @@ type WaitlistActivity = {
|
|
|
3340
3344
|
* Gets or sets the email.
|
|
3341
3345
|
*/
|
|
3342
3346
|
email?: string | null;
|
|
3347
|
+
/**
|
|
3348
|
+
* Gets or sets the phone.
|
|
3349
|
+
*/
|
|
3350
|
+
phone?: string | null;
|
|
3343
3351
|
/**
|
|
3344
3352
|
* Gets or sets a value indicating whether gets or sets the converted.
|
|
3345
3353
|
*/
|
|
@@ -15979,158 +15987,9 @@ declare class LeasingService {
|
|
|
15979
15987
|
}
|
|
15980
15988
|
|
|
15981
15989
|
/**
|
|
15982
|
-
*
|
|
15983
|
-
*/
|
|
15984
|
-
type LoqateGeocode = {
|
|
15985
|
-
/**
|
|
15986
|
-
* Gets or sets result.
|
|
15987
|
-
*/
|
|
15988
|
-
name?: string | null;
|
|
15989
|
-
/**
|
|
15990
|
-
* Gets or sets result.
|
|
15991
|
-
*/
|
|
15992
|
-
latitude?: number;
|
|
15993
|
-
/**
|
|
15994
|
-
* Gets or sets result.
|
|
15995
|
-
*/
|
|
15996
|
-
longitude?: number;
|
|
15997
|
-
};
|
|
15998
|
-
|
|
15999
|
-
/**
|
|
16000
|
-
* PlaceResult.
|
|
16001
|
-
*/
|
|
16002
|
-
type LoqatePlaceResult = {
|
|
16003
|
-
/**
|
|
16004
|
-
* Gets or sets id.
|
|
16005
|
-
*/
|
|
16006
|
-
id?: string | null;
|
|
16007
|
-
/**
|
|
16008
|
-
* Gets or sets id.
|
|
16009
|
-
*/
|
|
16010
|
-
domesticId?: string | null;
|
|
16011
|
-
/**
|
|
16012
|
-
* Gets or sets the building name.
|
|
16013
|
-
*/
|
|
16014
|
-
buildingName?: string | null;
|
|
16015
|
-
/**
|
|
16016
|
-
* Gets or sets the company.
|
|
16017
|
-
*/
|
|
16018
|
-
company?: string | null;
|
|
16019
|
-
/**
|
|
16020
|
-
* Gets or sets line 1 of the address.
|
|
16021
|
-
*/
|
|
16022
|
-
line1?: string | null;
|
|
16023
|
-
/**
|
|
16024
|
-
* Gets or sets line 1 of the address.
|
|
16025
|
-
*/
|
|
16026
|
-
line2?: string | null;
|
|
16027
|
-
/**
|
|
16028
|
-
* Gets or sets the admin area name.
|
|
16029
|
-
*/
|
|
16030
|
-
adminAreaName?: string | null;
|
|
16031
|
-
/**
|
|
16032
|
-
* Gets or sets the district.
|
|
16033
|
-
*/
|
|
16034
|
-
district?: string | null;
|
|
16035
|
-
/**
|
|
16036
|
-
* Gets or sets the city.
|
|
16037
|
-
*/
|
|
16038
|
-
city?: string | null;
|
|
16039
|
-
/**
|
|
16040
|
-
* Gets or sets the province.
|
|
16041
|
-
*/
|
|
16042
|
-
province?: string | null;
|
|
16043
|
-
/**
|
|
16044
|
-
* Gets or sets the postal code.
|
|
16045
|
-
*/
|
|
16046
|
-
postalCode?: string | null;
|
|
16047
|
-
/**
|
|
16048
|
-
* Gets or sets the country iso 2 code.
|
|
16049
|
-
*/
|
|
16050
|
-
countryIso2?: string | null;
|
|
16051
|
-
/**
|
|
16052
|
-
* Gets or sets the country iso 3 code.
|
|
16053
|
-
*/
|
|
16054
|
-
countryIso3?: string | null;
|
|
16055
|
-
geocode?: LoqateGeocode;
|
|
16056
|
-
};
|
|
16057
|
-
|
|
16058
|
-
/**
|
|
16059
|
-
* LoqatePrediction.
|
|
16060
|
-
*/
|
|
16061
|
-
type LoqatePrediction = {
|
|
16062
|
-
/**
|
|
16063
|
-
* Gets or sets id.
|
|
16064
|
-
*/
|
|
16065
|
-
id?: string | null;
|
|
16066
|
-
/**
|
|
16067
|
-
* Gets or sets text.
|
|
16068
|
-
*/
|
|
16069
|
-
text?: string | null;
|
|
16070
|
-
/**
|
|
16071
|
-
* Gets or sets text.
|
|
16072
|
-
*/
|
|
16073
|
-
type?: string | null;
|
|
16074
|
-
};
|
|
16075
|
-
|
|
16076
|
-
declare class LoqatePlacesService {
|
|
16077
|
-
readonly httpRequest: BaseHttpRequest;
|
|
16078
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
16079
|
-
/**
|
|
16080
|
-
* GetPrediction.
|
|
16081
|
-
* @returns LoqatePrediction Success
|
|
16082
|
-
* @throws ApiError
|
|
16083
|
-
*/
|
|
16084
|
-
getPrediction({ searchText, countryCode, container, }: {
|
|
16085
|
-
/**
|
|
16086
|
-
* searchText.
|
|
16087
|
-
*/
|
|
16088
|
-
searchText?: string;
|
|
16089
|
-
/**
|
|
16090
|
-
* countryCode.
|
|
16091
|
-
*/
|
|
16092
|
-
countryCode?: string;
|
|
16093
|
-
/**
|
|
16094
|
-
* countryCode.
|
|
16095
|
-
*/
|
|
16096
|
-
container?: string;
|
|
16097
|
-
}): CancelablePromise<Array<LoqatePrediction>>;
|
|
16098
|
-
/**
|
|
16099
|
-
* GetPlace.
|
|
16100
|
-
* @returns LoqatePlaceResult Success
|
|
16101
|
-
* @throws ApiError
|
|
16102
|
-
*/
|
|
16103
|
-
getPlace({ placeId, }: {
|
|
16104
|
-
/**
|
|
16105
|
-
* placeId.
|
|
16106
|
-
*/
|
|
16107
|
-
placeId?: string;
|
|
16108
|
-
}): CancelablePromise<LoqatePlaceResult>;
|
|
16109
|
-
}
|
|
16110
|
-
|
|
16111
|
-
/**
|
|
16112
|
-
* Controls the notification type.
|
|
15990
|
+
* Represents the location report model.
|
|
16113
15991
|
*/
|
|
16114
|
-
|
|
16115
|
-
NEW_BOOKING = "NewBooking",
|
|
16116
|
-
CANCELLATION = "Cancellation",
|
|
16117
|
-
WAITLIST_ACTIVITY = "WaitlistActivity",
|
|
16118
|
-
WAITLIST_OPPORTUNITY = "WaitlistOpportunity",
|
|
16119
|
-
CAPACITY_REACHED = "CapacityReached",
|
|
16120
|
-
CAPACITY75PERCENT = "Capacity75Percent",
|
|
16121
|
-
STRIPE_CONNECTED = "StripeConnected",
|
|
16122
|
-
STRIPE_DISCONECTED = "StripeDisconected",
|
|
16123
|
-
ACTIVITY_SCHEDULE_UPDATED = "ActivityScheduleUpdated",
|
|
16124
|
-
ACTIVITY_PRICE_UPDATED = "ActivityPriceUpdated",
|
|
16125
|
-
NEW_ACTIVITY = "NewActivity",
|
|
16126
|
-
PAYMENT_RECIEVED = "PaymentRecieved",
|
|
16127
|
-
POST_COMPLETION_SURVEY_COMPLETED = "PostCompletionSurveyCompleted"
|
|
16128
|
-
}
|
|
16129
|
-
|
|
16130
|
-
/**
|
|
16131
|
-
* Represents notification queue within the Reach application.
|
|
16132
|
-
*/
|
|
16133
|
-
type NotificationQueue = {
|
|
15992
|
+
type LocationReport = {
|
|
16134
15993
|
/**
|
|
16135
15994
|
* Gets or sets the entities Id.
|
|
16136
15995
|
*/
|
|
@@ -16155,31 +16014,53 @@ type NotificationQueue = {
|
|
|
16155
16014
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
16156
16015
|
*/
|
|
16157
16016
|
isLive: boolean;
|
|
16158
|
-
notificationType?: NotificationType;
|
|
16159
|
-
activityType?: ActivityType;
|
|
16160
16017
|
/**
|
|
16161
|
-
* Gets or sets the
|
|
16018
|
+
* Gets or sets the location name.
|
|
16162
16019
|
*/
|
|
16163
|
-
|
|
16020
|
+
locationName?: string | null;
|
|
16164
16021
|
/**
|
|
16165
|
-
* Gets or sets
|
|
16022
|
+
* Gets or sets the stripe connected.
|
|
16166
16023
|
*/
|
|
16167
|
-
|
|
16024
|
+
stripeConnected?: string | null;
|
|
16168
16025
|
/**
|
|
16169
|
-
* Gets or sets
|
|
16026
|
+
* Gets or sets the online status.
|
|
16170
16027
|
*/
|
|
16171
|
-
|
|
16028
|
+
online?: string | null;
|
|
16029
|
+
/**
|
|
16030
|
+
* Gets or sets the address.
|
|
16031
|
+
*/
|
|
16032
|
+
address?: string | null;
|
|
16033
|
+
/**
|
|
16034
|
+
* Gets or sets the amenities.
|
|
16035
|
+
*/
|
|
16036
|
+
amenities?: string | null;
|
|
16037
|
+
/**
|
|
16038
|
+
* Gets or sets the assigned users.
|
|
16039
|
+
*/
|
|
16040
|
+
assignedUsers?: string | null;
|
|
16041
|
+
/**
|
|
16042
|
+
* Gets or sets the website.
|
|
16043
|
+
*/
|
|
16044
|
+
website?: string | null;
|
|
16045
|
+
/**
|
|
16046
|
+
* Gets or sets the email.
|
|
16047
|
+
*/
|
|
16048
|
+
email?: string | null;
|
|
16049
|
+
/**
|
|
16050
|
+
* Gets or sets the phone number.
|
|
16051
|
+
*/
|
|
16052
|
+
phoneNumber?: string | null;
|
|
16172
16053
|
};
|
|
16173
16054
|
|
|
16174
|
-
type
|
|
16055
|
+
type LocationReportPage = {
|
|
16175
16056
|
pagination: Pagination;
|
|
16176
|
-
readonly items: Array<
|
|
16057
|
+
readonly items: Array<LocationReport>;
|
|
16177
16058
|
};
|
|
16178
16059
|
|
|
16179
16060
|
/**
|
|
16180
|
-
* Post model for
|
|
16061
|
+
* Post model for LocationReport updates.
|
|
16181
16062
|
*/
|
|
16182
|
-
type
|
|
16063
|
+
type LocationReportPatch = {
|
|
16183
16064
|
/**
|
|
16184
16065
|
* Gets or sets the tenant Id.
|
|
16185
16066
|
*/
|
|
@@ -16191,93 +16072,29 @@ type NotificationQueuePatch = {
|
|
|
16191
16072
|
};
|
|
16192
16073
|
|
|
16193
16074
|
/**
|
|
16194
|
-
* Post model for
|
|
16075
|
+
* Post model for LocationReport inserts.
|
|
16195
16076
|
*/
|
|
16196
|
-
type
|
|
16077
|
+
type LocationReportPost = {
|
|
16197
16078
|
/**
|
|
16198
16079
|
* Gets or sets the tenant Id.
|
|
16199
16080
|
*/
|
|
16200
16081
|
tenantId: string;
|
|
16201
16082
|
};
|
|
16202
16083
|
|
|
16203
|
-
declare class
|
|
16084
|
+
declare class LocationsReportService {
|
|
16204
16085
|
readonly httpRequest: BaseHttpRequest;
|
|
16205
16086
|
constructor(httpRequest: BaseHttpRequest);
|
|
16206
16087
|
/**
|
|
16207
|
-
*
|
|
16208
|
-
*
|
|
16209
|
-
* @throws ApiError
|
|
16210
|
-
*/
|
|
16211
|
-
process(): CancelablePromise<number>;
|
|
16212
|
-
/**
|
|
16213
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16214
|
-
* @returns NotificationQueue Success
|
|
16215
|
-
* @throws ApiError
|
|
16216
|
-
*/
|
|
16217
|
-
post({ requestBody, }: {
|
|
16218
|
-
/**
|
|
16219
|
-
* The <typeparamref name="TObject" /> model.
|
|
16220
|
-
*/
|
|
16221
|
-
requestBody?: NotificationQueuePost;
|
|
16222
|
-
}): CancelablePromise<NotificationQueue>;
|
|
16223
|
-
/**
|
|
16224
|
-
* Patches the resource.
|
|
16225
|
-
* @returns NotificationQueue Success
|
|
16226
|
-
* @throws ApiError
|
|
16227
|
-
*/
|
|
16228
|
-
patch({ requestBody, }: {
|
|
16229
|
-
/**
|
|
16230
|
-
* The <typeparamref name="TObject" /> model.
|
|
16231
|
-
*/
|
|
16232
|
-
requestBody?: NotificationQueuePatch;
|
|
16233
|
-
}): CancelablePromise<NotificationQueue>;
|
|
16234
|
-
/**
|
|
16235
|
-
* Inserts a list of resources.
|
|
16236
|
-
* @returns NotificationQueue Success
|
|
16237
|
-
* @throws ApiError
|
|
16238
|
-
*/
|
|
16239
|
-
postList({ requestBody, }: {
|
|
16240
|
-
/**
|
|
16241
|
-
* The list of <typeparamref name="TObject" />.
|
|
16242
|
-
*/
|
|
16243
|
-
requestBody?: Array<NotificationQueuePost>;
|
|
16244
|
-
}): CancelablePromise<Array<NotificationQueue>>;
|
|
16245
|
-
/**
|
|
16246
|
-
* Patches the resource.
|
|
16247
|
-
* @returns NotificationQueue Success
|
|
16248
|
-
* @throws ApiError
|
|
16249
|
-
*/
|
|
16250
|
-
patchWithReferences({ requestBody, }: {
|
|
16251
|
-
/**
|
|
16252
|
-
* The <typeparamref name="TObject" /> model.
|
|
16253
|
-
*/
|
|
16254
|
-
requestBody?: NotificationQueuePatch;
|
|
16255
|
-
}): CancelablePromise<NotificationQueue>;
|
|
16256
|
-
/**
|
|
16257
|
-
* Deletes the resource.
|
|
16088
|
+
* Exports the performance list to a csv format.
|
|
16089
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
16258
16090
|
* @returns any Success
|
|
16259
16091
|
* @throws ApiError
|
|
16260
16092
|
*/
|
|
16261
|
-
|
|
16262
|
-
/**
|
|
16263
|
-
* The <typeparamref name="TObject" /> model.
|
|
16264
|
-
*/
|
|
16265
|
-
requestBody?: NotificationQueue;
|
|
16266
|
-
}): CancelablePromise<any>;
|
|
16267
|
-
/**
|
|
16268
|
-
* Gets a list of resources.
|
|
16269
|
-
* @returns NotificationQueuePage Success
|
|
16270
|
-
* @throws ApiError
|
|
16271
|
-
*/
|
|
16272
|
-
getPage({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16093
|
+
exportToCsv({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
16273
16094
|
/**
|
|
16274
|
-
* Gets or sets the queryable
|
|
16275
|
-
*/
|
|
16276
|
-
processed?: boolean;
|
|
16277
|
-
/**
|
|
16278
|
-
* Gets or sets the queryable errored status.
|
|
16095
|
+
* Gets or sets the queryable User Id.
|
|
16279
16096
|
*/
|
|
16280
|
-
|
|
16097
|
+
userId?: string;
|
|
16281
16098
|
/**
|
|
16282
16099
|
* Gets or sets the page number for paged queries.
|
|
16283
16100
|
*/
|
|
@@ -16322,7 +16139,123 @@ declare class NotificationQueueService {
|
|
|
16322
16139
|
* Gets or sets the sort order direction.
|
|
16323
16140
|
*/
|
|
16324
16141
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16325
|
-
|
|
16142
|
+
formData?: {
|
|
16143
|
+
/**
|
|
16144
|
+
* Gets or sets the auth token.
|
|
16145
|
+
*/
|
|
16146
|
+
Token?: string;
|
|
16147
|
+
};
|
|
16148
|
+
}): CancelablePromise<any>;
|
|
16149
|
+
/**
|
|
16150
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16151
|
+
* @returns LocationReport Success
|
|
16152
|
+
* @throws ApiError
|
|
16153
|
+
*/
|
|
16154
|
+
post({ requestBody, }: {
|
|
16155
|
+
/**
|
|
16156
|
+
* The <typeparamref name="TObject" /> model.
|
|
16157
|
+
*/
|
|
16158
|
+
requestBody?: LocationReportPost;
|
|
16159
|
+
}): CancelablePromise<LocationReport>;
|
|
16160
|
+
/**
|
|
16161
|
+
* Patches the resource.
|
|
16162
|
+
* @returns LocationReport Success
|
|
16163
|
+
* @throws ApiError
|
|
16164
|
+
*/
|
|
16165
|
+
patch({ requestBody, }: {
|
|
16166
|
+
/**
|
|
16167
|
+
* The <typeparamref name="TObject" /> model.
|
|
16168
|
+
*/
|
|
16169
|
+
requestBody?: LocationReportPatch;
|
|
16170
|
+
}): CancelablePromise<LocationReport>;
|
|
16171
|
+
/**
|
|
16172
|
+
* Inserts a list of resources.
|
|
16173
|
+
* @returns LocationReport Success
|
|
16174
|
+
* @throws ApiError
|
|
16175
|
+
*/
|
|
16176
|
+
postList({ requestBody, }: {
|
|
16177
|
+
/**
|
|
16178
|
+
* The list of <typeparamref name="TObject" />.
|
|
16179
|
+
*/
|
|
16180
|
+
requestBody?: Array<LocationReportPost>;
|
|
16181
|
+
}): CancelablePromise<Array<LocationReport>>;
|
|
16182
|
+
/**
|
|
16183
|
+
* Patches the resource.
|
|
16184
|
+
* @returns LocationReport Success
|
|
16185
|
+
* @throws ApiError
|
|
16186
|
+
*/
|
|
16187
|
+
patchWithReferences({ requestBody, }: {
|
|
16188
|
+
/**
|
|
16189
|
+
* The <typeparamref name="TObject" /> model.
|
|
16190
|
+
*/
|
|
16191
|
+
requestBody?: LocationReportPatch;
|
|
16192
|
+
}): CancelablePromise<LocationReport>;
|
|
16193
|
+
/**
|
|
16194
|
+
* Deletes the resource.
|
|
16195
|
+
* @returns any Success
|
|
16196
|
+
* @throws ApiError
|
|
16197
|
+
*/
|
|
16198
|
+
deleteByObject({ requestBody, }: {
|
|
16199
|
+
/**
|
|
16200
|
+
* The <typeparamref name="TObject" /> model.
|
|
16201
|
+
*/
|
|
16202
|
+
requestBody?: LocationReport;
|
|
16203
|
+
}): CancelablePromise<any>;
|
|
16204
|
+
/**
|
|
16205
|
+
* Gets a list of resources.
|
|
16206
|
+
* @returns LocationReportPage Success
|
|
16207
|
+
* @throws ApiError
|
|
16208
|
+
*/
|
|
16209
|
+
getPage({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16210
|
+
/**
|
|
16211
|
+
* Gets or sets the queryable User Id.
|
|
16212
|
+
*/
|
|
16213
|
+
userId?: string;
|
|
16214
|
+
/**
|
|
16215
|
+
* Gets or sets the page number for paged queries.
|
|
16216
|
+
*/
|
|
16217
|
+
pageNumber?: number;
|
|
16218
|
+
/**
|
|
16219
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16220
|
+
*/
|
|
16221
|
+
take?: number;
|
|
16222
|
+
/**
|
|
16223
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
16224
|
+
*/
|
|
16225
|
+
skip?: number;
|
|
16226
|
+
/**
|
|
16227
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16228
|
+
*/
|
|
16229
|
+
limitListRequests?: boolean;
|
|
16230
|
+
/**
|
|
16231
|
+
* Gets or sets the Tenant Id.
|
|
16232
|
+
*/
|
|
16233
|
+
tenantId?: string;
|
|
16234
|
+
/**
|
|
16235
|
+
* Gets or sets the Modifed By Id.
|
|
16236
|
+
*/
|
|
16237
|
+
modifiedById?: string;
|
|
16238
|
+
/**
|
|
16239
|
+
* Gets or sets the Modifed By Ids.
|
|
16240
|
+
*/
|
|
16241
|
+
modifiedByIds?: Array<string>;
|
|
16242
|
+
/**
|
|
16243
|
+
* Gets or sets the Date Created greater than equal to.
|
|
16244
|
+
*/
|
|
16245
|
+
dateCreatedGte?: string;
|
|
16246
|
+
/**
|
|
16247
|
+
* Gets or sets the Date Created less than equal to.
|
|
16248
|
+
*/
|
|
16249
|
+
dateCreatedLte?: string;
|
|
16250
|
+
/**
|
|
16251
|
+
* Gets or sets the queryable only is live status.
|
|
16252
|
+
*/
|
|
16253
|
+
isLive?: boolean;
|
|
16254
|
+
/**
|
|
16255
|
+
* Gets or sets the sort order direction.
|
|
16256
|
+
*/
|
|
16257
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
16258
|
+
}): CancelablePromise<LocationReportPage>;
|
|
16326
16259
|
/**
|
|
16327
16260
|
* Deletes the resource.
|
|
16328
16261
|
* @returns any Success
|
|
@@ -16336,7 +16269,7 @@ declare class NotificationQueueService {
|
|
|
16336
16269
|
}): CancelablePromise<any>;
|
|
16337
16270
|
/**
|
|
16338
16271
|
* Gets the resource by its Id.
|
|
16339
|
-
* @returns
|
|
16272
|
+
* @returns LocationReport Success
|
|
16340
16273
|
* @throws ApiError
|
|
16341
16274
|
*/
|
|
16342
16275
|
getObject({ id, }: {
|
|
@@ -16344,7 +16277,7 @@ declare class NotificationQueueService {
|
|
|
16344
16277
|
* The <typeparamref name="TObject" /> id.
|
|
16345
16278
|
*/
|
|
16346
16279
|
id: string;
|
|
16347
|
-
}): CancelablePromise<
|
|
16280
|
+
}): CancelablePromise<LocationReport>;
|
|
16348
16281
|
/**
|
|
16349
16282
|
* Returns a value indicating whether the resource is deletable.
|
|
16350
16283
|
* @returns boolean Success
|
|
@@ -16361,15 +16294,11 @@ declare class NotificationQueueService {
|
|
|
16361
16294
|
* @returns boolean Success
|
|
16362
16295
|
* @throws ApiError
|
|
16363
16296
|
*/
|
|
16364
|
-
exists({
|
|
16365
|
-
/**
|
|
16366
|
-
* Gets or sets the queryable processed status.
|
|
16367
|
-
*/
|
|
16368
|
-
processed?: boolean;
|
|
16297
|
+
exists({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16369
16298
|
/**
|
|
16370
|
-
* Gets or sets the queryable
|
|
16299
|
+
* Gets or sets the queryable User Id.
|
|
16371
16300
|
*/
|
|
16372
|
-
|
|
16301
|
+
userId?: string;
|
|
16373
16302
|
/**
|
|
16374
16303
|
* Gets or sets the page number for paged queries.
|
|
16375
16304
|
*/
|
|
@@ -16417,18 +16346,14 @@ declare class NotificationQueueService {
|
|
|
16417
16346
|
}): CancelablePromise<boolean>;
|
|
16418
16347
|
/**
|
|
16419
16348
|
* Gets a list of resources unpaged and without references.
|
|
16420
|
-
* @returns
|
|
16349
|
+
* @returns LocationReport Success
|
|
16421
16350
|
* @throws ApiError
|
|
16422
16351
|
*/
|
|
16423
|
-
getListWithoutReferences({
|
|
16424
|
-
/**
|
|
16425
|
-
* Gets or sets the queryable processed status.
|
|
16426
|
-
*/
|
|
16427
|
-
processed?: boolean;
|
|
16352
|
+
getListWithoutReferences({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16428
16353
|
/**
|
|
16429
|
-
* Gets or sets the queryable
|
|
16354
|
+
* Gets or sets the queryable User Id.
|
|
16430
16355
|
*/
|
|
16431
|
-
|
|
16356
|
+
userId?: string;
|
|
16432
16357
|
/**
|
|
16433
16358
|
* Gets or sets the page number for paged queries.
|
|
16434
16359
|
*/
|
|
@@ -16473,21 +16398,17 @@ declare class NotificationQueueService {
|
|
|
16473
16398
|
* Gets or sets the sort order direction.
|
|
16474
16399
|
*/
|
|
16475
16400
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16476
|
-
}): CancelablePromise<Array<
|
|
16401
|
+
}): CancelablePromise<Array<LocationReport>>;
|
|
16477
16402
|
/**
|
|
16478
16403
|
* Gets a list of resources.
|
|
16479
|
-
* @returns
|
|
16404
|
+
* @returns LocationReport Success
|
|
16480
16405
|
* @throws ApiError
|
|
16481
16406
|
*/
|
|
16482
|
-
getListIdName({
|
|
16483
|
-
/**
|
|
16484
|
-
* Gets or sets the queryable processed status.
|
|
16485
|
-
*/
|
|
16486
|
-
processed?: boolean;
|
|
16407
|
+
getListIdName({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16487
16408
|
/**
|
|
16488
|
-
* Gets or sets the queryable
|
|
16409
|
+
* Gets or sets the queryable User Id.
|
|
16489
16410
|
*/
|
|
16490
|
-
|
|
16411
|
+
userId?: string;
|
|
16491
16412
|
/**
|
|
16492
16413
|
* Gets or sets the page number for paged queries.
|
|
16493
16414
|
*/
|
|
@@ -16532,223 +16453,284 @@ declare class NotificationQueueService {
|
|
|
16532
16453
|
* Gets or sets the sort order direction.
|
|
16533
16454
|
*/
|
|
16534
16455
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16535
|
-
}): CancelablePromise<Array<
|
|
16456
|
+
}): CancelablePromise<Array<LocationReport>>;
|
|
16536
16457
|
}
|
|
16537
16458
|
|
|
16538
16459
|
/**
|
|
16539
|
-
*
|
|
16460
|
+
* LoqatePrediction.
|
|
16540
16461
|
*/
|
|
16541
|
-
type
|
|
16542
|
-
/**
|
|
16543
|
-
* Gets or sets the entities Id.
|
|
16544
|
-
*/
|
|
16545
|
-
id?: string;
|
|
16546
|
-
/**
|
|
16547
|
-
* Gets or sets the tenant Id.
|
|
16548
|
-
*/
|
|
16549
|
-
tenantId: string;
|
|
16550
|
-
/**
|
|
16551
|
-
* Gets or sets the created date of this entity.
|
|
16552
|
-
*/
|
|
16553
|
-
dateCreated: string;
|
|
16554
|
-
/**
|
|
16555
|
-
* Gets or sets the last modified date of this entity.
|
|
16556
|
-
*/
|
|
16557
|
-
dateModified: string;
|
|
16462
|
+
type LoqateGeocode = {
|
|
16558
16463
|
/**
|
|
16559
|
-
* Gets or sets
|
|
16464
|
+
* Gets or sets result.
|
|
16560
16465
|
*/
|
|
16561
|
-
|
|
16466
|
+
name?: string | null;
|
|
16562
16467
|
/**
|
|
16563
|
-
* Gets or sets
|
|
16468
|
+
* Gets or sets result.
|
|
16564
16469
|
*/
|
|
16565
|
-
|
|
16470
|
+
latitude?: number;
|
|
16566
16471
|
/**
|
|
16567
|
-
* Gets or sets
|
|
16472
|
+
* Gets or sets result.
|
|
16568
16473
|
*/
|
|
16569
|
-
|
|
16474
|
+
longitude?: number;
|
|
16475
|
+
};
|
|
16476
|
+
|
|
16477
|
+
/**
|
|
16478
|
+
* PlaceResult.
|
|
16479
|
+
*/
|
|
16480
|
+
type LoqatePlaceResult = {
|
|
16570
16481
|
/**
|
|
16571
|
-
* Gets or sets
|
|
16482
|
+
* Gets or sets id.
|
|
16572
16483
|
*/
|
|
16573
|
-
|
|
16484
|
+
id?: string | null;
|
|
16574
16485
|
/**
|
|
16575
|
-
* Gets or sets
|
|
16486
|
+
* Gets or sets id.
|
|
16576
16487
|
*/
|
|
16577
|
-
|
|
16488
|
+
domesticId?: string | null;
|
|
16578
16489
|
/**
|
|
16579
|
-
* Gets or sets
|
|
16490
|
+
* Gets or sets the building name.
|
|
16580
16491
|
*/
|
|
16581
|
-
|
|
16492
|
+
buildingName?: string | null;
|
|
16582
16493
|
/**
|
|
16583
|
-
* Gets or sets
|
|
16494
|
+
* Gets or sets the company.
|
|
16584
16495
|
*/
|
|
16585
|
-
|
|
16496
|
+
company?: string | null;
|
|
16586
16497
|
/**
|
|
16587
|
-
* Gets or sets
|
|
16498
|
+
* Gets or sets line 1 of the address.
|
|
16588
16499
|
*/
|
|
16589
|
-
|
|
16500
|
+
line1?: string | null;
|
|
16590
16501
|
/**
|
|
16591
|
-
* Gets or sets
|
|
16502
|
+
* Gets or sets line 1 of the address.
|
|
16592
16503
|
*/
|
|
16593
|
-
|
|
16504
|
+
line2?: string | null;
|
|
16594
16505
|
/**
|
|
16595
|
-
* Gets or sets
|
|
16506
|
+
* Gets or sets the admin area name.
|
|
16596
16507
|
*/
|
|
16597
|
-
|
|
16508
|
+
adminAreaName?: string | null;
|
|
16598
16509
|
/**
|
|
16599
|
-
* Gets or sets
|
|
16510
|
+
* Gets or sets the district.
|
|
16600
16511
|
*/
|
|
16601
|
-
|
|
16512
|
+
district?: string | null;
|
|
16602
16513
|
/**
|
|
16603
|
-
* Gets or sets
|
|
16514
|
+
* Gets or sets the city.
|
|
16604
16515
|
*/
|
|
16605
|
-
|
|
16516
|
+
city?: string | null;
|
|
16606
16517
|
/**
|
|
16607
|
-
* Gets or sets
|
|
16518
|
+
* Gets or sets the province.
|
|
16608
16519
|
*/
|
|
16609
|
-
|
|
16520
|
+
province?: string | null;
|
|
16610
16521
|
/**
|
|
16611
|
-
* Gets or sets
|
|
16522
|
+
* Gets or sets the postal code.
|
|
16612
16523
|
*/
|
|
16613
|
-
|
|
16524
|
+
postalCode?: string | null;
|
|
16614
16525
|
/**
|
|
16615
|
-
* Gets or sets
|
|
16526
|
+
* Gets or sets the country iso 2 code.
|
|
16616
16527
|
*/
|
|
16617
|
-
|
|
16528
|
+
countryIso2?: string | null;
|
|
16618
16529
|
/**
|
|
16619
|
-
* Gets or sets
|
|
16530
|
+
* Gets or sets the country iso 3 code.
|
|
16620
16531
|
*/
|
|
16621
|
-
|
|
16622
|
-
|
|
16623
|
-
|
|
16624
|
-
type NotificationSettingPage = {
|
|
16625
|
-
pagination: Pagination;
|
|
16626
|
-
readonly items: Array<NotificationSetting>;
|
|
16532
|
+
countryIso3?: string | null;
|
|
16533
|
+
geocode?: LoqateGeocode;
|
|
16627
16534
|
};
|
|
16628
16535
|
|
|
16629
16536
|
/**
|
|
16630
|
-
*
|
|
16537
|
+
* LoqatePrediction.
|
|
16631
16538
|
*/
|
|
16632
|
-
type
|
|
16539
|
+
type LoqatePrediction = {
|
|
16633
16540
|
/**
|
|
16634
|
-
* Gets or sets
|
|
16541
|
+
* Gets or sets id.
|
|
16635
16542
|
*/
|
|
16636
|
-
|
|
16543
|
+
id?: string | null;
|
|
16637
16544
|
/**
|
|
16638
|
-
* Gets or sets
|
|
16545
|
+
* Gets or sets text.
|
|
16639
16546
|
*/
|
|
16640
|
-
|
|
16547
|
+
text?: string | null;
|
|
16641
16548
|
/**
|
|
16642
|
-
* Gets or sets
|
|
16549
|
+
* Gets or sets text.
|
|
16643
16550
|
*/
|
|
16644
|
-
|
|
16551
|
+
type?: string | null;
|
|
16552
|
+
};
|
|
16553
|
+
|
|
16554
|
+
declare class LoqatePlacesService {
|
|
16555
|
+
readonly httpRequest: BaseHttpRequest;
|
|
16556
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
16645
16557
|
/**
|
|
16646
|
-
*
|
|
16558
|
+
* GetPrediction.
|
|
16559
|
+
* @returns LoqatePrediction Success
|
|
16560
|
+
* @throws ApiError
|
|
16647
16561
|
*/
|
|
16648
|
-
|
|
16562
|
+
getPrediction({ searchText, countryCode, container, }: {
|
|
16563
|
+
/**
|
|
16564
|
+
* searchText.
|
|
16565
|
+
*/
|
|
16566
|
+
searchText?: string;
|
|
16567
|
+
/**
|
|
16568
|
+
* countryCode.
|
|
16569
|
+
*/
|
|
16570
|
+
countryCode?: string;
|
|
16571
|
+
/**
|
|
16572
|
+
* countryCode.
|
|
16573
|
+
*/
|
|
16574
|
+
container?: string;
|
|
16575
|
+
}): CancelablePromise<Array<LoqatePrediction>>;
|
|
16649
16576
|
/**
|
|
16650
|
-
*
|
|
16577
|
+
* GetPlace.
|
|
16578
|
+
* @returns LoqatePlaceResult Success
|
|
16579
|
+
* @throws ApiError
|
|
16651
16580
|
*/
|
|
16652
|
-
|
|
16581
|
+
getPlace({ placeId, }: {
|
|
16582
|
+
/**
|
|
16583
|
+
* placeId.
|
|
16584
|
+
*/
|
|
16585
|
+
placeId?: string;
|
|
16586
|
+
}): CancelablePromise<LoqatePlaceResult>;
|
|
16587
|
+
}
|
|
16588
|
+
|
|
16589
|
+
/**
|
|
16590
|
+
* Controls the notification type.
|
|
16591
|
+
*/
|
|
16592
|
+
declare enum NotificationType {
|
|
16593
|
+
NEW_BOOKING = "NewBooking",
|
|
16594
|
+
CANCELLATION = "Cancellation",
|
|
16595
|
+
WAITLIST_ACTIVITY = "WaitlistActivity",
|
|
16596
|
+
WAITLIST_OPPORTUNITY = "WaitlistOpportunity",
|
|
16597
|
+
CAPACITY_REACHED = "CapacityReached",
|
|
16598
|
+
CAPACITY75PERCENT = "Capacity75Percent",
|
|
16599
|
+
STRIPE_CONNECTED = "StripeConnected",
|
|
16600
|
+
STRIPE_DISCONECTED = "StripeDisconected",
|
|
16601
|
+
ACTIVITY_SCHEDULE_UPDATED = "ActivityScheduleUpdated",
|
|
16602
|
+
ACTIVITY_PRICE_UPDATED = "ActivityPriceUpdated",
|
|
16603
|
+
NEW_ACTIVITY = "NewActivity",
|
|
16604
|
+
PAYMENT_RECIEVED = "PaymentRecieved",
|
|
16605
|
+
POST_COMPLETION_SURVEY_COMPLETED = "PostCompletionSurveyCompleted"
|
|
16606
|
+
}
|
|
16607
|
+
|
|
16608
|
+
/**
|
|
16609
|
+
* Represents notification queue within the Reach application.
|
|
16610
|
+
*/
|
|
16611
|
+
type NotificationQueue = {
|
|
16653
16612
|
/**
|
|
16654
|
-
* Gets or sets
|
|
16613
|
+
* Gets or sets the entities Id.
|
|
16655
16614
|
*/
|
|
16656
|
-
|
|
16615
|
+
id?: string;
|
|
16657
16616
|
/**
|
|
16658
|
-
* Gets or sets
|
|
16617
|
+
* Gets or sets the tenant Id.
|
|
16659
16618
|
*/
|
|
16660
|
-
|
|
16619
|
+
tenantId: string;
|
|
16661
16620
|
/**
|
|
16662
|
-
* Gets or sets
|
|
16621
|
+
* Gets or sets the created date of this entity.
|
|
16663
16622
|
*/
|
|
16664
|
-
|
|
16623
|
+
dateCreated: string;
|
|
16665
16624
|
/**
|
|
16666
|
-
* Gets or sets
|
|
16625
|
+
* Gets or sets the last modified date of this entity.
|
|
16667
16626
|
*/
|
|
16668
|
-
|
|
16627
|
+
dateModified: string;
|
|
16669
16628
|
/**
|
|
16670
|
-
* Gets or sets
|
|
16629
|
+
* Gets or sets the modified by Id.
|
|
16671
16630
|
*/
|
|
16672
|
-
|
|
16631
|
+
modifiedById?: string | null;
|
|
16673
16632
|
/**
|
|
16674
|
-
* Gets or sets a value indicating whether
|
|
16633
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
16675
16634
|
*/
|
|
16676
|
-
|
|
16635
|
+
isLive: boolean;
|
|
16636
|
+
notificationType?: NotificationType;
|
|
16637
|
+
activityType?: ActivityType;
|
|
16677
16638
|
/**
|
|
16678
|
-
* Gets or sets
|
|
16639
|
+
* Gets or sets the model id.
|
|
16679
16640
|
*/
|
|
16680
|
-
|
|
16641
|
+
modelId?: string;
|
|
16681
16642
|
/**
|
|
16682
|
-
* Gets or sets a value indicating whether notification
|
|
16643
|
+
* Gets or sets a value indicating whether notification has been processed.
|
|
16683
16644
|
*/
|
|
16684
|
-
|
|
16645
|
+
processed?: boolean;
|
|
16685
16646
|
/**
|
|
16686
|
-
* Gets or sets a value indicating whether notification
|
|
16647
|
+
* Gets or sets a value indicating whether notification has errored.
|
|
16687
16648
|
*/
|
|
16688
|
-
|
|
16649
|
+
errored?: boolean;
|
|
16650
|
+
};
|
|
16651
|
+
|
|
16652
|
+
type NotificationQueuePage = {
|
|
16653
|
+
pagination: Pagination;
|
|
16654
|
+
readonly items: Array<NotificationQueue>;
|
|
16655
|
+
};
|
|
16656
|
+
|
|
16657
|
+
/**
|
|
16658
|
+
* Post model for notification queue updates.
|
|
16659
|
+
*/
|
|
16660
|
+
type NotificationQueuePatch = {
|
|
16689
16661
|
/**
|
|
16690
|
-
* Gets or sets
|
|
16662
|
+
* Gets or sets the tenant Id.
|
|
16691
16663
|
*/
|
|
16692
|
-
|
|
16664
|
+
tenantId: string;
|
|
16665
|
+
/**
|
|
16666
|
+
* Gets or sets the Id.
|
|
16667
|
+
*/
|
|
16668
|
+
id: string;
|
|
16693
16669
|
};
|
|
16694
16670
|
|
|
16695
16671
|
/**
|
|
16696
|
-
* Post model for notification
|
|
16672
|
+
* Post model for notification queue inserts.
|
|
16697
16673
|
*/
|
|
16698
|
-
type
|
|
16674
|
+
type NotificationQueuePost = {
|
|
16699
16675
|
/**
|
|
16700
16676
|
* Gets or sets the tenant Id.
|
|
16701
16677
|
*/
|
|
16702
16678
|
tenantId: string;
|
|
16703
16679
|
};
|
|
16704
16680
|
|
|
16705
|
-
declare class
|
|
16681
|
+
declare class NotificationQueueService {
|
|
16706
16682
|
readonly httpRequest: BaseHttpRequest;
|
|
16707
16683
|
constructor(httpRequest: BaseHttpRequest);
|
|
16684
|
+
/**
|
|
16685
|
+
* Processes the OA intermediates table.
|
|
16686
|
+
* @returns number Success
|
|
16687
|
+
* @throws ApiError
|
|
16688
|
+
*/
|
|
16689
|
+
process(): CancelablePromise<number>;
|
|
16708
16690
|
/**
|
|
16709
16691
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16710
|
-
* @returns
|
|
16692
|
+
* @returns NotificationQueue Success
|
|
16711
16693
|
* @throws ApiError
|
|
16712
16694
|
*/
|
|
16713
16695
|
post({ requestBody, }: {
|
|
16714
16696
|
/**
|
|
16715
16697
|
* The <typeparamref name="TObject" /> model.
|
|
16716
16698
|
*/
|
|
16717
|
-
requestBody?:
|
|
16718
|
-
}): CancelablePromise<
|
|
16699
|
+
requestBody?: NotificationQueuePost;
|
|
16700
|
+
}): CancelablePromise<NotificationQueue>;
|
|
16719
16701
|
/**
|
|
16720
16702
|
* Patches the resource.
|
|
16721
|
-
* @returns
|
|
16703
|
+
* @returns NotificationQueue Success
|
|
16722
16704
|
* @throws ApiError
|
|
16723
16705
|
*/
|
|
16724
16706
|
patch({ requestBody, }: {
|
|
16725
16707
|
/**
|
|
16726
16708
|
* The <typeparamref name="TObject" /> model.
|
|
16727
16709
|
*/
|
|
16728
|
-
requestBody?:
|
|
16729
|
-
}): CancelablePromise<
|
|
16710
|
+
requestBody?: NotificationQueuePatch;
|
|
16711
|
+
}): CancelablePromise<NotificationQueue>;
|
|
16730
16712
|
/**
|
|
16731
16713
|
* Inserts a list of resources.
|
|
16732
|
-
* @returns
|
|
16714
|
+
* @returns NotificationQueue Success
|
|
16733
16715
|
* @throws ApiError
|
|
16734
16716
|
*/
|
|
16735
16717
|
postList({ requestBody, }: {
|
|
16736
16718
|
/**
|
|
16737
16719
|
* The list of <typeparamref name="TObject" />.
|
|
16738
16720
|
*/
|
|
16739
|
-
requestBody?: Array<
|
|
16740
|
-
}): CancelablePromise<Array<
|
|
16721
|
+
requestBody?: Array<NotificationQueuePost>;
|
|
16722
|
+
}): CancelablePromise<Array<NotificationQueue>>;
|
|
16741
16723
|
/**
|
|
16742
16724
|
* Patches the resource.
|
|
16743
|
-
* @returns
|
|
16725
|
+
* @returns NotificationQueue Success
|
|
16744
16726
|
* @throws ApiError
|
|
16745
16727
|
*/
|
|
16746
16728
|
patchWithReferences({ requestBody, }: {
|
|
16747
16729
|
/**
|
|
16748
16730
|
* The <typeparamref name="TObject" /> model.
|
|
16749
16731
|
*/
|
|
16750
|
-
requestBody?:
|
|
16751
|
-
}): CancelablePromise<
|
|
16732
|
+
requestBody?: NotificationQueuePatch;
|
|
16733
|
+
}): CancelablePromise<NotificationQueue>;
|
|
16752
16734
|
/**
|
|
16753
16735
|
* Deletes the resource.
|
|
16754
16736
|
* @returns any Success
|
|
@@ -16758,70 +16740,22 @@ declare class NotificationSettingsService {
|
|
|
16758
16740
|
/**
|
|
16759
16741
|
* The <typeparamref name="TObject" /> model.
|
|
16760
16742
|
*/
|
|
16761
|
-
requestBody?:
|
|
16743
|
+
requestBody?: NotificationQueue;
|
|
16762
16744
|
}): CancelablePromise<any>;
|
|
16763
16745
|
/**
|
|
16764
16746
|
* Gets a list of resources.
|
|
16765
|
-
* @returns
|
|
16747
|
+
* @returns NotificationQueuePage Success
|
|
16766
16748
|
* @throws ApiError
|
|
16767
16749
|
*/
|
|
16768
|
-
getPage({
|
|
16769
|
-
/**
|
|
16770
|
-
* Gets or sets the queryable user id.
|
|
16771
|
-
*/
|
|
16772
|
-
userId?: string;
|
|
16773
|
-
/**
|
|
16774
|
-
* Gets or sets the queryable new booking flag.
|
|
16775
|
-
*/
|
|
16776
|
-
newBooking?: boolean;
|
|
16777
|
-
/**
|
|
16778
|
-
* Gets or sets the queryable cancellation flag.
|
|
16779
|
-
*/
|
|
16780
|
-
cancellation?: boolean;
|
|
16781
|
-
/**
|
|
16782
|
-
* Gets or sets the queryable waitlist activity flag.
|
|
16783
|
-
*/
|
|
16784
|
-
waitlistActivity?: boolean;
|
|
16785
|
-
/**
|
|
16786
|
-
* Gets or sets the queryable waitlist opportunity flag.
|
|
16787
|
-
*/
|
|
16788
|
-
waitlistOpportunity?: boolean;
|
|
16789
|
-
/**
|
|
16790
|
-
* Gets or sets the queryable capacity reached flag.
|
|
16791
|
-
*/
|
|
16792
|
-
capacityReached?: boolean;
|
|
16793
|
-
/**
|
|
16794
|
-
* Gets or sets the queryable capacity reached flag.
|
|
16795
|
-
*/
|
|
16796
|
-
capacity75Percent?: boolean;
|
|
16797
|
-
/**
|
|
16798
|
-
* Gets or sets the queryable stripe connected flag.
|
|
16799
|
-
*/
|
|
16800
|
-
stripeConnected?: boolean;
|
|
16801
|
-
/**
|
|
16802
|
-
* Gets or sets the queryable stripe disconnected flag.
|
|
16803
|
-
*/
|
|
16804
|
-
stripeDisconnected?: boolean;
|
|
16805
|
-
/**
|
|
16806
|
-
* Gets or sets the queryable activity schedule updated flag.
|
|
16807
|
-
*/
|
|
16808
|
-
activityScheduleUpdated?: boolean;
|
|
16809
|
-
/**
|
|
16810
|
-
* Gets or sets the queryable activity price updated flag.
|
|
16811
|
-
*/
|
|
16812
|
-
activityPriceUpdated?: boolean;
|
|
16813
|
-
/**
|
|
16814
|
-
* Gets or sets the queryable new activity flag.
|
|
16815
|
-
*/
|
|
16816
|
-
newActivity?: boolean;
|
|
16750
|
+
getPage({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16817
16751
|
/**
|
|
16818
|
-
* Gets or sets the queryable
|
|
16752
|
+
* Gets or sets the queryable processed status.
|
|
16819
16753
|
*/
|
|
16820
|
-
|
|
16754
|
+
processed?: boolean;
|
|
16821
16755
|
/**
|
|
16822
|
-
* Gets or sets the queryable
|
|
16756
|
+
* Gets or sets the queryable errored status.
|
|
16823
16757
|
*/
|
|
16824
|
-
|
|
16758
|
+
errored?: boolean;
|
|
16825
16759
|
/**
|
|
16826
16760
|
* Gets or sets the page number for paged queries.
|
|
16827
16761
|
*/
|
|
@@ -16866,7 +16800,7 @@ declare class NotificationSettingsService {
|
|
|
16866
16800
|
* Gets or sets the sort order direction.
|
|
16867
16801
|
*/
|
|
16868
16802
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16869
|
-
}): CancelablePromise<
|
|
16803
|
+
}): CancelablePromise<NotificationQueuePage>;
|
|
16870
16804
|
/**
|
|
16871
16805
|
* Deletes the resource.
|
|
16872
16806
|
* @returns any Success
|
|
@@ -16880,7 +16814,7 @@ declare class NotificationSettingsService {
|
|
|
16880
16814
|
}): CancelablePromise<any>;
|
|
16881
16815
|
/**
|
|
16882
16816
|
* Gets the resource by its Id.
|
|
16883
|
-
* @returns
|
|
16817
|
+
* @returns NotificationQueue Success
|
|
16884
16818
|
* @throws ApiError
|
|
16885
16819
|
*/
|
|
16886
16820
|
getObject({ id, }: {
|
|
@@ -16888,7 +16822,7 @@ declare class NotificationSettingsService {
|
|
|
16888
16822
|
* The <typeparamref name="TObject" /> id.
|
|
16889
16823
|
*/
|
|
16890
16824
|
id: string;
|
|
16891
|
-
}): CancelablePromise<
|
|
16825
|
+
}): CancelablePromise<NotificationQueue>;
|
|
16892
16826
|
/**
|
|
16893
16827
|
* Returns a value indicating whether the resource is deletable.
|
|
16894
16828
|
* @returns boolean Success
|
|
@@ -16905,93 +16839,45 @@ declare class NotificationSettingsService {
|
|
|
16905
16839
|
* @returns boolean Success
|
|
16906
16840
|
* @throws ApiError
|
|
16907
16841
|
*/
|
|
16908
|
-
exists({
|
|
16842
|
+
exists({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16909
16843
|
/**
|
|
16910
|
-
* Gets or sets the queryable
|
|
16844
|
+
* Gets or sets the queryable processed status.
|
|
16911
16845
|
*/
|
|
16912
|
-
|
|
16846
|
+
processed?: boolean;
|
|
16913
16847
|
/**
|
|
16914
|
-
* Gets or sets the queryable
|
|
16848
|
+
* Gets or sets the queryable errored status.
|
|
16915
16849
|
*/
|
|
16916
|
-
|
|
16850
|
+
errored?: boolean;
|
|
16917
16851
|
/**
|
|
16918
|
-
* Gets or sets the
|
|
16852
|
+
* Gets or sets the page number for paged queries.
|
|
16919
16853
|
*/
|
|
16920
|
-
|
|
16854
|
+
pageNumber?: number;
|
|
16921
16855
|
/**
|
|
16922
|
-
* Gets or sets the
|
|
16856
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16923
16857
|
*/
|
|
16924
|
-
|
|
16858
|
+
take?: number;
|
|
16925
16859
|
/**
|
|
16926
|
-
* Gets or sets
|
|
16860
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
16927
16861
|
*/
|
|
16928
|
-
|
|
16862
|
+
skip?: number;
|
|
16929
16863
|
/**
|
|
16930
|
-
* Gets or sets the
|
|
16864
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16931
16865
|
*/
|
|
16932
|
-
|
|
16866
|
+
limitListRequests?: boolean;
|
|
16933
16867
|
/**
|
|
16934
|
-
* Gets or sets the
|
|
16868
|
+
* Gets or sets the Tenant Id.
|
|
16935
16869
|
*/
|
|
16936
|
-
|
|
16870
|
+
tenantId?: string;
|
|
16937
16871
|
/**
|
|
16938
|
-
* Gets or sets the
|
|
16872
|
+
* Gets or sets the Modifed By Id.
|
|
16939
16873
|
*/
|
|
16940
|
-
|
|
16874
|
+
modifiedById?: string;
|
|
16941
16875
|
/**
|
|
16942
|
-
* Gets or sets the
|
|
16876
|
+
* Gets or sets the Modifed By Ids.
|
|
16943
16877
|
*/
|
|
16944
|
-
|
|
16878
|
+
modifiedByIds?: Array<string>;
|
|
16945
16879
|
/**
|
|
16946
|
-
* Gets or sets the
|
|
16947
|
-
*/
|
|
16948
|
-
activityScheduleUpdated?: boolean;
|
|
16949
|
-
/**
|
|
16950
|
-
* Gets or sets the queryable activity price updated flag.
|
|
16951
|
-
*/
|
|
16952
|
-
activityPriceUpdated?: boolean;
|
|
16953
|
-
/**
|
|
16954
|
-
* Gets or sets the queryable new activity flag.
|
|
16955
|
-
*/
|
|
16956
|
-
newActivity?: boolean;
|
|
16957
|
-
/**
|
|
16958
|
-
* Gets or sets the queryable payment received flag.
|
|
16959
|
-
*/
|
|
16960
|
-
paymentReceived?: boolean;
|
|
16961
|
-
/**
|
|
16962
|
-
* Gets or sets the queryable post completion survey completed flag.
|
|
16963
|
-
*/
|
|
16964
|
-
postCompletionSurveyCompleted?: boolean;
|
|
16965
|
-
/**
|
|
16966
|
-
* Gets or sets the page number for paged queries.
|
|
16967
|
-
*/
|
|
16968
|
-
pageNumber?: number;
|
|
16969
|
-
/**
|
|
16970
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16971
|
-
*/
|
|
16972
|
-
take?: number;
|
|
16973
|
-
/**
|
|
16974
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
16975
|
-
*/
|
|
16976
|
-
skip?: number;
|
|
16977
|
-
/**
|
|
16978
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16979
|
-
*/
|
|
16980
|
-
limitListRequests?: boolean;
|
|
16981
|
-
/**
|
|
16982
|
-
* Gets or sets the Tenant Id.
|
|
16983
|
-
*/
|
|
16984
|
-
tenantId?: string;
|
|
16985
|
-
/**
|
|
16986
|
-
* Gets or sets the Modifed By Id.
|
|
16987
|
-
*/
|
|
16988
|
-
modifiedById?: string;
|
|
16989
|
-
/**
|
|
16990
|
-
* Gets or sets the Modifed By Ids.
|
|
16991
|
-
*/
|
|
16992
|
-
modifiedByIds?: Array<string>;
|
|
16993
|
-
/**
|
|
16994
|
-
* Gets or sets the Date Created greater than equal to.
|
|
16880
|
+
* Gets or sets the Date Created greater than equal to.
|
|
16995
16881
|
*/
|
|
16996
16882
|
dateCreatedGte?: string;
|
|
16997
16883
|
/**
|
|
@@ -17009,66 +16895,18 @@ declare class NotificationSettingsService {
|
|
|
17009
16895
|
}): CancelablePromise<boolean>;
|
|
17010
16896
|
/**
|
|
17011
16897
|
* Gets a list of resources unpaged and without references.
|
|
17012
|
-
* @returns
|
|
16898
|
+
* @returns NotificationQueue Success
|
|
17013
16899
|
* @throws ApiError
|
|
17014
16900
|
*/
|
|
17015
|
-
getListWithoutReferences({
|
|
17016
|
-
/**
|
|
17017
|
-
* Gets or sets the queryable user id.
|
|
17018
|
-
*/
|
|
17019
|
-
userId?: string;
|
|
17020
|
-
/**
|
|
17021
|
-
* Gets or sets the queryable new booking flag.
|
|
17022
|
-
*/
|
|
17023
|
-
newBooking?: boolean;
|
|
17024
|
-
/**
|
|
17025
|
-
* Gets or sets the queryable cancellation flag.
|
|
17026
|
-
*/
|
|
17027
|
-
cancellation?: boolean;
|
|
17028
|
-
/**
|
|
17029
|
-
* Gets or sets the queryable waitlist activity flag.
|
|
17030
|
-
*/
|
|
17031
|
-
waitlistActivity?: boolean;
|
|
17032
|
-
/**
|
|
17033
|
-
* Gets or sets the queryable waitlist opportunity flag.
|
|
17034
|
-
*/
|
|
17035
|
-
waitlistOpportunity?: boolean;
|
|
17036
|
-
/**
|
|
17037
|
-
* Gets or sets the queryable capacity reached flag.
|
|
17038
|
-
*/
|
|
17039
|
-
capacityReached?: boolean;
|
|
17040
|
-
/**
|
|
17041
|
-
* Gets or sets the queryable capacity reached flag.
|
|
17042
|
-
*/
|
|
17043
|
-
capacity75Percent?: boolean;
|
|
17044
|
-
/**
|
|
17045
|
-
* Gets or sets the queryable stripe connected flag.
|
|
17046
|
-
*/
|
|
17047
|
-
stripeConnected?: boolean;
|
|
17048
|
-
/**
|
|
17049
|
-
* Gets or sets the queryable stripe disconnected flag.
|
|
17050
|
-
*/
|
|
17051
|
-
stripeDisconnected?: boolean;
|
|
17052
|
-
/**
|
|
17053
|
-
* Gets or sets the queryable activity schedule updated flag.
|
|
17054
|
-
*/
|
|
17055
|
-
activityScheduleUpdated?: boolean;
|
|
17056
|
-
/**
|
|
17057
|
-
* Gets or sets the queryable activity price updated flag.
|
|
17058
|
-
*/
|
|
17059
|
-
activityPriceUpdated?: boolean;
|
|
17060
|
-
/**
|
|
17061
|
-
* Gets or sets the queryable new activity flag.
|
|
17062
|
-
*/
|
|
17063
|
-
newActivity?: boolean;
|
|
16901
|
+
getListWithoutReferences({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17064
16902
|
/**
|
|
17065
|
-
* Gets or sets the queryable
|
|
16903
|
+
* Gets or sets the queryable processed status.
|
|
17066
16904
|
*/
|
|
17067
|
-
|
|
16905
|
+
processed?: boolean;
|
|
17068
16906
|
/**
|
|
17069
|
-
* Gets or sets the queryable
|
|
16907
|
+
* Gets or sets the queryable errored status.
|
|
17070
16908
|
*/
|
|
17071
|
-
|
|
16909
|
+
errored?: boolean;
|
|
17072
16910
|
/**
|
|
17073
16911
|
* Gets or sets the page number for paged queries.
|
|
17074
16912
|
*/
|
|
@@ -17113,69 +16951,21 @@ declare class NotificationSettingsService {
|
|
|
17113
16951
|
* Gets or sets the sort order direction.
|
|
17114
16952
|
*/
|
|
17115
16953
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17116
|
-
}): CancelablePromise<Array<
|
|
16954
|
+
}): CancelablePromise<Array<NotificationQueue>>;
|
|
17117
16955
|
/**
|
|
17118
16956
|
* Gets a list of resources.
|
|
17119
|
-
* @returns
|
|
16957
|
+
* @returns NotificationQueue Success
|
|
17120
16958
|
* @throws ApiError
|
|
17121
16959
|
*/
|
|
17122
|
-
getListIdName({
|
|
17123
|
-
/**
|
|
17124
|
-
* Gets or sets the queryable user id.
|
|
17125
|
-
*/
|
|
17126
|
-
userId?: string;
|
|
17127
|
-
/**
|
|
17128
|
-
* Gets or sets the queryable new booking flag.
|
|
17129
|
-
*/
|
|
17130
|
-
newBooking?: boolean;
|
|
17131
|
-
/**
|
|
17132
|
-
* Gets or sets the queryable cancellation flag.
|
|
17133
|
-
*/
|
|
17134
|
-
cancellation?: boolean;
|
|
17135
|
-
/**
|
|
17136
|
-
* Gets or sets the queryable waitlist activity flag.
|
|
17137
|
-
*/
|
|
17138
|
-
waitlistActivity?: boolean;
|
|
17139
|
-
/**
|
|
17140
|
-
* Gets or sets the queryable waitlist opportunity flag.
|
|
17141
|
-
*/
|
|
17142
|
-
waitlistOpportunity?: boolean;
|
|
17143
|
-
/**
|
|
17144
|
-
* Gets or sets the queryable capacity reached flag.
|
|
17145
|
-
*/
|
|
17146
|
-
capacityReached?: boolean;
|
|
17147
|
-
/**
|
|
17148
|
-
* Gets or sets the queryable capacity reached flag.
|
|
17149
|
-
*/
|
|
17150
|
-
capacity75Percent?: boolean;
|
|
17151
|
-
/**
|
|
17152
|
-
* Gets or sets the queryable stripe connected flag.
|
|
17153
|
-
*/
|
|
17154
|
-
stripeConnected?: boolean;
|
|
17155
|
-
/**
|
|
17156
|
-
* Gets or sets the queryable stripe disconnected flag.
|
|
17157
|
-
*/
|
|
17158
|
-
stripeDisconnected?: boolean;
|
|
17159
|
-
/**
|
|
17160
|
-
* Gets or sets the queryable activity schedule updated flag.
|
|
17161
|
-
*/
|
|
17162
|
-
activityScheduleUpdated?: boolean;
|
|
17163
|
-
/**
|
|
17164
|
-
* Gets or sets the queryable activity price updated flag.
|
|
17165
|
-
*/
|
|
17166
|
-
activityPriceUpdated?: boolean;
|
|
17167
|
-
/**
|
|
17168
|
-
* Gets or sets the queryable new activity flag.
|
|
17169
|
-
*/
|
|
17170
|
-
newActivity?: boolean;
|
|
16960
|
+
getListIdName({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17171
16961
|
/**
|
|
17172
|
-
* Gets or sets the queryable
|
|
16962
|
+
* Gets or sets the queryable processed status.
|
|
17173
16963
|
*/
|
|
17174
|
-
|
|
16964
|
+
processed?: boolean;
|
|
17175
16965
|
/**
|
|
17176
|
-
* Gets or sets the queryable
|
|
16966
|
+
* Gets or sets the queryable errored status.
|
|
17177
16967
|
*/
|
|
17178
|
-
|
|
16968
|
+
errored?: boolean;
|
|
17179
16969
|
/**
|
|
17180
16970
|
* Gets or sets the page number for paged queries.
|
|
17181
16971
|
*/
|
|
@@ -17220,141 +17010,223 @@ declare class NotificationSettingsService {
|
|
|
17220
17010
|
* Gets or sets the sort order direction.
|
|
17221
17011
|
*/
|
|
17222
17012
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17223
|
-
}): CancelablePromise<Array<
|
|
17013
|
+
}): CancelablePromise<Array<NotificationQueue>>;
|
|
17224
17014
|
}
|
|
17225
17015
|
|
|
17226
|
-
type OfferPage = {
|
|
17227
|
-
pagination: Pagination;
|
|
17228
|
-
readonly items: Array<Offer>;
|
|
17229
|
-
};
|
|
17230
|
-
|
|
17231
17016
|
/**
|
|
17232
|
-
*
|
|
17017
|
+
* Represents notification settings within the Reach application.
|
|
17233
17018
|
*/
|
|
17234
|
-
type
|
|
17019
|
+
type NotificationSetting = {
|
|
17020
|
+
/**
|
|
17021
|
+
* Gets or sets the entities Id.
|
|
17022
|
+
*/
|
|
17023
|
+
id?: string;
|
|
17235
17024
|
/**
|
|
17236
17025
|
* Gets or sets the tenant Id.
|
|
17237
17026
|
*/
|
|
17238
17027
|
tenantId: string;
|
|
17239
17028
|
/**
|
|
17240
|
-
* Gets or sets the
|
|
17029
|
+
* Gets or sets the created date of this entity.
|
|
17241
17030
|
*/
|
|
17242
|
-
|
|
17031
|
+
dateCreated: string;
|
|
17243
17032
|
/**
|
|
17244
|
-
* Gets or sets the
|
|
17033
|
+
* Gets or sets the last modified date of this entity.
|
|
17245
17034
|
*/
|
|
17246
|
-
|
|
17035
|
+
dateModified: string;
|
|
17247
17036
|
/**
|
|
17248
|
-
* Gets or sets the
|
|
17037
|
+
* Gets or sets the modified by Id.
|
|
17249
17038
|
*/
|
|
17250
|
-
|
|
17039
|
+
modifiedById?: string | null;
|
|
17251
17040
|
/**
|
|
17252
|
-
* Gets or sets the
|
|
17041
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
17253
17042
|
*/
|
|
17254
|
-
|
|
17043
|
+
isLive: boolean;
|
|
17255
17044
|
/**
|
|
17256
|
-
* Gets or sets the
|
|
17045
|
+
* Gets or sets the user id.
|
|
17257
17046
|
*/
|
|
17258
|
-
|
|
17047
|
+
userId?: string;
|
|
17259
17048
|
/**
|
|
17260
|
-
* Gets or sets
|
|
17049
|
+
* Gets or sets a value indicating whether notification settings are enabled for new bookings.
|
|
17261
17050
|
*/
|
|
17262
|
-
|
|
17051
|
+
newBooking?: boolean;
|
|
17263
17052
|
/**
|
|
17264
|
-
* Gets or sets
|
|
17053
|
+
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
17265
17054
|
*/
|
|
17266
|
-
|
|
17055
|
+
cancellation?: boolean;
|
|
17267
17056
|
/**
|
|
17268
|
-
* Gets or sets a value indicating whether
|
|
17057
|
+
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
17269
17058
|
*/
|
|
17270
|
-
|
|
17059
|
+
waitlistActivity?: boolean;
|
|
17060
|
+
/**
|
|
17061
|
+
* Gets or sets a value indicating whether notification settings are enabled for waitlist opportunity additions.
|
|
17062
|
+
*/
|
|
17063
|
+
waitlistOpportunity?: boolean;
|
|
17064
|
+
/**
|
|
17065
|
+
* Gets or sets a value indicating whether notification settings are enabled for capacities being reached.
|
|
17066
|
+
*/
|
|
17067
|
+
capacityReached?: boolean;
|
|
17068
|
+
/**
|
|
17069
|
+
* Gets or sets a value indicating whether notification settings are enabled for capacities being reaching 75%.
|
|
17070
|
+
*/
|
|
17071
|
+
capacity75Percent?: boolean;
|
|
17072
|
+
/**
|
|
17073
|
+
* Gets or sets a value indicating whether notification settings are enabled for stripe connected.
|
|
17074
|
+
*/
|
|
17075
|
+
stripeConnected?: boolean;
|
|
17076
|
+
/**
|
|
17077
|
+
* Gets or sets a value indicating whether notification settings are enabled for stripe disconnected.
|
|
17078
|
+
*/
|
|
17079
|
+
stripeDisconnected?: boolean;
|
|
17080
|
+
/**
|
|
17081
|
+
* Gets or sets a value indicating whether notification settings are enabled for schedule updates.
|
|
17082
|
+
*/
|
|
17083
|
+
activityScheduleUpdated?: boolean;
|
|
17084
|
+
/**
|
|
17085
|
+
* Gets or sets a value indicating whether notification settings are enabled for price updates.
|
|
17086
|
+
*/
|
|
17087
|
+
activityPriceUpdated?: boolean;
|
|
17088
|
+
/**
|
|
17089
|
+
* Gets or sets a value indicating whether notification settings are enabled for new activities.
|
|
17090
|
+
*/
|
|
17091
|
+
newActivity?: boolean;
|
|
17092
|
+
/**
|
|
17093
|
+
* Gets or sets a value indicating whether notification settings are enabled for payment received.
|
|
17094
|
+
*/
|
|
17095
|
+
paymentReceived?: boolean;
|
|
17096
|
+
/**
|
|
17097
|
+
* Gets or sets a value indicating whether notification settings are enabled for post completion surveys.
|
|
17098
|
+
*/
|
|
17099
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17100
|
+
};
|
|
17101
|
+
|
|
17102
|
+
type NotificationSettingPage = {
|
|
17103
|
+
pagination: Pagination;
|
|
17104
|
+
readonly items: Array<NotificationSetting>;
|
|
17271
17105
|
};
|
|
17272
17106
|
|
|
17273
17107
|
/**
|
|
17274
|
-
* Post model for
|
|
17108
|
+
* Post model for notification setting updates.
|
|
17275
17109
|
*/
|
|
17276
|
-
type
|
|
17110
|
+
type NotificationSettingPatch = {
|
|
17277
17111
|
/**
|
|
17278
17112
|
* Gets or sets the tenant Id.
|
|
17279
17113
|
*/
|
|
17280
17114
|
tenantId: string;
|
|
17281
17115
|
/**
|
|
17282
|
-
* Gets or sets the
|
|
17116
|
+
* Gets or sets the Id.
|
|
17283
17117
|
*/
|
|
17284
|
-
|
|
17118
|
+
id: string;
|
|
17285
17119
|
/**
|
|
17286
|
-
* Gets or sets
|
|
17120
|
+
* Gets or sets a value indicating whether notification settings are enabled for new bookings.
|
|
17287
17121
|
*/
|
|
17288
|
-
|
|
17122
|
+
newBooking?: boolean;
|
|
17289
17123
|
/**
|
|
17290
|
-
* Gets or sets
|
|
17124
|
+
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
17291
17125
|
*/
|
|
17292
|
-
|
|
17126
|
+
cancellation?: boolean;
|
|
17293
17127
|
/**
|
|
17294
|
-
* Gets or sets
|
|
17128
|
+
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
17295
17129
|
*/
|
|
17296
|
-
|
|
17130
|
+
waitlistActivity?: boolean;
|
|
17297
17131
|
/**
|
|
17298
|
-
* Gets or sets
|
|
17132
|
+
* Gets or sets a value indicating whether notification settings are enabled for waitlist opportunity additions.
|
|
17299
17133
|
*/
|
|
17300
|
-
|
|
17134
|
+
waitlistOpportunity?: boolean;
|
|
17301
17135
|
/**
|
|
17302
|
-
* Gets or sets
|
|
17136
|
+
* Gets or sets a value indicating whether notification settings are enabled for capacities being reached.
|
|
17303
17137
|
*/
|
|
17304
|
-
|
|
17138
|
+
capacityReached?: boolean;
|
|
17305
17139
|
/**
|
|
17306
|
-
* Gets or sets a value indicating whether
|
|
17140
|
+
* Gets or sets a value indicating whether notification settings are enabled for capacities being reaching 75%.
|
|
17307
17141
|
*/
|
|
17308
|
-
|
|
17142
|
+
capacity75Percent?: boolean;
|
|
17143
|
+
/**
|
|
17144
|
+
* Gets or sets a value indicating whether notification settings are enabled for stripe connected.
|
|
17145
|
+
*/
|
|
17146
|
+
stripeConnected?: boolean;
|
|
17147
|
+
/**
|
|
17148
|
+
* Gets or sets a value indicating whether notification settings are enabled for stripe disconnected.
|
|
17149
|
+
*/
|
|
17150
|
+
stripeDisconnected?: boolean;
|
|
17151
|
+
/**
|
|
17152
|
+
* Gets or sets a value indicating whether notification settings are enabled for schedule updates.
|
|
17153
|
+
*/
|
|
17154
|
+
activityScheduleUpdated?: boolean;
|
|
17155
|
+
/**
|
|
17156
|
+
* Gets or sets a value indicating whether notification settings are enabled for price updates.
|
|
17157
|
+
*/
|
|
17158
|
+
activityPriceUpdated?: boolean;
|
|
17159
|
+
/**
|
|
17160
|
+
* Gets or sets a value indicating whether notification settings are enabled for new activities.
|
|
17161
|
+
*/
|
|
17162
|
+
newActivity?: boolean;
|
|
17163
|
+
/**
|
|
17164
|
+
* Gets or sets a value indicating whether notification settings are enabled for payment received.
|
|
17165
|
+
*/
|
|
17166
|
+
paymentReceived?: boolean;
|
|
17167
|
+
/**
|
|
17168
|
+
* Gets or sets a value indicating whether notification settings are enabled for post completion surveys.
|
|
17169
|
+
*/
|
|
17170
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17309
17171
|
};
|
|
17310
17172
|
|
|
17311
|
-
|
|
17173
|
+
/**
|
|
17174
|
+
* Post model for notification setting inserts.
|
|
17175
|
+
*/
|
|
17176
|
+
type NotificationSettingPost = {
|
|
17177
|
+
/**
|
|
17178
|
+
* Gets or sets the tenant Id.
|
|
17179
|
+
*/
|
|
17180
|
+
tenantId: string;
|
|
17181
|
+
};
|
|
17182
|
+
|
|
17183
|
+
declare class NotificationSettingsService {
|
|
17312
17184
|
readonly httpRequest: BaseHttpRequest;
|
|
17313
17185
|
constructor(httpRequest: BaseHttpRequest);
|
|
17314
17186
|
/**
|
|
17315
17187
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
17316
|
-
* @returns
|
|
17188
|
+
* @returns NotificationSetting Success
|
|
17317
17189
|
* @throws ApiError
|
|
17318
17190
|
*/
|
|
17319
17191
|
post({ requestBody, }: {
|
|
17320
17192
|
/**
|
|
17321
17193
|
* The <typeparamref name="TObject" /> model.
|
|
17322
17194
|
*/
|
|
17323
|
-
requestBody?:
|
|
17324
|
-
}): CancelablePromise<
|
|
17195
|
+
requestBody?: NotificationSettingPost;
|
|
17196
|
+
}): CancelablePromise<NotificationSetting>;
|
|
17325
17197
|
/**
|
|
17326
17198
|
* Patches the resource.
|
|
17327
|
-
* @returns
|
|
17199
|
+
* @returns NotificationSetting Success
|
|
17328
17200
|
* @throws ApiError
|
|
17329
17201
|
*/
|
|
17330
17202
|
patch({ requestBody, }: {
|
|
17331
17203
|
/**
|
|
17332
17204
|
* The <typeparamref name="TObject" /> model.
|
|
17333
17205
|
*/
|
|
17334
|
-
requestBody?:
|
|
17335
|
-
}): CancelablePromise<
|
|
17206
|
+
requestBody?: NotificationSettingPatch;
|
|
17207
|
+
}): CancelablePromise<NotificationSetting>;
|
|
17336
17208
|
/**
|
|
17337
17209
|
* Inserts a list of resources.
|
|
17338
|
-
* @returns
|
|
17210
|
+
* @returns NotificationSetting Success
|
|
17339
17211
|
* @throws ApiError
|
|
17340
17212
|
*/
|
|
17341
17213
|
postList({ requestBody, }: {
|
|
17342
17214
|
/**
|
|
17343
17215
|
* The list of <typeparamref name="TObject" />.
|
|
17344
17216
|
*/
|
|
17345
|
-
requestBody?: Array<
|
|
17346
|
-
}): CancelablePromise<Array<
|
|
17217
|
+
requestBody?: Array<NotificationSettingPost>;
|
|
17218
|
+
}): CancelablePromise<Array<NotificationSetting>>;
|
|
17347
17219
|
/**
|
|
17348
17220
|
* Patches the resource.
|
|
17349
|
-
* @returns
|
|
17221
|
+
* @returns NotificationSetting Success
|
|
17350
17222
|
* @throws ApiError
|
|
17351
17223
|
*/
|
|
17352
17224
|
patchWithReferences({ requestBody, }: {
|
|
17353
17225
|
/**
|
|
17354
17226
|
* The <typeparamref name="TObject" /> model.
|
|
17355
17227
|
*/
|
|
17356
|
-
requestBody?:
|
|
17357
|
-
}): CancelablePromise<
|
|
17228
|
+
requestBody?: NotificationSettingPatch;
|
|
17229
|
+
}): CancelablePromise<NotificationSetting>;
|
|
17358
17230
|
/**
|
|
17359
17231
|
* Deletes the resource.
|
|
17360
17232
|
* @returns any Success
|
|
@@ -17364,66 +17236,70 @@ declare class OffersService {
|
|
|
17364
17236
|
/**
|
|
17365
17237
|
* The <typeparamref name="TObject" /> model.
|
|
17366
17238
|
*/
|
|
17367
|
-
requestBody?:
|
|
17239
|
+
requestBody?: NotificationSetting;
|
|
17368
17240
|
}): CancelablePromise<any>;
|
|
17369
17241
|
/**
|
|
17370
17242
|
* Gets a list of resources.
|
|
17371
|
-
* @returns
|
|
17243
|
+
* @returns NotificationSettingPage Success
|
|
17372
17244
|
* @throws ApiError
|
|
17373
17245
|
*/
|
|
17374
|
-
getPage({
|
|
17246
|
+
getPage({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17375
17247
|
/**
|
|
17376
|
-
* Gets or sets the queryable
|
|
17248
|
+
* Gets or sets the queryable user id.
|
|
17377
17249
|
*/
|
|
17378
|
-
|
|
17250
|
+
userId?: string;
|
|
17379
17251
|
/**
|
|
17380
|
-
* Gets or sets the queryable
|
|
17252
|
+
* Gets or sets the queryable new booking flag.
|
|
17381
17253
|
*/
|
|
17382
|
-
|
|
17254
|
+
newBooking?: boolean;
|
|
17383
17255
|
/**
|
|
17384
|
-
* Gets or sets the queryable
|
|
17256
|
+
* Gets or sets the queryable cancellation flag.
|
|
17385
17257
|
*/
|
|
17386
|
-
|
|
17258
|
+
cancellation?: boolean;
|
|
17387
17259
|
/**
|
|
17388
|
-
* Gets or sets the queryable
|
|
17260
|
+
* Gets or sets the queryable waitlist activity flag.
|
|
17389
17261
|
*/
|
|
17390
|
-
|
|
17262
|
+
waitlistActivity?: boolean;
|
|
17391
17263
|
/**
|
|
17392
|
-
* Gets or sets the queryable
|
|
17264
|
+
* Gets or sets the queryable waitlist opportunity flag.
|
|
17393
17265
|
*/
|
|
17394
|
-
|
|
17266
|
+
waitlistOpportunity?: boolean;
|
|
17395
17267
|
/**
|
|
17396
|
-
* Gets or sets the queryable
|
|
17268
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17397
17269
|
*/
|
|
17398
|
-
|
|
17270
|
+
capacityReached?: boolean;
|
|
17399
17271
|
/**
|
|
17400
|
-
* Gets or sets the queryable
|
|
17272
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17401
17273
|
*/
|
|
17402
|
-
|
|
17274
|
+
capacity75Percent?: boolean;
|
|
17403
17275
|
/**
|
|
17404
|
-
* Gets or sets the queryable
|
|
17276
|
+
* Gets or sets the queryable stripe connected flag.
|
|
17405
17277
|
*/
|
|
17406
|
-
|
|
17278
|
+
stripeConnected?: boolean;
|
|
17407
17279
|
/**
|
|
17408
|
-
* Gets or sets the queryable
|
|
17280
|
+
* Gets or sets the queryable stripe disconnected flag.
|
|
17409
17281
|
*/
|
|
17410
|
-
|
|
17282
|
+
stripeDisconnected?: boolean;
|
|
17411
17283
|
/**
|
|
17412
|
-
* Gets or sets the queryable
|
|
17284
|
+
* Gets or sets the queryable activity schedule updated flag.
|
|
17413
17285
|
*/
|
|
17414
|
-
|
|
17286
|
+
activityScheduleUpdated?: boolean;
|
|
17415
17287
|
/**
|
|
17416
|
-
* Gets or sets the queryable
|
|
17288
|
+
* Gets or sets the queryable activity price updated flag.
|
|
17417
17289
|
*/
|
|
17418
|
-
|
|
17290
|
+
activityPriceUpdated?: boolean;
|
|
17419
17291
|
/**
|
|
17420
|
-
* Gets or sets the queryable
|
|
17292
|
+
* Gets or sets the queryable new activity flag.
|
|
17421
17293
|
*/
|
|
17422
|
-
|
|
17294
|
+
newActivity?: boolean;
|
|
17423
17295
|
/**
|
|
17424
|
-
* Gets or sets the queryable
|
|
17296
|
+
* Gets or sets the queryable payment received flag.
|
|
17425
17297
|
*/
|
|
17426
|
-
|
|
17298
|
+
paymentReceived?: boolean;
|
|
17299
|
+
/**
|
|
17300
|
+
* Gets or sets the queryable post completion survey completed flag.
|
|
17301
|
+
*/
|
|
17302
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17427
17303
|
/**
|
|
17428
17304
|
* Gets or sets the page number for paged queries.
|
|
17429
17305
|
*/
|
|
@@ -17468,7 +17344,7 @@ declare class OffersService {
|
|
|
17468
17344
|
* Gets or sets the sort order direction.
|
|
17469
17345
|
*/
|
|
17470
17346
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17471
|
-
}): CancelablePromise<
|
|
17347
|
+
}): CancelablePromise<NotificationSettingPage>;
|
|
17472
17348
|
/**
|
|
17473
17349
|
* Deletes the resource.
|
|
17474
17350
|
* @returns any Success
|
|
@@ -17482,7 +17358,7 @@ declare class OffersService {
|
|
|
17482
17358
|
}): CancelablePromise<any>;
|
|
17483
17359
|
/**
|
|
17484
17360
|
* Gets the resource by its Id.
|
|
17485
|
-
* @returns
|
|
17361
|
+
* @returns NotificationSetting Success
|
|
17486
17362
|
* @throws ApiError
|
|
17487
17363
|
*/
|
|
17488
17364
|
getObject({ id, }: {
|
|
@@ -17490,7 +17366,7 @@ declare class OffersService {
|
|
|
17490
17366
|
* The <typeparamref name="TObject" /> id.
|
|
17491
17367
|
*/
|
|
17492
17368
|
id: string;
|
|
17493
|
-
}): CancelablePromise<
|
|
17369
|
+
}): CancelablePromise<NotificationSetting>;
|
|
17494
17370
|
/**
|
|
17495
17371
|
* Returns a value indicating whether the resource is deletable.
|
|
17496
17372
|
* @returns boolean Success
|
|
@@ -17507,59 +17383,63 @@ declare class OffersService {
|
|
|
17507
17383
|
* @returns boolean Success
|
|
17508
17384
|
* @throws ApiError
|
|
17509
17385
|
*/
|
|
17510
|
-
exists({
|
|
17386
|
+
exists({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17511
17387
|
/**
|
|
17512
|
-
* Gets or sets the queryable
|
|
17388
|
+
* Gets or sets the queryable user id.
|
|
17513
17389
|
*/
|
|
17514
|
-
|
|
17390
|
+
userId?: string;
|
|
17515
17391
|
/**
|
|
17516
|
-
* Gets or sets the queryable
|
|
17392
|
+
* Gets or sets the queryable new booking flag.
|
|
17517
17393
|
*/
|
|
17518
|
-
|
|
17394
|
+
newBooking?: boolean;
|
|
17519
17395
|
/**
|
|
17520
|
-
* Gets or sets the queryable
|
|
17396
|
+
* Gets or sets the queryable cancellation flag.
|
|
17521
17397
|
*/
|
|
17522
|
-
|
|
17398
|
+
cancellation?: boolean;
|
|
17523
17399
|
/**
|
|
17524
|
-
* Gets or sets the queryable
|
|
17400
|
+
* Gets or sets the queryable waitlist activity flag.
|
|
17525
17401
|
*/
|
|
17526
|
-
|
|
17402
|
+
waitlistActivity?: boolean;
|
|
17527
17403
|
/**
|
|
17528
|
-
* Gets or sets the queryable
|
|
17404
|
+
* Gets or sets the queryable waitlist opportunity flag.
|
|
17529
17405
|
*/
|
|
17530
|
-
|
|
17406
|
+
waitlistOpportunity?: boolean;
|
|
17531
17407
|
/**
|
|
17532
|
-
* Gets or sets the queryable
|
|
17408
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17533
17409
|
*/
|
|
17534
|
-
|
|
17410
|
+
capacityReached?: boolean;
|
|
17535
17411
|
/**
|
|
17536
|
-
* Gets or sets the queryable
|
|
17412
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17537
17413
|
*/
|
|
17538
|
-
|
|
17414
|
+
capacity75Percent?: boolean;
|
|
17539
17415
|
/**
|
|
17540
|
-
* Gets or sets the queryable
|
|
17416
|
+
* Gets or sets the queryable stripe connected flag.
|
|
17541
17417
|
*/
|
|
17542
|
-
|
|
17418
|
+
stripeConnected?: boolean;
|
|
17543
17419
|
/**
|
|
17544
|
-
* Gets or sets the queryable
|
|
17420
|
+
* Gets or sets the queryable stripe disconnected flag.
|
|
17545
17421
|
*/
|
|
17546
|
-
|
|
17422
|
+
stripeDisconnected?: boolean;
|
|
17547
17423
|
/**
|
|
17548
|
-
* Gets or sets the queryable
|
|
17424
|
+
* Gets or sets the queryable activity schedule updated flag.
|
|
17549
17425
|
*/
|
|
17550
|
-
|
|
17426
|
+
activityScheduleUpdated?: boolean;
|
|
17551
17427
|
/**
|
|
17552
|
-
* Gets or sets the queryable
|
|
17428
|
+
* Gets or sets the queryable activity price updated flag.
|
|
17553
17429
|
*/
|
|
17554
|
-
|
|
17430
|
+
activityPriceUpdated?: boolean;
|
|
17555
17431
|
/**
|
|
17556
|
-
* Gets or sets the queryable
|
|
17432
|
+
* Gets or sets the queryable new activity flag.
|
|
17557
17433
|
*/
|
|
17558
|
-
|
|
17434
|
+
newActivity?: boolean;
|
|
17559
17435
|
/**
|
|
17560
|
-
* Gets or sets the queryable
|
|
17436
|
+
* Gets or sets the queryable payment received flag.
|
|
17561
17437
|
*/
|
|
17562
|
-
|
|
17438
|
+
paymentReceived?: boolean;
|
|
17439
|
+
/**
|
|
17440
|
+
* Gets or sets the queryable post completion survey completed flag.
|
|
17441
|
+
*/
|
|
17442
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17563
17443
|
/**
|
|
17564
17444
|
* Gets or sets the page number for paged queries.
|
|
17565
17445
|
*/
|
|
@@ -17607,62 +17487,66 @@ declare class OffersService {
|
|
|
17607
17487
|
}): CancelablePromise<boolean>;
|
|
17608
17488
|
/**
|
|
17609
17489
|
* Gets a list of resources unpaged and without references.
|
|
17610
|
-
* @returns
|
|
17490
|
+
* @returns NotificationSetting Success
|
|
17611
17491
|
* @throws ApiError
|
|
17612
17492
|
*/
|
|
17613
|
-
getListWithoutReferences({
|
|
17493
|
+
getListWithoutReferences({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17614
17494
|
/**
|
|
17615
|
-
* Gets or sets the queryable
|
|
17495
|
+
* Gets or sets the queryable user id.
|
|
17616
17496
|
*/
|
|
17617
|
-
|
|
17497
|
+
userId?: string;
|
|
17618
17498
|
/**
|
|
17619
|
-
* Gets or sets the queryable
|
|
17499
|
+
* Gets or sets the queryable new booking flag.
|
|
17620
17500
|
*/
|
|
17621
|
-
|
|
17501
|
+
newBooking?: boolean;
|
|
17622
17502
|
/**
|
|
17623
|
-
* Gets or sets the queryable
|
|
17503
|
+
* Gets or sets the queryable cancellation flag.
|
|
17624
17504
|
*/
|
|
17625
|
-
|
|
17505
|
+
cancellation?: boolean;
|
|
17626
17506
|
/**
|
|
17627
|
-
* Gets or sets the queryable
|
|
17507
|
+
* Gets or sets the queryable waitlist activity flag.
|
|
17628
17508
|
*/
|
|
17629
|
-
|
|
17509
|
+
waitlistActivity?: boolean;
|
|
17630
17510
|
/**
|
|
17631
|
-
* Gets or sets the queryable
|
|
17511
|
+
* Gets or sets the queryable waitlist opportunity flag.
|
|
17632
17512
|
*/
|
|
17633
|
-
|
|
17513
|
+
waitlistOpportunity?: boolean;
|
|
17634
17514
|
/**
|
|
17635
|
-
* Gets or sets the queryable
|
|
17515
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17636
17516
|
*/
|
|
17637
|
-
|
|
17517
|
+
capacityReached?: boolean;
|
|
17638
17518
|
/**
|
|
17639
|
-
* Gets or sets the queryable
|
|
17519
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17640
17520
|
*/
|
|
17641
|
-
|
|
17521
|
+
capacity75Percent?: boolean;
|
|
17642
17522
|
/**
|
|
17643
|
-
* Gets or sets the queryable
|
|
17523
|
+
* Gets or sets the queryable stripe connected flag.
|
|
17644
17524
|
*/
|
|
17645
|
-
|
|
17525
|
+
stripeConnected?: boolean;
|
|
17646
17526
|
/**
|
|
17647
|
-
* Gets or sets the queryable
|
|
17527
|
+
* Gets or sets the queryable stripe disconnected flag.
|
|
17648
17528
|
*/
|
|
17649
|
-
|
|
17529
|
+
stripeDisconnected?: boolean;
|
|
17650
17530
|
/**
|
|
17651
|
-
* Gets or sets the queryable
|
|
17531
|
+
* Gets or sets the queryable activity schedule updated flag.
|
|
17652
17532
|
*/
|
|
17653
|
-
|
|
17533
|
+
activityScheduleUpdated?: boolean;
|
|
17654
17534
|
/**
|
|
17655
|
-
* Gets or sets the queryable
|
|
17535
|
+
* Gets or sets the queryable activity price updated flag.
|
|
17656
17536
|
*/
|
|
17657
|
-
|
|
17537
|
+
activityPriceUpdated?: boolean;
|
|
17658
17538
|
/**
|
|
17659
|
-
* Gets or sets the queryable
|
|
17539
|
+
* Gets or sets the queryable new activity flag.
|
|
17660
17540
|
*/
|
|
17661
|
-
|
|
17541
|
+
newActivity?: boolean;
|
|
17662
17542
|
/**
|
|
17663
|
-
* Gets or sets the queryable
|
|
17543
|
+
* Gets or sets the queryable payment received flag.
|
|
17664
17544
|
*/
|
|
17665
|
-
|
|
17545
|
+
paymentReceived?: boolean;
|
|
17546
|
+
/**
|
|
17547
|
+
* Gets or sets the queryable post completion survey completed flag.
|
|
17548
|
+
*/
|
|
17549
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17666
17550
|
/**
|
|
17667
17551
|
* Gets or sets the page number for paged queries.
|
|
17668
17552
|
*/
|
|
@@ -17707,65 +17591,69 @@ declare class OffersService {
|
|
|
17707
17591
|
* Gets or sets the sort order direction.
|
|
17708
17592
|
*/
|
|
17709
17593
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17710
|
-
}): CancelablePromise<Array<
|
|
17594
|
+
}): CancelablePromise<Array<NotificationSetting>>;
|
|
17711
17595
|
/**
|
|
17712
17596
|
* Gets a list of resources.
|
|
17713
|
-
* @returns
|
|
17597
|
+
* @returns NotificationSetting Success
|
|
17714
17598
|
* @throws ApiError
|
|
17715
17599
|
*/
|
|
17716
|
-
getListIdName({
|
|
17600
|
+
getListIdName({ userId, newBooking, cancellation, waitlistActivity, waitlistOpportunity, capacityReached, capacity75Percent, stripeConnected, stripeDisconnected, activityScheduleUpdated, activityPriceUpdated, newActivity, paymentReceived, postCompletionSurveyCompleted, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17717
17601
|
/**
|
|
17718
|
-
* Gets or sets the queryable
|
|
17602
|
+
* Gets or sets the queryable user id.
|
|
17719
17603
|
*/
|
|
17720
|
-
|
|
17604
|
+
userId?: string;
|
|
17721
17605
|
/**
|
|
17722
|
-
* Gets or sets the queryable
|
|
17606
|
+
* Gets or sets the queryable new booking flag.
|
|
17723
17607
|
*/
|
|
17724
|
-
|
|
17608
|
+
newBooking?: boolean;
|
|
17725
17609
|
/**
|
|
17726
|
-
* Gets or sets the queryable
|
|
17610
|
+
* Gets or sets the queryable cancellation flag.
|
|
17727
17611
|
*/
|
|
17728
|
-
|
|
17612
|
+
cancellation?: boolean;
|
|
17729
17613
|
/**
|
|
17730
|
-
* Gets or sets the queryable
|
|
17614
|
+
* Gets or sets the queryable waitlist activity flag.
|
|
17731
17615
|
*/
|
|
17732
|
-
|
|
17616
|
+
waitlistActivity?: boolean;
|
|
17733
17617
|
/**
|
|
17734
|
-
* Gets or sets the queryable
|
|
17618
|
+
* Gets or sets the queryable waitlist opportunity flag.
|
|
17735
17619
|
*/
|
|
17736
|
-
|
|
17620
|
+
waitlistOpportunity?: boolean;
|
|
17737
17621
|
/**
|
|
17738
|
-
* Gets or sets the queryable
|
|
17622
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17739
17623
|
*/
|
|
17740
|
-
|
|
17624
|
+
capacityReached?: boolean;
|
|
17741
17625
|
/**
|
|
17742
|
-
* Gets or sets the queryable
|
|
17626
|
+
* Gets or sets the queryable capacity reached flag.
|
|
17743
17627
|
*/
|
|
17744
|
-
|
|
17628
|
+
capacity75Percent?: boolean;
|
|
17745
17629
|
/**
|
|
17746
|
-
* Gets or sets the queryable
|
|
17630
|
+
* Gets or sets the queryable stripe connected flag.
|
|
17747
17631
|
*/
|
|
17748
|
-
|
|
17632
|
+
stripeConnected?: boolean;
|
|
17749
17633
|
/**
|
|
17750
|
-
* Gets or sets the queryable
|
|
17634
|
+
* Gets or sets the queryable stripe disconnected flag.
|
|
17751
17635
|
*/
|
|
17752
|
-
|
|
17636
|
+
stripeDisconnected?: boolean;
|
|
17753
17637
|
/**
|
|
17754
|
-
* Gets or sets the queryable
|
|
17638
|
+
* Gets or sets the queryable activity schedule updated flag.
|
|
17755
17639
|
*/
|
|
17756
|
-
|
|
17640
|
+
activityScheduleUpdated?: boolean;
|
|
17757
17641
|
/**
|
|
17758
|
-
* Gets or sets the queryable
|
|
17642
|
+
* Gets or sets the queryable activity price updated flag.
|
|
17759
17643
|
*/
|
|
17760
|
-
|
|
17644
|
+
activityPriceUpdated?: boolean;
|
|
17761
17645
|
/**
|
|
17762
|
-
* Gets or sets the queryable
|
|
17646
|
+
* Gets or sets the queryable new activity flag.
|
|
17763
17647
|
*/
|
|
17764
|
-
|
|
17648
|
+
newActivity?: boolean;
|
|
17765
17649
|
/**
|
|
17766
|
-
* Gets or sets the queryable
|
|
17650
|
+
* Gets or sets the queryable payment received flag.
|
|
17767
17651
|
*/
|
|
17768
|
-
|
|
17652
|
+
paymentReceived?: boolean;
|
|
17653
|
+
/**
|
|
17654
|
+
* Gets or sets the queryable post completion survey completed flag.
|
|
17655
|
+
*/
|
|
17656
|
+
postCompletionSurveyCompleted?: boolean;
|
|
17769
17657
|
/**
|
|
17770
17658
|
* Gets or sets the page number for paged queries.
|
|
17771
17659
|
*/
|
|
@@ -17810,158 +17698,141 @@ declare class OffersService {
|
|
|
17810
17698
|
* Gets or sets the sort order direction.
|
|
17811
17699
|
*/
|
|
17812
17700
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17813
|
-
}): CancelablePromise<Array<
|
|
17814
|
-
}
|
|
17815
|
-
|
|
17816
|
-
/**
|
|
17817
|
-
* The Reach Entity.
|
|
17818
|
-
*/
|
|
17819
|
-
declare enum ReachEntity {
|
|
17820
|
-
TENANT = "Tenant",
|
|
17821
|
-
VENUE = "Venue",
|
|
17822
|
-
SLOT = "Slot",
|
|
17823
|
-
SLOT_SCHEDULE = "SlotSchedule",
|
|
17824
|
-
FACILITY = "Facility",
|
|
17825
|
-
FACILITY_INDIVIDUAL = "FacilityIndividual",
|
|
17826
|
-
SCHEDULED_SESSION = "ScheduledSession",
|
|
17827
|
-
SESSION = "Session",
|
|
17828
|
-
COURSE = "Course"
|
|
17701
|
+
}): CancelablePromise<Array<NotificationSetting>>;
|
|
17829
17702
|
}
|
|
17830
17703
|
|
|
17831
|
-
|
|
17832
|
-
|
|
17833
|
-
|
|
17834
|
-
|
|
17835
|
-
UPDATED = "Updated",
|
|
17836
|
-
DELETED = "Deleted"
|
|
17837
|
-
}
|
|
17704
|
+
type OfferPage = {
|
|
17705
|
+
pagination: Pagination;
|
|
17706
|
+
readonly items: Array<Offer>;
|
|
17707
|
+
};
|
|
17838
17708
|
|
|
17839
17709
|
/**
|
|
17840
|
-
*
|
|
17710
|
+
* Post model for offer updates.
|
|
17841
17711
|
*/
|
|
17842
|
-
type
|
|
17843
|
-
/**
|
|
17844
|
-
* Gets or sets the entities Id.
|
|
17845
|
-
*/
|
|
17846
|
-
id?: string;
|
|
17712
|
+
type OfferPatch = {
|
|
17847
17713
|
/**
|
|
17848
17714
|
* Gets or sets the tenant Id.
|
|
17849
17715
|
*/
|
|
17850
17716
|
tenantId: string;
|
|
17851
17717
|
/**
|
|
17852
|
-
* Gets or sets the
|
|
17718
|
+
* Gets or sets the Id.
|
|
17853
17719
|
*/
|
|
17854
|
-
|
|
17720
|
+
id: string;
|
|
17855
17721
|
/**
|
|
17856
|
-
* Gets or sets the
|
|
17722
|
+
* Gets or sets the facility individual id.
|
|
17857
17723
|
*/
|
|
17858
|
-
|
|
17724
|
+
facilityIndividualId?: string | null;
|
|
17859
17725
|
/**
|
|
17860
|
-
* Gets or sets the
|
|
17726
|
+
* Gets or sets the facility id.
|
|
17861
17727
|
*/
|
|
17862
|
-
|
|
17728
|
+
facilityId?: string | null;
|
|
17863
17729
|
/**
|
|
17864
|
-
* Gets or sets
|
|
17730
|
+
* Gets or sets the session id.
|
|
17865
17731
|
*/
|
|
17866
|
-
|
|
17732
|
+
sessionId?: string | null;
|
|
17867
17733
|
/**
|
|
17868
|
-
* Gets or sets the
|
|
17734
|
+
* Gets or sets the course id.
|
|
17869
17735
|
*/
|
|
17870
|
-
|
|
17871
|
-
modelName?: ReachEntity;
|
|
17872
|
-
operation?: ReachOperation;
|
|
17736
|
+
courseId?: string | null;
|
|
17873
17737
|
/**
|
|
17874
|
-
* Gets or sets
|
|
17738
|
+
* Gets or sets the offer name.
|
|
17875
17739
|
*/
|
|
17876
|
-
|
|
17740
|
+
name?: string | null;
|
|
17877
17741
|
/**
|
|
17878
|
-
* Gets or sets
|
|
17742
|
+
* Gets or sets the offer total/gross price.
|
|
17879
17743
|
*/
|
|
17880
|
-
|
|
17881
|
-
|
|
17882
|
-
|
|
17883
|
-
|
|
17884
|
-
|
|
17885
|
-
readonly items: Array<OpenactiveFeedIntermediate>;
|
|
17744
|
+
priceTotal?: number | null;
|
|
17745
|
+
/**
|
|
17746
|
+
* Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
|
|
17747
|
+
*/
|
|
17748
|
+
active?: boolean | null;
|
|
17886
17749
|
};
|
|
17887
17750
|
|
|
17888
17751
|
/**
|
|
17889
|
-
* Post model for
|
|
17752
|
+
* Post model for offer inserts.
|
|
17890
17753
|
*/
|
|
17891
|
-
type
|
|
17754
|
+
type OfferPost = {
|
|
17892
17755
|
/**
|
|
17893
17756
|
* Gets or sets the tenant Id.
|
|
17894
17757
|
*/
|
|
17895
17758
|
tenantId: string;
|
|
17896
17759
|
/**
|
|
17897
|
-
* Gets or sets the
|
|
17760
|
+
* Gets or sets the facility individual id.
|
|
17898
17761
|
*/
|
|
17899
|
-
|
|
17900
|
-
};
|
|
17901
|
-
|
|
17902
|
-
/**
|
|
17903
|
-
* Post model for open active feed intermediate inserts.
|
|
17904
|
-
*/
|
|
17905
|
-
type OpenactiveFeedIntermediatePost = {
|
|
17762
|
+
facilityIndividualId?: string | null;
|
|
17906
17763
|
/**
|
|
17907
|
-
* Gets or sets the
|
|
17764
|
+
* Gets or sets the facility id.
|
|
17908
17765
|
*/
|
|
17909
|
-
|
|
17766
|
+
facilityId?: string | null;
|
|
17767
|
+
/**
|
|
17768
|
+
* Gets or sets the session id.
|
|
17769
|
+
*/
|
|
17770
|
+
sessionId?: string | null;
|
|
17771
|
+
/**
|
|
17772
|
+
* Gets or sets the course id.
|
|
17773
|
+
*/
|
|
17774
|
+
courseId?: string | null;
|
|
17775
|
+
/**
|
|
17776
|
+
* Gets or sets the offer name.
|
|
17777
|
+
*/
|
|
17778
|
+
name?: string | null;
|
|
17779
|
+
/**
|
|
17780
|
+
* Gets or sets the offer total/gross price.
|
|
17781
|
+
*/
|
|
17782
|
+
priceTotal?: number | null;
|
|
17783
|
+
/**
|
|
17784
|
+
* Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
|
|
17785
|
+
*/
|
|
17786
|
+
active?: boolean | null;
|
|
17910
17787
|
};
|
|
17911
17788
|
|
|
17912
|
-
declare class
|
|
17789
|
+
declare class OffersService {
|
|
17913
17790
|
readonly httpRequest: BaseHttpRequest;
|
|
17914
17791
|
constructor(httpRequest: BaseHttpRequest);
|
|
17915
|
-
/**
|
|
17916
|
-
* Processes the OA intermediates table.
|
|
17917
|
-
* @returns number Success
|
|
17918
|
-
* @throws ApiError
|
|
17919
|
-
*/
|
|
17920
|
-
process(): CancelablePromise<number>;
|
|
17921
17792
|
/**
|
|
17922
17793
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
17923
|
-
* @returns
|
|
17794
|
+
* @returns Offer Success
|
|
17924
17795
|
* @throws ApiError
|
|
17925
17796
|
*/
|
|
17926
17797
|
post({ requestBody, }: {
|
|
17927
17798
|
/**
|
|
17928
17799
|
* The <typeparamref name="TObject" /> model.
|
|
17929
17800
|
*/
|
|
17930
|
-
requestBody?:
|
|
17931
|
-
}): CancelablePromise<
|
|
17801
|
+
requestBody?: OfferPost;
|
|
17802
|
+
}): CancelablePromise<Offer>;
|
|
17932
17803
|
/**
|
|
17933
17804
|
* Patches the resource.
|
|
17934
|
-
* @returns
|
|
17805
|
+
* @returns Offer Success
|
|
17935
17806
|
* @throws ApiError
|
|
17936
17807
|
*/
|
|
17937
17808
|
patch({ requestBody, }: {
|
|
17938
17809
|
/**
|
|
17939
17810
|
* The <typeparamref name="TObject" /> model.
|
|
17940
17811
|
*/
|
|
17941
|
-
requestBody?:
|
|
17942
|
-
}): CancelablePromise<
|
|
17812
|
+
requestBody?: OfferPatch;
|
|
17813
|
+
}): CancelablePromise<Offer>;
|
|
17943
17814
|
/**
|
|
17944
17815
|
* Inserts a list of resources.
|
|
17945
|
-
* @returns
|
|
17816
|
+
* @returns Offer Success
|
|
17946
17817
|
* @throws ApiError
|
|
17947
17818
|
*/
|
|
17948
17819
|
postList({ requestBody, }: {
|
|
17949
17820
|
/**
|
|
17950
17821
|
* The list of <typeparamref name="TObject" />.
|
|
17951
17822
|
*/
|
|
17952
|
-
requestBody?: Array<
|
|
17953
|
-
}): CancelablePromise<Array<
|
|
17823
|
+
requestBody?: Array<OfferPost>;
|
|
17824
|
+
}): CancelablePromise<Array<Offer>>;
|
|
17954
17825
|
/**
|
|
17955
17826
|
* Patches the resource.
|
|
17956
|
-
* @returns
|
|
17827
|
+
* @returns Offer Success
|
|
17957
17828
|
* @throws ApiError
|
|
17958
17829
|
*/
|
|
17959
17830
|
patchWithReferences({ requestBody, }: {
|
|
17960
17831
|
/**
|
|
17961
17832
|
* The <typeparamref name="TObject" /> model.
|
|
17962
17833
|
*/
|
|
17963
|
-
requestBody?:
|
|
17964
|
-
}): CancelablePromise<
|
|
17834
|
+
requestBody?: OfferPatch;
|
|
17835
|
+
}): CancelablePromise<Offer>;
|
|
17965
17836
|
/**
|
|
17966
17837
|
* Deletes the resource.
|
|
17967
17838
|
* @returns any Success
|
|
@@ -17971,18 +17842,66 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
17971
17842
|
/**
|
|
17972
17843
|
* The <typeparamref name="TObject" /> model.
|
|
17973
17844
|
*/
|
|
17974
|
-
requestBody?:
|
|
17845
|
+
requestBody?: Offer;
|
|
17975
17846
|
}): CancelablePromise<any>;
|
|
17976
17847
|
/**
|
|
17977
17848
|
* Gets a list of resources.
|
|
17978
|
-
* @returns
|
|
17849
|
+
* @returns OfferPage Success
|
|
17979
17850
|
* @throws ApiError
|
|
17980
17851
|
*/
|
|
17981
|
-
getPage({
|
|
17852
|
+
getPage({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17982
17853
|
/**
|
|
17983
|
-
* Gets or sets
|
|
17854
|
+
* Gets or sets the queryable facility id.
|
|
17984
17855
|
*/
|
|
17985
|
-
|
|
17856
|
+
facilityId?: string;
|
|
17857
|
+
/**
|
|
17858
|
+
* Gets or sets the queryable facility ids.
|
|
17859
|
+
*/
|
|
17860
|
+
facilityIds?: Array<string>;
|
|
17861
|
+
/**
|
|
17862
|
+
* Gets or sets the queryable facility individual id.
|
|
17863
|
+
*/
|
|
17864
|
+
facilityIndividualId?: string;
|
|
17865
|
+
/**
|
|
17866
|
+
* Gets or sets the queryable facility individual ids.
|
|
17867
|
+
*/
|
|
17868
|
+
facilityIndividualIds?: Array<string>;
|
|
17869
|
+
/**
|
|
17870
|
+
* Gets or sets the queryable session id.
|
|
17871
|
+
*/
|
|
17872
|
+
sessionId?: string;
|
|
17873
|
+
/**
|
|
17874
|
+
* Gets or sets the queryable session ids.
|
|
17875
|
+
*/
|
|
17876
|
+
sessionIds?: Array<string>;
|
|
17877
|
+
/**
|
|
17878
|
+
* Gets or sets the queryable course id.
|
|
17879
|
+
*/
|
|
17880
|
+
courseId?: string;
|
|
17881
|
+
/**
|
|
17882
|
+
* Gets or sets the queryable course ids.
|
|
17883
|
+
*/
|
|
17884
|
+
courseIds?: Array<string>;
|
|
17885
|
+
/**
|
|
17886
|
+
* Gets or sets the queryable slot offer slot id.
|
|
17887
|
+
*/
|
|
17888
|
+
slotOfferSlotId?: string;
|
|
17889
|
+
/**
|
|
17890
|
+
* Gets or sets the queryable slot offer slot ids.
|
|
17891
|
+
*/
|
|
17892
|
+
slotOfferSlotIds?: Array<string>;
|
|
17893
|
+
/**
|
|
17894
|
+
* Gets or sets the queryable active state.
|
|
17895
|
+
*/
|
|
17896
|
+
active?: boolean;
|
|
17897
|
+
/**
|
|
17898
|
+
* Gets or sets the queryable price total is greater than or equal to.
|
|
17899
|
+
*/
|
|
17900
|
+
priceTotalGte?: number;
|
|
17901
|
+
/**
|
|
17902
|
+
* Gets or sets the queryable price total is less than or equal to.
|
|
17903
|
+
*/
|
|
17904
|
+
priceTotalLte?: number;
|
|
17986
17905
|
/**
|
|
17987
17906
|
* Gets or sets the page number for paged queries.
|
|
17988
17907
|
*/
|
|
@@ -18027,7 +17946,7 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18027
17946
|
* Gets or sets the sort order direction.
|
|
18028
17947
|
*/
|
|
18029
17948
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18030
|
-
}): CancelablePromise<
|
|
17949
|
+
}): CancelablePromise<OfferPage>;
|
|
18031
17950
|
/**
|
|
18032
17951
|
* Deletes the resource.
|
|
18033
17952
|
* @returns any Success
|
|
@@ -18041,7 +17960,7 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18041
17960
|
}): CancelablePromise<any>;
|
|
18042
17961
|
/**
|
|
18043
17962
|
* Gets the resource by its Id.
|
|
18044
|
-
* @returns
|
|
17963
|
+
* @returns Offer Success
|
|
18045
17964
|
* @throws ApiError
|
|
18046
17965
|
*/
|
|
18047
17966
|
getObject({ id, }: {
|
|
@@ -18049,7 +17968,7 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18049
17968
|
* The <typeparamref name="TObject" /> id.
|
|
18050
17969
|
*/
|
|
18051
17970
|
id: string;
|
|
18052
|
-
}): CancelablePromise<
|
|
17971
|
+
}): CancelablePromise<Offer>;
|
|
18053
17972
|
/**
|
|
18054
17973
|
* Returns a value indicating whether the resource is deletable.
|
|
18055
17974
|
* @returns boolean Success
|
|
@@ -18066,11 +17985,59 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18066
17985
|
* @returns boolean Success
|
|
18067
17986
|
* @throws ApiError
|
|
18068
17987
|
*/
|
|
18069
|
-
exists({
|
|
17988
|
+
exists({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18070
17989
|
/**
|
|
18071
|
-
* Gets or sets
|
|
17990
|
+
* Gets or sets the queryable facility id.
|
|
18072
17991
|
*/
|
|
18073
|
-
|
|
17992
|
+
facilityId?: string;
|
|
17993
|
+
/**
|
|
17994
|
+
* Gets or sets the queryable facility ids.
|
|
17995
|
+
*/
|
|
17996
|
+
facilityIds?: Array<string>;
|
|
17997
|
+
/**
|
|
17998
|
+
* Gets or sets the queryable facility individual id.
|
|
17999
|
+
*/
|
|
18000
|
+
facilityIndividualId?: string;
|
|
18001
|
+
/**
|
|
18002
|
+
* Gets or sets the queryable facility individual ids.
|
|
18003
|
+
*/
|
|
18004
|
+
facilityIndividualIds?: Array<string>;
|
|
18005
|
+
/**
|
|
18006
|
+
* Gets or sets the queryable session id.
|
|
18007
|
+
*/
|
|
18008
|
+
sessionId?: string;
|
|
18009
|
+
/**
|
|
18010
|
+
* Gets or sets the queryable session ids.
|
|
18011
|
+
*/
|
|
18012
|
+
sessionIds?: Array<string>;
|
|
18013
|
+
/**
|
|
18014
|
+
* Gets or sets the queryable course id.
|
|
18015
|
+
*/
|
|
18016
|
+
courseId?: string;
|
|
18017
|
+
/**
|
|
18018
|
+
* Gets or sets the queryable course ids.
|
|
18019
|
+
*/
|
|
18020
|
+
courseIds?: Array<string>;
|
|
18021
|
+
/**
|
|
18022
|
+
* Gets or sets the queryable slot offer slot id.
|
|
18023
|
+
*/
|
|
18024
|
+
slotOfferSlotId?: string;
|
|
18025
|
+
/**
|
|
18026
|
+
* Gets or sets the queryable slot offer slot ids.
|
|
18027
|
+
*/
|
|
18028
|
+
slotOfferSlotIds?: Array<string>;
|
|
18029
|
+
/**
|
|
18030
|
+
* Gets or sets the queryable active state.
|
|
18031
|
+
*/
|
|
18032
|
+
active?: boolean;
|
|
18033
|
+
/**
|
|
18034
|
+
* Gets or sets the queryable price total is greater than or equal to.
|
|
18035
|
+
*/
|
|
18036
|
+
priceTotalGte?: number;
|
|
18037
|
+
/**
|
|
18038
|
+
* Gets or sets the queryable price total is less than or equal to.
|
|
18039
|
+
*/
|
|
18040
|
+
priceTotalLte?: number;
|
|
18074
18041
|
/**
|
|
18075
18042
|
* Gets or sets the page number for paged queries.
|
|
18076
18043
|
*/
|
|
@@ -18118,14 +18085,62 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18118
18085
|
}): CancelablePromise<boolean>;
|
|
18119
18086
|
/**
|
|
18120
18087
|
* Gets a list of resources unpaged and without references.
|
|
18121
|
-
* @returns
|
|
18088
|
+
* @returns Offer Success
|
|
18122
18089
|
* @throws ApiError
|
|
18123
18090
|
*/
|
|
18124
|
-
getListWithoutReferences({
|
|
18091
|
+
getListWithoutReferences({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18125
18092
|
/**
|
|
18126
|
-
* Gets or sets
|
|
18093
|
+
* Gets or sets the queryable facility id.
|
|
18127
18094
|
*/
|
|
18128
|
-
|
|
18095
|
+
facilityId?: string;
|
|
18096
|
+
/**
|
|
18097
|
+
* Gets or sets the queryable facility ids.
|
|
18098
|
+
*/
|
|
18099
|
+
facilityIds?: Array<string>;
|
|
18100
|
+
/**
|
|
18101
|
+
* Gets or sets the queryable facility individual id.
|
|
18102
|
+
*/
|
|
18103
|
+
facilityIndividualId?: string;
|
|
18104
|
+
/**
|
|
18105
|
+
* Gets or sets the queryable facility individual ids.
|
|
18106
|
+
*/
|
|
18107
|
+
facilityIndividualIds?: Array<string>;
|
|
18108
|
+
/**
|
|
18109
|
+
* Gets or sets the queryable session id.
|
|
18110
|
+
*/
|
|
18111
|
+
sessionId?: string;
|
|
18112
|
+
/**
|
|
18113
|
+
* Gets or sets the queryable session ids.
|
|
18114
|
+
*/
|
|
18115
|
+
sessionIds?: Array<string>;
|
|
18116
|
+
/**
|
|
18117
|
+
* Gets or sets the queryable course id.
|
|
18118
|
+
*/
|
|
18119
|
+
courseId?: string;
|
|
18120
|
+
/**
|
|
18121
|
+
* Gets or sets the queryable course ids.
|
|
18122
|
+
*/
|
|
18123
|
+
courseIds?: Array<string>;
|
|
18124
|
+
/**
|
|
18125
|
+
* Gets or sets the queryable slot offer slot id.
|
|
18126
|
+
*/
|
|
18127
|
+
slotOfferSlotId?: string;
|
|
18128
|
+
/**
|
|
18129
|
+
* Gets or sets the queryable slot offer slot ids.
|
|
18130
|
+
*/
|
|
18131
|
+
slotOfferSlotIds?: Array<string>;
|
|
18132
|
+
/**
|
|
18133
|
+
* Gets or sets the queryable active state.
|
|
18134
|
+
*/
|
|
18135
|
+
active?: boolean;
|
|
18136
|
+
/**
|
|
18137
|
+
* Gets or sets the queryable price total is greater than or equal to.
|
|
18138
|
+
*/
|
|
18139
|
+
priceTotalGte?: number;
|
|
18140
|
+
/**
|
|
18141
|
+
* Gets or sets the queryable price total is less than or equal to.
|
|
18142
|
+
*/
|
|
18143
|
+
priceTotalLte?: number;
|
|
18129
18144
|
/**
|
|
18130
18145
|
* Gets or sets the page number for paged queries.
|
|
18131
18146
|
*/
|
|
@@ -18170,17 +18185,65 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18170
18185
|
* Gets or sets the sort order direction.
|
|
18171
18186
|
*/
|
|
18172
18187
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18173
|
-
}): CancelablePromise<Array<
|
|
18188
|
+
}): CancelablePromise<Array<Offer>>;
|
|
18174
18189
|
/**
|
|
18175
18190
|
* Gets a list of resources.
|
|
18176
|
-
* @returns
|
|
18191
|
+
* @returns Offer Success
|
|
18177
18192
|
* @throws ApiError
|
|
18178
18193
|
*/
|
|
18179
|
-
getListIdName({
|
|
18194
|
+
getListIdName({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18180
18195
|
/**
|
|
18181
|
-
* Gets or sets
|
|
18196
|
+
* Gets or sets the queryable facility id.
|
|
18182
18197
|
*/
|
|
18183
|
-
|
|
18198
|
+
facilityId?: string;
|
|
18199
|
+
/**
|
|
18200
|
+
* Gets or sets the queryable facility ids.
|
|
18201
|
+
*/
|
|
18202
|
+
facilityIds?: Array<string>;
|
|
18203
|
+
/**
|
|
18204
|
+
* Gets or sets the queryable facility individual id.
|
|
18205
|
+
*/
|
|
18206
|
+
facilityIndividualId?: string;
|
|
18207
|
+
/**
|
|
18208
|
+
* Gets or sets the queryable facility individual ids.
|
|
18209
|
+
*/
|
|
18210
|
+
facilityIndividualIds?: Array<string>;
|
|
18211
|
+
/**
|
|
18212
|
+
* Gets or sets the queryable session id.
|
|
18213
|
+
*/
|
|
18214
|
+
sessionId?: string;
|
|
18215
|
+
/**
|
|
18216
|
+
* Gets or sets the queryable session ids.
|
|
18217
|
+
*/
|
|
18218
|
+
sessionIds?: Array<string>;
|
|
18219
|
+
/**
|
|
18220
|
+
* Gets or sets the queryable course id.
|
|
18221
|
+
*/
|
|
18222
|
+
courseId?: string;
|
|
18223
|
+
/**
|
|
18224
|
+
* Gets or sets the queryable course ids.
|
|
18225
|
+
*/
|
|
18226
|
+
courseIds?: Array<string>;
|
|
18227
|
+
/**
|
|
18228
|
+
* Gets or sets the queryable slot offer slot id.
|
|
18229
|
+
*/
|
|
18230
|
+
slotOfferSlotId?: string;
|
|
18231
|
+
/**
|
|
18232
|
+
* Gets or sets the queryable slot offer slot ids.
|
|
18233
|
+
*/
|
|
18234
|
+
slotOfferSlotIds?: Array<string>;
|
|
18235
|
+
/**
|
|
18236
|
+
* Gets or sets the queryable active state.
|
|
18237
|
+
*/
|
|
18238
|
+
active?: boolean;
|
|
18239
|
+
/**
|
|
18240
|
+
* Gets or sets the queryable price total is greater than or equal to.
|
|
18241
|
+
*/
|
|
18242
|
+
priceTotalGte?: number;
|
|
18243
|
+
/**
|
|
18244
|
+
* Gets or sets the queryable price total is less than or equal to.
|
|
18245
|
+
*/
|
|
18246
|
+
priceTotalLte?: number;
|
|
18184
18247
|
/**
|
|
18185
18248
|
* Gets or sets the page number for paged queries.
|
|
18186
18249
|
*/
|
|
@@ -18225,13 +18288,36 @@ declare class OpenactiveFeedIntermediateService {
|
|
|
18225
18288
|
* Gets or sets the sort order direction.
|
|
18226
18289
|
*/
|
|
18227
18290
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18228
|
-
}): CancelablePromise<Array<
|
|
18291
|
+
}): CancelablePromise<Array<Offer>>;
|
|
18229
18292
|
}
|
|
18230
18293
|
|
|
18231
18294
|
/**
|
|
18232
|
-
*
|
|
18295
|
+
* The Reach Entity.
|
|
18233
18296
|
*/
|
|
18234
|
-
|
|
18297
|
+
declare enum ReachEntity {
|
|
18298
|
+
TENANT = "Tenant",
|
|
18299
|
+
VENUE = "Venue",
|
|
18300
|
+
SLOT = "Slot",
|
|
18301
|
+
SLOT_SCHEDULE = "SlotSchedule",
|
|
18302
|
+
FACILITY = "Facility",
|
|
18303
|
+
FACILITY_INDIVIDUAL = "FacilityIndividual",
|
|
18304
|
+
SCHEDULED_SESSION = "ScheduledSession",
|
|
18305
|
+
SESSION = "Session",
|
|
18306
|
+
COURSE = "Course"
|
|
18307
|
+
}
|
|
18308
|
+
|
|
18309
|
+
/**
|
|
18310
|
+
* The Reach Operation performed on an entity.
|
|
18311
|
+
*/
|
|
18312
|
+
declare enum ReachOperation {
|
|
18313
|
+
UPDATED = "Updated",
|
|
18314
|
+
DELETED = "Deleted"
|
|
18315
|
+
}
|
|
18316
|
+
|
|
18317
|
+
/**
|
|
18318
|
+
* Represents an intermediate opendata feed table within the Reach application, that holds changes to reach entities.
|
|
18319
|
+
*/
|
|
18320
|
+
type OpenactiveFeedIntermediate = {
|
|
18235
18321
|
/**
|
|
18236
18322
|
* Gets or sets the entities Id.
|
|
18237
18323
|
*/
|
|
@@ -18256,42 +18342,31 @@ type OpenactiveFeedItem = {
|
|
|
18256
18342
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
18257
18343
|
*/
|
|
18258
18344
|
isLive: boolean;
|
|
18259
|
-
type?: ReachEntity;
|
|
18260
|
-
/**
|
|
18261
|
-
* Gets or sets the openactive intermediate id that was used to generate this record.
|
|
18262
|
-
*/
|
|
18263
|
-
openactiveFeedIntermediateId?: string | null;
|
|
18264
18345
|
/**
|
|
18265
|
-
* Gets or sets the
|
|
18346
|
+
* Gets or sets the model id.
|
|
18266
18347
|
*/
|
|
18267
18348
|
modelId?: string | null;
|
|
18349
|
+
modelName?: ReachEntity;
|
|
18350
|
+
operation?: ReachOperation;
|
|
18268
18351
|
/**
|
|
18269
|
-
* Gets or sets a value indicating whether the
|
|
18352
|
+
* Gets or sets a value indicating whether the operation has been processed.
|
|
18270
18353
|
*/
|
|
18271
|
-
|
|
18272
|
-
/**
|
|
18273
|
-
* Gets or sets the json string representation of the item being inserted.
|
|
18274
|
-
*/
|
|
18275
|
-
json?: string | null;
|
|
18276
|
-
/**
|
|
18277
|
-
* Gets or sets the json string representation of the items tenant.
|
|
18278
|
-
*/
|
|
18279
|
-
tenantJson?: string | null;
|
|
18354
|
+
processed?: boolean | null;
|
|
18280
18355
|
/**
|
|
18281
|
-
* Gets or sets the
|
|
18356
|
+
* Gets or sets a value indicating whether the operation errored.
|
|
18282
18357
|
*/
|
|
18283
|
-
|
|
18358
|
+
errored?: boolean | null;
|
|
18284
18359
|
};
|
|
18285
18360
|
|
|
18286
|
-
type
|
|
18361
|
+
type OpenactiveFeedIntermediatePage = {
|
|
18287
18362
|
pagination: Pagination;
|
|
18288
|
-
readonly items: Array<
|
|
18363
|
+
readonly items: Array<OpenactiveFeedIntermediate>;
|
|
18289
18364
|
};
|
|
18290
18365
|
|
|
18291
18366
|
/**
|
|
18292
|
-
* Post model for open active feed
|
|
18367
|
+
* Post model for open active feed intermediate updates.
|
|
18293
18368
|
*/
|
|
18294
|
-
type
|
|
18369
|
+
type OpenactiveFeedIntermediatePatch = {
|
|
18295
18370
|
/**
|
|
18296
18371
|
* Gets or sets the tenant Id.
|
|
18297
18372
|
*/
|
|
@@ -18303,62 +18378,68 @@ type OpenactiveFeedItemPatch = {
|
|
|
18303
18378
|
};
|
|
18304
18379
|
|
|
18305
18380
|
/**
|
|
18306
|
-
* Post model for open active feed
|
|
18381
|
+
* Post model for open active feed intermediate inserts.
|
|
18307
18382
|
*/
|
|
18308
|
-
type
|
|
18383
|
+
type OpenactiveFeedIntermediatePost = {
|
|
18309
18384
|
/**
|
|
18310
18385
|
* Gets or sets the tenant Id.
|
|
18311
18386
|
*/
|
|
18312
18387
|
tenantId: string;
|
|
18313
18388
|
};
|
|
18314
18389
|
|
|
18315
|
-
declare class
|
|
18390
|
+
declare class OpenactiveFeedIntermediateService {
|
|
18316
18391
|
readonly httpRequest: BaseHttpRequest;
|
|
18317
18392
|
constructor(httpRequest: BaseHttpRequest);
|
|
18393
|
+
/**
|
|
18394
|
+
* Processes the OA intermediates table.
|
|
18395
|
+
* @returns number Success
|
|
18396
|
+
* @throws ApiError
|
|
18397
|
+
*/
|
|
18398
|
+
process(): CancelablePromise<number>;
|
|
18318
18399
|
/**
|
|
18319
18400
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
18320
|
-
* @returns
|
|
18401
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18321
18402
|
* @throws ApiError
|
|
18322
18403
|
*/
|
|
18323
18404
|
post({ requestBody, }: {
|
|
18324
18405
|
/**
|
|
18325
18406
|
* The <typeparamref name="TObject" /> model.
|
|
18326
18407
|
*/
|
|
18327
|
-
requestBody?:
|
|
18328
|
-
}): CancelablePromise<
|
|
18408
|
+
requestBody?: OpenactiveFeedIntermediatePost;
|
|
18409
|
+
}): CancelablePromise<OpenactiveFeedIntermediate>;
|
|
18329
18410
|
/**
|
|
18330
18411
|
* Patches the resource.
|
|
18331
|
-
* @returns
|
|
18412
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18332
18413
|
* @throws ApiError
|
|
18333
18414
|
*/
|
|
18334
18415
|
patch({ requestBody, }: {
|
|
18335
18416
|
/**
|
|
18336
18417
|
* The <typeparamref name="TObject" /> model.
|
|
18337
18418
|
*/
|
|
18338
|
-
requestBody?:
|
|
18339
|
-
}): CancelablePromise<
|
|
18419
|
+
requestBody?: OpenactiveFeedIntermediatePatch;
|
|
18420
|
+
}): CancelablePromise<OpenactiveFeedIntermediate>;
|
|
18340
18421
|
/**
|
|
18341
18422
|
* Inserts a list of resources.
|
|
18342
|
-
* @returns
|
|
18423
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18343
18424
|
* @throws ApiError
|
|
18344
18425
|
*/
|
|
18345
18426
|
postList({ requestBody, }: {
|
|
18346
18427
|
/**
|
|
18347
18428
|
* The list of <typeparamref name="TObject" />.
|
|
18348
18429
|
*/
|
|
18349
|
-
requestBody?: Array<
|
|
18350
|
-
}): CancelablePromise<Array<
|
|
18430
|
+
requestBody?: Array<OpenactiveFeedIntermediatePost>;
|
|
18431
|
+
}): CancelablePromise<Array<OpenactiveFeedIntermediate>>;
|
|
18351
18432
|
/**
|
|
18352
18433
|
* Patches the resource.
|
|
18353
|
-
* @returns
|
|
18434
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18354
18435
|
* @throws ApiError
|
|
18355
18436
|
*/
|
|
18356
18437
|
patchWithReferences({ requestBody, }: {
|
|
18357
18438
|
/**
|
|
18358
18439
|
* The <typeparamref name="TObject" /> model.
|
|
18359
18440
|
*/
|
|
18360
|
-
requestBody?:
|
|
18361
|
-
}): CancelablePromise<
|
|
18441
|
+
requestBody?: OpenactiveFeedIntermediatePatch;
|
|
18442
|
+
}): CancelablePromise<OpenactiveFeedIntermediate>;
|
|
18362
18443
|
/**
|
|
18363
18444
|
* Deletes the resource.
|
|
18364
18445
|
* @returns any Success
|
|
@@ -18368,22 +18449,18 @@ declare class OpenactiveFeedItemService {
|
|
|
18368
18449
|
/**
|
|
18369
18450
|
* The <typeparamref name="TObject" /> model.
|
|
18370
18451
|
*/
|
|
18371
|
-
requestBody?:
|
|
18452
|
+
requestBody?: OpenactiveFeedIntermediate;
|
|
18372
18453
|
}): CancelablePromise<any>;
|
|
18373
18454
|
/**
|
|
18374
18455
|
* Gets a list of resources.
|
|
18375
|
-
* @returns
|
|
18456
|
+
* @returns OpenactiveFeedIntermediatePage Success
|
|
18376
18457
|
* @throws ApiError
|
|
18377
18458
|
*/
|
|
18378
|
-
getPage({
|
|
18379
|
-
/**
|
|
18380
|
-
* Gets or sets the queryable items timestamp.
|
|
18381
|
-
*/
|
|
18382
|
-
versionGt?: number;
|
|
18459
|
+
getPage({ processed, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18383
18460
|
/**
|
|
18384
|
-
* Gets or sets the
|
|
18461
|
+
* Gets or sets a value indicating whether the entity has been processed.
|
|
18385
18462
|
*/
|
|
18386
|
-
|
|
18463
|
+
processed?: boolean;
|
|
18387
18464
|
/**
|
|
18388
18465
|
* Gets or sets the page number for paged queries.
|
|
18389
18466
|
*/
|
|
@@ -18428,7 +18505,7 @@ declare class OpenactiveFeedItemService {
|
|
|
18428
18505
|
* Gets or sets the sort order direction.
|
|
18429
18506
|
*/
|
|
18430
18507
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18431
|
-
}): CancelablePromise<
|
|
18508
|
+
}): CancelablePromise<OpenactiveFeedIntermediatePage>;
|
|
18432
18509
|
/**
|
|
18433
18510
|
* Deletes the resource.
|
|
18434
18511
|
* @returns any Success
|
|
@@ -18442,7 +18519,7 @@ declare class OpenactiveFeedItemService {
|
|
|
18442
18519
|
}): CancelablePromise<any>;
|
|
18443
18520
|
/**
|
|
18444
18521
|
* Gets the resource by its Id.
|
|
18445
|
-
* @returns
|
|
18522
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18446
18523
|
* @throws ApiError
|
|
18447
18524
|
*/
|
|
18448
18525
|
getObject({ id, }: {
|
|
@@ -18450,7 +18527,7 @@ declare class OpenactiveFeedItemService {
|
|
|
18450
18527
|
* The <typeparamref name="TObject" /> id.
|
|
18451
18528
|
*/
|
|
18452
18529
|
id: string;
|
|
18453
|
-
}): CancelablePromise<
|
|
18530
|
+
}): CancelablePromise<OpenactiveFeedIntermediate>;
|
|
18454
18531
|
/**
|
|
18455
18532
|
* Returns a value indicating whether the resource is deletable.
|
|
18456
18533
|
* @returns boolean Success
|
|
@@ -18467,15 +18544,11 @@ declare class OpenactiveFeedItemService {
|
|
|
18467
18544
|
* @returns boolean Success
|
|
18468
18545
|
* @throws ApiError
|
|
18469
18546
|
*/
|
|
18470
|
-
exists({
|
|
18471
|
-
/**
|
|
18472
|
-
* Gets or sets the queryable items timestamp.
|
|
18473
|
-
*/
|
|
18474
|
-
versionGt?: number;
|
|
18547
|
+
exists({ processed, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18475
18548
|
/**
|
|
18476
|
-
* Gets or sets the
|
|
18549
|
+
* Gets or sets a value indicating whether the entity has been processed.
|
|
18477
18550
|
*/
|
|
18478
|
-
|
|
18551
|
+
processed?: boolean;
|
|
18479
18552
|
/**
|
|
18480
18553
|
* Gets or sets the page number for paged queries.
|
|
18481
18554
|
*/
|
|
@@ -18523,18 +18596,14 @@ declare class OpenactiveFeedItemService {
|
|
|
18523
18596
|
}): CancelablePromise<boolean>;
|
|
18524
18597
|
/**
|
|
18525
18598
|
* Gets a list of resources unpaged and without references.
|
|
18526
|
-
* @returns
|
|
18599
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18527
18600
|
* @throws ApiError
|
|
18528
18601
|
*/
|
|
18529
|
-
getListWithoutReferences({
|
|
18530
|
-
/**
|
|
18531
|
-
* Gets or sets the queryable items timestamp.
|
|
18532
|
-
*/
|
|
18533
|
-
versionGt?: number;
|
|
18602
|
+
getListWithoutReferences({ processed, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18534
18603
|
/**
|
|
18535
|
-
* Gets or sets the
|
|
18604
|
+
* Gets or sets a value indicating whether the entity has been processed.
|
|
18536
18605
|
*/
|
|
18537
|
-
|
|
18606
|
+
processed?: boolean;
|
|
18538
18607
|
/**
|
|
18539
18608
|
* Gets or sets the page number for paged queries.
|
|
18540
18609
|
*/
|
|
@@ -18579,21 +18648,17 @@ declare class OpenactiveFeedItemService {
|
|
|
18579
18648
|
* Gets or sets the sort order direction.
|
|
18580
18649
|
*/
|
|
18581
18650
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18582
|
-
}): CancelablePromise<Array<
|
|
18651
|
+
}): CancelablePromise<Array<OpenactiveFeedIntermediate>>;
|
|
18583
18652
|
/**
|
|
18584
18653
|
* Gets a list of resources.
|
|
18585
|
-
* @returns
|
|
18654
|
+
* @returns OpenactiveFeedIntermediate Success
|
|
18586
18655
|
* @throws ApiError
|
|
18587
18656
|
*/
|
|
18588
|
-
getListIdName({
|
|
18589
|
-
/**
|
|
18590
|
-
* Gets or sets the queryable items timestamp.
|
|
18591
|
-
*/
|
|
18592
|
-
versionGt?: number;
|
|
18657
|
+
getListIdName({ processed, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18593
18658
|
/**
|
|
18594
|
-
* Gets or sets the
|
|
18659
|
+
* Gets or sets a value indicating whether the entity has been processed.
|
|
18595
18660
|
*/
|
|
18596
|
-
|
|
18661
|
+
processed?: boolean;
|
|
18597
18662
|
/**
|
|
18598
18663
|
* Gets or sets the page number for paged queries.
|
|
18599
18664
|
*/
|
|
@@ -18638,21 +18703,13 @@ declare class OpenactiveFeedItemService {
|
|
|
18638
18703
|
* Gets or sets the sort order direction.
|
|
18639
18704
|
*/
|
|
18640
18705
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18641
|
-
}): CancelablePromise<Array<
|
|
18642
|
-
}
|
|
18643
|
-
|
|
18644
|
-
/**
|
|
18645
|
-
* The opportunity status.
|
|
18646
|
-
*/
|
|
18647
|
-
declare enum OpportunityRegisterStatus {
|
|
18648
|
-
ACTIVE = "Active",
|
|
18649
|
-
CANCELLED = "Cancelled"
|
|
18706
|
+
}): CancelablePromise<Array<OpenactiveFeedIntermediate>>;
|
|
18650
18707
|
}
|
|
18651
18708
|
|
|
18652
18709
|
/**
|
|
18653
|
-
* Represents an
|
|
18710
|
+
* Represents an organisation within the Reach application.
|
|
18654
18711
|
*/
|
|
18655
|
-
type
|
|
18712
|
+
type OpenactiveFeedItem = {
|
|
18656
18713
|
/**
|
|
18657
18714
|
* Gets or sets the entities Id.
|
|
18658
18715
|
*/
|
|
@@ -18677,54 +18734,42 @@ type OpportunityRegister = {
|
|
|
18677
18734
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
18678
18735
|
*/
|
|
18679
18736
|
isLive: boolean;
|
|
18737
|
+
type?: ReachEntity;
|
|
18680
18738
|
/**
|
|
18681
|
-
* Gets or sets the
|
|
18682
|
-
*/
|
|
18683
|
-
orderItemId?: string;
|
|
18684
|
-
/**
|
|
18685
|
-
* Gets or sets the attendee id.
|
|
18686
|
-
*/
|
|
18687
|
-
attendeeId?: string;
|
|
18688
|
-
/**
|
|
18689
|
-
* Gets or sets the scheduled session id.
|
|
18739
|
+
* Gets or sets the openactive intermediate id that was used to generate this record.
|
|
18690
18740
|
*/
|
|
18691
|
-
|
|
18741
|
+
openactiveFeedIntermediateId?: string | null;
|
|
18692
18742
|
/**
|
|
18693
|
-
* Gets or sets the
|
|
18743
|
+
* Gets or sets the original model id.
|
|
18694
18744
|
*/
|
|
18695
|
-
|
|
18745
|
+
modelId?: string | null;
|
|
18696
18746
|
/**
|
|
18697
|
-
* Gets or sets a value indicating whether the
|
|
18747
|
+
* Gets or sets a value indicating whether the item is deleted.
|
|
18698
18748
|
*/
|
|
18699
|
-
|
|
18749
|
+
deleted?: boolean | null;
|
|
18700
18750
|
/**
|
|
18701
|
-
* Gets or sets
|
|
18751
|
+
* Gets or sets the json string representation of the item being inserted.
|
|
18702
18752
|
*/
|
|
18703
|
-
|
|
18753
|
+
json?: string | null;
|
|
18704
18754
|
/**
|
|
18705
|
-
* Gets or sets
|
|
18755
|
+
* Gets or sets the json string representation of the items tenant.
|
|
18706
18756
|
*/
|
|
18707
|
-
|
|
18757
|
+
tenantJson?: string | null;
|
|
18708
18758
|
/**
|
|
18709
|
-
* Gets or sets the
|
|
18759
|
+
* Gets or sets the row version number.
|
|
18710
18760
|
*/
|
|
18711
|
-
|
|
18712
|
-
status?: OpportunityRegisterStatus;
|
|
18713
|
-
attendee?: Attendee;
|
|
18714
|
-
orderItem?: OrderItem;
|
|
18715
|
-
scheduledSession?: ScheduledSession;
|
|
18716
|
-
course?: Course;
|
|
18761
|
+
version?: number | null;
|
|
18717
18762
|
};
|
|
18718
18763
|
|
|
18719
|
-
type
|
|
18764
|
+
type OpenactiveFeedItemPage = {
|
|
18720
18765
|
pagination: Pagination;
|
|
18721
|
-
readonly items: Array<
|
|
18766
|
+
readonly items: Array<OpenactiveFeedItem>;
|
|
18722
18767
|
};
|
|
18723
18768
|
|
|
18724
18769
|
/**
|
|
18725
|
-
* Post model for
|
|
18770
|
+
* Post model for open active feed item updates.
|
|
18726
18771
|
*/
|
|
18727
|
-
type
|
|
18772
|
+
type OpenactiveFeedItemPatch = {
|
|
18728
18773
|
/**
|
|
18729
18774
|
* Gets or sets the tenant Id.
|
|
18730
18775
|
*/
|
|
@@ -18733,87 +18778,520 @@ type OpportunityRegisterPatch = {
|
|
|
18733
18778
|
* Gets or sets the Id.
|
|
18734
18779
|
*/
|
|
18735
18780
|
id: string;
|
|
18736
|
-
/**
|
|
18737
|
-
* Gets or sets a value indicating whether the attendee has been checked in.
|
|
18738
|
-
*/
|
|
18739
|
-
checkedIn?: boolean;
|
|
18740
18781
|
};
|
|
18741
18782
|
|
|
18742
18783
|
/**
|
|
18743
|
-
* Post model for
|
|
18784
|
+
* Post model for open active feed item inserts.
|
|
18744
18785
|
*/
|
|
18745
|
-
type
|
|
18786
|
+
type OpenactiveFeedItemPost = {
|
|
18746
18787
|
/**
|
|
18747
18788
|
* Gets or sets the tenant Id.
|
|
18748
18789
|
*/
|
|
18749
18790
|
tenantId: string;
|
|
18750
18791
|
};
|
|
18751
18792
|
|
|
18752
|
-
declare class
|
|
18793
|
+
declare class OpenactiveFeedItemService {
|
|
18753
18794
|
readonly httpRequest: BaseHttpRequest;
|
|
18754
18795
|
constructor(httpRequest: BaseHttpRequest);
|
|
18755
18796
|
/**
|
|
18756
|
-
*
|
|
18757
|
-
* @returns
|
|
18797
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
18798
|
+
* @returns OpenactiveFeedItem Success
|
|
18758
18799
|
* @throws ApiError
|
|
18759
18800
|
*/
|
|
18760
|
-
|
|
18761
|
-
/**
|
|
18762
|
-
* The current register the attendee is assigned to.
|
|
18763
|
-
*/
|
|
18764
|
-
opportunityRegisterId: string;
|
|
18801
|
+
post({ requestBody, }: {
|
|
18765
18802
|
/**
|
|
18766
|
-
* The
|
|
18803
|
+
* The <typeparamref name="TObject" /> model.
|
|
18767
18804
|
*/
|
|
18768
|
-
|
|
18769
|
-
}): CancelablePromise<
|
|
18805
|
+
requestBody?: OpenactiveFeedItemPost;
|
|
18806
|
+
}): CancelablePromise<OpenactiveFeedItem>;
|
|
18770
18807
|
/**
|
|
18771
|
-
*
|
|
18772
|
-
*
|
|
18773
|
-
* @returns any Success
|
|
18808
|
+
* Patches the resource.
|
|
18809
|
+
* @returns OpenactiveFeedItem Success
|
|
18774
18810
|
* @throws ApiError
|
|
18775
18811
|
*/
|
|
18776
|
-
|
|
18777
|
-
/**
|
|
18778
|
-
* Gets or sets the queryable order item id.
|
|
18779
|
-
*/
|
|
18780
|
-
orderItemId?: string;
|
|
18781
|
-
/**
|
|
18782
|
-
* Gets or sets the queryable order item ids.
|
|
18783
|
-
*/
|
|
18784
|
-
orderItemIds?: Array<string>;
|
|
18785
|
-
/**
|
|
18786
|
-
* Gets or sets the queryable attendee id.
|
|
18787
|
-
*/
|
|
18788
|
-
attendeeId?: string;
|
|
18789
|
-
/**
|
|
18790
|
-
* Gets or sets the queryable scheduled session id.
|
|
18791
|
-
*/
|
|
18792
|
-
scheduledSessionId?: string;
|
|
18812
|
+
patch({ requestBody, }: {
|
|
18793
18813
|
/**
|
|
18794
|
-
*
|
|
18814
|
+
* The <typeparamref name="TObject" /> model.
|
|
18795
18815
|
*/
|
|
18796
|
-
|
|
18816
|
+
requestBody?: OpenactiveFeedItemPatch;
|
|
18817
|
+
}): CancelablePromise<OpenactiveFeedItem>;
|
|
18818
|
+
/**
|
|
18819
|
+
* Inserts a list of resources.
|
|
18820
|
+
* @returns OpenactiveFeedItem Success
|
|
18821
|
+
* @throws ApiError
|
|
18822
|
+
*/
|
|
18823
|
+
postList({ requestBody, }: {
|
|
18797
18824
|
/**
|
|
18798
|
-
*
|
|
18825
|
+
* The list of <typeparamref name="TObject" />.
|
|
18799
18826
|
*/
|
|
18800
|
-
|
|
18827
|
+
requestBody?: Array<OpenactiveFeedItemPost>;
|
|
18828
|
+
}): CancelablePromise<Array<OpenactiveFeedItem>>;
|
|
18829
|
+
/**
|
|
18830
|
+
* Patches the resource.
|
|
18831
|
+
* @returns OpenactiveFeedItem Success
|
|
18832
|
+
* @throws ApiError
|
|
18833
|
+
*/
|
|
18834
|
+
patchWithReferences({ requestBody, }: {
|
|
18801
18835
|
/**
|
|
18802
|
-
*
|
|
18836
|
+
* The <typeparamref name="TObject" /> model.
|
|
18803
18837
|
*/
|
|
18804
|
-
|
|
18838
|
+
requestBody?: OpenactiveFeedItemPatch;
|
|
18839
|
+
}): CancelablePromise<OpenactiveFeedItem>;
|
|
18840
|
+
/**
|
|
18841
|
+
* Deletes the resource.
|
|
18842
|
+
* @returns any Success
|
|
18843
|
+
* @throws ApiError
|
|
18844
|
+
*/
|
|
18845
|
+
deleteByObject({ requestBody, }: {
|
|
18805
18846
|
/**
|
|
18806
|
-
*
|
|
18847
|
+
* The <typeparamref name="TObject" /> model.
|
|
18807
18848
|
*/
|
|
18808
|
-
|
|
18849
|
+
requestBody?: OpenactiveFeedItem;
|
|
18850
|
+
}): CancelablePromise<any>;
|
|
18851
|
+
/**
|
|
18852
|
+
* Gets a list of resources.
|
|
18853
|
+
* @returns OpenactiveFeedItemPage Success
|
|
18854
|
+
* @throws ApiError
|
|
18855
|
+
*/
|
|
18856
|
+
getPage({ versionGt, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18809
18857
|
/**
|
|
18810
|
-
* Gets or sets the queryable
|
|
18858
|
+
* Gets or sets the queryable items timestamp.
|
|
18811
18859
|
*/
|
|
18812
|
-
|
|
18860
|
+
versionGt?: number;
|
|
18813
18861
|
/**
|
|
18814
|
-
* Gets or sets the queryable
|
|
18862
|
+
* Gets or sets the queryable item type.
|
|
18815
18863
|
*/
|
|
18816
|
-
|
|
18864
|
+
type?: ReachEntity;
|
|
18865
|
+
/**
|
|
18866
|
+
* Gets or sets the page number for paged queries.
|
|
18867
|
+
*/
|
|
18868
|
+
pageNumber?: number;
|
|
18869
|
+
/**
|
|
18870
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18871
|
+
*/
|
|
18872
|
+
take?: number;
|
|
18873
|
+
/**
|
|
18874
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
18875
|
+
*/
|
|
18876
|
+
skip?: number;
|
|
18877
|
+
/**
|
|
18878
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18879
|
+
*/
|
|
18880
|
+
limitListRequests?: boolean;
|
|
18881
|
+
/**
|
|
18882
|
+
* Gets or sets the Tenant Id.
|
|
18883
|
+
*/
|
|
18884
|
+
tenantId?: string;
|
|
18885
|
+
/**
|
|
18886
|
+
* Gets or sets the Modifed By Id.
|
|
18887
|
+
*/
|
|
18888
|
+
modifiedById?: string;
|
|
18889
|
+
/**
|
|
18890
|
+
* Gets or sets the Modifed By Ids.
|
|
18891
|
+
*/
|
|
18892
|
+
modifiedByIds?: Array<string>;
|
|
18893
|
+
/**
|
|
18894
|
+
* Gets or sets the Date Created greater than equal to.
|
|
18895
|
+
*/
|
|
18896
|
+
dateCreatedGte?: string;
|
|
18897
|
+
/**
|
|
18898
|
+
* Gets or sets the Date Created less than equal to.
|
|
18899
|
+
*/
|
|
18900
|
+
dateCreatedLte?: string;
|
|
18901
|
+
/**
|
|
18902
|
+
* Gets or sets the queryable only is live status.
|
|
18903
|
+
*/
|
|
18904
|
+
isLive?: boolean;
|
|
18905
|
+
/**
|
|
18906
|
+
* Gets or sets the sort order direction.
|
|
18907
|
+
*/
|
|
18908
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
18909
|
+
}): CancelablePromise<OpenactiveFeedItemPage>;
|
|
18910
|
+
/**
|
|
18911
|
+
* Deletes the resource.
|
|
18912
|
+
* @returns any Success
|
|
18913
|
+
* @throws ApiError
|
|
18914
|
+
*/
|
|
18915
|
+
deleteById({ id, }: {
|
|
18916
|
+
/**
|
|
18917
|
+
* The <typeparamref name="TObject" /> id.
|
|
18918
|
+
*/
|
|
18919
|
+
id: string;
|
|
18920
|
+
}): CancelablePromise<any>;
|
|
18921
|
+
/**
|
|
18922
|
+
* Gets the resource by its Id.
|
|
18923
|
+
* @returns OpenactiveFeedItem Success
|
|
18924
|
+
* @throws ApiError
|
|
18925
|
+
*/
|
|
18926
|
+
getObject({ id, }: {
|
|
18927
|
+
/**
|
|
18928
|
+
* The <typeparamref name="TObject" /> id.
|
|
18929
|
+
*/
|
|
18930
|
+
id: string;
|
|
18931
|
+
}): CancelablePromise<OpenactiveFeedItem>;
|
|
18932
|
+
/**
|
|
18933
|
+
* Returns a value indicating whether the resource is deletable.
|
|
18934
|
+
* @returns boolean Success
|
|
18935
|
+
* @throws ApiError
|
|
18936
|
+
*/
|
|
18937
|
+
canDelete({ id, }: {
|
|
18938
|
+
/**
|
|
18939
|
+
* The <typeparamref name="TObject" /> id.
|
|
18940
|
+
*/
|
|
18941
|
+
id: string;
|
|
18942
|
+
}): CancelablePromise<boolean>;
|
|
18943
|
+
/**
|
|
18944
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
18945
|
+
* @returns boolean Success
|
|
18946
|
+
* @throws ApiError
|
|
18947
|
+
*/
|
|
18948
|
+
exists({ versionGt, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18949
|
+
/**
|
|
18950
|
+
* Gets or sets the queryable items timestamp.
|
|
18951
|
+
*/
|
|
18952
|
+
versionGt?: number;
|
|
18953
|
+
/**
|
|
18954
|
+
* Gets or sets the queryable item type.
|
|
18955
|
+
*/
|
|
18956
|
+
type?: ReachEntity;
|
|
18957
|
+
/**
|
|
18958
|
+
* Gets or sets the page number for paged queries.
|
|
18959
|
+
*/
|
|
18960
|
+
pageNumber?: number;
|
|
18961
|
+
/**
|
|
18962
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18963
|
+
*/
|
|
18964
|
+
take?: number;
|
|
18965
|
+
/**
|
|
18966
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
18967
|
+
*/
|
|
18968
|
+
skip?: number;
|
|
18969
|
+
/**
|
|
18970
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18971
|
+
*/
|
|
18972
|
+
limitListRequests?: boolean;
|
|
18973
|
+
/**
|
|
18974
|
+
* Gets or sets the Tenant Id.
|
|
18975
|
+
*/
|
|
18976
|
+
tenantId?: string;
|
|
18977
|
+
/**
|
|
18978
|
+
* Gets or sets the Modifed By Id.
|
|
18979
|
+
*/
|
|
18980
|
+
modifiedById?: string;
|
|
18981
|
+
/**
|
|
18982
|
+
* Gets or sets the Modifed By Ids.
|
|
18983
|
+
*/
|
|
18984
|
+
modifiedByIds?: Array<string>;
|
|
18985
|
+
/**
|
|
18986
|
+
* Gets or sets the Date Created greater than equal to.
|
|
18987
|
+
*/
|
|
18988
|
+
dateCreatedGte?: string;
|
|
18989
|
+
/**
|
|
18990
|
+
* Gets or sets the Date Created less than equal to.
|
|
18991
|
+
*/
|
|
18992
|
+
dateCreatedLte?: string;
|
|
18993
|
+
/**
|
|
18994
|
+
* Gets or sets the queryable only is live status.
|
|
18995
|
+
*/
|
|
18996
|
+
isLive?: boolean;
|
|
18997
|
+
/**
|
|
18998
|
+
* Gets or sets the sort order direction.
|
|
18999
|
+
*/
|
|
19000
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19001
|
+
}): CancelablePromise<boolean>;
|
|
19002
|
+
/**
|
|
19003
|
+
* Gets a list of resources unpaged and without references.
|
|
19004
|
+
* @returns OpenactiveFeedItem Success
|
|
19005
|
+
* @throws ApiError
|
|
19006
|
+
*/
|
|
19007
|
+
getListWithoutReferences({ versionGt, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19008
|
+
/**
|
|
19009
|
+
* Gets or sets the queryable items timestamp.
|
|
19010
|
+
*/
|
|
19011
|
+
versionGt?: number;
|
|
19012
|
+
/**
|
|
19013
|
+
* Gets or sets the queryable item type.
|
|
19014
|
+
*/
|
|
19015
|
+
type?: ReachEntity;
|
|
19016
|
+
/**
|
|
19017
|
+
* Gets or sets the page number for paged queries.
|
|
19018
|
+
*/
|
|
19019
|
+
pageNumber?: number;
|
|
19020
|
+
/**
|
|
19021
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19022
|
+
*/
|
|
19023
|
+
take?: number;
|
|
19024
|
+
/**
|
|
19025
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19026
|
+
*/
|
|
19027
|
+
skip?: number;
|
|
19028
|
+
/**
|
|
19029
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19030
|
+
*/
|
|
19031
|
+
limitListRequests?: boolean;
|
|
19032
|
+
/**
|
|
19033
|
+
* Gets or sets the Tenant Id.
|
|
19034
|
+
*/
|
|
19035
|
+
tenantId?: string;
|
|
19036
|
+
/**
|
|
19037
|
+
* Gets or sets the Modifed By Id.
|
|
19038
|
+
*/
|
|
19039
|
+
modifiedById?: string;
|
|
19040
|
+
/**
|
|
19041
|
+
* Gets or sets the Modifed By Ids.
|
|
19042
|
+
*/
|
|
19043
|
+
modifiedByIds?: Array<string>;
|
|
19044
|
+
/**
|
|
19045
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19046
|
+
*/
|
|
19047
|
+
dateCreatedGte?: string;
|
|
19048
|
+
/**
|
|
19049
|
+
* Gets or sets the Date Created less than equal to.
|
|
19050
|
+
*/
|
|
19051
|
+
dateCreatedLte?: string;
|
|
19052
|
+
/**
|
|
19053
|
+
* Gets or sets the queryable only is live status.
|
|
19054
|
+
*/
|
|
19055
|
+
isLive?: boolean;
|
|
19056
|
+
/**
|
|
19057
|
+
* Gets or sets the sort order direction.
|
|
19058
|
+
*/
|
|
19059
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19060
|
+
}): CancelablePromise<Array<OpenactiveFeedItem>>;
|
|
19061
|
+
/**
|
|
19062
|
+
* Gets a list of resources.
|
|
19063
|
+
* @returns OpenactiveFeedItem Success
|
|
19064
|
+
* @throws ApiError
|
|
19065
|
+
*/
|
|
19066
|
+
getListIdName({ versionGt, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19067
|
+
/**
|
|
19068
|
+
* Gets or sets the queryable items timestamp.
|
|
19069
|
+
*/
|
|
19070
|
+
versionGt?: number;
|
|
19071
|
+
/**
|
|
19072
|
+
* Gets or sets the queryable item type.
|
|
19073
|
+
*/
|
|
19074
|
+
type?: ReachEntity;
|
|
19075
|
+
/**
|
|
19076
|
+
* Gets or sets the page number for paged queries.
|
|
19077
|
+
*/
|
|
19078
|
+
pageNumber?: number;
|
|
19079
|
+
/**
|
|
19080
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19081
|
+
*/
|
|
19082
|
+
take?: number;
|
|
19083
|
+
/**
|
|
19084
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
19085
|
+
*/
|
|
19086
|
+
skip?: number;
|
|
19087
|
+
/**
|
|
19088
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19089
|
+
*/
|
|
19090
|
+
limitListRequests?: boolean;
|
|
19091
|
+
/**
|
|
19092
|
+
* Gets or sets the Tenant Id.
|
|
19093
|
+
*/
|
|
19094
|
+
tenantId?: string;
|
|
19095
|
+
/**
|
|
19096
|
+
* Gets or sets the Modifed By Id.
|
|
19097
|
+
*/
|
|
19098
|
+
modifiedById?: string;
|
|
19099
|
+
/**
|
|
19100
|
+
* Gets or sets the Modifed By Ids.
|
|
19101
|
+
*/
|
|
19102
|
+
modifiedByIds?: Array<string>;
|
|
19103
|
+
/**
|
|
19104
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19105
|
+
*/
|
|
19106
|
+
dateCreatedGte?: string;
|
|
19107
|
+
/**
|
|
19108
|
+
* Gets or sets the Date Created less than equal to.
|
|
19109
|
+
*/
|
|
19110
|
+
dateCreatedLte?: string;
|
|
19111
|
+
/**
|
|
19112
|
+
* Gets or sets the queryable only is live status.
|
|
19113
|
+
*/
|
|
19114
|
+
isLive?: boolean;
|
|
19115
|
+
/**
|
|
19116
|
+
* Gets or sets the sort order direction.
|
|
19117
|
+
*/
|
|
19118
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19119
|
+
}): CancelablePromise<Array<OpenactiveFeedItem>>;
|
|
19120
|
+
}
|
|
19121
|
+
|
|
19122
|
+
/**
|
|
19123
|
+
* The opportunity status.
|
|
19124
|
+
*/
|
|
19125
|
+
declare enum OpportunityRegisterStatus {
|
|
19126
|
+
ACTIVE = "Active",
|
|
19127
|
+
CANCELLED = "Cancelled"
|
|
19128
|
+
}
|
|
19129
|
+
|
|
19130
|
+
/**
|
|
19131
|
+
* Represents an opportunity registration within the Reach application.
|
|
19132
|
+
*/
|
|
19133
|
+
type OpportunityRegister = {
|
|
19134
|
+
/**
|
|
19135
|
+
* Gets or sets the entities Id.
|
|
19136
|
+
*/
|
|
19137
|
+
id?: string;
|
|
19138
|
+
/**
|
|
19139
|
+
* Gets or sets the tenant Id.
|
|
19140
|
+
*/
|
|
19141
|
+
tenantId: string;
|
|
19142
|
+
/**
|
|
19143
|
+
* Gets or sets the created date of this entity.
|
|
19144
|
+
*/
|
|
19145
|
+
dateCreated: string;
|
|
19146
|
+
/**
|
|
19147
|
+
* Gets or sets the last modified date of this entity.
|
|
19148
|
+
*/
|
|
19149
|
+
dateModified: string;
|
|
19150
|
+
/**
|
|
19151
|
+
* Gets or sets the modified by Id.
|
|
19152
|
+
*/
|
|
19153
|
+
modifiedById?: string | null;
|
|
19154
|
+
/**
|
|
19155
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
19156
|
+
*/
|
|
19157
|
+
isLive: boolean;
|
|
19158
|
+
/**
|
|
19159
|
+
* Gets or sets the order item id.
|
|
19160
|
+
*/
|
|
19161
|
+
orderItemId?: string;
|
|
19162
|
+
/**
|
|
19163
|
+
* Gets or sets the attendee id.
|
|
19164
|
+
*/
|
|
19165
|
+
attendeeId?: string;
|
|
19166
|
+
/**
|
|
19167
|
+
* Gets or sets the scheduled session id.
|
|
19168
|
+
*/
|
|
19169
|
+
scheduledSessionId?: string | null;
|
|
19170
|
+
/**
|
|
19171
|
+
* Gets or sets the course id.
|
|
19172
|
+
*/
|
|
19173
|
+
courseId?: string | null;
|
|
19174
|
+
/**
|
|
19175
|
+
* Gets or sets a value indicating whether the attendee is confirmed as attending the opportunity (the order is booked).
|
|
19176
|
+
*/
|
|
19177
|
+
confirmed?: boolean;
|
|
19178
|
+
/**
|
|
19179
|
+
* Gets or sets a value indicating whether the attendee has been checked in.
|
|
19180
|
+
*/
|
|
19181
|
+
checkedIn: boolean;
|
|
19182
|
+
/**
|
|
19183
|
+
* Gets or sets a value indicating whether the attendee has been moved TO another opportunity.
|
|
19184
|
+
*/
|
|
19185
|
+
moved?: boolean;
|
|
19186
|
+
/**
|
|
19187
|
+
* Gets or sets the opportunity id that the attendee was moved from.
|
|
19188
|
+
*/
|
|
19189
|
+
movedFrom?: string | null;
|
|
19190
|
+
status?: OpportunityRegisterStatus;
|
|
19191
|
+
attendee?: Attendee;
|
|
19192
|
+
orderItem?: OrderItem;
|
|
19193
|
+
scheduledSession?: ScheduledSession;
|
|
19194
|
+
course?: Course;
|
|
19195
|
+
};
|
|
19196
|
+
|
|
19197
|
+
type OpportunityRegisterPage = {
|
|
19198
|
+
pagination: Pagination;
|
|
19199
|
+
readonly items: Array<OpportunityRegister>;
|
|
19200
|
+
};
|
|
19201
|
+
|
|
19202
|
+
/**
|
|
19203
|
+
* Post model for Opportunity Register updates.
|
|
19204
|
+
*/
|
|
19205
|
+
type OpportunityRegisterPatch = {
|
|
19206
|
+
/**
|
|
19207
|
+
* Gets or sets the tenant Id.
|
|
19208
|
+
*/
|
|
19209
|
+
tenantId: string;
|
|
19210
|
+
/**
|
|
19211
|
+
* Gets or sets the Id.
|
|
19212
|
+
*/
|
|
19213
|
+
id: string;
|
|
19214
|
+
/**
|
|
19215
|
+
* Gets or sets a value indicating whether the attendee has been checked in.
|
|
19216
|
+
*/
|
|
19217
|
+
checkedIn?: boolean;
|
|
19218
|
+
};
|
|
19219
|
+
|
|
19220
|
+
/**
|
|
19221
|
+
* Post model for Opportunity Register inserts.
|
|
19222
|
+
*/
|
|
19223
|
+
type OpportunityRegisterPost = {
|
|
19224
|
+
/**
|
|
19225
|
+
* Gets or sets the tenant Id.
|
|
19226
|
+
*/
|
|
19227
|
+
tenantId: string;
|
|
19228
|
+
};
|
|
19229
|
+
|
|
19230
|
+
declare class OpportunityRegisterService {
|
|
19231
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19232
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19233
|
+
/**
|
|
19234
|
+
* Moves an attendee from one scheduled sessions opportunity register to another.
|
|
19235
|
+
* @returns OpportunityRegister Success
|
|
19236
|
+
* @throws ApiError
|
|
19237
|
+
*/
|
|
19238
|
+
move({ opportunityRegisterId, scheduledSessionId, }: {
|
|
19239
|
+
/**
|
|
19240
|
+
* The current register the attendee is assigned to.
|
|
19241
|
+
*/
|
|
19242
|
+
opportunityRegisterId: string;
|
|
19243
|
+
/**
|
|
19244
|
+
* The scheduled session the attendee needs to be moved to.
|
|
19245
|
+
*/
|
|
19246
|
+
scheduledSessionId: string;
|
|
19247
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
19248
|
+
/**
|
|
19249
|
+
* Exports a register list to a csv format.
|
|
19250
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
19251
|
+
* @returns any Success
|
|
19252
|
+
* @throws ApiError
|
|
19253
|
+
*/
|
|
19254
|
+
exportToCsv({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, status, checkedIn, moved, movedFrom, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
19255
|
+
/**
|
|
19256
|
+
* Gets or sets the queryable order item id.
|
|
19257
|
+
*/
|
|
19258
|
+
orderItemId?: string;
|
|
19259
|
+
/**
|
|
19260
|
+
* Gets or sets the queryable order item ids.
|
|
19261
|
+
*/
|
|
19262
|
+
orderItemIds?: Array<string>;
|
|
19263
|
+
/**
|
|
19264
|
+
* Gets or sets the queryable attendee id.
|
|
19265
|
+
*/
|
|
19266
|
+
attendeeId?: string;
|
|
19267
|
+
/**
|
|
19268
|
+
* Gets or sets the queryable scheduled session id.
|
|
19269
|
+
*/
|
|
19270
|
+
scheduledSessionId?: string;
|
|
19271
|
+
/**
|
|
19272
|
+
* Gets or sets the queryable course id.
|
|
19273
|
+
*/
|
|
19274
|
+
courseId?: string;
|
|
19275
|
+
/**
|
|
19276
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
19277
|
+
*/
|
|
19278
|
+
confirmed?: boolean;
|
|
19279
|
+
/**
|
|
19280
|
+
* Gets or sets the queryable opportunity status.
|
|
19281
|
+
*/
|
|
19282
|
+
status?: OpportunityRegisterStatus;
|
|
19283
|
+
/**
|
|
19284
|
+
* Gets or sets the queryable attendee checked in value.
|
|
19285
|
+
*/
|
|
19286
|
+
checkedIn?: boolean;
|
|
19287
|
+
/**
|
|
19288
|
+
* Gets or sets the queryable attendee moved value.
|
|
19289
|
+
*/
|
|
19290
|
+
moved?: boolean;
|
|
19291
|
+
/**
|
|
19292
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
19293
|
+
*/
|
|
19294
|
+
movedFrom?: string;
|
|
18817
19295
|
/**
|
|
18818
19296
|
* Gets or sets the page number for paged queries.
|
|
18819
19297
|
*/
|
|
@@ -32747,130 +33225,646 @@ declare class PublicWaitlistActivityService {
|
|
|
32747
33225
|
*/
|
|
32748
33226
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
32749
33227
|
}): CancelablePromise<boolean>;
|
|
32750
|
-
}
|
|
32751
|
-
|
|
32752
|
-
type WaitlistOpportunityPage = {
|
|
32753
|
-
pagination: Pagination;
|
|
32754
|
-
readonly items: Array<WaitlistOpportunity>;
|
|
32755
|
-
};
|
|
32756
|
-
|
|
32757
|
-
/**
|
|
32758
|
-
* Post model for waitlist opportunity updates.
|
|
32759
|
-
*/
|
|
32760
|
-
type WaitlistOpportunityPatch = {
|
|
32761
|
-
/**
|
|
32762
|
-
* Gets or sets the tenant Id.
|
|
32763
|
-
*/
|
|
32764
|
-
tenantId: string;
|
|
32765
|
-
/**
|
|
32766
|
-
* Gets or sets the Id.
|
|
32767
|
-
*/
|
|
32768
|
-
id: string;
|
|
32769
|
-
};
|
|
32770
|
-
|
|
32771
|
-
/**
|
|
32772
|
-
* Post model for waitlist opportunity inserts.
|
|
32773
|
-
*/
|
|
32774
|
-
type WaitlistOpportunityPost = {
|
|
32775
|
-
/**
|
|
32776
|
-
* Gets or sets the tenant Id.
|
|
32777
|
-
*/
|
|
32778
|
-
tenantId: string;
|
|
32779
|
-
};
|
|
32780
|
-
|
|
32781
|
-
declare class PublicWaitlistOpportunityService {
|
|
32782
|
-
readonly httpRequest: BaseHttpRequest;
|
|
32783
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
32784
|
-
/**
|
|
32785
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
32786
|
-
* @returns WaitlistOpportunity Success
|
|
32787
|
-
* @throws ApiError
|
|
32788
|
-
*/
|
|
32789
|
-
post({ xTenantSubdomain, requestBody, }: {
|
|
32790
|
-
/**
|
|
32791
|
-
* The tenants subdomain.
|
|
32792
|
-
*/
|
|
32793
|
-
xTenantSubdomain?: string;
|
|
32794
|
-
/**
|
|
32795
|
-
* The <typeparamref name="TObject" /> model.
|
|
32796
|
-
*/
|
|
32797
|
-
requestBody?: WaitlistOpportunityPost;
|
|
32798
|
-
}): CancelablePromise<WaitlistOpportunity>;
|
|
32799
|
-
/**
|
|
32800
|
-
* Patches the resource.
|
|
32801
|
-
* @returns WaitlistOpportunity Success
|
|
32802
|
-
* @throws ApiError
|
|
32803
|
-
*/
|
|
32804
|
-
patch({ xTenantSubdomain, requestBody, }: {
|
|
32805
|
-
/**
|
|
32806
|
-
* The tenants subdomain.
|
|
32807
|
-
*/
|
|
32808
|
-
xTenantSubdomain?: string;
|
|
32809
|
-
/**
|
|
32810
|
-
* The <typeparamref name="TObject" /> model.
|
|
32811
|
-
*/
|
|
32812
|
-
requestBody?: WaitlistOpportunityPatch;
|
|
32813
|
-
}): CancelablePromise<WaitlistOpportunity>;
|
|
32814
|
-
/**
|
|
32815
|
-
* Inserts a list of resources.
|
|
32816
|
-
* @returns WaitlistOpportunity Success
|
|
32817
|
-
* @throws ApiError
|
|
32818
|
-
*/
|
|
32819
|
-
postList({ xTenantSubdomain, requestBody, }: {
|
|
32820
|
-
/**
|
|
32821
|
-
* The tenants subdomain.
|
|
32822
|
-
*/
|
|
32823
|
-
xTenantSubdomain?: string;
|
|
32824
|
-
/**
|
|
32825
|
-
* The list of <typeparamref name="TObject" />.
|
|
32826
|
-
*/
|
|
32827
|
-
requestBody?: Array<WaitlistOpportunityPost>;
|
|
32828
|
-
}): CancelablePromise<Array<WaitlistOpportunity>>;
|
|
33228
|
+
}
|
|
33229
|
+
|
|
33230
|
+
type WaitlistOpportunityPage = {
|
|
33231
|
+
pagination: Pagination;
|
|
33232
|
+
readonly items: Array<WaitlistOpportunity>;
|
|
33233
|
+
};
|
|
33234
|
+
|
|
33235
|
+
/**
|
|
33236
|
+
* Post model for waitlist opportunity updates.
|
|
33237
|
+
*/
|
|
33238
|
+
type WaitlistOpportunityPatch = {
|
|
33239
|
+
/**
|
|
33240
|
+
* Gets or sets the tenant Id.
|
|
33241
|
+
*/
|
|
33242
|
+
tenantId: string;
|
|
33243
|
+
/**
|
|
33244
|
+
* Gets or sets the Id.
|
|
33245
|
+
*/
|
|
33246
|
+
id: string;
|
|
33247
|
+
};
|
|
33248
|
+
|
|
33249
|
+
/**
|
|
33250
|
+
* Post model for waitlist opportunity inserts.
|
|
33251
|
+
*/
|
|
33252
|
+
type WaitlistOpportunityPost = {
|
|
33253
|
+
/**
|
|
33254
|
+
* Gets or sets the tenant Id.
|
|
33255
|
+
*/
|
|
33256
|
+
tenantId: string;
|
|
33257
|
+
};
|
|
33258
|
+
|
|
33259
|
+
declare class PublicWaitlistOpportunityService {
|
|
33260
|
+
readonly httpRequest: BaseHttpRequest;
|
|
33261
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
33262
|
+
/**
|
|
33263
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
33264
|
+
* @returns WaitlistOpportunity Success
|
|
33265
|
+
* @throws ApiError
|
|
33266
|
+
*/
|
|
33267
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
33268
|
+
/**
|
|
33269
|
+
* The tenants subdomain.
|
|
33270
|
+
*/
|
|
33271
|
+
xTenantSubdomain?: string;
|
|
33272
|
+
/**
|
|
33273
|
+
* The <typeparamref name="TObject" /> model.
|
|
33274
|
+
*/
|
|
33275
|
+
requestBody?: WaitlistOpportunityPost;
|
|
33276
|
+
}): CancelablePromise<WaitlistOpportunity>;
|
|
33277
|
+
/**
|
|
33278
|
+
* Patches the resource.
|
|
33279
|
+
* @returns WaitlistOpportunity Success
|
|
33280
|
+
* @throws ApiError
|
|
33281
|
+
*/
|
|
33282
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
33283
|
+
/**
|
|
33284
|
+
* The tenants subdomain.
|
|
33285
|
+
*/
|
|
33286
|
+
xTenantSubdomain?: string;
|
|
33287
|
+
/**
|
|
33288
|
+
* The <typeparamref name="TObject" /> model.
|
|
33289
|
+
*/
|
|
33290
|
+
requestBody?: WaitlistOpportunityPatch;
|
|
33291
|
+
}): CancelablePromise<WaitlistOpportunity>;
|
|
33292
|
+
/**
|
|
33293
|
+
* Inserts a list of resources.
|
|
33294
|
+
* @returns WaitlistOpportunity Success
|
|
33295
|
+
* @throws ApiError
|
|
33296
|
+
*/
|
|
33297
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
33298
|
+
/**
|
|
33299
|
+
* The tenants subdomain.
|
|
33300
|
+
*/
|
|
33301
|
+
xTenantSubdomain?: string;
|
|
33302
|
+
/**
|
|
33303
|
+
* The list of <typeparamref name="TObject" />.
|
|
33304
|
+
*/
|
|
33305
|
+
requestBody?: Array<WaitlistOpportunityPost>;
|
|
33306
|
+
}): CancelablePromise<Array<WaitlistOpportunity>>;
|
|
33307
|
+
/**
|
|
33308
|
+
* Deletes the resource.
|
|
33309
|
+
* @returns any Success
|
|
33310
|
+
* @throws ApiError
|
|
33311
|
+
*/
|
|
33312
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
33313
|
+
/**
|
|
33314
|
+
* The tenants subdomain.
|
|
33315
|
+
*/
|
|
33316
|
+
xTenantSubdomain?: string;
|
|
33317
|
+
/**
|
|
33318
|
+
* The <typeparamref name="TObject" /> model.
|
|
33319
|
+
*/
|
|
33320
|
+
requestBody?: WaitlistOpportunity;
|
|
33321
|
+
}): CancelablePromise<any>;
|
|
33322
|
+
/**
|
|
33323
|
+
* Gets a list of resources.
|
|
33324
|
+
* @returns WaitlistOpportunityPage Success
|
|
33325
|
+
* @throws ApiError
|
|
33326
|
+
*/
|
|
33327
|
+
getPage({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33328
|
+
/**
|
|
33329
|
+
* The tenants subdomain.
|
|
33330
|
+
*/
|
|
33331
|
+
xTenantSubdomain?: string;
|
|
33332
|
+
/**
|
|
33333
|
+
* Gets or sets the queryable User Id.
|
|
33334
|
+
*/
|
|
33335
|
+
userId?: string;
|
|
33336
|
+
/**
|
|
33337
|
+
* Gets or sets the queryable Slot Id.
|
|
33338
|
+
*/
|
|
33339
|
+
slotId?: string;
|
|
33340
|
+
/**
|
|
33341
|
+
* Gets or sets the queryable Scheduled Session Id.
|
|
33342
|
+
*/
|
|
33343
|
+
scheduledSessionId?: string;
|
|
33344
|
+
/**
|
|
33345
|
+
* Gets or sets the queryable Course Id.
|
|
33346
|
+
*/
|
|
33347
|
+
courseId?: string;
|
|
33348
|
+
/**
|
|
33349
|
+
* Gets or sets the queryable Email.
|
|
33350
|
+
*/
|
|
33351
|
+
email?: string;
|
|
33352
|
+
/**
|
|
33353
|
+
* Gets or sets the page number for paged queries.
|
|
33354
|
+
*/
|
|
33355
|
+
pageNumber?: number;
|
|
33356
|
+
/**
|
|
33357
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
33358
|
+
*/
|
|
33359
|
+
take?: number;
|
|
33360
|
+
/**
|
|
33361
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
33362
|
+
*/
|
|
33363
|
+
skip?: number;
|
|
33364
|
+
/**
|
|
33365
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
33366
|
+
*/
|
|
33367
|
+
limitListRequests?: boolean;
|
|
33368
|
+
/**
|
|
33369
|
+
* Gets or sets the Tenant Id.
|
|
33370
|
+
*/
|
|
33371
|
+
tenantId?: string;
|
|
33372
|
+
/**
|
|
33373
|
+
* Gets or sets the Modifed By Id.
|
|
33374
|
+
*/
|
|
33375
|
+
modifiedById?: string;
|
|
33376
|
+
/**
|
|
33377
|
+
* Gets or sets the Modifed By Ids.
|
|
33378
|
+
*/
|
|
33379
|
+
modifiedByIds?: Array<string>;
|
|
33380
|
+
/**
|
|
33381
|
+
* Gets or sets the Date Created greater than equal to.
|
|
33382
|
+
*/
|
|
33383
|
+
dateCreatedGte?: string;
|
|
33384
|
+
/**
|
|
33385
|
+
* Gets or sets the Date Created less than equal to.
|
|
33386
|
+
*/
|
|
33387
|
+
dateCreatedLte?: string;
|
|
33388
|
+
/**
|
|
33389
|
+
* Gets or sets the queryable only is live status.
|
|
33390
|
+
*/
|
|
33391
|
+
isLive?: boolean;
|
|
33392
|
+
/**
|
|
33393
|
+
* Gets or sets the sort order direction.
|
|
33394
|
+
*/
|
|
33395
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
33396
|
+
}): CancelablePromise<WaitlistOpportunityPage>;
|
|
33397
|
+
/**
|
|
33398
|
+
* Deletes the resource.
|
|
33399
|
+
* @returns any Success
|
|
33400
|
+
* @throws ApiError
|
|
33401
|
+
*/
|
|
33402
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
33403
|
+
/**
|
|
33404
|
+
* The <typeparamref name="TObject" /> id.
|
|
33405
|
+
*/
|
|
33406
|
+
id: string;
|
|
33407
|
+
/**
|
|
33408
|
+
* The tenants subdomain.
|
|
33409
|
+
*/
|
|
33410
|
+
xTenantSubdomain?: string;
|
|
33411
|
+
}): CancelablePromise<any>;
|
|
33412
|
+
/**
|
|
33413
|
+
* Gets the resource by its Id.
|
|
33414
|
+
* @returns WaitlistOpportunity Success
|
|
33415
|
+
* @throws ApiError
|
|
33416
|
+
*/
|
|
33417
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
33418
|
+
/**
|
|
33419
|
+
* The <typeparamref name="TObject" /> id.
|
|
33420
|
+
*/
|
|
33421
|
+
id: string;
|
|
33422
|
+
/**
|
|
33423
|
+
* The tenants subdomain.
|
|
33424
|
+
*/
|
|
33425
|
+
xTenantSubdomain?: string;
|
|
33426
|
+
}): CancelablePromise<WaitlistOpportunity>;
|
|
33427
|
+
/**
|
|
33428
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
33429
|
+
* @returns boolean Success
|
|
33430
|
+
* @throws ApiError
|
|
33431
|
+
*/
|
|
33432
|
+
exists({ xTenantSubdomain, userId, slotId, scheduledSessionId, courseId, email, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33433
|
+
/**
|
|
33434
|
+
* The tenants subdomain.
|
|
33435
|
+
*/
|
|
33436
|
+
xTenantSubdomain?: string;
|
|
33437
|
+
/**
|
|
33438
|
+
* Gets or sets the queryable User Id.
|
|
33439
|
+
*/
|
|
33440
|
+
userId?: string;
|
|
33441
|
+
/**
|
|
33442
|
+
* Gets or sets the queryable Slot Id.
|
|
33443
|
+
*/
|
|
33444
|
+
slotId?: string;
|
|
33445
|
+
/**
|
|
33446
|
+
* Gets or sets the queryable Scheduled Session Id.
|
|
33447
|
+
*/
|
|
33448
|
+
scheduledSessionId?: string;
|
|
33449
|
+
/**
|
|
33450
|
+
* Gets or sets the queryable Course Id.
|
|
33451
|
+
*/
|
|
33452
|
+
courseId?: string;
|
|
33453
|
+
/**
|
|
33454
|
+
* Gets or sets the queryable Email.
|
|
33455
|
+
*/
|
|
33456
|
+
email?: string;
|
|
33457
|
+
/**
|
|
33458
|
+
* Gets or sets the page number for paged queries.
|
|
33459
|
+
*/
|
|
33460
|
+
pageNumber?: number;
|
|
33461
|
+
/**
|
|
33462
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
33463
|
+
*/
|
|
33464
|
+
take?: number;
|
|
33465
|
+
/**
|
|
33466
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
33467
|
+
*/
|
|
33468
|
+
skip?: number;
|
|
33469
|
+
/**
|
|
33470
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
33471
|
+
*/
|
|
33472
|
+
limitListRequests?: boolean;
|
|
33473
|
+
/**
|
|
33474
|
+
* Gets or sets the Tenant Id.
|
|
33475
|
+
*/
|
|
33476
|
+
tenantId?: string;
|
|
33477
|
+
/**
|
|
33478
|
+
* Gets or sets the Modifed By Id.
|
|
33479
|
+
*/
|
|
33480
|
+
modifiedById?: string;
|
|
33481
|
+
/**
|
|
33482
|
+
* Gets or sets the Modifed By Ids.
|
|
33483
|
+
*/
|
|
33484
|
+
modifiedByIds?: Array<string>;
|
|
33485
|
+
/**
|
|
33486
|
+
* Gets or sets the Date Created greater than equal to.
|
|
33487
|
+
*/
|
|
33488
|
+
dateCreatedGte?: string;
|
|
33489
|
+
/**
|
|
33490
|
+
* Gets or sets the Date Created less than equal to.
|
|
33491
|
+
*/
|
|
33492
|
+
dateCreatedLte?: string;
|
|
33493
|
+
/**
|
|
33494
|
+
* Gets or sets the queryable only is live status.
|
|
33495
|
+
*/
|
|
33496
|
+
isLive?: boolean;
|
|
33497
|
+
/**
|
|
33498
|
+
* Gets or sets the sort order direction.
|
|
33499
|
+
*/
|
|
33500
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
33501
|
+
}): CancelablePromise<boolean>;
|
|
33502
|
+
}
|
|
33503
|
+
|
|
33504
|
+
/**
|
|
33505
|
+
* Represents the recent order activity report model.
|
|
33506
|
+
*/
|
|
33507
|
+
type RecentOrderActivityReport = {
|
|
33508
|
+
/**
|
|
33509
|
+
* Gets or sets the entities Id.
|
|
33510
|
+
*/
|
|
33511
|
+
id?: string;
|
|
33512
|
+
/**
|
|
33513
|
+
* Gets or sets the tenant Id.
|
|
33514
|
+
*/
|
|
33515
|
+
tenantId: string;
|
|
33516
|
+
/**
|
|
33517
|
+
* Gets or sets the created date of this entity.
|
|
33518
|
+
*/
|
|
33519
|
+
dateCreated: string;
|
|
33520
|
+
/**
|
|
33521
|
+
* Gets or sets the last modified date of this entity.
|
|
33522
|
+
*/
|
|
33523
|
+
dateModified: string;
|
|
33524
|
+
/**
|
|
33525
|
+
* Gets or sets the modified by Id.
|
|
33526
|
+
*/
|
|
33527
|
+
modifiedById?: string | null;
|
|
33528
|
+
/**
|
|
33529
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
33530
|
+
*/
|
|
33531
|
+
isLive: boolean;
|
|
33532
|
+
/**
|
|
33533
|
+
* Gets or sets the venue name.
|
|
33534
|
+
*/
|
|
33535
|
+
venue?: string | null;
|
|
33536
|
+
/**
|
|
33537
|
+
* Gets or sets the activity name.
|
|
33538
|
+
*/
|
|
33539
|
+
activity?: string | null;
|
|
33540
|
+
/**
|
|
33541
|
+
* Gets or sets the programme name.
|
|
33542
|
+
*/
|
|
33543
|
+
programme?: string | null;
|
|
33544
|
+
/**
|
|
33545
|
+
* Gets or sets the remaining inventory value.
|
|
33546
|
+
*/
|
|
33547
|
+
remainingInventory?: string | null;
|
|
33548
|
+
/**
|
|
33549
|
+
* Gets or sets the total revenue value.
|
|
33550
|
+
*/
|
|
33551
|
+
totalRevenue?: string | null;
|
|
33552
|
+
/**
|
|
33553
|
+
* Gets or sets the total orders value.
|
|
33554
|
+
*/
|
|
33555
|
+
totalOrders?: string | null;
|
|
33556
|
+
/**
|
|
33557
|
+
* Gets or sets the revenu last 24 hours value.
|
|
33558
|
+
*/
|
|
33559
|
+
revenueLast24Hours?: string | null;
|
|
33560
|
+
/**
|
|
33561
|
+
* Gets or sets the orders last 24 hours value.
|
|
33562
|
+
*/
|
|
33563
|
+
ordersLast24Hours?: string | null;
|
|
33564
|
+
/**
|
|
33565
|
+
* Gets or sets the revenue last week value.
|
|
33566
|
+
*/
|
|
33567
|
+
revenueLastWeek?: string | null;
|
|
33568
|
+
/**
|
|
33569
|
+
* Gets or sets the orders last week value.
|
|
33570
|
+
*/
|
|
33571
|
+
ordersLastWeek?: string | null;
|
|
33572
|
+
/**
|
|
33573
|
+
* Gets or sets the revenue last month value.
|
|
33574
|
+
*/
|
|
33575
|
+
revenueLastMonth?: string | null;
|
|
33576
|
+
/**
|
|
33577
|
+
* Gets or sets the orders last month value.
|
|
33578
|
+
*/
|
|
33579
|
+
ordersLastMonth?: string | null;
|
|
33580
|
+
};
|
|
33581
|
+
|
|
33582
|
+
type RecentOrderActivityReportPage = {
|
|
33583
|
+
pagination: Pagination;
|
|
33584
|
+
readonly items: Array<RecentOrderActivityReport>;
|
|
33585
|
+
};
|
|
33586
|
+
|
|
33587
|
+
/**
|
|
33588
|
+
* Post model for RecentOrderActivityReport updates.
|
|
33589
|
+
*/
|
|
33590
|
+
type RecentOrderActivityReportPatch = {
|
|
33591
|
+
/**
|
|
33592
|
+
* Gets or sets the tenant Id.
|
|
33593
|
+
*/
|
|
33594
|
+
tenantId: string;
|
|
33595
|
+
/**
|
|
33596
|
+
* Gets or sets the Id.
|
|
33597
|
+
*/
|
|
33598
|
+
id: string;
|
|
33599
|
+
};
|
|
33600
|
+
|
|
33601
|
+
/**
|
|
33602
|
+
* Post model for RecentOrderActivityReport inserts.
|
|
33603
|
+
*/
|
|
33604
|
+
type RecentOrderActivityReportPost = {
|
|
33605
|
+
/**
|
|
33606
|
+
* Gets or sets the tenant Id.
|
|
33607
|
+
*/
|
|
33608
|
+
tenantId: string;
|
|
33609
|
+
};
|
|
33610
|
+
|
|
33611
|
+
declare class RecentOrderActivityReportService {
|
|
33612
|
+
readonly httpRequest: BaseHttpRequest;
|
|
33613
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
33614
|
+
/**
|
|
33615
|
+
* Exports the venues list to a csv format.
|
|
33616
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
33617
|
+
* @returns any Success
|
|
33618
|
+
* @throws ApiError
|
|
33619
|
+
*/
|
|
33620
|
+
exportToCsv({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
33621
|
+
/**
|
|
33622
|
+
* Gets or sets the page number for paged queries.
|
|
33623
|
+
*/
|
|
33624
|
+
pageNumber?: number;
|
|
33625
|
+
/**
|
|
33626
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
33627
|
+
*/
|
|
33628
|
+
take?: number;
|
|
33629
|
+
/**
|
|
33630
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
33631
|
+
*/
|
|
33632
|
+
skip?: number;
|
|
33633
|
+
/**
|
|
33634
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
33635
|
+
*/
|
|
33636
|
+
limitListRequests?: boolean;
|
|
33637
|
+
/**
|
|
33638
|
+
* Gets or sets the Tenant Id.
|
|
33639
|
+
*/
|
|
33640
|
+
tenantId?: string;
|
|
33641
|
+
/**
|
|
33642
|
+
* Gets or sets the Modifed By Id.
|
|
33643
|
+
*/
|
|
33644
|
+
modifiedById?: string;
|
|
33645
|
+
/**
|
|
33646
|
+
* Gets or sets the Modifed By Ids.
|
|
33647
|
+
*/
|
|
33648
|
+
modifiedByIds?: Array<string>;
|
|
33649
|
+
/**
|
|
33650
|
+
* Gets or sets the Date Created greater than equal to.
|
|
33651
|
+
*/
|
|
33652
|
+
dateCreatedGte?: string;
|
|
33653
|
+
/**
|
|
33654
|
+
* Gets or sets the Date Created less than equal to.
|
|
33655
|
+
*/
|
|
33656
|
+
dateCreatedLte?: string;
|
|
33657
|
+
/**
|
|
33658
|
+
* Gets or sets the queryable only is live status.
|
|
33659
|
+
*/
|
|
33660
|
+
isLive?: boolean;
|
|
33661
|
+
/**
|
|
33662
|
+
* Gets or sets the sort order direction.
|
|
33663
|
+
*/
|
|
33664
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
33665
|
+
formData?: {
|
|
33666
|
+
/**
|
|
33667
|
+
* Gets or sets the auth token.
|
|
33668
|
+
*/
|
|
33669
|
+
Token?: string;
|
|
33670
|
+
};
|
|
33671
|
+
}): CancelablePromise<any>;
|
|
33672
|
+
/**
|
|
33673
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
33674
|
+
* @returns RecentOrderActivityReport Success
|
|
33675
|
+
* @throws ApiError
|
|
33676
|
+
*/
|
|
33677
|
+
post({ requestBody, }: {
|
|
33678
|
+
/**
|
|
33679
|
+
* The <typeparamref name="TObject" /> model.
|
|
33680
|
+
*/
|
|
33681
|
+
requestBody?: RecentOrderActivityReportPost;
|
|
33682
|
+
}): CancelablePromise<RecentOrderActivityReport>;
|
|
33683
|
+
/**
|
|
33684
|
+
* Patches the resource.
|
|
33685
|
+
* @returns RecentOrderActivityReport Success
|
|
33686
|
+
* @throws ApiError
|
|
33687
|
+
*/
|
|
33688
|
+
patch({ requestBody, }: {
|
|
33689
|
+
/**
|
|
33690
|
+
* The <typeparamref name="TObject" /> model.
|
|
33691
|
+
*/
|
|
33692
|
+
requestBody?: RecentOrderActivityReportPatch;
|
|
33693
|
+
}): CancelablePromise<RecentOrderActivityReport>;
|
|
33694
|
+
/**
|
|
33695
|
+
* Inserts a list of resources.
|
|
33696
|
+
* @returns RecentOrderActivityReport Success
|
|
33697
|
+
* @throws ApiError
|
|
33698
|
+
*/
|
|
33699
|
+
postList({ requestBody, }: {
|
|
33700
|
+
/**
|
|
33701
|
+
* The list of <typeparamref name="TObject" />.
|
|
33702
|
+
*/
|
|
33703
|
+
requestBody?: Array<RecentOrderActivityReportPost>;
|
|
33704
|
+
}): CancelablePromise<Array<RecentOrderActivityReport>>;
|
|
33705
|
+
/**
|
|
33706
|
+
* Patches the resource.
|
|
33707
|
+
* @returns RecentOrderActivityReport Success
|
|
33708
|
+
* @throws ApiError
|
|
33709
|
+
*/
|
|
33710
|
+
patchWithReferences({ requestBody, }: {
|
|
33711
|
+
/**
|
|
33712
|
+
* The <typeparamref name="TObject" /> model.
|
|
33713
|
+
*/
|
|
33714
|
+
requestBody?: RecentOrderActivityReportPatch;
|
|
33715
|
+
}): CancelablePromise<RecentOrderActivityReport>;
|
|
33716
|
+
/**
|
|
33717
|
+
* Deletes the resource.
|
|
33718
|
+
* @returns any Success
|
|
33719
|
+
* @throws ApiError
|
|
33720
|
+
*/
|
|
33721
|
+
deleteByObject({ requestBody, }: {
|
|
33722
|
+
/**
|
|
33723
|
+
* The <typeparamref name="TObject" /> model.
|
|
33724
|
+
*/
|
|
33725
|
+
requestBody?: RecentOrderActivityReport;
|
|
33726
|
+
}): CancelablePromise<any>;
|
|
33727
|
+
/**
|
|
33728
|
+
* Gets a list of resources.
|
|
33729
|
+
* @returns RecentOrderActivityReportPage Success
|
|
33730
|
+
* @throws ApiError
|
|
33731
|
+
*/
|
|
33732
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33733
|
+
/**
|
|
33734
|
+
* Gets or sets the page number for paged queries.
|
|
33735
|
+
*/
|
|
33736
|
+
pageNumber?: number;
|
|
33737
|
+
/**
|
|
33738
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
33739
|
+
*/
|
|
33740
|
+
take?: number;
|
|
33741
|
+
/**
|
|
33742
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
33743
|
+
*/
|
|
33744
|
+
skip?: number;
|
|
33745
|
+
/**
|
|
33746
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
33747
|
+
*/
|
|
33748
|
+
limitListRequests?: boolean;
|
|
33749
|
+
/**
|
|
33750
|
+
* Gets or sets the Tenant Id.
|
|
33751
|
+
*/
|
|
33752
|
+
tenantId?: string;
|
|
33753
|
+
/**
|
|
33754
|
+
* Gets or sets the Modifed By Id.
|
|
33755
|
+
*/
|
|
33756
|
+
modifiedById?: string;
|
|
33757
|
+
/**
|
|
33758
|
+
* Gets or sets the Modifed By Ids.
|
|
33759
|
+
*/
|
|
33760
|
+
modifiedByIds?: Array<string>;
|
|
33761
|
+
/**
|
|
33762
|
+
* Gets or sets the Date Created greater than equal to.
|
|
33763
|
+
*/
|
|
33764
|
+
dateCreatedGte?: string;
|
|
33765
|
+
/**
|
|
33766
|
+
* Gets or sets the Date Created less than equal to.
|
|
33767
|
+
*/
|
|
33768
|
+
dateCreatedLte?: string;
|
|
33769
|
+
/**
|
|
33770
|
+
* Gets or sets the queryable only is live status.
|
|
33771
|
+
*/
|
|
33772
|
+
isLive?: boolean;
|
|
33773
|
+
/**
|
|
33774
|
+
* Gets or sets the sort order direction.
|
|
33775
|
+
*/
|
|
33776
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
33777
|
+
}): CancelablePromise<RecentOrderActivityReportPage>;
|
|
33778
|
+
/**
|
|
33779
|
+
* Deletes the resource.
|
|
33780
|
+
* @returns any Success
|
|
33781
|
+
* @throws ApiError
|
|
33782
|
+
*/
|
|
33783
|
+
deleteById({ id, }: {
|
|
33784
|
+
/**
|
|
33785
|
+
* The <typeparamref name="TObject" /> id.
|
|
33786
|
+
*/
|
|
33787
|
+
id: string;
|
|
33788
|
+
}): CancelablePromise<any>;
|
|
33789
|
+
/**
|
|
33790
|
+
* Gets the resource by its Id.
|
|
33791
|
+
* @returns RecentOrderActivityReport Success
|
|
33792
|
+
* @throws ApiError
|
|
33793
|
+
*/
|
|
33794
|
+
getObject({ id, }: {
|
|
33795
|
+
/**
|
|
33796
|
+
* The <typeparamref name="TObject" /> id.
|
|
33797
|
+
*/
|
|
33798
|
+
id: string;
|
|
33799
|
+
}): CancelablePromise<RecentOrderActivityReport>;
|
|
33800
|
+
/**
|
|
33801
|
+
* Returns a value indicating whether the resource is deletable.
|
|
33802
|
+
* @returns boolean Success
|
|
33803
|
+
* @throws ApiError
|
|
33804
|
+
*/
|
|
33805
|
+
canDelete({ id, }: {
|
|
33806
|
+
/**
|
|
33807
|
+
* The <typeparamref name="TObject" /> id.
|
|
33808
|
+
*/
|
|
33809
|
+
id: string;
|
|
33810
|
+
}): CancelablePromise<boolean>;
|
|
33811
|
+
/**
|
|
33812
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
33813
|
+
* @returns boolean Success
|
|
33814
|
+
* @throws ApiError
|
|
33815
|
+
*/
|
|
33816
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33817
|
+
/**
|
|
33818
|
+
* Gets or sets the page number for paged queries.
|
|
33819
|
+
*/
|
|
33820
|
+
pageNumber?: number;
|
|
33821
|
+
/**
|
|
33822
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
33823
|
+
*/
|
|
33824
|
+
take?: number;
|
|
33825
|
+
/**
|
|
33826
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
33827
|
+
*/
|
|
33828
|
+
skip?: number;
|
|
33829
|
+
/**
|
|
33830
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
33831
|
+
*/
|
|
33832
|
+
limitListRequests?: boolean;
|
|
33833
|
+
/**
|
|
33834
|
+
* Gets or sets the Tenant Id.
|
|
33835
|
+
*/
|
|
33836
|
+
tenantId?: string;
|
|
33837
|
+
/**
|
|
33838
|
+
* Gets or sets the Modifed By Id.
|
|
33839
|
+
*/
|
|
33840
|
+
modifiedById?: string;
|
|
33841
|
+
/**
|
|
33842
|
+
* Gets or sets the Modifed By Ids.
|
|
33843
|
+
*/
|
|
33844
|
+
modifiedByIds?: Array<string>;
|
|
33845
|
+
/**
|
|
33846
|
+
* Gets or sets the Date Created greater than equal to.
|
|
33847
|
+
*/
|
|
33848
|
+
dateCreatedGte?: string;
|
|
33849
|
+
/**
|
|
33850
|
+
* Gets or sets the Date Created less than equal to.
|
|
33851
|
+
*/
|
|
33852
|
+
dateCreatedLte?: string;
|
|
33853
|
+
/**
|
|
33854
|
+
* Gets or sets the queryable only is live status.
|
|
33855
|
+
*/
|
|
33856
|
+
isLive?: boolean;
|
|
33857
|
+
/**
|
|
33858
|
+
* Gets or sets the sort order direction.
|
|
33859
|
+
*/
|
|
33860
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
33861
|
+
}): CancelablePromise<boolean>;
|
|
32829
33862
|
/**
|
|
32830
|
-
*
|
|
32831
|
-
* @returns
|
|
32832
|
-
* @throws ApiError
|
|
32833
|
-
*/
|
|
32834
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
32835
|
-
/**
|
|
32836
|
-
* The tenants subdomain.
|
|
32837
|
-
*/
|
|
32838
|
-
xTenantSubdomain?: string;
|
|
32839
|
-
/**
|
|
32840
|
-
* The <typeparamref name="TObject" /> model.
|
|
32841
|
-
*/
|
|
32842
|
-
requestBody?: WaitlistOpportunity;
|
|
32843
|
-
}): CancelablePromise<any>;
|
|
32844
|
-
/**
|
|
32845
|
-
* Gets a list of resources.
|
|
32846
|
-
* @returns WaitlistOpportunityPage Success
|
|
33863
|
+
* Gets a list of resources unpaged and without references.
|
|
33864
|
+
* @returns RecentOrderActivityReport Success
|
|
32847
33865
|
* @throws ApiError
|
|
32848
33866
|
*/
|
|
32849
|
-
|
|
32850
|
-
/**
|
|
32851
|
-
* The tenants subdomain.
|
|
32852
|
-
*/
|
|
32853
|
-
xTenantSubdomain?: string;
|
|
32854
|
-
/**
|
|
32855
|
-
* Gets or sets the queryable User Id.
|
|
32856
|
-
*/
|
|
32857
|
-
userId?: string;
|
|
32858
|
-
/**
|
|
32859
|
-
* Gets or sets the queryable Slot Id.
|
|
32860
|
-
*/
|
|
32861
|
-
slotId?: string;
|
|
32862
|
-
/**
|
|
32863
|
-
* Gets or sets the queryable Scheduled Session Id.
|
|
32864
|
-
*/
|
|
32865
|
-
scheduledSessionId?: string;
|
|
32866
|
-
/**
|
|
32867
|
-
* Gets or sets the queryable Course Id.
|
|
32868
|
-
*/
|
|
32869
|
-
courseId?: string;
|
|
32870
|
-
/**
|
|
32871
|
-
* Gets or sets the queryable Email.
|
|
32872
|
-
*/
|
|
32873
|
-
email?: string;
|
|
33867
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32874
33868
|
/**
|
|
32875
33869
|
* Gets or sets the page number for paged queries.
|
|
32876
33870
|
*/
|
|
@@ -32915,67 +33909,13 @@ declare class PublicWaitlistOpportunityService {
|
|
|
32915
33909
|
* Gets or sets the sort order direction.
|
|
32916
33910
|
*/
|
|
32917
33911
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
32918
|
-
}): CancelablePromise<
|
|
32919
|
-
/**
|
|
32920
|
-
* Deletes the resource.
|
|
32921
|
-
* @returns any Success
|
|
32922
|
-
* @throws ApiError
|
|
32923
|
-
*/
|
|
32924
|
-
deleteById({ id, xTenantSubdomain, }: {
|
|
32925
|
-
/**
|
|
32926
|
-
* The <typeparamref name="TObject" /> id.
|
|
32927
|
-
*/
|
|
32928
|
-
id: string;
|
|
32929
|
-
/**
|
|
32930
|
-
* The tenants subdomain.
|
|
32931
|
-
*/
|
|
32932
|
-
xTenantSubdomain?: string;
|
|
32933
|
-
}): CancelablePromise<any>;
|
|
32934
|
-
/**
|
|
32935
|
-
* Gets the resource by its Id.
|
|
32936
|
-
* @returns WaitlistOpportunity Success
|
|
32937
|
-
* @throws ApiError
|
|
32938
|
-
*/
|
|
32939
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
32940
|
-
/**
|
|
32941
|
-
* The <typeparamref name="TObject" /> id.
|
|
32942
|
-
*/
|
|
32943
|
-
id: string;
|
|
32944
|
-
/**
|
|
32945
|
-
* The tenants subdomain.
|
|
32946
|
-
*/
|
|
32947
|
-
xTenantSubdomain?: string;
|
|
32948
|
-
}): CancelablePromise<WaitlistOpportunity>;
|
|
33912
|
+
}): CancelablePromise<Array<RecentOrderActivityReport>>;
|
|
32949
33913
|
/**
|
|
32950
|
-
*
|
|
32951
|
-
* @returns
|
|
33914
|
+
* Gets a list of resources.
|
|
33915
|
+
* @returns RecentOrderActivityReport Success
|
|
32952
33916
|
* @throws ApiError
|
|
32953
33917
|
*/
|
|
32954
|
-
|
|
32955
|
-
/**
|
|
32956
|
-
* The tenants subdomain.
|
|
32957
|
-
*/
|
|
32958
|
-
xTenantSubdomain?: string;
|
|
32959
|
-
/**
|
|
32960
|
-
* Gets or sets the queryable User Id.
|
|
32961
|
-
*/
|
|
32962
|
-
userId?: string;
|
|
32963
|
-
/**
|
|
32964
|
-
* Gets or sets the queryable Slot Id.
|
|
32965
|
-
*/
|
|
32966
|
-
slotId?: string;
|
|
32967
|
-
/**
|
|
32968
|
-
* Gets or sets the queryable Scheduled Session Id.
|
|
32969
|
-
*/
|
|
32970
|
-
scheduledSessionId?: string;
|
|
32971
|
-
/**
|
|
32972
|
-
* Gets or sets the queryable Course Id.
|
|
32973
|
-
*/
|
|
32974
|
-
courseId?: string;
|
|
32975
|
-
/**
|
|
32976
|
-
* Gets or sets the queryable Email.
|
|
32977
|
-
*/
|
|
32978
|
-
email?: string;
|
|
33918
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32979
33919
|
/**
|
|
32980
33920
|
* Gets or sets the page number for paged queries.
|
|
32981
33921
|
*/
|
|
@@ -33020,13 +33960,13 @@ declare class PublicWaitlistOpportunityService {
|
|
|
33020
33960
|
* Gets or sets the sort order direction.
|
|
33021
33961
|
*/
|
|
33022
33962
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
33023
|
-
}): CancelablePromise<
|
|
33963
|
+
}): CancelablePromise<Array<RecentOrderActivityReport>>;
|
|
33024
33964
|
}
|
|
33025
33965
|
|
|
33026
33966
|
/**
|
|
33027
|
-
* Represents the
|
|
33967
|
+
* Represents the register report model.
|
|
33028
33968
|
*/
|
|
33029
|
-
type
|
|
33969
|
+
type RegisterReport = {
|
|
33030
33970
|
/**
|
|
33031
33971
|
* Gets or sets the entities Id.
|
|
33032
33972
|
*/
|
|
@@ -33052,64 +33992,88 @@ type RecentOrderActivityReport = {
|
|
|
33052
33992
|
*/
|
|
33053
33993
|
isLive: boolean;
|
|
33054
33994
|
/**
|
|
33055
|
-
* Gets or sets the
|
|
33995
|
+
* Gets or sets the participant first name.
|
|
33056
33996
|
*/
|
|
33057
|
-
|
|
33997
|
+
participantFirstName?: string | null;
|
|
33058
33998
|
/**
|
|
33059
|
-
* Gets or sets the
|
|
33999
|
+
* Gets or sets the participans last name.
|
|
34000
|
+
*/
|
|
34001
|
+
participantLastName?: string | null;
|
|
34002
|
+
/**
|
|
34003
|
+
* Gets or sets the activity.
|
|
33060
34004
|
*/
|
|
33061
34005
|
activity?: string | null;
|
|
33062
34006
|
/**
|
|
33063
|
-
* Gets or sets the
|
|
34007
|
+
* Gets or sets the start.
|
|
33064
34008
|
*/
|
|
33065
|
-
|
|
34009
|
+
start?: string | null;
|
|
33066
34010
|
/**
|
|
33067
|
-
* Gets or sets the
|
|
34011
|
+
* Gets or sets the end.
|
|
33068
34012
|
*/
|
|
33069
|
-
|
|
34013
|
+
end?: string | null;
|
|
33070
34014
|
/**
|
|
33071
|
-
* Gets or sets the
|
|
34015
|
+
* Gets or sets the location.
|
|
33072
34016
|
*/
|
|
33073
|
-
|
|
34017
|
+
location?: string | null;
|
|
33074
34018
|
/**
|
|
33075
|
-
* Gets or sets the
|
|
34019
|
+
* Gets or sets the Checked in.
|
|
33076
34020
|
*/
|
|
33077
|
-
|
|
34021
|
+
checkedIn?: string | null;
|
|
33078
34022
|
/**
|
|
33079
|
-
* Gets or sets the
|
|
34023
|
+
* Gets or sets the Attendee number.
|
|
33080
34024
|
*/
|
|
33081
|
-
|
|
34025
|
+
attendeeNumber?: string | null;
|
|
33082
34026
|
/**
|
|
33083
|
-
* Gets or sets the
|
|
34027
|
+
* Gets or sets the Date Of Birth Of Participant.
|
|
33084
34028
|
*/
|
|
33085
|
-
|
|
34029
|
+
dateOfBirthOfParticipant?: string | null;
|
|
33086
34030
|
/**
|
|
33087
|
-
* Gets or sets the
|
|
34031
|
+
* Gets or sets the Gender of Participant.
|
|
33088
34032
|
*/
|
|
33089
|
-
|
|
34033
|
+
genderOfParticipant?: string | null;
|
|
33090
34034
|
/**
|
|
33091
|
-
* Gets or sets the
|
|
34035
|
+
* Gets or sets the Ethnic Group.
|
|
33092
34036
|
*/
|
|
33093
|
-
|
|
34037
|
+
ethnicGroup?: string | null;
|
|
33094
34038
|
/**
|
|
33095
|
-
* Gets or sets the
|
|
34039
|
+
* Gets or sets the Customer name.
|
|
33096
34040
|
*/
|
|
33097
|
-
|
|
34041
|
+
customerName?: string | null;
|
|
33098
34042
|
/**
|
|
33099
|
-
* Gets or sets the
|
|
34043
|
+
* Gets or sets the Email.
|
|
33100
34044
|
*/
|
|
33101
|
-
|
|
34045
|
+
email?: string | null;
|
|
34046
|
+
/**
|
|
34047
|
+
* Gets or sets the Phone.
|
|
34048
|
+
*/
|
|
34049
|
+
phone?: string | null;
|
|
34050
|
+
/**
|
|
34051
|
+
* Gets or sets the Post code.
|
|
34052
|
+
*/
|
|
34053
|
+
postCode?: string | null;
|
|
34054
|
+
/**
|
|
34055
|
+
* Gets or sets the Order number.
|
|
34056
|
+
*/
|
|
34057
|
+
orderNumber?: string | null;
|
|
34058
|
+
/**
|
|
34059
|
+
* Gets or sets the Order date.
|
|
34060
|
+
*/
|
|
34061
|
+
orderDate?: string | null;
|
|
34062
|
+
/**
|
|
34063
|
+
* Gets or sets the Status.
|
|
34064
|
+
*/
|
|
34065
|
+
status?: string | null;
|
|
33102
34066
|
};
|
|
33103
34067
|
|
|
33104
|
-
type
|
|
34068
|
+
type RegisterReportPage = {
|
|
33105
34069
|
pagination: Pagination;
|
|
33106
|
-
readonly items: Array<
|
|
34070
|
+
readonly items: Array<RegisterReport>;
|
|
33107
34071
|
};
|
|
33108
34072
|
|
|
33109
34073
|
/**
|
|
33110
|
-
* Post model for
|
|
34074
|
+
* Post model for RegisterReport updates.
|
|
33111
34075
|
*/
|
|
33112
|
-
type
|
|
34076
|
+
type RegisterReportPatch = {
|
|
33113
34077
|
/**
|
|
33114
34078
|
* Gets or sets the tenant Id.
|
|
33115
34079
|
*/
|
|
@@ -33121,25 +34085,29 @@ type RecentOrderActivityReportPatch = {
|
|
|
33121
34085
|
};
|
|
33122
34086
|
|
|
33123
34087
|
/**
|
|
33124
|
-
* Post model for
|
|
34088
|
+
* Post model for RegisterReport inserts.
|
|
33125
34089
|
*/
|
|
33126
|
-
type
|
|
34090
|
+
type RegisterReportPost = {
|
|
33127
34091
|
/**
|
|
33128
34092
|
* Gets or sets the tenant Id.
|
|
33129
34093
|
*/
|
|
33130
34094
|
tenantId: string;
|
|
33131
34095
|
};
|
|
33132
34096
|
|
|
33133
|
-
declare class
|
|
34097
|
+
declare class RegisterReportService {
|
|
33134
34098
|
readonly httpRequest: BaseHttpRequest;
|
|
33135
34099
|
constructor(httpRequest: BaseHttpRequest);
|
|
33136
34100
|
/**
|
|
33137
|
-
* Exports the
|
|
34101
|
+
* Exports the performance list to a csv format.
|
|
33138
34102
|
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
33139
34103
|
* @returns any Success
|
|
33140
34104
|
* @throws ApiError
|
|
33141
34105
|
*/
|
|
33142
|
-
exportToCsv({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34106
|
+
exportToCsv({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34107
|
+
/**
|
|
34108
|
+
* Gets or sets the queryable User Id.
|
|
34109
|
+
*/
|
|
34110
|
+
userId?: string;
|
|
33143
34111
|
/**
|
|
33144
34112
|
* Gets or sets the page number for paged queries.
|
|
33145
34113
|
*/
|
|
@@ -33193,48 +34161,48 @@ declare class RecentOrderActivityReportService {
|
|
|
33193
34161
|
}): CancelablePromise<any>;
|
|
33194
34162
|
/**
|
|
33195
34163
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
33196
|
-
* @returns
|
|
34164
|
+
* @returns RegisterReport Success
|
|
33197
34165
|
* @throws ApiError
|
|
33198
34166
|
*/
|
|
33199
34167
|
post({ requestBody, }: {
|
|
33200
34168
|
/**
|
|
33201
34169
|
* The <typeparamref name="TObject" /> model.
|
|
33202
34170
|
*/
|
|
33203
|
-
requestBody?:
|
|
33204
|
-
}): CancelablePromise<
|
|
34171
|
+
requestBody?: RegisterReportPost;
|
|
34172
|
+
}): CancelablePromise<RegisterReport>;
|
|
33205
34173
|
/**
|
|
33206
34174
|
* Patches the resource.
|
|
33207
|
-
* @returns
|
|
34175
|
+
* @returns RegisterReport Success
|
|
33208
34176
|
* @throws ApiError
|
|
33209
34177
|
*/
|
|
33210
34178
|
patch({ requestBody, }: {
|
|
33211
34179
|
/**
|
|
33212
34180
|
* The <typeparamref name="TObject" /> model.
|
|
33213
34181
|
*/
|
|
33214
|
-
requestBody?:
|
|
33215
|
-
}): CancelablePromise<
|
|
34182
|
+
requestBody?: RegisterReportPatch;
|
|
34183
|
+
}): CancelablePromise<RegisterReport>;
|
|
33216
34184
|
/**
|
|
33217
34185
|
* Inserts a list of resources.
|
|
33218
|
-
* @returns
|
|
34186
|
+
* @returns RegisterReport Success
|
|
33219
34187
|
* @throws ApiError
|
|
33220
34188
|
*/
|
|
33221
34189
|
postList({ requestBody, }: {
|
|
33222
34190
|
/**
|
|
33223
34191
|
* The list of <typeparamref name="TObject" />.
|
|
33224
34192
|
*/
|
|
33225
|
-
requestBody?: Array<
|
|
33226
|
-
}): CancelablePromise<Array<
|
|
34193
|
+
requestBody?: Array<RegisterReportPost>;
|
|
34194
|
+
}): CancelablePromise<Array<RegisterReport>>;
|
|
33227
34195
|
/**
|
|
33228
34196
|
* Patches the resource.
|
|
33229
|
-
* @returns
|
|
34197
|
+
* @returns RegisterReport Success
|
|
33230
34198
|
* @throws ApiError
|
|
33231
34199
|
*/
|
|
33232
34200
|
patchWithReferences({ requestBody, }: {
|
|
33233
34201
|
/**
|
|
33234
34202
|
* The <typeparamref name="TObject" /> model.
|
|
33235
34203
|
*/
|
|
33236
|
-
requestBody?:
|
|
33237
|
-
}): CancelablePromise<
|
|
34204
|
+
requestBody?: RegisterReportPatch;
|
|
34205
|
+
}): CancelablePromise<RegisterReport>;
|
|
33238
34206
|
/**
|
|
33239
34207
|
* Deletes the resource.
|
|
33240
34208
|
* @returns any Success
|
|
@@ -33244,14 +34212,18 @@ declare class RecentOrderActivityReportService {
|
|
|
33244
34212
|
/**
|
|
33245
34213
|
* The <typeparamref name="TObject" /> model.
|
|
33246
34214
|
*/
|
|
33247
|
-
requestBody?:
|
|
34215
|
+
requestBody?: RegisterReport;
|
|
33248
34216
|
}): CancelablePromise<any>;
|
|
33249
34217
|
/**
|
|
33250
34218
|
* Gets a list of resources.
|
|
33251
|
-
* @returns
|
|
34219
|
+
* @returns RegisterReportPage Success
|
|
33252
34220
|
* @throws ApiError
|
|
33253
34221
|
*/
|
|
33254
|
-
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34222
|
+
getPage({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34223
|
+
/**
|
|
34224
|
+
* Gets or sets the queryable User Id.
|
|
34225
|
+
*/
|
|
34226
|
+
userId?: string;
|
|
33255
34227
|
/**
|
|
33256
34228
|
* Gets or sets the page number for paged queries.
|
|
33257
34229
|
*/
|
|
@@ -33296,7 +34268,7 @@ declare class RecentOrderActivityReportService {
|
|
|
33296
34268
|
* Gets or sets the sort order direction.
|
|
33297
34269
|
*/
|
|
33298
34270
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
33299
|
-
}): CancelablePromise<
|
|
34271
|
+
}): CancelablePromise<RegisterReportPage>;
|
|
33300
34272
|
/**
|
|
33301
34273
|
* Deletes the resource.
|
|
33302
34274
|
* @returns any Success
|
|
@@ -33310,7 +34282,7 @@ declare class RecentOrderActivityReportService {
|
|
|
33310
34282
|
}): CancelablePromise<any>;
|
|
33311
34283
|
/**
|
|
33312
34284
|
* Gets the resource by its Id.
|
|
33313
|
-
* @returns
|
|
34285
|
+
* @returns RegisterReport Success
|
|
33314
34286
|
* @throws ApiError
|
|
33315
34287
|
*/
|
|
33316
34288
|
getObject({ id, }: {
|
|
@@ -33318,7 +34290,7 @@ declare class RecentOrderActivityReportService {
|
|
|
33318
34290
|
* The <typeparamref name="TObject" /> id.
|
|
33319
34291
|
*/
|
|
33320
34292
|
id: string;
|
|
33321
|
-
}): CancelablePromise<
|
|
34293
|
+
}): CancelablePromise<RegisterReport>;
|
|
33322
34294
|
/**
|
|
33323
34295
|
* Returns a value indicating whether the resource is deletable.
|
|
33324
34296
|
* @returns boolean Success
|
|
@@ -33335,7 +34307,11 @@ declare class RecentOrderActivityReportService {
|
|
|
33335
34307
|
* @returns boolean Success
|
|
33336
34308
|
* @throws ApiError
|
|
33337
34309
|
*/
|
|
33338
|
-
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34310
|
+
exists({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34311
|
+
/**
|
|
34312
|
+
* Gets or sets the queryable User Id.
|
|
34313
|
+
*/
|
|
34314
|
+
userId?: string;
|
|
33339
34315
|
/**
|
|
33340
34316
|
* Gets or sets the page number for paged queries.
|
|
33341
34317
|
*/
|
|
@@ -33383,10 +34359,14 @@ declare class RecentOrderActivityReportService {
|
|
|
33383
34359
|
}): CancelablePromise<boolean>;
|
|
33384
34360
|
/**
|
|
33385
34361
|
* Gets a list of resources unpaged and without references.
|
|
33386
|
-
* @returns
|
|
34362
|
+
* @returns RegisterReport Success
|
|
33387
34363
|
* @throws ApiError
|
|
33388
34364
|
*/
|
|
33389
|
-
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34365
|
+
getListWithoutReferences({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34366
|
+
/**
|
|
34367
|
+
* Gets or sets the queryable User Id.
|
|
34368
|
+
*/
|
|
34369
|
+
userId?: string;
|
|
33390
34370
|
/**
|
|
33391
34371
|
* Gets or sets the page number for paged queries.
|
|
33392
34372
|
*/
|
|
@@ -33431,13 +34411,17 @@ declare class RecentOrderActivityReportService {
|
|
|
33431
34411
|
* Gets or sets the sort order direction.
|
|
33432
34412
|
*/
|
|
33433
34413
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
33434
|
-
}): CancelablePromise<Array<
|
|
34414
|
+
}): CancelablePromise<Array<RegisterReport>>;
|
|
33435
34415
|
/**
|
|
33436
34416
|
* Gets a list of resources.
|
|
33437
|
-
* @returns
|
|
34417
|
+
* @returns RegisterReport Success
|
|
33438
34418
|
* @throws ApiError
|
|
33439
34419
|
*/
|
|
33440
|
-
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34420
|
+
getListIdName({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34421
|
+
/**
|
|
34422
|
+
* Gets or sets the queryable User Id.
|
|
34423
|
+
*/
|
|
34424
|
+
userId?: string;
|
|
33441
34425
|
/**
|
|
33442
34426
|
* Gets or sets the page number for paged queries.
|
|
33443
34427
|
*/
|
|
@@ -33482,7 +34466,7 @@ declare class RecentOrderActivityReportService {
|
|
|
33482
34466
|
* Gets or sets the sort order direction.
|
|
33483
34467
|
*/
|
|
33484
34468
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
33485
|
-
}): CancelablePromise<Array<
|
|
34469
|
+
}): CancelablePromise<Array<RegisterReport>>;
|
|
33486
34470
|
}
|
|
33487
34471
|
|
|
33488
34472
|
/**
|
|
@@ -50266,6 +51250,7 @@ declare class ApiClient {
|
|
|
50266
51250
|
readonly images: ImagesService;
|
|
50267
51251
|
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
50268
51252
|
readonly leasing: LeasingService;
|
|
51253
|
+
readonly locationsReport: LocationsReportService;
|
|
50269
51254
|
readonly loqatePlaces: LoqatePlacesService;
|
|
50270
51255
|
readonly notificationQueue: NotificationQueueService;
|
|
50271
51256
|
readonly notificationSettings: NotificationSettingsService;
|
|
@@ -50309,6 +51294,7 @@ declare class ApiClient {
|
|
|
50309
51294
|
readonly publicWaitlistActivity: PublicWaitlistActivityService;
|
|
50310
51295
|
readonly publicWaitlistOpportunity: PublicWaitlistOpportunityService;
|
|
50311
51296
|
readonly recentOrderActivityReport: RecentOrderActivityReportService;
|
|
51297
|
+
readonly registerReport: RegisterReportService;
|
|
50312
51298
|
readonly rescheduleLog: RescheduleLogService;
|
|
50313
51299
|
readonly scheduledSessions: ScheduledSessionsService;
|
|
50314
51300
|
readonly scheduledSessionsSchedules: ScheduledSessionsSchedulesService;
|
|
@@ -50475,4 +51461,4 @@ type ValidationResultModel = {
|
|
|
50475
51461
|
readonly errors?: Array<ValidationError> | null;
|
|
50476
51462
|
};
|
|
50477
51463
|
|
|
50478
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProviderService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
51464
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProviderService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|