@opencloud-eu/web-client 3.1.0 → 4.0.0
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/functions-DP8s29Wg.cjs +1 -0
- package/dist/functions-DnZZKUk0.js +1183 -0
- package/dist/index-BIL0cW_q.js +1755 -0
- package/dist/index-CcmRJ1qB.cjs +1 -0
- package/dist/index-CiqYiARd.js +688 -0
- package/dist/index-DAa_DzDf.cjs +6 -0
- package/dist/{index-C6VnMvgz.cjs → index-D_NPkUGY.cjs} +1 -1
- package/dist/{index-Pl8khka8.js → index-JHVTaNRI.js} +2 -2
- package/dist/index-YVg9jNP5.cjs +16 -0
- package/dist/{index-DRNBPoWu.js → index-bmR3iLuG.js} +1934 -1953
- package/dist/src/graph/driveItems/types.d.ts +6 -2
- package/dist/src/graph/drives/types.d.ts +9 -2
- package/dist/src/graph/generated/api.d.ts +174 -107
- package/dist/src/helpers/resource/types.d.ts +1 -0
- package/dist/src/helpers/share/constants.d.ts +0 -1
- package/dist/src/helpers/space/types.d.ts +1 -0
- package/dist/src/ocs/capabilities.d.ts +1 -0
- package/dist/src/webdav/constants/dav.d.ts +1 -0
- package/dist/toString-CgHWCW2N.cjs +1 -0
- package/dist/{toString-Cn0xCZ28.js → toString-XlfBosfh.js} +4 -4
- package/dist/web-client/graph/generated.cjs +1 -1
- package/dist/web-client/graph/generated.js +2038 -2099
- package/dist/web-client/graph.cjs +1 -1
- package/dist/web-client/graph.js +1 -1
- package/dist/web-client/ocs.cjs +12 -12
- package/dist/web-client/ocs.js +1889 -1857
- package/dist/web-client/sse.cjs +2 -2
- package/dist/web-client/sse.js +95 -105
- package/dist/web-client/webdav.cjs +1 -1
- package/dist/web-client/webdav.js +3 -3
- package/dist/web-client.cjs +1 -1
- package/dist/web-client.js +82 -82
- package/package.json +3 -3
- package/dist/functions-BCZphZWf.cjs +0 -1
- package/dist/functions-gLZtPuF8.js +0 -1177
- package/dist/index-B0DQP5k7.cjs +0 -1
- package/dist/index-BTGj2rHD.js +0 -1705
- package/dist/index-C-U4KVPG.cjs +0 -6
- package/dist/index-D5plj7J1.cjs +0 -16
- package/dist/index-kED1r0rQ.js +0 -693
- package/dist/toString-hHr716Th.cjs +0 -1
|
@@ -707,6 +707,12 @@ export interface Drive {
|
|
|
707
707
|
* @memberof Drive
|
|
708
708
|
*/
|
|
709
709
|
'special'?: Array<DriveItem>;
|
|
710
|
+
/**
|
|
711
|
+
* Indicates whether the drive has items in the trash. Read-only.
|
|
712
|
+
* @type {boolean}
|
|
713
|
+
* @memberof Drive
|
|
714
|
+
*/
|
|
715
|
+
'@libre.graph.hasTrashedItems'?: boolean;
|
|
710
716
|
}
|
|
711
717
|
/**
|
|
712
718
|
* Represents a resource inside a drive. Read-only.
|
|
@@ -1102,6 +1108,12 @@ export interface DriveUpdate {
|
|
|
1102
1108
|
* @memberof DriveUpdate
|
|
1103
1109
|
*/
|
|
1104
1110
|
'special'?: Array<DriveItem>;
|
|
1111
|
+
/**
|
|
1112
|
+
* Indicates whether the drive has items in the trash. Read-only.
|
|
1113
|
+
* @type {boolean}
|
|
1114
|
+
* @memberof DriveUpdate
|
|
1115
|
+
*/
|
|
1116
|
+
'@libre.graph.hasTrashedItems'?: boolean;
|
|
1105
1117
|
}
|
|
1106
1118
|
/**
|
|
1107
1119
|
* And extension of group representing a class or course
|
|
@@ -2693,7 +2705,7 @@ export declare class ActivitiesApi extends BaseAPI {
|
|
|
2693
2705
|
* @throws {RequiredError}
|
|
2694
2706
|
* @memberof ActivitiesApi
|
|
2695
2707
|
*/
|
|
2696
|
-
getActivities(kql?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfActivities, any>>;
|
|
2708
|
+
getActivities(kql?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfActivities, any, {}>>;
|
|
2697
2709
|
}
|
|
2698
2710
|
/**
|
|
2699
2711
|
* ApplicationsApi - axios parameter creator
|
|
@@ -2773,7 +2785,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
2773
2785
|
* @throws {RequiredError}
|
|
2774
2786
|
* @memberof ApplicationsApi
|
|
2775
2787
|
*/
|
|
2776
|
-
getApplication(applicationId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Application, any>>;
|
|
2788
|
+
getApplication(applicationId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Application, any, {}>>;
|
|
2777
2789
|
/**
|
|
2778
2790
|
*
|
|
2779
2791
|
* @summary Get all applications
|
|
@@ -2781,7 +2793,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
2781
2793
|
* @throws {RequiredError}
|
|
2782
2794
|
* @memberof ApplicationsApi
|
|
2783
2795
|
*/
|
|
2784
|
-
listApplications(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfApplications, any>>;
|
|
2796
|
+
listApplications(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfApplications, any, {}>>;
|
|
2785
2797
|
}
|
|
2786
2798
|
/**
|
|
2787
2799
|
* DriveItemApi - axios parameter creator
|
|
@@ -2901,7 +2913,7 @@ export declare class DriveItemApi extends BaseAPI {
|
|
|
2901
2913
|
* @throws {RequiredError}
|
|
2902
2914
|
* @memberof DriveItemApi
|
|
2903
2915
|
*/
|
|
2904
|
-
deleteDriveItem(driveId: string, itemId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
2916
|
+
deleteDriveItem(driveId: string, itemId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
2905
2917
|
/**
|
|
2906
2918
|
* Get a DriveItem by using its ID.
|
|
2907
2919
|
* @summary Get a DriveItem.
|
|
@@ -2911,7 +2923,7 @@ export declare class DriveItemApi extends BaseAPI {
|
|
|
2911
2923
|
* @throws {RequiredError}
|
|
2912
2924
|
* @memberof DriveItemApi
|
|
2913
2925
|
*/
|
|
2914
|
-
getDriveItem(driveId: string, itemId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any>>;
|
|
2926
|
+
getDriveItem(driveId: string, itemId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any, {}>>;
|
|
2915
2927
|
/**
|
|
2916
2928
|
* Update a DriveItem. The request body must include a JSON object with the properties to update. Only the properties that are provided will be updated. Currently it supports updating the following properties: * `@UI.Hidden` - Hides the item from the UI.
|
|
2917
2929
|
* @summary Update a DriveItem.
|
|
@@ -2922,7 +2934,7 @@ export declare class DriveItemApi extends BaseAPI {
|
|
|
2922
2934
|
* @throws {RequiredError}
|
|
2923
2935
|
* @memberof DriveItemApi
|
|
2924
2936
|
*/
|
|
2925
|
-
updateDriveItem(driveId: string, itemId: string, driveItem: DriveItem, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any>>;
|
|
2937
|
+
updateDriveItem(driveId: string, itemId: string, driveItem: DriveItem, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any, {}>>;
|
|
2926
2938
|
}
|
|
2927
2939
|
/**
|
|
2928
2940
|
* DrivesApi - axios parameter creator
|
|
@@ -2950,10 +2962,11 @@ export declare const DrivesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2950
2962
|
*
|
|
2951
2963
|
* @summary Get drive by id
|
|
2952
2964
|
* @param {string} driveId key: id of drive
|
|
2965
|
+
* @param {Set<GetDriveSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
2953
2966
|
* @param {*} [options] Override http request option.
|
|
2954
2967
|
* @throws {RequiredError}
|
|
2955
2968
|
*/
|
|
2956
|
-
getDrive: (driveId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2969
|
+
getDrive: (driveId: string, $select?: Set<GetDriveSelectEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2957
2970
|
/**
|
|
2958
2971
|
*
|
|
2959
2972
|
* @summary Update the drive
|
|
@@ -2990,10 +3003,11 @@ export declare const DrivesApiFp: (configuration?: Configuration) => {
|
|
|
2990
3003
|
*
|
|
2991
3004
|
* @summary Get drive by id
|
|
2992
3005
|
* @param {string} driveId key: id of drive
|
|
3006
|
+
* @param {Set<GetDriveSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
2993
3007
|
* @param {*} [options] Override http request option.
|
|
2994
3008
|
* @throws {RequiredError}
|
|
2995
3009
|
*/
|
|
2996
|
-
getDrive(driveId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Drive>>;
|
|
3010
|
+
getDrive(driveId: string, $select?: Set<GetDriveSelectEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Drive>>;
|
|
2997
3011
|
/**
|
|
2998
3012
|
*
|
|
2999
3013
|
* @summary Update the drive
|
|
@@ -3030,10 +3044,11 @@ export declare const DrivesApiFactory: (configuration?: Configuration, basePath?
|
|
|
3030
3044
|
*
|
|
3031
3045
|
* @summary Get drive by id
|
|
3032
3046
|
* @param {string} driveId key: id of drive
|
|
3047
|
+
* @param {Set<GetDriveSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3033
3048
|
* @param {*} [options] Override http request option.
|
|
3034
3049
|
* @throws {RequiredError}
|
|
3035
3050
|
*/
|
|
3036
|
-
getDrive(driveId: string, options?: RawAxiosRequestConfig): AxiosPromise<Drive>;
|
|
3051
|
+
getDrive(driveId: string, $select?: Set<GetDriveSelectEnum>, options?: RawAxiosRequestConfig): AxiosPromise<Drive>;
|
|
3037
3052
|
/**
|
|
3038
3053
|
*
|
|
3039
3054
|
* @summary Update the drive
|
|
@@ -3059,7 +3074,7 @@ export declare class DrivesApi extends BaseAPI {
|
|
|
3059
3074
|
* @throws {RequiredError}
|
|
3060
3075
|
* @memberof DrivesApi
|
|
3061
3076
|
*/
|
|
3062
|
-
createDrive(drive: Drive, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any>>;
|
|
3077
|
+
createDrive(drive: Drive, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any, {}>>;
|
|
3063
3078
|
/**
|
|
3064
3079
|
*
|
|
3065
3080
|
* @summary Delete a specific space
|
|
@@ -3069,16 +3084,17 @@ export declare class DrivesApi extends BaseAPI {
|
|
|
3069
3084
|
* @throws {RequiredError}
|
|
3070
3085
|
* @memberof DrivesApi
|
|
3071
3086
|
*/
|
|
3072
|
-
deleteDrive(driveId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
3087
|
+
deleteDrive(driveId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
3073
3088
|
/**
|
|
3074
3089
|
*
|
|
3075
3090
|
* @summary Get drive by id
|
|
3076
3091
|
* @param {string} driveId key: id of drive
|
|
3092
|
+
* @param {Set<GetDriveSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3077
3093
|
* @param {*} [options] Override http request option.
|
|
3078
3094
|
* @throws {RequiredError}
|
|
3079
3095
|
* @memberof DrivesApi
|
|
3080
3096
|
*/
|
|
3081
|
-
getDrive(driveId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any>>;
|
|
3097
|
+
getDrive(driveId: string, $select?: Set<GetDriveSelectEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any, {}>>;
|
|
3082
3098
|
/**
|
|
3083
3099
|
*
|
|
3084
3100
|
* @summary Update the drive
|
|
@@ -3088,8 +3104,15 @@ export declare class DrivesApi extends BaseAPI {
|
|
|
3088
3104
|
* @throws {RequiredError}
|
|
3089
3105
|
* @memberof DrivesApi
|
|
3090
3106
|
*/
|
|
3091
|
-
updateDrive(driveId: string, driveUpdate: DriveUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any>>;
|
|
3107
|
+
updateDrive(driveId: string, driveUpdate: DriveUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any, {}>>;
|
|
3092
3108
|
}
|
|
3109
|
+
/**
|
|
3110
|
+
* @export
|
|
3111
|
+
*/
|
|
3112
|
+
export declare const GetDriveSelectEnum: {
|
|
3113
|
+
readonly LibreGraphHasTrashedItems: "@libre.graph.hasTrashedItems";
|
|
3114
|
+
};
|
|
3115
|
+
export type GetDriveSelectEnum = typeof GetDriveSelectEnum[keyof typeof GetDriveSelectEnum];
|
|
3093
3116
|
/**
|
|
3094
3117
|
* DrivesGetDrivesApi - axios parameter creator
|
|
3095
3118
|
* @export
|
|
@@ -3110,10 +3133,11 @@ export declare const DrivesGetDrivesApiAxiosParamCreator: (configuration?: Confi
|
|
|
3110
3133
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
3111
3134
|
* @param {string} [$filter] Filter items by property values
|
|
3112
3135
|
* @param {string} [$expand] Expand related entities
|
|
3136
|
+
* @param {Set<ListAllDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3113
3137
|
* @param {*} [options] Override http request option.
|
|
3114
3138
|
* @throws {RequiredError}
|
|
3115
3139
|
*/
|
|
3116
|
-
listAllDrivesBeta: ($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3140
|
+
listAllDrivesBeta: ($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListAllDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3117
3141
|
};
|
|
3118
3142
|
/**
|
|
3119
3143
|
* DrivesGetDrivesApi - functional programming interface
|
|
@@ -3135,10 +3159,11 @@ export declare const DrivesGetDrivesApiFp: (configuration?: Configuration) => {
|
|
|
3135
3159
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
3136
3160
|
* @param {string} [$filter] Filter items by property values
|
|
3137
3161
|
* @param {string} [$expand] Expand related entities
|
|
3162
|
+
* @param {Set<ListAllDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3138
3163
|
* @param {*} [options] Override http request option.
|
|
3139
3164
|
* @throws {RequiredError}
|
|
3140
3165
|
*/
|
|
3141
|
-
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDrives1>>;
|
|
3166
|
+
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListAllDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDrives1>>;
|
|
3142
3167
|
};
|
|
3143
3168
|
/**
|
|
3144
3169
|
* DrivesGetDrivesApi - factory interface
|
|
@@ -3160,10 +3185,11 @@ export declare const DrivesGetDrivesApiFactory: (configuration?: Configuration,
|
|
|
3160
3185
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
3161
3186
|
* @param {string} [$filter] Filter items by property values
|
|
3162
3187
|
* @param {string} [$expand] Expand related entities
|
|
3188
|
+
* @param {Set<ListAllDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3163
3189
|
* @param {*} [options] Override http request option.
|
|
3164
3190
|
* @throws {RequiredError}
|
|
3165
3191
|
*/
|
|
3166
|
-
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDrives1>;
|
|
3192
|
+
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListAllDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDrives1>;
|
|
3167
3193
|
};
|
|
3168
3194
|
/**
|
|
3169
3195
|
* DrivesGetDrivesApi - object-oriented interface
|
|
@@ -3181,19 +3207,27 @@ export declare class DrivesGetDrivesApi extends BaseAPI {
|
|
|
3181
3207
|
* @throws {RequiredError}
|
|
3182
3208
|
* @memberof DrivesGetDrivesApi
|
|
3183
3209
|
*/
|
|
3184
|
-
listAllDrives($orderby?: string, $filter?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives1, any>>;
|
|
3210
|
+
listAllDrives($orderby?: string, $filter?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives1, any, {}>>;
|
|
3185
3211
|
/**
|
|
3186
3212
|
*
|
|
3187
3213
|
* @summary Alias for \'/v1.0/drives\', the difference is that grantedtoV2 is used and roles contain unified roles instead of cs3 roles
|
|
3188
3214
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
3189
3215
|
* @param {string} [$filter] Filter items by property values
|
|
3190
3216
|
* @param {string} [$expand] Expand related entities
|
|
3217
|
+
* @param {Set<ListAllDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
3191
3218
|
* @param {*} [options] Override http request option.
|
|
3192
3219
|
* @throws {RequiredError}
|
|
3193
3220
|
* @memberof DrivesGetDrivesApi
|
|
3194
3221
|
*/
|
|
3195
|
-
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives1, any>>;
|
|
3222
|
+
listAllDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListAllDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives1, any, {}>>;
|
|
3196
3223
|
}
|
|
3224
|
+
/**
|
|
3225
|
+
* @export
|
|
3226
|
+
*/
|
|
3227
|
+
export declare const ListAllDrivesBetaSelectEnum: {
|
|
3228
|
+
readonly LibreGraphHasTrashedItems: "@libre.graph.hasTrashedItems";
|
|
3229
|
+
};
|
|
3230
|
+
export type ListAllDrivesBetaSelectEnum = typeof ListAllDrivesBetaSelectEnum[keyof typeof ListAllDrivesBetaSelectEnum];
|
|
3197
3231
|
/**
|
|
3198
3232
|
* DrivesPermissionsApi - axios parameter creator
|
|
3199
3233
|
* @export
|
|
@@ -3454,7 +3488,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3454
3488
|
* @throws {RequiredError}
|
|
3455
3489
|
* @memberof DrivesPermissionsApi
|
|
3456
3490
|
*/
|
|
3457
|
-
createLink(driveId: string, itemId: string, driveItemCreateLink?: DriveItemCreateLink, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3491
|
+
createLink(driveId: string, itemId: string, driveItemCreateLink?: DriveItemCreateLink, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3458
3492
|
/**
|
|
3459
3493
|
* Remove access to a DriveItem. Only sharing permissions that are not inherited can be deleted. The `inheritedFrom` property must be `null`.
|
|
3460
3494
|
* @summary Remove access to a DriveItem
|
|
@@ -3465,7 +3499,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3465
3499
|
* @throws {RequiredError}
|
|
3466
3500
|
* @memberof DrivesPermissionsApi
|
|
3467
3501
|
*/
|
|
3468
|
-
deletePermission(driveId: string, itemId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
3502
|
+
deletePermission(driveId: string, itemId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
3469
3503
|
/**
|
|
3470
3504
|
* Return the effective sharing permission for a particular permission resource.
|
|
3471
3505
|
* @summary Get sharing permission for a file or folder
|
|
@@ -3476,7 +3510,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3476
3510
|
* @throws {RequiredError}
|
|
3477
3511
|
* @memberof DrivesPermissionsApi
|
|
3478
3512
|
*/
|
|
3479
|
-
getPermission(driveId: string, itemId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3513
|
+
getPermission(driveId: string, itemId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3480
3514
|
/**
|
|
3481
3515
|
* Sends a sharing invitation for a `driveItem`. A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. The response will be a permission object with the grantedToV2 property containing the created grant details. ## Roles property values For now, roles are only identified by a uuid. There are no hardcoded aliases like `read` or `write` because role actions can be completely customized.
|
|
3482
3516
|
* @summary Send a sharing invitation
|
|
@@ -3487,7 +3521,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3487
3521
|
* @throws {RequiredError}
|
|
3488
3522
|
* @memberof DrivesPermissionsApi
|
|
3489
3523
|
*/
|
|
3490
|
-
invite(driveId: string, itemId: string, driveItemInvite?: DriveItemInvite, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissions, any>>;
|
|
3524
|
+
invite(driveId: string, itemId: string, driveItemInvite?: DriveItemInvite, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissions, any, {}>>;
|
|
3491
3525
|
/**
|
|
3492
3526
|
* The permissions collection includes potentially sensitive information and may not be available for every caller. * For the owner of the item, all sharing permissions will be returned. This includes co-owners. * For a non-owner caller, only the sharing permissions that apply to the caller are returned. * Sharing permission properties that contain secrets (e.g. `webUrl`) are only returned for callers that are able to create the sharing permission. All permission objects have an `id`. A permission representing * a link has the `link` facet filled with details. * a share has the `roles` property set and the `grantedToV2` property filled with the grant recipient details.
|
|
3493
3527
|
* @summary List the effective sharing permissions on a driveItem.
|
|
@@ -3501,7 +3535,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3501
3535
|
* @throws {RequiredError}
|
|
3502
3536
|
* @memberof DrivesPermissionsApi
|
|
3503
3537
|
*/
|
|
3504
|
-
listPermissions(driveId: string, itemId: string, $filter?: string, $select?: Set<ListPermissionsSelectEnum>, $count?: boolean, $top?: number, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissionsWithAllowedValues, any>>;
|
|
3538
|
+
listPermissions(driveId: string, itemId: string, $filter?: string, $select?: Set<ListPermissionsSelectEnum>, $count?: boolean, $top?: number, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissionsWithAllowedValues, any, {}>>;
|
|
3505
3539
|
/**
|
|
3506
3540
|
* Set the password of a sharing permission. Only the `password` property can be modified this way.
|
|
3507
3541
|
* @summary Set sharing link password
|
|
@@ -3513,7 +3547,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3513
3547
|
* @throws {RequiredError}
|
|
3514
3548
|
* @memberof DrivesPermissionsApi
|
|
3515
3549
|
*/
|
|
3516
|
-
setPermissionPassword(driveId: string, itemId: string, permId: string, sharingLinkPassword: SharingLinkPassword, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3550
|
+
setPermissionPassword(driveId: string, itemId: string, permId: string, sharingLinkPassword: SharingLinkPassword, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3517
3551
|
/**
|
|
3518
3552
|
* Update the properties of a sharing permission by patching the permission resource. Only the `roles`, `expirationDateTime` and `password` properties can be modified this way.
|
|
3519
3553
|
* @summary Update sharing permission
|
|
@@ -3525,7 +3559,7 @@ export declare class DrivesPermissionsApi extends BaseAPI {
|
|
|
3525
3559
|
* @throws {RequiredError}
|
|
3526
3560
|
* @memberof DrivesPermissionsApi
|
|
3527
3561
|
*/
|
|
3528
|
-
updatePermission(driveId: string, itemId: string, permId: string, permission: Permission, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3562
|
+
updatePermission(driveId: string, itemId: string, permId: string, permission: Permission, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3529
3563
|
}
|
|
3530
3564
|
/**
|
|
3531
3565
|
* @export
|
|
@@ -3825,7 +3859,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3825
3859
|
* @throws {RequiredError}
|
|
3826
3860
|
* @memberof DrivesRootApi
|
|
3827
3861
|
*/
|
|
3828
|
-
createDriveItem(driveId: string, driveItem?: DriveItem, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any>>;
|
|
3862
|
+
createDriveItem(driveId: string, driveItem?: DriveItem, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any, {}>>;
|
|
3829
3863
|
/**
|
|
3830
3864
|
* You can use the createLink action to share a driveItem via a sharing link. The response will be a permission object with the link facet containing the created link details. ## Link types For now, The following values are allowed for the type parameter. | Value | Display name | Description | | -------------- | ----------------- | --------------------------------------------------------------- | | view | View | Creates a read-only link to the driveItem. | | upload | Upload | Creates a read-write link to the folder driveItem. | | edit | Edit | Creates a read-write link to the driveItem. | | createOnly | File Drop | Creates an upload-only link to the folder driveItem. | | blocksDownload | Secure View | Creates a read-only link that blocks download to the driveItem. |
|
|
3831
3865
|
* @summary Create a sharing link for the root item of a Drive
|
|
@@ -3835,7 +3869,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3835
3869
|
* @throws {RequiredError}
|
|
3836
3870
|
* @memberof DrivesRootApi
|
|
3837
3871
|
*/
|
|
3838
|
-
createLinkSpaceRoot(driveId: string, driveItemCreateLink?: DriveItemCreateLink, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3872
|
+
createLinkSpaceRoot(driveId: string, driveItemCreateLink?: DriveItemCreateLink, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3839
3873
|
/**
|
|
3840
3874
|
* Remove access to the root item of a drive. Only sharing permissions that are not inherited can be deleted. The `inheritedFrom` property must be `null`.
|
|
3841
3875
|
* @summary Remove access to a Drive
|
|
@@ -3845,7 +3879,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3845
3879
|
* @throws {RequiredError}
|
|
3846
3880
|
* @memberof DrivesRootApi
|
|
3847
3881
|
*/
|
|
3848
|
-
deletePermissionSpaceRoot(driveId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
3882
|
+
deletePermissionSpaceRoot(driveId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
3849
3883
|
/**
|
|
3850
3884
|
* Return the effective sharing permission for a particular permission resource.
|
|
3851
3885
|
* @summary Get a single sharing permission for the root item of a drive
|
|
@@ -3855,7 +3889,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3855
3889
|
* @throws {RequiredError}
|
|
3856
3890
|
* @memberof DrivesRootApi
|
|
3857
3891
|
*/
|
|
3858
|
-
getPermissionSpaceRoot(driveId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3892
|
+
getPermissionSpaceRoot(driveId: string, permId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3859
3893
|
/**
|
|
3860
3894
|
*
|
|
3861
3895
|
* @summary Get root from arbitrary space
|
|
@@ -3864,7 +3898,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3864
3898
|
* @throws {RequiredError}
|
|
3865
3899
|
* @memberof DrivesRootApi
|
|
3866
3900
|
*/
|
|
3867
|
-
getRoot(driveId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any>>;
|
|
3901
|
+
getRoot(driveId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any, {}>>;
|
|
3868
3902
|
/**
|
|
3869
3903
|
* Sends a sharing invitation for the root of a `drive`. A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. The response will be a permission object with the grantedToV2 property containing the created grant details. ## Roles property values For now, roles are only identified by a uuid. There are no hardcoded aliases like `read` or `write` because role actions can be completely customized.
|
|
3870
3904
|
* @summary Send a sharing invitation
|
|
@@ -3874,7 +3908,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3874
3908
|
* @throws {RequiredError}
|
|
3875
3909
|
* @memberof DrivesRootApi
|
|
3876
3910
|
*/
|
|
3877
|
-
inviteSpaceRoot(driveId: string, driveItemInvite?: DriveItemInvite, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissions, any>>;
|
|
3911
|
+
inviteSpaceRoot(driveId: string, driveItemInvite?: DriveItemInvite, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissions, any, {}>>;
|
|
3878
3912
|
/**
|
|
3879
3913
|
* The permissions collection includes potentially sensitive information and may not be available for every caller. * For the owner of the item, all sharing permissions will be returned. This includes co-owners. * For a non-owner caller, only the sharing permissions that apply to the caller are returned. * Sharing permission properties that contain secrets (e.g. `webUrl`) are only returned for callers that are able to create the sharing permission. All permission objects have an `id`. A permission representing * a link has the `link` facet filled with details. * a share has the `roles` property set and the `grantedToV2` property filled with the grant recipient details.
|
|
3880
3914
|
* @summary List the effective permissions on the root item of a drive.
|
|
@@ -3887,7 +3921,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3887
3921
|
* @throws {RequiredError}
|
|
3888
3922
|
* @memberof DrivesRootApi
|
|
3889
3923
|
*/
|
|
3890
|
-
listPermissionsSpaceRoot(driveId: string, $filter?: string, $select?: Set<ListPermissionsSpaceRootSelectEnum>, $count?: boolean, $top?: number, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissionsWithAllowedValues, any>>;
|
|
3924
|
+
listPermissionsSpaceRoot(driveId: string, $filter?: string, $select?: Set<ListPermissionsSpaceRootSelectEnum>, $count?: boolean, $top?: number, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfPermissionsWithAllowedValues, any, {}>>;
|
|
3891
3925
|
/**
|
|
3892
3926
|
* Set the password of a sharing permission. Only the `password` property can be modified this way.
|
|
3893
3927
|
* @summary Set sharing link password for the root item of a drive
|
|
@@ -3898,7 +3932,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3898
3932
|
* @throws {RequiredError}
|
|
3899
3933
|
* @memberof DrivesRootApi
|
|
3900
3934
|
*/
|
|
3901
|
-
setPermissionPasswordSpaceRoot(driveId: string, permId: string, sharingLinkPassword: SharingLinkPassword, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3935
|
+
setPermissionPasswordSpaceRoot(driveId: string, permId: string, sharingLinkPassword: SharingLinkPassword, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3902
3936
|
/**
|
|
3903
3937
|
* Update the properties of a sharing permission by patching the permission resource. Only the `roles`, `expirationDateTime` and `password` properties can be modified this way.
|
|
3904
3938
|
* @summary Update sharing permission
|
|
@@ -3909,7 +3943,7 @@ export declare class DrivesRootApi extends BaseAPI {
|
|
|
3909
3943
|
* @throws {RequiredError}
|
|
3910
3944
|
* @memberof DrivesRootApi
|
|
3911
3945
|
*/
|
|
3912
|
-
updatePermissionSpaceRoot(driveId: string, permId: string, permission: Permission, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any>>;
|
|
3946
|
+
updatePermissionSpaceRoot(driveId: string, permId: string, permission: Permission, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Permission, any, {}>>;
|
|
3913
3947
|
}
|
|
3914
3948
|
/**
|
|
3915
3949
|
* @export
|
|
@@ -4152,7 +4186,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4152
4186
|
* @throws {RequiredError}
|
|
4153
4187
|
* @memberof EducationClassApi
|
|
4154
4188
|
*/
|
|
4155
|
-
addUserToClass(classId: string, classMemberReference: ClassMemberReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4189
|
+
addUserToClass(classId: string, classMemberReference: ClassMemberReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4156
4190
|
/**
|
|
4157
4191
|
*
|
|
4158
4192
|
* @summary Add new education class
|
|
@@ -4161,7 +4195,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4161
4195
|
* @throws {RequiredError}
|
|
4162
4196
|
* @memberof EducationClassApi
|
|
4163
4197
|
*/
|
|
4164
|
-
createClass(educationClass: EducationClass, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any>>;
|
|
4198
|
+
createClass(educationClass: EducationClass, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any, {}>>;
|
|
4165
4199
|
/**
|
|
4166
4200
|
*
|
|
4167
4201
|
* @summary Delete education class
|
|
@@ -4170,7 +4204,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4170
4204
|
* @throws {RequiredError}
|
|
4171
4205
|
* @memberof EducationClassApi
|
|
4172
4206
|
*/
|
|
4173
|
-
deleteClass(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4207
|
+
deleteClass(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4174
4208
|
/**
|
|
4175
4209
|
*
|
|
4176
4210
|
* @summary Unassign user from a class
|
|
@@ -4180,7 +4214,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4180
4214
|
* @throws {RequiredError}
|
|
4181
4215
|
* @memberof EducationClassApi
|
|
4182
4216
|
*/
|
|
4183
|
-
deleteUserFromClass(classId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4217
|
+
deleteUserFromClass(classId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4184
4218
|
/**
|
|
4185
4219
|
*
|
|
4186
4220
|
* @summary Get class by key
|
|
@@ -4189,7 +4223,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4189
4223
|
* @throws {RequiredError}
|
|
4190
4224
|
* @memberof EducationClassApi
|
|
4191
4225
|
*/
|
|
4192
|
-
getClass(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any>>;
|
|
4226
|
+
getClass(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any, {}>>;
|
|
4193
4227
|
/**
|
|
4194
4228
|
*
|
|
4195
4229
|
* @summary Get the educationClass resources owned by an educationSchool
|
|
@@ -4198,7 +4232,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4198
4232
|
* @throws {RequiredError}
|
|
4199
4233
|
* @memberof EducationClassApi
|
|
4200
4234
|
*/
|
|
4201
|
-
listClassMembers(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any>>;
|
|
4235
|
+
listClassMembers(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any, {}>>;
|
|
4202
4236
|
/**
|
|
4203
4237
|
*
|
|
4204
4238
|
* @summary list education classes
|
|
@@ -4206,7 +4240,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4206
4240
|
* @throws {RequiredError}
|
|
4207
4241
|
* @memberof EducationClassApi
|
|
4208
4242
|
*/
|
|
4209
|
-
listClasses(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfClass, any>>;
|
|
4243
|
+
listClasses(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfClass, any, {}>>;
|
|
4210
4244
|
/**
|
|
4211
4245
|
*
|
|
4212
4246
|
* @summary Update properties of a education class
|
|
@@ -4216,7 +4250,7 @@ export declare class EducationClassApi extends BaseAPI {
|
|
|
4216
4250
|
* @throws {RequiredError}
|
|
4217
4251
|
* @memberof EducationClassApi
|
|
4218
4252
|
*/
|
|
4219
|
-
updateClass(classId: string, educationClass: EducationClass, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any>>;
|
|
4253
|
+
updateClass(classId: string, educationClass: EducationClass, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationClass, any, {}>>;
|
|
4220
4254
|
}
|
|
4221
4255
|
/**
|
|
4222
4256
|
* EducationClassTeachersApi - axios parameter creator
|
|
@@ -4330,7 +4364,7 @@ export declare class EducationClassTeachersApi extends BaseAPI {
|
|
|
4330
4364
|
* @throws {RequiredError}
|
|
4331
4365
|
* @memberof EducationClassTeachersApi
|
|
4332
4366
|
*/
|
|
4333
|
-
addTeacherToClass(classId: string, classTeacherReference: ClassTeacherReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4367
|
+
addTeacherToClass(classId: string, classTeacherReference: ClassTeacherReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4334
4368
|
/**
|
|
4335
4369
|
*
|
|
4336
4370
|
* @summary Unassign user as teacher of a class
|
|
@@ -4340,7 +4374,7 @@ export declare class EducationClassTeachersApi extends BaseAPI {
|
|
|
4340
4374
|
* @throws {RequiredError}
|
|
4341
4375
|
* @memberof EducationClassTeachersApi
|
|
4342
4376
|
*/
|
|
4343
|
-
deleteTeacherFromClass(classId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4377
|
+
deleteTeacherFromClass(classId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4344
4378
|
/**
|
|
4345
4379
|
*
|
|
4346
4380
|
* @summary Get the teachers for a class
|
|
@@ -4349,7 +4383,7 @@ export declare class EducationClassTeachersApi extends BaseAPI {
|
|
|
4349
4383
|
* @throws {RequiredError}
|
|
4350
4384
|
* @memberof EducationClassTeachersApi
|
|
4351
4385
|
*/
|
|
4352
|
-
getTeachers(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any>>;
|
|
4386
|
+
getTeachers(classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any, {}>>;
|
|
4353
4387
|
}
|
|
4354
4388
|
/**
|
|
4355
4389
|
* EducationSchoolApi - axios parameter creator
|
|
@@ -4661,7 +4695,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4661
4695
|
* @throws {RequiredError}
|
|
4662
4696
|
* @memberof EducationSchoolApi
|
|
4663
4697
|
*/
|
|
4664
|
-
addClassToSchool(schoolId: string, classReference: ClassReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4698
|
+
addClassToSchool(schoolId: string, classReference: ClassReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4665
4699
|
/**
|
|
4666
4700
|
*
|
|
4667
4701
|
* @summary Assign a user to a school
|
|
@@ -4671,7 +4705,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4671
4705
|
* @throws {RequiredError}
|
|
4672
4706
|
* @memberof EducationSchoolApi
|
|
4673
4707
|
*/
|
|
4674
|
-
addUserToSchool(schoolId: string, educationUserReference: EducationUserReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4708
|
+
addUserToSchool(schoolId: string, educationUserReference: EducationUserReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4675
4709
|
/**
|
|
4676
4710
|
*
|
|
4677
4711
|
* @summary Add new school
|
|
@@ -4680,7 +4714,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4680
4714
|
* @throws {RequiredError}
|
|
4681
4715
|
* @memberof EducationSchoolApi
|
|
4682
4716
|
*/
|
|
4683
|
-
createSchool(educationSchool: EducationSchool, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any>>;
|
|
4717
|
+
createSchool(educationSchool: EducationSchool, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any, {}>>;
|
|
4684
4718
|
/**
|
|
4685
4719
|
*
|
|
4686
4720
|
* @summary Unassign class from a school
|
|
@@ -4690,7 +4724,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4690
4724
|
* @throws {RequiredError}
|
|
4691
4725
|
* @memberof EducationSchoolApi
|
|
4692
4726
|
*/
|
|
4693
|
-
deleteClassFromSchool(schoolId: string, classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4727
|
+
deleteClassFromSchool(schoolId: string, classId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4694
4728
|
/**
|
|
4695
4729
|
* Deletes a school. A school can only be delete if it has the terminationDate property set. And if that termination Date is in the past.
|
|
4696
4730
|
* @summary Delete school
|
|
@@ -4699,7 +4733,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4699
4733
|
* @throws {RequiredError}
|
|
4700
4734
|
* @memberof EducationSchoolApi
|
|
4701
4735
|
*/
|
|
4702
|
-
deleteSchool(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4736
|
+
deleteSchool(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4703
4737
|
/**
|
|
4704
4738
|
*
|
|
4705
4739
|
* @summary Unassign user from a school
|
|
@@ -4709,7 +4743,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4709
4743
|
* @throws {RequiredError}
|
|
4710
4744
|
* @memberof EducationSchoolApi
|
|
4711
4745
|
*/
|
|
4712
|
-
deleteUserFromSchool(schoolId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4746
|
+
deleteUserFromSchool(schoolId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4713
4747
|
/**
|
|
4714
4748
|
*
|
|
4715
4749
|
* @summary Get the properties of a specific school
|
|
@@ -4718,7 +4752,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4718
4752
|
* @throws {RequiredError}
|
|
4719
4753
|
* @memberof EducationSchoolApi
|
|
4720
4754
|
*/
|
|
4721
|
-
getSchool(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any>>;
|
|
4755
|
+
getSchool(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any, {}>>;
|
|
4722
4756
|
/**
|
|
4723
4757
|
*
|
|
4724
4758
|
* @summary Get the educationClass resources owned by an educationSchool
|
|
@@ -4727,7 +4761,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4727
4761
|
* @throws {RequiredError}
|
|
4728
4762
|
* @memberof EducationSchoolApi
|
|
4729
4763
|
*/
|
|
4730
|
-
listSchoolClasses(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationClass, any>>;
|
|
4764
|
+
listSchoolClasses(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationClass, any, {}>>;
|
|
4731
4765
|
/**
|
|
4732
4766
|
*
|
|
4733
4767
|
* @summary Get the educationUser resources associated with an educationSchool
|
|
@@ -4736,7 +4770,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4736
4770
|
* @throws {RequiredError}
|
|
4737
4771
|
* @memberof EducationSchoolApi
|
|
4738
4772
|
*/
|
|
4739
|
-
listSchoolUsers(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any>>;
|
|
4773
|
+
listSchoolUsers(schoolId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any, {}>>;
|
|
4740
4774
|
/**
|
|
4741
4775
|
*
|
|
4742
4776
|
* @summary Get a list of schools and their properties
|
|
@@ -4744,7 +4778,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4744
4778
|
* @throws {RequiredError}
|
|
4745
4779
|
* @memberof EducationSchoolApi
|
|
4746
4780
|
*/
|
|
4747
|
-
listSchools(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfSchools, any>>;
|
|
4781
|
+
listSchools(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfSchools, any, {}>>;
|
|
4748
4782
|
/**
|
|
4749
4783
|
*
|
|
4750
4784
|
* @summary Update properties of a school
|
|
@@ -4754,7 +4788,7 @@ export declare class EducationSchoolApi extends BaseAPI {
|
|
|
4754
4788
|
* @throws {RequiredError}
|
|
4755
4789
|
* @memberof EducationSchoolApi
|
|
4756
4790
|
*/
|
|
4757
|
-
updateSchool(schoolId: string, educationSchool: EducationSchool, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any>>;
|
|
4791
|
+
updateSchool(schoolId: string, educationSchool: EducationSchool, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationSchool, any, {}>>;
|
|
4758
4792
|
}
|
|
4759
4793
|
/**
|
|
4760
4794
|
* EducationUserApi - axios parameter creator
|
|
@@ -4918,7 +4952,7 @@ export declare class EducationUserApi extends BaseAPI {
|
|
|
4918
4952
|
* @throws {RequiredError}
|
|
4919
4953
|
* @memberof EducationUserApi
|
|
4920
4954
|
*/
|
|
4921
|
-
createEducationUser(educationUser: EducationUser, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any>>;
|
|
4955
|
+
createEducationUser(educationUser: EducationUser, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any, {}>>;
|
|
4922
4956
|
/**
|
|
4923
4957
|
*
|
|
4924
4958
|
* @summary Delete educationUser
|
|
@@ -4927,7 +4961,7 @@ export declare class EducationUserApi extends BaseAPI {
|
|
|
4927
4961
|
* @throws {RequiredError}
|
|
4928
4962
|
* @memberof EducationUserApi
|
|
4929
4963
|
*/
|
|
4930
|
-
deleteEducationUser(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
4964
|
+
deleteEducationUser(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
4931
4965
|
/**
|
|
4932
4966
|
*
|
|
4933
4967
|
* @summary Get properties of educationUser
|
|
@@ -4937,7 +4971,7 @@ export declare class EducationUserApi extends BaseAPI {
|
|
|
4937
4971
|
* @throws {RequiredError}
|
|
4938
4972
|
* @memberof EducationUserApi
|
|
4939
4973
|
*/
|
|
4940
|
-
getEducationUser(userId: string, $expand?: Set<GetEducationUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any>>;
|
|
4974
|
+
getEducationUser(userId: string, $expand?: Set<GetEducationUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any, {}>>;
|
|
4941
4975
|
/**
|
|
4942
4976
|
*
|
|
4943
4977
|
* @summary Get entities from education users
|
|
@@ -4947,7 +4981,7 @@ export declare class EducationUserApi extends BaseAPI {
|
|
|
4947
4981
|
* @throws {RequiredError}
|
|
4948
4982
|
* @memberof EducationUserApi
|
|
4949
4983
|
*/
|
|
4950
|
-
listEducationUsers($orderby?: Set<ListEducationUsersOrderbyEnum>, $expand?: Set<ListEducationUsersExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any>>;
|
|
4984
|
+
listEducationUsers($orderby?: Set<ListEducationUsersOrderbyEnum>, $expand?: Set<ListEducationUsersExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfEducationUser, any, {}>>;
|
|
4951
4985
|
/**
|
|
4952
4986
|
*
|
|
4953
4987
|
* @summary Update properties of educationUser
|
|
@@ -4957,7 +4991,7 @@ export declare class EducationUserApi extends BaseAPI {
|
|
|
4957
4991
|
* @throws {RequiredError}
|
|
4958
4992
|
* @memberof EducationUserApi
|
|
4959
4993
|
*/
|
|
4960
|
-
updateEducationUser(userId: string, educationUser: EducationUser, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any>>;
|
|
4994
|
+
updateEducationUser(userId: string, educationUser: EducationUser, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<EducationUser, any, {}>>;
|
|
4961
4995
|
}
|
|
4962
4996
|
/**
|
|
4963
4997
|
* @export
|
|
@@ -5184,7 +5218,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5184
5218
|
* @throws {RequiredError}
|
|
5185
5219
|
* @memberof GroupApi
|
|
5186
5220
|
*/
|
|
5187
|
-
addMember(groupId: string, memberReference: MemberReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5221
|
+
addMember(groupId: string, memberReference: MemberReference, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5188
5222
|
/**
|
|
5189
5223
|
*
|
|
5190
5224
|
* @summary Delete entity from groups
|
|
@@ -5194,7 +5228,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5194
5228
|
* @throws {RequiredError}
|
|
5195
5229
|
* @memberof GroupApi
|
|
5196
5230
|
*/
|
|
5197
|
-
deleteGroup(groupId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5231
|
+
deleteGroup(groupId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5198
5232
|
/**
|
|
5199
5233
|
*
|
|
5200
5234
|
* @summary Delete member from a group
|
|
@@ -5205,7 +5239,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5205
5239
|
* @throws {RequiredError}
|
|
5206
5240
|
* @memberof GroupApi
|
|
5207
5241
|
*/
|
|
5208
|
-
deleteMember(groupId: string, directoryObjectId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5242
|
+
deleteMember(groupId: string, directoryObjectId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5209
5243
|
/**
|
|
5210
5244
|
*
|
|
5211
5245
|
* @summary Get entity from groups by key
|
|
@@ -5216,7 +5250,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5216
5250
|
* @throws {RequiredError}
|
|
5217
5251
|
* @memberof GroupApi
|
|
5218
5252
|
*/
|
|
5219
|
-
getGroup(groupId: string, $select?: Set<GetGroupSelectEnum>, $expand?: Set<GetGroupExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Group, any>>;
|
|
5253
|
+
getGroup(groupId: string, $select?: Set<GetGroupSelectEnum>, $expand?: Set<GetGroupExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Group, any, {}>>;
|
|
5220
5254
|
/**
|
|
5221
5255
|
*
|
|
5222
5256
|
* @summary Get a list of the group\'s direct members
|
|
@@ -5225,7 +5259,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5225
5259
|
* @throws {RequiredError}
|
|
5226
5260
|
* @memberof GroupApi
|
|
5227
5261
|
*/
|
|
5228
|
-
listMembers(groupId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfUsers, any>>;
|
|
5262
|
+
listMembers(groupId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfUsers, any, {}>>;
|
|
5229
5263
|
/**
|
|
5230
5264
|
*
|
|
5231
5265
|
* @summary Update entity in groups
|
|
@@ -5235,7 +5269,7 @@ export declare class GroupApi extends BaseAPI {
|
|
|
5235
5269
|
* @throws {RequiredError}
|
|
5236
5270
|
* @memberof GroupApi
|
|
5237
5271
|
*/
|
|
5238
|
-
updateGroup(groupId: string, group: Group, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5272
|
+
updateGroup(groupId: string, group: Group, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5239
5273
|
}
|
|
5240
5274
|
/**
|
|
5241
5275
|
* @export
|
|
@@ -5344,7 +5378,7 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
5344
5378
|
* @throws {RequiredError}
|
|
5345
5379
|
* @memberof GroupsApi
|
|
5346
5380
|
*/
|
|
5347
|
-
createGroup(group: Group, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Group, any>>;
|
|
5381
|
+
createGroup(group: Group, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Group, any, {}>>;
|
|
5348
5382
|
/**
|
|
5349
5383
|
*
|
|
5350
5384
|
* @summary Get entities from groups
|
|
@@ -5356,7 +5390,7 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
5356
5390
|
* @throws {RequiredError}
|
|
5357
5391
|
* @memberof GroupsApi
|
|
5358
5392
|
*/
|
|
5359
|
-
listGroups($search?: string, $orderby?: Set<ListGroupsOrderbyEnum>, $select?: Set<ListGroupsSelectEnum>, $expand?: Set<ListGroupsExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfGroup, any>>;
|
|
5393
|
+
listGroups($search?: string, $orderby?: Set<ListGroupsOrderbyEnum>, $select?: Set<ListGroupsSelectEnum>, $expand?: Set<ListGroupsExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfGroup, any, {}>>;
|
|
5360
5394
|
}
|
|
5361
5395
|
/**
|
|
5362
5396
|
* @export
|
|
@@ -5441,7 +5475,7 @@ export declare class MeChangepasswordApi extends BaseAPI {
|
|
|
5441
5475
|
* @throws {RequiredError}
|
|
5442
5476
|
* @memberof MeChangepasswordApi
|
|
5443
5477
|
*/
|
|
5444
|
-
changeOwnPassword(passwordChange: PasswordChange, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5478
|
+
changeOwnPassword(passwordChange: PasswordChange, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5445
5479
|
}
|
|
5446
5480
|
/**
|
|
5447
5481
|
* MeDriveApi - axios parameter creator
|
|
@@ -5458,17 +5492,19 @@ export declare const MeDriveApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5458
5492
|
/**
|
|
5459
5493
|
* The `driveItems` returned from the `sharedByMe` method always include the `permissions` relation that indicates they are shared items.
|
|
5460
5494
|
* @summary Get a list of driveItem objects shared by the current user.
|
|
5495
|
+
* @param {Set<ListSharedByMeExpandEnum>} [$expand] Expand related entities
|
|
5461
5496
|
* @param {*} [options] Override http request option.
|
|
5462
5497
|
* @throws {RequiredError}
|
|
5463
5498
|
*/
|
|
5464
|
-
listSharedByMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5499
|
+
listSharedByMe: ($expand?: Set<ListSharedByMeExpandEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5465
5500
|
/**
|
|
5466
5501
|
* The `driveItems` returned from the `sharedWithMe` method always include the `remoteItem` facet that indicates they are items from a different drive.
|
|
5467
5502
|
* @summary Get a list of driveItem objects shared with the owner of a drive.
|
|
5503
|
+
* @param {Set<ListSharedWithMeExpandEnum>} [$expand] Expand related entities
|
|
5468
5504
|
* @param {*} [options] Override http request option.
|
|
5469
5505
|
* @throws {RequiredError}
|
|
5470
5506
|
*/
|
|
5471
|
-
listSharedWithMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5507
|
+
listSharedWithMe: ($expand?: Set<ListSharedWithMeExpandEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5472
5508
|
};
|
|
5473
5509
|
/**
|
|
5474
5510
|
* MeDriveApi - functional programming interface
|
|
@@ -5485,17 +5521,19 @@ export declare const MeDriveApiFp: (configuration?: Configuration) => {
|
|
|
5485
5521
|
/**
|
|
5486
5522
|
* The `driveItems` returned from the `sharedByMe` method always include the `permissions` relation that indicates they are shared items.
|
|
5487
5523
|
* @summary Get a list of driveItem objects shared by the current user.
|
|
5524
|
+
* @param {Set<ListSharedByMeExpandEnum>} [$expand] Expand related entities
|
|
5488
5525
|
* @param {*} [options] Override http request option.
|
|
5489
5526
|
* @throws {RequiredError}
|
|
5490
5527
|
*/
|
|
5491
|
-
listSharedByMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDriveItems1>>;
|
|
5528
|
+
listSharedByMe($expand?: Set<ListSharedByMeExpandEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDriveItems1>>;
|
|
5492
5529
|
/**
|
|
5493
5530
|
* The `driveItems` returned from the `sharedWithMe` method always include the `remoteItem` facet that indicates they are items from a different drive.
|
|
5494
5531
|
* @summary Get a list of driveItem objects shared with the owner of a drive.
|
|
5532
|
+
* @param {Set<ListSharedWithMeExpandEnum>} [$expand] Expand related entities
|
|
5495
5533
|
* @param {*} [options] Override http request option.
|
|
5496
5534
|
* @throws {RequiredError}
|
|
5497
5535
|
*/
|
|
5498
|
-
listSharedWithMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDriveItems1>>;
|
|
5536
|
+
listSharedWithMe($expand?: Set<ListSharedWithMeExpandEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDriveItems1>>;
|
|
5499
5537
|
};
|
|
5500
5538
|
/**
|
|
5501
5539
|
* MeDriveApi - factory interface
|
|
@@ -5512,17 +5550,19 @@ export declare const MeDriveApiFactory: (configuration?: Configuration, basePath
|
|
|
5512
5550
|
/**
|
|
5513
5551
|
* The `driveItems` returned from the `sharedByMe` method always include the `permissions` relation that indicates they are shared items.
|
|
5514
5552
|
* @summary Get a list of driveItem objects shared by the current user.
|
|
5553
|
+
* @param {Set<ListSharedByMeExpandEnum>} [$expand] Expand related entities
|
|
5515
5554
|
* @param {*} [options] Override http request option.
|
|
5516
5555
|
* @throws {RequiredError}
|
|
5517
5556
|
*/
|
|
5518
|
-
listSharedByMe(options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDriveItems1>;
|
|
5557
|
+
listSharedByMe($expand?: Set<ListSharedByMeExpandEnum>, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDriveItems1>;
|
|
5519
5558
|
/**
|
|
5520
5559
|
* The `driveItems` returned from the `sharedWithMe` method always include the `remoteItem` facet that indicates they are items from a different drive.
|
|
5521
5560
|
* @summary Get a list of driveItem objects shared with the owner of a drive.
|
|
5561
|
+
* @param {Set<ListSharedWithMeExpandEnum>} [$expand] Expand related entities
|
|
5522
5562
|
* @param {*} [options] Override http request option.
|
|
5523
5563
|
* @throws {RequiredError}
|
|
5524
5564
|
*/
|
|
5525
|
-
listSharedWithMe(options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDriveItems1>;
|
|
5565
|
+
listSharedWithMe($expand?: Set<ListSharedWithMeExpandEnum>, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDriveItems1>;
|
|
5526
5566
|
};
|
|
5527
5567
|
/**
|
|
5528
5568
|
* MeDriveApi - object-oriented interface
|
|
@@ -5538,24 +5578,40 @@ export declare class MeDriveApi extends BaseAPI {
|
|
|
5538
5578
|
* @throws {RequiredError}
|
|
5539
5579
|
* @memberof MeDriveApi
|
|
5540
5580
|
*/
|
|
5541
|
-
getHome(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any>>;
|
|
5581
|
+
getHome(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<Drive, any, {}>>;
|
|
5542
5582
|
/**
|
|
5543
5583
|
* The `driveItems` returned from the `sharedByMe` method always include the `permissions` relation that indicates they are shared items.
|
|
5544
5584
|
* @summary Get a list of driveItem objects shared by the current user.
|
|
5585
|
+
* @param {Set<ListSharedByMeExpandEnum>} [$expand] Expand related entities
|
|
5545
5586
|
* @param {*} [options] Override http request option.
|
|
5546
5587
|
* @throws {RequiredError}
|
|
5547
5588
|
* @memberof MeDriveApi
|
|
5548
5589
|
*/
|
|
5549
|
-
listSharedByMe(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems1, any>>;
|
|
5590
|
+
listSharedByMe($expand?: Set<ListSharedByMeExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems1, any, {}>>;
|
|
5550
5591
|
/**
|
|
5551
5592
|
* The `driveItems` returned from the `sharedWithMe` method always include the `remoteItem` facet that indicates they are items from a different drive.
|
|
5552
5593
|
* @summary Get a list of driveItem objects shared with the owner of a drive.
|
|
5594
|
+
* @param {Set<ListSharedWithMeExpandEnum>} [$expand] Expand related entities
|
|
5553
5595
|
* @param {*} [options] Override http request option.
|
|
5554
5596
|
* @throws {RequiredError}
|
|
5555
5597
|
* @memberof MeDriveApi
|
|
5556
5598
|
*/
|
|
5557
|
-
listSharedWithMe(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems1, any>>;
|
|
5599
|
+
listSharedWithMe($expand?: Set<ListSharedWithMeExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems1, any, {}>>;
|
|
5558
5600
|
}
|
|
5601
|
+
/**
|
|
5602
|
+
* @export
|
|
5603
|
+
*/
|
|
5604
|
+
export declare const ListSharedByMeExpandEnum: {
|
|
5605
|
+
readonly Thumbnails: "thumbnails";
|
|
5606
|
+
};
|
|
5607
|
+
export type ListSharedByMeExpandEnum = typeof ListSharedByMeExpandEnum[keyof typeof ListSharedByMeExpandEnum];
|
|
5608
|
+
/**
|
|
5609
|
+
* @export
|
|
5610
|
+
*/
|
|
5611
|
+
export declare const ListSharedWithMeExpandEnum: {
|
|
5612
|
+
readonly Thumbnails: "thumbnails";
|
|
5613
|
+
};
|
|
5614
|
+
export type ListSharedWithMeExpandEnum = typeof ListSharedWithMeExpandEnum[keyof typeof ListSharedWithMeExpandEnum];
|
|
5559
5615
|
/**
|
|
5560
5616
|
* MeDriveRootApi - axios parameter creator
|
|
5561
5617
|
* @export
|
|
@@ -5609,7 +5665,7 @@ export declare class MeDriveRootApi extends BaseAPI {
|
|
|
5609
5665
|
* @throws {RequiredError}
|
|
5610
5666
|
* @memberof MeDriveRootApi
|
|
5611
5667
|
*/
|
|
5612
|
-
homeGetRoot(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any>>;
|
|
5668
|
+
homeGetRoot(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<DriveItem, any, {}>>;
|
|
5613
5669
|
}
|
|
5614
5670
|
/**
|
|
5615
5671
|
* MeDriveRootChildrenApi - axios parameter creator
|
|
@@ -5664,7 +5720,7 @@ export declare class MeDriveRootChildrenApi extends BaseAPI {
|
|
|
5664
5720
|
* @throws {RequiredError}
|
|
5665
5721
|
* @memberof MeDriveRootChildrenApi
|
|
5666
5722
|
*/
|
|
5667
|
-
homeGetChildren(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems, any>>;
|
|
5723
|
+
homeGetChildren(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDriveItems, any, {}>>;
|
|
5668
5724
|
}
|
|
5669
5725
|
/**
|
|
5670
5726
|
* MeDrivesApi - axios parameter creator
|
|
@@ -5686,10 +5742,11 @@ export declare const MeDrivesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5686
5742
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
5687
5743
|
* @param {string} [$filter] Filter items by property values
|
|
5688
5744
|
* @param {string} [$expand] Expand related entities
|
|
5745
|
+
* @param {Set<ListMyDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
5689
5746
|
* @param {*} [options] Override http request option.
|
|
5690
5747
|
* @throws {RequiredError}
|
|
5691
5748
|
*/
|
|
5692
|
-
listMyDrivesBeta: ($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5749
|
+
listMyDrivesBeta: ($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListMyDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5693
5750
|
};
|
|
5694
5751
|
/**
|
|
5695
5752
|
* MeDrivesApi - functional programming interface
|
|
@@ -5711,10 +5768,11 @@ export declare const MeDrivesApiFp: (configuration?: Configuration) => {
|
|
|
5711
5768
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
5712
5769
|
* @param {string} [$filter] Filter items by property values
|
|
5713
5770
|
* @param {string} [$expand] Expand related entities
|
|
5771
|
+
* @param {Set<ListMyDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
5714
5772
|
* @param {*} [options] Override http request option.
|
|
5715
5773
|
* @throws {RequiredError}
|
|
5716
5774
|
*/
|
|
5717
|
-
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDrives>>;
|
|
5775
|
+
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListMyDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionOfDrives>>;
|
|
5718
5776
|
};
|
|
5719
5777
|
/**
|
|
5720
5778
|
* MeDrivesApi - factory interface
|
|
@@ -5736,10 +5794,11 @@ export declare const MeDrivesApiFactory: (configuration?: Configuration, basePat
|
|
|
5736
5794
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
5737
5795
|
* @param {string} [$filter] Filter items by property values
|
|
5738
5796
|
* @param {string} [$expand] Expand related entities
|
|
5797
|
+
* @param {Set<ListMyDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
5739
5798
|
* @param {*} [options] Override http request option.
|
|
5740
5799
|
* @throws {RequiredError}
|
|
5741
5800
|
*/
|
|
5742
|
-
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDrives>;
|
|
5801
|
+
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListMyDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): AxiosPromise<CollectionOfDrives>;
|
|
5743
5802
|
};
|
|
5744
5803
|
/**
|
|
5745
5804
|
* MeDrivesApi - object-oriented interface
|
|
@@ -5757,19 +5816,27 @@ export declare class MeDrivesApi extends BaseAPI {
|
|
|
5757
5816
|
* @throws {RequiredError}
|
|
5758
5817
|
* @memberof MeDrivesApi
|
|
5759
5818
|
*/
|
|
5760
|
-
listMyDrives($orderby?: string, $filter?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives, any>>;
|
|
5819
|
+
listMyDrives($orderby?: string, $filter?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives, any, {}>>;
|
|
5761
5820
|
/**
|
|
5762
5821
|
*
|
|
5763
5822
|
* @summary Alias for \'/v1.0/drives\', the difference is that grantedtoV2 is used and roles contain unified roles instead of cs3 roles
|
|
5764
5823
|
* @param {string} [$orderby] The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
|
|
5765
5824
|
* @param {string} [$filter] Filter items by property values
|
|
5766
5825
|
* @param {string} [$expand] Expand related entities
|
|
5826
|
+
* @param {Set<ListMyDrivesBetaSelectEnum>} [$select] Select properties to be returned. By default all properties are returned.
|
|
5767
5827
|
* @param {*} [options] Override http request option.
|
|
5768
5828
|
* @throws {RequiredError}
|
|
5769
5829
|
* @memberof MeDrivesApi
|
|
5770
5830
|
*/
|
|
5771
|
-
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives, any>>;
|
|
5831
|
+
listMyDrivesBeta($orderby?: string, $filter?: string, $expand?: string, $select?: Set<ListMyDrivesBetaSelectEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfDrives, any, {}>>;
|
|
5772
5832
|
}
|
|
5833
|
+
/**
|
|
5834
|
+
* @export
|
|
5835
|
+
*/
|
|
5836
|
+
export declare const ListMyDrivesBetaSelectEnum: {
|
|
5837
|
+
readonly LibreGraphHasTrashedItems: "@libre.graph.hasTrashedItems";
|
|
5838
|
+
};
|
|
5839
|
+
export type ListMyDrivesBetaSelectEnum = typeof ListMyDrivesBetaSelectEnum[keyof typeof ListMyDrivesBetaSelectEnum];
|
|
5773
5840
|
/**
|
|
5774
5841
|
* MePhotoApi - axios parameter creator
|
|
5775
5842
|
* @export
|
|
@@ -5892,7 +5959,7 @@ export declare class MePhotoApi extends BaseAPI {
|
|
|
5892
5959
|
* @throws {RequiredError}
|
|
5893
5960
|
* @memberof MePhotoApi
|
|
5894
5961
|
*/
|
|
5895
|
-
deleteOwnUserPhoto(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5962
|
+
deleteOwnUserPhoto(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5896
5963
|
/**
|
|
5897
5964
|
*
|
|
5898
5965
|
* @summary Get the current user\'s profile photo
|
|
@@ -5900,7 +5967,7 @@ export declare class MePhotoApi extends BaseAPI {
|
|
|
5900
5967
|
* @throws {RequiredError}
|
|
5901
5968
|
* @memberof MePhotoApi
|
|
5902
5969
|
*/
|
|
5903
|
-
getOwnUserPhoto(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<File, any>>;
|
|
5970
|
+
getOwnUserPhoto(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<File, any, {}>>;
|
|
5904
5971
|
/**
|
|
5905
5972
|
*
|
|
5906
5973
|
* @summary Update the current user\'s profile photo
|
|
@@ -5909,7 +5976,7 @@ export declare class MePhotoApi extends BaseAPI {
|
|
|
5909
5976
|
* @throws {RequiredError}
|
|
5910
5977
|
* @memberof MePhotoApi
|
|
5911
5978
|
*/
|
|
5912
|
-
updateOwnUserPhotoPatch(body?: File, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5979
|
+
updateOwnUserPhotoPatch(body?: File, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5913
5980
|
/**
|
|
5914
5981
|
*
|
|
5915
5982
|
* @summary Update the current user\'s profile photo
|
|
@@ -5918,7 +5985,7 @@ export declare class MePhotoApi extends BaseAPI {
|
|
|
5918
5985
|
* @throws {RequiredError}
|
|
5919
5986
|
* @memberof MePhotoApi
|
|
5920
5987
|
*/
|
|
5921
|
-
updateOwnUserPhotoPut(body?: File, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
5988
|
+
updateOwnUserPhotoPut(body?: File, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
5922
5989
|
}
|
|
5923
5990
|
/**
|
|
5924
5991
|
* MeUserApi - axios parameter creator
|
|
@@ -6001,7 +6068,7 @@ export declare class MeUserApi extends BaseAPI {
|
|
|
6001
6068
|
* @throws {RequiredError}
|
|
6002
6069
|
* @memberof MeUserApi
|
|
6003
6070
|
*/
|
|
6004
|
-
getOwnUser($expand?: Set<GetOwnUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any>>;
|
|
6071
|
+
getOwnUser($expand?: Set<GetOwnUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any, {}>>;
|
|
6005
6072
|
/**
|
|
6006
6073
|
*
|
|
6007
6074
|
* @summary Update the current user
|
|
@@ -6010,7 +6077,7 @@ export declare class MeUserApi extends BaseAPI {
|
|
|
6010
6077
|
* @throws {RequiredError}
|
|
6011
6078
|
* @memberof MeUserApi
|
|
6012
6079
|
*/
|
|
6013
|
-
updateOwnUser(userUpdate?: UserUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any>>;
|
|
6080
|
+
updateOwnUser(userUpdate?: UserUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any, {}>>;
|
|
6014
6081
|
}
|
|
6015
6082
|
/**
|
|
6016
6083
|
* @export
|
|
@@ -6097,7 +6164,7 @@ export declare class RoleManagementApi extends BaseAPI {
|
|
|
6097
6164
|
* @throws {RequiredError}
|
|
6098
6165
|
* @memberof RoleManagementApi
|
|
6099
6166
|
*/
|
|
6100
|
-
getPermissionRoleDefinition(roleId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<UnifiedRoleDefinition, any>>;
|
|
6167
|
+
getPermissionRoleDefinition(roleId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<UnifiedRoleDefinition, any, {}>>;
|
|
6101
6168
|
/**
|
|
6102
6169
|
* Get a list of `unifiedRoleDefinition` objects for the permissions provider. This list determines the roles that can be selected when creating sharing invites.
|
|
6103
6170
|
* @summary List roleDefinitions
|
|
@@ -6105,7 +6172,7 @@ export declare class RoleManagementApi extends BaseAPI {
|
|
|
6105
6172
|
* @throws {RequiredError}
|
|
6106
6173
|
* @memberof RoleManagementApi
|
|
6107
6174
|
*/
|
|
6108
|
-
listPermissionRoleDefinitions(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<UnifiedRoleDefinition, any>>;
|
|
6175
|
+
listPermissionRoleDefinitions(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<UnifiedRoleDefinition, any, {}>>;
|
|
6109
6176
|
}
|
|
6110
6177
|
/**
|
|
6111
6178
|
* TagsApi - axios parameter creator
|
|
@@ -6209,7 +6276,7 @@ export declare class TagsApi extends BaseAPI {
|
|
|
6209
6276
|
* @throws {RequiredError}
|
|
6210
6277
|
* @memberof TagsApi
|
|
6211
6278
|
*/
|
|
6212
|
-
assignTags(tagAssignment?: TagAssignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
6279
|
+
assignTags(tagAssignment?: TagAssignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
6213
6280
|
/**
|
|
6214
6281
|
*
|
|
6215
6282
|
* @summary Get all known tags
|
|
@@ -6217,7 +6284,7 @@ export declare class TagsApi extends BaseAPI {
|
|
|
6217
6284
|
* @throws {RequiredError}
|
|
6218
6285
|
* @memberof TagsApi
|
|
6219
6286
|
*/
|
|
6220
|
-
getTags(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfTags, any>>;
|
|
6287
|
+
getTags(options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfTags, any, {}>>;
|
|
6221
6288
|
/**
|
|
6222
6289
|
*
|
|
6223
6290
|
* @summary Unassign tags from a resource
|
|
@@ -6226,7 +6293,7 @@ export declare class TagsApi extends BaseAPI {
|
|
|
6226
6293
|
* @throws {RequiredError}
|
|
6227
6294
|
* @memberof TagsApi
|
|
6228
6295
|
*/
|
|
6229
|
-
unassignTags(tagUnassignment?: TagUnassignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
6296
|
+
unassignTags(tagUnassignment?: TagUnassignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
6230
6297
|
}
|
|
6231
6298
|
/**
|
|
6232
6299
|
* UserApi - axios parameter creator
|
|
@@ -6373,7 +6440,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
6373
6440
|
* @throws {RequiredError}
|
|
6374
6441
|
* @memberof UserApi
|
|
6375
6442
|
*/
|
|
6376
|
-
deleteUser(userId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
6443
|
+
deleteUser(userId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
6377
6444
|
/**
|
|
6378
6445
|
*
|
|
6379
6446
|
* @summary export personal data of a user
|
|
@@ -6383,7 +6450,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
6383
6450
|
* @throws {RequiredError}
|
|
6384
6451
|
* @memberof UserApi
|
|
6385
6452
|
*/
|
|
6386
|
-
exportPersonalData(userId: string, exportPersonalDataRequest?: ExportPersonalDataRequest, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
6453
|
+
exportPersonalData(userId: string, exportPersonalDataRequest?: ExportPersonalDataRequest, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
6387
6454
|
/**
|
|
6388
6455
|
*
|
|
6389
6456
|
* @summary Get entity from users by key
|
|
@@ -6394,7 +6461,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
6394
6461
|
* @throws {RequiredError}
|
|
6395
6462
|
* @memberof UserApi
|
|
6396
6463
|
*/
|
|
6397
|
-
getUser(userId: string, $select?: Set<GetUserSelectEnum>, $expand?: Set<GetUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any>>;
|
|
6464
|
+
getUser(userId: string, $select?: Set<GetUserSelectEnum>, $expand?: Set<GetUserExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any, {}>>;
|
|
6398
6465
|
/**
|
|
6399
6466
|
*
|
|
6400
6467
|
* @summary Update entity in users
|
|
@@ -6404,7 +6471,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
6404
6471
|
* @throws {RequiredError}
|
|
6405
6472
|
* @memberof UserApi
|
|
6406
6473
|
*/
|
|
6407
|
-
updateUser(userId: string, userUpdate: UserUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any>>;
|
|
6474
|
+
updateUser(userId: string, userUpdate: UserUpdate, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any, {}>>;
|
|
6408
6475
|
}
|
|
6409
6476
|
/**
|
|
6410
6477
|
* @export
|
|
@@ -6545,7 +6612,7 @@ export declare class UserAppRoleAssignmentApi extends BaseAPI {
|
|
|
6545
6612
|
* @throws {RequiredError}
|
|
6546
6613
|
* @memberof UserAppRoleAssignmentApi
|
|
6547
6614
|
*/
|
|
6548
|
-
userCreateAppRoleAssignments(userId: string, appRoleAssignment: AppRoleAssignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<AppRoleAssignment, any>>;
|
|
6615
|
+
userCreateAppRoleAssignments(userId: string, appRoleAssignment: AppRoleAssignment, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<AppRoleAssignment, any, {}>>;
|
|
6549
6616
|
/**
|
|
6550
6617
|
*
|
|
6551
6618
|
* @summary Delete the appRoleAssignment from a user
|
|
@@ -6556,7 +6623,7 @@ export declare class UserAppRoleAssignmentApi extends BaseAPI {
|
|
|
6556
6623
|
* @throws {RequiredError}
|
|
6557
6624
|
* @memberof UserAppRoleAssignmentApi
|
|
6558
6625
|
*/
|
|
6559
|
-
userDeleteAppRoleAssignments(userId: string, appRoleAssignmentId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any>>;
|
|
6626
|
+
userDeleteAppRoleAssignments(userId: string, appRoleAssignmentId: string, ifMatch?: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<void, any, {}>>;
|
|
6560
6627
|
/**
|
|
6561
6628
|
* Represents the global roles a user has been granted for an application.
|
|
6562
6629
|
* @summary Get appRoleAssignments from a user
|
|
@@ -6565,7 +6632,7 @@ export declare class UserAppRoleAssignmentApi extends BaseAPI {
|
|
|
6565
6632
|
* @throws {RequiredError}
|
|
6566
6633
|
* @memberof UserAppRoleAssignmentApi
|
|
6567
6634
|
*/
|
|
6568
|
-
userListAppRoleAssignments(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfAppRoleAssignments, any>>;
|
|
6635
|
+
userListAppRoleAssignments(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfAppRoleAssignments, any, {}>>;
|
|
6569
6636
|
}
|
|
6570
6637
|
/**
|
|
6571
6638
|
* UserPhotoApi - axios parameter creator
|
|
@@ -6624,7 +6691,7 @@ export declare class UserPhotoApi extends BaseAPI {
|
|
|
6624
6691
|
* @throws {RequiredError}
|
|
6625
6692
|
* @memberof UserPhotoApi
|
|
6626
6693
|
*/
|
|
6627
|
-
getUserPhoto(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<File, any>>;
|
|
6694
|
+
getUserPhoto(userId: string, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<File, any, {}>>;
|
|
6628
6695
|
}
|
|
6629
6696
|
/**
|
|
6630
6697
|
* UsersApi - axios parameter creator
|
|
@@ -6719,7 +6786,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
6719
6786
|
* @throws {RequiredError}
|
|
6720
6787
|
* @memberof UsersApi
|
|
6721
6788
|
*/
|
|
6722
|
-
createUser(user: User, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any>>;
|
|
6789
|
+
createUser(user: User, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<User, any, {}>>;
|
|
6723
6790
|
/**
|
|
6724
6791
|
*
|
|
6725
6792
|
* @summary Get entities from users
|
|
@@ -6732,7 +6799,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
6732
6799
|
* @throws {RequiredError}
|
|
6733
6800
|
* @memberof UsersApi
|
|
6734
6801
|
*/
|
|
6735
|
-
listUsers($search?: string, $filter?: string, $orderby?: Set<ListUsersOrderbyEnum>, $select?: Set<ListUsersSelectEnum>, $expand?: Set<ListUsersExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfUser, any>>;
|
|
6802
|
+
listUsers($search?: string, $filter?: string, $orderby?: Set<ListUsersOrderbyEnum>, $select?: Set<ListUsersSelectEnum>, $expand?: Set<ListUsersExpandEnum>, options?: RawAxiosRequestConfig): Promise<import('axios').AxiosResponse<CollectionOfUser, any, {}>>;
|
|
6736
6803
|
}
|
|
6737
6804
|
/**
|
|
6738
6805
|
* @export
|