reach-api-sdk 1.0.205 → 1.0.206
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 +1264 -258
- package/dist/reach-sdk.js +867 -213
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +4085 -1614
- package/src/index.ts +14 -0
- package/src/models/CustomFieldDataType.ts +22 -0
- package/src/models/CustomFieldDefinition.ts +100 -0
- package/src/models/CustomFieldDefinitionPage.ts +12 -0
- package/src/models/CustomFieldDefinitionPatch.ts +84 -0
- package/src/models/CustomFieldDefinitionPost.ts +80 -0
- package/src/models/CustomFieldDefinitionWithValue.ts +82 -0
- package/src/models/CustomFieldOption.ts +50 -0
- package/src/models/CustomFieldOptionDto.ts +14 -0
- package/src/models/CustomFieldOptionPost.ts +18 -0
- package/src/models/CustomFieldValueEntityType.ts +13 -0
- package/src/models/CustomFieldValueUpdate.ts +18 -0
- package/src/models/CustomFieldsBulkUpdate.ts +16 -0
- package/src/models/UpdateCustomFieldOption.ts +26 -0
- package/src/services/CoursesService.ts +63 -0
- package/src/services/CustomFieldsService.ts +780 -0
- package/src/services/PublicCoursesService.ts +36 -0
- package/src/services/PublicSessionsService.ts +36 -0
- package/src/services/PublicVenuesService.ts +36 -0
- package/src/services/SessionsService.ts +63 -0
- package/src/services/VenuesService.ts +63 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -8485,6 +8485,133 @@ declare enum CourseSearchSortBy {
|
|
|
8485
8485
|
START_DATE_TIME = "StartDateTime"
|
|
8486
8486
|
}
|
|
8487
8487
|
|
|
8488
|
+
/**
|
|
8489
|
+
* Controls the data type for custom field definitions.
|
|
8490
|
+
*/
|
|
8491
|
+
declare enum CustomFieldDataType {
|
|
8492
|
+
TEXT = "Text",
|
|
8493
|
+
MULTI_LINE_TEXT = "MultiLineText",
|
|
8494
|
+
NUMBER = "Number",
|
|
8495
|
+
DECIMAL = "Decimal",
|
|
8496
|
+
BOOL = "Bool",
|
|
8497
|
+
DATE = "Date",
|
|
8498
|
+
DATE_TIME = "DateTime",
|
|
8499
|
+
URL = "Url",
|
|
8500
|
+
EMAIL = "Email",
|
|
8501
|
+
PHONE = "Phone",
|
|
8502
|
+
SINGLE_SELECT = "SingleSelect",
|
|
8503
|
+
MULTI_SELECT = "MultiSelect"
|
|
8504
|
+
}
|
|
8505
|
+
|
|
8506
|
+
/**
|
|
8507
|
+
* Represents a custom field option DTO.
|
|
8508
|
+
*/
|
|
8509
|
+
type CustomFieldOptionDto = {
|
|
8510
|
+
/**
|
|
8511
|
+
* Gets or sets the option label.
|
|
8512
|
+
*/
|
|
8513
|
+
label?: string | null;
|
|
8514
|
+
};
|
|
8515
|
+
|
|
8516
|
+
/**
|
|
8517
|
+
* Represents a custom field definition with its current value for editing.
|
|
8518
|
+
*/
|
|
8519
|
+
type CustomFieldDefinitionWithValue = {
|
|
8520
|
+
/**
|
|
8521
|
+
* Gets or sets the tenant id.
|
|
8522
|
+
*/
|
|
8523
|
+
tenantId?: string;
|
|
8524
|
+
/**
|
|
8525
|
+
* Gets or sets the definition id.
|
|
8526
|
+
*/
|
|
8527
|
+
definitionId?: string | null;
|
|
8528
|
+
/**
|
|
8529
|
+
* Gets or sets the custom field label.
|
|
8530
|
+
*/
|
|
8531
|
+
label?: string | null;
|
|
8532
|
+
/**
|
|
8533
|
+
* Gets or sets the custom field description.
|
|
8534
|
+
*/
|
|
8535
|
+
description?: string | null;
|
|
8536
|
+
dataType?: CustomFieldDataType;
|
|
8537
|
+
/**
|
|
8538
|
+
* Gets or sets a value indicating whether the field is required.
|
|
8539
|
+
*/
|
|
8540
|
+
required?: boolean | null;
|
|
8541
|
+
/**
|
|
8542
|
+
* Gets or sets a value indicating whether the field has public visibility.
|
|
8543
|
+
*/
|
|
8544
|
+
publicVisibility?: boolean | null;
|
|
8545
|
+
/**
|
|
8546
|
+
* Gets or sets the display order.
|
|
8547
|
+
*/
|
|
8548
|
+
displayOrder?: number | null;
|
|
8549
|
+
/**
|
|
8550
|
+
* Gets or sets the validation JSON.
|
|
8551
|
+
*/
|
|
8552
|
+
validationJson?: string | null;
|
|
8553
|
+
/**
|
|
8554
|
+
* Gets or sets the default text value.
|
|
8555
|
+
*/
|
|
8556
|
+
defaultValueText?: string | null;
|
|
8557
|
+
/**
|
|
8558
|
+
* Gets or sets the default number value.
|
|
8559
|
+
*/
|
|
8560
|
+
defaultValueNumber?: number | null;
|
|
8561
|
+
/**
|
|
8562
|
+
* Gets or sets the default decimal value.
|
|
8563
|
+
*/
|
|
8564
|
+
defaultValueDecimal?: number | null;
|
|
8565
|
+
/**
|
|
8566
|
+
* Gets or sets the default bit value.
|
|
8567
|
+
*/
|
|
8568
|
+
defaultValueBit?: boolean | null;
|
|
8569
|
+
/**
|
|
8570
|
+
* Gets or sets the default date value.
|
|
8571
|
+
*/
|
|
8572
|
+
defaultValueDate?: string | null;
|
|
8573
|
+
/**
|
|
8574
|
+
* Gets or sets the default datetimeoffset value.
|
|
8575
|
+
*/
|
|
8576
|
+
defaultValueDatetimeoffset?: string | null;
|
|
8577
|
+
/**
|
|
8578
|
+
* Gets or sets the default JSON value.
|
|
8579
|
+
*/
|
|
8580
|
+
defaultValueJson?: string | null;
|
|
8581
|
+
/**
|
|
8582
|
+
* Gets or sets the options for select types.
|
|
8583
|
+
*/
|
|
8584
|
+
options?: Array<CustomFieldOptionDto> | null;
|
|
8585
|
+
/**
|
|
8586
|
+
* Gets or sets the current value (can be text, number, decimal, bit, date, datetimeoffset, or json).
|
|
8587
|
+
*/
|
|
8588
|
+
value?: any;
|
|
8589
|
+
};
|
|
8590
|
+
|
|
8591
|
+
/**
|
|
8592
|
+
* Represents a single custom field value update.
|
|
8593
|
+
*/
|
|
8594
|
+
type CustomFieldValueUpdate = {
|
|
8595
|
+
/**
|
|
8596
|
+
* Gets or sets the custom field definition id.
|
|
8597
|
+
*/
|
|
8598
|
+
definitionId?: string;
|
|
8599
|
+
/**
|
|
8600
|
+
* Gets or sets the value to set.
|
|
8601
|
+
*/
|
|
8602
|
+
value?: any;
|
|
8603
|
+
};
|
|
8604
|
+
|
|
8605
|
+
/**
|
|
8606
|
+
* Represents a bulk update request for custom fields.
|
|
8607
|
+
*/
|
|
8608
|
+
type CustomFieldsBulkUpdate = {
|
|
8609
|
+
/**
|
|
8610
|
+
* Gets or sets the list of custom field values to update.
|
|
8611
|
+
*/
|
|
8612
|
+
values?: Array<CustomFieldValueUpdate> | null;
|
|
8613
|
+
};
|
|
8614
|
+
|
|
8488
8615
|
declare class CoursesService {
|
|
8489
8616
|
readonly httpRequest: BaseHttpRequest;
|
|
8490
8617
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -8663,6 +8790,32 @@ declare class CoursesService {
|
|
|
8663
8790
|
*/
|
|
8664
8791
|
id: string;
|
|
8665
8792
|
}): CancelablePromise<Course>;
|
|
8793
|
+
/**
|
|
8794
|
+
* Gets custom field definitions with their current values for a course.
|
|
8795
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
8796
|
+
* @throws ApiError
|
|
8797
|
+
*/
|
|
8798
|
+
getCustomFields({ courseId, }: {
|
|
8799
|
+
/**
|
|
8800
|
+
* The course id.
|
|
8801
|
+
*/
|
|
8802
|
+
courseId: string;
|
|
8803
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
8804
|
+
/**
|
|
8805
|
+
* Bulk updates custom field values for a course.
|
|
8806
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
8807
|
+
* @throws ApiError
|
|
8808
|
+
*/
|
|
8809
|
+
bulkUpdateCustomFields({ courseId, requestBody, }: {
|
|
8810
|
+
/**
|
|
8811
|
+
* The course id.
|
|
8812
|
+
*/
|
|
8813
|
+
courseId: string;
|
|
8814
|
+
/**
|
|
8815
|
+
* The bulk update request containing all custom field values.
|
|
8816
|
+
*/
|
|
8817
|
+
requestBody?: CustomFieldsBulkUpdate;
|
|
8818
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
8666
8819
|
/**
|
|
8667
8820
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
8668
8821
|
* @returns Course OK
|
|
@@ -11742,41 +11895,796 @@ declare class CustomersService {
|
|
|
11742
11895
|
* Gets or sets the sort order direction.
|
|
11743
11896
|
*/
|
|
11744
11897
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
11745
|
-
}): CancelablePromise<Array<Customer>>;
|
|
11898
|
+
}): CancelablePromise<Array<Customer>>;
|
|
11899
|
+
/**
|
|
11900
|
+
* Gets a list of resources.
|
|
11901
|
+
* @returns Customer OK
|
|
11902
|
+
* @throws ApiError
|
|
11903
|
+
*/
|
|
11904
|
+
getListIdName({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11905
|
+
/**
|
|
11906
|
+
* Gets or sets the wildcard for use in a query search.
|
|
11907
|
+
*/
|
|
11908
|
+
wildcard?: string;
|
|
11909
|
+
/**
|
|
11910
|
+
* Gets or sets the customers email for use in a query search.
|
|
11911
|
+
*/
|
|
11912
|
+
displayEmail?: string;
|
|
11913
|
+
/**
|
|
11914
|
+
* Gets or sets the venue id for use in a query search.
|
|
11915
|
+
*/
|
|
11916
|
+
venueId?: string;
|
|
11917
|
+
/**
|
|
11918
|
+
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11919
|
+
*/
|
|
11920
|
+
programmeId?: string;
|
|
11921
|
+
/**
|
|
11922
|
+
* Gets or sets if the customer is marketing opted in or out.
|
|
11923
|
+
*/
|
|
11924
|
+
marketingOptIn?: boolean;
|
|
11925
|
+
/**
|
|
11926
|
+
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
11927
|
+
*/
|
|
11928
|
+
isActiveCustomer?: boolean;
|
|
11929
|
+
/**
|
|
11930
|
+
* Gets or sets the customers end user identity id.
|
|
11931
|
+
*/
|
|
11932
|
+
endUserIdentityId?: string;
|
|
11933
|
+
/**
|
|
11934
|
+
* Gets or sets the page number for paged queries.
|
|
11935
|
+
*/
|
|
11936
|
+
pageNumber?: number;
|
|
11937
|
+
/**
|
|
11938
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11939
|
+
*/
|
|
11940
|
+
take?: number;
|
|
11941
|
+
/**
|
|
11942
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
11943
|
+
*/
|
|
11944
|
+
skip?: number;
|
|
11945
|
+
/**
|
|
11946
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11947
|
+
*/
|
|
11948
|
+
limitListRequests?: boolean;
|
|
11949
|
+
/**
|
|
11950
|
+
* Gets or sets the Tenant Id.
|
|
11951
|
+
*/
|
|
11952
|
+
tenantId?: string;
|
|
11953
|
+
/**
|
|
11954
|
+
* Gets or sets the Modifed By Id.
|
|
11955
|
+
*/
|
|
11956
|
+
modifiedById?: string;
|
|
11957
|
+
/**
|
|
11958
|
+
* Gets or sets the Modifed By Ids.
|
|
11959
|
+
*/
|
|
11960
|
+
modifiedByIds?: Array<string>;
|
|
11961
|
+
/**
|
|
11962
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11963
|
+
*/
|
|
11964
|
+
dateCreatedGte?: string;
|
|
11965
|
+
/**
|
|
11966
|
+
* Gets or sets the Date Created less than equal to.
|
|
11967
|
+
*/
|
|
11968
|
+
dateCreatedLte?: string;
|
|
11969
|
+
/**
|
|
11970
|
+
* Gets or sets the queryable only is live status.
|
|
11971
|
+
*/
|
|
11972
|
+
isLive?: boolean;
|
|
11973
|
+
/**
|
|
11974
|
+
* Gets or sets the sort order direction.
|
|
11975
|
+
*/
|
|
11976
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11977
|
+
}): CancelablePromise<Array<Customer>>;
|
|
11978
|
+
}
|
|
11979
|
+
|
|
11980
|
+
/**
|
|
11981
|
+
* Represents a custom field option within the Reach application.
|
|
11982
|
+
*/
|
|
11983
|
+
type CustomFieldOption = {
|
|
11984
|
+
/**
|
|
11985
|
+
* Gets or sets the entities Id.
|
|
11986
|
+
*/
|
|
11987
|
+
id?: string;
|
|
11988
|
+
/**
|
|
11989
|
+
* Gets or sets the tenant Id.
|
|
11990
|
+
*/
|
|
11991
|
+
tenantId: string;
|
|
11992
|
+
/**
|
|
11993
|
+
* Gets or sets the created date of this entity.
|
|
11994
|
+
*/
|
|
11995
|
+
dateCreated: string;
|
|
11996
|
+
/**
|
|
11997
|
+
* Gets or sets the last modified date of this entity.
|
|
11998
|
+
*/
|
|
11999
|
+
dateModified: string;
|
|
12000
|
+
/**
|
|
12001
|
+
* Gets or sets the modified by Id.
|
|
12002
|
+
*/
|
|
12003
|
+
modifiedById?: string | null;
|
|
12004
|
+
/**
|
|
12005
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
12006
|
+
*/
|
|
12007
|
+
isLive: boolean;
|
|
12008
|
+
/**
|
|
12009
|
+
* Gets or sets the custom field definition id.
|
|
12010
|
+
*/
|
|
12011
|
+
customFieldDefinitionId?: string | null;
|
|
12012
|
+
/**
|
|
12013
|
+
* Gets or sets the option label.
|
|
12014
|
+
*/
|
|
12015
|
+
label?: string | null;
|
|
12016
|
+
/**
|
|
12017
|
+
* Gets or sets the display order.
|
|
12018
|
+
*/
|
|
12019
|
+
displayOrder?: number | null;
|
|
12020
|
+
/**
|
|
12021
|
+
* Gets or sets a value indicating whether the option is archived.
|
|
12022
|
+
*/
|
|
12023
|
+
archived?: boolean | null;
|
|
12024
|
+
};
|
|
12025
|
+
|
|
12026
|
+
/**
|
|
12027
|
+
* Controls the entity type for custom field values.
|
|
12028
|
+
*/
|
|
12029
|
+
declare enum CustomFieldValueEntityType {
|
|
12030
|
+
VENUE = "Venue",
|
|
12031
|
+
COURSE = "Course",
|
|
12032
|
+
SESSION = "Session"
|
|
12033
|
+
}
|
|
12034
|
+
|
|
12035
|
+
/**
|
|
12036
|
+
* Represents a custom field definition within the Reach application.
|
|
12037
|
+
*/
|
|
12038
|
+
type CustomFieldDefinition = {
|
|
12039
|
+
/**
|
|
12040
|
+
* Gets or sets the entities Id.
|
|
12041
|
+
*/
|
|
12042
|
+
id?: string;
|
|
12043
|
+
/**
|
|
12044
|
+
* Gets or sets the tenant Id.
|
|
12045
|
+
*/
|
|
12046
|
+
tenantId: string;
|
|
12047
|
+
/**
|
|
12048
|
+
* Gets or sets the created date of this entity.
|
|
12049
|
+
*/
|
|
12050
|
+
dateCreated: string;
|
|
12051
|
+
/**
|
|
12052
|
+
* Gets or sets the last modified date of this entity.
|
|
12053
|
+
*/
|
|
12054
|
+
dateModified: string;
|
|
12055
|
+
/**
|
|
12056
|
+
* Gets or sets the modified by Id.
|
|
12057
|
+
*/
|
|
12058
|
+
modifiedById?: string | null;
|
|
12059
|
+
/**
|
|
12060
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
12061
|
+
*/
|
|
12062
|
+
isLive: boolean;
|
|
12063
|
+
entityType?: CustomFieldValueEntityType;
|
|
12064
|
+
/**
|
|
12065
|
+
* Gets or sets the custom field label.
|
|
12066
|
+
*/
|
|
12067
|
+
label?: string | null;
|
|
12068
|
+
/**
|
|
12069
|
+
* Gets or sets the custom field description.
|
|
12070
|
+
*/
|
|
12071
|
+
description?: string | null;
|
|
12072
|
+
dataType?: CustomFieldDataType;
|
|
12073
|
+
/**
|
|
12074
|
+
* Gets or sets a value indicating whether the field is required.
|
|
12075
|
+
*/
|
|
12076
|
+
required?: boolean | null;
|
|
12077
|
+
/**
|
|
12078
|
+
* Gets or sets a value indicating whether the field has public visibility.
|
|
12079
|
+
*/
|
|
12080
|
+
publicVisibility?: boolean | null;
|
|
12081
|
+
/**
|
|
12082
|
+
* Gets or sets the display order.
|
|
12083
|
+
*/
|
|
12084
|
+
displayOrder?: number | null;
|
|
12085
|
+
/**
|
|
12086
|
+
* Gets or sets a value indicating whether the field is archived.
|
|
12087
|
+
*/
|
|
12088
|
+
archived?: boolean | null;
|
|
12089
|
+
/**
|
|
12090
|
+
* Gets or sets the validation JSON (min/max/regex etc).
|
|
12091
|
+
*/
|
|
12092
|
+
validationJson?: string | null;
|
|
12093
|
+
/**
|
|
12094
|
+
* Gets or sets the default text value.
|
|
12095
|
+
*/
|
|
12096
|
+
defaultValueText?: string | null;
|
|
12097
|
+
/**
|
|
12098
|
+
* Gets or sets the default number value.
|
|
12099
|
+
*/
|
|
12100
|
+
defaultValueNumber?: number | null;
|
|
12101
|
+
/**
|
|
12102
|
+
* Gets or sets the default decimal value.
|
|
12103
|
+
*/
|
|
12104
|
+
defaultValueDecimal?: number | null;
|
|
12105
|
+
/**
|
|
12106
|
+
* Gets or sets the default bit value.
|
|
12107
|
+
*/
|
|
12108
|
+
defaultValueBit?: boolean | null;
|
|
12109
|
+
/**
|
|
12110
|
+
* Gets or sets the default date value.
|
|
12111
|
+
*/
|
|
12112
|
+
defaultValueDate?: string | null;
|
|
12113
|
+
/**
|
|
12114
|
+
* Gets or sets the default datetimeoffset value.
|
|
12115
|
+
*/
|
|
12116
|
+
defaultValueDatetimeoffset?: string | null;
|
|
12117
|
+
/**
|
|
12118
|
+
* Gets or sets the default JSON value.
|
|
12119
|
+
*/
|
|
12120
|
+
defaultValueJson?: string | null;
|
|
12121
|
+
/**
|
|
12122
|
+
* Gets or sets the options for this custom field definition.
|
|
12123
|
+
*/
|
|
12124
|
+
options?: Array<CustomFieldOption> | null;
|
|
12125
|
+
};
|
|
12126
|
+
|
|
12127
|
+
type CustomFieldDefinitionPage = {
|
|
12128
|
+
pagination: Pagination;
|
|
12129
|
+
readonly items: Array<CustomFieldDefinition>;
|
|
12130
|
+
};
|
|
12131
|
+
|
|
12132
|
+
/**
|
|
12133
|
+
* Patch model for custom field options.
|
|
12134
|
+
*/
|
|
12135
|
+
type UpdateCustomFieldOption = {
|
|
12136
|
+
/**
|
|
12137
|
+
* Gets or sets the option id.
|
|
12138
|
+
*/
|
|
12139
|
+
id?: string | null;
|
|
12140
|
+
/**
|
|
12141
|
+
* Gets or sets the option label.
|
|
12142
|
+
*/
|
|
12143
|
+
label?: string | null;
|
|
12144
|
+
/**
|
|
12145
|
+
* Gets or sets the display order.
|
|
12146
|
+
*/
|
|
12147
|
+
displayOrder?: number | null;
|
|
12148
|
+
/**
|
|
12149
|
+
* Gets or sets a value indicating whether the option is archived.
|
|
12150
|
+
*/
|
|
12151
|
+
archived?: boolean | null;
|
|
12152
|
+
};
|
|
12153
|
+
|
|
12154
|
+
/**
|
|
12155
|
+
* Patch model for the custom field definition.
|
|
12156
|
+
*/
|
|
12157
|
+
type CustomFieldDefinitionPatch = {
|
|
12158
|
+
/**
|
|
12159
|
+
* Gets or sets the tenant Id.
|
|
12160
|
+
*/
|
|
12161
|
+
tenantId: string;
|
|
12162
|
+
/**
|
|
12163
|
+
* Gets or sets the Id.
|
|
12164
|
+
*/
|
|
12165
|
+
id: string;
|
|
12166
|
+
entityType?: CustomFieldValueEntityType;
|
|
12167
|
+
/**
|
|
12168
|
+
* Gets or sets the custom field label.
|
|
12169
|
+
*/
|
|
12170
|
+
label?: string | null;
|
|
12171
|
+
/**
|
|
12172
|
+
* Gets or sets the custom field description.
|
|
12173
|
+
*/
|
|
12174
|
+
description?: string | null;
|
|
12175
|
+
dataType?: CustomFieldDataType;
|
|
12176
|
+
/**
|
|
12177
|
+
* Gets or sets a value indicating whether the field is required.
|
|
12178
|
+
*/
|
|
12179
|
+
required?: boolean | null;
|
|
12180
|
+
/**
|
|
12181
|
+
* Gets or sets a value indicating whether the field has public visibility.
|
|
12182
|
+
*/
|
|
12183
|
+
publicVisibility?: boolean | null;
|
|
12184
|
+
/**
|
|
12185
|
+
* Gets or sets the display order.
|
|
12186
|
+
*/
|
|
12187
|
+
displayOrder?: number | null;
|
|
12188
|
+
/**
|
|
12189
|
+
* Gets or sets the validation JSON.
|
|
12190
|
+
*/
|
|
12191
|
+
validationJson?: string | null;
|
|
12192
|
+
/**
|
|
12193
|
+
* Gets or sets the default text value.
|
|
12194
|
+
*/
|
|
12195
|
+
defaultValueText?: string | null;
|
|
12196
|
+
/**
|
|
12197
|
+
* Gets or sets the default number value.
|
|
12198
|
+
*/
|
|
12199
|
+
defaultValueNumber?: number | null;
|
|
12200
|
+
/**
|
|
12201
|
+
* Gets or sets the default decimal value.
|
|
12202
|
+
*/
|
|
12203
|
+
defaultValueDecimal?: number | null;
|
|
12204
|
+
/**
|
|
12205
|
+
* Gets or sets the default bit value.
|
|
12206
|
+
*/
|
|
12207
|
+
defaultValueBit?: boolean | null;
|
|
12208
|
+
/**
|
|
12209
|
+
* Gets or sets the default date value.
|
|
12210
|
+
*/
|
|
12211
|
+
defaultValueDate?: string | null;
|
|
12212
|
+
/**
|
|
12213
|
+
* Gets or sets the default datetimeoffset value.
|
|
12214
|
+
*/
|
|
12215
|
+
defaultValueDatetimeoffset?: string | null;
|
|
12216
|
+
/**
|
|
12217
|
+
* Gets or sets the default JSON value.
|
|
12218
|
+
*/
|
|
12219
|
+
defaultValueJson?: string | null;
|
|
12220
|
+
/**
|
|
12221
|
+
* Gets or sets a value indicating whether the field is archived.
|
|
12222
|
+
*/
|
|
12223
|
+
archived?: boolean | null;
|
|
12224
|
+
/**
|
|
12225
|
+
* Gets or sets the custom field options.
|
|
12226
|
+
*/
|
|
12227
|
+
options?: Array<UpdateCustomFieldOption> | null;
|
|
12228
|
+
};
|
|
12229
|
+
|
|
12230
|
+
/**
|
|
12231
|
+
* Post model for the custom field option.
|
|
12232
|
+
*/
|
|
12233
|
+
type CustomFieldOptionPost = {
|
|
12234
|
+
/**
|
|
12235
|
+
* Gets or sets the option label.
|
|
12236
|
+
*/
|
|
12237
|
+
label?: string | null;
|
|
12238
|
+
/**
|
|
12239
|
+
* Gets or sets the display order.
|
|
12240
|
+
*/
|
|
12241
|
+
displayOrder?: number | null;
|
|
12242
|
+
};
|
|
12243
|
+
|
|
12244
|
+
/**
|
|
12245
|
+
* Post model for the custom field definition.
|
|
12246
|
+
*/
|
|
12247
|
+
type CustomFieldDefinitionPost = {
|
|
12248
|
+
/**
|
|
12249
|
+
* Gets or sets the tenant Id.
|
|
12250
|
+
*/
|
|
12251
|
+
tenantId: string;
|
|
12252
|
+
entityType?: CustomFieldValueEntityType;
|
|
12253
|
+
/**
|
|
12254
|
+
* Gets or sets the custom field label.
|
|
12255
|
+
*/
|
|
12256
|
+
label?: string | null;
|
|
12257
|
+
/**
|
|
12258
|
+
* Gets or sets the custom field description.
|
|
12259
|
+
*/
|
|
12260
|
+
description?: string | null;
|
|
12261
|
+
dataType?: CustomFieldDataType;
|
|
12262
|
+
/**
|
|
12263
|
+
* Gets or sets a value indicating whether the field is required.
|
|
12264
|
+
*/
|
|
12265
|
+
required?: boolean | null;
|
|
12266
|
+
/**
|
|
12267
|
+
* Gets or sets a value indicating whether the field has public visibility.
|
|
12268
|
+
*/
|
|
12269
|
+
publicVisibility?: boolean | null;
|
|
12270
|
+
/**
|
|
12271
|
+
* Gets or sets the display order.
|
|
12272
|
+
*/
|
|
12273
|
+
displayOrder?: number | null;
|
|
12274
|
+
/**
|
|
12275
|
+
* Gets or sets the validation JSON.
|
|
12276
|
+
*/
|
|
12277
|
+
validationJson?: string | null;
|
|
12278
|
+
/**
|
|
12279
|
+
* Gets or sets the default text value.
|
|
12280
|
+
*/
|
|
12281
|
+
defaultValueText?: string | null;
|
|
12282
|
+
/**
|
|
12283
|
+
* Gets or sets the default number value.
|
|
12284
|
+
*/
|
|
12285
|
+
defaultValueNumber?: number | null;
|
|
12286
|
+
/**
|
|
12287
|
+
* Gets or sets the default decimal value.
|
|
12288
|
+
*/
|
|
12289
|
+
defaultValueDecimal?: number | null;
|
|
12290
|
+
/**
|
|
12291
|
+
* Gets or sets the default bit value.
|
|
12292
|
+
*/
|
|
12293
|
+
defaultValueBit?: boolean | null;
|
|
12294
|
+
/**
|
|
12295
|
+
* Gets or sets the default date value.
|
|
12296
|
+
*/
|
|
12297
|
+
defaultValueDate?: string | null;
|
|
12298
|
+
/**
|
|
12299
|
+
* Gets or sets the default datetimeoffset value.
|
|
12300
|
+
*/
|
|
12301
|
+
defaultValueDatetimeoffset?: string | null;
|
|
12302
|
+
/**
|
|
12303
|
+
* Gets or sets the default JSON value.
|
|
12304
|
+
*/
|
|
12305
|
+
defaultValueJson?: string | null;
|
|
12306
|
+
/**
|
|
12307
|
+
* Gets or sets the options for select types.
|
|
12308
|
+
*/
|
|
12309
|
+
options?: Array<CustomFieldOptionPost> | null;
|
|
12310
|
+
/**
|
|
12311
|
+
* Gets or sets a value indicating whether the field is archived.
|
|
12312
|
+
*/
|
|
12313
|
+
archived?: boolean | null;
|
|
12314
|
+
};
|
|
12315
|
+
|
|
12316
|
+
declare class CustomFieldsService {
|
|
12317
|
+
readonly httpRequest: BaseHttpRequest;
|
|
12318
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
12319
|
+
/**
|
|
12320
|
+
* Removes a custom field definition by setting archived to true.
|
|
12321
|
+
* @returns CustomFieldDefinition OK
|
|
12322
|
+
* @throws ApiError
|
|
12323
|
+
*/
|
|
12324
|
+
remove({ id, }: {
|
|
12325
|
+
/**
|
|
12326
|
+
* The custom field definition id.
|
|
12327
|
+
*/
|
|
12328
|
+
id: string;
|
|
12329
|
+
}): CancelablePromise<CustomFieldDefinition>;
|
|
12330
|
+
/**
|
|
12331
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
12332
|
+
* @returns CustomFieldDefinition OK
|
|
12333
|
+
* @throws ApiError
|
|
12334
|
+
*/
|
|
12335
|
+
post({ requestBody, }: {
|
|
12336
|
+
/**
|
|
12337
|
+
* The <typeparamref name="TObject" /> model.
|
|
12338
|
+
*/
|
|
12339
|
+
requestBody?: CustomFieldDefinitionPost;
|
|
12340
|
+
}): CancelablePromise<CustomFieldDefinition>;
|
|
12341
|
+
/**
|
|
12342
|
+
* Patches the resource.
|
|
12343
|
+
* @returns CustomFieldDefinition OK
|
|
12344
|
+
* @throws ApiError
|
|
12345
|
+
*/
|
|
12346
|
+
patch({ requestBody, }: {
|
|
12347
|
+
/**
|
|
12348
|
+
* The <typeparamref name="TObject" /> model.
|
|
12349
|
+
*/
|
|
12350
|
+
requestBody?: CustomFieldDefinitionPatch;
|
|
12351
|
+
}): CancelablePromise<CustomFieldDefinition>;
|
|
12352
|
+
/**
|
|
12353
|
+
* Inserts a list of resources.
|
|
12354
|
+
* @returns CustomFieldDefinition OK
|
|
12355
|
+
* @throws ApiError
|
|
12356
|
+
*/
|
|
12357
|
+
postList({ requestBody, }: {
|
|
12358
|
+
/**
|
|
12359
|
+
* The list of <typeparamref name="TObject" />.
|
|
12360
|
+
*/
|
|
12361
|
+
requestBody?: Array<CustomFieldDefinitionPost>;
|
|
12362
|
+
}): CancelablePromise<Array<CustomFieldDefinition>>;
|
|
12363
|
+
/**
|
|
12364
|
+
* Patches the resource.
|
|
12365
|
+
* @returns CustomFieldDefinition OK
|
|
12366
|
+
* @throws ApiError
|
|
12367
|
+
*/
|
|
12368
|
+
patchWithReferences({ requestBody, }: {
|
|
12369
|
+
/**
|
|
12370
|
+
* The <typeparamref name="TObject" /> model.
|
|
12371
|
+
*/
|
|
12372
|
+
requestBody?: CustomFieldDefinitionPatch;
|
|
12373
|
+
}): CancelablePromise<CustomFieldDefinition>;
|
|
12374
|
+
/**
|
|
12375
|
+
* Deletes the resource.
|
|
12376
|
+
* @returns any OK
|
|
12377
|
+
* @throws ApiError
|
|
12378
|
+
*/
|
|
12379
|
+
deleteByObject({ requestBody, }: {
|
|
12380
|
+
/**
|
|
12381
|
+
* The <typeparamref name="TObject" /> model.
|
|
12382
|
+
*/
|
|
12383
|
+
requestBody?: CustomFieldDefinition;
|
|
12384
|
+
}): CancelablePromise<any>;
|
|
12385
|
+
/**
|
|
12386
|
+
* Gets a list of resources.
|
|
12387
|
+
* @returns CustomFieldDefinitionPage OK
|
|
12388
|
+
* @throws ApiError
|
|
12389
|
+
*/
|
|
12390
|
+
getPage({ ids, entityType, archived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12391
|
+
/**
|
|
12392
|
+
* Gets or sets the queryable custom field definition ids.
|
|
12393
|
+
*/
|
|
12394
|
+
ids?: Array<string>;
|
|
12395
|
+
/**
|
|
12396
|
+
* Gets or sets the queryable entity type.
|
|
12397
|
+
*/
|
|
12398
|
+
entityType?: CustomFieldValueEntityType;
|
|
12399
|
+
/**
|
|
12400
|
+
* Gets or sets the queryable archived value.
|
|
12401
|
+
*/
|
|
12402
|
+
archived?: boolean;
|
|
12403
|
+
/**
|
|
12404
|
+
* Gets or sets the page number for paged queries.
|
|
12405
|
+
*/
|
|
12406
|
+
pageNumber?: number;
|
|
12407
|
+
/**
|
|
12408
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12409
|
+
*/
|
|
12410
|
+
take?: number;
|
|
12411
|
+
/**
|
|
12412
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
12413
|
+
*/
|
|
12414
|
+
skip?: number;
|
|
12415
|
+
/**
|
|
12416
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12417
|
+
*/
|
|
12418
|
+
limitListRequests?: boolean;
|
|
12419
|
+
/**
|
|
12420
|
+
* Gets or sets the Tenant Id.
|
|
12421
|
+
*/
|
|
12422
|
+
tenantId?: string;
|
|
12423
|
+
/**
|
|
12424
|
+
* Gets or sets the Modifed By Id.
|
|
12425
|
+
*/
|
|
12426
|
+
modifiedById?: string;
|
|
12427
|
+
/**
|
|
12428
|
+
* Gets or sets the Modifed By Ids.
|
|
12429
|
+
*/
|
|
12430
|
+
modifiedByIds?: Array<string>;
|
|
12431
|
+
/**
|
|
12432
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12433
|
+
*/
|
|
12434
|
+
dateCreatedGte?: string;
|
|
12435
|
+
/**
|
|
12436
|
+
* Gets or sets the Date Created less than equal to.
|
|
12437
|
+
*/
|
|
12438
|
+
dateCreatedLte?: string;
|
|
12439
|
+
/**
|
|
12440
|
+
* Gets or sets the queryable only is live status.
|
|
12441
|
+
*/
|
|
12442
|
+
isLive?: boolean;
|
|
12443
|
+
/**
|
|
12444
|
+
* Gets or sets the sort order direction.
|
|
12445
|
+
*/
|
|
12446
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12447
|
+
}): CancelablePromise<CustomFieldDefinitionPage>;
|
|
12448
|
+
/**
|
|
12449
|
+
* Deletes the resource.
|
|
12450
|
+
* @returns any OK
|
|
12451
|
+
* @throws ApiError
|
|
12452
|
+
*/
|
|
12453
|
+
deleteById({ id, }: {
|
|
12454
|
+
/**
|
|
12455
|
+
* The <typeparamref name="TObject" /> id.
|
|
12456
|
+
*/
|
|
12457
|
+
id: string;
|
|
12458
|
+
}): CancelablePromise<any>;
|
|
12459
|
+
/**
|
|
12460
|
+
* Gets the resource by its Id.
|
|
12461
|
+
* @returns CustomFieldDefinition OK
|
|
12462
|
+
* @throws ApiError
|
|
12463
|
+
*/
|
|
12464
|
+
getObject({ id, }: {
|
|
12465
|
+
/**
|
|
12466
|
+
* The <typeparamref name="TObject" /> id.
|
|
12467
|
+
*/
|
|
12468
|
+
id: string;
|
|
12469
|
+
}): CancelablePromise<CustomFieldDefinition>;
|
|
12470
|
+
/**
|
|
12471
|
+
* Returns a value indicating whether the resource is deletable.
|
|
12472
|
+
* @returns boolean OK
|
|
12473
|
+
* @throws ApiError
|
|
12474
|
+
*/
|
|
12475
|
+
canDelete({ id, }: {
|
|
12476
|
+
/**
|
|
12477
|
+
* The <typeparamref name="TObject" /> id.
|
|
12478
|
+
*/
|
|
12479
|
+
id: string;
|
|
12480
|
+
}): CancelablePromise<boolean>;
|
|
12481
|
+
/**
|
|
12482
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
12483
|
+
* @returns boolean OK
|
|
12484
|
+
* @throws ApiError
|
|
12485
|
+
*/
|
|
12486
|
+
exists({ ids, entityType, archived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12487
|
+
/**
|
|
12488
|
+
* Gets or sets the queryable custom field definition ids.
|
|
12489
|
+
*/
|
|
12490
|
+
ids?: Array<string>;
|
|
12491
|
+
/**
|
|
12492
|
+
* Gets or sets the queryable entity type.
|
|
12493
|
+
*/
|
|
12494
|
+
entityType?: CustomFieldValueEntityType;
|
|
12495
|
+
/**
|
|
12496
|
+
* Gets or sets the queryable archived value.
|
|
12497
|
+
*/
|
|
12498
|
+
archived?: boolean;
|
|
12499
|
+
/**
|
|
12500
|
+
* Gets or sets the page number for paged queries.
|
|
12501
|
+
*/
|
|
12502
|
+
pageNumber?: number;
|
|
12503
|
+
/**
|
|
12504
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12505
|
+
*/
|
|
12506
|
+
take?: number;
|
|
12507
|
+
/**
|
|
12508
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
12509
|
+
*/
|
|
12510
|
+
skip?: number;
|
|
12511
|
+
/**
|
|
12512
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12513
|
+
*/
|
|
12514
|
+
limitListRequests?: boolean;
|
|
12515
|
+
/**
|
|
12516
|
+
* Gets or sets the Tenant Id.
|
|
12517
|
+
*/
|
|
12518
|
+
tenantId?: string;
|
|
12519
|
+
/**
|
|
12520
|
+
* Gets or sets the Modifed By Id.
|
|
12521
|
+
*/
|
|
12522
|
+
modifiedById?: string;
|
|
12523
|
+
/**
|
|
12524
|
+
* Gets or sets the Modifed By Ids.
|
|
12525
|
+
*/
|
|
12526
|
+
modifiedByIds?: Array<string>;
|
|
12527
|
+
/**
|
|
12528
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12529
|
+
*/
|
|
12530
|
+
dateCreatedGte?: string;
|
|
12531
|
+
/**
|
|
12532
|
+
* Gets or sets the Date Created less than equal to.
|
|
12533
|
+
*/
|
|
12534
|
+
dateCreatedLte?: string;
|
|
12535
|
+
/**
|
|
12536
|
+
* Gets or sets the queryable only is live status.
|
|
12537
|
+
*/
|
|
12538
|
+
isLive?: boolean;
|
|
12539
|
+
/**
|
|
12540
|
+
* Gets or sets the sort order direction.
|
|
12541
|
+
*/
|
|
12542
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12543
|
+
}): CancelablePromise<boolean>;
|
|
12544
|
+
/**
|
|
12545
|
+
* Returns the number of results in the database given the provided search params.
|
|
12546
|
+
* @returns number OK
|
|
12547
|
+
* @throws ApiError
|
|
12548
|
+
*/
|
|
12549
|
+
count({ ids, entityType, archived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12550
|
+
/**
|
|
12551
|
+
* Gets or sets the queryable custom field definition ids.
|
|
12552
|
+
*/
|
|
12553
|
+
ids?: Array<string>;
|
|
12554
|
+
/**
|
|
12555
|
+
* Gets or sets the queryable entity type.
|
|
12556
|
+
*/
|
|
12557
|
+
entityType?: CustomFieldValueEntityType;
|
|
12558
|
+
/**
|
|
12559
|
+
* Gets or sets the queryable archived value.
|
|
12560
|
+
*/
|
|
12561
|
+
archived?: boolean;
|
|
12562
|
+
/**
|
|
12563
|
+
* Gets or sets the page number for paged queries.
|
|
12564
|
+
*/
|
|
12565
|
+
pageNumber?: number;
|
|
12566
|
+
/**
|
|
12567
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12568
|
+
*/
|
|
12569
|
+
take?: number;
|
|
12570
|
+
/**
|
|
12571
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
12572
|
+
*/
|
|
12573
|
+
skip?: number;
|
|
12574
|
+
/**
|
|
12575
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12576
|
+
*/
|
|
12577
|
+
limitListRequests?: boolean;
|
|
12578
|
+
/**
|
|
12579
|
+
* Gets or sets the Tenant Id.
|
|
12580
|
+
*/
|
|
12581
|
+
tenantId?: string;
|
|
12582
|
+
/**
|
|
12583
|
+
* Gets or sets the Modifed By Id.
|
|
12584
|
+
*/
|
|
12585
|
+
modifiedById?: string;
|
|
12586
|
+
/**
|
|
12587
|
+
* Gets or sets the Modifed By Ids.
|
|
12588
|
+
*/
|
|
12589
|
+
modifiedByIds?: Array<string>;
|
|
12590
|
+
/**
|
|
12591
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12592
|
+
*/
|
|
12593
|
+
dateCreatedGte?: string;
|
|
12594
|
+
/**
|
|
12595
|
+
* Gets or sets the Date Created less than equal to.
|
|
12596
|
+
*/
|
|
12597
|
+
dateCreatedLte?: string;
|
|
12598
|
+
/**
|
|
12599
|
+
* Gets or sets the queryable only is live status.
|
|
12600
|
+
*/
|
|
12601
|
+
isLive?: boolean;
|
|
12602
|
+
/**
|
|
12603
|
+
* Gets or sets the sort order direction.
|
|
12604
|
+
*/
|
|
12605
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12606
|
+
}): CancelablePromise<number>;
|
|
12607
|
+
/**
|
|
12608
|
+
* Gets a list of resources unpaged and without references.
|
|
12609
|
+
* @returns CustomFieldDefinition OK
|
|
12610
|
+
* @throws ApiError
|
|
12611
|
+
*/
|
|
12612
|
+
getListWithoutReferences({ ids, entityType, archived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12613
|
+
/**
|
|
12614
|
+
* Gets or sets the queryable custom field definition ids.
|
|
12615
|
+
*/
|
|
12616
|
+
ids?: Array<string>;
|
|
12617
|
+
/**
|
|
12618
|
+
* Gets or sets the queryable entity type.
|
|
12619
|
+
*/
|
|
12620
|
+
entityType?: CustomFieldValueEntityType;
|
|
12621
|
+
/**
|
|
12622
|
+
* Gets or sets the queryable archived value.
|
|
12623
|
+
*/
|
|
12624
|
+
archived?: boolean;
|
|
12625
|
+
/**
|
|
12626
|
+
* Gets or sets the page number for paged queries.
|
|
12627
|
+
*/
|
|
12628
|
+
pageNumber?: number;
|
|
12629
|
+
/**
|
|
12630
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12631
|
+
*/
|
|
12632
|
+
take?: number;
|
|
12633
|
+
/**
|
|
12634
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
12635
|
+
*/
|
|
12636
|
+
skip?: number;
|
|
12637
|
+
/**
|
|
12638
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12639
|
+
*/
|
|
12640
|
+
limitListRequests?: boolean;
|
|
12641
|
+
/**
|
|
12642
|
+
* Gets or sets the Tenant Id.
|
|
12643
|
+
*/
|
|
12644
|
+
tenantId?: string;
|
|
12645
|
+
/**
|
|
12646
|
+
* Gets or sets the Modifed By Id.
|
|
12647
|
+
*/
|
|
12648
|
+
modifiedById?: string;
|
|
12649
|
+
/**
|
|
12650
|
+
* Gets or sets the Modifed By Ids.
|
|
12651
|
+
*/
|
|
12652
|
+
modifiedByIds?: Array<string>;
|
|
12653
|
+
/**
|
|
12654
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12655
|
+
*/
|
|
12656
|
+
dateCreatedGte?: string;
|
|
12657
|
+
/**
|
|
12658
|
+
* Gets or sets the Date Created less than equal to.
|
|
12659
|
+
*/
|
|
12660
|
+
dateCreatedLte?: string;
|
|
12661
|
+
/**
|
|
12662
|
+
* Gets or sets the queryable only is live status.
|
|
12663
|
+
*/
|
|
12664
|
+
isLive?: boolean;
|
|
12665
|
+
/**
|
|
12666
|
+
* Gets or sets the sort order direction.
|
|
12667
|
+
*/
|
|
12668
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12669
|
+
}): CancelablePromise<Array<CustomFieldDefinition>>;
|
|
11746
12670
|
/**
|
|
11747
12671
|
* Gets a list of resources.
|
|
11748
|
-
* @returns
|
|
12672
|
+
* @returns CustomFieldDefinition OK
|
|
11749
12673
|
* @throws ApiError
|
|
11750
12674
|
*/
|
|
11751
|
-
getListIdName({
|
|
12675
|
+
getListIdName({ ids, entityType, archived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11752
12676
|
/**
|
|
11753
|
-
* Gets or sets the
|
|
12677
|
+
* Gets or sets the queryable custom field definition ids.
|
|
11754
12678
|
*/
|
|
11755
|
-
|
|
11756
|
-
/**
|
|
11757
|
-
* Gets or sets the customers email for use in a query search.
|
|
11758
|
-
*/
|
|
11759
|
-
displayEmail?: string;
|
|
11760
|
-
/**
|
|
11761
|
-
* Gets or sets the venue id for use in a query search.
|
|
11762
|
-
*/
|
|
11763
|
-
venueId?: string;
|
|
11764
|
-
/**
|
|
11765
|
-
* Gets or sets the programme id for use in a query search - filtering for customers who have touch points with the programme.
|
|
11766
|
-
*/
|
|
11767
|
-
programmeId?: string;
|
|
11768
|
-
/**
|
|
11769
|
-
* Gets or sets if the customer is marketing opted in or out.
|
|
11770
|
-
*/
|
|
11771
|
-
marketingOptIn?: boolean;
|
|
12679
|
+
ids?: Array<string>;
|
|
11772
12680
|
/**
|
|
11773
|
-
* Gets or sets
|
|
12681
|
+
* Gets or sets the queryable entity type.
|
|
11774
12682
|
*/
|
|
11775
|
-
|
|
12683
|
+
entityType?: CustomFieldValueEntityType;
|
|
11776
12684
|
/**
|
|
11777
|
-
* Gets or sets the
|
|
12685
|
+
* Gets or sets the queryable archived value.
|
|
11778
12686
|
*/
|
|
11779
|
-
|
|
12687
|
+
archived?: boolean;
|
|
11780
12688
|
/**
|
|
11781
12689
|
* Gets or sets the page number for paged queries.
|
|
11782
12690
|
*/
|
|
@@ -11821,7 +12729,7 @@ declare class CustomersService {
|
|
|
11821
12729
|
* Gets or sets the sort order direction.
|
|
11822
12730
|
*/
|
|
11823
12731
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
11824
|
-
}): CancelablePromise<Array<
|
|
12732
|
+
}): CancelablePromise<Array<CustomFieldDefinition>>;
|
|
11825
12733
|
}
|
|
11826
12734
|
|
|
11827
12735
|
/**
|
|
@@ -31306,257 +32214,272 @@ declare class PublicBookingService {
|
|
|
31306
32214
|
* Gets or sets the sort order direction.
|
|
31307
32215
|
*/
|
|
31308
32216
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
31309
|
-
}): CancelablePromise<boolean>;
|
|
31310
|
-
}
|
|
31311
|
-
|
|
31312
|
-
declare class PublicCalendarService {
|
|
31313
|
-
readonly httpRequest: BaseHttpRequest;
|
|
31314
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
32217
|
+
}): CancelablePromise<boolean>;
|
|
32218
|
+
}
|
|
32219
|
+
|
|
32220
|
+
declare class PublicCalendarService {
|
|
32221
|
+
readonly httpRequest: BaseHttpRequest;
|
|
32222
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
32223
|
+
/**
|
|
32224
|
+
* Gets calendar data.
|
|
32225
|
+
* @returns any OK
|
|
32226
|
+
* @throws ApiError
|
|
32227
|
+
*/
|
|
32228
|
+
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, }: {
|
|
32229
|
+
/**
|
|
32230
|
+
* The tenants subdomain.
|
|
32231
|
+
*/
|
|
32232
|
+
xTenantSubdomain?: string;
|
|
32233
|
+
/**
|
|
32234
|
+
* Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
32235
|
+
*/
|
|
32236
|
+
startDateTimeGte?: string;
|
|
32237
|
+
/**
|
|
32238
|
+
* Gets or sets the venue Id for use in a query search.
|
|
32239
|
+
*/
|
|
32240
|
+
venueId?: string;
|
|
32241
|
+
/**
|
|
32242
|
+
* Gets or sets the programme Id for use in a query search.
|
|
32243
|
+
*/
|
|
32244
|
+
programmeId?: string;
|
|
32245
|
+
}): CancelablePromise<any>;
|
|
32246
|
+
}
|
|
32247
|
+
|
|
32248
|
+
declare class PublicCoursesService {
|
|
32249
|
+
readonly httpRequest: BaseHttpRequest;
|
|
32250
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
32251
|
+
/**
|
|
32252
|
+
* @returns Course OK
|
|
32253
|
+
* @throws ApiError
|
|
32254
|
+
*/
|
|
32255
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
32256
|
+
id: string;
|
|
32257
|
+
xTenantSubdomain?: string;
|
|
32258
|
+
}): CancelablePromise<Course>;
|
|
32259
|
+
/**
|
|
32260
|
+
* Deletes the resource.
|
|
32261
|
+
* @returns any OK
|
|
32262
|
+
* @throws ApiError
|
|
32263
|
+
*/
|
|
32264
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
32265
|
+
/**
|
|
32266
|
+
* The <typeparamref name="TObject" /> id.
|
|
32267
|
+
*/
|
|
32268
|
+
id: string;
|
|
32269
|
+
/**
|
|
32270
|
+
* The tenants subdomain.
|
|
32271
|
+
*/
|
|
32272
|
+
xTenantSubdomain?: string;
|
|
32273
|
+
}): CancelablePromise<any>;
|
|
32274
|
+
/**
|
|
32275
|
+
* @returns CoursePage OK
|
|
32276
|
+
* @throws ApiError
|
|
32277
|
+
*/
|
|
32278
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32279
|
+
xTenantSubdomain?: string;
|
|
32280
|
+
/**
|
|
32281
|
+
* Gets or sets the queryable Course Id.
|
|
32282
|
+
*/
|
|
32283
|
+
id?: string;
|
|
32284
|
+
/**
|
|
32285
|
+
* Gets or sets the queryable course ids.
|
|
32286
|
+
*/
|
|
32287
|
+
ids?: Array<string>;
|
|
32288
|
+
/**
|
|
32289
|
+
* Gets or sets the queryable Venue Id.
|
|
32290
|
+
*/
|
|
32291
|
+
venueId?: string;
|
|
32292
|
+
/**
|
|
32293
|
+
* Gets or sets the queryable Programme Id.
|
|
32294
|
+
*/
|
|
32295
|
+
programmeId?: string;
|
|
32296
|
+
/**
|
|
32297
|
+
* Gets or sets the queryable Survey Id.
|
|
32298
|
+
*/
|
|
32299
|
+
surveyId?: string;
|
|
32300
|
+
/**
|
|
32301
|
+
* Gets or sets the queryable Cancellation policy Id.
|
|
32302
|
+
*/
|
|
32303
|
+
cancellationPolicyId?: string;
|
|
32304
|
+
/**
|
|
32305
|
+
* Gets or sets the queryable Payment policy Id.
|
|
32306
|
+
*/
|
|
32307
|
+
paymentPolicyId?: string;
|
|
32308
|
+
/**
|
|
32309
|
+
* Gets or sets a value indicating whether to include templatable courses.
|
|
32310
|
+
*/
|
|
32311
|
+
allowTemplating?: boolean;
|
|
32312
|
+
/**
|
|
32313
|
+
* Gets or sets a value indicating whether to include archived courses.
|
|
32314
|
+
*/
|
|
32315
|
+
archived?: boolean;
|
|
32316
|
+
/**
|
|
32317
|
+
* Gets or sets a value indicating whether to include deleted courses.
|
|
32318
|
+
*/
|
|
32319
|
+
deleted?: boolean;
|
|
32320
|
+
/**
|
|
32321
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
32322
|
+
*/
|
|
32323
|
+
openActiveUpdate?: boolean;
|
|
32324
|
+
/**
|
|
32325
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
32326
|
+
*/
|
|
32327
|
+
dashboardRequest?: boolean;
|
|
32328
|
+
/**
|
|
32329
|
+
* Gets or sets the queryable booking status.
|
|
32330
|
+
*/
|
|
32331
|
+
bookingStatus?: BookingStatus;
|
|
32332
|
+
/**
|
|
32333
|
+
* Gets or sets the queryable scheduled session start date time is less than or equal to.
|
|
32334
|
+
*/
|
|
32335
|
+
startDateTimeLte?: string;
|
|
32336
|
+
/**
|
|
32337
|
+
* Gets or sets the queryable scheduled session start date time is greater than or equal to.
|
|
32338
|
+
*/
|
|
32339
|
+
startDateTimeGte?: string;
|
|
32340
|
+
/**
|
|
32341
|
+
* Gets or sets the queryable scheduled session end date time is less than or equal to.
|
|
32342
|
+
*/
|
|
32343
|
+
endDateTimeLte?: string;
|
|
32344
|
+
/**
|
|
32345
|
+
* Gets or sets the queryable scheduled session end date time is greater than or equal to.
|
|
32346
|
+
*/
|
|
32347
|
+
endDateTimeGte?: string;
|
|
32348
|
+
/**
|
|
32349
|
+
* Gets or sets the queryable slot remaining uses is less than or equal to.
|
|
32350
|
+
*/
|
|
32351
|
+
remainingUsesLte?: number;
|
|
32352
|
+
/**
|
|
32353
|
+
* Gets or sets the queryable slot remaining uses is greater than or equal to.
|
|
32354
|
+
*/
|
|
32355
|
+
remainingUsesGte?: number;
|
|
32356
|
+
/**
|
|
32357
|
+
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
32358
|
+
*/
|
|
32359
|
+
futureOnly?: boolean;
|
|
32360
|
+
/**
|
|
32361
|
+
* Gets or sets a value indicating whether return online courses.
|
|
32362
|
+
*/
|
|
32363
|
+
online?: boolean;
|
|
32364
|
+
/**
|
|
32365
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
32366
|
+
*/
|
|
32367
|
+
featured?: boolean;
|
|
32368
|
+
/**
|
|
32369
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
32370
|
+
*/
|
|
32371
|
+
_private?: boolean;
|
|
32372
|
+
/**
|
|
32373
|
+
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
32374
|
+
*/
|
|
32375
|
+
hasAvailability?: boolean;
|
|
32376
|
+
/**
|
|
32377
|
+
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
32378
|
+
*/
|
|
32379
|
+
orderFirstNameContains?: string;
|
|
32380
|
+
/**
|
|
32381
|
+
* Gets or sets a value indicating whether the scheduled session has an order where the orders last name contains the given value.
|
|
32382
|
+
*/
|
|
32383
|
+
orderLastNameContains?: string;
|
|
32384
|
+
/**
|
|
32385
|
+
* Gets or sets which field to sort by.
|
|
32386
|
+
*/
|
|
32387
|
+
sortBy?: CourseSearchSortBy;
|
|
32388
|
+
/**
|
|
32389
|
+
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
32390
|
+
*/
|
|
32391
|
+
postCompletionEmailSent?: boolean;
|
|
32392
|
+
/**
|
|
32393
|
+
* Gets or sets SearchGeoCenter.
|
|
32394
|
+
*/
|
|
32395
|
+
searchGeoCenter?: string;
|
|
32396
|
+
/**
|
|
32397
|
+
* Gets or sets Distance.
|
|
32398
|
+
*/
|
|
32399
|
+
distance?: number;
|
|
32400
|
+
/**
|
|
32401
|
+
* Gets or sets the queryable course template field permissions Id.
|
|
32402
|
+
*/
|
|
32403
|
+
templateFieldPermissionsId?: string;
|
|
32404
|
+
/**
|
|
32405
|
+
* Gets or sets the queryable course template field permission ids.
|
|
32406
|
+
*/
|
|
32407
|
+
templateFieldPermissionsIds?: Array<string>;
|
|
32408
|
+
/**
|
|
32409
|
+
* Gets or sets the page number for paged queries.
|
|
32410
|
+
*/
|
|
32411
|
+
pageNumber?: number;
|
|
32412
|
+
/**
|
|
32413
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
32414
|
+
*/
|
|
32415
|
+
take?: number;
|
|
32416
|
+
/**
|
|
32417
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
32418
|
+
*/
|
|
32419
|
+
skip?: number;
|
|
32420
|
+
/**
|
|
32421
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
32422
|
+
*/
|
|
32423
|
+
limitListRequests?: boolean;
|
|
32424
|
+
/**
|
|
32425
|
+
* Gets or sets the Tenant Id.
|
|
32426
|
+
*/
|
|
32427
|
+
tenantId?: string;
|
|
32428
|
+
/**
|
|
32429
|
+
* Gets or sets the Modifed By Id.
|
|
32430
|
+
*/
|
|
32431
|
+
modifiedById?: string;
|
|
32432
|
+
/**
|
|
32433
|
+
* Gets or sets the Modifed By Ids.
|
|
32434
|
+
*/
|
|
32435
|
+
modifiedByIds?: Array<string>;
|
|
32436
|
+
/**
|
|
32437
|
+
* Gets or sets the Date Created greater than equal to.
|
|
32438
|
+
*/
|
|
32439
|
+
dateCreatedGte?: string;
|
|
32440
|
+
/**
|
|
32441
|
+
* Gets or sets the Date Created less than equal to.
|
|
32442
|
+
*/
|
|
32443
|
+
dateCreatedLte?: string;
|
|
32444
|
+
/**
|
|
32445
|
+
* Gets or sets the queryable only is live status.
|
|
32446
|
+
*/
|
|
32447
|
+
isLive?: boolean;
|
|
32448
|
+
/**
|
|
32449
|
+
* Gets or sets the sort order direction.
|
|
32450
|
+
*/
|
|
32451
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
32452
|
+
}): CancelablePromise<CoursePage>;
|
|
31315
32453
|
/**
|
|
31316
|
-
*
|
|
32454
|
+
* Deletes the resource.
|
|
31317
32455
|
* @returns any OK
|
|
31318
32456
|
* @throws ApiError
|
|
31319
32457
|
*/
|
|
31320
|
-
|
|
32458
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
31321
32459
|
/**
|
|
31322
32460
|
* The tenants subdomain.
|
|
31323
32461
|
*/
|
|
31324
32462
|
xTenantSubdomain?: string;
|
|
31325
32463
|
/**
|
|
31326
|
-
*
|
|
31327
|
-
*/
|
|
31328
|
-
startDateTimeGte?: string;
|
|
31329
|
-
/**
|
|
31330
|
-
* Gets or sets the venue Id for use in a query search.
|
|
31331
|
-
*/
|
|
31332
|
-
venueId?: string;
|
|
31333
|
-
/**
|
|
31334
|
-
* Gets or sets the programme Id for use in a query search.
|
|
31335
|
-
*/
|
|
31336
|
-
programmeId?: string;
|
|
31337
|
-
}): CancelablePromise<any>;
|
|
31338
|
-
}
|
|
31339
|
-
|
|
31340
|
-
declare class PublicCoursesService {
|
|
31341
|
-
readonly httpRequest: BaseHttpRequest;
|
|
31342
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
31343
|
-
/**
|
|
31344
|
-
* @returns Course OK
|
|
31345
|
-
* @throws ApiError
|
|
31346
|
-
*/
|
|
31347
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
31348
|
-
id: string;
|
|
31349
|
-
xTenantSubdomain?: string;
|
|
31350
|
-
}): CancelablePromise<Course>;
|
|
31351
|
-
/**
|
|
31352
|
-
* Deletes the resource.
|
|
31353
|
-
* @returns any OK
|
|
31354
|
-
* @throws ApiError
|
|
31355
|
-
*/
|
|
31356
|
-
deleteById({ id, xTenantSubdomain, }: {
|
|
31357
|
-
/**
|
|
31358
|
-
* The <typeparamref name="TObject" /> id.
|
|
31359
|
-
*/
|
|
31360
|
-
id: string;
|
|
31361
|
-
/**
|
|
31362
|
-
* The tenants subdomain.
|
|
32464
|
+
* The <typeparamref name="TObject" /> model.
|
|
31363
32465
|
*/
|
|
31364
|
-
|
|
32466
|
+
requestBody?: Course;
|
|
31365
32467
|
}): CancelablePromise<any>;
|
|
31366
32468
|
/**
|
|
31367
|
-
*
|
|
32469
|
+
* Gets public custom field definitions with their current values for a course.
|
|
32470
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
31368
32471
|
* @throws ApiError
|
|
31369
32472
|
*/
|
|
31370
|
-
|
|
31371
|
-
xTenantSubdomain?: string;
|
|
31372
|
-
/**
|
|
31373
|
-
* Gets or sets the queryable Course Id.
|
|
31374
|
-
*/
|
|
31375
|
-
id?: string;
|
|
31376
|
-
/**
|
|
31377
|
-
* Gets or sets the queryable course ids.
|
|
31378
|
-
*/
|
|
31379
|
-
ids?: Array<string>;
|
|
31380
|
-
/**
|
|
31381
|
-
* Gets or sets the queryable Venue Id.
|
|
31382
|
-
*/
|
|
31383
|
-
venueId?: string;
|
|
31384
|
-
/**
|
|
31385
|
-
* Gets or sets the queryable Programme Id.
|
|
31386
|
-
*/
|
|
31387
|
-
programmeId?: string;
|
|
31388
|
-
/**
|
|
31389
|
-
* Gets or sets the queryable Survey Id.
|
|
31390
|
-
*/
|
|
31391
|
-
surveyId?: string;
|
|
31392
|
-
/**
|
|
31393
|
-
* Gets or sets the queryable Cancellation policy Id.
|
|
31394
|
-
*/
|
|
31395
|
-
cancellationPolicyId?: string;
|
|
31396
|
-
/**
|
|
31397
|
-
* Gets or sets the queryable Payment policy Id.
|
|
31398
|
-
*/
|
|
31399
|
-
paymentPolicyId?: string;
|
|
31400
|
-
/**
|
|
31401
|
-
* Gets or sets a value indicating whether to include templatable courses.
|
|
31402
|
-
*/
|
|
31403
|
-
allowTemplating?: boolean;
|
|
31404
|
-
/**
|
|
31405
|
-
* Gets or sets a value indicating whether to include archived courses.
|
|
31406
|
-
*/
|
|
31407
|
-
archived?: boolean;
|
|
31408
|
-
/**
|
|
31409
|
-
* Gets or sets a value indicating whether to include deleted courses.
|
|
31410
|
-
*/
|
|
31411
|
-
deleted?: boolean;
|
|
31412
|
-
/**
|
|
31413
|
-
* Gets or sets a value indicating this an openactive reaquest.
|
|
31414
|
-
*/
|
|
31415
|
-
openActiveUpdate?: boolean;
|
|
31416
|
-
/**
|
|
31417
|
-
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
31418
|
-
*/
|
|
31419
|
-
dashboardRequest?: boolean;
|
|
31420
|
-
/**
|
|
31421
|
-
* Gets or sets the queryable booking status.
|
|
31422
|
-
*/
|
|
31423
|
-
bookingStatus?: BookingStatus;
|
|
31424
|
-
/**
|
|
31425
|
-
* Gets or sets the queryable scheduled session start date time is less than or equal to.
|
|
31426
|
-
*/
|
|
31427
|
-
startDateTimeLte?: string;
|
|
31428
|
-
/**
|
|
31429
|
-
* Gets or sets the queryable scheduled session start date time is greater than or equal to.
|
|
31430
|
-
*/
|
|
31431
|
-
startDateTimeGte?: string;
|
|
31432
|
-
/**
|
|
31433
|
-
* Gets or sets the queryable scheduled session end date time is less than or equal to.
|
|
31434
|
-
*/
|
|
31435
|
-
endDateTimeLte?: string;
|
|
31436
|
-
/**
|
|
31437
|
-
* Gets or sets the queryable scheduled session end date time is greater than or equal to.
|
|
31438
|
-
*/
|
|
31439
|
-
endDateTimeGte?: string;
|
|
31440
|
-
/**
|
|
31441
|
-
* Gets or sets the queryable slot remaining uses is less than or equal to.
|
|
31442
|
-
*/
|
|
31443
|
-
remainingUsesLte?: number;
|
|
31444
|
-
/**
|
|
31445
|
-
* Gets or sets the queryable slot remaining uses is greater than or equal to.
|
|
31446
|
-
*/
|
|
31447
|
-
remainingUsesGte?: number;
|
|
31448
|
-
/**
|
|
31449
|
-
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
31450
|
-
*/
|
|
31451
|
-
futureOnly?: boolean;
|
|
31452
|
-
/**
|
|
31453
|
-
* Gets or sets a value indicating whether return online courses.
|
|
31454
|
-
*/
|
|
31455
|
-
online?: boolean;
|
|
31456
|
-
/**
|
|
31457
|
-
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
31458
|
-
*/
|
|
31459
|
-
featured?: boolean;
|
|
31460
|
-
/**
|
|
31461
|
-
* Gets or sets a value indicating whether the session is private or no.
|
|
31462
|
-
*/
|
|
31463
|
-
_private?: boolean;
|
|
31464
|
-
/**
|
|
31465
|
-
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
31466
|
-
*/
|
|
31467
|
-
hasAvailability?: boolean;
|
|
31468
|
-
/**
|
|
31469
|
-
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
31470
|
-
*/
|
|
31471
|
-
orderFirstNameContains?: string;
|
|
31472
|
-
/**
|
|
31473
|
-
* Gets or sets a value indicating whether the scheduled session has an order where the orders last name contains the given value.
|
|
31474
|
-
*/
|
|
31475
|
-
orderLastNameContains?: string;
|
|
31476
|
-
/**
|
|
31477
|
-
* Gets or sets which field to sort by.
|
|
31478
|
-
*/
|
|
31479
|
-
sortBy?: CourseSearchSortBy;
|
|
31480
|
-
/**
|
|
31481
|
-
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
31482
|
-
*/
|
|
31483
|
-
postCompletionEmailSent?: boolean;
|
|
31484
|
-
/**
|
|
31485
|
-
* Gets or sets SearchGeoCenter.
|
|
31486
|
-
*/
|
|
31487
|
-
searchGeoCenter?: string;
|
|
31488
|
-
/**
|
|
31489
|
-
* Gets or sets Distance.
|
|
31490
|
-
*/
|
|
31491
|
-
distance?: number;
|
|
31492
|
-
/**
|
|
31493
|
-
* Gets or sets the queryable course template field permissions Id.
|
|
31494
|
-
*/
|
|
31495
|
-
templateFieldPermissionsId?: string;
|
|
31496
|
-
/**
|
|
31497
|
-
* Gets or sets the queryable course template field permission ids.
|
|
31498
|
-
*/
|
|
31499
|
-
templateFieldPermissionsIds?: Array<string>;
|
|
31500
|
-
/**
|
|
31501
|
-
* Gets or sets the page number for paged queries.
|
|
31502
|
-
*/
|
|
31503
|
-
pageNumber?: number;
|
|
31504
|
-
/**
|
|
31505
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
31506
|
-
*/
|
|
31507
|
-
take?: number;
|
|
31508
|
-
/**
|
|
31509
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
31510
|
-
*/
|
|
31511
|
-
skip?: number;
|
|
31512
|
-
/**
|
|
31513
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
31514
|
-
*/
|
|
31515
|
-
limitListRequests?: boolean;
|
|
31516
|
-
/**
|
|
31517
|
-
* Gets or sets the Tenant Id.
|
|
31518
|
-
*/
|
|
31519
|
-
tenantId?: string;
|
|
31520
|
-
/**
|
|
31521
|
-
* Gets or sets the Modifed By Id.
|
|
31522
|
-
*/
|
|
31523
|
-
modifiedById?: string;
|
|
31524
|
-
/**
|
|
31525
|
-
* Gets or sets the Modifed By Ids.
|
|
31526
|
-
*/
|
|
31527
|
-
modifiedByIds?: Array<string>;
|
|
31528
|
-
/**
|
|
31529
|
-
* Gets or sets the Date Created greater than equal to.
|
|
31530
|
-
*/
|
|
31531
|
-
dateCreatedGte?: string;
|
|
31532
|
-
/**
|
|
31533
|
-
* Gets or sets the Date Created less than equal to.
|
|
31534
|
-
*/
|
|
31535
|
-
dateCreatedLte?: string;
|
|
32473
|
+
getPublicCustomFields({ courseId, xTenantSubdomain, }: {
|
|
31536
32474
|
/**
|
|
31537
|
-
*
|
|
32475
|
+
* The course id.
|
|
31538
32476
|
*/
|
|
31539
|
-
|
|
31540
|
-
/**
|
|
31541
|
-
* Gets or sets the sort order direction.
|
|
31542
|
-
*/
|
|
31543
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
31544
|
-
}): CancelablePromise<CoursePage>;
|
|
31545
|
-
/**
|
|
31546
|
-
* Deletes the resource.
|
|
31547
|
-
* @returns any OK
|
|
31548
|
-
* @throws ApiError
|
|
31549
|
-
*/
|
|
31550
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
32477
|
+
courseId: string;
|
|
31551
32478
|
/**
|
|
31552
32479
|
* The tenants subdomain.
|
|
31553
32480
|
*/
|
|
31554
32481
|
xTenantSubdomain?: string;
|
|
31555
|
-
|
|
31556
|
-
* The <typeparamref name="TObject" /> model.
|
|
31557
|
-
*/
|
|
31558
|
-
requestBody?: Course;
|
|
31559
|
-
}): CancelablePromise<any>;
|
|
32482
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
31560
32483
|
/**
|
|
31561
32484
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
31562
32485
|
* @returns Course OK
|
|
@@ -36849,6 +37772,21 @@ declare class PublicSessionsService {
|
|
|
36849
37772
|
*/
|
|
36850
37773
|
xTenantSubdomain?: string;
|
|
36851
37774
|
}): CancelablePromise<ScheduledSession>;
|
|
37775
|
+
/**
|
|
37776
|
+
* Gets public custom field definitions with their current values for a session.
|
|
37777
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
37778
|
+
* @throws ApiError
|
|
37779
|
+
*/
|
|
37780
|
+
getPublicCustomFields({ sessionId, xTenantSubdomain, }: {
|
|
37781
|
+
/**
|
|
37782
|
+
* The session id.
|
|
37783
|
+
*/
|
|
37784
|
+
sessionId: string;
|
|
37785
|
+
/**
|
|
37786
|
+
* The tenants subdomain.
|
|
37787
|
+
*/
|
|
37788
|
+
xTenantSubdomain?: string;
|
|
37789
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
36852
37790
|
/**
|
|
36853
37791
|
* Returns distinct slot dates without time information.
|
|
36854
37792
|
* @returns any OK
|
|
@@ -40106,6 +41044,21 @@ declare class PublicVenuesService {
|
|
|
40106
41044
|
*/
|
|
40107
41045
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
40108
41046
|
}): CancelablePromise<VenuePage>;
|
|
41047
|
+
/**
|
|
41048
|
+
* Gets public custom field definitions with their current values for a venue.
|
|
41049
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
41050
|
+
* @throws ApiError
|
|
41051
|
+
*/
|
|
41052
|
+
getPublicCustomFields({ venueId, xTenantSubdomain, }: {
|
|
41053
|
+
/**
|
|
41054
|
+
* The venue id.
|
|
41055
|
+
*/
|
|
41056
|
+
venueId: string;
|
|
41057
|
+
/**
|
|
41058
|
+
* The tenants subdomain.
|
|
41059
|
+
*/
|
|
41060
|
+
xTenantSubdomain?: string;
|
|
41061
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
40109
41062
|
/**
|
|
40110
41063
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
40111
41064
|
* @returns Venue OK
|
|
@@ -44825,6 +45778,32 @@ declare class SessionsService {
|
|
|
44825
45778
|
*/
|
|
44826
45779
|
id: string;
|
|
44827
45780
|
}): CancelablePromise<Session>;
|
|
45781
|
+
/**
|
|
45782
|
+
* Gets custom field definitions with their current values for a session.
|
|
45783
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
45784
|
+
* @throws ApiError
|
|
45785
|
+
*/
|
|
45786
|
+
getCustomFields({ sessionId, }: {
|
|
45787
|
+
/**
|
|
45788
|
+
* The session id.
|
|
45789
|
+
*/
|
|
45790
|
+
sessionId: string;
|
|
45791
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
45792
|
+
/**
|
|
45793
|
+
* Bulk updates custom field values for a session.
|
|
45794
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
45795
|
+
* @throws ApiError
|
|
45796
|
+
*/
|
|
45797
|
+
bulkUpdateCustomFields({ sessionId, requestBody, }: {
|
|
45798
|
+
/**
|
|
45799
|
+
* The session id.
|
|
45800
|
+
*/
|
|
45801
|
+
sessionId: string;
|
|
45802
|
+
/**
|
|
45803
|
+
* The bulk update request containing all custom field values.
|
|
45804
|
+
*/
|
|
45805
|
+
requestBody?: CustomFieldsBulkUpdate;
|
|
45806
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
44828
45807
|
/**
|
|
44829
45808
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
44830
45809
|
* @returns Session OK
|
|
@@ -59321,6 +60300,32 @@ declare class VenuesService {
|
|
|
59321
60300
|
* @throws ApiError
|
|
59322
60301
|
*/
|
|
59323
60302
|
generateId(): CancelablePromise<string>;
|
|
60303
|
+
/**
|
|
60304
|
+
* Gets custom field definitions with their current values for a venue.
|
|
60305
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
60306
|
+
* @throws ApiError
|
|
60307
|
+
*/
|
|
60308
|
+
getCustomFields({ venueId, }: {
|
|
60309
|
+
/**
|
|
60310
|
+
* The venue id.
|
|
60311
|
+
*/
|
|
60312
|
+
venueId: string;
|
|
60313
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
60314
|
+
/**
|
|
60315
|
+
* Bulk updates custom field values for a venue.
|
|
60316
|
+
* @returns CustomFieldDefinitionWithValue OK
|
|
60317
|
+
* @throws ApiError
|
|
60318
|
+
*/
|
|
60319
|
+
bulkUpdateCustomFields({ venueId, requestBody, }: {
|
|
60320
|
+
/**
|
|
60321
|
+
* The venue id.
|
|
60322
|
+
*/
|
|
60323
|
+
venueId: string;
|
|
60324
|
+
/**
|
|
60325
|
+
* The bulk update request containing all custom field values.
|
|
60326
|
+
*/
|
|
60327
|
+
requestBody?: CustomFieldsBulkUpdate;
|
|
60328
|
+
}): CancelablePromise<Array<CustomFieldDefinitionWithValue>>;
|
|
59324
60329
|
/**
|
|
59325
60330
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
59326
60331
|
* @returns Venue OK
|
|
@@ -63278,6 +64283,7 @@ declare class ApiClient {
|
|
|
63278
64283
|
readonly courseSessions: CourseSessionsService;
|
|
63279
64284
|
readonly courseSessionSchedules: CourseSessionSchedulesService;
|
|
63280
64285
|
readonly customers: CustomersService;
|
|
64286
|
+
readonly customFields: CustomFieldsService;
|
|
63281
64287
|
readonly dealActivities: DealActivitiesService;
|
|
63282
64288
|
readonly deals: DealsService;
|
|
63283
64289
|
readonly discountCodeUses: DiscountCodeUsesService;
|
|
@@ -63515,4 +64521,4 @@ type ValidationResultModel = {
|
|
|
63515
64521
|
readonly errors?: Array<ValidationError> | null;
|
|
63516
64522
|
};
|
|
63517
64523
|
|
|
63518
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, 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, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, 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, LocationReportSummary, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, 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, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
64524
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, 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, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, 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, LocationReportSummary, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, 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, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|