@dgpholdings/greatoak-shared 1.2.71 → 1.2.73

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.
@@ -38,6 +38,9 @@ export type TAiEnrichedContext = {
38
38
  aiContext: {
39
39
  age: number;
40
40
  gender: string;
41
+ heightCm?: number;
42
+ weightKg?: number;
43
+ language: string;
41
44
  fitnessLevel: string;
42
45
  energyLevel: string;
43
46
  fatigueMap: Record<string, any>;
@@ -124,6 +127,12 @@ export type TApiJobStatusRes = {
124
127
  createdAt: string;
125
128
  completedAt?: string;
126
129
  status: 200;
130
+ } | {
131
+ status: 404;
132
+ message: string;
133
+ } | {
134
+ status: 403;
135
+ message: string;
127
136
  } | {
128
137
  status: 500;
129
138
  message: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.2.71",
3
+ "version": "1.2.73",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",