@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.
@@ -3018,7 +3018,7 @@
3018
3018
  "source",
3019
3019
  "destination"
3020
3020
  ],
3021
- "description": "Optional revision side for grouped replacement or move targets."
3021
+ "description": "Optional revision side for paired replacement or move targets."
3022
3022
  },
3023
3023
  "story": {
3024
3024
  "$ref": "#/$defs/StoryLocator",
@@ -3077,7 +3077,7 @@
3077
3077
  "source",
3078
3078
  "destination"
3079
3079
  ],
3080
- "description": "Optional revision side for grouped replacement or move targets."
3080
+ "description": "Optional revision side for paired replacement or move targets."
3081
3081
  },
3082
3082
  "story": {
3083
3083
  "$ref": "#/$defs/StoryLocator",
@@ -3125,7 +3125,7 @@
3125
3125
  "source",
3126
3126
  "destination"
3127
3127
  ],
3128
- "description": "Optional revision side for grouped replacement or move targets."
3128
+ "description": "Optional revision side for paired replacement or move targets."
3129
3129
  },
3130
3130
  "story": {
3131
3131
  "$ref": "#/$defs/StoryLocator",
@@ -5548,7 +5548,6 @@
5548
5548
  "insert_column",
5549
5549
  "insert_row",
5550
5550
  "merge_cells",
5551
- "move_column",
5552
5551
  "move_row",
5553
5552
  "set_borders",
5554
5553
  "set_cell",
@@ -5562,7 +5561,7 @@
5562
5561
  "set_style_options",
5563
5562
  "unmerge_cells"
5564
5563
  ],
5565
- "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."
5564
+ "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."
5566
5565
  },
