@accounter/client 0.0.7-alpha-20250928122751-ad01662f25968de4eab77897542dc93d86a8289c → 0.0.7-alpha-20250928153306-abd8921a96a625109f69f720082594b7de3714c4
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/CHANGELOG.md +1 -1
- package/package.json +2 -2
- package/src/gql/graphql.ts +6 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accounter/client",
|
|
3
|
-
"version": "0.0.7-alpha-
|
|
3
|
+
"version": "0.0.7-alpha-20250928153306-abd8921a96a625109f69f720082594b7de3714c4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@tailwindcss/vite": "4.1.13",
|
|
81
81
|
"@types/chart.js": "4.0.1",
|
|
82
82
|
"@types/deep-equal": "1.0.4",
|
|
83
|
-
"@types/react": "19.1.
|
|
83
|
+
"@types/react": "19.1.14",
|
|
84
84
|
"@types/react-dom": "19.1.9",
|
|
85
85
|
"@vitejs/plugin-react": "5.0.4",
|
|
86
86
|
"autoprefixer": "10.4.21",
|
package/src/gql/graphql.ts
CHANGED
|
@@ -4227,14 +4227,20 @@ export type SubscriptionPlan = typeof SubscriptionPlan[keyof typeof Subscription
|
|
|
4227
4227
|
export type Suggestions = {
|
|
4228
4228
|
__typename?: 'Suggestions';
|
|
4229
4229
|
description?: Maybe<Scalars['String']['output']>;
|
|
4230
|
+
emails?: Maybe<Array<Scalars['String']['output']>>;
|
|
4231
|
+
internalEmailLinks?: Maybe<Array<Scalars['String']['output']>>;
|
|
4230
4232
|
phrases: Array<Scalars['String']['output']>;
|
|
4233
|
+
priority?: Maybe<Scalars['Int']['output']>;
|
|
4231
4234
|
tags: Array<Tag>;
|
|
4232
4235
|
};
|
|
4233
4236
|
|
|
4234
4237
|
/** input for business suggestions */
|
|
4235
4238
|
export type SuggestionsInput = {
|
|
4236
4239
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4240
|
+
emails?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4241
|
+
internalEmailLinks?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4237
4242
|
phrases?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4243
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
4238
4244
|
tags?: InputMaybe<Array<TagInput>>;
|
|
4239
4245
|
};
|
|
4240
4246
|
|