@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.
@@ -2998,7 +2998,7 @@
2998
2998
  "source",
2999
2999
  "destination"
3000
3000
  ],
3001
- "description": "Optional revision side for grouped replacement or move targets."
3001
+ "description": "Optional revision side for paired replacement or move targets."
3002
3002
  },
3003
3003
  "story": {
3004
3004
  "$ref": "#/$defs/StoryLocator",
@@ -3057,7 +3057,7 @@
3057
3057
  "source",
3058
3058
  "destination"
3059
3059
  ],
3060
- "description": "Optional revision side for grouped replacement or move targets."
3060
+ "description": "Optional revision side for paired replacement or move targets."
3061
3061
  },
3062
3062
  "story": {
3063
3063
  "$ref": "#/$defs/StoryLocator",
@@ -3105,7 +3105,7 @@
3105
3105
  "source",
3106
3106
  "destination"
3107
3107
  ],
3108
- "description": "Optional revision side for grouped replacement or move targets."
3108
+ "description": "Optional revision side for paired replacement or move targets."
3109
3109
  },
3110
3110
  "story": {
3111
3111
  "$ref": "#/$defs/StoryLocator",
@@ -5519,7 +5519,6 @@
5519
5519
  "insert_column",
5520
5520
  "insert_row",
5521
5521
  "merge_cells",
5522
- "move_column",
5523
5522
  "move_row",
5524
5523
  "set_borders",
5525
5524
  "set_cell",
@@ -5533,7 +5532,7 @@
5533
5532
  "set_style_options",
5534
5533
  "unmerge_cells"
5535
5534
  ],
5536
- "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."
5535
+ "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."
5537
5536
  },
