@superdoc-dev/sdk 1.15.0-next.3 → 1.15.0-next.30

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.
@@ -117,6 +117,9 @@ export function createDocApi(runtime) {
117
117
  clearStyle: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.styles.paragraph.clearStyle"], params, options), "result"),
118
118
  },
119
119
  },
120
+ templates: {
121
+ apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.templates.apply"], params, options), "receipt"),
122
+ },
120
123
  create: {
121
124
  paragraph: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.create.paragraph"], params, options), "result"),
122
125
  heading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.create.heading"], params, options), "result"),
@@ -639,6 +642,9 @@ export function createBoundDocApi(runtime) {
639
642
  clearStyle: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.styles.paragraph.clearStyle"], params, options), "result"),
640
643
  },
641
644
  },
645
+ templates: {
646
+ apply: async (params, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.templates.apply"], params, options), "receipt"),
647
+ },
642
648
  create: {
643
649
  paragraph: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.create.paragraph"], params, options), "result"),
644
650
  heading: async (params = {}, options) => unwrapEnvelope(await runtime.invoke(CONTRACT.operations["doc.create.heading"], params, options), "result"),