@superdoc/sdk 2.12.0-next.5 → 2.12.0-next.7

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.
@@ -30344,6 +30344,24 @@ export interface DocDiffApplyParams {
30344
30344
  hasChanges: boolean;
30345
30345
  };
30346
30346
  };
30347
+ applyEligibility?: {
30348
+ direct: {
30349
+ status: "candidate" | "blocked";
30350
+ blockers: Array<{
30351
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
30352
+ message: string;
30353
+ families?: Array<string>;
30354
+ }>;
30355
+ };
30356
+ tracked: {
30357
+ status: "candidate" | "blocked";
30358
+ blockers: Array<{
30359
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
30360
+ message: string;
30361
+ families?: Array<string>;
30362
+ }>;
30363
+ };
30364
+ };
30347
30365
  payload: Record<string, unknown>;
30348
30366
  };
30349
30367
  }
@@ -118647,6 +118665,24 @@ export type DocDiffCompareResult = {
118647
118665
  hasChanges: boolean;
118648
118666
  };
118649
118667
  };
118668
+ applyEligibility?: {
118669
+ direct: {
118670
+ status: "candidate" | "blocked";
118671
+ blockers: Array<{
118672
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
118673
+ message: string;
118674
+ families?: Array<string>;
118675
+ }>;
118676
+ };
118677
+ tracked: {
118678
+ status: "candidate" | "blocked";
118679
+ blockers: Array<{
118680
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
118681
+ message: string;
118682
+ families?: Array<string>;
118683
+ }>;
118684
+ };
118685
+ };
118650
118686
  payload: Record<string, unknown>;
118651
118687
  };
118652
118688
  export type DocDiffApplyResult = {
@@ -148343,6 +148379,24 @@ export interface DocDiffApplyBoundParams {
148343
148379
  hasChanges: boolean;
148344
148380
  };
148345
148381
  };
148382
+ applyEligibility?: {
148383
+ direct: {
148384
+ status: "candidate" | "blocked";
148385
+ blockers: Array<{
148386
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
148387
+ message: string;
148388
+ families?: Array<string>;
148389
+ }>;
148390
+ };
148391
+ tracked: {
148392
+ status: "candidate" | "blocked";
148393
+ blockers: Array<{
148394
+ code: "family-apply-lane-unavailable" | "header-footer-physical-lifecycle-unsafe" | "header-footer-tracked-lifecycle-unsupported" | "comment-replay-unsafe" | "comment-anchor-marker-semantics-unsafe" | "styles-replay-unsafe" | "numbering-replay-unsafe" | "section-reference-replay-unsafe" | "structural-paragraph-unsupported";
148395
+ message: string;
148396
+ families?: Array<string>;
148397
+ }>;
148398
+ };
148399
+ };
148346
148400
  payload: Record<string, unknown>;
148347
148401
  };
148348
148402
  }
@@ -300963,6 +300963,122 @@ const CONTRACT = {
300963
300963
  "parts"
300964
300964
  ]
300965
300965
  },
