onairos 2.0.2 → 2.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "onairos",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "dependencies": {
5
5
  "@anthropic-ai/sdk": "^0.24.3",
6
6
  "@google/generative-ai": "^0.15.0",
@@ -95,7 +95,12 @@
95
95
  "react": "^18.2.0",
96
96
  "react-dom": "^18.2.0",
97
97
  "react-native": ">=0.69.0",
98
- "tailwindcss": "^3.3.5"
98
+ "tailwindcss": "^3.3.5",
99
+ "ajv": "^8.12.0",
100
+ "@anthropic-ai/sdk": "^0.24.3",
101
+ "@google/generative-ai": "^0.15.0",
102
+ "@pinecone-database/pinecone": "^2.2.2",
103
+ "openai": "^4.52.7"
99
104
  },
100
105
  "description": "The Onairos Library is a collection of functions that enable Applications to connect and communicate data with Onairos Identities via User Authorization. Integration for developers is designed to be seamless, simple and effective for all applications",
101
106
  "main": "dist/onairos.bundle.js",
@@ -156,7 +156,7 @@ const DataRequestPage = ({ requestData = {}, dataRequester = 'App', proofMode =
156
156
  <div className="flex items-center justify-center min-h-screen">
157
157
  <div className="animate-spin h-8 w-8 border-2 border-blue-600 rounded-full border-t-transparent"></div>
158
158
  </div>
159
- ) : (activeModels.length === 0 ? (
159
+ ) : activeModels.length === 0 ? (
160
160
  <UniversalOnboarding appIcon="https://onairos.sirv.com/Images/OnairosBlack.png" appName={dataRequester}/>
161
161
  ) : (
162
162
  <div className="max-w-md mx-auto p-6 space-y-4">
package/webpack.config.js CHANGED
@@ -16,7 +16,16 @@ const baseConfig = {
16
16
  commonjs2: 'react-dom',
17
17
  amd: 'ReactDOM',
18
18
  root: 'ReactDOM'
19
- }
19
+ },
20
+ 'ajv': 'ajv',
21
+ 'ajv/dist/runtime/validation_error': 'ajv/dist/runtime/validation_error',
22
+ 'ajv/dist/runtime/equal': 'ajv/dist/runtime/equal',
23
+ 'ajv/dist/runtime/ucs2length': 'ajv/dist/runtime/ucs2length',
24
+ 'ajv/dist/runtime/uri': 'ajv/dist/runtime/uri',
25
+ '@anthropic-ai/sdk': '@anthropic-ai/sdk',
26
+ '@google/generative-ai': '@google/generative-ai',
27
+ '@pinecone-database/pinecone': '@pinecone-database/pinecone',
28
+ 'openai': 'openai'
20
29
  },
21
30
  optimization: {
22
31
  minimize: true,