@superdoc-dev/sdk 1.6.0-next.13 → 1.6.0-next.14

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.
@@ -7311,6 +7311,35 @@ export interface DocCreateContentControlParams {
7311
7311
  nodeType: "sdt";
7312
7312
  nodeId: string;
7313
7313
  };
7314
+ at?: {
7315
+ kind: "selection";
7316
+ start: ({
7317
+ kind: "text";
7318
+ blockId: string;
7319
+ offset: number;
7320
+ }) | ({
7321
+ kind: "nodeEdge";
7322
+ node: {
7323
+ kind: "block";
7324
+ nodeType: "paragraph" | "heading" | "table" | "tableOfContents" | "sdt" | "image";
7325
+ nodeId: string;
7326
+ };
7327
+ edge: "before" | "after";
7328
+ });
7329
+ end: ({
7330
+ kind: "text";
7331
+ blockId: string;
7332
+ offset: number;
7333
+ }) | ({
7334
+ kind: "nodeEdge";
7335
+ node: {
7336
+ kind: "block";
7337
+ nodeType: "paragraph" | "heading" | "table" | "tableOfContents" | "sdt" | "image";
7338
+ nodeId: string;
7339
+ };
7340
+ edge: "before" | "after";
7341
+ });
7342
+ };
7314
7343
  tag?: string;
7315
7344
  alias?: string;
7316
7345
  lockMode?: string;
@@ -27378,6 +27407,35 @@ export interface DocCreateContentControlBoundParams {
27378
27407
  nodeType: "sdt";
27379
27408
  nodeId: string;
27380
27409
  };
27410
+ at?: {
27411
+ kind: "selection";
27412
+ start: ({
27413
+ kind: "text";
27414
+ blockId: string;
27415
+ offset: number;
27416
+ }) | ({
27417
+ kind: "nodeEdge";
27418
+ node: {
27419
+ kind: "block";
27420
+ nodeType: "paragraph" | "heading" | "table" | "tableOfContents" | "sdt" | "image";
27421
+ nodeId: string;
27422
+ };
27423
+ edge: "before" | "after";
27424
+ });
27425
+ end: ({
27426
+ kind: "text";
27427
+ blockId: string;
27428
+ offset: number;
27429
+ }) | ({
27430
+ kind: "nodeEdge";
27431
+ node: {
27432
+ kind: "block";
27433
+ nodeType: "paragraph" | "heading" | "table" | "tableOfContents" | "sdt" | "image";
27434
+ nodeId: string;
27435
+ };
27436
+ edge: "before" | "after";
27437
+ });
27438
+ };
27381
27439
  tag?: string;
27382
27440
  alias?: string;
27383
27441
  lockMode?: string;