office-open 0.12.0 → 0.12.2
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/ai/index.mjs +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/convert/index.d.mts.map +1 -1
- package/dist/convert/index.mjs +14 -11
- package/dist/convert/index.mjs.map +1 -1
- package/dist/schemas/index.mjs +1 -1
- package/dist/{schemas-DhCWsZ8v.mjs → schemas-B400scMm.mjs} +1194 -32
- package/dist/{schemas-DhCWsZ8v.mjs.map → schemas-B400scMm.mjs.map} +1 -1
- package/package.json +6 -6
- package/schemas/docx.schema.json +626 -15
- package/schemas/pptx.schema.json +589 -3
- package/schemas/xlsx.schema.json +596 -8
package/schemas/pptx.schema.json
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
"$ref": "#/definitions/PresentationOptions",
|
|
4
4
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
5
5
|
"definitions": {
|
|
6
|
+
"AbsoluteSizeAnchorOptions": {
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"description": "Absolute anchor (cdr:absSizeAnchor): fixed EMU size at the `from` marker.",
|
|
9
|
+
"properties": {
|
|
10
|
+
"extent": {
|
|
11
|
+
"$ref": "#/definitions/UserShapeExtentOptions"
|
|
12
|
+
},
|
|
13
|
+
"from": {
|
|
14
|
+
"$ref": "#/definitions/UserShapeMarkerOptions"
|
|
15
|
+
},
|
|
16
|
+
"object": {
|
|
17
|
+
"$ref": "#/definitions/UserShapeObjectOptions"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"required": ["from", "extent", "object"],
|
|
21
|
+
"type": "object"
|
|
22
|
+
},
|
|
6
23
|
"AdjustHandle": {
|
|
7
24
|
"anyOf": [
|
|
8
25
|
{
|
|
@@ -2046,6 +2063,33 @@
|
|
|
2046
2063
|
},
|
|
2047
2064
|
"type": "object"
|
|
2048
2065
|
},
|
|
2066
|
+
"BlipFillOptions": {
|
|
2067
|
+
"additionalProperties": false,
|
|
2068
|
+
"description": "Options for blip fill properties.",
|
|
2069
|
+
"properties": {
|
|
2070
|
+
"blipEffects": {
|
|
2071
|
+
"$ref": "#/definitions/BlipEffectsOptions",
|
|
2072
|
+
"description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
|
|
2073
|
+
},
|
|
2074
|
+
"dpi": {
|
|
2075
|
+
"description": "DPI of the image",
|
|
2076
|
+
"type": "number"
|
|
2077
|
+
},
|
|
2078
|
+
"rotWithShape": {
|
|
2079
|
+
"description": "Whether the fill rotates with the shape",
|
|
2080
|
+
"type": "boolean"
|
|
2081
|
+
},
|
|
2082
|
+
"sourceRectangle": {
|
|
2083
|
+
"$ref": "#/definitions/SourceRectangleOptions",
|
|
2084
|
+
"description": "Source rectangle for cropping"
|
|
2085
|
+
},
|
|
2086
|
+
"tile": {
|
|
2087
|
+
"$ref": "#/definitions/TileOptions",
|
|
2088
|
+
"description": "Tile fill mode (if omitted, defaults to stretch)"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"type": "object"
|
|
2092
|
+
},
|
|
2049
2093
|
"BlurEffectOptions": {
|
|
2050
2094
|
"additionalProperties": false,
|
|
2051
2095
|
"description": "Blur effect options.",
|
|
@@ -3202,8 +3246,8 @@
|
|
|
3202
3246
|
"type": "boolean"
|
|
3203
3247
|
},
|
|
3204
3248
|
"userShapes": {
|
|
3205
|
-
"
|
|
3206
|
-
"
|
|
3249
|
+
"$ref": "#/definitions/ChartUserShapesOptions",
|
|
3250
|
+
"description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
|
|
3207
3251
|
},
|
|
3208
3252
|
"varyColors": {
|
|
3209
3253
|
"description": "Vary data-point colors (chart-group-level c:varyColors). Emitted only when set — the corpus is mixed and fresh output stays bare.",
|
|
@@ -3504,6 +3548,32 @@
|
|
|
3504
3548
|
],
|
|
3505
3549
|
"type": "string"
|
|
3506
3550
|
},
|
|
3551
|
+
"ChartUserShapesOptions": {
|
|
3552
|
+
"additionalProperties": false,
|
|
3553
|
+
"description": "User-drawn shapes layered over a chart: the c:userShapes reference on the chart space plus the companion part body the format compilers register.",
|
|
3554
|
+
"properties": {
|
|
3555
|
+
"anchors": {
|
|
3556
|
+
"description": "Anchored shapes (the cdr:userShapes part body).",
|
|
3557
|
+
"items": {
|
|
3558
|
+
"anyOf": [
|
|
3559
|
+
{
|
|
3560
|
+
"$ref": "#/definitions/RelativeSizeAnchorOptions"
|
|
3561
|
+
},
|
|
3562
|
+
{
|
|
3563
|
+
"$ref": "#/definitions/AbsoluteSizeAnchorOptions"
|
|
3564
|
+
}
|
|
3565
|
+
]
|
|
3566
|
+
},
|
|
3567
|
+
"type": "array"
|
|
3568
|
+
},
|
|
3569
|
+
"relationshipId": {
|
|
3570
|
+
"description": "Chart-part relationship id of the shapes part. Round-trips verbatim; fresh authoring omits it and the reference defaults to rId1 — set an unused id when the same chart also carries externalData.",
|
|
3571
|
+
"type": "string"
|
|
3572
|
+
}
|
|
3573
|
+
},
|
|
3574
|
+
"required": ["anchors"],
|
|
3575
|
+
"type": "object"
|
|
3576
|
+
},
|
|
3507
3577
|
"ChildOrder": {
|
|
3508
3578
|
"description": "(dgm:layoutNode `@chOrder`).",
|
|
3509
3579
|
"enum": ["b", "t"],
|
|
@@ -4477,9 +4547,66 @@
|
|
|
4477
4547
|
},
|
|
4478
4548
|
"DataLabelsOptions": {
|
|
4479
4549
|
"additionalProperties": false,
|
|
4550
|
+
"allOf": [
|
|
4551
|
+
{
|
|
4552
|
+
"if": {
|
|
4553
|
+
"properties": {
|
|
4554
|
+
"delete": {
|
|
4555
|
+
"const": true
|
|
4556
|
+
}
|
|
4557
|
+
},
|
|
4558
|
+
"required": ["delete"]
|
|
4559
|
+
},
|
|
4560
|
+
"then": {
|
|
4561
|
+
"not": {
|
|
4562
|
+
"anyOf": [
|
|
4563
|
+
{
|
|
4564
|
+
"required": ["numberFormat"]
|
|
4565
|
+
},
|
|
4566
|
+
{
|
|
4567
|
+
"required": ["shapeProperties"]
|
|
4568
|
+
},
|
|
4569
|
+
{
|
|
4570
|
+
"required": ["textProperties"]
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"required": ["position"]
|
|
4574
|
+
},
|
|
4575
|
+
{
|
|
4576
|
+
"required": ["showLegendKey"]
|
|
4577
|
+
},
|
|
4578
|
+
{
|
|
4579
|
+
"required": ["showVal"]
|
|
4580
|
+
},
|
|
4581
|
+
{
|
|
4582
|
+
"required": ["showCatName"]
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
"required": ["showSerName"]
|
|
4586
|
+
},
|
|
4587
|
+
{
|
|
4588
|
+
"required": ["showPercent"]
|
|
4589
|
+
},
|
|
4590
|
+
{
|
|
4591
|
+
"required": ["showBubbleSize"]
|
|
4592
|
+
},
|
|
4593
|
+
{
|
|
4594
|
+
"required": ["separator"]
|
|
4595
|
+
},
|
|
4596
|
+
{
|
|
4597
|
+
"required": ["showLeaderLines"]
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"required": ["leaderLines"]
|
|
4601
|
+
}
|
|
4602
|
+
]
|
|
4603
|
+
}
|
|
4604
|
+
}
|
|
4605
|
+
}
|
|
4606
|
+
],
|
|
4480
4607
|
"properties": {
|
|
4481
4608
|
"delete": {
|
|
4482
|
-
"description": "
|
|
4609
|
+
"description": "Drop every label for this series (c:delete). Choice vs the shared settings below: `true` ignores them all; `false` keeps labels on and emits its element only when no setting is set (round-trip).",
|
|
4483
4610
|
"type": "boolean"
|
|
4484
4611
|
},
|
|
4485
4612
|
"labels": {
|
|
@@ -6000,6 +6127,118 @@
|
|
|
6000
6127
|
"required": ["children"],
|
|
6001
6128
|
"type": "object"
|
|
6002
6129
|
},
|
|
6130
|
+
"GroupShapePropertiesOptions": {
|
|
6131
|
+
"additionalProperties": false,
|
|
6132
|
+
"description": "Group shape properties. Field order follows the XSD content model. The transform fields come from {@link GroupTransform2DOptions } (flat x/y/width/height/flip/rotation/childOffset/childExtent); the serializer emits them as a single a:xfrm group transform. The container-only `@bwMode` attribute and the wrapping tag are the caller's responsibility (mirrors shapePropertiesDesc).",
|
|
6133
|
+
"properties": {
|
|
6134
|
+
"childExtentHeight": {
|
|
6135
|
+
"anyOf": [
|
|
6136
|
+
{
|
|
6137
|
+
"type": "number"
|
|
6138
|
+
},
|
|
6139
|
+
{
|
|
6140
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6141
|
+
}
|
|
6142
|
+
]
|
|
6143
|
+
},
|
|
6144
|
+
"childExtentWidth": {
|
|
6145
|
+
"anyOf": [
|
|
6146
|
+
{
|
|
6147
|
+
"type": "number"
|
|
6148
|
+
},
|
|
6149
|
+
{
|
|
6150
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6151
|
+
}
|
|
6152
|
+
]
|
|
6153
|
+
},
|
|
6154
|
+
"childOffsetX": {
|
|
6155
|
+
"anyOf": [
|
|
6156
|
+
{
|
|
6157
|
+
"type": "number"
|
|
6158
|
+
},
|
|
6159
|
+
{
|
|
6160
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6161
|
+
}
|
|
6162
|
+
]
|
|
6163
|
+
},
|
|
6164
|
+
"childOffsetY": {
|
|
6165
|
+
"anyOf": [
|
|
6166
|
+
{
|
|
6167
|
+
"type": "number"
|
|
6168
|
+
},
|
|
6169
|
+
{
|
|
6170
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6171
|
+
}
|
|
6172
|
+
]
|
|
6173
|
+
},
|
|
6174
|
+
"effectDag": {
|
|
6175
|
+
"$ref": "#/definitions/EffectDagOptions"
|
|
6176
|
+
},
|
|
6177
|
+
"effects": {
|
|
6178
|
+
"$ref": "#/definitions/EffectListOptions",
|
|
6179
|
+
"description": "EG_EffectProperties (choice: a:effectDag | a:effectLst)."
|
|
6180
|
+
},
|
|
6181
|
+
"fill": {
|
|
6182
|
+
"$ref": "#/definitions/FillOptions",
|
|
6183
|
+
"description": "EG_FillProperties."
|
|
6184
|
+
},
|
|
6185
|
+
"flipHorizontal": {
|
|
6186
|
+
"type": "boolean"
|
|
6187
|
+
},
|
|
6188
|
+
"flipVertical": {
|
|
6189
|
+
"type": "boolean"
|
|
6190
|
+
},
|
|
6191
|
+
"height": {
|
|
6192
|
+
"anyOf": [
|
|
6193
|
+
{
|
|
6194
|
+
"type": "number"
|
|
6195
|
+
},
|
|
6196
|
+
{
|
|
6197
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6198
|
+
}
|
|
6199
|
+
]
|
|
6200
|
+
},
|
|
6201
|
+
"rotation": {
|
|
6202
|
+
"description": "Rotation angle in degrees (e.g., 45 = 45°).",
|
|
6203
|
+
"type": "number"
|
|
6204
|
+
},
|
|
6205
|
+
"scene3d": {
|
|
6206
|
+
"$ref": "#/definitions/Scene3DOptions",
|
|
6207
|
+
"description": "a:scene3d."
|
|
6208
|
+
},
|
|
6209
|
+
"width": {
|
|
6210
|
+
"anyOf": [
|
|
6211
|
+
{
|
|
6212
|
+
"type": "number"
|
|
6213
|
+
},
|
|
6214
|
+
{
|
|
6215
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6216
|
+
}
|
|
6217
|
+
]
|
|
6218
|
+
},
|
|
6219
|
+
"x": {
|
|
6220
|
+
"anyOf": [
|
|
6221
|
+
{
|
|
6222
|
+
"type": "number"
|
|
6223
|
+
},
|
|
6224
|
+
{
|
|
6225
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6226
|
+
}
|
|
6227
|
+
]
|
|
6228
|
+
},
|
|
6229
|
+
"y": {
|
|
6230
|
+
"anyOf": [
|
|
6231
|
+
{
|
|
6232
|
+
"type": "number"
|
|
6233
|
+
},
|
|
6234
|
+
{
|
|
6235
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
6236
|
+
}
|
|
6237
|
+
]
|
|
6238
|
+
}
|
|
6239
|
+
},
|
|
6240
|
+
"type": "object"
|
|
6241
|
+
},
|
|
6003
6242
|
"Guid": {
|
|
6004
6243
|
"description": "GUID in braced upper-case form (ST_Guid).",
|
|
6005
6244
|
"examples": ["{1DF903F5-8FC7-4C6A-9DF9-2AB1D10E6D84}"],
|
|
@@ -7597,6 +7836,34 @@
|
|
|
7597
7836
|
},
|
|
7598
7837
|
"type": "object"
|
|
7599
7838
|
},
|
|
7839
|
+
"NonVisualDrawingPropertiesOptions": {
|
|
7840
|
+
"additionalProperties": false,
|
|
7841
|
+
"description": "Mirrors a: — name/descr/title/hidden. id is runtime; hyperlinks stay package-side.",
|
|
7842
|
+
"properties": {
|
|
7843
|
+
"creationId": {
|
|
7844
|
+
"$ref": "#/definitions/Guid",
|
|
7845
|
+
"description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
|
|
7846
|
+
},
|
|
7847
|
+
"description": {
|
|
7848
|
+
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
7849
|
+
},
|
|
7850
|
+
"ext": {
|
|
7851
|
+
"$ref": "#/definitions/PictureOptions/properties/ext"
|
|
7852
|
+
},
|
|
7853
|
+
"hidden": {
|
|
7854
|
+
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
7855
|
+
"type": "boolean"
|
|
7856
|
+
},
|
|
7857
|
+
"name": {
|
|
7858
|
+
"$ref": "#/definitions/ShapeOptions/properties/name"
|
|
7859
|
+
},
|
|
7860
|
+
"title": {
|
|
7861
|
+
"description": "XSD `@title`.",
|
|
7862
|
+
"type": "string"
|
|
7863
|
+
}
|
|
7864
|
+
},
|
|
7865
|
+
"type": "object"
|
|
7866
|
+
},
|
|
7600
7867
|
"NormalAutofitOptions": {
|
|
7601
7868
|
"additionalProperties": false,
|
|
7602
7869
|
"description": "Normal autofit options.",
|
|
@@ -9914,6 +10181,23 @@
|
|
|
9914
10181
|
},
|
|
9915
10182
|
"type": "object"
|
|
9916
10183
|
},
|
|
10184
|
+
"RelativeSizeAnchorOptions": {
|
|
10185
|
+
"additionalProperties": false,
|
|
10186
|
+
"description": "Relative anchor (cdr:relSizeAnchor): the object spans from `from` to `to`.",
|
|
10187
|
+
"properties": {
|
|
10188
|
+
"from": {
|
|
10189
|
+
"$ref": "#/definitions/UserShapeMarkerOptions"
|
|
10190
|
+
},
|
|
10191
|
+
"object": {
|
|
10192
|
+
"$ref": "#/definitions/UserShapeObjectOptions"
|
|
10193
|
+
},
|
|
10194
|
+
"to": {
|
|
10195
|
+
"$ref": "#/definitions/UserShapeMarkerOptions"
|
|
10196
|
+
}
|
|
10197
|
+
},
|
|
10198
|
+
"required": ["from", "to", "object"],
|
|
10199
|
+
"type": "object"
|
|
10200
|
+
},
|
|
9917
10201
|
"ResizeHandles": {
|
|
9918
10202
|
"description": "(dgm:resizeHandles `@val`).",
|
|
9919
10203
|
"enum": ["exact", "relative"],
|
|
@@ -13221,6 +13505,62 @@
|
|
|
13221
13505
|
},
|
|
13222
13506
|
"type": "object"
|
|
13223
13507
|
},
|
|
13508
|
+
"Transform2DOptions": {
|
|
13509
|
+
"additionalProperties": false,
|
|
13510
|
+
"properties": {
|
|
13511
|
+
"flipHorizontal": {
|
|
13512
|
+
"type": "boolean"
|
|
13513
|
+
},
|
|
13514
|
+
"flipVertical": {
|
|
13515
|
+
"type": "boolean"
|
|
13516
|
+
},
|
|
13517
|
+
"height": {
|
|
13518
|
+
"anyOf": [
|
|
13519
|
+
{
|
|
13520
|
+
"type": "number"
|
|
13521
|
+
},
|
|
13522
|
+
{
|
|
13523
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
13524
|
+
}
|
|
13525
|
+
]
|
|
13526
|
+
},
|
|
13527
|
+
"rotation": {
|
|
13528
|
+
"description": "Rotation angle in degrees (e.g., 45 = 45°).",
|
|
13529
|
+
"type": "number"
|
|
13530
|
+
},
|
|
13531
|
+
"width": {
|
|
13532
|
+
"anyOf": [
|
|
13533
|
+
{
|
|
13534
|
+
"type": "number"
|
|
13535
|
+
},
|
|
13536
|
+
{
|
|
13537
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
13538
|
+
}
|
|
13539
|
+
]
|
|
13540
|
+
},
|
|
13541
|
+
"x": {
|
|
13542
|
+
"anyOf": [
|
|
13543
|
+
{
|
|
13544
|
+
"type": "number"
|
|
13545
|
+
},
|
|
13546
|
+
{
|
|
13547
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
13548
|
+
}
|
|
13549
|
+
]
|
|
13550
|
+
},
|
|
13551
|
+
"y": {
|
|
13552
|
+
"anyOf": [
|
|
13553
|
+
{
|
|
13554
|
+
"type": "number"
|
|
13555
|
+
},
|
|
13556
|
+
{
|
|
13557
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
13558
|
+
}
|
|
13559
|
+
]
|
|
13560
|
+
}
|
|
13561
|
+
},
|
|
13562
|
+
"type": "object"
|
|
13563
|
+
},
|
|
13224
13564
|
"TransformEffectOptions": {
|
|
13225
13565
|
"additionalProperties": false,
|
|
13226
13566
|
"description": "Transform effect — scale, skew, translate.",
|
|
@@ -13436,6 +13776,252 @@
|
|
|
13436
13776
|
"pattern": "^-?(\\d+(\\.\\d+)?|\\.\\d+)(mm|cm|in|pt|pc|pi|px)$",
|
|
13437
13777
|
"type": "string"
|
|
13438
13778
|
},
|
|
13779
|
+
"UserShapeConnectorOptions": {
|
|
13780
|
+
"additionalProperties": false,
|
|
13781
|
+
"properties": {
|
|
13782
|
+
"id": {
|
|
13783
|
+
"description": "cNvPr drawing id (schema-required)",
|
|
13784
|
+
"type": "number"
|
|
13785
|
+
},
|
|
13786
|
+
"macro": {
|
|
13787
|
+
"description": "Macro reference (`@macro`)",
|
|
13788
|
+
"type": "string"
|
|
13789
|
+
},
|
|
13790
|
+
"nonVisualProperties": {
|
|
13791
|
+
"$ref": "#/definitions/NonVisualDrawingPropertiesOptions"
|
|
13792
|
+
},
|
|
13793
|
+
"published": {
|
|
13794
|
+
"description": "Published as a server-side shape (`@fPublished`, default false)",
|
|
13795
|
+
"type": "boolean"
|
|
13796
|
+
},
|
|
13797
|
+
"shapeProperties": {
|
|
13798
|
+
"$ref": "#/definitions/ShapePropertiesOptions"
|
|
13799
|
+
},
|
|
13800
|
+
"style": {
|
|
13801
|
+
"$ref": "#/definitions/DefaultShapeStyleOptions"
|
|
13802
|
+
},
|
|
13803
|
+
"type": {
|
|
13804
|
+
"const": "connector",
|
|
13805
|
+
"type": "string"
|
|
13806
|
+
}
|
|
13807
|
+
},
|
|
13808
|
+
"required": ["id", "shapeProperties", "type"],
|
|
13809
|
+
"type": "object"
|
|
13810
|
+
},
|
|
13811
|
+
"UserShapeExtentOptions": {
|
|
13812
|
+
"additionalProperties": false,
|
|
13813
|
+
"description": "Anchor extent (a:ext): width/height in EMU.",
|
|
13814
|
+
"properties": {
|
|
13815
|
+
"height": {
|
|
13816
|
+
"type": "number"
|
|
13817
|
+
},
|
|
13818
|
+
"width": {
|
|
13819
|
+
"type": "number"
|
|
13820
|
+
}
|
|
13821
|
+
},
|
|
13822
|
+
"required": ["width", "height"],
|
|
13823
|
+
"type": "object"
|
|
13824
|
+
},
|
|
13825
|
+
"UserShapeGraphicFrameOptions": {
|
|
13826
|
+
"additionalProperties": false,
|
|
13827
|
+
"properties": {
|
|
13828
|
+
"graphic": {
|
|
13829
|
+
"description": "Verbatim a:graphic XML payload. The graphic contents (chart/table references) are package-wired; the part body carries them unchanged.",
|
|
13830
|
+
"type": "string"
|
|
13831
|
+
},
|
|
13832
|
+
"graphicFrameLocks": {
|
|
13833
|
+
"anyOf": [
|
|
13834
|
+
{
|
|
13835
|
+
"$ref": "#/definitions/GraphicFrameLockingOptions"
|
|
13836
|
+
},
|
|
13837
|
+
{
|
|
13838
|
+
"type": "null"
|
|
13839
|
+
}
|
|
13840
|
+
],
|
|
13841
|
+
"description": "Frame locking flags (cdr:cNvGraphicFramePr)"
|
|
13842
|
+
},
|
|
13843
|
+
"id": {
|
|
13844
|
+
"description": "cNvPr drawing id (schema-required)",
|
|
13845
|
+
"type": "number"
|
|
13846
|
+
},
|
|
13847
|
+
"macro": {
|
|
13848
|
+
"description": "Macro reference (`@macro`)",
|
|
13849
|
+
"type": "string"
|
|
13850
|
+
},
|
|
13851
|
+
"nonVisualProperties": {
|
|
13852
|
+
"$ref": "#/definitions/NonVisualDrawingPropertiesOptions"
|
|
13853
|
+
},
|
|
13854
|
+
"published": {
|
|
13855
|
+
"description": "Published as a server-side shape (`@fPublished`, default false)",
|
|
13856
|
+
"type": "boolean"
|
|
13857
|
+
},
|
|
13858
|
+
"transform": {
|
|
13859
|
+
"$ref": "#/definitions/Transform2DOptions",
|
|
13860
|
+
"description": "Placement transform (cdr:xfrm)"
|
|
13861
|
+
},
|
|
13862
|
+
"type": {
|
|
13863
|
+
"const": "graphicFrame",
|
|
13864
|
+
"type": "string"
|
|
13865
|
+
}
|
|
13866
|
+
},
|
|
13867
|
+
"required": ["graphic", "id", "transform", "type"],
|
|
13868
|
+
"type": "object"
|
|
13869
|
+
},
|
|
13870
|
+
"UserShapeGroupOptions": {
|
|
13871
|
+
"additionalProperties": false,
|
|
13872
|
+
"properties": {
|
|
13873
|
+
"children": {
|
|
13874
|
+
"items": {
|
|
13875
|
+
"$ref": "#/definitions/UserShapeObjectOptions"
|
|
13876
|
+
},
|
|
13877
|
+
"type": "array"
|
|
13878
|
+
},
|
|
13879
|
+
"groupShapeProperties": {
|
|
13880
|
+
"$ref": "#/definitions/GroupShapePropertiesOptions"
|
|
13881
|
+
},
|
|
13882
|
+
"id": {
|
|
13883
|
+
"description": "cNvPr drawing id (schema-required)",
|
|
13884
|
+
"type": "number"
|
|
13885
|
+
},
|
|
13886
|
+
"macro": {
|
|
13887
|
+
"description": "Macro reference (`@macro`)",
|
|
13888
|
+
"type": "string"
|
|
13889
|
+
},
|
|
13890
|
+
"nonVisualProperties": {
|
|
13891
|
+
"$ref": "#/definitions/NonVisualDrawingPropertiesOptions"
|
|
13892
|
+
},
|
|
13893
|
+
"published": {
|
|
13894
|
+
"description": "Published as a server-side shape (`@fPublished`, default false)",
|
|
13895
|
+
"type": "boolean"
|
|
13896
|
+
},
|
|
13897
|
+
"type": {
|
|
13898
|
+
"const": "group",
|
|
13899
|
+
"type": "string"
|
|
13900
|
+
}
|
|
13901
|
+
},
|
|
13902
|
+
"required": ["children", "groupShapeProperties", "id", "type"],
|
|
13903
|
+
"type": "object"
|
|
13904
|
+
},
|
|
13905
|
+
"UserShapeMarkerOptions": {
|
|
13906
|
+
"additionalProperties": false,
|
|
13907
|
+
"description": "Anchor marker: x/y as 0.0–1.0 fractions of the chart area.",
|
|
13908
|
+
"properties": {
|
|
13909
|
+
"x": {
|
|
13910
|
+
"type": "number"
|
|
13911
|
+
},
|
|
13912
|
+
"y": {
|
|
13913
|
+
"type": "number"
|
|
13914
|
+
}
|
|
13915
|
+
},
|
|
13916
|
+
"required": ["x", "y"],
|
|
13917
|
+
"type": "object"
|
|
13918
|
+
},
|
|
13919
|
+
"UserShapeObjectOptions": {
|
|
13920
|
+
"anyOf": [
|
|
13921
|
+
{
|
|
13922
|
+
"$ref": "#/definitions/UserShapeShapeOptions"
|
|
13923
|
+
},
|
|
13924
|
+
{
|
|
13925
|
+
"$ref": "#/definitions/UserShapeConnectorOptions"
|
|
13926
|
+
},
|
|
13927
|
+
{
|
|
13928
|
+
"$ref": "#/definitions/UserShapePictureOptions"
|
|
13929
|
+
},
|
|
13930
|
+
{
|
|
13931
|
+
"$ref": "#/definitions/UserShapeGraphicFrameOptions"
|
|
13932
|
+
},
|
|
13933
|
+
{
|
|
13934
|
+
"$ref": "#/definitions/UserShapeGroupOptions"
|
|
13935
|
+
}
|
|
13936
|
+
]
|
|
13937
|
+
},
|
|
13938
|
+
"UserShapePictureOptions": {
|
|
13939
|
+
"additionalProperties": false,
|
|
13940
|
+
"properties": {
|
|
13941
|
+
"blipFill": {
|
|
13942
|
+
"$ref": "#/definitions/BlipFillOptions"
|
|
13943
|
+
},
|
|
13944
|
+
"id": {
|
|
13945
|
+
"description": "cNvPr drawing id (schema-required)",
|
|
13946
|
+
"type": "number"
|
|
13947
|
+
},
|
|
13948
|
+
"macro": {
|
|
13949
|
+
"description": "Macro reference (`@macro`)",
|
|
13950
|
+
"type": "string"
|
|
13951
|
+
},
|
|
13952
|
+
"nonVisualProperties": {
|
|
13953
|
+
"$ref": "#/definitions/NonVisualDrawingPropertiesOptions"
|
|
13954
|
+
},
|
|
13955
|
+
"published": {
|
|
13956
|
+
"description": "Published as a server-side shape (`@fPublished`, default false)",
|
|
13957
|
+
"type": "boolean"
|
|
13958
|
+
},
|
|
13959
|
+
"referenceId": {
|
|
13960
|
+
"description": "Image reference key (a:blip r:embed via the relationship placeholder)",
|
|
13961
|
+
"type": "string"
|
|
13962
|
+
},
|
|
13963
|
+
"shapeProperties": {
|
|
13964
|
+
"$ref": "#/definitions/ShapePropertiesOptions"
|
|
13965
|
+
},
|
|
13966
|
+
"style": {
|
|
13967
|
+
"$ref": "#/definitions/DefaultShapeStyleOptions"
|
|
13968
|
+
},
|
|
13969
|
+
"type": {
|
|
13970
|
+
"const": "picture",
|
|
13971
|
+
"type": "string"
|
|
13972
|
+
}
|
|
13973
|
+
},
|
|
13974
|
+
"required": ["id", "referenceId", "shapeProperties", "type"],
|
|
13975
|
+
"type": "object"
|
|
13976
|
+
},
|
|
13977
|
+
"UserShapeShapeOptions": {
|
|
13978
|
+
"additionalProperties": false,
|
|
13979
|
+
"properties": {
|
|
13980
|
+
"id": {
|
|
13981
|
+
"description": "cNvPr drawing id (schema-required)",
|
|
13982
|
+
"type": "number"
|
|
13983
|
+
},
|
|
13984
|
+
"locksText": {
|
|
13985
|
+
"description": "Text locking (`@fLocksText`, default true)",
|
|
13986
|
+
"type": "boolean"
|
|
13987
|
+
},
|
|
13988
|
+
"macro": {
|
|
13989
|
+
"description": "Macro reference (`@macro`)",
|
|
13990
|
+
"type": "string"
|
|
13991
|
+
},
|
|
13992
|
+
"nonVisualProperties": {
|
|
13993
|
+
"$ref": "#/definitions/NonVisualDrawingPropertiesOptions",
|
|
13994
|
+
"description": "cNvPr — id is required by the schema"
|
|
13995
|
+
},
|
|
13996
|
+
"published": {
|
|
13997
|
+
"description": "Published as a server-side shape (`@fPublished`, default false)",
|
|
13998
|
+
"type": "boolean"
|
|
13999
|
+
},
|
|
14000
|
+
"shapeProperties": {
|
|
14001
|
+
"$ref": "#/definitions/ShapePropertiesOptions"
|
|
14002
|
+
},
|
|
14003
|
+
"style": {
|
|
14004
|
+
"$ref": "#/definitions/DefaultShapeStyleOptions"
|
|
14005
|
+
},
|
|
14006
|
+
"textBody": {
|
|
14007
|
+
"$ref": "#/definitions/TextBodyOptions"
|
|
14008
|
+
},
|
|
14009
|
+
"textBox": {
|
|
14010
|
+
"description": "Text-box marker (cdr:cNvSpPr `@txBox`)",
|
|
14011
|
+
"type": "boolean"
|
|
14012
|
+
},
|
|
14013
|
+
"textLink": {
|
|
14014
|
+
"description": "Formula linking the text to a cell (`@textlink`)",
|
|
14015
|
+
"type": "string"
|
|
14016
|
+
},
|
|
14017
|
+
"type": {
|
|
14018
|
+
"const": "shape",
|
|
14019
|
+
"type": "string"
|
|
14020
|
+
}
|
|
14021
|
+
},
|
|
14022
|
+
"required": ["id", "shapeProperties", "type"],
|
|
14023
|
+
"type": "object"
|
|
14024
|
+
},
|
|
13439
14025
|
"VariableListOptions": {
|
|
13440
14026
|
"additionalProperties": false,
|
|
13441
14027
|
"description": "dgm:varLst.",
|