5538
5537
  "force": {
5539
5538
  "type": "boolean",
@@ -5579,34 +5578,20 @@
5579
5578
  "oneOf": [
5580
5579
  {
5581
5580
  "oneOf": [
5581
+ {
5582
+ "$ref": "#/$defs/TableAddress"
5583
+ },
5582
5584
  {
5583
5585
  "oneOf": [
5584
- {
5585
- "$ref": "#/$defs/TableAddress"
5586
- },
5587
5586
  {
5588
5587
  "oneOf": [
5589
5588
  {
5590
- "oneOf": [
5591
- {
5592
- "$ref": "#/$defs/TableRowAddress"
5593
- },
5594
- {
5595
- "$ref": "#/$defs/TableAddress"
5596
- }
5597
- ]
5589
+ "$ref": "#/$defs/TableRowAddress"
5598
5590
  },
5599
5591
  {
5600
5592
  "$ref": "#/$defs/TableAddress"
5601
5593
  }
5602
5594
  ]
5603
- }
5604
- ]
5605
- },
5606
- {
5607
- "oneOf": [
5608
- {
5609
- "$ref": "#/$defs/TableRowAddress"
5610
5595
  },
5611
5596
  {
5612
5597
  "$ref": "#/$defs/TableAddress"
@@ -5652,7 +5637,14 @@
5652
5637
  ]
5653
5638
  },
5654
5639
  {
5655
- "$ref": "#/$defs/TableAddress"
5640
+ "oneOf": [
5641
+ {
5642
+ "$ref": "#/$defs/TableRowAddress"
5643
+ },
5644
+ {
5645
+ "$ref": "#/$defs/TableAddress"
5646
+ }
5647
+ ]
5656
5648
  }
5657
5649
  ]
5658
5650
  },
@@ -5792,207 +5784,137 @@
5792
5784
  "destination": {
5793
5785
  "oneOf": [
5794
5786
  {
5795
- "oneOf": [
5796
- {
5797
- "type": "object",
5798
- "properties": {
5799
- "kind": {
5800
- "const": "first",
5801
- "type": "string"
5802
- }
5803
- },
5804
- "additionalProperties": false,
5805
- "required": [
5806
- "kind"
5807
- ]
5808
- },
5809
- {
5810
- "type": "object",
5811
- "properties": {
5812
- "kind": {
5813
- "const": "last",
5814
- "type": "string"
5815
- }
5816
- },
5817
- "additionalProperties": false,
5818
- "required": [
5819
- "kind"
5820
- ]
5821
- },
5822
- {
5823
- "type": "object",
5824
- "properties": {
5825
- "kind": {
5826
- "const": "before",
5827
- "type": "string"
5828
- },
5829
- "rowIndex": {
5830
- "type": "integer",
5831
- "minimum": 0
5832
- }
5833
- },
5834
- "additionalProperties": false,
5835
- "required": [
5836
- "kind",
5837
- "rowIndex"
5838
- ]
5839
- },
5840
- {
5841
- "type": "object",
5842
- "properties": {
5843
- "kind": {
5844
- "const": "after",
5845
- "type": "string"
5846
- },
5847
- "rowIndex": {
5848
- "type": "integer",
5849
- "minimum": 0
5850
- }
5851
- },
5852
- "additionalProperties": false,
5853
- "required": [
5854
- "kind",
5855
- "rowIndex"
5856
- ]
5857
- },
5858
- {
5859
- "type": "object",
5860
- "properties": {
5861
- "kind": {
5862
- "const": "before",
5863
- "type": "string"
5864
- },
5865
- "target": {
5866
- "$ref": "#/$defs/TableRowAddress"
5867
- }
5868
- },
5869
- "additionalProperties": false,
5870
- "required": [
5871
- "kind",
5872
- "target"
5873
- ]
5787
+ "type": "object",
5788
+ "properties": {
5789
+ "kind": {
5790
+ "const": "first",
5791
+ "type": "string"
5792
+ }
5793
+ },
5794
+ "additionalProperties": false,
5795
+ "required": [
5796
+ "kind"
5797
+ ]
5798
+ },
5799
+ {
5800
+ "type": "object",
5801
+ "properties": {
5802
+ "kind": {
5803
+ "const": "last",
5804
+ "type": "string"
5805
+ }
5806
+ },
5807
+ "additionalProperties": false,
5808
+ "required": [
5809
+ "kind"
5810
+ ]
5811
+ },
5812
+ {
5813
+ "type": "object",
5814
+ "properties": {
5815
+ "kind": {
5816
+ "const": "before",
5817
+ "type": "string"
5874
5818
  },
5875
- {
5876
- "type": "object",
5877
- "properties": {
5878
- "kind": {
5879
- "const": "after",
5880
- "type": "string"
5881
- },
5882
- "target": {
5883
- "$ref": "#/$defs/TableRowAddress"
5884
- }
5885
- },
5886
- "additionalProperties": false,
5887
- "required": [
5888
- "kind",
5889
- "target"
5890
- ]
5819
+ "rowIndex": {
5820
+ "type": "integer",
5821
+ "minimum": 0
5822
+ }
5823
+ },
5824
+ "additionalProperties": false,
5825
+ "required": [
5826
+ "kind",
5827
+ "rowIndex"
5828
+ ]
5829
+ },
5830
+ {
5831
+ "type": "object",
5832
+ "properties": {
5833
+ "kind": {
5834
+ "const": "after",
5835
+ "type": "string"
5891
5836
  },
5892
- {
5893
- "type": "object",
5894
- "properties": {
5895
- "kind": {
5896
- "const": "before",
5897
- "type": "string"
5898
- },
5899
- "nodeId": {
5900
- "type": "string"
5901
- }
5902
- },
5903
- "additionalProperties": false,
5904
- "required": [
5905
- "kind",
5906
- "nodeId"
5907
- ]
5837
+ "rowIndex": {
5838
+ "type": "integer",
5839
+ "minimum": 0
5840
+ }
5841
+ },
5842
+ "additionalProperties": false,
5843
+ "required": [
5844
+ "kind",
5845
+ "rowIndex"
5846
+ ]
5847
+ },
5848
+ {
5849
+ "type": "object",
5850
+ "properties": {
5851
+ "kind": {
5852
+ "const": "before",
5853
+ "type": "string"
5908
5854
  },
5909
- {
5910
- "type": "object",
5911
- "properties": {
5912
- "kind": {
5913
- "const": "after",
5914
- "type": "string"
5915
- },
5916
- "nodeId": {
5917
- "type": "string"
5918
- }
5919
- },
5920
- "additionalProperties": false,
5921
- "required": [
5922
- "kind",
5923
- "nodeId"
5924
- ]
5855
+ "target": {
5856
+ "$ref": "#/$defs/TableRowAddress"
5925
5857
  }
5858
+ },
5859
+ "additionalProperties": false,
5860
+ "required": [
5861
+ "kind",
5862
+ "target"
5926
5863
  ]
5927
5864
  },
5928
5865
  {
5929
- "oneOf": [
5930
- {
5931
- "type": "object",
5932
- "properties": {
5933
- "kind": {
5934
- "const": "first",
5935
- "type": "string"
5936
- }
5937
- },
5938
- "additionalProperties": false,
5939
- "required": [
5940
- "kind"
5941
- ]
5866
+ "type": "object",
5867
+ "properties": {
5868
+ "kind": {
5869
+ "const": "after",
5870
+ "type": "string"
5942
5871
  },
5943
- {
5944
- "type": "object",
5945
- "properties": {
5946
- "kind": {
5947
- "const": "last",
5948
- "type": "string"
5949
- }
5950
- },
5951
- "additionalProperties": false,
5952
- "required": [
5953
- "kind"
5954
- ]
5872
+ "target": {
5873
+ "$ref": "#/$defs/TableRowAddress"
5874
+ }
5875
+ },
5876
+ "additionalProperties": false,
5877
+ "required": [
5878
+ "kind",
5879
+ "target"
5880
+ ]
5881
+ },
5882
+ {
5883
+ "type": "object",
5884
+ "properties": {
5885
+ "kind": {
5886
+ "const": "before",
5887
+ "type": "string"
5955
5888
  },
5956
- {
5957
- "type": "object",
5958
- "properties": {
5959
- "kind": {
5960
- "const": "before",
5961
- "type": "string"
5962
- },
5963
- "columnIndex": {
5964
- "type": "integer",
5965
- "minimum": 0
5966
- }
5967
- },
5968
- "additionalProperties": false,
5969
- "required": [
5970
- "kind",
5971
- "columnIndex"
5972
- ]
5889
+ "nodeId": {
5890
+ "type": "string"
5891
+ }
5892
+ },
5893
+ "additionalProperties": false,
5894
+ "required": [
5895
+ "kind",
5896
+ "nodeId"
5897
+ ]
5898
+ },
5899
+ {
5900
+ "type": "object",
5901
+ "properties": {
5902
+ "kind": {
5903
+ "const": "after",
5904
+ "type": "string"
5973
5905
  },
5974
- {
5975
- "type": "object",
5976
- "properties": {
5977
- "kind": {
5978
- "const": "after",
5979
- "type": "string"
5980
- },
5981
- "columnIndex": {
5982
- "type": "integer",
5983
- "minimum": 0
5984
- }
5985
- },
5986
- "additionalProperties": false,
5987
- "required": [
5988
- "kind",
5989
- "columnIndex"
5990
- ]
5906
+ "nodeId": {
5907
+ "type": "string"
5991
5908
  }
5909
+ },
5910
+ "additionalProperties": false,
5911
+ "required": [
5912
+ "kind",
5913
+ "nodeId"
5992
5914
  ]
5993
5915
  }
5994
5916
  ],
5995
- "description": "Required for actions 'move_row', 'move_column'."
5917
+ "description": "Required for action 'move_row'."
5996
5918
  },
5997
5919
  "heightPt": {
5998
5920
  "type": "number",
@@ -6074,7 +5996,7 @@
6074
5996
  "columnIndex": {
6075
5997
  "type": "integer",
6076
5998
  "minimum": 0,
6077
- "description": "Required for actions 'delete_column', 'move_column', 'set_column'."
5999
+ "description": "Required for actions 'delete_column', 'set_column'."
6078
6000
  },
6079
6001
  "widthPt": {
6080
6002
  "type": "number",