@superdoc/cli-linux-arm64 0.34.0-next.13 → 0.34.0-next.3

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.
@@ -3131,7 +3131,7 @@
3131
3131
  "source",
3132
3132
  "destination"
3133
3133
  ],
3134
- "description": "Optional revision side for grouped replacement or move targets."
3134
+ "description": "Optional revision side for paired replacement or move targets."
3135
3135
  },
3136
3136
  "story": {
3137
3137
  "$ref": "#/$defs/StoryLocator",
@@ -3190,7 +3190,7 @@
3190
3190
  "source",
3191
3191
  "destination"
3192
3192
  ],
3193
- "description": "Optional revision side for grouped replacement or move targets."
3193
+ "description": "Optional revision side for paired replacement or move targets."
3194
3194
  },
3195
3195
  "story": {
3196
3196
  "$ref": "#/$defs/StoryLocator",
@@ -3238,7 +3238,7 @@
3238
3238
  "source",
3239
3239
  "destination"
3240
3240
  ],
3241
- "description": "Optional revision side for grouped replacement or move targets."
3241
+ "description": "Optional revision side for paired replacement or move targets."
3242
3242
  },
3243
3243
  "story": {
3244
3244
  "$ref": "#/$defs/StoryLocator",
@@ -5702,7 +5702,6 @@
5702
5702
  "insert_column",
5703
5703
  "insert_row",
5704
5704
  "merge_cells",
5705
- "move_column",
5706
5705
  "move_row",
5707
5706
  "set_borders",
5708
5707
  "set_cell",
@@ -5716,7 +5715,7 @@
5716
5715
  "set_style_options",
5717
5716
  "unmerge_cells"
5718
5717
  ],
5719
- "description": "The action to perform. One of: delete, delete_column, delete_row, insert_column, insert_row, merge_cells, move_column, move_row, set_borders, set_cell, set_cell_text, set_column, set_layout, set_options, set_row, set_row_options, set_shading, set_style_options, unmerge_cells."
5718
+ "description": "The action to perform. One of: delete, delete_column, delete_row, insert_column, insert_row, merge_cells, move_row, set_borders, set_cell, set_cell_text, set_column, set_layout, set_options, set_row, set_row_options, set_shading, set_style_options, unmerge_cells."
5720
5719
  },
