@hectare/platform.clients.customers 1.1.111 → 1.1.112

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.
@@ -127,4 +127,9 @@ export type BusinessDetail = {
127
127
  name?: string | null;
128
128
  location?: string | null;
129
129
  } | null;
130
+ bio: string | null;
131
+ logo: {
132
+ id: string;
133
+ url: string | null;
134
+ } | null;
130
135
  };
@@ -133,5 +133,10 @@ export type BusinessUnitsDetail = {
133
133
  name?: string | null;
134
134
  location?: string | null;
135
135
  } | null;
136
+ bio: string | null;
137
+ logo: {
138
+ id: string;
139
+ url: string | null;
140
+ } | null;
136
141
  };
137
142
  };
@@ -142,6 +142,11 @@ export type BusinessUnitsDetails = {
142
142
  name?: string | null;
143
143
  location?: string | null;
144
144
  } | null;
145
+ bio: string | null;
146
+ logo: {
147
+ id: string;
148
+ url: string | null;
149
+ } | null;
145
150
  };
146
151
  }>;
147
152
  };
@@ -58,5 +58,10 @@ export type CreateBusinessUnit = {
58
58
  name?: string | null;
59
59
  location?: string | null;
60
60
  } | null;
61
+ bio?: string | null;
62
+ logo?: {
63
+ id: string;
64
+ url: string | null;
65
+ } | null;
61
66
  };
62
67
  };
@@ -58,5 +58,10 @@ export type CreateBusinessUnits = Array<{
58
58
  name?: string | null;
59
59
  location?: string | null;
60
60
  } | null;
61
+ bio?: string | null;
62
+ logo?: {
63
+ id: string;
64
+ url: string | null;
65
+ } | null;
61
66
  };
62
67
  }>;
@@ -62,5 +62,10 @@ export type PatchBusinessUnit = {
62
62
  collectionAddresses?: Array<any>;
63
63
  name?: string;
64
64
  type?: string;
65
+ bio?: string | null;
66
+ logo?: {
67
+ id: string;
68
+ url: string | null;
69
+ } | null;
65
70
  };
66
71
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.111",
3
+ "version": "1.1.112",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",