@fencyai/react 0.1.117 → 0.1.118

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": "@fencyai/react",
3
- "version": "0.1.117",
3
+ "version": "0.1.118",
4
4
  "description": "> TODO: description",
5
5
  "author": "staklau <steinaageklaussen@gmail.com>",
6
6
  "homepage": "",
@@ -35,7 +35,7 @@
35
35
  "@microsoft/fetch-event-source": "^2.0.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@fencyai/js": "^0.1.117",
38
+ "@fencyai/js": "^0.1.118",
39
39
  "@testing-library/react": "^16.3.2",
40
40
  "@types/jest": "^29.5.11",
41
41
  "@types/node": "^20.10.5",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@emotion/is-prop-valid": "^1.3.0",
55
- "@fencyai/js": "^0.1.117",
55
+ "@fencyai/js": "^0.1.118",
56
56
  "@radix-ui/react-popover": "^1.1.15",
57
57
  "motion": "^11.15.0",
58
58
  "react": ">=16.8.0",
@@ -67,5 +67,5 @@
67
67
  "optional": false
68
68
  }
69
69
  },
70
- "gitHead": "6b6ec05fe3ddfa2f061fce3be90721a32fdb0a7a"
70
+ "gitHead": "5cf05fb94dd9e721adbb40f16da0918e1b418ca4"
71
71
  }
@@ -1,8 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface StreamingChatCompletionResponseProps {
3
- data: {
4
- type: 'StreamingChatCompletionResponse';
5
- response: string;
6
- };
7
- }
8
- export declare const StreamingChatCompletionResponse: React.FC<StreamingChatCompletionResponseProps>;
@@ -1,8 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface StructuredChatCompletionResponseProps {
3
- data: {
4
- type: 'StructuredChatCompletionResponse';
5
- response: any;
6
- };
7
- }
8
- export declare const StructuredChatCompletionResponse: React.FC<StructuredChatCompletionResponseProps>;