reach-api-sdk 1.0.138 → 1.0.140
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 +476 -1
- package/dist/reach-sdk.js +414 -1
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +1369 -0
- package/src/index.ts +5 -0
- package/src/models/UserProgramme.ts +42 -0
- package/src/models/UserProgrammePage.ts +12 -0
- package/src/models/UserProgrammePatch.ts +26 -0
- package/src/models/UserProgrammePost.ts +22 -0
- package/src/services/UserProgrammesService.ts +739 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -42807,6 +42807,480 @@ declare class UserPermissionsService {
|
|
|
42807
42807
|
}): CancelablePromise<Array<UserPermission>>;
|
|
42808
42808
|
}
|
|
42809
42809
|
|
|
42810
|
+
/**
|
|
42811
|
+
* Represents a relationship between a programme and a user.
|
|
42812
|
+
*/
|
|
42813
|
+
type UserProgramme = {
|
|
42814
|
+
/**
|
|
42815
|
+
* Gets or sets the entities Id.
|
|
42816
|
+
*/
|
|
42817
|
+
id?: string;
|
|
42818
|
+
/**
|
|
42819
|
+
* Gets or sets the tenant Id.
|
|
42820
|
+
*/
|
|
42821
|
+
tenantId: string;
|
|
42822
|
+
/**
|
|
42823
|
+
* Gets or sets the created date of this entity.
|
|
42824
|
+
*/
|
|
42825
|
+
dateCreated: string;
|
|
42826
|
+
/**
|
|
42827
|
+
* Gets or sets the last modified date of this entity.
|
|
42828
|
+
*/
|
|
42829
|
+
dateModified: string;
|
|
42830
|
+
/**
|
|
42831
|
+
* Gets or sets the modified by Id.
|
|
42832
|
+
*/
|
|
42833
|
+
modifiedById?: string | null;
|
|
42834
|
+
/**
|
|
42835
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
42836
|
+
*/
|
|
42837
|
+
isLive: boolean;
|
|
42838
|
+
/**
|
|
42839
|
+
* Gets or sets the user id.
|
|
42840
|
+
*/
|
|
42841
|
+
userId?: string | null;
|
|
42842
|
+
/**
|
|
42843
|
+
* Gets or sets the programme id.
|
|
42844
|
+
*/
|
|
42845
|
+
programmeId?: string | null;
|
|
42846
|
+
};
|
|
42847
|
+
|
|
42848
|
+
type UserProgrammePage = {
|
|
42849
|
+
pagination: Pagination;
|
|
42850
|
+
readonly items: Array<UserProgramme>;
|
|
42851
|
+
};
|
|
42852
|
+
|
|
42853
|
+
/**
|
|
42854
|
+
* Post model for user programme updates.
|
|
42855
|
+
*/
|
|
42856
|
+
type UserProgrammePatch = {
|
|
42857
|
+
/**
|
|
42858
|
+
* Gets or sets the tenant Id.
|
|
42859
|
+
*/
|
|
42860
|
+
tenantId: string;
|
|
42861
|
+
/**
|
|
42862
|
+
* Gets or sets the Id.
|
|
42863
|
+
*/
|
|
42864
|
+
id: string;
|
|
42865
|
+
/**
|
|
42866
|
+
* Gets or sets the user id.
|
|
42867
|
+
*/
|
|
42868
|
+
userId?: string | null;
|
|
42869
|
+
/**
|
|
42870
|
+
* Gets or sets the programme id.
|
|
42871
|
+
*/
|
|
42872
|
+
programmeId?: string | null;
|
|
42873
|
+
};
|
|
42874
|
+
|
|
42875
|
+
/**
|
|
42876
|
+
* Post model for user programme inserts.
|
|
42877
|
+
*/
|
|
42878
|
+
type UserProgrammePost = {
|
|
42879
|
+
/**
|
|
42880
|
+
* Gets or sets the tenant Id.
|
|
42881
|
+
*/
|
|
42882
|
+
tenantId: string;
|
|
42883
|
+
/**
|
|
42884
|
+
* Gets or sets the user id.
|
|
42885
|
+
*/
|
|
42886
|
+
userId?: string | null;
|
|
42887
|
+
/**
|
|
42888
|
+
* Gets or sets the programme id.
|
|
42889
|
+
*/
|
|
42890
|
+
programmeId?: string | null;
|
|
42891
|
+
};
|
|
42892
|
+
|
|
42893
|
+
declare class UserProgrammesService {
|
|
42894
|
+
readonly httpRequest: BaseHttpRequest;
|
|
42895
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
42896
|
+
/**
|
|
42897
|
+
* Updates the assigned programmes for the user />.
|
|
42898
|
+
* @returns any Success
|
|
42899
|
+
* @throws ApiError
|
|
42900
|
+
*/
|
|
42901
|
+
updateUserProgrammeAssignments({ userId, requestBody, }: {
|
|
42902
|
+
/**
|
|
42903
|
+
* The user Id.
|
|
42904
|
+
*/
|
|
42905
|
+
userId: string;
|
|
42906
|
+
/**
|
|
42907
|
+
* The post model.
|
|
42908
|
+
*/
|
|
42909
|
+
requestBody?: Array<UserProgrammePost>;
|
|
42910
|
+
}): CancelablePromise<any>;
|
|
42911
|
+
/**
|
|
42912
|
+
* Updates the assigned users for the programme />.
|
|
42913
|
+
* @returns any Success
|
|
42914
|
+
* @throws ApiError
|
|
42915
|
+
*/
|
|
42916
|
+
updateProgrammeUserAssignments({ programmeId, requestBody, }: {
|
|
42917
|
+
/**
|
|
42918
|
+
* The programme Id.
|
|
42919
|
+
*/
|
|
42920
|
+
programmeId: string;
|
|
42921
|
+
/**
|
|
42922
|
+
* The post model.
|
|
42923
|
+
*/
|
|
42924
|
+
requestBody?: Array<UserProgrammePost>;
|
|
42925
|
+
}): CancelablePromise<any>;
|
|
42926
|
+
/**
|
|
42927
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
42928
|
+
* @returns UserProgramme Success
|
|
42929
|
+
* @throws ApiError
|
|
42930
|
+
*/
|
|
42931
|
+
post({ requestBody, }: {
|
|
42932
|
+
/**
|
|
42933
|
+
* The <typeparamref name="TObject" /> model.
|
|
42934
|
+
*/
|
|
42935
|
+
requestBody?: UserProgrammePost;
|
|
42936
|
+
}): CancelablePromise<UserProgramme>;
|
|
42937
|
+
/**
|
|
42938
|
+
* Patches the resource.
|
|
42939
|
+
* @returns UserProgramme Success
|
|
42940
|
+
* @throws ApiError
|
|
42941
|
+
*/
|
|
42942
|
+
patch({ requestBody, }: {
|
|
42943
|
+
/**
|
|
42944
|
+
* The <typeparamref name="TObject" /> model.
|
|
42945
|
+
*/
|
|
42946
|
+
requestBody?: UserProgrammePatch;
|
|
42947
|
+
}): CancelablePromise<UserProgramme>;
|
|
42948
|
+
/**
|
|
42949
|
+
* Inserts a list of resources.
|
|
42950
|
+
* @returns UserProgramme Success
|
|
42951
|
+
* @throws ApiError
|
|
42952
|
+
*/
|
|
42953
|
+
postList({ requestBody, }: {
|
|
42954
|
+
/**
|
|
42955
|
+
* The list of <typeparamref name="TObject" />.
|
|
42956
|
+
*/
|
|
42957
|
+
requestBody?: Array<UserProgrammePost>;
|
|
42958
|
+
}): CancelablePromise<Array<UserProgramme>>;
|
|
42959
|
+
/**
|
|
42960
|
+
* Patches the resource.
|
|
42961
|
+
* @returns UserProgramme Success
|
|
42962
|
+
* @throws ApiError
|
|
42963
|
+
*/
|
|
42964
|
+
patchWithReferences({ requestBody, }: {
|
|
42965
|
+
/**
|
|
42966
|
+
* The <typeparamref name="TObject" /> model.
|
|
42967
|
+
*/
|
|
42968
|
+
requestBody?: UserProgrammePatch;
|
|
42969
|
+
}): CancelablePromise<UserProgramme>;
|
|
42970
|
+
/**
|
|
42971
|
+
* Deletes the resource.
|
|
42972
|
+
* @returns any Success
|
|
42973
|
+
* @throws ApiError
|
|
42974
|
+
*/
|
|
42975
|
+
deleteByObject({ requestBody, }: {
|
|
42976
|
+
/**
|
|
42977
|
+
* The <typeparamref name="TObject" /> model.
|
|
42978
|
+
*/
|
|
42979
|
+
requestBody?: UserProgramme;
|
|
42980
|
+
}): CancelablePromise<any>;
|
|
42981
|
+
/**
|
|
42982
|
+
* Gets a list of resources.
|
|
42983
|
+
* @returns UserProgrammePage Success
|
|
42984
|
+
* @throws ApiError
|
|
42985
|
+
*/
|
|
42986
|
+
getPage({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
42987
|
+
/**
|
|
42988
|
+
* Gets or sets the queryable programme id.
|
|
42989
|
+
*/
|
|
42990
|
+
programmeId?: string;
|
|
42991
|
+
/**
|
|
42992
|
+
* Gets or sets the queryable programme ids.
|
|
42993
|
+
*/
|
|
42994
|
+
programmeIds?: Array<string>;
|
|
42995
|
+
/**
|
|
42996
|
+
* Gets or sets the queryable user id.
|
|
42997
|
+
*/
|
|
42998
|
+
userId?: string;
|
|
42999
|
+
/**
|
|
43000
|
+
* Gets or sets the queryable user ids.
|
|
43001
|
+
*/
|
|
43002
|
+
userIds?: Array<string>;
|
|
43003
|
+
/**
|
|
43004
|
+
* Gets or sets the page number for paged queries.
|
|
43005
|
+
*/
|
|
43006
|
+
pageNumber?: number;
|
|
43007
|
+
/**
|
|
43008
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
43009
|
+
*/
|
|
43010
|
+
take?: number;
|
|
43011
|
+
/**
|
|
43012
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
43013
|
+
*/
|
|
43014
|
+
skip?: number;
|
|
43015
|
+
/**
|
|
43016
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
43017
|
+
*/
|
|
43018
|
+
limitListRequests?: boolean;
|
|
43019
|
+
/**
|
|
43020
|
+
* Gets or sets the Tenant Id.
|
|
43021
|
+
*/
|
|
43022
|
+
tenantId?: string;
|
|
43023
|
+
/**
|
|
43024
|
+
* Gets or sets the Modifed By Id.
|
|
43025
|
+
*/
|
|
43026
|
+
modifiedById?: string;
|
|
43027
|
+
/**
|
|
43028
|
+
* Gets or sets the Modifed By Ids.
|
|
43029
|
+
*/
|
|
43030
|
+
modifiedByIds?: Array<string>;
|
|
43031
|
+
/**
|
|
43032
|
+
* Gets or sets the Date Created greater than equal to.
|
|
43033
|
+
*/
|
|
43034
|
+
dateCreatedGte?: string;
|
|
43035
|
+
/**
|
|
43036
|
+
* Gets or sets the Date Created less than equal to.
|
|
43037
|
+
*/
|
|
43038
|
+
dateCreatedLte?: string;
|
|
43039
|
+
/**
|
|
43040
|
+
* Gets or sets the queryable only is live status.
|
|
43041
|
+
*/
|
|
43042
|
+
isLive?: boolean;
|
|
43043
|
+
/**
|
|
43044
|
+
* Gets or sets the sort order direction.
|
|
43045
|
+
*/
|
|
43046
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
43047
|
+
}): CancelablePromise<UserProgrammePage>;
|
|
43048
|
+
/**
|
|
43049
|
+
* Deletes the resource.
|
|
43050
|
+
* @returns any Success
|
|
43051
|
+
* @throws ApiError
|
|
43052
|
+
*/
|
|
43053
|
+
deleteById({ id, }: {
|
|
43054
|
+
/**
|
|
43055
|
+
* The <typeparamref name="TObject" /> id.
|
|
43056
|
+
*/
|
|
43057
|
+
id: string;
|
|
43058
|
+
}): CancelablePromise<any>;
|
|
43059
|
+
/**
|
|
43060
|
+
* Gets the resource by its Id.
|
|
43061
|
+
* @returns UserProgramme Success
|
|
43062
|
+
* @throws ApiError
|
|
43063
|
+
*/
|
|
43064
|
+
getObject({ id, }: {
|
|
43065
|
+
/**
|
|
43066
|
+
* The <typeparamref name="TObject" /> id.
|
|
43067
|
+
*/
|
|
43068
|
+
id: string;
|
|
43069
|
+
}): CancelablePromise<UserProgramme>;
|
|
43070
|
+
/**
|
|
43071
|
+
* Returns a value indicating whether the resource is deletable.
|
|
43072
|
+
* @returns boolean Success
|
|
43073
|
+
* @throws ApiError
|
|
43074
|
+
*/
|
|
43075
|
+
canDelete({ id, }: {
|
|
43076
|
+
/**
|
|
43077
|
+
* The <typeparamref name="TObject" /> id.
|
|
43078
|
+
*/
|
|
43079
|
+
id: string;
|
|
43080
|
+
}): CancelablePromise<boolean>;
|
|
43081
|
+
/**
|
|
43082
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
43083
|
+
* @returns boolean Success
|
|
43084
|
+
* @throws ApiError
|
|
43085
|
+
*/
|
|
43086
|
+
exists({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43087
|
+
/**
|
|
43088
|
+
* Gets or sets the queryable programme id.
|
|
43089
|
+
*/
|
|
43090
|
+
programmeId?: string;
|
|
43091
|
+
/**
|
|
43092
|
+
* Gets or sets the queryable programme ids.
|
|
43093
|
+
*/
|
|
43094
|
+
programmeIds?: Array<string>;
|
|
43095
|
+
/**
|
|
43096
|
+
* Gets or sets the queryable user id.
|
|
43097
|
+
*/
|
|
43098
|
+
userId?: string;
|
|
43099
|
+
/**
|
|
43100
|
+
* Gets or sets the queryable user ids.
|
|
43101
|
+
*/
|
|
43102
|
+
userIds?: Array<string>;
|
|
43103
|
+
/**
|
|
43104
|
+
* Gets or sets the page number for paged queries.
|
|
43105
|
+
*/
|
|
43106
|
+
pageNumber?: number;
|
|
43107
|
+
/**
|
|
43108
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
43109
|
+
*/
|
|
43110
|
+
take?: number;
|
|
43111
|
+
/**
|
|
43112
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
43113
|
+
*/
|
|
43114
|
+
skip?: number;
|
|
43115
|
+
/**
|
|
43116
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
43117
|
+
*/
|
|
43118
|
+
limitListRequests?: boolean;
|
|
43119
|
+
/**
|
|
43120
|
+
* Gets or sets the Tenant Id.
|
|
43121
|
+
*/
|
|
43122
|
+
tenantId?: string;
|
|
43123
|
+
/**
|
|
43124
|
+
* Gets or sets the Modifed By Id.
|
|
43125
|
+
*/
|
|
43126
|
+
modifiedById?: string;
|
|
43127
|
+
/**
|
|
43128
|
+
* Gets or sets the Modifed By Ids.
|
|
43129
|
+
*/
|
|
43130
|
+
modifiedByIds?: Array<string>;
|
|
43131
|
+
/**
|
|
43132
|
+
* Gets or sets the Date Created greater than equal to.
|
|
43133
|
+
*/
|
|
43134
|
+
dateCreatedGte?: string;
|
|
43135
|
+
/**
|
|
43136
|
+
* Gets or sets the Date Created less than equal to.
|
|
43137
|
+
*/
|
|
43138
|
+
dateCreatedLte?: string;
|
|
43139
|
+
/**
|
|
43140
|
+
* Gets or sets the queryable only is live status.
|
|
43141
|
+
*/
|
|
43142
|
+
isLive?: boolean;
|
|
43143
|
+
/**
|
|
43144
|
+
* Gets or sets the sort order direction.
|
|
43145
|
+
*/
|
|
43146
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
43147
|
+
}): CancelablePromise<boolean>;
|
|
43148
|
+
/**
|
|
43149
|
+
* Gets a list of resources unpaged and without references.
|
|
43150
|
+
* @returns UserProgramme Success
|
|
43151
|
+
* @throws ApiError
|
|
43152
|
+
*/
|
|
43153
|
+
getListWithoutReferences({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43154
|
+
/**
|
|
43155
|
+
* Gets or sets the queryable programme id.
|
|
43156
|
+
*/
|
|
43157
|
+
programmeId?: string;
|
|
43158
|
+
/**
|
|
43159
|
+
* Gets or sets the queryable programme ids.
|
|
43160
|
+
*/
|
|
43161
|
+
programmeIds?: Array<string>;
|
|
43162
|
+
/**
|
|
43163
|
+
* Gets or sets the queryable user id.
|
|
43164
|
+
*/
|
|
43165
|
+
userId?: string;
|
|
43166
|
+
/**
|
|
43167
|
+
* Gets or sets the queryable user ids.
|
|
43168
|
+
*/
|
|
43169
|
+
userIds?: Array<string>;
|
|
43170
|
+
/**
|
|
43171
|
+
* Gets or sets the page number for paged queries.
|
|
43172
|
+
*/
|
|
43173
|
+
pageNumber?: number;
|
|
43174
|
+
/**
|
|
43175
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
43176
|
+
*/
|
|
43177
|
+
take?: number;
|
|
43178
|
+
/**
|
|
43179
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
43180
|
+
*/
|
|
43181
|
+
skip?: number;
|
|
43182
|
+
/**
|
|
43183
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
43184
|
+
*/
|
|
43185
|
+
limitListRequests?: boolean;
|
|
43186
|
+
/**
|
|
43187
|
+
* Gets or sets the Tenant Id.
|
|
43188
|
+
*/
|
|
43189
|
+
tenantId?: string;
|
|
43190
|
+
/**
|
|
43191
|
+
* Gets or sets the Modifed By Id.
|
|
43192
|
+
*/
|
|
43193
|
+
modifiedById?: string;
|
|
43194
|
+
/**
|
|
43195
|
+
* Gets or sets the Modifed By Ids.
|
|
43196
|
+
*/
|
|
43197
|
+
modifiedByIds?: Array<string>;
|
|
43198
|
+
/**
|
|
43199
|
+
* Gets or sets the Date Created greater than equal to.
|
|
43200
|
+
*/
|
|
43201
|
+
dateCreatedGte?: string;
|
|
43202
|
+
/**
|
|
43203
|
+
* Gets or sets the Date Created less than equal to.
|
|
43204
|
+
*/
|
|
43205
|
+
dateCreatedLte?: string;
|
|
43206
|
+
/**
|
|
43207
|
+
* Gets or sets the queryable only is live status.
|
|
43208
|
+
*/
|
|
43209
|
+
isLive?: boolean;
|
|
43210
|
+
/**
|
|
43211
|
+
* Gets or sets the sort order direction.
|
|
43212
|
+
*/
|
|
43213
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
43214
|
+
}): CancelablePromise<Array<UserProgramme>>;
|
|
43215
|
+
/**
|
|
43216
|
+
* Gets a list of resources.
|
|
43217
|
+
* @returns UserProgramme Success
|
|
43218
|
+
* @throws ApiError
|
|
43219
|
+
*/
|
|
43220
|
+
getListIdName({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43221
|
+
/**
|
|
43222
|
+
* Gets or sets the queryable programme id.
|
|
43223
|
+
*/
|
|
43224
|
+
programmeId?: string;
|
|
43225
|
+
/**
|
|
43226
|
+
* Gets or sets the queryable programme ids.
|
|
43227
|
+
*/
|
|
43228
|
+
programmeIds?: Array<string>;
|
|
43229
|
+
/**
|
|
43230
|
+
* Gets or sets the queryable user id.
|
|
43231
|
+
*/
|
|
43232
|
+
userId?: string;
|
|
43233
|
+
/**
|
|
43234
|
+
* Gets or sets the queryable user ids.
|
|
43235
|
+
*/
|
|
43236
|
+
userIds?: Array<string>;
|
|
43237
|
+
/**
|
|
43238
|
+
* Gets or sets the page number for paged queries.
|
|
43239
|
+
*/
|
|
43240
|
+
pageNumber?: number;
|
|
43241
|
+
/**
|
|
43242
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
43243
|
+
*/
|
|
43244
|
+
take?: number;
|
|
43245
|
+
/**
|
|
43246
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
43247
|
+
*/
|
|
43248
|
+
skip?: number;
|
|
43249
|
+
/**
|
|
43250
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
43251
|
+
*/
|
|
43252
|
+
limitListRequests?: boolean;
|
|
43253
|
+
/**
|
|
43254
|
+
* Gets or sets the Tenant Id.
|
|
43255
|
+
*/
|
|
43256
|
+
tenantId?: string;
|
|
43257
|
+
/**
|
|
43258
|
+
* Gets or sets the Modifed By Id.
|
|
43259
|
+
*/
|
|
43260
|
+
modifiedById?: string;
|
|
43261
|
+
/**
|
|
43262
|
+
* Gets or sets the Modifed By Ids.
|
|
43263
|
+
*/
|
|
43264
|
+
modifiedByIds?: Array<string>;
|
|
43265
|
+
/**
|
|
43266
|
+
* Gets or sets the Date Created greater than equal to.
|
|
43267
|
+
*/
|
|
43268
|
+
dateCreatedGte?: string;
|
|
43269
|
+
/**
|
|
43270
|
+
* Gets or sets the Date Created less than equal to.
|
|
43271
|
+
*/
|
|
43272
|
+
dateCreatedLte?: string;
|
|
43273
|
+
/**
|
|
43274
|
+
* Gets or sets the queryable only is live status.
|
|
43275
|
+
*/
|
|
43276
|
+
isLive?: boolean;
|
|
43277
|
+
/**
|
|
43278
|
+
* Gets or sets the sort order direction.
|
|
43279
|
+
*/
|
|
43280
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
43281
|
+
}): CancelablePromise<Array<UserProgramme>>;
|
|
43282
|
+
}
|
|
43283
|
+
|
|
42810
43284
|
type UserPage = {
|
|
42811
43285
|
pagination: Pagination;
|
|
42812
43286
|
readonly items: Array<User>;
|
|
@@ -47554,6 +48028,7 @@ declare class ApiClient {
|
|
|
47554
48028
|
readonly totalRevenueReport: TotalRevenueReportService;
|
|
47555
48029
|
readonly unsplash: UnsplashService;
|
|
47556
48030
|
readonly userPermissions: UserPermissionsService;
|
|
48031
|
+
readonly userProgrammes: UserProgrammesService;
|
|
47557
48032
|
readonly users: UsersService;
|
|
47558
48033
|
readonly venueManagers: VenueManagersService;
|
|
47559
48034
|
readonly venuePerformance: VenuePerformanceService;
|
|
@@ -47694,4 +48169,4 @@ type ValidationResultModel = {
|
|
|
47694
48169
|
readonly errors?: Array<ValidationError> | null;
|
|
47695
48170
|
};
|
|
47696
48171
|
|
|
47697
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, 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 };
|
|
48172
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, 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 };
|