300966
+ "applyEligibility": {
300967
+ "type": "object",
300968
+ "properties": {
300969
+ "direct": {
300970
+ "type": "object",
300971
+ "properties": {
300972
+ "status": {
300973
+ "type": "string",
300974
+ "enum": [
300975
+ "candidate",
300976
+ "blocked"
300977
+ ]
300978
+ },
300979
+ "blockers": {
300980
+ "type": "array",
300981
+ "items": {
300982
+ "type": "object",
300983
+ "properties": {
300984
+ "code": {
300985
+ "type": "string",
300986
+ "enum": [
300987
+ "family-apply-lane-unavailable",
300988
+ "header-footer-physical-lifecycle-unsafe",
300989
+ "header-footer-tracked-lifecycle-unsupported",
300990
+ "comment-replay-unsafe",
300991
+ "comment-anchor-marker-semantics-unsafe",
300992
+ "styles-replay-unsafe",
300993
+ "numbering-replay-unsafe",
300994
+ "section-reference-replay-unsafe",
300995
+ "structural-paragraph-unsupported"
300996
+ ]
300997
+ },
300998
+ "message": {
300999
+ "type": "string"
301000
+ },
301001
+ "families": {
301002
+ "type": "array",
301003
+ "items": {
301004
+ "type": "string"
301005
+ }
301006
+ }
301007
+ },
301008
+ "additionalProperties": false,
301009
+ "required": [
301010
+ "code",
301011
+ "message"
301012
+ ]
301013
+ }
301014
+ }
301015
+ },
301016
+ "additionalProperties": false,
301017
+ "required": [
301018
+ "status",
301019
+ "blockers"
301020
+ ]
301021
+ },
301022
+ "tracked": {
301023
+ "type": "object",
301024
+ "properties": {
301025
+ "status": {
301026
+ "type": "string",
301027
+ "enum": [
301028
+ "candidate",
301029
+ "blocked"
301030
+ ]
301031
+ },
301032
+ "blockers": {
301033
+ "type": "array",
301034
+ "items": {
301035
+ "type": "object",
301036
+ "properties": {
301037
+ "code": {
301038
+ "type": "string",
301039
+ "enum": [
301040
+ "family-apply-lane-unavailable",
301041
+ "header-footer-physical-lifecycle-unsafe",
301042
+ "header-footer-tracked-lifecycle-unsupported",
301043
+ "comment-replay-unsafe",
301044
+ "comment-anchor-marker-semantics-unsafe",
301045
+ "styles-replay-unsafe",
301046
+ "numbering-replay-unsafe",
301047
+ "section-reference-replay-unsafe",
301048
+ "structural-paragraph-unsupported"
301049
+ ]
301050
+ },
301051
+ "message": {
301052
+ "type": "string"
301053
+ },
301054
+ "families": {
301055
+ "type": "array",
301056
+ "items": {
301057
+ "type": "string"
301058
+ }
301059
+ }
301060
+ },
301061
+ "additionalProperties": false,
301062
+ "required": [
301063
+ "code",
301064
+ "message"
301065
+ ]
301066
+ }
301067
+ }
301068
+ },
301069
+ "additionalProperties": false,
301070
+ "required": [
301071
+ "status",
301072
+ "blockers"
301073
+ ]
301074
+ }
301075
+ },
301076
+ "additionalProperties": false,
301077
+ "required": [
301078
+ "direct",
301079
+ "tracked"
301080
+ ]
301081
+ },
300966
301082
  "payload": {
300967
301083
  "type": "object",
300968
301084
  "description": "Opaque engine-owned diff data."
@@ -301206,6 +301322,157 @@ const CONTRACT = {
301206
301322
  "parts"
301207
301323
  ]
301208
301324
  },
