@digiteers/uloba3-sdk 4.0.10 → 4.0.11
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 +310 -22
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -39047,9 +39047,9 @@ export interface paths {
|
|
|
39047
39047
|
description: string;
|
|
39048
39048
|
/** @description Non-negative integer (0 or greater) */
|
|
39049
39049
|
count: number;
|
|
39050
|
-
priority: 'low' | 'medium' | 'high';
|
|
39050
|
+
priority: 'low' | 'medium' | 'high' | 'critical';
|
|
39051
39051
|
metadata: {
|
|
39052
|
-
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
|
|
39052
|
+
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
|
|
39053
39053
|
status?: string;
|
|
39054
39054
|
filters?: {
|
|
39055
39055
|
[key: string]: string;
|
|
@@ -39097,8 +39097,44 @@ export interface paths {
|
|
|
39097
39097
|
};
|
|
39098
39098
|
content: {
|
|
39099
39099
|
'application/json': {
|
|
39100
|
-
error:
|
|
39101
|
-
|
|
39100
|
+
error: {
|
|
39101
|
+
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';
|
|
39102
|
+
/** @description Human-readable error message */
|
|
39103
|
+
message: string;
|
|
39104
|
+
details?: {
|
|
39105
|
+
/** @description Field-level validation errors */
|
|
39106
|
+
fields?: {
|
|
39107
|
+
/** @description Field name that failed validation */
|
|
39108
|
+
field: string;
|
|
39109
|
+
/** @description Human-readable error message */
|
|
39110
|
+
message: string;
|
|
39111
|
+
/** @description The invalid value that was provided */
|
|
39112
|
+
value?: unknown;
|
|
39113
|
+
/** @description The validation constraint that failed */
|
|
39114
|
+
constraint?: string;
|
|
39115
|
+
}[];
|
|
39116
|
+
/** @description Stack trace (only in development) */
|
|
39117
|
+
stack?: string[];
|
|
39118
|
+
/** @description Original error object (only in development) */
|
|
39119
|
+
originalError?: unknown;
|
|
39120
|
+
} & {
|
|
39121
|
+
[key: string]: unknown;
|
|
39122
|
+
};
|
|
39123
|
+
/**
|
|
39124
|
+
* Format: date-time
|
|
39125
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39126
|
+
*/
|
|
39127
|
+
timestamp: string;
|
|
39128
|
+
/** @description Request path that caused the error */
|
|
39129
|
+
path?: string;
|
|
39130
|
+
/**
|
|
39131
|
+
* @description HTTP method that caused the error
|
|
39132
|
+
* @enum {string}
|
|
39133
|
+
*/
|
|
39134
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39135
|
+
/** @description Unique request identifier for tracing */
|
|
39136
|
+
requestId?: string;
|
|
39137
|
+
};
|
|
39102
39138
|
};
|
|
39103
39139
|
};
|
|
39104
39140
|
};
|
|
@@ -39109,8 +39145,44 @@ export interface paths {
|
|
|
39109
39145
|
};
|
|
39110
39146
|
content: {
|
|
39111
39147
|
'application/json': {
|
|
39112
|
-
error:
|
|
39113
|
-
|
|
39148
|
+
error: {
|
|
39149
|
+
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';
|
|
39150
|
+
/** @description Human-readable error message */
|
|
39151
|
+
message: string;
|
|
39152
|
+
details?: {
|
|
39153
|
+
/** @description Field-level validation errors */
|
|
39154
|
+
fields?: {
|
|
39155
|
+
/** @description Field name that failed validation */
|
|
39156
|
+
field: string;
|
|
39157
|
+
/** @description Human-readable error message */
|
|
39158
|
+
message: string;
|
|
39159
|
+
/** @description The invalid value that was provided */
|
|
39160
|
+
value?: unknown;
|
|
39161
|
+
/** @description The validation constraint that failed */
|
|
39162
|
+
constraint?: string;
|
|
39163
|
+
}[];
|
|
39164
|
+
/** @description Stack trace (only in development) */
|
|
39165
|
+
stack?: string[];
|
|
39166
|
+
/** @description Original error object (only in development) */
|
|
39167
|
+
originalError?: unknown;
|
|
39168
|
+
} & {
|
|
39169
|
+
[key: string]: unknown;
|
|
39170
|
+
};
|
|
39171
|
+
/**
|
|
39172
|
+
* Format: date-time
|
|
39173
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39174
|
+
*/
|
|
39175
|
+
timestamp: string;
|
|
39176
|
+
/** @description Request path that caused the error */
|
|
39177
|
+
path?: string;
|
|
39178
|
+
/**
|
|
39179
|
+
* @description HTTP method that caused the error
|
|
39180
|
+
* @enum {string}
|
|
39181
|
+
*/
|
|
39182
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39183
|
+
/** @description Unique request identifier for tracing */
|
|
39184
|
+
requestId?: string;
|
|
39185
|
+
};
|
|
39114
39186
|
};
|
|
39115
39187
|
};
|
|
39116
39188
|
};
|
|
@@ -39326,9 +39398,9 @@ export interface paths {
|
|
|
39326
39398
|
description: string;
|
|
39327
39399
|
/** @description Non-negative integer (0 or greater) */
|
|
39328
39400
|
count: number;
|
|
39329
|
-
priority: 'low' | 'medium' | 'high';
|
|
39401
|
+
priority: 'low' | 'medium' | 'high' | 'critical';
|
|
39330
39402
|
metadata: {
|
|
39331
|
-
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
|
|
39403
|
+
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
|
|
39332
39404
|
status?: string;
|
|
39333
39405
|
filters?: {
|
|
39334
39406
|
[key: string]: string;
|
|
@@ -39376,8 +39448,44 @@ export interface paths {
|
|
|
39376
39448
|
};
|
|
39377
39449
|
content: {
|
|
39378
39450
|
'application/json': {
|
|
39379
|
-
error:
|
|
39380
|
-
|
|
39451
|
+
error: {
|
|
39452
|
+
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';
|
|
39453
|
+
/** @description Human-readable error message */
|
|
39454
|
+
message: string;
|
|
39455
|
+
details?: {
|
|
39456
|
+
/** @description Field-level validation errors */
|
|
39457
|
+
fields?: {
|
|
39458
|
+
/** @description Field name that failed validation */
|
|
39459
|
+
field: string;
|
|
39460
|
+
/** @description Human-readable error message */
|
|
39461
|
+
message: string;
|
|
39462
|
+
/** @description The invalid value that was provided */
|
|
39463
|
+
value?: unknown;
|
|
39464
|
+
/** @description The validation constraint that failed */
|
|
39465
|
+
constraint?: string;
|
|
39466
|
+
}[];
|
|
39467
|
+
/** @description Stack trace (only in development) */
|
|
39468
|
+
stack?: string[];
|
|
39469
|
+
/** @description Original error object (only in development) */
|
|
39470
|
+
originalError?: unknown;
|
|
39471
|
+
} & {
|
|
39472
|
+
[key: string]: unknown;
|
|
39473
|
+
};
|
|
39474
|
+
/**
|
|
39475
|
+
* Format: date-time
|
|
39476
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39477
|
+
*/
|
|
39478
|
+
timestamp: string;
|
|
39479
|
+
/** @description Request path that caused the error */
|
|
39480
|
+
path?: string;
|
|
39481
|
+
/**
|
|
39482
|
+
* @description HTTP method that caused the error
|
|
39483
|
+
* @enum {string}
|
|
39484
|
+
*/
|
|
39485
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39486
|
+
/** @description Unique request identifier for tracing */
|
|
39487
|
+
requestId?: string;
|
|
39488
|
+
};
|
|
39381
39489
|
};
|
|
39382
39490
|
};
|
|
39383
39491
|
};
|
|
@@ -39388,8 +39496,44 @@ export interface paths {
|
|
|
39388
39496
|
};
|
|
39389
39497
|
content: {
|
|
39390
39498
|
'application/json': {
|
|
39391
|
-
error:
|
|
39392
|
-
|
|
39499
|
+
error: {
|
|
39500
|
+
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';
|
|
39501
|
+
/** @description Human-readable error message */
|
|
39502
|
+
message: string;
|
|
39503
|
+
details?: {
|
|
39504
|
+
/** @description Field-level validation errors */
|
|
39505
|
+
fields?: {
|
|
39506
|
+
/** @description Field name that failed validation */
|
|
39507
|
+
field: string;
|
|
39508
|
+
/** @description Human-readable error message */
|
|
39509
|
+
message: string;
|
|
39510
|
+
/** @description The invalid value that was provided */
|
|
39511
|
+
value?: unknown;
|
|
39512
|
+
/** @description The validation constraint that failed */
|
|
39513
|
+
constraint?: string;
|
|
39514
|
+
}[];
|
|
39515
|
+
/** @description Stack trace (only in development) */
|
|
39516
|
+
stack?: string[];
|
|
39517
|
+
/** @description Original error object (only in development) */
|
|
39518
|
+
originalError?: unknown;
|
|
39519
|
+
} & {
|
|
39520
|
+
[key: string]: unknown;
|
|
39521
|
+
};
|
|
39522
|
+
/**
|
|
39523
|
+
* Format: date-time
|
|
39524
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39525
|
+
*/
|
|
39526
|
+
timestamp: string;
|
|
39527
|
+
/** @description Request path that caused the error */
|
|
39528
|
+
path?: string;
|
|
39529
|
+
/**
|
|
39530
|
+
* @description HTTP method that caused the error
|
|
39531
|
+
* @enum {string}
|
|
39532
|
+
*/
|
|
39533
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39534
|
+
/** @description Unique request identifier for tracing */
|
|
39535
|
+
requestId?: string;
|
|
39536
|
+
};
|
|
39393
39537
|
};
|
|
39394
39538
|
};
|
|
39395
39539
|
};
|
|
@@ -39509,9 +39653,9 @@ export interface paths {
|
|
|
39509
39653
|
description: string;
|
|
39510
39654
|
/** @description Non-negative integer (0 or greater) */
|
|
39511
39655
|
count: number;
|
|
39512
|
-
priority: 'low' | 'medium' | 'high';
|
|
39656
|
+
priority: 'low' | 'medium' | 'high' | 'critical';
|
|
39513
39657
|
metadata: {
|
|
39514
|
-
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract';
|
|
39658
|
+
entityType: 'job' | 'application' | 'inquiry' | 'invite' | 'contract' | 'profile';
|
|
39515
39659
|
status?: string;
|
|
39516
39660
|
filters?: {
|
|
39517
39661
|
[key: string]: string;
|
|
@@ -39559,8 +39703,44 @@ export interface paths {
|
|
|
39559
39703
|
};
|
|
39560
39704
|
content: {
|
|
39561
39705
|
'application/json': {
|
|
39562
|
-
error:
|
|
39563
|
-
|
|
39706
|
+
error: {
|
|
39707
|
+
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';
|
|
39708
|
+
/** @description Human-readable error message */
|
|
39709
|
+
message: string;
|
|
39710
|
+
details?: {
|
|
39711
|
+
/** @description Field-level validation errors */
|
|
39712
|
+
fields?: {
|
|
39713
|
+
/** @description Field name that failed validation */
|
|
39714
|
+
field: string;
|
|
39715
|
+
/** @description Human-readable error message */
|
|
39716
|
+
message: string;
|
|
39717
|
+
/** @description The invalid value that was provided */
|
|
39718
|
+
value?: unknown;
|
|
39719
|
+
/** @description The validation constraint that failed */
|
|
39720
|
+
constraint?: string;
|
|
39721
|
+
}[];
|
|
39722
|
+
/** @description Stack trace (only in development) */
|
|
39723
|
+
stack?: string[];
|
|
39724
|
+
/** @description Original error object (only in development) */
|
|
39725
|
+
originalError?: unknown;
|
|
39726
|
+
} & {
|
|
39727
|
+
[key: string]: unknown;
|
|
39728
|
+
};
|
|
39729
|
+
/**
|
|
39730
|
+
* Format: date-time
|
|
39731
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39732
|
+
*/
|
|
39733
|
+
timestamp: string;
|
|
39734
|
+
/** @description Request path that caused the error */
|
|
39735
|
+
path?: string;
|
|
39736
|
+
/**
|
|
39737
|
+
* @description HTTP method that caused the error
|
|
39738
|
+
* @enum {string}
|
|
39739
|
+
*/
|
|
39740
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39741
|
+
/** @description Unique request identifier for tracing */
|
|
39742
|
+
requestId?: string;
|
|
39743
|
+
};
|
|
39564
39744
|
};
|
|
39565
39745
|
};
|
|
39566
39746
|
};
|
|
@@ -39571,8 +39751,44 @@ export interface paths {
|
|
|
39571
39751
|
};
|
|
39572
39752
|
content: {
|
|
39573
39753
|
'application/json': {
|
|
39574
|
-
error:
|
|
39575
|
-
|
|
39754
|
+
error: {
|
|
39755
|
+
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';
|
|
39756
|
+
/** @description Human-readable error message */
|
|
39757
|
+
message: string;
|
|
39758
|
+
details?: {
|
|
39759
|
+
/** @description Field-level validation errors */
|
|
39760
|
+
fields?: {
|
|
39761
|
+
/** @description Field name that failed validation */
|
|
39762
|
+
field: string;
|
|
39763
|
+
/** @description Human-readable error message */
|
|
39764
|
+
message: string;
|
|
39765
|
+
/** @description The invalid value that was provided */
|
|
39766
|
+
value?: unknown;
|
|
39767
|
+
/** @description The validation constraint that failed */
|
|
39768
|
+
constraint?: string;
|
|
39769
|
+
}[];
|
|
39770
|
+
/** @description Stack trace (only in development) */
|
|
39771
|
+
stack?: string[];
|
|
39772
|
+
/** @description Original error object (only in development) */
|
|
39773
|
+
originalError?: unknown;
|
|
39774
|
+
} & {
|
|
39775
|
+
[key: string]: unknown;
|
|
39776
|
+
};
|
|
39777
|
+
/**
|
|
39778
|
+
* Format: date-time
|
|
39779
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
39780
|
+
*/
|
|
39781
|
+
timestamp: string;
|
|
39782
|
+
/** @description Request path that caused the error */
|
|
39783
|
+
path?: string;
|
|
39784
|
+
/**
|
|
39785
|
+
* @description HTTP method that caused the error
|
|
39786
|
+
* @enum {string}
|
|
39787
|
+
*/
|
|
39788
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
39789
|
+
/** @description Unique request identifier for tracing */
|
|
39790
|
+
requestId?: string;
|
|
39791
|
+
};
|
|
39576
39792
|
};
|
|
39577
39793
|
};
|
|
39578
39794
|
};
|
|
@@ -39821,8 +40037,44 @@ export interface paths {
|
|
|
39821
40037
|
};
|
|
39822
40038
|
content: {
|
|
39823
40039
|
'application/json': {
|
|
39824
|
-
error:
|
|
39825
|
-
|
|
40040
|
+
error: {
|
|
40041
|
+
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';
|
|
40042
|
+
/** @description Human-readable error message */
|
|
40043
|
+
message: string;
|
|
40044
|
+
details?: {
|
|
40045
|
+
/** @description Field-level validation errors */
|
|
40046
|
+
fields?: {
|
|
40047
|
+
/** @description Field name that failed validation */
|
|
40048
|
+
field: string;
|
|
40049
|
+
/** @description Human-readable error message */
|
|
40050
|
+
message: string;
|
|
40051
|
+
/** @description The invalid value that was provided */
|
|
40052
|
+
value?: unknown;
|
|
40053
|
+
/** @description The validation constraint that failed */
|
|
40054
|
+
constraint?: string;
|
|
40055
|
+
}[];
|
|
40056
|
+
/** @description Stack trace (only in development) */
|
|
40057
|
+
stack?: string[];
|
|
40058
|
+
/** @description Original error object (only in development) */
|
|
40059
|
+
originalError?: unknown;
|
|
40060
|
+
} & {
|
|
40061
|
+
[key: string]: unknown;
|
|
40062
|
+
};
|
|
40063
|
+
/**
|
|
40064
|
+
* Format: date-time
|
|
40065
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
40066
|
+
*/
|
|
40067
|
+
timestamp: string;
|
|
40068
|
+
/** @description Request path that caused the error */
|
|
40069
|
+
path?: string;
|
|
40070
|
+
/**
|
|
40071
|
+
* @description HTTP method that caused the error
|
|
40072
|
+
* @enum {string}
|
|
40073
|
+
*/
|
|
40074
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
40075
|
+
/** @description Unique request identifier for tracing */
|
|
40076
|
+
requestId?: string;
|
|
40077
|
+
};
|
|
39826
40078
|
};
|
|
39827
40079
|
};
|
|
39828
40080
|
};
|
|
@@ -39833,8 +40085,44 @@ export interface paths {
|
|
|
39833
40085
|
};
|
|
39834
40086
|
content: {
|
|
39835
40087
|
'application/json': {
|
|
39836
|
-
error:
|
|
39837
|
-
|
|
40088
|
+
error: {
|
|
40089
|
+
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';
|
|
40090
|
+
/** @description Human-readable error message */
|
|
40091
|
+
message: string;
|
|
40092
|
+
details?: {
|
|
40093
|
+
/** @description Field-level validation errors */
|
|
40094
|
+
fields?: {
|
|
40095
|
+
/** @description Field name that failed validation */
|
|
40096
|
+
field: string;
|
|
40097
|
+
/** @description Human-readable error message */
|
|
40098
|
+
message: string;
|
|
40099
|
+
/** @description The invalid value that was provided */
|
|
40100
|
+
value?: unknown;
|
|
40101
|
+
/** @description The validation constraint that failed */
|
|
40102
|
+
constraint?: string;
|
|
40103
|
+
}[];
|
|
40104
|
+
/** @description Stack trace (only in development) */
|
|
40105
|
+
stack?: string[];
|
|
40106
|
+
/** @description Original error object (only in development) */
|
|
40107
|
+
originalError?: unknown;
|
|
40108
|
+
} & {
|
|
40109
|
+
[key: string]: unknown;
|
|
40110
|
+
};
|
|
40111
|
+
/**
|
|
40112
|
+
* Format: date-time
|
|
40113
|
+
* @description ISO 8601 timestamp of when the error occurred
|
|
40114
|
+
*/
|
|
40115
|
+
timestamp: string;
|
|
40116
|
+
/** @description Request path that caused the error */
|
|
40117
|
+
path?: string;
|
|
40118
|
+
/**
|
|
40119
|
+
* @description HTTP method that caused the error
|
|
40120
|
+
* @enum {string}
|
|
40121
|
+
*/
|
|
40122
|
+
method?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
40123
|
+
/** @description Unique request identifier for tracing */
|
|
40124
|
+
requestId?: string;
|
|
40125
|
+
};
|
|
39838
40126
|
};
|
|
39839
40127
|
};
|
|
39840
40128
|
};
|