@umbraco-cms/mcp-dev 17.3.2 → 17.3.4
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-ZMREPEAA.cjs → chunk-6IL4IQKW.cjs} +1254 -181
- package/dist/chunk-6IL4IQKW.cjs.map +1 -0
- package/dist/{chunk-AGZ4PKPN.js → chunk-EONL3SEB.js} +3471 -2398
- package/dist/chunk-EONL3SEB.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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/tool-types.d.ts +520 -1
- package/package.json +3 -3
- package/dist/chunk-AGZ4PKPN.js.map +0 -1
- package/dist/chunk-ZMREPEAA.cjs.map +0 -1
package/dist/tool-types.d.ts
CHANGED
|
@@ -187,6 +187,26 @@ export interface GetDataTypesByIdArrayOutput {
|
|
|
187
187
|
}[];
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
export interface GetDataTypeBatchInput {
|
|
191
|
+
id?: string[];
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface GetDataTypeBatchOutput {
|
|
195
|
+
total: number;
|
|
196
|
+
items: {
|
|
197
|
+
name: string;
|
|
198
|
+
editorAlias: string;
|
|
199
|
+
editorUiAlias: string;
|
|
200
|
+
values: {
|
|
201
|
+
alias: string;
|
|
202
|
+
value?: unknown;
|
|
203
|
+
}[];
|
|
204
|
+
id: string;
|
|
205
|
+
isDeletable: boolean;
|
|
206
|
+
canIgnoreStartNodes: boolean;
|
|
207
|
+
}[];
|
|
208
|
+
}
|
|
209
|
+
|
|
190
210
|
export interface GetDataTypeConfigurationInput {}
|
|
191
211
|
|
|
192
212
|
export interface GetDataTypeConfigurationOutput {
|
|
@@ -340,6 +360,54 @@ export interface GetDataTypeAncestorsOutput {
|
|
|
340
360
|
}[];
|
|
341
361
|
}
|
|
342
362
|
|
|
363
|
+
export interface GetDataTypeAncestorsBatchInput {
|
|
364
|
+
id?: string[];
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export interface GetDataTypeAncestorsBatchOutput {
|
|
368
|
+
items: {
|
|
369
|
+
id: string;
|
|
370
|
+
ancestors: {
|
|
371
|
+
id: string;
|
|
372
|
+
flags: {
|
|
373
|
+
alias: string;
|
|
374
|
+
}[];
|
|
375
|
+
name: string;
|
|
376
|
+
}[];
|
|
377
|
+
}[];
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export interface GetDataTypeTreeSearchInput {
|
|
381
|
+
query?: string;
|
|
382
|
+
itemKind?: "Item" | "Folder" | "All";
|
|
383
|
+
/**
|
|
384
|
+
* Pagination cursor from a previous response's nextCursor field. Omit for the first page.
|
|
385
|
+
*/
|
|
386
|
+
cursor?: string;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
export interface GetDataTypeTreeSearchOutput {
|
|
390
|
+
total: number;
|
|
391
|
+
items: {
|
|
392
|
+
hasChildren: boolean;
|
|
393
|
+
id: string;
|
|
394
|
+
parent?: {
|
|
395
|
+
id: string;
|
|
396
|
+
} | null;
|
|
397
|
+
flags: {
|
|
398
|
+
alias: string;
|
|
399
|
+
}[];
|
|
400
|
+
name: string;
|
|
401
|
+
isFolder: boolean;
|
|
402
|
+
editorUiAlias?: string | null;
|
|
403
|
+
isDeletable: boolean;
|
|
404
|
+
}[];
|
|
405
|
+
/**
|
|
406
|
+
* Cursor for the next page. Pass as the cursor parameter to fetch more results. Absent when on the last page.
|
|
407
|
+
*/
|
|
408
|
+
nextCursor?: string | null;
|
|
409
|
+
}
|
|
410
|
+
|
|
343
411
|
export interface GetAllDataTypesInput {}
|
|
344
412
|
|
|
345
413
|
export interface GetAllDataTypesOutput {
|
|
@@ -1196,6 +1264,7 @@ export interface GetDocumentAuditLogOutput {
|
|
|
1196
1264
|
|
|
1197
1265
|
export interface GetDocumentPublicAccessInput {
|
|
1198
1266
|
id: string;
|
|
1267
|
+
includeAncestors?: boolean;
|
|
1199
1268
|
}
|
|
1200
1269
|
|
|
1201
1270
|
export interface GetDocumentPublicAccessOutput {
|
|
@@ -1230,6 +1299,7 @@ export interface GetDocumentPublicAccessOutput {
|
|
|
1230
1299
|
}[];
|
|
1231
1300
|
name: string;
|
|
1232
1301
|
}[];
|
|
1302
|
+
isProtectedByAncestor: boolean;
|
|
1233
1303
|
}
|
|
1234
1304
|
|
|
1235
1305
|
export interface MoveDocumentInput {
|
|
@@ -2231,6 +2301,44 @@ export interface GetDocumentAncestorsOutput {
|
|
|
2231
2301
|
}[];
|
|
2232
2302
|
}
|
|
2233
2303
|
|
|
2304
|
+
export interface GetDocumentAncestorsBatchInput {
|
|
2305
|
+
id?: string[];
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
export interface GetDocumentAncestorsBatchOutput {
|
|
2309
|
+
items: {
|
|
2310
|
+
id: string;
|
|
2311
|
+
ancestors: {
|
|
2312
|
+
id: string;
|
|
2313
|
+
flags: {
|
|
2314
|
+
alias: string;
|
|
2315
|
+
}[];
|
|
2316
|
+
isTrashed: boolean;
|
|
2317
|
+
isProtected: boolean;
|
|
2318
|
+
parent?: {
|
|
2319
|
+
id: string;
|
|
2320
|
+
} | null;
|
|
2321
|
+
hasChildren: boolean;
|
|
2322
|
+
documentType: {
|
|
2323
|
+
id: string;
|
|
2324
|
+
icon: string;
|
|
2325
|
+
collection?: {
|
|
2326
|
+
id: string;
|
|
2327
|
+
} | null;
|
|
2328
|
+
};
|
|
2329
|
+
variants: {
|
|
2330
|
+
name: string;
|
|
2331
|
+
culture?: string | null;
|
|
2332
|
+
id: string;
|
|
2333
|
+
flags: {
|
|
2334
|
+
alias: string;
|
|
2335
|
+
}[];
|
|
2336
|
+
state: "NotCreated" | "Draft" | "Published" | "PublishedPendingChanges" | "Trashed";
|
|
2337
|
+
}[];
|
|
2338
|
+
}[];
|
|
2339
|
+
}[];
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2234
2342
|
export interface GetDocumentSiblingsInput {
|
|
2235
2343
|
target?: string;
|
|
2236
2344
|
before?: number;
|
|
@@ -2428,6 +2536,84 @@ export interface GetDocumentTypesByIdArrayOutput {
|
|
|
2428
2536
|
}[];
|
|
2429
2537
|
}
|
|
2430
2538
|
|
|
2539
|
+
export interface GetDocumentTypeBatchInput {
|
|
2540
|
+
id?: string[];
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
export interface GetDocumentTypeBatchOutput {
|
|
2544
|
+
total: number;
|
|
2545
|
+
items: {
|
|
2546
|
+
alias: string;
|
|
2547
|
+
name: string;
|
|
2548
|
+
description?: string | null;
|
|
2549
|
+
icon: string;
|
|
2550
|
+
allowedAsRoot: boolean;
|
|
2551
|
+
variesByCulture: boolean;
|
|
2552
|
+
variesBySegment: boolean;
|
|
2553
|
+
collection?: {
|
|
2554
|
+
id: string;
|
|
2555
|
+
} | null;
|
|
2556
|
+
isElement: boolean;
|
|
2557
|
+
properties: {
|
|
2558
|
+
id: string;
|
|
2559
|
+
container?: {
|
|
2560
|
+
id: string;
|
|
2561
|
+
} | null;
|
|
2562
|
+
sortOrder: number;
|
|
2563
|
+
alias: string;
|
|
2564
|
+
name: string;
|
|
2565
|
+
description?: string | null;
|
|
2566
|
+
dataType: {
|
|
2567
|
+
id: string;
|
|
2568
|
+
};
|
|
2569
|
+
variesByCulture: boolean;
|
|
2570
|
+
variesBySegment: boolean;
|
|
2571
|
+
validation: {
|
|
2572
|
+
mandatory: boolean;
|
|
2573
|
+
mandatoryMessage?: string | null;
|
|
2574
|
+
regEx?: string | null;
|
|
2575
|
+
regExMessage?: string | null;
|
|
2576
|
+
};
|
|
2577
|
+
appearance: {
|
|
2578
|
+
labelOnTop: boolean;
|
|
2579
|
+
};
|
|
2580
|
+
}[];
|
|
2581
|
+
containers: {
|
|
2582
|
+
id: string;
|
|
2583
|
+
parent?: {
|
|
2584
|
+
id: string;
|
|
2585
|
+
} | null;
|
|
2586
|
+
name?: string | null;
|
|
2587
|
+
type: string;
|
|
2588
|
+
sortOrder: number;
|
|
2589
|
+
}[];
|
|
2590
|
+
id: string;
|
|
2591
|
+
allowedTemplates: {
|
|
2592
|
+
id: string;
|
|
2593
|
+
}[];
|
|
2594
|
+
defaultTemplate?: {
|
|
2595
|
+
id: string;
|
|
2596
|
+
} | null;
|
|
2597
|
+
cleanup: {
|
|
2598
|
+
preventCleanup: boolean;
|
|
2599
|
+
keepAllVersionsNewerThanDays?: number | null;
|
|
2600
|
+
keepLatestVersionPerDayForDays?: number | null;
|
|
2601
|
+
};
|
|
2602
|
+
allowedDocumentTypes: {
|
|
2603
|
+
documentType: {
|
|
2604
|
+
id: string;
|
|
2605
|
+
};
|
|
2606
|
+
sortOrder: number;
|
|
2607
|
+
}[];
|
|
2608
|
+
compositions: {
|
|
2609
|
+
documentType: {
|
|
2610
|
+
id: string;
|
|
2611
|
+
};
|
|
2612
|
+
compositionType: "Composition" | "Inheritance";
|
|
2613
|
+
}[];
|
|
2614
|
+
}[];
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2431
2617
|
export interface GetDocumentTypeAvailableCompositionsInput {
|
|
2432
2618
|
id?: string | null;
|
|
2433
2619
|
currentPropertyAliases: string[];
|
|
@@ -2727,6 +2913,64 @@ export interface GetDocumentTypeAncestorsOutput {
|
|
|
2727
2913
|
}[];
|
|
2728
2914
|
}
|
|
2729
2915
|
|
|
2916
|
+
export interface GetDocumentTypeAncestorsBatchInput {
|
|
2917
|
+
id?: string[];
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
export interface GetDocumentTypeAncestorsBatchOutput {
|
|
2921
|
+
items: {
|
|
2922
|
+
id: string;
|
|
2923
|
+
ancestors: {
|
|
2924
|
+
id: string;
|
|
2925
|
+
flags: {
|
|
2926
|
+
alias: string;
|
|
2927
|
+
}[];
|
|
2928
|
+
name: string;
|
|
2929
|
+
}[];
|
|
2930
|
+
}[];
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
export interface GetDocumentTypeTreeSearchInput {
|
|
2934
|
+
query?: string;
|
|
2935
|
+
itemKind?: "Item" | "Folder" | "All";
|
|
2936
|
+
/**
|
|
2937
|
+
* Pagination cursor from a previous response's nextCursor field. Omit for the first page.
|
|
2938
|
+
*/
|
|
2939
|
+
cursor?: string;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
export interface GetDocumentTypeTreeSearchOutput {
|
|
2943
|
+
total: number;
|
|
2944
|
+
items: {
|
|
2945
|
+
hasChildren: boolean;
|
|
2946
|
+
id: string;
|
|
2947
|
+
parent?: {
|
|
2948
|
+
id: string;
|
|
2949
|
+
} | null;
|
|
2950
|
+
flags: {
|
|
2951
|
+
alias: string;
|
|
2952
|
+
}[];
|
|
2953
|
+
name: string;
|
|
2954
|
+
isFolder: boolean;
|
|
2955
|
+
isElement: boolean;
|
|
2956
|
+
icon: string;
|
|
2957
|
+
}[];
|
|
2958
|
+
/**
|
|
2959
|
+
* Cursor for the next page. Pass as the cursor parameter to fetch more results. Absent when on the last page.
|
|
2960
|
+
*/
|
|
2961
|
+
nextCursor?: string | null;
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
export interface GetDocumentTypeAllowedParentsInput {
|
|
2965
|
+
id: string;
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
export interface GetDocumentTypeAllowedParentsOutput {
|
|
2969
|
+
allowedParentIds: {
|
|
2970
|
+
id: string;
|
|
2971
|
+
}[];
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2730
2974
|
export interface GetDocumentTypeChildrenInput {
|
|
2731
2975
|
parentId?: string;
|
|
2732
2976
|
foldersOnly?: boolean;
|
|
@@ -2979,6 +3223,7 @@ export interface GetImagingResizeUrlsInput {
|
|
|
2979
3223
|
height: number;
|
|
2980
3224
|
width: number;
|
|
2981
3225
|
mode?: "Crop" | "Max" | "Stretch" | "Pad" | "BoxPad" | "Min";
|
|
3226
|
+
format?: string;
|
|
2982
3227
|
}
|
|
2983
3228
|
|
|
2984
3229
|
export interface GetImagingResizeUrlsOutput {
|
|
@@ -3345,6 +3590,38 @@ export interface GetMediaAncestorsOutput {
|
|
|
3345
3590
|
}[];
|
|
3346
3591
|
}
|
|
3347
3592
|
|
|
3593
|
+
export interface GetMediaAncestorsBatchInput {
|
|
3594
|
+
id?: string[];
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
export interface GetMediaAncestorsBatchOutput {
|
|
3598
|
+
items: {
|
|
3599
|
+
id: string;
|
|
3600
|
+
ancestors: {
|
|
3601
|
+
id: string;
|
|
3602
|
+
flags: {
|
|
3603
|
+
alias: string;
|
|
3604
|
+
}[];
|
|
3605
|
+
isTrashed: boolean;
|
|
3606
|
+
parent?: {
|
|
3607
|
+
id: string;
|
|
3608
|
+
} | null;
|
|
3609
|
+
hasChildren: boolean;
|
|
3610
|
+
mediaType: {
|
|
3611
|
+
id: string;
|
|
3612
|
+
icon: string;
|
|
3613
|
+
collection?: {
|
|
3614
|
+
id: string;
|
|
3615
|
+
} | null;
|
|
3616
|
+
};
|
|
3617
|
+
variants: {
|
|
3618
|
+
name: string;
|
|
3619
|
+
culture?: string | null;
|
|
3620
|
+
}[];
|
|
3621
|
+
}[];
|
|
3622
|
+
}[];
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3348
3625
|
export interface GetMediaChildrenInput {
|
|
3349
3626
|
parentId?: string;
|
|
3350
3627
|
dataTypeId?: string;
|
|
@@ -4470,6 +4747,23 @@ export interface GetMediaTypeAncestorsOutput {
|
|
|
4470
4747
|
}[];
|
|
4471
4748
|
}
|
|
4472
4749
|
|
|
4750
|
+
export interface GetMediaTypeAncestorsBatchInput {
|
|
4751
|
+
id?: string[];
|
|
4752
|
+
}
|
|
4753
|
+
|
|
4754
|
+
export interface GetMediaTypeAncestorsBatchOutput {
|
|
4755
|
+
items: {
|
|
4756
|
+
id: string;
|
|
4757
|
+
ancestors: {
|
|
4758
|
+
id: string;
|
|
4759
|
+
flags: {
|
|
4760
|
+
alias: string;
|
|
4761
|
+
}[];
|
|
4762
|
+
name: string;
|
|
4763
|
+
}[];
|
|
4764
|
+
}[];
|
|
4765
|
+
}
|
|
4766
|
+
|
|
4473
4767
|
export interface GetMediaTypeFoldersInput {
|
|
4474
4768
|
/**
|
|
4475
4769
|
* Pagination cursor from a previous response's nextCursor field. Omit for the first page.
|
|
@@ -4627,6 +4921,75 @@ export interface GetMediaTypeByIdsOutput {
|
|
|
4627
4921
|
}[];
|
|
4628
4922
|
}
|
|
4629
4923
|
|
|
4924
|
+
export interface GetMediaTypeBatchInput {
|
|
4925
|
+
id?: string[];
|
|
4926
|
+
}
|
|
4927
|
+
|
|
4928
|
+
export interface GetMediaTypeBatchOutput {
|
|
4929
|
+
total: number;
|
|
4930
|
+
items: {
|
|
4931
|
+
alias: string;
|
|
4932
|
+
name: string;
|
|
4933
|
+
description?: string | null;
|
|
4934
|
+
icon: string;
|
|
4935
|
+
allowedAsRoot: boolean;
|
|
4936
|
+
variesByCulture: boolean;
|
|
4937
|
+
variesBySegment: boolean;
|
|
4938
|
+
collection?: {
|
|
4939
|
+
id: string;
|
|
4940
|
+
} | null;
|
|
4941
|
+
isElement: boolean;
|
|
4942
|
+
properties: {
|
|
4943
|
+
id: string;
|
|
4944
|
+
container?: {
|
|
4945
|
+
id: string;
|
|
4946
|
+
} | null;
|
|
4947
|
+
sortOrder: number;
|
|
4948
|
+
alias: string;
|
|
4949
|
+
name: string;
|
|
4950
|
+
description?: string | null;
|
|
4951
|
+
dataType: {
|
|
4952
|
+
id: string;
|
|
4953
|
+
};
|
|
4954
|
+
variesByCulture: boolean;
|
|
4955
|
+
variesBySegment: boolean;
|
|
4956
|
+
validation: {
|
|
4957
|
+
mandatory: boolean;
|
|
4958
|
+
mandatoryMessage?: string | null;
|
|
4959
|
+
regEx?: string | null;
|
|
4960
|
+
regExMessage?: string | null;
|
|
4961
|
+
};
|
|
4962
|
+
appearance: {
|
|
4963
|
+
labelOnTop: boolean;
|
|
4964
|
+
};
|
|
4965
|
+
}[];
|
|
4966
|
+
containers: {
|
|
4967
|
+
id: string;
|
|
4968
|
+
parent?: {
|
|
4969
|
+
id: string;
|
|
4970
|
+
} | null;
|
|
4971
|
+
name?: string | null;
|
|
4972
|
+
type: string;
|
|
4973
|
+
sortOrder: number;
|
|
4974
|
+
}[];
|
|
4975
|
+
id: string;
|
|
4976
|
+
allowedMediaTypes: {
|
|
4977
|
+
mediaType: {
|
|
4978
|
+
id: string;
|
|
4979
|
+
};
|
|
4980
|
+
sortOrder: number;
|
|
4981
|
+
}[];
|
|
4982
|
+
compositions: {
|
|
4983
|
+
mediaType: {
|
|
4984
|
+
id: string;
|
|
4985
|
+
};
|
|
4986
|
+
compositionType: "Composition" | "Inheritance";
|
|
4987
|
+
}[];
|
|
4988
|
+
isDeletable: boolean;
|
|
4989
|
+
aliasCanBeChanged: boolean;
|
|
4990
|
+
}[];
|
|
4991
|
+
}
|
|
4992
|
+
|
|
4630
4993
|
export interface GetItemMediaTypeInput {
|
|
4631
4994
|
id?: string[];
|
|
4632
4995
|
}
|
|
@@ -4664,6 +5027,7 @@ export interface GetAllowedMediaTypeOutput {
|
|
|
4664
5027
|
}[];
|
|
4665
5028
|
name: string;
|
|
4666
5029
|
icon?: string | null;
|
|
5030
|
+
matchedFileExtension: boolean;
|
|
4667
5031
|
}[];
|
|
4668
5032
|
total: number;
|
|
4669
5033
|
/**
|
|
@@ -4716,6 +5080,16 @@ export interface GetMediaTypeAllowedChildrenOutput {
|
|
|
4716
5080
|
nextCursor?: string | null;
|
|
4717
5081
|
}
|
|
4718
5082
|
|
|
5083
|
+
export interface GetMediaTypeAllowedParentsInput {
|
|
5084
|
+
id: string;
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
export interface GetMediaTypeAllowedParentsOutput {
|
|
5088
|
+
allowedParentIds: {
|
|
5089
|
+
id: string;
|
|
5090
|
+
}[];
|
|
5091
|
+
}
|
|
5092
|
+
|
|
4719
5093
|
export interface GetMediaTypeCompositionReferencesInput {
|
|
4720
5094
|
id: string;
|
|
4721
5095
|
}
|
|
@@ -5113,6 +5487,34 @@ export interface GetItemMemberSearchOutput {
|
|
|
5113
5487
|
nextCursor?: string | null;
|
|
5114
5488
|
}
|
|
5115
5489
|
|
|
5490
|
+
export interface GetMemberAncestorsBatchInput {
|
|
5491
|
+
id?: string[];
|
|
5492
|
+
}
|
|
5493
|
+
|
|
5494
|
+
export interface GetMemberAncestorsBatchOutput {
|
|
5495
|
+
items: {
|
|
5496
|
+
id: string;
|
|
5497
|
+
ancestors: {
|
|
5498
|
+
id: string;
|
|
5499
|
+
flags: {
|
|
5500
|
+
alias: string;
|
|
5501
|
+
}[];
|
|
5502
|
+
memberType: {
|
|
5503
|
+
id: string;
|
|
5504
|
+
icon: string;
|
|
5505
|
+
collection?: {
|
|
5506
|
+
id: string;
|
|
5507
|
+
} | null;
|
|
5508
|
+
};
|
|
5509
|
+
variants: {
|
|
5510
|
+
name: string;
|
|
5511
|
+
culture?: string | null;
|
|
5512
|
+
}[];
|
|
5513
|
+
kind: "Default" | "Api";
|
|
5514
|
+
}[];
|
|
5515
|
+
}[];
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5116
5518
|
export interface GetMemberGroupInput {
|
|
5117
5519
|
id: string;
|
|
5118
5520
|
}
|
|
@@ -5347,6 +5749,72 @@ export interface GetMemberTypesByIdArrayOutput {
|
|
|
5347
5749
|
}[];
|
|
5348
5750
|
}
|
|
5349
5751
|
|
|
5752
|
+
export interface GetMemberTypeBatchInput {
|
|
5753
|
+
id?: string[];
|
|
5754
|
+
}
|
|
5755
|
+
|
|
5756
|
+
export interface GetMemberTypeBatchOutput {
|
|
5757
|
+
total: number;
|
|
5758
|
+
items: {
|
|
5759
|
+
alias: string;
|
|
5760
|
+
name: string;
|
|
5761
|
+
description?: string | null;
|
|
5762
|
+
icon: string;
|
|
5763
|
+
allowedAsRoot: boolean;
|
|
5764
|
+
variesByCulture: boolean;
|
|
5765
|
+
variesBySegment: boolean;
|
|
5766
|
+
collection?: {
|
|
5767
|
+
id: string;
|
|
5768
|
+
} | null;
|
|
5769
|
+
isElement: boolean;
|
|
5770
|
+
properties: {
|
|
5771
|
+
id: string;
|
|
5772
|
+
container?: {
|
|
5773
|
+
id: string;
|
|
5774
|
+
} | null;
|
|
5775
|
+
sortOrder: number;
|
|
5776
|
+
alias: string;
|
|
5777
|
+
name: string;
|
|
5778
|
+
description?: string | null;
|
|
5779
|
+
dataType: {
|
|
5780
|
+
id: string;
|
|
5781
|
+
};
|
|
5782
|
+
variesByCulture: boolean;
|
|
5783
|
+
variesBySegment: boolean;
|
|
5784
|
+
validation: {
|
|
5785
|
+
mandatory: boolean;
|
|
5786
|
+
mandatoryMessage?: string | null;
|
|
5787
|
+
regEx?: string | null;
|
|
5788
|
+
regExMessage?: string | null;
|
|
5789
|
+
};
|
|
5790
|
+
appearance: {
|
|
5791
|
+
labelOnTop: boolean;
|
|
5792
|
+
};
|
|
5793
|
+
isSensitive: boolean;
|
|
5794
|
+
visibility: {
|
|
5795
|
+
memberCanView: boolean;
|
|
5796
|
+
memberCanEdit: boolean;
|
|
5797
|
+
};
|
|
5798
|
+
}[];
|
|
5799
|
+
containers: {
|
|
5800
|
+
id: string;
|
|
5801
|
+
parent?: {
|
|
5802
|
+
id: string;
|
|
5803
|
+
} | null;
|
|
5804
|
+
name?: string | null;
|
|
5805
|
+
type: string;
|
|
5806
|
+
sortOrder: number;
|
|
5807
|
+
}[];
|
|
5808
|
+
id: string;
|
|
5809
|
+
compositions: {
|
|
5810
|
+
memberType: {
|
|
5811
|
+
id: string;
|
|
5812
|
+
};
|
|
5813
|
+
compositionType: "Composition" | "Inheritance";
|
|
5814
|
+
}[];
|
|
5815
|
+
}[];
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5350
5818
|
export interface DeleteMemberTypeInput {
|
|
5351
5819
|
id: string;
|
|
5352
5820
|
}
|
|
@@ -5509,6 +5977,23 @@ export interface GetMemberTypeSiblingsOutput {
|
|
|
5509
5977
|
}[];
|
|
5510
5978
|
}
|
|
5511
5979
|
|
|
5980
|
+
export interface GetMemberTypeAncestorsBatchInput {
|
|
5981
|
+
id?: string[];
|
|
5982
|
+
}
|
|
5983
|
+
|
|
5984
|
+
export interface GetMemberTypeAncestorsBatchOutput {
|
|
5985
|
+
items: {
|
|
5986
|
+
id: string;
|
|
5987
|
+
ancestors: {
|
|
5988
|
+
id: string;
|
|
5989
|
+
flags: {
|
|
5990
|
+
alias: string;
|
|
5991
|
+
}[];
|
|
5992
|
+
name: string;
|
|
5993
|
+
}[];
|
|
5994
|
+
}[];
|
|
5995
|
+
}
|
|
5996
|
+
|
|
5512
5997
|
export interface SearchMemberTypeItemsInput {
|
|
5513
5998
|
query?: string;
|
|
5514
5999
|
/**
|
|
@@ -6117,7 +6602,7 @@ export interface GetSearcherBySearcherNameQueryOutput {
|
|
|
6117
6602
|
export interface GetServerStatusInput {}
|
|
6118
6603
|
|
|
6119
6604
|
export interface GetServerStatusOutput {
|
|
6120
|
-
serverStatus: "Unknown" | "Boot" | "Install" | "Upgrade" | "Run" | "BootFailed";
|
|
6605
|
+
serverStatus: "Unknown" | "Boot" | "Install" | "Upgrade" | "Upgrading" | "Run" | "BootFailed";
|
|
6121
6606
|
}
|
|
6122
6607
|
|
|
6123
6608
|
export interface GetServerConfigurationInput {}
|
|
@@ -6568,6 +7053,24 @@ export interface GetTemplateAncestorsOutput {
|
|
|
6568
7053
|
}[];
|
|
6569
7054
|
}
|
|
6570
7055
|
|
|
7056
|
+
export interface GetTemplateAncestorsBatchInput {
|
|
7057
|
+
id?: string[];
|
|
7058
|
+
}
|
|
7059
|
+
|
|
7060
|
+
export interface GetTemplateAncestorsBatchOutput {
|
|
7061
|
+
items: {
|
|
7062
|
+
id: string;
|
|
7063
|
+
ancestors: {
|
|
7064
|
+
id: string;
|
|
7065
|
+
flags: {
|
|
7066
|
+
alias: string;
|
|
7067
|
+
}[];
|
|
7068
|
+
name: string;
|
|
7069
|
+
alias: string;
|
|
7070
|
+
}[];
|
|
7071
|
+
}[];
|
|
7072
|
+
}
|
|
7073
|
+
|
|
6571
7074
|
export interface GetTemplateChildrenInput {
|
|
6572
7075
|
parentId?: string;
|
|
6573
7076
|
/**
|
|
@@ -7548,12 +8051,15 @@ export interface CmsTools {
|
|
|
7548
8051
|
"is-used-data-type": { input: IsUsedDataTypeInput; output: IsUsedDataTypeOutput };
|
|
7549
8052
|
"get-data-type": { input: GetDataTypeInput; output: GetDataTypeOutput };
|
|
7550
8053
|
"get-data-types-by-id-array": { input: GetDataTypesByIdArrayInput; output: GetDataTypesByIdArrayOutput };
|
|
8054
|
+
"get-data-type-batch": { input: GetDataTypeBatchInput; output: GetDataTypeBatchOutput };
|
|
7551
8055
|
"get-data-type-configuration": { input: GetDataTypeConfigurationInput; output: GetDataTypeConfigurationOutput };
|
|
7552
8056
|
"get-data-type-property-editor-template": { input: GetDataTypePropertyEditorTemplateInput; output: GetDataTypePropertyEditorTemplateOutput };
|
|
7553
8057
|
"get-data-type-root": { input: GetDataTypeRootInput; output: GetDataTypeRootOutput };
|
|
7554
8058
|
"get-data-type-children": { input: GetDataTypeChildrenInput; output: GetDataTypeChildrenOutput };
|
|
7555
8059
|
"get-data-type-siblings": { input: GetDataTypeSiblingsInput; output: GetDataTypeSiblingsOutput };
|
|
7556
8060
|
"get-data-type-ancestors": { input: GetDataTypeAncestorsInput; output: GetDataTypeAncestorsOutput };
|
|
8061
|
+
"get-data-type-ancestors-batch": { input: GetDataTypeAncestorsBatchInput; output: GetDataTypeAncestorsBatchOutput };
|
|
8062
|
+
"get-data-type-tree-search": { input: GetDataTypeTreeSearchInput; output: GetDataTypeTreeSearchOutput };
|
|
7557
8063
|
"get-all-data-types": { input: GetAllDataTypesInput; output: GetAllDataTypesOutput };
|
|
7558
8064
|
"delete-data-type": { input: DeleteDataTypeInput; output: unknown };
|
|
7559
8065
|
"create-data-type": { input: CreateDataTypeInput; output: CreateDataTypeOutput };
|
|
@@ -7636,12 +8142,14 @@ export interface CmsTools {
|
|
|
7636
8142
|
"get-document-root": { input: GetDocumentRootInput; output: GetDocumentRootOutput };
|
|
7637
8143
|
"get-document-children": { input: GetDocumentChildrenInput; output: GetDocumentChildrenOutput };
|
|
7638
8144
|
"get-document-ancestors": { input: GetDocumentAncestorsInput; output: GetDocumentAncestorsOutput };
|
|
8145
|
+
"get-document-ancestors-batch": { input: GetDocumentAncestorsBatchInput; output: GetDocumentAncestorsBatchOutput };
|
|
7639
8146
|
"get-document-siblings": { input: GetDocumentSiblingsInput; output: GetDocumentSiblingsOutput };
|
|
7640
8147
|
"get-document-recycle-bin-siblings": { input: GetDocumentRecycleBinSiblingsInput; output: GetDocumentRecycleBinSiblingsOutput };
|
|
7641
8148
|
"get-document-type-by-id": { input: GetDocumentTypeByIdInput; output: GetDocumentTypeByIdOutput };
|
|
7642
8149
|
"get-document-type-configuration": { input: GetDocumentTypeConfigurationInput; output: GetDocumentTypeConfigurationOutput };
|
|
7643
8150
|
"get-document-type-blueprint": { input: GetDocumentTypeBlueprintInput; output: GetDocumentTypeBlueprintOutput };
|
|
7644
8151
|
"get-document-types-by-id-array": { input: GetDocumentTypesByIdArrayInput; output: GetDocumentTypesByIdArrayOutput };
|
|
8152
|
+
"get-document-type-batch": { input: GetDocumentTypeBatchInput; output: GetDocumentTypeBatchOutput };
|
|
7645
8153
|
"get-document-type-available-compositions": { input: GetDocumentTypeAvailableCompositionsInput; output: GetDocumentTypeAvailableCompositionsOutput };
|
|
7646
8154
|
"get-document-type-composition-references": { input: GetDocumentTypeCompositionReferencesInput; output: GetDocumentTypeCompositionReferencesOutput };
|
|
7647
8155
|
"update-document-type": { input: UpdateDocumentTypeInput; output: unknown };
|
|
@@ -7659,6 +8167,9 @@ export interface CmsTools {
|
|
|
7659
8167
|
"update-document-type-folder": { input: UpdateDocumentTypeFolderInput; output: unknown };
|
|
7660
8168
|
"get-document-type-root": { input: GetDocumentTypeRootInput; output: GetDocumentTypeRootOutput };
|
|
7661
8169
|
"get-document-type-ancestors": { input: GetDocumentTypeAncestorsInput; output: GetDocumentTypeAncestorsOutput };
|
|
8170
|
+
"get-document-type-ancestors-batch": { input: GetDocumentTypeAncestorsBatchInput; output: GetDocumentTypeAncestorsBatchOutput };
|
|
8171
|
+
"get-document-type-tree-search": { input: GetDocumentTypeTreeSearchInput; output: GetDocumentTypeTreeSearchOutput };
|
|
8172
|
+
"get-document-type-allowed-parents": { input: GetDocumentTypeAllowedParentsInput; output: GetDocumentTypeAllowedParentsOutput };
|
|
7662
8173
|
"get-document-type-children": { input: GetDocumentTypeChildrenInput; output: GetDocumentTypeChildrenOutput };
|
|
7663
8174
|
"get-document-type-siblings": { input: GetDocumentTypeSiblingsInput; output: GetDocumentTypeSiblingsOutput };
|
|
7664
8175
|
"get-document-version": { input: GetDocumentVersionInput; output: GetDocumentVersionOutput };
|
|
@@ -7694,6 +8205,7 @@ export interface CmsTools {
|
|
|
7694
8205
|
"get-manifest-manifest-public": { input: GetManifestManifestPublicInput; output: GetManifestManifestPublicOutput };
|
|
7695
8206
|
"get-media-by-id": { input: GetMediaByIdInput; output: GetMediaByIdOutput };
|
|
7696
8207
|
"get-media-ancestors": { input: GetMediaAncestorsInput; output: GetMediaAncestorsOutput };
|
|
8208
|
+
"get-media-ancestors-batch": { input: GetMediaAncestorsBatchInput; output: GetMediaAncestorsBatchOutput };
|
|
7697
8209
|
"get-media-children": { input: GetMediaChildrenInput; output: GetMediaChildrenOutput };
|
|
7698
8210
|
"get-media-siblings": { input: GetMediaSiblingsInput; output: GetMediaSiblingsOutput };
|
|
7699
8211
|
"get-media-root": { input: GetMediaRootInput; output: GetMediaRootOutput };
|
|
@@ -7738,14 +8250,17 @@ export interface CmsTools {
|
|
|
7738
8250
|
"get-media-type-children": { input: GetMediaTypeChildrenInput; output: GetMediaTypeChildrenOutput };
|
|
7739
8251
|
"get-media-type-siblings": { input: GetMediaTypeSiblingsInput; output: GetMediaTypeSiblingsOutput };
|
|
7740
8252
|
"get-media-type-ancestors": { input: GetMediaTypeAncestorsInput; output: GetMediaTypeAncestorsOutput };
|
|
8253
|
+
"get-media-type-ancestors-batch": { input: GetMediaTypeAncestorsBatchInput; output: GetMediaTypeAncestorsBatchOutput };
|
|
7741
8254
|
"get-media-type-folders": { input: GetMediaTypeFoldersInput; output: GetMediaTypeFoldersOutput };
|
|
7742
8255
|
"get-media-type-by-id": { input: GetMediaTypeByIdInput; output: GetMediaTypeByIdOutput };
|
|
7743
8256
|
"get-media-type-by-ids": { input: GetMediaTypeByIdsInput; output: GetMediaTypeByIdsOutput };
|
|
8257
|
+
"get-media-type-batch": { input: GetMediaTypeBatchInput; output: GetMediaTypeBatchOutput };
|
|
7744
8258
|
"get-item-media-type": { input: GetItemMediaTypeInput; output: GetItemMediaTypeOutput };
|
|
7745
8259
|
"get-media-type-configuration": { input: GetMediaTypeConfigurationInput; output: GetMediaTypeConfigurationOutput };
|
|
7746
8260
|
"get-allowed-media-type": { input: GetAllowedMediaTypeInput; output: GetAllowedMediaTypeOutput };
|
|
7747
8261
|
"get-media-type-allowed-at-root": { input: GetMediaTypeAllowedAtRootInput; output: GetMediaTypeAllowedAtRootOutput };
|
|
7748
8262
|
"get-media-type-allowed-children": { input: GetMediaTypeAllowedChildrenInput; output: GetMediaTypeAllowedChildrenOutput };
|
|
8263
|
+
"get-media-type-allowed-parents": { input: GetMediaTypeAllowedParentsInput; output: GetMediaTypeAllowedParentsOutput };
|
|
7749
8264
|
"get-media-type-composition-references": { input: GetMediaTypeCompositionReferencesInput; output: GetMediaTypeCompositionReferencesOutput };
|
|
7750
8265
|
"get-member": { input: GetMemberInput; output: GetMemberOutput };
|
|
7751
8266
|
"create-member": { input: CreateMemberInput; output: CreateMemberOutput };
|
|
@@ -7758,6 +8273,7 @@ export interface CmsTools {
|
|
|
7758
8273
|
"get-member-by-id-referenced-descendants": { input: GetMemberByIdReferencedDescendantsInput; output: GetMemberByIdReferencedDescendantsOutput };
|
|
7759
8274
|
"find-member": { input: FindMemberInput; output: FindMemberOutput };
|
|
7760
8275
|
"get-item-member-search": { input: GetItemMemberSearchInput; output: GetItemMemberSearchOutput };
|
|
8276
|
+
"get-member-ancestors-batch": { input: GetMemberAncestorsBatchInput; output: GetMemberAncestorsBatchOutput };
|
|
7761
8277
|
"get-member-group": { input: GetMemberGroupInput; output: GetMemberGroupOutput };
|
|
7762
8278
|
"get-member-group-by-id-array": { input: GetMemberGroupByIdArrayInput; output: GetMemberGroupByIdArrayOutput };
|
|
7763
8279
|
"get-all-member-groups": { input: GetAllMemberGroupsInput; output: GetAllMemberGroupsOutput };
|
|
@@ -7768,6 +8284,7 @@ export interface CmsTools {
|
|
|
7768
8284
|
"get-member-type-by-id": { input: GetMemberTypeByIdInput; output: GetMemberTypeByIdOutput };
|
|
7769
8285
|
"create-member-type": { input: CreateMemberTypeInput; output: CreateMemberTypeOutput };
|
|
7770
8286
|
"get-member-types-by-id-array": { input: GetMemberTypesByIdArrayInput; output: GetMemberTypesByIdArrayOutput };
|
|
8287
|
+
"get-member-type-batch": { input: GetMemberTypeBatchInput; output: GetMemberTypeBatchOutput };
|
|
7771
8288
|
"delete-member-type": { input: DeleteMemberTypeInput; output: unknown };
|
|
7772
8289
|
"update-member-type": { input: UpdateMemberTypeInput; output: unknown };
|
|
7773
8290
|
"copy-member-type": { input: CopyMemberTypeInput; output: CopyMemberTypeOutput };
|
|
@@ -7776,6 +8293,7 @@ export interface CmsTools {
|
|
|
7776
8293
|
"get-member-type-configuration": { input: GetMemberTypeConfigurationInput; output: GetMemberTypeConfigurationOutput };
|
|
7777
8294
|
"get-member-type-root": { input: GetMemberTypeRootInput; output: GetMemberTypeRootOutput };
|
|
7778
8295
|
"get-member-type-siblings": { input: GetMemberTypeSiblingsInput; output: GetMemberTypeSiblingsOutput };
|
|
8296
|
+
"get-member-type-ancestors-batch": { input: GetMemberTypeAncestorsBatchInput; output: GetMemberTypeAncestorsBatchOutput };
|
|
7779
8297
|
"search-member-type-items": { input: SearchMemberTypeItemsInput; output: SearchMemberTypeItemsOutput };
|
|
7780
8298
|
"get-models-builder-dashboard": { input: GetModelsBuilderDashboardInput; output: GetModelsBuilderDashboardOutput };
|
|
7781
8299
|
"get-models-builder-status": { input: GetModelsBuilderStatusInput; output: GetModelsBuilderStatusOutput };
|
|
@@ -7851,6 +8369,7 @@ export interface CmsTools {
|
|
|
7851
8369
|
"execute-template-query": { input: ExecuteTemplateQueryInput; output: ExecuteTemplateQueryOutput };
|
|
7852
8370
|
"get-template-query-settings": { input: GetTemplateQuerySettingsInput; output: GetTemplateQuerySettingsOutput };
|
|
7853
8371
|
"get-template-ancestors": { input: GetTemplateAncestorsInput; output: GetTemplateAncestorsOutput };
|
|
8372
|
+
"get-template-ancestors-batch": { input: GetTemplateAncestorsBatchInput; output: GetTemplateAncestorsBatchOutput };
|
|
7854
8373
|
"get-template-children": { input: GetTemplateChildrenInput; output: GetTemplateChildrenOutput };
|
|
7855
8374
|
"get-template-root": { input: GetTemplateRootInput; output: GetTemplateRootOutput };
|
|
7856
8375
|
"get-template-search": { input: GetTemplateSearchInput; output: GetTemplateSearchOutput };
|