301325
+ "applyEligibility": {
301326
+ "type": "object",
301327
+ "properties": {
301328
+ "direct": {
301329
+ "type": "object",
301330
+ "properties": {
301331
+ "status": {
301332
+ "oneOf": [
301333
+ {
301334
+ "const": "candidate"
301335
+ },
301336
+ {
301337
+ "const": "blocked"
301338
+ }
301339
+ ]
301340
+ },
301341
+ "blockers": {
301342
+ "type": "array",
301343
+ "items": {
301344
+ "type": "object",
301345
+ "properties": {
301346
+ "code": {
301347
+ "oneOf": [
301348
+ {
301349
+ "const": "family-apply-lane-unavailable"
301350
+ },
301351
+ {
301352
+ "const": "header-footer-physical-lifecycle-unsafe"
301353
+ },
301354
+ {
301355
+ "const": "header-footer-tracked-lifecycle-unsupported"
301356
+ },
301357
+ {
301358
+ "const": "comment-replay-unsafe"
301359
+ },
301360
+ {
301361
+ "const": "comment-anchor-marker-semantics-unsafe"
301362
+ },
301363
+ {
301364
+ "const": "styles-replay-unsafe"
301365
+ },
301366
+ {
301367
+ "const": "numbering-replay-unsafe"
301368
+ },
301369
+ {
301370
+ "const": "section-reference-replay-unsafe"
301371
+ },
301372
+ {
301373
+ "const": "structural-paragraph-unsupported"
301374
+ }
301375
+ ]
301376
+ },
301377
+ "message": {
301378
+ "type": "string"
301379
+ },
301380
+ "families": {
301381
+ "type": "array",
301382
+ "items": {
301383
+ "type": "string"
301384
+ }
301385
+ }
301386
+ },
301387
+ "required": [
301388
+ "code",
301389
+ "message"
301390
+ ]
301391
+ }
301392
+ }
301393
+ },
301394
+ "required": [
301395
+ "status",
301396
+ "blockers"
301397
+ ]
301398
+ },
301399
+ "tracked": {
301400
+ "type": "object",
301401
+ "properties": {
301402
+ "status": {
301403
+ "oneOf": [
301404
+ {
301405
+ "const": "candidate"
301406
+ },
301407
+ {
301408
+ "const": "blocked"
301409
+ }
301410
+ ]
301411
+ },
301412
+ "blockers": {
301413
+ "type": "array",
301414
+ "items": {
301415
+ "type": "object",
301416
+ "properties": {
301417
+ "code": {
301418
+ "oneOf": [
301419
+ {
301420
+ "const": "family-apply-lane-unavailable"
301421
+ },
301422
+ {
301423
+ "const": "header-footer-physical-lifecycle-unsafe"
301424
+ },
301425
+ {
301426
+ "const": "header-footer-tracked-lifecycle-unsupported"
301427
+ },
301428
+ {
301429
+ "const": "comment-replay-unsafe"
301430
+ },
301431
+ {
301432
+ "const": "comment-anchor-marker-semantics-unsafe"
301433
+ },
301434
+ {
301435
+ "const": "styles-replay-unsafe"
301436
+ },
301437
+ {
301438
+ "const": "numbering-replay-unsafe"
301439
+ },
301440
+ {
301441
+ "const": "section-reference-replay-unsafe"
301442
+ },
301443
+ {
301444
+ "const": "structural-paragraph-unsupported"
301445
+ }
301446
+ ]
301447
+ },
301448
+ "message": {
301449
+ "type": "string"
301450
+ },
301451
+ "families": {
301452
+ "type": "array",
301453
+ "items": {
301454
+ "type": "string"
301455
+ }
301456
+ }
301457
+ },
301458
+ "required": [
301459
+ "code",
301460
+ "message"
301461
+ ]
301462
+ }
301463
+ }
301464
+ },
301465
+ "required": [
301466
+ "status",
301467
+ "blockers"
301468
+ ]
301469
+ }
301470
+ },
301471
+ "required": [
301472
+ "direct",
301473
+ "tracked"
301474
+ ]
301475
+ },
301209
301476
  "payload": {
301210
301477
  "type": "object",
301211
301478
  "properties": {},
@@ -301390,6 +301657,122 @@ const CONTRACT = {
301390
301657
  "parts"
301391
301658
  ]
301392
301659
  },
