@hed-hog/billing 0.0.285 → 0.0.291

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.
@@ -228,8 +228,8 @@ const seatSchema = z.object({
228
228
  });
229
229
 
230
230
  const defaultValues: SeatFormValues = {
231
- contract_id: CONTRACTS[0].id,
232
- seat_id: CONTRACT_SEATS[0].id,
231
+ contract_id: CONTRACTS.at(0)?.id ?? 1,
232
+ seat_id: CONTRACT_SEATS.at(0)?.id ?? 1,
233
233
  assigned_to: '',
234
234
  assigned_email: '',
235
235
  status: 'active',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hed-hog/billing",
3
- "version": "0.0.285",
3
+ "version": "0.0.291",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "dependencies": {
@@ -10,11 +10,11 @@
10
10
  "@nestjs/jwt": "^11",
11
11
  "@nestjs/mapped-types": "*",
12
12
  "@hed-hog/api": "0.0.4",
13
+ "@hed-hog/api-prisma": "0.0.5",
13
14
  "@hed-hog/api-locale": "0.0.13",
14
- "@hed-hog/api-types": "0.0.1",
15
+ "@hed-hog/contact": "0.0.291",
15
16
  "@hed-hog/api-pagination": "0.0.6",
16
- "@hed-hog/api-prisma": "0.0.5",
17
- "@hed-hog/contact": "0.0.285"
17
+ "@hed-hog/api-types": "0.0.1"
18
18
  },
19
19
  "exports": {
20
20
  ".": {