5567
5566
  "force": {
5568
5567
  "type": "boolean",
@@ -5608,34 +5607,20 @@
5608
5607
  "oneOf": [
5609
5608
  {
5610
5609
  "oneOf": [
5610
+ {
5611
+ "$ref": "#/$defs/TableAddress"
5612
+ },
5611
5613
  {
5612
5614
  "oneOf": [
5613
- {
5614
- "$ref": "#/$defs/TableAddress"
5615
- },
5616
5615
  {
5617
5616
  "oneOf": [
5618
5617
  {
5619
- "oneOf": [
5620
- {
5621
- "$ref": "#/$defs/TableRowAddress"
5622
- },
5623
- {
5624
- "$ref": "#/$defs/TableAddress"
5625
- }
5626
- ]
5618
+ "$ref": "#/$defs/TableRowAddress"
5627
5619
  },
5628
5620
  {
5629
5621
  "$ref": "#/$defs/TableAddress"
5630
5622
  }
5631
5623
  ]
5632
- }
5633
- ]
5634
- },
5635
- {
5636
- "oneOf": [
5637
- {
5638
- "$ref": "#/$defs/TableRowAddress"
5639
5624
  },
5640
5625
  {
5641
5626
  "$ref": "#/$defs/TableAddress"
@@ -5681,7 +5666,14 @@
5681
5666
  ]
5682
5667
  },
5683
5668
  {
5684
- "$ref": "#/$defs/TableAddress"
5669
+ "oneOf": [
5670
+ {
5671
+ "$ref": "#/$defs/TableRowAddress"
5672
+ },
5673
+ {
5674
+ "$ref": "#/$defs/TableAddress"
5675
+ }
5676
+ ]
5685
5677
  }
5686
5678
  ]
5687
5679
  },
@@ -5821,207 +5813,137 @@
5821
5813
  "destination": {
5822
5814
  "oneOf": [
5823
5815
  {
5824
- "oneOf": [
5825
- {
5826
- "type": "object",
5827
- "properties": {
5828
- "kind": {
5829
- "const": "first",
5830
- "type": "string"
5831
- }
5832
- },
5833
- "additionalProperties": false,
5834
- "required": [
5835
- "kind"
5836
- ]
5837
- },
5838
- {
5839
- "type": "object",
5840
- "properties": {
5841
- "kind": {
5842
- "const": "last",
5843
- "type": "string"
5844
- }
5845
- },
5846
- "additionalProperties": false,
5847
- "required": [
5848
- "kind"
5849
- ]
5850
- },
5851
- {
5852
- "type": "object",
5853
- "properties": {
5854
- "kind": {
5855
- "const": "before",
5856
- "type": "string"
5857
- },
5858
- "rowIndex": {
5859
- "type": "integer",
5860
- "minimum": 0
5861
- }
5862
- },
5863
- "additionalProperties": false,
5864
- "required": [
5865
- "kind",
5866
- "rowIndex"
5867
- ]
5868
- },
5869
- {
5870
- "type": "object",
5871
- "properties": {
5872
- "kind": {
5873
- "const": "after",
5874
- "type": "string"
5875
- },
5876
- "rowIndex": {
5877
- "type": "integer",
5878
- "minimum": 0
5879
- }
5880
- },
5881
- "additionalProperties": false,
5882
- "required": [
5883
- "kind",
5884
- "rowIndex"
5885
- ]
5886
- },
5887
- {
5888
- "type": "object",
5889
- "properties": {
5890
- "kind": {
5891
- "const": "before",
5892
- "type": "string"
5893
- },
5894
- "target": {
5895
- "$ref": "#/$defs/TableRowAddress"
5896
- }
5897
- },
5898
- "additionalProperties": false,
5899
- "required": [
5900
- "kind",
5901
- "target"
5902
- ]
5816
+ "type": "object",
5817
+ "properties": {
5818
+ "kind": {
5819
+ "const": "first",
5820
+ "type": "string"
5821
+ }
5822
+ },
5823
+ "additionalProperties": false,
5824
+ "required": [
5825
+ "kind"
5826
+ ]
5827
+ },
5828
+ {
5829
+ "type": "object",
5830
+ "properties": {
5831
+ "kind": {
5832
+ "const": "last",
5833
+ "type": "string"
5834
+ }
5835
+ },
5836
+ "additionalProperties": false,
5837
+ "required": [
5838
+ "kind"
5839
+ ]
5840
+ },
5841
+ {
5842
+ "type": "object",
5843
+ "properties": {
5844
+ "kind": {
5845
+ "const": "before",
5846
+ "type": "string"
5903
5847
  },
5904
- {
5905
- "type": "object",
5906
- "properties": {
5907
- "kind": {
5908
- "const": "after",
5909
- "type": "string"
5910
- },
5911
- "target": {
5912
- "$ref": "#/$defs/TableRowAddress"
5913
- }
5914
- },
5915
- "additionalProperties": false,
5916
- "required": [
5917
- "kind",
5918
- "target"
5919
- ]
5848
+ "rowIndex": {
5849
+ "type": "integer",
5850
+ "minimum": 0
5851
+ }
5852
+ },
5853
+ "additionalProperties": false,
5854
+ "required": [
5855
+ "kind",
5856
+ "rowIndex"
5857
+ ]
5858
+ },
5859
+ {
5860
+ "type": "object",
5861
+ "properties": {
5862
+ "kind": {
5863
+ "const": "after",
5864
+ "type": "string"
5920
5865
  },
5921
- {
5922
- "type": "object",
5923
- "properties": {
5924
- "kind": {
5925
- "const": "before",
5926
- "type": "string"
5927
- },
5928
- "nodeId": {
5929
- "type": "string"
5930
- }
5931
- },
5932
- "additionalProperties": false,
5933
- "required": [
5934
- "kind",
5935
- "nodeId"
5936
- ]
5866
+ "rowIndex": {
5867
+ "type": "integer",
5868
+ "minimum": 0
5869
+ }
5870
+ },
5871
+ "additionalProperties": false,
5872
+ "required": [
5873
+ "kind",
5874
+ "rowIndex"
5875
+ ]
5876
+ },
5877
+ {
5878
+ "type": "object",
5879
+ "properties": {
5880
+ "kind": {
5881
+ "const": "before",
5882
+ "type": "string"
5937
5883
  },
5938
- {
5939
- "type": "object",
5940
- "properties": {
5941
- "kind": {
5942
- "const": "after",
5943
- "type": "string"
5944
- },
5945
- "nodeId": {
5946
- "type": "string"
5947
- }
5948
- },
5949
- "additionalProperties": false,
5950
- "required": [
5951
- "kind",
5952
- "nodeId"
5953
- ]
5884
+ "target": {
5885
+ "$ref": "#/$defs/TableRowAddress"
5954
5886
  }
5887
+ },
5888
+ "additionalProperties": false,
5889
+ "required": [
5890
+ "kind",
5891
+ "target"
5955
5892
  ]
5956
5893
  },
5957
5894
  {
5958
- "oneOf": [
5959
- {
5960
- "type": "object",
5961
- "properties": {
5962
- "kind": {
5963
- "const": "first",
5964
- "type": "string"
5965
- }
5966
- },
5967
- "additionalProperties": false,
5968
- "required": [
5969
- "kind"
5970
- ]
5895
+ "type": "object",
5896
+ "properties": {
5897
+ "kind": {
5898
+ "const": "after",
5899
+ "type": "string"
5971
5900
  },
5972
- {
5973
- "type": "object",
5974
- "properties": {
5975
- "kind": {
5976
- "const": "last",
5977
- "type": "string"
5978
- }
5979
- },
5980
- "additionalProperties": false,
5981
- "required": [
5982
- "kind"
5983
- ]
5901
+ "target": {
5902
+ "$ref": "#/$defs/TableRowAddress"
5903
+ }
5904
+ },
5905
+ "additionalProperties": false,
5906
+ "required": [
5907
+ "kind",
5908
+ "target"
5909
+ ]
5910
+ },
5911
+ {
5912
+ "type": "object",
5913
+ "properties": {
5914
+ "kind": {
5915
+ "const": "before",
5916
+ "type": "string"
5984
5917
  },
5985
- {
5986
- "type": "object",
5987
- "properties": {
5988
- "kind": {
5989
- "const": "before",
5990
- "type": "string"
5991
- },
5992
- "columnIndex": {
5993
- "type": "integer",
5994
- "minimum": 0
5995
- }
5996
- },
5997
- "additionalProperties": false,
5998
- "required": [
5999
- "kind",
6000
- "columnIndex"
6001
- ]
5918
+ "nodeId": {
5919
+ "type": "string"
5920
+ }
5921
+ },
5922
+ "additionalProperties": false,
5923
+ "required": [
5924
+ "kind",
5925
+ "nodeId"
5926
+ ]
5927
+ },
5928
+ {
5929
+ "type": "object",
5930
+ "properties": {
5931
+ "kind": {
5932
+ "const": "after",
5933
+ "type": "string"
6002
5934
  },
6003
- {
6004
- "type": "object",
6005
- "properties": {
6006
- "kind": {
6007
- "const": "after",
6008
- "type": "string"
6009
- },
6010
- "columnIndex": {
6011
- "type": "integer",
6012
- "minimum": 0
6013
- }
6014
- },
6015
- "additionalProperties": false,
6016
- "required": [
6017
- "kind",
6018
- "columnIndex"
6019
- ]
5935
+ "nodeId": {
5936
+ "type": "string"
6020
5937
  }
5938
+ },
5939
+ "additionalProperties": false,
5940
+ "required": [
5941
+ "kind",
5942
+ "nodeId"
6021
5943
  ]
6022
5944
  }
6023
5945
  ],
6024
- "description": "Required for actions 'move_row', 'move_column'."
5946
+ "description": "Required for action 'move_row'."
6025
5947
  },
6026
5948
  "heightPt": {
6027
5949
  "type": "number",
@@ -6103,7 +6025,7 @@
6103
6025
  "columnIndex": {
6104
6026
  "type": "integer",
6105
6027
  "minimum": 0,
6106
- "description": "Required for actions 'delete_column', 'move_column', 'set_column'."
6028
+ "description": "Required for actions 'delete_column', 'set_column'."
6107
6029
  },
6108
6030
  "widthPt": {
6109
6031
  "type": "number",