contactstudiocstools 1.0.231 → 1.0.232

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.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@contactstudio/cstools",
3
3
  "configKey": "CSTools",
4
- "version": "1.0.231"
4
+ "version": "1.0.232"
5
5
  }
@@ -10,7 +10,8 @@ import { getCookie } from "typescript-cookie";
10
10
 
11
11
  //props
12
12
  const props = defineProps<{
13
- csAppHeader?: string
13
+ csAppHeader?: string,
14
+ userId?: string
14
15
  }>();
15
16
 
16
17
  // data
@@ -25,7 +26,8 @@ function initSnapshot(): void {
25
26
  //Objeto para adicionar os headers das requisições
26
27
  snapshot.postMessage({
27
28
  cssession,
28
- csAppHeader: props.csAppHeader || ''
29
+ csAppHeader: props.csAppHeader || '',
30
+ userId: props.userId || ''
29
31
  });
30
32
  snapshot.onmessage = ({ data }) => {
31
33
  if (data.error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contactstudiocstools",
3
- "version": "1.0.231",
3
+ "version": "1.0.232",
4
4
  "description": "Nuxt Tools Module for ContactStudio",
5
5
  "type": "module",
6
6
  "exports": {