5721
5720
  "force": {
5722
5721
  "type": "boolean",
@@ -5762,34 +5761,20 @@
5762
5761
  "oneOf": [
5763
5762
  {
5764
5763
  "oneOf": [
5764
+ {
5765
+ "$ref": "#/$defs/TableAddress"
5766
+ },
5765
5767
  {
5766
5768
  "oneOf": [
5767
- {
5768
- "$ref": "#/$defs/TableAddress"
5769
- },
5770
5769
  {
5771
5770
  "oneOf": [
5772
5771
  {
5773
- "oneOf": [
5774
- {
5775
- "$ref": "#/$defs/TableRowAddress"
5776
- },
5777
- {
5778
- "$ref": "#/$defs/TableAddress"
5779
- }
5780
- ]
5772
+ "$ref": "#/$defs/TableRowAddress"
5781
5773
  },
5782
5774
  {
5783
5775
  "$ref": "#/$defs/TableAddress"
5784
5776
  }
5785
5777
  ]
5786
- }
5787
- ]
5788
- },
5789
- {
5790
- "oneOf": [
5791
- {
5792
- "$ref": "#/$defs/TableRowAddress"
5793
5778
  },
5794
5779
  {
5795
5780
  "$ref": "#/$defs/TableAddress"
@@ -5835,7 +5820,14 @@
5835
5820
  ]
5836
5821
  },
5837
5822
  {
5838
- "$ref": "#/$defs/TableAddress"
5823
+ "oneOf": [
5824
+ {
5825
+ "$ref": "#/$defs/TableRowAddress"
5826
+ },
5827
+ {
5828
+ "$ref": "#/$defs/TableAddress"
5829
+ }
5830
+ ]
5839
5831
  }
5840
5832
  ]
5841
5833
  },
@@ -5975,207 +5967,137 @@
5975
5967
  "destination": {
5976
5968
  "oneOf": [
5977
5969
  {
5978
- "oneOf": [
5979
- {
5980
- "type": "object",
5981
- "properties": {
5982
- "kind": {
5983
- "const": "first",
5984
- "type": "string"
5985
- }
5986
- },
5987
- "additionalProperties": false,
5988
- "required": [
5989
- "kind"
5990
- ]
5991
- },
5992
- {
5993
- "type": "object",
5994
- "properties": {
5995
- "kind": {
5996
- "const": "last",
5997
- "type": "string"
5998
- }
5999
- },
6000
- "additionalProperties": false,
6001
- "required": [
6002
- "kind"
6003
- ]
6004
- },
6005
- {
6006
- "type": "object",
6007
- "properties": {
6008
- "kind": {
6009
- "const": "before",
6010
- "type": "string"
6011
- },
6012
- "rowIndex": {
6013
- "type": "integer",
6014
- "minimum": 0
6015
- }
6016
- },
6017
- "additionalProperties": false,
6018
- "required": [
6019
- "kind",
6020
- "rowIndex"
6021
- ]
6022
- },
6023
- {
6024
- "type": "object",
6025
- "properties": {
6026
- "kind": {
6027
- "const": "after",
6028
- "type": "string"
6029
- },
6030
- "rowIndex": {
6031
- "type": "integer",
6032
- "minimum": 0
6033
- }
6034
- },
6035
- "additionalProperties": false,
6036
- "required": [
6037
- "kind",
6038
- "rowIndex"
6039
- ]
6040
- },
6041
- {
6042
- "type": "object",
6043
- "properties": {
6044
- "kind": {
6045
- "const": "before",
6046
- "type": "string"
6047
- },
6048
- "target": {
6049
- "$ref": "#/$defs/TableRowAddress"
6050
- }
6051
- },
6052
- "additionalProperties": false,
6053
- "required": [
6054
- "kind",
6055
- "target"
6056
- ]
5970
+ "type": "object",
5971
+ "properties": {
5972
+ "kind": {
5973
+ "const": "first",
5974
+ "type": "string"
5975
+ }
5976
+ },
5977
+ "additionalProperties": false,
5978
+ "required": [
5979
+ "kind"
5980
+ ]
5981
+ },
5982
+ {
5983
+ "type": "object",
5984
+ "properties": {
5985
+ "kind": {
5986
+ "const": "last",
5987
+ "type": "string"
5988
+ }
5989
+ },
5990
+ "additionalProperties": false,
5991
+ "required": [
5992
+ "kind"
5993
+ ]
5994
+ },
5995
+ {
5996
+ "type": "object",
5997
+ "properties": {
5998
+ "kind": {
5999
+ "const": "before",
6000
+ "type": "string"
6057
6001
  },
6058
- {
6059
- "type": "object",
6060
- "properties": {
6061
- "kind": {
6062
- "const": "after",
6063
- "type": "string"
6064
- },
6065
- "target": {
6066
- "$ref": "#/$defs/TableRowAddress"
6067
- }
6068
- },
6069
- "additionalProperties": false,
6070
- "required": [
6071
- "kind",
6072
- "target"
6073
- ]
6002
+ "rowIndex": {
6003
+ "type": "integer",
6004
+ "minimum": 0
6005
+ }
6006
+ },
6007
+ "additionalProperties": false,
6008
+ "required": [
6009
+ "kind",
6010
+ "rowIndex"
6011
+ ]
6012
+ },
6013
+ {
6014
+ "type": "object",
6015
+ "properties": {
6016
+ "kind": {
6017
+ "const": "after",
6018
+ "type": "string"
6074
6019
  },
6075
- {
6076
- "type": "object",
6077
- "properties": {
6078
- "kind": {
6079
- "const": "before",
6080
- "type": "string"
6081
- },
6082
- "nodeId": {
6083
- "type": "string"
6084
- }
6085
- },
6086
- "additionalProperties": false,
6087
- "required": [
6088
- "kind",
6089
- "nodeId"
6090
- ]
6020
+ "rowIndex": {
6021
+ "type": "integer",
6022
+ "minimum": 0
6023
+ }
6024
+ },
6025
+ "additionalProperties": false,
6026
+ "required": [
6027
+ "kind",
6028
+ "rowIndex"
6029
+ ]
6030
+ },
6031
+ {
6032
+ "type": "object",
6033
+ "properties": {
6034
+ "kind": {
6035
+ "const": "before",
6036
+ "type": "string"
6091
6037
  },
6092
- {
6093
- "type": "object",
6094
- "properties": {
6095
- "kind": {
6096
- "const": "after",
6097
- "type": "string"
6098
- },
6099
- "nodeId": {
6100
- "type": "string"
6101
- }
6102
- },
6103
- "additionalProperties": false,
6104
- "required": [
6105
- "kind",
6106
- "nodeId"
6107
- ]
6038
+ "target": {
6039
+ "$ref": "#/$defs/TableRowAddress"
6108
6040
  }
6041
+ },
6042
+ "additionalProperties": false,
6043
+ "required": [
6044
+ "kind",
6045
+ "target"
6109
6046
  ]
6110
6047
  },
6111
6048
  {
6112
- "oneOf": [
6113
- {
6114
- "type": "object",
6115
- "properties": {
6116
- "kind": {
6117
- "const": "first",
6118
- "type": "string"
6119
- }
6120
- },
6121
- "additionalProperties": false,
6122
- "required": [
6123
- "kind"
6124
- ]
6049
+ "type": "object",
6050
+ "properties": {
6051
+ "kind": {
6052
+ "const": "after",
6053
+ "type": "string"
6125
6054
  },
6126
- {
6127
- "type": "object",
6128
- "properties": {
6129
- "kind": {
6130
- "const": "last",
6131
- "type": "string"
6132
- }
6133
- },
6134
- "additionalProperties": false,
6135
- "required": [
6136
- "kind"
6137
- ]
6055
+ "target": {
6056
+ "$ref": "#/$defs/TableRowAddress"
6057
+ }
6058
+ },
6059
+ "additionalProperties": false,
6060
+ "required": [
6061
+ "kind",
6062
+ "target"
6063
+ ]
6064
+ },
6065
+ {
6066
+ "type": "object",
6067
+ "properties": {
6068
+ "kind": {
6069
+ "const": "before",
6070
+ "type": "string"
6138
6071
  },
6139
- {
6140
- "type": "object",
6141
- "properties": {
6142
- "kind": {
6143
- "const": "before",
6144
- "type": "string"
6145
- },
6146
- "columnIndex": {
6147
- "type": "integer",
6148
- "minimum": 0
6149
- }
6150
- },
6151
- "additionalProperties": false,
6152
- "required": [
6153
- "kind",
6154
- "columnIndex"
6155
- ]
6072
+ "nodeId": {
6073
+ "type": "string"
6074
+ }
6075
+ },
6076
+ "additionalProperties": false,
6077
+ "required": [
6078
+ "kind",
6079
+ "nodeId"
6080
+ ]
6081
+ },
6082
+ {
6083
+ "type": "object",
6084
+ "properties": {
6085
+ "kind": {
6086
+ "const": "after",
6087
+ "type": "string"
6156
6088
  },
6157
- {
6158
- "type": "object",
6159
- "properties": {
6160
- "kind": {
6161
- "const": "after",
6162
- "type": "string"
6163
- },
6164
- "columnIndex": {
6165
- "type": "integer",
6166
- "minimum": 0
6167
- }
6168
- },
6169
- "additionalProperties": false,
6170
- "required": [
6171
- "kind",
6172
- "columnIndex"
6173
- ]
6089
+ "nodeId": {
6090
+ "type": "string"
6174
6091
  }
6092
+ },
6093
+ "additionalProperties": false,
6094
+ "required": [
6095
+ "kind",
6096
+ "nodeId"
6175
6097
  ]
6176
6098
  }
6177
6099
  ],
6178
- "description": "Required for actions 'move_row', 'move_column'."
6100
+ "description": "Required for action 'move_row'."
6179
6101
  },
6180
6102
  "heightPt": {
6181
6103
  "type": "number",
@@ -6257,7 +6179,7 @@
6257
6179
  "columnIndex": {
6258
6180
  "type": "integer",
6259
6181
  "minimum": 0,
6260
- "description": "Required for actions 'delete_column', 'move_column', 'set_column'."
6182
+ "description": "Required for actions 'delete_column', 'set_column'."
6261
6183
  },
6262
6184
  "widthPt": {
6263
6185
  "type": "number",
@@ -6651,7 +6573,7 @@
6651
6573
  },
6652
6574
  "metadata": {
6653
6575
  "mutates": true,
6654
- "operationCount": 19,
6576
+ "operationCount": 18,
6655
6577
  "operations": [
6656
6578
  "doc.tables.delete",
6657
6579
  "doc.tables.setLayout",
@@ -6662,7 +6584,6 @@
6662
6584
  "doc.tables.setRowOptions",
6663
6585
  "doc.tables.insertColumn",
6664
6586
  "doc.tables.deleteColumn",
6665
- "doc.tables.moveColumn",
6666
6587
  "doc.tables.setColumnWidth",
6667
6588
  "doc.tables.mergeCells",
6668
6589
  "doc.tables.unmergeCells",