@accounter/client 0.0.6-alpha-20250714141136-0f27f8e8c943ccb2e0d85fe54dd84652fb8f84c2 → 0.0.6-alpha-20250714142231-50c4c3ba4612c952bcb1403779b59fe032906572

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @accounter/client
2
2
 
3
- ## 0.0.6-alpha-20250714141136-0f27f8e8c943ccb2e0d85fe54dd84652fb8f84c2
3
+ ## 0.0.6-alpha-20250714142231-50c4c3ba4612c952bcb1403779b59fe032906572
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -98,6 +98,12 @@
98
98
  - Updated dependency [`zod@3.25.76` ↗︎](https://www.npmjs.com/package/zod/v/3.25.76) (from
99
99
  `3.25.75`, in `dependencies`)
100
100
 
101
+ - [#2294](https://github.com/Urigo/accounter-fullstack/pull/2294)
102
+ [`41546ae`](https://github.com/Urigo/accounter-fullstack/commit/41546aed665c3458fe90676bfcd5d62c59d82d23)
103
+ Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
104
+ - Updated dependency [`csv-parse@6.0.0` ↗︎](https://www.npmjs.com/package/csv-parse/v/6.0.0)
105
+ (from `5.6.0`, in `dependencies`)
106
+
101
107
  - [#2297](https://github.com/Urigo/accounter-fullstack/pull/2297)
102
108
  [`102a854`](https://github.com/Urigo/accounter-fullstack/commit/102a854db16390151492b6e978d8ec707862bb13)
103
109
  Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accounter/client",
3
- "version": "0.0.6-alpha-20250714141136-0f27f8e8c943ccb2e0d85fe54dd84652fb8f84c2",
3
+ "version": "0.0.6-alpha-20250714142231-50c4c3ba4612c952bcb1403779b59fe032906572",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -117,6 +117,15 @@ export type AddBusinessTripTravelAndSubsistenceExpenseInput = {
117
117
  valueDate?: InputMaybe<Scalars['TimelessDate']['input']>;
118
118
  };
119
119
 
120
+ /** Represents a business entity managed by an accountant in the system. */
121
+ export type AdminBusiness = {
122
+ __typename?: 'AdminBusiness';
123
+ business: LtdFinancialEntity;
124
+ governmentId: Scalars['String']['output'];
125
+ id: Scalars['UUID']['output'];
126
+ name: Scalars['String']['output'];
127
+ };
128
+
120
129
  /** Audit opinion type enum (חוות דעת) */
121
130
  export enum AuditOpinionType {
122
131
  /** Adverse opinion (שלילית) */
@@ -2606,6 +2615,8 @@ export type Proforma = Document & FinancialDocument & Linkable & {
2606
2615
  /** query root */
2607
2616
  export type Query = {
2608
2617
  __typename?: 'Query';
2618
+ adminBusiness: AdminBusiness;
2619
+ allAdminBusinesses: Array<AdminBusiness>;
2609
2620
  allBusinessTrips: Array<BusinessTrip>;
2610
2621
  allBusinesses?: Maybe<PaginatedBusinesses>;
2611
2622
  allCharges: PaginatedCharges;
@@ -2669,6 +2680,12 @@ export type Query = {
2669
2680
  };
2670
2681
 
2671
2682
 
2683
+ /** query root */
2684
+ export type QueryAdminBusinessArgs = {
2685
+ id: Scalars['UUID']['input'];
2686
+ };
2687
+
2688
+
2672
2689
  /** query root */
2673
2690
  export type QueryAllBusinessesArgs = {
2674
2691
  limit?: InputMaybe<Scalars['Int']['input']>;