office-open 0.12.2 → 0.13.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/README.md +18 -3
- 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 +67 -65
- package/dist/convert/index.mjs.map +1 -1
- package/dist/schemas/index.mjs +1 -1
- package/dist/{schemas-B400scMm.mjs → schemas-LxuRToZl.mjs} +535 -533
- package/dist/{schemas-B400scMm.mjs.map → schemas-LxuRToZl.mjs.map} +1 -1
- package/package.json +8 -7
- package/schemas/docx.schema.json +188 -174
- package/schemas/pptx.schema.json +524 -486
- package/schemas/xlsx.schema.json +146 -158
package/schemas/pptx.schema.json
CHANGED
|
@@ -1436,7 +1436,7 @@
|
|
|
1436
1436
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
1437
1437
|
},
|
|
1438
1438
|
"ext": {
|
|
1439
|
-
"$ref": "#/definitions/
|
|
1439
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
1440
1440
|
},
|
|
1441
1441
|
"fileName": {
|
|
1442
1442
|
"$ref": "#/definitions/VideoFrameOptions/properties/fileName"
|
|
@@ -2071,6 +2071,10 @@
|
|
|
2071
2071
|
"$ref": "#/definitions/BlipEffectsOptions",
|
|
2072
2072
|
"description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
|
|
2073
2073
|
},
|
|
2074
|
+
"compression": {
|
|
2075
|
+
"$ref": "#/definitions/BlipCompression",
|
|
2076
|
+
"description": "Compression state, lifted from the a:blip child's"
|
|
2077
|
+
},
|
|
2074
2078
|
"dpi": {
|
|
2075
2079
|
"description": "DPI of the image",
|
|
2076
2080
|
"type": "number"
|
|
@@ -2332,7 +2336,7 @@
|
|
|
2332
2336
|
"$ref": "#/definitions/ChartSeriesData/properties/order"
|
|
2333
2337
|
},
|
|
2334
2338
|
"pictureOptions": {
|
|
2335
|
-
"$ref": "#/definitions/
|
|
2339
|
+
"$ref": "#/definitions/ChartPictureOptions",
|
|
2336
2340
|
"description": "Picture-fill options (c:pictureOptions, bar/area)."
|
|
2337
2341
|
},
|
|
2338
2342
|
"shape": {
|
|
@@ -2704,9 +2708,8 @@
|
|
|
2704
2708
|
"description": "Hex color string sugar, or a full fill (scheme colors, gradients)."
|
|
2705
2709
|
},
|
|
2706
2710
|
"dashStyle": {
|
|
2707
|
-
"
|
|
2708
|
-
"
|
|
2709
|
-
"type": "string"
|
|
2711
|
+
"$ref": "#/definitions/PresetDash",
|
|
2712
|
+
"description": "Dash pattern sugar — same value set as `OutlineOptions.dash`; \"solid\" = a continuous line."
|
|
2710
2713
|
},
|
|
2711
2714
|
"outline": {
|
|
2712
2715
|
"$ref": "#/definitions/OutlineOptions",
|
|
@@ -3361,6 +3364,29 @@
|
|
|
3361
3364
|
},
|
|
3362
3365
|
"type": "object"
|
|
3363
3366
|
},
|
|
3367
|
+
"ChartPictureOptions": {
|
|
3368
|
+
"additionalProperties": false,
|
|
3369
|
+
"description": "Picture-fill options for bar/area series.",
|
|
3370
|
+
"properties": {
|
|
3371
|
+
"applyToEnd": {
|
|
3372
|
+
"type": "boolean"
|
|
3373
|
+
},
|
|
3374
|
+
"applyToFront": {
|
|
3375
|
+
"type": "boolean"
|
|
3376
|
+
},
|
|
3377
|
+
"applyToSides": {
|
|
3378
|
+
"type": "boolean"
|
|
3379
|
+
},
|
|
3380
|
+
"pictureFormat": {
|
|
3381
|
+
"$ref": "#/definitions/PictureFormat"
|
|
3382
|
+
},
|
|
3383
|
+
"pictureStackUnit": {
|
|
3384
|
+
"description": "Stack unit (c:pictureStackUnit val).",
|
|
3385
|
+
"type": "number"
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3388
|
+
"type": "object"
|
|
3389
|
+
},
|
|
3364
3390
|
"ChartPivotFormatOptions": {
|
|
3365
3391
|
"additionalProperties": false,
|
|
3366
3392
|
"description": "Per-series pivot format override.",
|
|
@@ -3436,7 +3462,7 @@
|
|
|
3436
3462
|
"type": "number"
|
|
3437
3463
|
},
|
|
3438
3464
|
"pictureOptions": {
|
|
3439
|
-
"$ref": "#/definitions/
|
|
3465
|
+
"$ref": "#/definitions/ChartPictureOptions",
|
|
3440
3466
|
"description": "Picture-fill options (c:pictureOptions, bar/area)."
|
|
3441
3467
|
},
|
|
3442
3468
|
"shape": {
|
|
@@ -3981,11 +4007,6 @@
|
|
|
3981
4007
|
"enum": ["single", "double", "thickThin", "thinThick", "triple"],
|
|
3982
4008
|
"type": "string"
|
|
3983
4009
|
},
|
|
3984
|
-
"CompoundLineType": {
|
|
3985
|
-
"description": "Compound line type (,",
|
|
3986
|
-
"enum": ["single", "double", "thickThin", "thinThick", "triple"],
|
|
3987
|
-
"type": "string"
|
|
3988
|
-
},
|
|
3989
4010
|
"ConditionFunction": {
|
|
3990
4011
|
"description": "(dgm:if `@func`).",
|
|
3991
4012
|
"enum": ["cnt", "pos", "revPos", "posEven", "posOdd", "var", "depth", "maxDepth"],
|
|
@@ -4016,7 +4037,7 @@
|
|
|
4016
4037
|
},
|
|
4017
4038
|
"ConnectorOptions": {
|
|
4018
4039
|
"additionalProperties": false,
|
|
4019
|
-
"description": "Connector options for pptx slides (p:cxnSp). The cNvPr + locking + endpoint connection fields come from `BaseConnectorOptions`; the rest is the pptx two-endpoint positioning model plus
|
|
4040
|
+
"description": "Connector options for pptx slides (p:cxnSp). The cNvPr + locking + endpoint connection fields come from `BaseConnectorOptions`; the rest is the pptx two-endpoint positioning model plus the connector paint.",
|
|
4020
4041
|
"properties": {
|
|
4021
4042
|
"creationId": {
|
|
4022
4043
|
"$ref": "#/definitions/Guid",
|
|
@@ -4025,30 +4046,12 @@
|
|
|
4025
4046
|
"description": {
|
|
4026
4047
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
4027
4048
|
},
|
|
4028
|
-
"effects": {
|
|
4029
|
-
"$ref": "#/definitions/EffectListOptions",
|
|
4030
|
-
"description": "Effect list (a:effectLst) inside spPr. An empty object emits the bare element."
|
|
4031
|
-
},
|
|
4032
4049
|
"endConnection": {
|
|
4033
4050
|
"$ref": "#/definitions/EndpointConnectionOptions",
|
|
4034
4051
|
"description": "a:endCxn — end endpoint glued to a shape connection site."
|
|
4035
4052
|
},
|
|
4036
4053
|
"ext": {
|
|
4037
|
-
"$ref": "#/definitions/
|
|
4038
|
-
},
|
|
4039
|
-
"fill": {
|
|
4040
|
-
"$ref": "#/definitions/FillOptions"
|
|
4041
|
-
},
|
|
4042
|
-
"geometry": {
|
|
4043
|
-
"anyOf": [
|
|
4044
|
-
{
|
|
4045
|
-
"$ref": "#/definitions/ShapeType"
|
|
4046
|
-
},
|
|
4047
|
-
{
|
|
4048
|
-
"$ref": "#/definitions/PresetGeometryOptions"
|
|
4049
|
-
}
|
|
4050
|
-
],
|
|
4051
|
-
"description": "Connector preset geometry (a:prstGeom"
|
|
4054
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
4052
4055
|
},
|
|
4053
4056
|
"hidden": {
|
|
4054
4057
|
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
@@ -4064,16 +4067,9 @@
|
|
|
4064
4067
|
"name": {
|
|
4065
4068
|
"$ref": "#/definitions/ShapeOptions/properties/name"
|
|
4066
4069
|
},
|
|
4067
|
-
"
|
|
4068
|
-
"$ref": "#/definitions/
|
|
4069
|
-
|
|
4070
|
-
"scene3d": {
|
|
4071
|
-
"$ref": "#/definitions/Scene3DOptions",
|
|
4072
|
-
"description": "3D scene (a:scene3d) inside spPr."
|
|
4073
|
-
},
|
|
4074
|
-
"shape3d": {
|
|
4075
|
-
"$ref": "#/definitions/Shape3DOptions",
|
|
4076
|
-
"description": "3D shape properties (a:sp3d) inside spPr."
|
|
4070
|
+
"properties": {
|
|
4071
|
+
"$ref": "#/definitions/ConnectorShapeProperties",
|
|
4072
|
+
"description": "Connector paint (a:spPr children): geometry/fill/outline/effects/3D. The endpoint model defaults to \"line\"; source connectors often use bentConnector/elbowConnector forms with adjusted values. Endpoints stay top-level."
|
|
4077
4073
|
},
|
|
4078
4074
|
"startConnection": {
|
|
4079
4075
|
"$ref": "#/definitions/EndpointConnectionOptions",
|
|
@@ -4130,6 +4126,46 @@
|
|
|
4130
4126
|
},
|
|
4131
4127
|
"type": "object"
|
|
4132
4128
|
},
|
|
4129
|
+
"ConnectorShapeProperties": {
|
|
4130
|
+
"additionalProperties": false,
|
|
4131
|
+
"description": "Connector paint adds the preset geometry to the shared endpoint paint.",
|
|
4132
|
+
"properties": {
|
|
4133
|
+
"effects": {
|
|
4134
|
+
"$ref": "#/definitions/EffectListOptions"
|
|
4135
|
+
},
|
|
4136
|
+
"fill": {
|
|
4137
|
+
"anyOf": [
|
|
4138
|
+
{
|
|
4139
|
+
"$ref": "#/definitions/FillOptions"
|
|
4140
|
+
},
|
|
4141
|
+
{
|
|
4142
|
+
"type": "null"
|
|
4143
|
+
}
|
|
4144
|
+
]
|
|
4145
|
+
},
|
|
4146
|
+
"geometry": {
|
|
4147
|
+
"anyOf": [
|
|
4148
|
+
{
|
|
4149
|
+
"$ref": "#/definitions/ShapeType"
|
|
4150
|
+
},
|
|
4151
|
+
{
|
|
4152
|
+
"$ref": "#/definitions/PresetGeometryOptions"
|
|
4153
|
+
}
|
|
4154
|
+
],
|
|
4155
|
+
"description": "Connector preset geometry (a:prstGeom"
|
|
4156
|
+
},
|
|
4157
|
+
"outline": {
|
|
4158
|
+
"$ref": "#/definitions/OutlineOptions"
|
|
4159
|
+
},
|
|
4160
|
+
"scene3d": {
|
|
4161
|
+
"$ref": "#/definitions/Scene3DOptions"
|
|
4162
|
+
},
|
|
4163
|
+
"shape3d": {
|
|
4164
|
+
"$ref": "#/definitions/Shape3DOptions"
|
|
4165
|
+
}
|
|
4166
|
+
},
|
|
4167
|
+
"type": "object"
|
|
4168
|
+
},
|
|
4133
4169
|
"ConstraintOperator": {
|
|
4134
4170
|
"description": "(dgm:constr `@op`).",
|
|
4135
4171
|
"enum": ["none", "equ", "gte", "lte"],
|
|
@@ -4704,7 +4740,7 @@
|
|
|
4704
4740
|
"$ref": "#/definitions/MarkerOptions"
|
|
4705
4741
|
},
|
|
4706
4742
|
"pictureOptions": {
|
|
4707
|
-
"$ref": "#/definitions/
|
|
4743
|
+
"$ref": "#/definitions/ChartPictureOptions"
|
|
4708
4744
|
},
|
|
4709
4745
|
"shapeProperties": {
|
|
4710
4746
|
"$ref": "#/definitions/ShapePropertiesOptions",
|
|
@@ -5269,6 +5305,35 @@
|
|
|
5269
5305
|
"required": ["id", "index"],
|
|
5270
5306
|
"type": "object"
|
|
5271
5307
|
},
|
|
5308
|
+
"EndpointShapeProperties": {
|
|
5309
|
+
"additionalProperties": false,
|
|
5310
|
+
"description": "spPr paint children carried by endpoint-model shapes (p:sp line, p:cxnSp).",
|
|
5311
|
+
"properties": {
|
|
5312
|
+
"effects": {
|
|
5313
|
+
"$ref": "#/definitions/EffectListOptions"
|
|
5314
|
+
},
|
|
5315
|
+
"fill": {
|
|
5316
|
+
"anyOf": [
|
|
5317
|
+
{
|
|
5318
|
+
"$ref": "#/definitions/FillOptions"
|
|
5319
|
+
},
|
|
5320
|
+
{
|
|
5321
|
+
"type": "null"
|
|
5322
|
+
}
|
|
5323
|
+
]
|
|
5324
|
+
},
|
|
5325
|
+
"outline": {
|
|
5326
|
+
"$ref": "#/definitions/OutlineOptions"
|
|
5327
|
+
},
|
|
5328
|
+
"scene3d": {
|
|
5329
|
+
"$ref": "#/definitions/Scene3DOptions"
|
|
5330
|
+
},
|
|
5331
|
+
"shape3d": {
|
|
5332
|
+
"$ref": "#/definitions/Shape3DOptions"
|
|
5333
|
+
}
|
|
5334
|
+
},
|
|
5335
|
+
"type": "object"
|
|
5336
|
+
},
|
|
5272
5337
|
"ErrorBarDirection": {
|
|
5273
5338
|
"description": "Which axes the error bars span: both, x only, or y only.",
|
|
5274
5339
|
"enum": ["x", "y"],
|
|
@@ -5497,6 +5562,10 @@
|
|
|
5497
5562
|
"$ref": "#/definitions/BlipEffectsOptions",
|
|
5498
5563
|
"description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
|
|
5499
5564
|
},
|
|
5565
|
+
"compression": {
|
|
5566
|
+
"$ref": "#/definitions/BlipCompression",
|
|
5567
|
+
"description": "Compression state (a:blip"
|
|
5568
|
+
},
|
|
5500
5569
|
"data": {
|
|
5501
5570
|
"$ref": "#/definitions/DataType",
|
|
5502
5571
|
"description": "Image data: raw bytes, ArrayBuffer, or a base64 data URL string."
|
|
@@ -5845,9 +5914,9 @@
|
|
|
5845
5914
|
"description": "Shade type (linear or path)"
|
|
5846
5915
|
},
|
|
5847
5916
|
"stops": {
|
|
5848
|
-
"description": "Gradient color stops (minimum 2)",
|
|
5917
|
+
"description": "Gradient color stops (minimum 2); color accepts a hex string or SolidFillOptions",
|
|
5849
5918
|
"items": {
|
|
5850
|
-
"$ref": "#/definitions/
|
|
5919
|
+
"$ref": "#/definitions/GradientStopOptions"
|
|
5851
5920
|
},
|
|
5852
5921
|
"type": "array"
|
|
5853
5922
|
},
|
|
@@ -5870,22 +5939,6 @@
|
|
|
5870
5939
|
],
|
|
5871
5940
|
"description": "Gradient shade options (linear or path)."
|
|
5872
5941
|
},
|
|
5873
|
-
"GradientStop": {
|
|
5874
|
-
"additionalProperties": false,
|
|
5875
|
-
"description": "Gradient stop position as integer percent (0-100).",
|
|
5876
|
-
"properties": {
|
|
5877
|
-
"color": {
|
|
5878
|
-
"$ref": "#/definitions/SolidFillOptions",
|
|
5879
|
-
"description": "Color at this stop"
|
|
5880
|
-
},
|
|
5881
|
-
"position": {
|
|
5882
|
-
"description": "Position of the color stop as integer percent (0-100).",
|
|
5883
|
-
"type": "number"
|
|
5884
|
-
}
|
|
5885
|
-
},
|
|
5886
|
-
"required": ["position", "color"],
|
|
5887
|
-
"type": "object"
|
|
5888
|
-
},
|
|
5889
5942
|
"GradientStopOptions": {
|
|
5890
5943
|
"additionalProperties": false,
|
|
5891
5944
|
"description": "Gradient stop options (simplified API). Position is 0-100 (percentage), color is a hex string or SolidFillOptions.",
|
|
@@ -5960,67 +6013,23 @@
|
|
|
5960
6013
|
},
|
|
5961
6014
|
"GroupOptions": {
|
|
5962
6015
|
"additionalProperties": false,
|
|
5963
|
-
"description": "Group shape (p:grpSp) for pptx slides. cNvPr fields from BaseGroupOptions; the
|
|
6016
|
+
"description": "Group shape (p:grpSp) for pptx slides. cNvPr fields from BaseGroupOptions; transform fields (incl. the child coordinate system, a:chOff/a:chExt) from GroupTransform2DOptions — an unset chOff/chExt stringifies to the group offset/extent. The rest is the group-level paint plus the children.",
|
|
5964
6017
|
"properties": {
|
|
5965
6018
|
"blackWhiteMode": {
|
|
5966
6019
|
"$ref": "#/definitions/BlackWhiteMode",
|
|
5967
6020
|
"description": "`@bwMode` on `p:grpSpPr` — how the group renders in black-and-white mode."
|
|
5968
6021
|
},
|
|
5969
|
-
"
|
|
5970
|
-
"
|
|
5971
|
-
"description": "Child coordinate system extent (a:chExt). Defaults to {width,height} when omitted.",
|
|
5972
|
-
"properties": {
|
|
5973
|
-
"cx": {
|
|
5974
|
-
"anyOf": [
|
|
5975
|
-
{
|
|
5976
|
-
"type": "number"
|
|
5977
|
-
},
|
|
5978
|
-
{
|
|
5979
|
-
"$ref": "#/definitions/UniversalMeasure"
|
|
5980
|
-
}
|
|
5981
|
-
]
|
|
5982
|
-
},
|
|
5983
|
-
"cy": {
|
|
5984
|
-
"anyOf": [
|
|
5985
|
-
{
|
|
5986
|
-
"type": "number"
|
|
5987
|
-
},
|
|
5988
|
-
{
|
|
5989
|
-
"$ref": "#/definitions/UniversalMeasure"
|
|
5990
|
-
}
|
|
5991
|
-
]
|
|
5992
|
-
}
|
|
5993
|
-
},
|
|
5994
|
-
"required": ["cx", "cy"],
|
|
5995
|
-
"type": "object"
|
|
6022
|
+
"childExtentHeight": {
|
|
6023
|
+
"$ref": "#/definitions/GroupShapePropertiesOptions/properties/childExtentHeight"
|
|
5996
6024
|
},
|
|
5997
|
-
"
|
|
5998
|
-
"
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
},
|
|
6006
|
-
{
|
|
6007
|
-
"$ref": "#/definitions/UniversalMeasure"
|
|
6008
|
-
}
|
|
6009
|
-
]
|
|
6010
|
-
},
|
|
6011
|
-
"y": {
|
|
6012
|
-
"anyOf": [
|
|
6013
|
-
{
|
|
6014
|
-
"type": "number"
|
|
6015
|
-
},
|
|
6016
|
-
{
|
|
6017
|
-
"$ref": "#/definitions/UniversalMeasure"
|
|
6018
|
-
}
|
|
6019
|
-
]
|
|
6020
|
-
}
|
|
6021
|
-
},
|
|
6022
|
-
"required": ["x", "y"],
|
|
6023
|
-
"type": "object"
|
|
6025
|
+
"childExtentWidth": {
|
|
6026
|
+
"$ref": "#/definitions/GroupShapePropertiesOptions/properties/childExtentWidth"
|
|
6027
|
+
},
|
|
6028
|
+
"childOffsetX": {
|
|
6029
|
+
"$ref": "#/definitions/GroupShapePropertiesOptions/properties/childOffsetX"
|
|
6030
|
+
},
|
|
6031
|
+
"childOffsetY": {
|
|
6032
|
+
"$ref": "#/definitions/GroupShapePropertiesOptions/properties/childOffsetY"
|
|
6024
6033
|
},
|
|
6025
6034
|
"children": {
|
|
6026
6035
|
"items": {
|
|
@@ -6040,7 +6049,7 @@
|
|
|
6040
6049
|
"description": "Group-level effects (EG_EffectProperties on grpSpPr)."
|
|
6041
6050
|
},
|
|
6042
6051
|
"ext": {
|
|
6043
|
-
"$ref": "#/definitions/
|
|
6052
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
6044
6053
|
},
|
|
6045
6054
|
"fill": {
|
|
6046
6055
|
"$ref": "#/definitions/FillOptions",
|
|
@@ -6050,7 +6059,6 @@
|
|
|
6050
6059
|
"type": "boolean"
|
|
6051
6060
|
},
|
|
6052
6061
|
"flipVertical": {
|
|
6053
|
-
"description": "Flip vertically (a:xfrm `@flipV`).",
|
|
6054
6062
|
"type": "boolean"
|
|
6055
6063
|
},
|
|
6056
6064
|
"height": {
|
|
@@ -6129,7 +6137,7 @@
|
|
|
6129
6137
|
},
|
|
6130
6138
|
"GroupShapePropertiesOptions": {
|
|
6131
6139
|
"additionalProperties": false,
|
|
6132
|
-
"description": "Group shape properties.
|
|
6140
|
+
"description": "Group shape properties. Transform fields serialize as one a:xfrm group transform; container-only `@bwMode` and the wrapping tag are the caller's responsibility.",
|
|
6133
6141
|
"properties": {
|
|
6134
6142
|
"childExtentHeight": {
|
|
6135
6143
|
"anyOf": [
|
|
@@ -6139,7 +6147,8 @@
|
|
|
6139
6147
|
{
|
|
6140
6148
|
"$ref": "#/definitions/UniversalMeasure"
|
|
6141
6149
|
}
|
|
6142
|
-
]
|
|
6150
|
+
],
|
|
6151
|
+
"description": "Child coordinate system extent height (a:chExt"
|
|
6143
6152
|
},
|
|
6144
6153
|
"childExtentWidth": {
|
|
6145
6154
|
"anyOf": [
|
|
@@ -6149,7 +6158,8 @@
|
|
|
6149
6158
|
{
|
|
6150
6159
|
"$ref": "#/definitions/UniversalMeasure"
|
|
6151
6160
|
}
|
|
6152
|
-
]
|
|
6161
|
+
],
|
|
6162
|
+
"description": "Child coordinate system extent width (a:chExt"
|
|
6153
6163
|
},
|
|
6154
6164
|
"childOffsetX": {
|
|
6155
6165
|
"anyOf": [
|
|
@@ -6159,7 +6169,8 @@
|
|
|
6159
6169
|
{
|
|
6160
6170
|
"$ref": "#/definitions/UniversalMeasure"
|
|
6161
6171
|
}
|
|
6162
|
-
]
|
|
6172
|
+
],
|
|
6173
|
+
"description": "Child coordinate system offset X (a:chOff"
|
|
6163
6174
|
},
|
|
6164
6175
|
"childOffsetY": {
|
|
6165
6176
|
"anyOf": [
|
|
@@ -6169,7 +6180,8 @@
|
|
|
6169
6180
|
{
|
|
6170
6181
|
"$ref": "#/definitions/UniversalMeasure"
|
|
6171
6182
|
}
|
|
6172
|
-
]
|
|
6183
|
+
],
|
|
6184
|
+
"description": "Child coordinate system offset Y (a:chOff"
|
|
6173
6185
|
},
|
|
6174
6186
|
"effectDag": {
|
|
6175
6187
|
"$ref": "#/definitions/EffectDagOptions"
|
|
@@ -6795,95 +6807,26 @@
|
|
|
6795
6807
|
"type": "object"
|
|
6796
6808
|
},
|
|
6797
6809
|
"LayoutPlaceholderOptions": {
|
|
6810
|
+
"$ref": "#/definitions/PlaceholderMapOptions",
|
|
6811
|
+
"description": "Placeholder slot map — `false` hides the slot, a definition overrides its position and facets, omitted shows the default. Same value shape as `MasterPlaceholderOptions`."
|
|
6812
|
+
},
|
|
6813
|
+
"LayoutRuleOptions": {
|
|
6798
6814
|
"additionalProperties": false,
|
|
6799
|
-
"description": "
|
|
6815
|
+
"description": "dgm:rule.",
|
|
6800
6816
|
"properties": {
|
|
6801
|
-
"
|
|
6802
|
-
"
|
|
6803
|
-
|
|
6804
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6805
|
-
},
|
|
6806
|
-
{
|
|
6807
|
-
"const": false,
|
|
6808
|
-
"type": "boolean"
|
|
6809
|
-
}
|
|
6810
|
-
]
|
|
6817
|
+
"factor": {
|
|
6818
|
+
"description": "Multiplied factor (dgm:rule `@fact`).",
|
|
6819
|
+
"type": "number"
|
|
6811
6820
|
},
|
|
6812
|
-
"
|
|
6813
|
-
"
|
|
6814
|
-
{
|
|
6815
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6816
|
-
},
|
|
6817
|
-
{
|
|
6818
|
-
"const": false,
|
|
6819
|
-
"type": "boolean"
|
|
6820
|
-
}
|
|
6821
|
-
]
|
|
6821
|
+
"for": {
|
|
6822
|
+
"$ref": "#/definitions/ConstraintRelationship"
|
|
6822
6823
|
},
|
|
6823
|
-
"
|
|
6824
|
-
"
|
|
6825
|
-
{
|
|
6826
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6827
|
-
},
|
|
6828
|
-
{
|
|
6829
|
-
"const": false,
|
|
6830
|
-
"type": "boolean"
|
|
6831
|
-
}
|
|
6832
|
-
]
|
|
6824
|
+
"forName": {
|
|
6825
|
+
"type": "string"
|
|
6833
6826
|
},
|
|
6834
|
-
"
|
|
6835
|
-
"
|
|
6836
|
-
|
|
6837
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6838
|
-
},
|
|
6839
|
-
{
|
|
6840
|
-
"const": false,
|
|
6841
|
-
"type": "boolean"
|
|
6842
|
-
}
|
|
6843
|
-
]
|
|
6844
|
-
},
|
|
6845
|
-
"subtitle": {
|
|
6846
|
-
"anyOf": [
|
|
6847
|
-
{
|
|
6848
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6849
|
-
},
|
|
6850
|
-
{
|
|
6851
|
-
"const": false,
|
|
6852
|
-
"type": "boolean"
|
|
6853
|
-
}
|
|
6854
|
-
]
|
|
6855
|
-
},
|
|
6856
|
-
"title": {
|
|
6857
|
-
"anyOf": [
|
|
6858
|
-
{
|
|
6859
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
6860
|
-
},
|
|
6861
|
-
{
|
|
6862
|
-
"const": false,
|
|
6863
|
-
"type": "boolean"
|
|
6864
|
-
}
|
|
6865
|
-
]
|
|
6866
|
-
}
|
|
6867
|
-
},
|
|
6868
|
-
"type": "object"
|
|
6869
|
-
},
|
|
6870
|
-
"LayoutRuleOptions": {
|
|
6871
|
-
"additionalProperties": false,
|
|
6872
|
-
"description": "dgm:rule.",
|
|
6873
|
-
"properties": {
|
|
6874
|
-
"factor": {
|
|
6875
|
-
"description": "Multiplied factor (dgm:rule `@fact`).",
|
|
6876
|
-
"type": "number"
|
|
6877
|
-
},
|
|
6878
|
-
"for": {
|
|
6879
|
-
"$ref": "#/definitions/ConstraintRelationship"
|
|
6880
|
-
},
|
|
6881
|
-
"forName": {
|
|
6882
|
-
"type": "string"
|
|
6883
|
-
},
|
|
6884
|
-
"maximum": {
|
|
6885
|
-
"description": "Upper bound (dgm:rule `@max`).",
|
|
6886
|
-
"type": "number"
|
|
6827
|
+
"maximum": {
|
|
6828
|
+
"description": "Upper bound (dgm:rule `@max`).",
|
|
6829
|
+
"type": "number"
|
|
6887
6830
|
},
|
|
6888
6831
|
"pointType": {
|
|
6889
6832
|
"type": "string"
|
|
@@ -7104,15 +7047,8 @@
|
|
|
7104
7047
|
"description": {
|
|
7105
7048
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
7106
7049
|
},
|
|
7107
|
-
"effects": {
|
|
7108
|
-
"$ref": "#/definitions/EffectListOptions",
|
|
7109
|
-
"description": "Effect list (a:effectLst) inside spPr. An empty object emits the bare element."
|
|
7110
|
-
},
|
|
7111
7050
|
"ext": {
|
|
7112
|
-
"$ref": "#/definitions/
|
|
7113
|
-
},
|
|
7114
|
-
"fill": {
|
|
7115
|
-
"$ref": "#/definitions/FillOptions"
|
|
7051
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
7116
7052
|
},
|
|
7117
7053
|
"hidden": {
|
|
7118
7054
|
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
@@ -7128,16 +7064,9 @@
|
|
|
7128
7064
|
"name": {
|
|
7129
7065
|
"$ref": "#/definitions/ShapeOptions/properties/name"
|
|
7130
7066
|
},
|
|
7131
|
-
"
|
|
7132
|
-
"$ref": "#/definitions/
|
|
7133
|
-
|
|
7134
|
-
"scene3d": {
|
|
7135
|
-
"$ref": "#/definitions/Scene3DOptions",
|
|
7136
|
-
"description": "3D scene (a:scene3d) inside spPr."
|
|
7137
|
-
},
|
|
7138
|
-
"shape3d": {
|
|
7139
|
-
"$ref": "#/definitions/Shape3DOptions",
|
|
7140
|
-
"description": "3D shape properties (a:sp3d) inside spPr."
|
|
7067
|
+
"properties": {
|
|
7068
|
+
"$ref": "#/definitions/EndpointShapeProperties",
|
|
7069
|
+
"description": "Line paint (a:spPr children): fill/outline/effects/3D. Endpoints stay top-level — direction is encoded as xfrm flip, not an owner transform."
|
|
7141
7070
|
},
|
|
7142
7071
|
"style": {
|
|
7143
7072
|
"$ref": "#/definitions/ShapeStyleOptions",
|
|
@@ -7227,7 +7156,7 @@
|
|
|
7227
7156
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
7228
7157
|
},
|
|
7229
7158
|
"ext": {
|
|
7230
|
-
"$ref": "#/definitions/
|
|
7159
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
7231
7160
|
},
|
|
7232
7161
|
"hasCustomPrompt": {
|
|
7233
7162
|
"type": "boolean"
|
|
@@ -7334,13 +7263,20 @@
|
|
|
7334
7263
|
"$ref": "#/definitions/EffectListOptions"
|
|
7335
7264
|
},
|
|
7336
7265
|
"ext": {
|
|
7337
|
-
"$ref": "#/definitions/
|
|
7266
|
+
"$ref": "#/definitions/ShapeOptions/properties/properties/properties/ext"
|
|
7338
7267
|
},
|
|
7339
7268
|
"extensions": {
|
|
7340
|
-
"$ref": "#/definitions/
|
|
7269
|
+
"$ref": "#/definitions/ShapeOptions/properties/properties/properties/extensions"
|
|
7341
7270
|
},
|
|
7342
7271
|
"fill": {
|
|
7343
|
-
"
|
|
7272
|
+
"anyOf": [
|
|
7273
|
+
{
|
|
7274
|
+
"$ref": "#/definitions/FillOptions"
|
|
7275
|
+
},
|
|
7276
|
+
{
|
|
7277
|
+
"type": "null"
|
|
7278
|
+
}
|
|
7279
|
+
]
|
|
7344
7280
|
},
|
|
7345
7281
|
"flipHorizontal": {
|
|
7346
7282
|
"type": "boolean"
|
|
@@ -7626,65 +7562,7 @@
|
|
|
7626
7562
|
"type": "object"
|
|
7627
7563
|
},
|
|
7628
7564
|
"MasterPlaceholderOptions": {
|
|
7629
|
-
"
|
|
7630
|
-
"properties": {
|
|
7631
|
-
"body": {
|
|
7632
|
-
"anyOf": [
|
|
7633
|
-
{
|
|
7634
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
7635
|
-
},
|
|
7636
|
-
{
|
|
7637
|
-
"const": false,
|
|
7638
|
-
"type": "boolean"
|
|
7639
|
-
}
|
|
7640
|
-
]
|
|
7641
|
-
},
|
|
7642
|
-
"date": {
|
|
7643
|
-
"anyOf": [
|
|
7644
|
-
{
|
|
7645
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
7646
|
-
},
|
|
7647
|
-
{
|
|
7648
|
-
"const": false,
|
|
7649
|
-
"type": "boolean"
|
|
7650
|
-
}
|
|
7651
|
-
]
|
|
7652
|
-
},
|
|
7653
|
-
"footer": {
|
|
7654
|
-
"anyOf": [
|
|
7655
|
-
{
|
|
7656
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
7657
|
-
},
|
|
7658
|
-
{
|
|
7659
|
-
"const": false,
|
|
7660
|
-
"type": "boolean"
|
|
7661
|
-
}
|
|
7662
|
-
]
|
|
7663
|
-
},
|
|
7664
|
-
"slideNumber": {
|
|
7665
|
-
"anyOf": [
|
|
7666
|
-
{
|
|
7667
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
7668
|
-
},
|
|
7669
|
-
{
|
|
7670
|
-
"const": false,
|
|
7671
|
-
"type": "boolean"
|
|
7672
|
-
}
|
|
7673
|
-
]
|
|
7674
|
-
},
|
|
7675
|
-
"title": {
|
|
7676
|
-
"anyOf": [
|
|
7677
|
-
{
|
|
7678
|
-
"$ref": "#/definitions/PlaceholderDefinition"
|
|
7679
|
-
},
|
|
7680
|
-
{
|
|
7681
|
-
"const": false,
|
|
7682
|
-
"type": "boolean"
|
|
7683
|
-
}
|
|
7684
|
-
]
|
|
7685
|
-
}
|
|
7686
|
-
},
|
|
7687
|
-
"type": "object"
|
|
7565
|
+
"$ref": "#/definitions/PlaceholderMapOptions"
|
|
7688
7566
|
},
|
|
7689
7567
|
"MediaAnimationType": {
|
|
7690
7568
|
"description": "Media playback action: playAudio, playVideo, or \"play\" (media-type-agnostic).",
|
|
@@ -7848,7 +7726,7 @@
|
|
|
7848
7726
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
7849
7727
|
},
|
|
7850
7728
|
"ext": {
|
|
7851
|
-
"$ref": "#/definitions/
|
|
7729
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
7852
7730
|
},
|
|
7853
7731
|
"hidden": {
|
|
7854
7732
|
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
@@ -8151,7 +8029,7 @@
|
|
|
8151
8029
|
"description": "Embedded OLE object (binary registered as ppt/embeddings/oleObjectN.bin). Mutually exclusive with `link` — p:oleObj's content model is a required choice between p:embed and p:link."
|
|
8152
8030
|
},
|
|
8153
8031
|
"ext": {
|
|
8154
|
-
"$ref": "#/definitions/
|
|
8032
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
8155
8033
|
},
|
|
8156
8034
|
"hasCustomPrompt": {
|
|
8157
8035
|
"type": "boolean"
|
|
@@ -8817,8 +8695,7 @@
|
|
|
8817
8695
|
"description": "Shape-level effects on p:spPr (e.g. shadow/reflection)."
|
|
8818
8696
|
},
|
|
8819
8697
|
"ext": {
|
|
8820
|
-
"
|
|
8821
|
-
"type": "string"
|
|
8698
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
8822
8699
|
},
|
|
8823
8700
|
"fileName": {
|
|
8824
8701
|
"description": "Media file name inside the package (ppt/media/<fileName>). Round-trip keeps the source name; fresh generation derives it from the shape name.",
|
|
@@ -8954,178 +8831,334 @@
|
|
|
8954
8831
|
"description": "p:nvPr `@userDrawn`.",
|
|
8955
8832
|
"type": "boolean"
|
|
8956
8833
|
},
|
|
8957
|
-
"width": {
|
|
8834
|
+
"width": {
|
|
8835
|
+
"anyOf": [
|
|
8836
|
+
{
|
|
8837
|
+
"type": "number"
|
|
8838
|
+
},
|
|
8839
|
+
{
|
|
8840
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8841
|
+
}
|
|
8842
|
+
]
|
|
8843
|
+
},
|
|
8844
|
+
"x": {
|
|
8845
|
+
"anyOf": [
|
|
8846
|
+
{
|
|
8847
|
+
"type": "number"
|
|
8848
|
+
},
|
|
8849
|
+
{
|
|
8850
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8851
|
+
}
|
|
8852
|
+
]
|
|
8853
|
+
},
|
|
8854
|
+
"y": {
|
|
8855
|
+
"anyOf": [
|
|
8856
|
+
{
|
|
8857
|
+
"type": "number"
|
|
8858
|
+
},
|
|
8859
|
+
{
|
|
8860
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8861
|
+
}
|
|
8862
|
+
]
|
|
8863
|
+
}
|
|
8864
|
+
},
|
|
8865
|
+
"required": ["type"],
|
|
8866
|
+
"type": "object"
|
|
8867
|
+
},
|
|
8868
|
+
"PivotSourceOptions": {
|
|
8869
|
+
"additionalProperties": false,
|
|
8870
|
+
"description": "Pivot chart source.",
|
|
8871
|
+
"properties": {
|
|
8872
|
+
"formatId": {
|
|
8873
|
+
"type": "number"
|
|
8874
|
+
},
|
|
8875
|
+
"name": {
|
|
8876
|
+
"type": "string"
|
|
8877
|
+
}
|
|
8878
|
+
},
|
|
8879
|
+
"required": ["name", "formatId"],
|
|
8880
|
+
"type": "object"
|
|
8881
|
+
},
|
|
8882
|
+
"PlaceholderDefinition": {
|
|
8883
|
+
"additionalProperties": false,
|
|
8884
|
+
"description": "Complete placeholder template on a master/layout: position, inheritable facets, and cNvPr fields (a16:creationId) so a re-emitted placeholder keeps its identity. Accepts the old flat x/y/width/height shape.",
|
|
8885
|
+
"properties": {
|
|
8886
|
+
"creationId": {
|
|
8887
|
+
"$ref": "#/definitions/Guid",
|
|
8888
|
+
"description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
|
|
8889
|
+
},
|
|
8890
|
+
"customGeometry": {
|
|
8891
|
+
"$ref": "#/definitions/CustomGeometryOptions"
|
|
8892
|
+
},
|
|
8893
|
+
"description": {
|
|
8894
|
+
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
8895
|
+
},
|
|
8896
|
+
"effects": {
|
|
8897
|
+
"$ref": "#/definitions/EffectListOptions"
|
|
8898
|
+
},
|
|
8899
|
+
"ext": {
|
|
8900
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
8901
|
+
},
|
|
8902
|
+
"fill": {
|
|
8903
|
+
"anyOf": [
|
|
8904
|
+
{
|
|
8905
|
+
"$ref": "#/definitions/FillOptions"
|
|
8906
|
+
},
|
|
8907
|
+
{
|
|
8908
|
+
"type": "null"
|
|
8909
|
+
}
|
|
8910
|
+
]
|
|
8911
|
+
},
|
|
8912
|
+
"geometry": {
|
|
8913
|
+
"anyOf": [
|
|
8914
|
+
{
|
|
8915
|
+
"$ref": "#/definitions/ShapeType"
|
|
8916
|
+
},
|
|
8917
|
+
{
|
|
8918
|
+
"$ref": "#/definitions/PresetGeometryOptions"
|
|
8919
|
+
}
|
|
8920
|
+
]
|
|
8921
|
+
},
|
|
8922
|
+
"height": {
|
|
8923
|
+
"anyOf": [
|
|
8924
|
+
{
|
|
8925
|
+
"type": "number"
|
|
8926
|
+
},
|
|
8927
|
+
{
|
|
8928
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8929
|
+
}
|
|
8930
|
+
]
|
|
8931
|
+
},
|
|
8932
|
+
"hidden": {
|
|
8933
|
+
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
8934
|
+
"type": "boolean"
|
|
8935
|
+
},
|
|
8936
|
+
"name": {
|
|
8937
|
+
"$ref": "#/definitions/ShapeOptions/properties/name"
|
|
8938
|
+
},
|
|
8939
|
+
"outline": {
|
|
8940
|
+
"$ref": "#/definitions/OutlineOptions"
|
|
8941
|
+
},
|
|
8942
|
+
"scene3d": {
|
|
8943
|
+
"$ref": "#/definitions/Scene3DOptions"
|
|
8944
|
+
},
|
|
8945
|
+
"shape3d": {
|
|
8946
|
+
"$ref": "#/definitions/Shape3DOptions"
|
|
8947
|
+
},
|
|
8948
|
+
"style": {
|
|
8949
|
+
"$ref": "#/definitions/ShapeStyleOptions"
|
|
8950
|
+
},
|
|
8951
|
+
"textBody": {
|
|
8952
|
+
"$ref": "#/definitions/TextBodyOptions"
|
|
8953
|
+
},
|
|
8954
|
+
"title": {
|
|
8955
|
+
"description": "XSD `@title`.",
|
|
8956
|
+
"type": "string"
|
|
8957
|
+
},
|
|
8958
|
+
"width": {
|
|
8959
|
+
"anyOf": [
|
|
8960
|
+
{
|
|
8961
|
+
"type": "number"
|
|
8962
|
+
},
|
|
8963
|
+
{
|
|
8964
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8965
|
+
}
|
|
8966
|
+
]
|
|
8967
|
+
},
|
|
8968
|
+
"x": {
|
|
8969
|
+
"anyOf": [
|
|
8970
|
+
{
|
|
8971
|
+
"type": "number"
|
|
8972
|
+
},
|
|
8973
|
+
{
|
|
8974
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8975
|
+
}
|
|
8976
|
+
]
|
|
8977
|
+
},
|
|
8978
|
+
"y": {
|
|
8979
|
+
"anyOf": [
|
|
8980
|
+
{
|
|
8981
|
+
"type": "number"
|
|
8982
|
+
},
|
|
8983
|
+
{
|
|
8984
|
+
"$ref": "#/definitions/UniversalMeasure"
|
|
8985
|
+
}
|
|
8986
|
+
]
|
|
8987
|
+
}
|
|
8988
|
+
},
|
|
8989
|
+
"required": ["height", "width", "x", "y"],
|
|
8990
|
+
"type": "object"
|
|
8991
|
+
},
|
|
8992
|
+
"PlaceholderMapOptions": {
|
|
8993
|
+
"additionalProperties": false,
|
|
8994
|
+
"description": "Placeholder slot map keyed by `p:ph/@type`: `false` hides the slot, a definition overrides its position and facets, omitted shows the default. Layouts and masters share the same key set — both public maps are aliases of this type.",
|
|
8995
|
+
"properties": {
|
|
8996
|
+
"body": {
|
|
8997
|
+
"anyOf": [
|
|
8998
|
+
{
|
|
8999
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9000
|
+
},
|
|
9001
|
+
{
|
|
9002
|
+
"const": false,
|
|
9003
|
+
"type": "boolean"
|
|
9004
|
+
}
|
|
9005
|
+
]
|
|
9006
|
+
},
|
|
9007
|
+
"chart": {
|
|
9008
|
+
"anyOf": [
|
|
9009
|
+
{
|
|
9010
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9011
|
+
},
|
|
9012
|
+
{
|
|
9013
|
+
"const": false,
|
|
9014
|
+
"type": "boolean"
|
|
9015
|
+
}
|
|
9016
|
+
]
|
|
9017
|
+
},
|
|
9018
|
+
"clipArt": {
|
|
9019
|
+
"anyOf": [
|
|
9020
|
+
{
|
|
9021
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9022
|
+
},
|
|
9023
|
+
{
|
|
9024
|
+
"const": false,
|
|
9025
|
+
"type": "boolean"
|
|
9026
|
+
}
|
|
9027
|
+
]
|
|
9028
|
+
},
|
|
9029
|
+
"date": {
|
|
9030
|
+
"anyOf": [
|
|
9031
|
+
{
|
|
9032
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9033
|
+
},
|
|
9034
|
+
{
|
|
9035
|
+
"const": false,
|
|
9036
|
+
"type": "boolean"
|
|
9037
|
+
}
|
|
9038
|
+
]
|
|
9039
|
+
},
|
|
9040
|
+
"diagram": {
|
|
9041
|
+
"anyOf": [
|
|
9042
|
+
{
|
|
9043
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9044
|
+
},
|
|
9045
|
+
{
|
|
9046
|
+
"const": false,
|
|
9047
|
+
"type": "boolean"
|
|
9048
|
+
}
|
|
9049
|
+
]
|
|
9050
|
+
},
|
|
9051
|
+
"footer": {
|
|
9052
|
+
"anyOf": [
|
|
9053
|
+
{
|
|
9054
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9055
|
+
},
|
|
9056
|
+
{
|
|
9057
|
+
"const": false,
|
|
9058
|
+
"type": "boolean"
|
|
9059
|
+
}
|
|
9060
|
+
]
|
|
9061
|
+
},
|
|
9062
|
+
"header": {
|
|
9063
|
+
"anyOf": [
|
|
9064
|
+
{
|
|
9065
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9066
|
+
},
|
|
9067
|
+
{
|
|
9068
|
+
"const": false,
|
|
9069
|
+
"type": "boolean"
|
|
9070
|
+
}
|
|
9071
|
+
]
|
|
9072
|
+
},
|
|
9073
|
+
"media": {
|
|
8958
9074
|
"anyOf": [
|
|
8959
9075
|
{
|
|
8960
|
-
"
|
|
9076
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
8961
9077
|
},
|
|
8962
9078
|
{
|
|
8963
|
-
"
|
|
9079
|
+
"const": false,
|
|
9080
|
+
"type": "boolean"
|
|
8964
9081
|
}
|
|
8965
9082
|
]
|
|
8966
9083
|
},
|
|
8967
|
-
"
|
|
9084
|
+
"object": {
|
|
8968
9085
|
"anyOf": [
|
|
8969
9086
|
{
|
|
8970
|
-
"
|
|
9087
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
8971
9088
|
},
|
|
8972
9089
|
{
|
|
8973
|
-
"
|
|
9090
|
+
"const": false,
|
|
9091
|
+
"type": "boolean"
|
|
8974
9092
|
}
|
|
8975
9093
|
]
|
|
8976
9094
|
},
|
|
8977
|
-
"
|
|
9095
|
+
"picture": {
|
|
8978
9096
|
"anyOf": [
|
|
8979
9097
|
{
|
|
8980
|
-
"
|
|
9098
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
8981
9099
|
},
|
|
8982
9100
|
{
|
|
8983
|
-
"
|
|
9101
|
+
"const": false,
|
|
9102
|
+
"type": "boolean"
|
|
8984
9103
|
}
|
|
8985
9104
|
]
|
|
8986
|
-
}
|
|
8987
|
-
},
|
|
8988
|
-
"required": ["type"],
|
|
8989
|
-
"type": "object"
|
|
8990
|
-
},
|
|
8991
|
-
"PictureOptionsOptions": {
|
|
8992
|
-
"additionalProperties": false,
|
|
8993
|
-
"description": "Picture-fill options for bar/area series.",
|
|
8994
|
-
"properties": {
|
|
8995
|
-
"applyToEnd": {
|
|
8996
|
-
"type": "boolean"
|
|
8997
|
-
},
|
|
8998
|
-
"applyToFront": {
|
|
8999
|
-
"type": "boolean"
|
|
9000
|
-
},
|
|
9001
|
-
"applyToSides": {
|
|
9002
|
-
"type": "boolean"
|
|
9003
|
-
},
|
|
9004
|
-
"pictureFormat": {
|
|
9005
|
-
"$ref": "#/definitions/PictureFormat"
|
|
9006
|
-
},
|
|
9007
|
-
"pictureStackUnit": {
|
|
9008
|
-
"description": "Stack unit (c:pictureStackUnit val).",
|
|
9009
|
-
"type": "number"
|
|
9010
|
-
}
|
|
9011
|
-
},
|
|
9012
|
-
"type": "object"
|
|
9013
|
-
},
|
|
9014
|
-
"PivotSourceOptions": {
|
|
9015
|
-
"additionalProperties": false,
|
|
9016
|
-
"description": "Pivot chart source.",
|
|
9017
|
-
"properties": {
|
|
9018
|
-
"formatId": {
|
|
9019
|
-
"type": "number"
|
|
9020
|
-
},
|
|
9021
|
-
"name": {
|
|
9022
|
-
"type": "string"
|
|
9023
|
-
}
|
|
9024
|
-
},
|
|
9025
|
-
"required": ["name", "formatId"],
|
|
9026
|
-
"type": "object"
|
|
9027
|
-
},
|
|
9028
|
-
"PlaceholderDefinition": {
|
|
9029
|
-
"additionalProperties": false,
|
|
9030
|
-
"description": "Complete placeholder template on a master/layout: position, inheritable facets, and cNvPr fields (a16:creationId) so a re-emitted placeholder keeps its identity. Accepts the old flat x/y/width/height shape.",
|
|
9031
|
-
"properties": {
|
|
9032
|
-
"creationId": {
|
|
9033
|
-
"$ref": "#/definitions/Guid",
|
|
9034
|
-
"description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
|
|
9035
|
-
},
|
|
9036
|
-
"customGeometry": {
|
|
9037
|
-
"$ref": "#/definitions/CustomGeometryOptions"
|
|
9038
|
-
},
|
|
9039
|
-
"description": {
|
|
9040
|
-
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
9041
|
-
},
|
|
9042
|
-
"effects": {
|
|
9043
|
-
"$ref": "#/definitions/EffectListOptions"
|
|
9044
|
-
},
|
|
9045
|
-
"ext": {
|
|
9046
|
-
"$ref": "#/definitions/PictureOptions/properties/ext"
|
|
9047
9105
|
},
|
|
9048
|
-
"
|
|
9049
|
-
"$ref": "#/definitions/FillOptions"
|
|
9050
|
-
},
|
|
9051
|
-
"geometry": {
|
|
9106
|
+
"slideImage": {
|
|
9052
9107
|
"anyOf": [
|
|
9053
9108
|
{
|
|
9054
|
-
"$ref": "#/definitions/
|
|
9109
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9055
9110
|
},
|
|
9056
9111
|
{
|
|
9057
|
-
"
|
|
9112
|
+
"const": false,
|
|
9113
|
+
"type": "boolean"
|
|
9058
9114
|
}
|
|
9059
9115
|
]
|
|
9060
9116
|
},
|
|
9061
|
-
"
|
|
9117
|
+
"slideNumber": {
|
|
9062
9118
|
"anyOf": [
|
|
9063
9119
|
{
|
|
9064
|
-
"
|
|
9120
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9065
9121
|
},
|
|
9066
9122
|
{
|
|
9067
|
-
"
|
|
9123
|
+
"const": false,
|
|
9124
|
+
"type": "boolean"
|
|
9068
9125
|
}
|
|
9069
9126
|
]
|
|
9070
9127
|
},
|
|
9071
|
-
"
|
|
9072
|
-
"description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
|
|
9073
|
-
"type": "boolean"
|
|
9074
|
-
},
|
|
9075
|
-
"name": {
|
|
9076
|
-
"$ref": "#/definitions/ShapeOptions/properties/name"
|
|
9077
|
-
},
|
|
9078
|
-
"outline": {
|
|
9079
|
-
"$ref": "#/definitions/OutlineOptions"
|
|
9080
|
-
},
|
|
9081
|
-
"scene3d": {
|
|
9082
|
-
"$ref": "#/definitions/Scene3DOptions"
|
|
9083
|
-
},
|
|
9084
|
-
"shape3d": {
|
|
9085
|
-
"$ref": "#/definitions/Shape3DOptions"
|
|
9086
|
-
},
|
|
9087
|
-
"style": {
|
|
9088
|
-
"$ref": "#/definitions/ShapeStyleOptions"
|
|
9089
|
-
},
|
|
9090
|
-
"textBody": {
|
|
9091
|
-
"$ref": "#/definitions/TextBodyOptions"
|
|
9092
|
-
},
|
|
9093
|
-
"title": {
|
|
9094
|
-
"description": "XSD `@title`.",
|
|
9095
|
-
"type": "string"
|
|
9096
|
-
},
|
|
9097
|
-
"width": {
|
|
9128
|
+
"subtitle": {
|
|
9098
9129
|
"anyOf": [
|
|
9099
9130
|
{
|
|
9100
|
-
"
|
|
9131
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9101
9132
|
},
|
|
9102
9133
|
{
|
|
9103
|
-
"
|
|
9134
|
+
"const": false,
|
|
9135
|
+
"type": "boolean"
|
|
9104
9136
|
}
|
|
9105
9137
|
]
|
|
9106
9138
|
},
|
|
9107
|
-
"
|
|
9139
|
+
"table": {
|
|
9108
9140
|
"anyOf": [
|
|
9109
9141
|
{
|
|
9110
|
-
"
|
|
9142
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9111
9143
|
},
|
|
9112
9144
|
{
|
|
9113
|
-
"
|
|
9145
|
+
"const": false,
|
|
9146
|
+
"type": "boolean"
|
|
9114
9147
|
}
|
|
9115
9148
|
]
|
|
9116
9149
|
},
|
|
9117
|
-
"
|
|
9150
|
+
"title": {
|
|
9118
9151
|
"anyOf": [
|
|
9119
9152
|
{
|
|
9120
|
-
"
|
|
9153
|
+
"$ref": "#/definitions/PlaceholderDefinition"
|
|
9121
9154
|
},
|
|
9122
9155
|
{
|
|
9123
|
-
"
|
|
9156
|
+
"const": false,
|
|
9157
|
+
"type": "boolean"
|
|
9124
9158
|
}
|
|
9125
9159
|
]
|
|
9126
9160
|
}
|
|
9127
9161
|
},
|
|
9128
|
-
"required": ["height", "width", "x", "y"],
|
|
9129
9162
|
"type": "object"
|
|
9130
9163
|
},
|
|
9131
9164
|
"PlaceholderOrientation": {
|
|
@@ -9484,7 +9517,7 @@
|
|
|
9484
9517
|
"type": "array"
|
|
9485
9518
|
},
|
|
9486
9519
|
"modified": {
|
|
9487
|
-
"description": "Last modified timestamp (W3CDTF); same null/undefined semantics as
|
|
9520
|
+
"description": "Last modified timestamp (W3CDTF); same null/undefined semantics as the created field.",
|
|
9488
9521
|
"type": ["string", "null"]
|
|
9489
9522
|
},
|
|
9490
9523
|
"modifyVerifier": {
|
|
@@ -10335,7 +10368,7 @@
|
|
|
10335
10368
|
"$ref": "#/definitions/ChartSeriesData/properties/order"
|
|
10336
10369
|
},
|
|
10337
10370
|
"pictureOptions": {
|
|
10338
|
-
"$ref": "#/definitions/
|
|
10371
|
+
"$ref": "#/definitions/ChartPictureOptions",
|
|
10339
10372
|
"description": "Picture-fill options (c:pictureOptions, bar/area)."
|
|
10340
10373
|
},
|
|
10341
10374
|
"shape": {
|
|
@@ -10643,56 +10676,20 @@
|
|
|
10643
10676
|
"$ref": "#/definitions/Guid",
|
|
10644
10677
|
"description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
|
|
10645
10678
|
},
|
|
10646
|
-
"customGeometry": {
|
|
10647
|
-
"$ref": "#/definitions/CustomGeometryOptions"
|
|
10648
|
-
},
|
|
10649
10679
|
"description": {
|
|
10650
10680
|
"description": "XSD `@descr` — alt text for accessibility; emitted only when present.",
|
|
10651
10681
|
"type": "string"
|
|
10652
10682
|
},
|
|
10653
|
-
"effects": {
|
|
10654
|
-
"$ref": "#/definitions/EffectListOptions"
|
|
10655
|
-
},
|
|
10656
10683
|
"ext": {
|
|
10657
|
-
"description": "
|
|
10684
|
+
"description": "Verbatim `a:extLst` inner XML for extensions beyond creationId (a14 picture effects, useLocalDpi, …). Round-trip only: takes precedence over `creationId`, which it subsumes when the source list carries both.",
|
|
10658
10685
|
"type": "string"
|
|
10659
10686
|
},
|
|
10660
|
-
"extensions": {
|
|
10661
|
-
"description": "Shape-property extensions (p:spPr/a:extLst/a:ext).",
|
|
10662
|
-
"items": {
|
|
10663
|
-
"$ref": "#/definitions/ShapePropertiesExtensionOptions"
|
|
10664
|
-
},
|
|
10665
|
-
"type": "array"
|
|
10666
|
-
},
|
|
10667
|
-
"fill": {
|
|
10668
|
-
"anyOf": [
|
|
10669
|
-
{
|
|
10670
|
-
"$ref": "#/definitions/FillOptions"
|
|
10671
|
-
},
|
|
10672
|
-
{
|
|
10673
|
-
"type": "null"
|
|
10674
|
-
}
|
|
10675
|
-
],
|
|
10676
|
-
"description": "`null` marks a source spPr with no fill child — absence is the fidelity (the shape inherits its fill), so stringify emits nothing instead of the fresh-authoring noFill default."
|
|
10677
|
-
},
|
|
10678
10687
|
"flipHorizontal": {
|
|
10679
10688
|
"type": "boolean"
|
|
10680
10689
|
},
|
|
10681
10690
|
"flipVertical": {
|
|
10682
|
-
"description": "Flip vertically (a:xfrm `@flipV`).",
|
|
10683
10691
|
"type": "boolean"
|
|
10684
10692
|
},
|
|
10685
|
-
"geometry": {
|
|
10686
|
-
"anyOf": [
|
|
10687
|
-
{
|
|
10688
|
-
"$ref": "#/definitions/ShapeType"
|
|
10689
|
-
},
|
|
10690
|
-
{
|
|
10691
|
-
"$ref": "#/definitions/PresetGeometryOptions"
|
|
10692
|
-
}
|
|
10693
|
-
],
|
|
10694
|
-
"description": "Preset geometry token or full geometry (a:prstGeom `@prst`)"
|
|
10695
|
-
},
|
|
10696
10693
|
"hasCustomPrompt": {
|
|
10697
10694
|
"type": "boolean"
|
|
10698
10695
|
},
|
|
@@ -10727,9 +10724,6 @@
|
|
|
10727
10724
|
"description": "XSD `@name` (required in XML); API-optional, the descriptor synthesizes a fallback.",
|
|
10728
10725
|
"type": "string"
|
|
10729
10726
|
},
|
|
10730
|
-
"outline": {
|
|
10731
|
-
"$ref": "#/definitions/OutlineOptions"
|
|
10732
|
-
},
|
|
10733
10727
|
"placeholder": {
|
|
10734
10728
|
"$ref": "#/definitions/PlaceholderType",
|
|
10735
10729
|
"description": "`@type` —."
|
|
@@ -10747,16 +10741,66 @@
|
|
|
10747
10741
|
"enum": ["full", "half", "quarter"],
|
|
10748
10742
|
"type": "string"
|
|
10749
10743
|
},
|
|
10744
|
+
"properties": {
|
|
10745
|
+
"additionalProperties": false,
|
|
10746
|
+
"description": "Shape properties (a:spPr children): geometry/fill/outline/effects/3D and the spPr extension list. Transform fields stay top-level on the shape. `fill: null` marks a source spPr with no fill child — absence is the fidelity (the shape inherits its fill), so stringify emits nothing instead of the fresh-authoring noFill default.",
|
|
10747
|
+
"properties": {
|
|
10748
|
+
"customGeometry": {
|
|
10749
|
+
"$ref": "#/definitions/CustomGeometryOptions"
|
|
10750
|
+
},
|
|
10751
|
+
"effectDag": {
|
|
10752
|
+
"$ref": "#/definitions/EffectDagOptions"
|
|
10753
|
+
},
|
|
10754
|
+
"effects": {
|
|
10755
|
+
"$ref": "#/definitions/EffectListOptions"
|
|
10756
|
+
},
|
|
10757
|
+
"ext": {
|
|
10758
|
+
"description": "Raw a:extLst inner XML. Prefer `extensions` for structured shape-property extensions; retained for existing callers and unmodeled payloads.",
|
|
10759
|
+
"type": "string"
|
|
10760
|
+
},
|
|
10761
|
+
"extensions": {
|
|
10762
|
+
"description": "Shape-property extensions (a:extLst/a:ext).",
|
|
10763
|
+
"items": {
|
|
10764
|
+
"$ref": "#/definitions/ShapePropertiesExtensionOptions"
|
|
10765
|
+
},
|
|
10766
|
+
"type": "array"
|
|
10767
|
+
},
|
|
10768
|
+
"fill": {
|
|
10769
|
+
"anyOf": [
|
|
10770
|
+
{
|
|
10771
|
+
"$ref": "#/definitions/FillOptions"
|
|
10772
|
+
},
|
|
10773
|
+
{
|
|
10774
|
+
"type": "null"
|
|
10775
|
+
}
|
|
10776
|
+
]
|
|
10777
|
+
},
|
|
10778
|
+
"geometry": {
|
|
10779
|
+
"anyOf": [
|
|
10780
|
+
{
|
|
10781
|
+
"$ref": "#/definitions/ShapeType"
|
|
10782
|
+
},
|
|
10783
|
+
{
|
|
10784
|
+
"$ref": "#/definitions/PresetGeometryOptions"
|
|
10785
|
+
}
|
|
10786
|
+
]
|
|
10787
|
+
},
|
|
10788
|
+
"outline": {
|
|
10789
|
+
"$ref": "#/definitions/OutlineOptions"
|
|
10790
|
+
},
|
|
10791
|
+
"scene3d": {
|
|
10792
|
+
"$ref": "#/definitions/Scene3DOptions"
|
|
10793
|
+
},
|
|
10794
|
+
"shape3d": {
|
|
10795
|
+
"$ref": "#/definitions/Shape3DOptions"
|
|
10796
|
+
}
|
|
10797
|
+
},
|
|
10798
|
+
"type": "object"
|
|
10799
|
+
},
|
|
10750
10800
|
"rotation": {
|
|
10751
10801
|
"description": "Rotation angle in degrees (e.g., 45 = 45°).",
|
|
10752
10802
|
"type": "number"
|
|
10753
10803
|
},
|
|
10754
|
-
"scene3d": {
|
|
10755
|
-
"$ref": "#/definitions/Scene3DOptions"
|
|
10756
|
-
},
|
|
10757
|
-
"shape3d": {
|
|
10758
|
-
"$ref": "#/definitions/Shape3DOptions"
|
|
10759
|
-
},
|
|
10760
10804
|
"style": {
|
|
10761
10805
|
"$ref": "#/definitions/ShapeStyleOptions"
|
|
10762
10806
|
},
|
|
@@ -10837,18 +10881,20 @@
|
|
|
10837
10881
|
"$ref": "#/definitions/EffectListOptions"
|
|
10838
10882
|
},
|
|
10839
10883
|
"ext": {
|
|
10840
|
-
"
|
|
10841
|
-
"type": "string"
|
|
10884
|
+
"$ref": "#/definitions/ShapeOptions/properties/properties/properties/ext"
|
|
10842
10885
|
},
|
|
10843
10886
|
"extensions": {
|
|
10844
|
-
"
|
|
10845
|
-
"items": {
|
|
10846
|
-
"$ref": "#/definitions/ShapePropertiesExtensionOptions"
|
|
10847
|
-
},
|
|
10848
|
-
"type": "array"
|
|
10887
|
+
"$ref": "#/definitions/ShapeOptions/properties/properties/properties/extensions"
|
|
10849
10888
|
},
|
|
10850
10889
|
"fill": {
|
|
10851
|
-
"
|
|
10890
|
+
"anyOf": [
|
|
10891
|
+
{
|
|
10892
|
+
"$ref": "#/definitions/FillOptions"
|
|
10893
|
+
},
|
|
10894
|
+
{
|
|
10895
|
+
"type": "null"
|
|
10896
|
+
}
|
|
10897
|
+
]
|
|
10852
10898
|
},
|
|
10853
10899
|
"flipHorizontal": {
|
|
10854
10900
|
"type": "boolean"
|
|
@@ -11677,7 +11723,7 @@
|
|
|
11677
11723
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
11678
11724
|
},
|
|
11679
11725
|
"ext": {
|
|
11680
|
-
"$ref": "#/definitions/
|
|
11726
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
11681
11727
|
},
|
|
11682
11728
|
"hasCustomPrompt": {
|
|
11683
11729
|
"type": "boolean"
|
|
@@ -12230,11 +12276,11 @@
|
|
|
12230
12276
|
"type": "string"
|
|
12231
12277
|
},
|
|
12232
12278
|
"vertical": {
|
|
12233
|
-
"$ref": "#/definitions/
|
|
12279
|
+
"$ref": "#/definitions/TextVertical",
|
|
12234
12280
|
"description": "`@vert` — text direction."
|
|
12235
12281
|
},
|
|
12236
12282
|
"verticalAlign": {
|
|
12237
|
-
"$ref": "#/definitions/
|
|
12283
|
+
"$ref": "#/definitions/VerticalAnchor"
|
|
12238
12284
|
},
|
|
12239
12285
|
"verticalMerge": {
|
|
12240
12286
|
"description": "Vertical merge: \"restart\" first cell of the merge, \"continue\" cell absorbed into it.",
|
|
@@ -12339,7 +12385,7 @@
|
|
|
12339
12385
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
12340
12386
|
},
|
|
12341
12387
|
"ext": {
|
|
12342
|
-
"$ref": "#/definitions/
|
|
12388
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
12343
12389
|
},
|
|
12344
12390
|
"firstCol": {
|
|
12345
12391
|
"type": "boolean"
|
|
@@ -12622,8 +12668,16 @@
|
|
|
12622
12668
|
"type": "object"
|
|
12623
12669
|
},
|
|
12624
12670
|
"TextAlignment": {
|
|
12625
|
-
"description": "Paragraph alignment; \"justify\" stretches lines to full width.",
|
|
12626
|
-
"enum": [
|
|
12671
|
+
"description": "Paragraph alignment; \"justify\" stretches lines to full width, \"distribute\" justifies including the last line, \"lowJustification\" aligns to a low baseline, \"thaiDistributed\" is Thai-style distribution.",
|
|
12672
|
+
"enum": [
|
|
12673
|
+
"left",
|
|
12674
|
+
"center",
|
|
12675
|
+
"right",
|
|
12676
|
+
"justify",
|
|
12677
|
+
"lowJustification",
|
|
12678
|
+
"distribute",
|
|
12679
|
+
"thaiDistributed"
|
|
12680
|
+
],
|
|
12627
12681
|
"type": "string"
|
|
12628
12682
|
},
|
|
12629
12683
|
"TextBodyOptions": {
|
|
@@ -13337,17 +13391,6 @@
|
|
|
13337
13391
|
],
|
|
13338
13392
|
"type": "string"
|
|
13339
13393
|
},
|
|
13340
|
-
"TextVerticalType": {
|
|
13341
|
-
"description": "Text direction within a cell.",
|
|
13342
|
-
"enum": [
|
|
13343
|
-
"horizontal",
|
|
13344
|
-
"vertical",
|
|
13345
|
-
"vertical270",
|
|
13346
|
-
"wordArtVertical",
|
|
13347
|
-
"wordArtVerticalRightToLeft"
|
|
13348
|
-
],
|
|
13349
|
-
"type": "string"
|
|
13350
|
-
},
|
|
13351
13394
|
"ThemeOptions": {
|
|
13352
13395
|
"additionalProperties": false,
|
|
13353
13396
|
"description": "Theme customization options (a:theme).",
|
|
@@ -13406,7 +13449,7 @@
|
|
|
13406
13449
|
"type": "string"
|
|
13407
13450
|
},
|
|
13408
13451
|
"compound": {
|
|
13409
|
-
"$ref": "#/definitions/
|
|
13452
|
+
"$ref": "#/definitions/CompoundLine",
|
|
13410
13453
|
"description": "Compound line type (@cmpd)"
|
|
13411
13454
|
},
|
|
13412
13455
|
"lineReference": {
|
|
@@ -14100,11 +14143,6 @@
|
|
|
14100
14143
|
"required": ["dx", "dy", "dz"],
|
|
14101
14144
|
"type": "object"
|
|
14102
14145
|
},
|
|
14103
|
-
"VerticalAlignment": {
|
|
14104
|
-
"description": "Vertical alignment of cell content; \"distribute\" spreads lines evenly across the cell height.",
|
|
14105
|
-
"enum": ["top", "center", "bottom", "justify", "distribute"],
|
|
14106
|
-
"type": "string"
|
|
14107
|
-
},
|
|
14108
14146
|
"VerticalAnchor": {
|
|
14109
14147
|
"description": "Text anchoring type.",
|
|
14110
14148
|
"enum": ["top", "center", "bottom", "justify", "distribute"],
|
|
@@ -14128,7 +14166,7 @@
|
|
|
14128
14166
|
"$ref": "#/definitions/ShapeOptions/properties/description"
|
|
14129
14167
|
},
|
|
14130
14168
|
"ext": {
|
|
14131
|
-
"$ref": "#/definitions/
|
|
14169
|
+
"$ref": "#/definitions/ShapeOptions/properties/ext"
|
|
14132
14170
|
},
|
|
14133
14171
|
"fileName": {
|
|
14134
14172
|
"description": "Media file name inside the package (ppt/media/<fileName>). Round-trip keeps the source name; fresh generation derives it from the frame name.",
|