301660
+ "applyEligibility": {
301661
+ "type": "object",
301662
+ "properties": {
301663
+ "direct": {
301664
+ "type": "object",
301665
+ "properties": {
301666
+ "status": {
301667
+ "type": "string",
301668
+ "enum": [
301669
+ "candidate",
301670
+ "blocked"
301671
+ ]
301672
+ },
301673
+ "blockers": {
301674
+ "type": "array",
301675
+ "items": {
301676
+ "type": "object",
301677
+ "properties": {
301678
+ "code": {
301679
+ "type": "string",
301680
+ "enum": [
301681
+ "family-apply-lane-unavailable",
301682
+ "header-footer-physical-lifecycle-unsafe",
301683
+ "header-footer-tracked-lifecycle-unsupported",
301684
+ "comment-replay-unsafe",
301685
+ "comment-anchor-marker-semantics-unsafe",
301686
+ "styles-replay-unsafe",
301687
+ "numbering-replay-unsafe",
301688
+ "section-reference-replay-unsafe",
301689
+ "structural-paragraph-unsupported"
301690
+ ]
301691
+ },
301692
+ "message": {
301693
+ "type": "string"
301694
+ },
301695
+ "families": {
301696
+ "type": "array",
301697
+ "items": {
301698
+ "type": "string"
301699
+ }
301700
+ }
301701
+ },
301702
+ "additionalProperties": false,
301703
+ "required": [
301704
+ "code",
301705
+ "message"
301706
+ ]
301707
+ }
301708
+ }
301709
+ },
301710
+ "additionalProperties": false,
301711
+ "required": [
301712
+ "status",
301713
+ "blockers"
301714
+ ]
301715
+ },
301716
+ "tracked": {
301717
+ "type": "object",
301718
+ "properties": {
301719
+ "status": {
301720
+ "type": "string",
301721
+ "enum": [
301722
+ "candidate",
301723
+ "blocked"
301724
+ ]
301725
+ },
301726
+ "blockers": {
301727
+ "type": "array",
301728
+ "items": {
301729
+ "type": "object",
301730
+ "properties": {
301731
+ "code": {
301732
+ "type": "string",
301733
+ "enum": [
301734
+ "family-apply-lane-unavailable",
301735
+ "header-footer-physical-lifecycle-unsafe",
301736
+ "header-footer-tracked-lifecycle-unsupported",
301737
+ "comment-replay-unsafe",
301738
+ "comment-anchor-marker-semantics-unsafe",
301739
+ "styles-replay-unsafe",
301740
+ "numbering-replay-unsafe",
301741
+ "section-reference-replay-unsafe",
301742
+ "structural-paragraph-unsupported"
301743
+ ]
301744
+ },
301745
+ "message": {
301746
+ "type": "string"
301747
+ },
301748
+ "families": {
301749
+ "type": "array",
301750
+ "items": {
301751
+ "type": "string"
301752
+ }
301753
+ }
301754
+ },
301755
+ "additionalProperties": false,
301756
+ "required": [
301757
+ "code",
301758
+ "message"
301759
+ ]
301760
+ }
301761
+ }
301762
+ },
301763
+ "additionalProperties": false,
301764
+ "required": [
301765
+ "status",
301766
+ "blockers"
301767
+ ]
301768
+ }
301769
+ },
301770
+ "additionalProperties": false,
301771
+ "required": [
301772
+ "direct",
301773
+ "tracked"
301774
+ ]
301775
+ },
301393
301776
  "payload": {
301394
301777
  "type": "object",
301395
301778
  "description": "Opaque engine-owned diff data."
@@ -303879,6 +303879,122 @@ export const CONTRACT = {
303879
303879
  "parts"
303880
303880
  ]
303881
303881
  },
303882
+ "applyEligibility": {
303883
+ "type": "object",
303884
+ "properties": {
303885
+ "direct": {
303886
+ "type": "object",
303887
+ "properties": {
303888
+ "status": {
303889
+ "type": "string",
303890
+ "enum": [
303891
+ "candidate",
303892
+ "blocked"
303893
+ ]
303894
+ },
303895
+ "blockers": {
303896
+ "type": "array",
303897
+ "items": {
303898
+ "type": "object",
303899
+ "properties": {
303900
+ "code": {
303901
+ "type": "string",
303902
+ "enum": [
303903
+ "family-apply-lane-unavailable",
303904
+ "header-footer-physical-lifecycle-unsafe",
303905
+ "header-footer-tracked-lifecycle-unsupported",
303906
+ "comment-replay-unsafe",
303907
+ "comment-anchor-marker-semantics-unsafe",
303908
+ "styles-replay-unsafe",
303909
+ "numbering-replay-unsafe",
303910
+ "section-reference-replay-unsafe",
303911
+ "structural-paragraph-unsupported"
303912
+ ]
303913
+ },
303914
+ "message": {
303915
+ "type": "string"
303916
+ },
303917
+ "families": {
303918
+ "type": "array",
303919
+ "items": {
303920
+ "type": "string"
303921
+ }
303922
+ }
303923
+ },
303924
+ "additionalProperties": false,
303925
+ "required": [
303926
+ "code",
303927
+ "message"
303928
+ ]
303929
+ }
303930
+ }
303931
+ },
303932
+ "additionalProperties": false,
303933
+ "required": [
303934
+ "status",
303935
+ "blockers"
303936
+ ]
303937
+ },
303938
+ "tracked": {
303939
+ "type": "object",
303940
+ "properties": {
303941
+ "status": {
303942
+ "type": "string",
303943
+ "enum": [
303944
+ "candidate",
303945
+ "blocked"
303946
+ ]
303947
+ },
303948
+ "blockers": {
303949
+ "type": "array",
303950
+ "items": {
303951
+ "type": "object",
303952
+ "properties": {
303953
+ "code": {
303954
+ "type": "string",
303955
+ "enum": [
303956
+ "family-apply-lane-unavailable",
303957
+ "header-footer-physical-lifecycle-unsafe",
303958
+ "header-footer-tracked-lifecycle-unsupported",
303959
+ "comment-replay-unsafe",
303960
+ "comment-anchor-marker-semantics-unsafe",
303961
+ "styles-replay-unsafe",
303962
+ "numbering-replay-unsafe",
303963
+ "section-reference-replay-unsafe",
303964
+ "structural-paragraph-unsupported"
303965
+ ]
303966
+ },
303967
+ "message": {
303968
+ "type": "string"
303969
+ },
303970
+ "families": {
303971
+ "type": "array",
303972
+ "items": {
303973
+ "type": "string"
303974
+ }
303975
+ }
303976
+ },
303977
+ "additionalProperties": false,
303978
+ "required": [
303979
+ "code",
303980
+ "message"
303981
+ ]
303982
+ }
303983
+ }
303984
+ },
303985
+ "additionalProperties": false,
303986
+ "required": [
303987
+ "status",
303988
+ "blockers"
303989
+ ]
303990
+ }
303991
+ },
303992
+ "additionalProperties": false,
303993
+ "required": [
303994
+ "direct",
303995
+ "tracked"
303996
+ ]
303997
+ },
303882
303998
  "payload": {
303883
303999
  "type": "object",
303884
304000
  "description": "Opaque engine-owned diff data."
@@ -304122,6 +304238,157 @@ export const CONTRACT = {
304122
304238
  "parts"
304123
304239
  ]
304124
304240
  },
