@superdoc-dev/sdk 1.8.0-next.3 → 1.8.0-next.5

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.
@@ -201,6 +201,9 @@ export function createDocApi(runtime) {
201
201
  ranges: {
202
202
  resolve: (params, options) => runtime.invoke(CONTRACT.operations["doc.ranges.resolve"], params, options),
203
203
  },
204
+ selection: {
205
+ current: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.selection.current"], params, options),
206
+ },
204
207
  mutations: {
205
208
  preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
206
209
  apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
@@ -697,6 +700,9 @@ export function createBoundDocApi(runtime) {
697
700
  ranges: {
698
701
  resolve: (params, options) => runtime.invoke(CONTRACT.operations["doc.ranges.resolve"], params, options),
699
702
  },
703
+ selection: {
704
+ current: (params = {}, options) => runtime.invoke(CONTRACT.operations["doc.selection.current"], params, options),
705
+ },
700
706
  mutations: {
701
707
  preview: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.preview"], params, options), "result"),
702
708
  apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.mutations.apply"], params, options), "result"),
@@ -59211,37 +59211,84 @@ const CONTRACT = {
59211
59211
  "type": "json",
59212
59212
  "flag": "target-json",
59213
59213
  "schema": {
59214
- "type": "object",
59215
- "properties": {
59216
- "kind": {
59217
- "const": "text"
59218
- },
59219
- "blockId": {
59220
- "type": "string"
59214
+ "oneOf": [
59215
+ {
59216
+ "type": "object",
59217
+ "properties": {
59218
+ "kind": {
59219
+ "const": "text"
59220
+ },
59221
+ "blockId": {
59222
+ "type": "string"
59223
+ },
59224
+ "range": {
59225
+ "type": "object",
59226
+ "properties": {
59227
+ "start": {
59228
+ "type": "number"
59229
+ },
59230
+ "end": {
59231
+ "type": "number"
59232
+ }
59233
+ },
59234
+ "required": [
59235
+ "start",
59236
+ "end"
59237
+ ]
59238
+ }
59239
+ },
59240
+ "required": [
59241
+ "kind",
59242
+ "blockId",
59243
+ "range"
59244
+ ]
59221
59245
  },
59222
- "range": {
59246
+ {
59223
59247
  "type": "object",
59224
59248
  "properties": {
59225
- "start": {
59226
- "type": "number"
59249
+ "kind": {
59250
+ "const": "text"
59227
59251
  },
59228
- "end": {
59229
- "type": "number"
59252
+ "segments": {
59253
+ "type": "array",
59254
+ "items": {
59255
+ "type": "object",
59256
+ "properties": {
59257
+ "blockId": {
59258
+ "type": "string"
59259
+ },
59260
+ "range": {
59261
+ "type": "object",
59262
+ "properties": {
59263
+ "start": {
59264
+ "type": "number"
59265
+ },
59266
+ "end": {
59267
+ "type": "number"
59268
+ }
59269
+ },
59270
+ "required": [
59271
+ "start",
59272
+ "end"
59273
+ ]
59274
+ }
59275
+ },
59276
+ "required": [
59277
+ "blockId",
59278
+ "range"
59279
+ ]
59280
+ }
59230
59281
  }
59231
59282
  },
59232
59283
  "required": [
59233
- "start",
59234
- "end"
59284
+ "kind",
59285
+ "segments"
59235
59286
  ]
59236
59287
  }
59237
- },
59238
- "required": [
59239
- "kind",
59240
- "blockId",
59241
- "range"
59242
- ]
59288
+ ],
59289
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
59243
59290
  },
59244
- "description": "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
59291
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
59245
59292
  },
59246
59293
  {
59247
59294
  "name": "parentId",
@@ -59286,8 +59333,15 @@ const CONTRACT = {
59286
59333
  "description": "Comment text content."
59287
59334
  },
59288
59335
  "target": {
59289
- "$ref": "#/$defs/TextAddress",
59290
- "description": "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
59336
+ "oneOf": [
59337
+ {
59338
+ "$ref": "#/$defs/TextAddress"
59339
+ },
59340
+ {
59341
+ "$ref": "#/$defs/TextTarget"
59342
+ }
59343
+ ],
59344
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
59291
59345
  },
59292
59346
  "parentCommentId": {
59293
59347
  "type": "string",
@@ -62377,6 +62431,88 @@ const CONTRACT = {
62377
62431
  ]
62378
62432
  }
62379
62433
  },
62434
+ "doc.selection.current": {
62435
+ "operationId": "doc.selection.current",
62436
+ "sdkSurface": "document",
62437
+ "command": "selection current",
62438
+ "commandTokens": [
62439
+ "selection",
62440
+ "current"
62441
+ ],
62442
+ "category": "core",
62443
+ "description": "Read the editor's current selection as a portable SelectionInfo with a text-anchored TextTarget. Primitive for building custom comments UIs, floating toolbars, and other selection-driven components without reaching into ProseMirror internals.",
62444
+ "requiresDocumentContext": true,
62445
+ "docRequirement": "optional",
62446
+ "responseEnvelopeKey": null,
62447
+ "params": [
62448
+ {
62449
+ "name": "doc",
62450
+ "kind": "doc",
62451
+ "type": "string",
62452
+ "description": "Document path. Optional when a session is already open."
62453
+ },
62454
+ {
62455
+ "name": "sessionId",
62456
+ "kind": "flag",
62457
+ "type": "string",
62458
+ "flag": "session",
62459
+ "description": "Session ID for multi-session workflows. Optional when only one session is open."
62460
+ },
62461
+ {
62462
+ "name": "includeText",
62463
+ "kind": "flag",
62464
+ "type": "boolean",
62465
+ "flag": "include-text"
62466
+ }
62467
+ ],
62468
+ "constraints": null,
62469
+ "mutates": false,
62470
+ "idempotency": "idempotent",
62471
+ "supportsTrackedMode": false,
62472
+ "supportsDryRun": false,
62473
+ "inputSchema": {
62474
+ "type": "object",
62475
+ "properties": {
62476
+ "includeText": {
62477
+ "type": "boolean"
62478
+ }
62479
+ },
62480
+ "additionalProperties": false
62481
+ },
62482
+ "outputSchema": {
62483
+ "type": "object",
62484
+ "properties": {
62485
+ "empty": {
62486
+ "type": "boolean"
62487
+ },
62488
+ "target": {
62489
+ "oneOf": [
62490
+ {
62491
+ "$ref": "#/$defs/TextTarget"
62492
+ },
62493
+ {
62494
+ "type": "null"
62495
+ }
62496
+ ]
62497
+ },
62498
+ "activeMarks": {
62499
+ "type": "array",
62500
+ "items": {
62501
+ "type": "string"
62502
+ }
62503
+ },
62504
+ "text": {
62505
+ "type": "string"
62506
+ }
62507
+ },
62508
+ "additionalProperties": false,
62509
+ "required": [
62510
+ "empty",
62511
+ "target",
62512
+ "activeMarks"
62513
+ ]
62514
+ }
62515
+ },
62380
62516
  "doc.mutations.preview": {
62381
62517
  "operationId": "doc.mutations.preview",
62382
62518
  "sdkSurface": "document",
@@ -80879,6 +81015,41 @@ const CONTRACT = {
80879
81015
  "dryRun"
80880
81016
  ]
80881
81017
  },
81018
+ "selection.current": {
81019
+ "type": "object",
81020
+ "properties": {
81021
+ "available": {
81022
+ "type": "boolean"
81023
+ },
81024
+ "tracked": {
81025
+ "type": "boolean"
81026
+ },
81027
+ "dryRun": {
81028
+ "type": "boolean"
81029
+ },
81030
+ "reasons": {
81031
+ "type": "array",
81032
+ "items": {
81033
+ "enum": [
81034
+ "COMMAND_UNAVAILABLE",
81035
+ "HELPER_UNAVAILABLE",
81036
+ "OPERATION_UNAVAILABLE",
81037
+ "TRACKED_MODE_UNAVAILABLE",
81038
+ "DRY_RUN_UNAVAILABLE",
81039
+ "NAMESPACE_UNAVAILABLE",
81040
+ "STYLES_PART_MISSING",
81041
+ "COLLABORATION_ACTIVE"
81042
+ ]
81043
+ }
81044
+ }
81045
+ },
81046
+ "additionalProperties": false,
81047
+ "required": [
81048
+ "available",
81049
+ "tracked",
81050
+ "dryRun"
81051
+ ]
81052
+ },
80882
81053
  "mutations.preview": {
80883
81054
  "type": "object",
80884
81055
  "properties": {
@@ -89292,6 +89463,7 @@ const CONTRACT = {
89292
89463
  "trackChanges.decide",
89293
89464
  "query.match",
89294
89465
  "ranges.resolve",
89466
+ "selection.current",
89295
89467
  "mutations.preview",
89296
89468
  "mutations.apply",
89297
89469
  "capabilities.get",
@@ -1 +1 @@
1
- {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,UAAU,CAAC;IAClC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,EAAE,kBAAkB,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,GAAG,EAAE;QACH,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,aAAa,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,sBAAsB,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,QA6nmJtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,CAAC,MAAM,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,UAAU,CAAC;IAClC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,EAAE,kBAAkB,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,GAAG,EAAE;QACH,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,aAAa,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,sBAAsB,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,QAyymJtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,CAAC,MAAM,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC"}
@@ -60329,37 +60329,84 @@ export const CONTRACT = {
60329
60329
  "type": "json",
60330
60330
  "flag": "target-json",
60331
60331
  "schema": {
60332
- "type": "object",
60333
- "properties": {
60334
- "kind": {
60335
- "const": "text"
60336
- },
60337
- "blockId": {
60338
- "type": "string"
60332
+ "oneOf": [
60333
+ {
60334
+ "type": "object",
60335
+ "properties": {
60336
+ "kind": {
60337
+ "const": "text"
60338
+ },
60339
+ "blockId": {
60340
+ "type": "string"
60341
+ },
60342
+ "range": {
60343
+ "type": "object",
60344
+ "properties": {
60345
+ "start": {
60346
+ "type": "number"
60347
+ },
60348
+ "end": {
60349
+ "type": "number"
60350
+ }
60351
+ },
60352
+ "required": [
60353
+ "start",
60354
+ "end"
60355
+ ]
60356
+ }
60357
+ },
60358
+ "required": [
60359
+ "kind",
60360
+ "blockId",
60361
+ "range"
60362
+ ]
60339
60363
  },
60340
- "range": {
60364
+ {
60341
60365
  "type": "object",
60342
60366
  "properties": {
60343
- "start": {
60344
- "type": "number"
60367
+ "kind": {
60368
+ "const": "text"
60345
60369
  },
60346
- "end": {
60347
- "type": "number"
60370
+ "segments": {
60371
+ "type": "array",
60372
+ "items": {
60373
+ "type": "object",
60374
+ "properties": {
60375
+ "blockId": {
60376
+ "type": "string"
60377
+ },
60378
+ "range": {
60379
+ "type": "object",
60380
+ "properties": {
60381
+ "start": {
60382
+ "type": "number"
60383
+ },
60384
+ "end": {
60385
+ "type": "number"
60386
+ }
60387
+ },
60388
+ "required": [
60389
+ "start",
60390
+ "end"
60391
+ ]
60392
+ }
60393
+ },
60394
+ "required": [
60395
+ "blockId",
60396
+ "range"
60397
+ ]
60398
+ }
60348
60399
  }
60349
60400
  },
60350
60401
  "required": [
60351
- "start",
60352
- "end"
60402
+ "kind",
60403
+ "segments"
60353
60404
  ]
60354
60405
  }
60355
- },
60356
- "required": [
60357
- "kind",
60358
- "blockId",
60359
- "range"
60360
- ]
60406
+ ],
60407
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
60361
60408
  },
60362
- "description": "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
60409
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
60363
60410
  },
60364
60411
  {
60365
60412
  "name": "parentId",
@@ -60404,8 +60451,15 @@ export const CONTRACT = {
60404
60451
  "description": "Comment text content."
60405
60452
  },
60406
60453
  "target": {
60407
- "$ref": "#/$defs/TextAddress",
60408
- "description": "Text range to anchor the comment: {kind:'text', blockId:'...', range:{start:N, end:N}}."
60454
+ "oneOf": [
60455
+ {
60456
+ "$ref": "#/$defs/TextAddress"
60457
+ },
60458
+ {
60459
+ "$ref": "#/$defs/TextTarget"
60460
+ }
60461
+ ],
60462
+ "description": "Text range to anchor the comment. Accepts either a single-block TextAddress {kind:'text', blockId, range} or a multi-segment TextTarget {kind:'text', segments:[{blockId, range}, ...]} for selections that span blocks."
60409
60463
  },
60410
60464
  "parentCommentId": {
60411
60465
  "type": "string",
@@ -63495,6 +63549,88 @@ export const CONTRACT = {
63495
63549
  ]
63496
63550
  }
63497
63551
  },
63552
+ "doc.selection.current": {
63553
+ "operationId": "doc.selection.current",
63554
+ "sdkSurface": "document",
63555
+ "command": "selection current",
63556
+ "commandTokens": [
63557
+ "selection",
63558
+ "current"
63559
+ ],
63560
+ "category": "core",
63561
+ "description": "Read the editor's current selection as a portable SelectionInfo with a text-anchored TextTarget. Primitive for building custom comments UIs, floating toolbars, and other selection-driven components without reaching into ProseMirror internals.",
63562
+ "requiresDocumentContext": true,
63563
+ "docRequirement": "optional",
63564
+ "responseEnvelopeKey": null,
63565
+ "params": [
63566
+ {
63567
+ "name": "doc",
63568
+ "kind": "doc",
63569
+ "type": "string",
63570
+ "description": "Document path. Optional when a session is already open."
63571
+ },
63572
+ {
63573
+ "name": "sessionId",
63574
+ "kind": "flag",
63575
+ "type": "string",
63576
+ "flag": "session",
63577
+ "description": "Session ID for multi-session workflows. Optional when only one session is open."
63578
+ },
63579
+ {
63580
+ "name": "includeText",
63581
+ "kind": "flag",
63582
+ "type": "boolean",
63583
+ "flag": "include-text"
63584
+ }
63585
+ ],
63586
+ "constraints": null,
63587
+ "mutates": false,
63588
+ "idempotency": "idempotent",
63589
+ "supportsTrackedMode": false,
63590
+ "supportsDryRun": false,
63591
+ "inputSchema": {
63592
+ "type": "object",
63593
+ "properties": {
63594
+ "includeText": {
63595
+ "type": "boolean"
63596
+ }
63597
+ },
63598
+ "additionalProperties": false
63599
+ },
63600
+ "outputSchema": {
63601
+ "type": "object",
63602
+ "properties": {
63603
+ "empty": {
63604
+ "type": "boolean"
63605
+ },
63606
+ "target": {
63607
+ "oneOf": [
63608
+ {
63609
+ "$ref": "#/$defs/TextTarget"
63610
+ },
63611
+ {
63612
+ "type": "null"
63613
+ }
63614
+ ]
63615
+ },
63616
+ "activeMarks": {
63617
+ "type": "array",
63618
+ "items": {
63619
+ "type": "string"
63620
+ }
63621
+ },
63622
+ "text": {
63623
+ "type": "string"
63624
+ }
63625
+ },
63626
+ "additionalProperties": false,
63627
+ "required": [
63628
+ "empty",
63629
+ "target",
63630
+ "activeMarks"
63631
+ ]
63632
+ }
63633
+ },
63498
63634
  "doc.mutations.preview": {
63499
63635
  "operationId": "doc.mutations.preview",
63500
63636
  "sdkSurface": "document",
@@ -81997,6 +82133,41 @@ export const CONTRACT = {
81997
82133
  "dryRun"
81998
82134
  ]
81999
82135
  },
82136
+ "selection.current": {
82137
+ "type": "object",
82138
+ "properties": {
82139
+ "available": {
82140
+ "type": "boolean"
82141
+ },
82142
+ "tracked": {
82143
+ "type": "boolean"
82144
+ },
82145
+ "dryRun": {
82146
+ "type": "boolean"
82147
+ },
82148
+ "reasons": {
82149
+ "type": "array",
82150
+ "items": {
82151
+ "enum": [
82152
+ "COMMAND_UNAVAILABLE",
82153
+ "HELPER_UNAVAILABLE",
82154
+ "OPERATION_UNAVAILABLE",
82155
+ "TRACKED_MODE_UNAVAILABLE",
82156
+ "DRY_RUN_UNAVAILABLE",
82157
+ "NAMESPACE_UNAVAILABLE",
82158
+ "STYLES_PART_MISSING",
82159
+ "COLLABORATION_ACTIVE"
82160
+ ]
82161
+ }
82162
+ }
82163
+ },
82164
+ "additionalProperties": false,
82165
+ "required": [
82166
+ "available",
82167
+ "tracked",
82168
+ "dryRun"
82169
+ ]
82170
+ },
82000
82171
  "mutations.preview": {
82001
82172
  "type": "object",
82002
82173
  "properties": {
@@ -90410,6 +90581,7 @@ export const CONTRACT = {
90410
90581
  "trackChanges.decide",
90411
90582
  "query.match",
90412
90583
  "ranges.resolve",
90584
+ "selection.current",
90413
90585
  "mutations.preview",
90414
90586
  "mutations.apply",
90415
90587
  "capabilities.get",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc-dev/sdk",
3
- "version": "1.8.0-next.3",
3
+ "version": "1.8.0-next.5",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -26,11 +26,11 @@
26
26
  "typescript": "^5.9.2"
27
27
  },
28
28
  "optionalDependencies": {
29
- "@superdoc-dev/sdk-darwin-arm64": "1.8.0-next.3",
30
- "@superdoc-dev/sdk-darwin-x64": "1.8.0-next.3",
31
- "@superdoc-dev/sdk-linux-x64": "1.8.0-next.3",
32
- "@superdoc-dev/sdk-linux-arm64": "1.8.0-next.3",
33
- "@superdoc-dev/sdk-windows-x64": "1.8.0-next.3"
29
+ "@superdoc-dev/sdk-darwin-arm64": "1.8.0-next.5",
30
+ "@superdoc-dev/sdk-darwin-x64": "1.8.0-next.5",
31
+ "@superdoc-dev/sdk-linux-x64": "1.8.0-next.5",
32
+ "@superdoc-dev/sdk-linux-arm64": "1.8.0-next.5",
33
+ "@superdoc-dev/sdk-windows-x64": "1.8.0-next.5"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"