@digiteers/uloba3-sdk 4.0.10 → 4.0.12

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/dist/types.d.ts CHANGED
@@ -7345,6 +7345,81 @@ export interface paths {
7345
7345
  patch?: never;
7346
7346
  trace?: never;
7347
7347
  };
7348
+ '/api/jobs/favorites/bulk-check': {
7349
+ parameters: {
7350
+ query?: never;
7351
+ header?: never;
7352
+ path?: never;
7353
+ cookie?: never;
7354
+ };
7355
+ get?: never;
7356
+ put?: never;
7357
+ /**
7358
+ * Bulk check if jobs are favorites
7359
+ * @description Check if multiple jobs are marked as favorites by the current user (max 100 per request)
7360
+ */
7361
+ post: {
7362
+ parameters: {
7363
+ query?: never;
7364
+ header?: never;
7365
+ path?: never;
7366
+ cookie?: never;
7367
+ };
7368
+ requestBody: {
7369
+ content: {
7370
+ 'application/json': {
7371
+ /** @description Array of job IDs to check (max 100) */
7372
+ job_ids: string[];
7373
+ };
7374
+ };
7375
+ };
7376
+ responses: {
7377
+ /** @description Default Response */
7378
+ 200: {
7379
+ headers: {
7380
+ [name: string]: unknown;
7381
+ };
7382
+ content: {
7383
+ 'application/json': {
7384
+ /** @description Map of job_id to is_favorite boolean */
7385
+ favorites: {
7386
+ [key: string]: boolean;
7387
+ };
7388
+ };
7389
+ };
7390
+ };
7391
+ /** @description Default Response */
7392
+ 400: {
7393
+ headers: {
7394
+ [name: string]: unknown;
7395
+ };
7396
+ content: {
7397
+ 'application/json': {
7398
+ error: string;
7399
+ message: string;
7400
+ };
7401
+ };
7402
+ };
7403
+ /** @description Default Response */
7404
+ 500: {
7405
+ headers: {
7406
+ [name: string]: unknown;
7407
+ };
7408
+ content: {
7409
+ 'application/json': {
7410
+ error: string;
7411
+ message: string;
7412
+ };
7413
+ };
7414
+ };
7415
+ };
7416
+ };
7417
+ delete?: never;
7418
+ options?: never;
7419
+ head?: never;
7420
+ patch?: never;
7421
+ trace?: never;
7422
+ };
7348
7423
  '/api/jobs/{id}/analytics': {
7349
7424
  parameters: {
7350
7425
  query?: never;
@@ -10522,6 +10597,81 @@ export interface paths {
10522
10597
  patch?: never;
10523
10598
  trace?: never;
10524
10599
  };
10600
+ '/api/assistants/favorites/bulk-check': {
10601
+ parameters: {
10602
+ query?: never;
10603
+ header?: never;
10604
+ path?: never;
10605
+ cookie?: never;
10606
+ };
10607
+ get?: never;
10608
+ put?: never;
10609
+ /**
10610
+ * Bulk check if assistants are favorites
10611
+ * @description Check if multiple assistants are marked as favorites by the current user (max 100 per request)
10612
+ */
10613
+ post: {
10614
+ parameters: {
10615
+ query?: never;
10616
+ header?: never;
10617
+ path?: never;
10618
+ cookie?: never;
10619
+ };
10620
+ requestBody: {
10621
+ content: {
10622
+ 'application/json': {
10623
+ /** @description Array of assistant IDs to check (max 100) */
10624
+ assistant_ids: string[];
10625
+ };
10626
+ };
10627
+ };
10628
+ responses: {
10629
+ /** @description Default Response */
10630
+ 200: {
10631
+ headers: {
10632
+ [name: string]: unknown;
10633
+ };
10634
+ content: {
10635
+ 'application/json': {
10636
+ /** @description Map of assistant_id to is_favorite boolean */
10637
+ favorites: {
10638
+ [key: string]: boolean;
10639
+ };
10640
+ };
10641
+ };
10642
+ };
10643
+ /** @description Default Response */
10644
+ 400: {
10645
+ headers: {
10646
+ [name: string]: unknown;
10647
+ };
10648
+ content: {
10649
+ 'application/json': {
10650
+ error: string;
10651
+ message: string;
10652
+ };
10653
+ };
10654
+ };
10655
+ /** @description Default Response */
10656
+ 500: {
10657
+ headers: {
10658
+ [name: string]: unknown;
10659
+ };
10660
+ content: {
10661
+ 'application/json': {
10662
+ error: string;
10663
+ message: string;
10664
+ };
10665
+ };
10666
+ };
10667
+ };
10668
+ };
10669
+ delete?: never;
10670
+ options?: never;
10671
+ head?: never;
10672
+ patch?: never;
10673
+ trace?: never;
10674
+ };
10525
10675
  '/api/assistants/{id}/analytics': {
10526
10676
  parameters: {
10527
10677
  query?: never;
@@ -39047,9 +39197,9 @@ export interface paths {
39047
39197
  description: string;
39048
39198
  /** @description Non-negative integer (0 or greater) */
39049
39199
  count: number;
39050
- priority: 'low' | 'medium' | 'high';
39200
+ priority: 'low' | 'medium' | 'high' | 'critical';
39051
39201
  metadata: {
39052
- entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
39202
+ entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
39053
39203
  status?: string;
39054
39204
  filters?: {
39055
39205
  [key: string]: string;
@@ -39097,8 +39247,44 @@ export interface paths {
39097
39247
  };
39098
39248
  content: {
39099
39249
  'application/json': {
39100
- error: string;
39101
- message: string;
39250
+ error: {
39251
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39252
+ /** @description Human-readable error message */
39253
+ message: string;
39254
+ details?: {
39255
+ /** @description Field-level validation errors */
39256
+ fields?: {
39257
+ /** @description Field name that failed validation */
39258
+ field: string;
39259
+ /** @description Human-readable error message */
39260
+ message: string;
39261
+ /** @description The invalid value that was provided */
39262
+ value?: unknown;
39263
+ /** @description The validation constraint that failed */
39264
+ constraint?: string;
39265
+ }[];
39266
+ /** @description Stack trace (only in development) */
39267
+ stack?: string[];
39268
+ /** @description Original error object (only in development) */
39269
+ originalError?: unknown;
39270
+ } & {
39271
+ [key: string]: unknown;
39272
+ };
39273
+ /**
39274
+ * Format: date-time
39275
+ * @description ISO 8601 timestamp of when the error occurred
39276
+ */
39277
+ timestamp: string;
39278
+ /** @description Request path that caused the error */
39279
+ path?: string;
39280
+ /**
39281
+ * @description HTTP method that caused the error
39282
+ * @enum {string}
39283
+ */
39284
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39285
+ /** @description Unique request identifier for tracing */
39286
+ requestId?: string;
39287
+ };
39102
39288
  };
39103
39289
  };
39104
39290
  };
@@ -39109,8 +39295,44 @@ export interface paths {
39109
39295
  };
39110
39296
  content: {
39111
39297
  'application/json': {
39112
- error: string;
39113
- message: string;
39298
+ error: {
39299
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39300
+ /** @description Human-readable error message */
39301
+ message: string;
39302
+ details?: {
39303
+ /** @description Field-level validation errors */
39304
+ fields?: {
39305
+ /** @description Field name that failed validation */
39306
+ field: string;
39307
+ /** @description Human-readable error message */
39308
+ message: string;
39309
+ /** @description The invalid value that was provided */
39310
+ value?: unknown;
39311
+ /** @description The validation constraint that failed */
39312
+ constraint?: string;
39313
+ }[];
39314
+ /** @description Stack trace (only in development) */
39315
+ stack?: string[];
39316
+ /** @description Original error object (only in development) */
39317
+ originalError?: unknown;
39318
+ } & {
39319
+ [key: string]: unknown;
39320
+ };
39321
+ /**
39322
+ * Format: date-time
39323
+ * @description ISO 8601 timestamp of when the error occurred
39324
+ */
39325
+ timestamp: string;
39326
+ /** @description Request path that caused the error */
39327
+ path?: string;
39328
+ /**
39329
+ * @description HTTP method that caused the error
39330
+ * @enum {string}
39331
+ */
39332
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39333
+ /** @description Unique request identifier for tracing */
39334
+ requestId?: string;
39335
+ };
39114
39336
  };
39115
39337
  };
39116
39338
  };
@@ -39326,9 +39548,9 @@ export interface paths {
39326
39548
  description: string;
39327
39549
  /** @description Non-negative integer (0 or greater) */
39328
39550
  count: number;
39329
- priority: 'low' | 'medium' | 'high';
39551
+ priority: 'low' | 'medium' | 'high' | 'critical';
39330
39552
  metadata: {
39331
- entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
39553
+ entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
39332
39554
  status?: string;
39333
39555
  filters?: {
39334
39556
  [key: string]: string;
@@ -39376,8 +39598,44 @@ export interface paths {
39376
39598
  };
39377
39599
  content: {
39378
39600
  'application/json': {
39379
- error: string;
39380
- message: string;
39601
+ error: {
39602
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39603
+ /** @description Human-readable error message */
39604
+ message: string;
39605
+ details?: {
39606
+ /** @description Field-level validation errors */
39607
+ fields?: {
39608
+ /** @description Field name that failed validation */
39609
+ field: string;
39610
+ /** @description Human-readable error message */
39611
+ message: string;
39612
+ /** @description The invalid value that was provided */
39613
+ value?: unknown;
39614
+ /** @description The validation constraint that failed */
39615
+ constraint?: string;
39616
+ }[];
39617
+ /** @description Stack trace (only in development) */
39618
+ stack?: string[];
39619
+ /** @description Original error object (only in development) */
39620
+ originalError?: unknown;
39621
+ } & {
39622
+ [key: string]: unknown;
39623
+ };
39624
+ /**
39625
+ * Format: date-time
39626
+ * @description ISO 8601 timestamp of when the error occurred
39627
+ */
39628
+ timestamp: string;
39629
+ /** @description Request path that caused the error */
39630
+ path?: string;
39631
+ /**
39632
+ * @description HTTP method that caused the error
39633
+ * @enum {string}
39634
+ */
39635
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39636
+ /** @description Unique request identifier for tracing */
39637
+ requestId?: string;
39638
+ };
39381
39639
  };
39382
39640
  };
39383
39641
  };
@@ -39388,8 +39646,44 @@ export interface paths {
39388
39646
  };
39389
39647
  content: {
39390
39648
  'application/json': {
39391
- error: string;
39392
- message: string;
39649
+ error: {
39650
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39651
+ /** @description Human-readable error message */
39652
+ message: string;
39653
+ details?: {
39654
+ /** @description Field-level validation errors */
39655
+ fields?: {
39656
+ /** @description Field name that failed validation */
39657
+ field: string;
39658
+ /** @description Human-readable error message */
39659
+ message: string;
39660
+ /** @description The invalid value that was provided */
39661
+ value?: unknown;
39662
+ /** @description The validation constraint that failed */
39663
+ constraint?: string;
39664
+ }[];
39665
+ /** @description Stack trace (only in development) */
39666
+ stack?: string[];
39667
+ /** @description Original error object (only in development) */
39668
+ originalError?: unknown;
39669
+ } & {
39670
+ [key: string]: unknown;
39671
+ };
39672
+ /**
39673
+ * Format: date-time
39674
+ * @description ISO 8601 timestamp of when the error occurred
39675
+ */
39676
+ timestamp: string;
39677
+ /** @description Request path that caused the error */
39678
+ path?: string;
39679
+ /**
39680
+ * @description HTTP method that caused the error
39681
+ * @enum {string}
39682
+ */
39683
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39684
+ /** @description Unique request identifier for tracing */
39685
+ requestId?: string;
39686
+ };
39393
39687
  };
39394
39688
  };
39395
39689
  };
@@ -39509,9 +39803,9 @@ export interface paths {
39509
39803
  description: string;
39510
39804
  /** @description Non-negative integer (0 or greater) */
39511
39805
  count: number;
39512
- priority: 'low' | 'medium' | 'high';
39806
+ priority: 'low' | 'medium' | 'high' | 'critical';
39513
39807
  metadata: {
39514
- entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
39808
+ entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
39515
39809
  status?: string;
39516
39810
  filters?: {
39517
39811
  [key: string]: string;
@@ -39559,8 +39853,44 @@ export interface paths {
39559
39853
  };
39560
39854
  content: {
39561
39855
  'application/json': {
39562
- error: string;
39563
- message: string;
39856
+ error: {
39857
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39858
+ /** @description Human-readable error message */
39859
+ message: string;
39860
+ details?: {
39861
+ /** @description Field-level validation errors */
39862
+ fields?: {
39863
+ /** @description Field name that failed validation */
39864
+ field: string;
39865
+ /** @description Human-readable error message */
39866
+ message: string;
39867
+ /** @description The invalid value that was provided */
39868
+ value?: unknown;
39869
+ /** @description The validation constraint that failed */
39870
+ constraint?: string;
39871
+ }[];
39872
+ /** @description Stack trace (only in development) */
39873
+ stack?: string[];
39874
+ /** @description Original error object (only in development) */
39875
+ originalError?: unknown;
39876
+ } & {
39877
+ [key: string]: unknown;
39878
+ };
39879
+ /**
39880
+ * Format: date-time
39881
+ * @description ISO 8601 timestamp of when the error occurred
39882
+ */
39883
+ timestamp: string;
39884
+ /** @description Request path that caused the error */
39885
+ path?: string;
39886
+ /**
39887
+ * @description HTTP method that caused the error
39888
+ * @enum {string}
39889
+ */
39890
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39891
+ /** @description Unique request identifier for tracing */
39892
+ requestId?: string;
39893
+ };
39564
39894
  };
39565
39895
  };
39566
39896
  };
@@ -39571,8 +39901,44 @@ export interface paths {
39571
39901
  };
39572
39902
  content: {
39573
39903
  'application/json': {
39574
- error: string;
39575
- message: string;
39904
+ error: {
39905
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
39906
+ /** @description Human-readable error message */
39907
+ message: string;
39908
+ details?: {
39909
+ /** @description Field-level validation errors */
39910
+ fields?: {
39911
+ /** @description Field name that failed validation */
39912
+ field: string;
39913
+ /** @description Human-readable error message */
39914
+ message: string;
39915
+ /** @description The invalid value that was provided */
39916
+ value?: unknown;
39917
+ /** @description The validation constraint that failed */
39918
+ constraint?: string;
39919
+ }[];
39920
+ /** @description Stack trace (only in development) */
39921
+ stack?: string[];
39922
+ /** @description Original error object (only in development) */
39923
+ originalError?: unknown;
39924
+ } & {
39925
+ [key: string]: unknown;
39926
+ };
39927
+ /**
39928
+ * Format: date-time
39929
+ * @description ISO 8601 timestamp of when the error occurred
39930
+ */
39931
+ timestamp: string;
39932
+ /** @description Request path that caused the error */
39933
+ path?: string;
39934
+ /**
39935
+ * @description HTTP method that caused the error
39936
+ * @enum {string}
39937
+ */
39938
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
39939
+ /** @description Unique request identifier for tracing */
39940
+ requestId?: string;
39941
+ };
39576
39942
  };
39577
39943
  };
39578
39944
  };
@@ -39821,8 +40187,44 @@ export interface paths {
39821
40187
  };
39822
40188
  content: {
39823
40189
  'application/json': {
39824
- error: string;
39825
- message: string;
40190
+ error: {
40191
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
40192
+ /** @description Human-readable error message */
40193
+ message: string;
40194
+ details?: {
40195
+ /** @description Field-level validation errors */
40196
+ fields?: {
40197
+ /** @description Field name that failed validation */
40198
+ field: string;
40199
+ /** @description Human-readable error message */
40200
+ message: string;
40201
+ /** @description The invalid value that was provided */
40202
+ value?: unknown;
40203
+ /** @description The validation constraint that failed */
40204
+ constraint?: string;
40205
+ }[];
40206
+ /** @description Stack trace (only in development) */
40207
+ stack?: string[];
40208
+ /** @description Original error object (only in development) */
40209
+ originalError?: unknown;
40210
+ } & {
40211
+ [key: string]: unknown;
40212
+ };
40213
+ /**
40214
+ * Format: date-time
40215
+ * @description ISO 8601 timestamp of when the error occurred
40216
+ */
40217
+ timestamp: string;
40218
+ /** @description Request path that caused the error */
40219
+ path?: string;
40220
+ /**
40221
+ * @description HTTP method that caused the error
40222
+ * @enum {string}
40223
+ */
40224
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
40225
+ /** @description Unique request identifier for tracing */
40226
+ requestId?: string;
40227
+ };
39826
40228
  };
39827
40229
  };
39828
40230
  };
@@ -39833,8 +40235,44 @@ export interface paths {
39833
40235
  };
39834
40236
  content: {
39835
40237
  'application/json': {
39836
- error: string;
39837
- message: string;
40238
+ error: {
40239
+ code: 'UNAUTHORIZED' | 'FORBIDDEN' | 'TOKEN_EXPIRED' | 'INVALID_TOKEN' | 'VALIDATION_ERROR' | 'INVALID_INPUT' | 'MISSING_REQUIRED_FIELD' | 'INVALID_FORMAT' | 'NOT_FOUND' | 'ALREADY_EXISTS' | 'CONFLICT' | 'GONE' | 'BUSINESS_RULE_VIOLATION' | 'INVALID_STATE_TRANSITION' | 'QUOTA_EXCEEDED' | 'RATE_LIMIT_EXCEEDED' | 'INTERNAL_ERROR' | 'DATABASE_ERROR' | 'EXTERNAL_SERVICE_ERROR' | 'TIMEOUT' | 'SERVICE_UNAVAILABLE';
40240
+ /** @description Human-readable error message */
40241
+ message: string;
40242
+ details?: {
40243
+ /** @description Field-level validation errors */
40244
+ fields?: {
40245
+ /** @description Field name that failed validation */
40246
+ field: string;
40247
+ /** @description Human-readable error message */
40248
+ message: string;
40249
+ /** @description The invalid value that was provided */
40250
+ value?: unknown;
40251
+ /** @description The validation constraint that failed */
40252
+ constraint?: string;
40253
+ }[];
40254
+ /** @description Stack trace (only in development) */
40255
+ stack?: string[];
40256
+ /** @description Original error object (only in development) */
40257
+ originalError?: unknown;
40258
+ } & {
40259
+ [key: string]: unknown;
40260
+ };
40261
+ /**
40262
+ * Format: date-time
40263
+ * @description ISO 8601 timestamp of when the error occurred
40264
+ */
40265
+ timestamp: string;
40266
+ /** @description Request path that caused the error */
40267
+ path?: string;
40268
+ /**
40269
+ * @description HTTP method that caused the error
40270
+ * @enum {string}
40271
+ */
40272
+ method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
40273
+ /** @description Unique request identifier for tracing */
40274
+ requestId?: string;
40275
+ };
39838
40276
  };
39839
40277
  };
39840
40278
  };