304241
+ "applyEligibility": {
304242
+ "type": "object",
304243
+ "properties": {
304244
+ "direct": {
304245
+ "type": "object",
304246
+ "properties": {
304247
+ "status": {
304248
+ "oneOf": [
304249
+ {
304250
+ "const": "candidate"
304251
+ },
304252
+ {
304253
+ "const": "blocked"
304254
+ }
304255
+ ]
304256
+ },
304257
+ "blockers": {
304258
+ "type": "array",
304259
+ "items": {
304260
+ "type": "object",
304261
+ "properties": {
304262
+ "code": {
304263
+ "oneOf": [
304264
+ {
304265
+ "const": "family-apply-lane-unavailable"
304266
+ },
304267
+ {
304268
+ "const": "header-footer-physical-lifecycle-unsafe"
304269
+ },
304270
+ {
304271
+ "const": "header-footer-tracked-lifecycle-unsupported"
304272
+ },
304273
+ {
304274
+ "const": "comment-replay-unsafe"
304275
+ },
304276
+ {
304277
+ "const": "comment-anchor-marker-semantics-unsafe"
304278
+ },
304279
+ {
304280
+ "const": "styles-replay-unsafe"
304281
+ },
304282
+ {
304283
+ "const": "numbering-replay-unsafe"
304284
+ },
304285
+ {
304286
+ "const": "section-reference-replay-unsafe"
304287
+ },
304288
+ {
304289
+ "const": "structural-paragraph-unsupported"
304290
+ }
304291
+ ]
304292
+ },
304293
+ "message": {
304294
+ "type": "string"
304295
+ },
304296
+ "families": {
304297
+ "type": "array",
304298
+ "items": {
304299
+ "type": "string"
304300
+ }
304301
+ }
304302
+ },
304303
+ "required": [
304304
+ "code",
304305
+ "message"
304306
+ ]
304307
+ }
304308
+ }
304309
+ },
304310
+ "required": [
304311
+ "status",
304312
+ "blockers"
304313
+ ]
304314
+ },
304315
+ "tracked": {
304316
+ "type": "object",
304317
+ "properties": {
304318
+ "status": {
304319
+ "oneOf": [
304320
+ {
304321
+ "const": "candidate"
304322
+ },
304323
+ {
304324
+ "const": "blocked"
304325
+ }
304326
+ ]
304327
+ },
304328
+ "blockers": {
304329
+ "type": "array",
304330
+ "items": {
304331
+ "type": "object",
304332
+ "properties": {
304333
+ "code": {
304334
+ "oneOf": [
304335
+ {
304336
+ "const": "family-apply-lane-unavailable"
304337
+ },
304338
+ {
304339
+ "const": "header-footer-physical-lifecycle-unsafe"
304340
+ },
304341
+ {
304342
+ "const": "header-footer-tracked-lifecycle-unsupported"
304343
+ },
304344
+ {
304345
+ "const": "comment-replay-unsafe"
304346
+ },
304347
+ {
304348
+ "const": "comment-anchor-marker-semantics-unsafe"
304349
+ },
304350
+ {
304351
+ "const": "styles-replay-unsafe"
304352
+ },
304353
+ {
304354
+ "const": "numbering-replay-unsafe"
304355
+ },
304356
+ {
304357
+ "const": "section-reference-replay-unsafe"
304358
+ },
304359
+ {
304360
+ "const": "structural-paragraph-unsupported"
304361
+ }
304362
+ ]
304363
+ },
304364
+ "message": {
304365
+ "type": "string"
304366
+ },
304367
+ "families": {
304368
+ "type": "array",
304369
+ "items": {
304370
+ "type": "string"
304371
+ }
304372
+ }
304373
+ },
304374
+ "required": [
304375
+ "code",
304376
+ "message"
304377
+ ]
304378
+ }
304379
+ }
304380
+ },
304381
+ "required": [
304382
+ "status",
304383
+ "blockers"
304384
+ ]
304385
+ }
304386
+ },
304387
+ "required": [
304388
+ "direct",
304389
+ "tracked"
304390
+ ]
304391
+ },
304125
304392
  "payload": {
304126
304393
  "type": "object",
304127
304394
  "properties": {},
@@ -304306,6 +304573,122 @@ export const CONTRACT = {
304306
304573
  "parts"
304307
304574
  ]
304308
304575
  },
