@umbraco-cms/mcp-dev 17.4.2 → 17.5.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/{chunk-Q4LCXM42.cjs → chunk-BKIMD4NU.cjs} +75 -3
- package/dist/chunk-BKIMD4NU.cjs.map +1 -0
- package/dist/{chunk-VLJ3JQ46.js → chunk-ZDGU5P5E.js} +171 -99
- package/dist/chunk-ZDGU5P5E.js.map +1 -0
- package/dist/collections.cjs +2 -2
- package/dist/collections.js +1 -1
- package/dist/index.cjs +88 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/tool-types.d.ts +11 -0
- package/package.json +1 -1
- package/dist/chunk-Q4LCXM42.cjs.map +0 -1
- package/dist/chunk-VLJ3JQ46.js.map +0 -1
package/dist/tool-types.d.ts
CHANGED
|
@@ -14830,6 +14830,9 @@ export interface GetServerConfigurationOutput {
|
|
|
14830
14830
|
versionCheckPeriod: number;
|
|
14831
14831
|
allowLocalLogin: boolean;
|
|
14832
14832
|
umbracoCssPath: string;
|
|
14833
|
+
signalR: {
|
|
14834
|
+
skipNegotiation: boolean;
|
|
14835
|
+
};
|
|
14833
14836
|
}
|
|
14834
14837
|
|
|
14835
14838
|
export interface GetServerInformationInput {}
|
|
@@ -15550,6 +15553,12 @@ export interface UploadUserCurrentAvatarInput {
|
|
|
15550
15553
|
};
|
|
15551
15554
|
}
|
|
15552
15555
|
|
|
15556
|
+
export interface DeleteUserCurrentAvatarInput {}
|
|
15557
|
+
|
|
15558
|
+
export interface UpdateUserCurrentProfileInput {
|
|
15559
|
+
languageIsoCode: string;
|
|
15560
|
+
}
|
|
15561
|
+
|
|
15553
15562
|
export interface GetUserInput {
|
|
15554
15563
|
/**
|
|
15555
15564
|
* Pagination cursor from a previous response's nextCursor field. Omit for the first page.
|
|
@@ -16603,6 +16612,8 @@ export interface CmsTools {
|
|
|
16603
16612
|
"get-user-current-permissions-document": { input: GetUserCurrentPermissionsDocumentInput; output: GetUserCurrentPermissionsDocumentOutput };
|
|
16604
16613
|
"get-user-current-permissions-media": { input: GetUserCurrentPermissionsMediaInput; output: GetUserCurrentPermissionsMediaOutput };
|
|
16605
16614
|
"upload-user-current-avatar": { input: UploadUserCurrentAvatarInput; output: unknown };
|
|
16615
|
+
"delete-user-current-avatar": { input: DeleteUserCurrentAvatarInput; output: unknown };
|
|
16616
|
+
"update-user-current-profile": { input: UpdateUserCurrentProfileInput; output: unknown };
|
|
16606
16617
|
"get-user": { input: GetUserInput; output: GetUserOutput };
|
|
16607
16618
|
"get-user-by-id": { input: GetUserByIdInput; output: GetUserByIdOutput };
|
|
16608
16619
|
"find-user": { input: FindUserInput; output: FindUserOutput };
|