@sprucelabs/spruce-templates 29.0.0 → 29.1.0

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.
@@ -9,8 +9,9 @@ const {{nameCamel}}EventContract = buildEventContract({
9
9
  {{#each eventSignatures}}
10
10
  '{{@key}}': {
11
11
  {{#if isGlobal}}isGlobal: true,{{/if}}
12
- {{#if description}}description: `{{{description}}}`,{{/if}}
13
- {{#if aiInstructions}}aiInstructions: `{{{aiInstructions}}}`,{{/if}}
12
+ {{#if description}}description: {{{json description}}},{{/if}}
13
+ {{#if aiInstructions}}aiInstructions: {{{json aiInstructions}}},{{/if}}
14
+ {{#if feed}}feed: {{{json feed}}},{{/if}}
14
15
  {{#if emitPermissions}}emitPermissions: {{{json emitPermissions}}},{{/if}}
15
16
  {{#if listenPermissions}}listenPermissions: {{{json listenPermissions}}},{{/if}}
16
17
  {{#if emitPayloadSchema}}emitPayloadSchema: {{emitPayloadSchema.nameCamel}}Schema,{{/if}}
@@ -23,4 +24,4 @@ const {{nameCamel}}EventContract = buildEventContract({
23
24
  })
24
25
  export default {{nameCamel}}EventContract
25
26
 
26
- export type {{namePascal}}EventContract = typeof {{nameCamel}}EventContract
27
+ export type {{namePascal}}EventContract = typeof {{nameCamel}}EventContract
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "29.0.0",
6
+ "version": "29.1.0",
7
7
  "files": [
8
8
  "build/**/*",
9
9
  "tsconfig.json",
@@ -80,5 +80,5 @@
80
80
  "conventional-changelog-sprucelabs"
81
81
  ]
82
82
  },
83
- "gitHead": "408c01bb3de7ec5fdb89bd3f3bd0103b7792a921"
83
+ "gitHead": "e113fa698f7bbcfb68fe2c42391dc7894bb2fcee"
84
84
  }