304576
+ "applyEligibility": {
304577
+ "type": "object",
304578
+ "properties": {
304579
+ "direct": {
304580
+ "type": "object",
304581
+ "properties": {
304582
+ "status": {
304583
+ "type": "string",
304584
+ "enum": [
304585
+ "candidate",
304586
+ "blocked"
304587
+ ]
304588
+ },
304589
+ "blockers": {
304590
+ "type": "array",
304591
+ "items": {
304592
+ "type": "object",
304593
+ "properties": {
304594
+ "code": {
304595
+ "type": "string",
304596
+ "enum": [
304597
+ "family-apply-lane-unavailable",
304598
+ "header-footer-physical-lifecycle-unsafe",
304599
+ "header-footer-tracked-lifecycle-unsupported",
304600
+ "comment-replay-unsafe",
304601
+ "comment-anchor-marker-semantics-unsafe",
304602
+ "styles-replay-unsafe",
304603
+ "numbering-replay-unsafe",
304604
+ "section-reference-replay-unsafe",
304605
+ "structural-paragraph-unsupported"
304606
+ ]
304607
+ },
304608
+ "message": {
304609
+ "type": "string"
304610
+ },
304611
+ "families": {
304612
+ "type": "array",
304613
+ "items": {
304614
+ "type": "string"
304615
+ }
304616
+ }
304617
+ },
304618
+ "additionalProperties": false,
304619
+ "required": [
304620
+ "code",
304621
+ "message"
304622
+ ]
304623
+ }
304624
+ }
304625
+ },
304626
+ "additionalProperties": false,
304627
+ "required": [
304628
+ "status",
304629
+ "blockers"
304630
+ ]
304631
+ },
304632
+ "tracked": {
304633
+ "type": "object",
304634
+ "properties": {
304635
+ "status": {
304636
+ "type": "string",
304637
+ "enum": [
304638
+ "candidate",
304639
+ "blocked"
304640
+ ]
304641
+ },
304642
+ "blockers": {
304643
+ "type": "array",
304644
+ "items": {
304645
+ "type": "object",
304646
+ "properties": {
304647
+ "code": {
304648
+ "type": "string",
304649
+ "enum": [
304650
+ "family-apply-lane-unavailable",
304651
+ "header-footer-physical-lifecycle-unsafe",
304652
+ "header-footer-tracked-lifecycle-unsupported",
304653
+ "comment-replay-unsafe",
304654
+ "comment-anchor-marker-semantics-unsafe",
304655
+ "styles-replay-unsafe",
304656
+ "numbering-replay-unsafe",
304657
+ "section-reference-replay-unsafe",
304658
+ "structural-paragraph-unsupported"
304659
+ ]
304660
+ },
304661
+ "message": {
304662
+ "type": "string"
304663
+ },
304664
+ "families": {
304665
+ "type": "array",
304666
+ "items": {
304667
+ "type": "string"
304668
+ }
304669
+ }
304670
+ },
304671
+ "additionalProperties": false,
304672
+ "required": [
304673
+ "code",
304674
+ "message"
304675
+ ]
304676
+ }
304677
+ }
304678
+ },
304679
+ "additionalProperties": false,
304680
+ "required": [
304681
+ "status",
304682
+ "blockers"
304683
+ ]
304684
+ }
304685
+ },
304686
+ "additionalProperties": false,
304687
+ "required": [
304688
+ "direct",
304689
+ "tracked"
304690
+ ]
304691
+ },
304309
304692
  "payload": {
304310
304693
  "type": "object",
304311
304694
  "description": "Opaque engine-owned diff data."
@@ -3,6 +3,6 @@
3
3
  // AUTO-GENERATED by scripts/embed-version.mjs — DO NOT EDIT.
4
4
  // Source of truth: package.json. Regenerated on every SDK build so the
5
5
  // SDK retains its own version identity when bundled into another package.
6
- const SDK_VERSION = '2.12.0-next.5';
6
+ const SDK_VERSION = '2.12.0-next.7';
7
7
 
8
8
  exports.SDK_VERSION = SDK_VERSION;
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "2.12.0-next.5";
1
+ export declare const SDK_VERSION = "2.12.0-next.7";
@@ -1,4 +1,4 @@
1
1
  // AUTO-GENERATED by scripts/embed-version.mjs — DO NOT EDIT.
2
2
  // Source of truth: package.json. Regenerated on every SDK build so the
3
3
  // SDK retains its own version identity when bundled into another package.
4
- export const SDK_VERSION = '2.12.0-next.5';
4
+ export const SDK_VERSION = '2.12.0-next.7';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc/sdk",
3
- "version": "2.12.0-next.5",
3
+ "version": "2.12.0-next.7",
4
4
  "description": "Node SDK for SuperDoc, wrapping the SuperDoc CLI to read and edit .docx files from JavaScript and TypeScript.",
5
5
  "private": false,
6
6
  "license": "AGPL-3.0",
@@ -38,11 +38,11 @@
38
38
  "typescript": "^5.9.2"
39
39
  },
40
40
  "optionalDependencies": {
41
- "@superdoc/sdk-darwin-arm64": "2.12.0-next.5",
42
- "@superdoc/sdk-darwin-x64": "2.12.0-next.5",
43
- "@superdoc/sdk-linux-x64": "2.12.0-next.5",
44
- "@superdoc/sdk-linux-arm64": "2.12.0-next.5",
45
- "@superdoc/sdk-windows-x64": "2.12.0-next.5"
41
+ "@superdoc/sdk-darwin-arm64": "2.12.0-next.7",
42
+ "@superdoc/sdk-darwin-x64": "2.12.0-next.7",
43
+ "@superdoc/sdk-linux-x64": "2.12.0-next.7",
44
+ "@superdoc/sdk-linux-arm64": "2.12.0-next.7",
45
+ "@superdoc/sdk-windows-x64": "2.12.0-next.7"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
@@ -43,5 +43,5 @@
43
43
  "mutates": true
44
44
  }
45
45
  ],
46
- "contractHash": "7d571d7792f019e3a3315e7c3d69f9e017324ab865028828262a133b8a4333b6"
46
+ "contractHash": "2ea9cf8290d5c801bbe8e1799eb8787abf410a01597fb85114da769bb4f4d890"
47
47
  }