@digiteers/uloba3-sdk 1.3.15 → 1.4.0
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 +14 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -33986,8 +33986,14 @@ export interface paths {
|
|
|
33986
33986
|
description: string;
|
|
33987
33987
|
/** @description Non-negative integer (0 or greater) */
|
|
33988
33988
|
count: number;
|
|
33989
|
-
url: string;
|
|
33990
33989
|
priority: 'low' | 'medium' | 'high';
|
|
33990
|
+
metadata: {
|
|
33991
|
+
entityType: 'job' | 'application' | 'inquiry' | 'contract';
|
|
33992
|
+
status?: string;
|
|
33993
|
+
filters?: {
|
|
33994
|
+
[key: string]: string;
|
|
33995
|
+
};
|
|
33996
|
+
};
|
|
33991
33997
|
}[];
|
|
33992
33998
|
};
|
|
33993
33999
|
metadata: {
|
|
@@ -34229,8 +34235,14 @@ export interface paths {
|
|
|
34229
34235
|
description: string;
|
|
34230
34236
|
/** @description Non-negative integer (0 or greater) */
|
|
34231
34237
|
count: number;
|
|
34232
|
-
url: string;
|
|
34233
34238
|
priority: 'low' | 'medium' | 'high';
|
|
34239
|
+
metadata: {
|
|
34240
|
+
entityType: 'job' | 'application' | 'inquiry' | 'contract';
|
|
34241
|
+
status?: string;
|
|
34242
|
+
filters?: {
|
|
34243
|
+
[key: string]: string;
|
|
34244
|
+
};
|
|
34245
|
+
};
|
|
34234
34246
|
}[];
|
|
34235
34247
|
};
|
|
34236
34248
|
metadata: {
|