@applica-software-guru/persona-sdk 0.1.41 → 0.1.43

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.
@@ -15,15 +15,5 @@ pipelines:
15
15
  variables:
16
16
  NPM_TOKEN: $NPM_TOKEN
17
17
  EXTRA_ARGS: '--access public'
18
- - echo $SERVICE_ACCOUNT > key.json
19
- - curl -sSL https://sdk.cloud.google.com | bash > /dev/null
20
- - export PATH=$PATH:/root/google-cloud-sdk/bin
21
- - gcloud auth activate-service-account --key-file=key.json
22
- - rm key.json
23
- - gcloud config set project persona-ai-1
24
- - gsutil rm -r gs://persona-cdn/sdk/latest/*
25
- - gsutil cp -r dist/* gs://persona-cdn/sdk/$VERSION.$BITBUCKET_BUILD_NUMBER
26
- - gsutil cp -r dist/* gs://persona-cdn/sdk/latest
27
- - gsutil cp -r dist/* gs://persona-cdn/sdk/$VERSION.$BITBUCKET_BUILD_NUMBER
28
18
  - git tag -a "$VERSION.$BITBUCKET_BUILD_NUMBER" -m "Version $VERSION.$BITBUCKET_BUILD_NUMBER"
29
19
  - git push origin "$VERSION.$BITBUCKET_BUILD_NUMBER"
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@applica-software-guru/persona-sdk",
3
3
  "private": false,
4
- "version": "0.1.41",
4
+ "version": "0.1.43",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -58,7 +58,8 @@
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@assistant-ui/react": "0.8.17",
61
- "react": "^18 || ^19 || ^19.0.0-rc"
61
+ "react": "^18 || ^19 || ^19.0.0-rc",
62
+ "react-dom": "^18 || ^19 || ^19.0.0-rc"
62
63
  },
63
64
  "keywords": [
64
65
  "persona-sdk"
package/src/index.ts CHANGED
@@ -1,3 +1,5 @@
1
+ 'use client';
2
+
1
3
  export * from './runtime';
2
4
  export * from './logging';
3
5
  export * from './protocol';
package/vite.config.ts CHANGED
@@ -8,11 +8,6 @@ import tailwindcss from '@tailwindcss/vite';
8
8
  export default defineConfig((configEnv: ConfigEnv) => {
9
9
  const { mode } = configEnv;
10
10
  const isDevelopment = mode === 'development';
11
- // console.log({
12
- // mode,
13
- // isDevelopment,
14
- // peerDependencies: packageJson.peerDependencies,
15
- // });
16
11
  const config: UserConfig = {
17
12
  build: {
18
13
  sourcemap: true,