reach-api-sdk 1.0.112 → 1.0.113
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 +438 -1
- package/dist/reach-sdk.js +348 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +2367 -1184
- package/src/index.ts +8 -0
- package/src/models/DatabaseState.ts +4 -0
- package/src/models/Deal.ts +58 -0
- package/src/models/DealDiscountType.ts +12 -0
- package/src/models/DealPage.ts +12 -0
- package/src/models/DealPatch.ts +37 -0
- package/src/models/DealPost.ts +33 -0
- package/src/models/DealTarget.ts +12 -0
- package/src/models/DealType.ts +13 -0
- package/src/models/ReachError.ts +1 -0
- package/src/services/DealsService.ts +575 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -8881,6 +8881,437 @@ declare class CustomersService {
|
|
|
8881
8881
|
}): CancelablePromise<Array<Customer>>;
|
|
8882
8882
|
}
|
|
8883
8883
|
|
|
8884
|
+
/**
|
|
8885
|
+
* Controls the DealType.
|
|
8886
|
+
*/
|
|
8887
|
+
declare enum DealDiscountType {
|
|
8888
|
+
PERCENT = "Percent",
|
|
8889
|
+
FIXED = "Fixed"
|
|
8890
|
+
}
|
|
8891
|
+
|
|
8892
|
+
/**
|
|
8893
|
+
* Controls the DealTarget.
|
|
8894
|
+
*/
|
|
8895
|
+
declare enum DealTarget {
|
|
8896
|
+
ALL_ACTIVITIES = "AllActivities",
|
|
8897
|
+
SPECIFIC_ACTIVITIES = "SpecificActivities"
|
|
8898
|
+
}
|
|
8899
|
+
|
|
8900
|
+
/**
|
|
8901
|
+
* Controls the DealType.
|
|
8902
|
+
*/
|
|
8903
|
+
declare enum DealType {
|
|
8904
|
+
MULTI_ITEM = "MultiItem",
|
|
8905
|
+
MULTI_PARTICIPANT = "MultiParticipant",
|
|
8906
|
+
EARLY_BIRD_DISCOUNT = "EarlyBirdDiscount"
|
|
8907
|
+
}
|
|
8908
|
+
|
|
8909
|
+
/**
|
|
8910
|
+
* Represents a deal within the Reach application.
|
|
8911
|
+
*/
|
|
8912
|
+
type Deal = {
|
|
8913
|
+
/**
|
|
8914
|
+
* Gets or sets the entities Id.
|
|
8915
|
+
*/
|
|
8916
|
+
id?: string;
|
|
8917
|
+
/**
|
|
8918
|
+
* Gets or sets the tenant Id.
|
|
8919
|
+
*/
|
|
8920
|
+
tenantId: string;
|
|
8921
|
+
/**
|
|
8922
|
+
* Gets or sets the created date of this entity.
|
|
8923
|
+
*/
|
|
8924
|
+
dateCreated: string;
|
|
8925
|
+
/**
|
|
8926
|
+
* Gets or sets the last modified date of this entity.
|
|
8927
|
+
*/
|
|
8928
|
+
dateModified: string;
|
|
8929
|
+
/**
|
|
8930
|
+
* Gets or sets the modified by Id.
|
|
8931
|
+
*/
|
|
8932
|
+
modifiedById?: string | null;
|
|
8933
|
+
/**
|
|
8934
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
8935
|
+
*/
|
|
8936
|
+
isLive: boolean;
|
|
8937
|
+
/**
|
|
8938
|
+
* Gets or sets the survey name.
|
|
8939
|
+
*/
|
|
8940
|
+
name?: string | null;
|
|
8941
|
+
type?: DealType;
|
|
8942
|
+
/**
|
|
8943
|
+
* Gets or sets the required items.
|
|
8944
|
+
*/
|
|
8945
|
+
requiredItems?: number;
|
|
8946
|
+
discountType?: DealDiscountType;
|
|
8947
|
+
/**
|
|
8948
|
+
* Gets or sets the value of the discount applied to the deal.
|
|
8949
|
+
* This can represent a percentage or a fixed amount, depending on the Reach.Models.Deal.DiscountType.
|
|
8950
|
+
*/
|
|
8951
|
+
discountValue?: number;
|
|
8952
|
+
target?: DealTarget;
|
|
8953
|
+
/**
|
|
8954
|
+
* Gets the venues shortened formatted address.
|
|
8955
|
+
*/
|
|
8956
|
+
readonly typeLabel?: string | null;
|
|
8957
|
+
};
|
|
8958
|
+
|
|
8959
|
+
type DealPage = {
|
|
8960
|
+
pagination: Pagination;
|
|
8961
|
+
readonly items: Array<Deal>;
|
|
8962
|
+
};
|
|
8963
|
+
|
|
8964
|
+
/**
|
|
8965
|
+
* Post model for deal updates.
|
|
8966
|
+
*/
|
|
8967
|
+
type DealPatch = {
|
|
8968
|
+
/**
|
|
8969
|
+
* Gets or sets the tenant Id.
|
|
8970
|
+
*/
|
|
8971
|
+
tenantId: string;
|
|
8972
|
+
/**
|
|
8973
|
+
* Gets or sets the Id.
|
|
8974
|
+
*/
|
|
8975
|
+
id: string;
|
|
8976
|
+
/**
|
|
8977
|
+
* Gets or sets the deal name.
|
|
8978
|
+
*/
|
|
8979
|
+
name?: string | null;
|
|
8980
|
+
type?: DealType;
|
|
8981
|
+
/**
|
|
8982
|
+
* Gets or sets the number of required items for the deal.
|
|
8983
|
+
*/
|
|
8984
|
+
requiredItems?: number;
|
|
8985
|
+
discountType?: DealDiscountType;
|
|
8986
|
+
/**
|
|
8987
|
+
* Gets or sets the value of the discount applied to the deal.
|
|
8988
|
+
*/
|
|
8989
|
+
discountValue?: number;
|
|
8990
|
+
target?: DealTarget;
|
|
8991
|
+
};
|
|
8992
|
+
|
|
8993
|
+
/**
|
|
8994
|
+
* Post model for deal inserts.
|
|
8995
|
+
*/
|
|
8996
|
+
type DealPost = {
|
|
8997
|
+
/**
|
|
8998
|
+
* Gets or sets the tenant Id.
|
|
8999
|
+
*/
|
|
9000
|
+
tenantId: string;
|
|
9001
|
+
/**
|
|
9002
|
+
* Gets or sets the deal name.
|
|
9003
|
+
*/
|
|
9004
|
+
name: string;
|
|
9005
|
+
type: DealType;
|
|
9006
|
+
/**
|
|
9007
|
+
* Gets or sets the number of required items for the deal.
|
|
9008
|
+
*/
|
|
9009
|
+
requiredItems: number;
|
|
9010
|
+
discountType: DealDiscountType;
|
|
9011
|
+
/**
|
|
9012
|
+
* Gets or sets the value of the discount applied to the deal.
|
|
9013
|
+
*/
|
|
9014
|
+
discountValue: number;
|
|
9015
|
+
target: DealTarget;
|
|
9016
|
+
};
|
|
9017
|
+
|
|
9018
|
+
declare class DealsService {
|
|
9019
|
+
readonly httpRequest: BaseHttpRequest;
|
|
9020
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
9021
|
+
/**
|
|
9022
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
9023
|
+
* @returns Deal Success
|
|
9024
|
+
* @throws ApiError
|
|
9025
|
+
*/
|
|
9026
|
+
post({ requestBody, }: {
|
|
9027
|
+
/**
|
|
9028
|
+
* The <typeparamref name="TObject" /> model.
|
|
9029
|
+
*/
|
|
9030
|
+
requestBody?: DealPost;
|
|
9031
|
+
}): CancelablePromise<Deal>;
|
|
9032
|
+
/**
|
|
9033
|
+
* Patches the resource.
|
|
9034
|
+
* @returns Deal Success
|
|
9035
|
+
* @throws ApiError
|
|
9036
|
+
*/
|
|
9037
|
+
patch({ requestBody, }: {
|
|
9038
|
+
/**
|
|
9039
|
+
* The <typeparamref name="TObject" /> model.
|
|
9040
|
+
*/
|
|
9041
|
+
requestBody?: DealPatch;
|
|
9042
|
+
}): CancelablePromise<Deal>;
|
|
9043
|
+
/**
|
|
9044
|
+
* Inserts a list of resources.
|
|
9045
|
+
* @returns Deal Success
|
|
9046
|
+
* @throws ApiError
|
|
9047
|
+
*/
|
|
9048
|
+
postList({ requestBody, }: {
|
|
9049
|
+
/**
|
|
9050
|
+
* The list of <typeparamref name="TObject" />.
|
|
9051
|
+
*/
|
|
9052
|
+
requestBody?: Array<DealPost>;
|
|
9053
|
+
}): CancelablePromise<Array<Deal>>;
|
|
9054
|
+
/**
|
|
9055
|
+
* Patches the resource.
|
|
9056
|
+
* @returns Deal Success
|
|
9057
|
+
* @throws ApiError
|
|
9058
|
+
*/
|
|
9059
|
+
patchWithReferences({ requestBody, }: {
|
|
9060
|
+
/**
|
|
9061
|
+
* The <typeparamref name="TObject" /> model.
|
|
9062
|
+
*/
|
|
9063
|
+
requestBody?: DealPatch;
|
|
9064
|
+
}): CancelablePromise<Deal>;
|
|
9065
|
+
/**
|
|
9066
|
+
* Deletes the resource.
|
|
9067
|
+
* @returns any Success
|
|
9068
|
+
* @throws ApiError
|
|
9069
|
+
*/
|
|
9070
|
+
deleteByObject({ requestBody, }: {
|
|
9071
|
+
/**
|
|
9072
|
+
* The <typeparamref name="TObject" /> model.
|
|
9073
|
+
*/
|
|
9074
|
+
requestBody?: Deal;
|
|
9075
|
+
}): CancelablePromise<any>;
|
|
9076
|
+
/**
|
|
9077
|
+
* Gets a list of resources.
|
|
9078
|
+
* @returns DealPage Success
|
|
9079
|
+
* @throws ApiError
|
|
9080
|
+
*/
|
|
9081
|
+
getPage({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9082
|
+
/**
|
|
9083
|
+
* Gets or sets the queryable Survey Id.
|
|
9084
|
+
*/
|
|
9085
|
+
id?: string;
|
|
9086
|
+
/**
|
|
9087
|
+
* Gets or sets the page number for paged queries.
|
|
9088
|
+
*/
|
|
9089
|
+
pageNumber?: number;
|
|
9090
|
+
/**
|
|
9091
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9092
|
+
*/
|
|
9093
|
+
take?: number;
|
|
9094
|
+
/**
|
|
9095
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9096
|
+
*/
|
|
9097
|
+
limitListRequests?: boolean;
|
|
9098
|
+
/**
|
|
9099
|
+
* Gets or sets the Tenant Id.
|
|
9100
|
+
*/
|
|
9101
|
+
tenantId?: string;
|
|
9102
|
+
/**
|
|
9103
|
+
* Gets or sets the Modifed By Id.
|
|
9104
|
+
*/
|
|
9105
|
+
modifiedById?: string;
|
|
9106
|
+
/**
|
|
9107
|
+
* Gets or sets the Modifed By Ids.
|
|
9108
|
+
*/
|
|
9109
|
+
modifiedByIds?: Array<string>;
|
|
9110
|
+
/**
|
|
9111
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9112
|
+
*/
|
|
9113
|
+
dateCreatedGte?: string;
|
|
9114
|
+
/**
|
|
9115
|
+
* Gets or sets the Date Created less than equal to.
|
|
9116
|
+
*/
|
|
9117
|
+
dateCreatedLte?: string;
|
|
9118
|
+
/**
|
|
9119
|
+
* Gets or sets the queryable only is live status.
|
|
9120
|
+
*/
|
|
9121
|
+
isLive?: boolean;
|
|
9122
|
+
/**
|
|
9123
|
+
* Gets or sets the sort order direction.
|
|
9124
|
+
*/
|
|
9125
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9126
|
+
}): CancelablePromise<DealPage>;
|
|
9127
|
+
/**
|
|
9128
|
+
* Deletes the resource.
|
|
9129
|
+
* @returns any Success
|
|
9130
|
+
* @throws ApiError
|
|
9131
|
+
*/
|
|
9132
|
+
deleteById({ id, }: {
|
|
9133
|
+
/**
|
|
9134
|
+
* The <typeparamref name="TObject" /> id.
|
|
9135
|
+
*/
|
|
9136
|
+
id: string;
|
|
9137
|
+
}): CancelablePromise<any>;
|
|
9138
|
+
/**
|
|
9139
|
+
* Gets the resource by its Id.
|
|
9140
|
+
* @returns Deal Success
|
|
9141
|
+
* @throws ApiError
|
|
9142
|
+
*/
|
|
9143
|
+
getObject({ id, }: {
|
|
9144
|
+
/**
|
|
9145
|
+
* The <typeparamref name="TObject" /> id.
|
|
9146
|
+
*/
|
|
9147
|
+
id: string;
|
|
9148
|
+
}): CancelablePromise<Deal>;
|
|
9149
|
+
/**
|
|
9150
|
+
* Returns a value indicating whether the resource is deletable.
|
|
9151
|
+
* @returns boolean Success
|
|
9152
|
+
* @throws ApiError
|
|
9153
|
+
*/
|
|
9154
|
+
canDelete({ id, }: {
|
|
9155
|
+
/**
|
|
9156
|
+
* The <typeparamref name="TObject" /> id.
|
|
9157
|
+
*/
|
|
9158
|
+
id: string;
|
|
9159
|
+
}): CancelablePromise<boolean>;
|
|
9160
|
+
/**
|
|
9161
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
9162
|
+
* @returns boolean Success
|
|
9163
|
+
* @throws ApiError
|
|
9164
|
+
*/
|
|
9165
|
+
exists({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9166
|
+
/**
|
|
9167
|
+
* Gets or sets the queryable Survey Id.
|
|
9168
|
+
*/
|
|
9169
|
+
id?: string;
|
|
9170
|
+
/**
|
|
9171
|
+
* Gets or sets the page number for paged queries.
|
|
9172
|
+
*/
|
|
9173
|
+
pageNumber?: number;
|
|
9174
|
+
/**
|
|
9175
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9176
|
+
*/
|
|
9177
|
+
take?: number;
|
|
9178
|
+
/**
|
|
9179
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9180
|
+
*/
|
|
9181
|
+
limitListRequests?: boolean;
|
|
9182
|
+
/**
|
|
9183
|
+
* Gets or sets the Tenant Id.
|
|
9184
|
+
*/
|
|
9185
|
+
tenantId?: string;
|
|
9186
|
+
/**
|
|
9187
|
+
* Gets or sets the Modifed By Id.
|
|
9188
|
+
*/
|
|
9189
|
+
modifiedById?: string;
|
|
9190
|
+
/**
|
|
9191
|
+
* Gets or sets the Modifed By Ids.
|
|
9192
|
+
*/
|
|
9193
|
+
modifiedByIds?: Array<string>;
|
|
9194
|
+
/**
|
|
9195
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9196
|
+
*/
|
|
9197
|
+
dateCreatedGte?: string;
|
|
9198
|
+
/**
|
|
9199
|
+
* Gets or sets the Date Created less than equal to.
|
|
9200
|
+
*/
|
|
9201
|
+
dateCreatedLte?: string;
|
|
9202
|
+
/**
|
|
9203
|
+
* Gets or sets the queryable only is live status.
|
|
9204
|
+
*/
|
|
9205
|
+
isLive?: boolean;
|
|
9206
|
+
/**
|
|
9207
|
+
* Gets or sets the sort order direction.
|
|
9208
|
+
*/
|
|
9209
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9210
|
+
}): CancelablePromise<boolean>;
|
|
9211
|
+
/**
|
|
9212
|
+
* Gets a list of resources unpaged and without references.
|
|
9213
|
+
* @returns Deal Success
|
|
9214
|
+
* @throws ApiError
|
|
9215
|
+
*/
|
|
9216
|
+
getListWithoutReferences({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9217
|
+
/**
|
|
9218
|
+
* Gets or sets the queryable Survey Id.
|
|
9219
|
+
*/
|
|
9220
|
+
id?: string;
|
|
9221
|
+
/**
|
|
9222
|
+
* Gets or sets the page number for paged queries.
|
|
9223
|
+
*/
|
|
9224
|
+
pageNumber?: number;
|
|
9225
|
+
/**
|
|
9226
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9227
|
+
*/
|
|
9228
|
+
take?: number;
|
|
9229
|
+
/**
|
|
9230
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9231
|
+
*/
|
|
9232
|
+
limitListRequests?: boolean;
|
|
9233
|
+
/**
|
|
9234
|
+
* Gets or sets the Tenant Id.
|
|
9235
|
+
*/
|
|
9236
|
+
tenantId?: string;
|
|
9237
|
+
/**
|
|
9238
|
+
* Gets or sets the Modifed By Id.
|
|
9239
|
+
*/
|
|
9240
|
+
modifiedById?: string;
|
|
9241
|
+
/**
|
|
9242
|
+
* Gets or sets the Modifed By Ids.
|
|
9243
|
+
*/
|
|
9244
|
+
modifiedByIds?: Array<string>;
|
|
9245
|
+
/**
|
|
9246
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9247
|
+
*/
|
|
9248
|
+
dateCreatedGte?: string;
|
|
9249
|
+
/**
|
|
9250
|
+
* Gets or sets the Date Created less than equal to.
|
|
9251
|
+
*/
|
|
9252
|
+
dateCreatedLte?: string;
|
|
9253
|
+
/**
|
|
9254
|
+
* Gets or sets the queryable only is live status.
|
|
9255
|
+
*/
|
|
9256
|
+
isLive?: boolean;
|
|
9257
|
+
/**
|
|
9258
|
+
* Gets or sets the sort order direction.
|
|
9259
|
+
*/
|
|
9260
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9261
|
+
}): CancelablePromise<Array<Deal>>;
|
|
9262
|
+
/**
|
|
9263
|
+
* Gets a list of resources.
|
|
9264
|
+
* @returns Deal Success
|
|
9265
|
+
* @throws ApiError
|
|
9266
|
+
*/
|
|
9267
|
+
getListIdName({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9268
|
+
/**
|
|
9269
|
+
* Gets or sets the queryable Survey Id.
|
|
9270
|
+
*/
|
|
9271
|
+
id?: string;
|
|
9272
|
+
/**
|
|
9273
|
+
* Gets or sets the page number for paged queries.
|
|
9274
|
+
*/
|
|
9275
|
+
pageNumber?: number;
|
|
9276
|
+
/**
|
|
9277
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9278
|
+
*/
|
|
9279
|
+
take?: number;
|
|
9280
|
+
/**
|
|
9281
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9282
|
+
*/
|
|
9283
|
+
limitListRequests?: boolean;
|
|
9284
|
+
/**
|
|
9285
|
+
* Gets or sets the Tenant Id.
|
|
9286
|
+
*/
|
|
9287
|
+
tenantId?: string;
|
|
9288
|
+
/**
|
|
9289
|
+
* Gets or sets the Modifed By Id.
|
|
9290
|
+
*/
|
|
9291
|
+
modifiedById?: string;
|
|
9292
|
+
/**
|
|
9293
|
+
* Gets or sets the Modifed By Ids.
|
|
9294
|
+
*/
|
|
9295
|
+
modifiedByIds?: Array<string>;
|
|
9296
|
+
/**
|
|
9297
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9298
|
+
*/
|
|
9299
|
+
dateCreatedGte?: string;
|
|
9300
|
+
/**
|
|
9301
|
+
* Gets or sets the Date Created less than equal to.
|
|
9302
|
+
*/
|
|
9303
|
+
dateCreatedLte?: string;
|
|
9304
|
+
/**
|
|
9305
|
+
* Gets or sets the queryable only is live status.
|
|
9306
|
+
*/
|
|
9307
|
+
isLive?: boolean;
|
|
9308
|
+
/**
|
|
9309
|
+
* Gets or sets the sort order direction.
|
|
9310
|
+
*/
|
|
9311
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9312
|
+
}): CancelablePromise<Array<Deal>>;
|
|
9313
|
+
}
|
|
9314
|
+
|
|
8884
9315
|
/**
|
|
8885
9316
|
* Represents an organisation within the Reach application.
|
|
8886
9317
|
*/
|
|
@@ -36339,6 +36770,10 @@ type DatabaseState = {
|
|
|
36339
36770
|
* Gets or sets a value indicating whether surveys database records exist.
|
|
36340
36771
|
*/
|
|
36341
36772
|
surveysExist: boolean;
|
|
36773
|
+
/**
|
|
36774
|
+
* Gets or sets a value indicating whether deals database records exist.
|
|
36775
|
+
*/
|
|
36776
|
+
dealsExist: boolean;
|
|
36342
36777
|
/**
|
|
36343
36778
|
* Gets or sets a value indicating whether sessions database records exist.
|
|
36344
36779
|
*/
|
|
@@ -42221,6 +42656,7 @@ declare class ApiClient {
|
|
|
42221
42656
|
readonly courseSessions: CourseSessionsService;
|
|
42222
42657
|
readonly courseSessionSchedules: CourseSessionSchedulesService;
|
|
42223
42658
|
readonly customers: CustomersService;
|
|
42659
|
+
readonly deals: DealsService;
|
|
42224
42660
|
readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
42225
42661
|
readonly emailSettings: EmailSettingsService;
|
|
42226
42662
|
readonly englandGolfReport: EnglandGolfReportService;
|
|
@@ -42396,6 +42832,7 @@ type ReachError = {
|
|
|
42396
42832
|
readonly title?: string | null;
|
|
42397
42833
|
detail?: string | null;
|
|
42398
42834
|
clientDetail?: string | null;
|
|
42835
|
+
platformDetail?: string | null;
|
|
42399
42836
|
detailCode?: string | null;
|
|
42400
42837
|
status?: HttpStatusCode;
|
|
42401
42838
|
errors?: any;
|
|
@@ -42435,4 +42872,4 @@ type ValidationResultModel = {
|
|
|
42435
42872
|
readonly errors?: Array<ValidationError> | null;
|
|
42436
42873
|
};
|
|
42437
42874
|
|
|
42438
|
-
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, 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, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, 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, 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, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, 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, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, 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, 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, UserPost, 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 };
|
|
42875
|
+
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, 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, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, 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, 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, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, 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, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, 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, 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, UserPost, 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 };
|