@factorialco/f0-react 1.451.0 → 1.453.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/{F0AiChat-CvswUKj5.js → F0AiChat-CLTpMqnb.js} +30555 -30375
- package/dist/ai.d.ts +26 -0
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +26 -0
- package/dist/experimental.js +112 -112
- package/dist/f0.d.ts +67 -0
- package/dist/f0.js +1153 -1203
- package/dist/{index-DI1K-gxs.js → index-C87rXop2.js} +1415 -1433
- package/dist/{types-C7-JhSfW.js → types-BcRmQjTr.js} +1 -1
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1839,6 +1839,8 @@ export declare type EntityResolvers = {
|
|
|
1839
1839
|
person?: (id: string) => Promise<PersonProfile>;
|
|
1840
1840
|
candidate?: (id: string) => Promise<CandidateProfile>;
|
|
1841
1841
|
jobPosting?: (id: string) => Promise<JobPostingProfile>;
|
|
1842
|
+
requisition?: (id: string) => Promise<RequisitionProfile>;
|
|
1843
|
+
vacancy?: (id: string) => Promise<VacancyProfile>;
|
|
1842
1844
|
/**
|
|
1843
1845
|
* Search for persons by name query. Used by the @mention autocomplete
|
|
1844
1846
|
* in the chat input to let users reference specific employees.
|
|
@@ -1857,6 +1859,8 @@ export declare type EntityUrlBuilders = {
|
|
|
1857
1859
|
person?: (id: string) => string;
|
|
1858
1860
|
candidate?: (id: string) => string;
|
|
1859
1861
|
jobPosting?: (id: string) => string;
|
|
1862
|
+
requisition?: (id: string) => string;
|
|
1863
|
+
vacancy?: (id: string) => string;
|
|
1860
1864
|
};
|
|
1861
1865
|
|
|
1862
1866
|
export declare const F0ActionItem: ({ title, status, inGroup }: F0ActionItemProps) => JSX_2.Element;
|
|
@@ -2517,6 +2521,17 @@ declare type RelaxedNumericWithFormatter = Omit<NumericWithFormatter, "numericVa
|
|
|
2517
2521
|
numericValue: Numeric;
|
|
2518
2522
|
};
|
|
2519
2523
|
|
|
2524
|
+
/**
|
|
2525
|
+
* Profile data for a requisition entity (ATS requisition), resolved asynchronously
|
|
2526
|
+
* and displayed in the entity reference hover card.
|
|
2527
|
+
*/
|
|
2528
|
+
export declare type RequisitionProfile = {
|
|
2529
|
+
id: string | number;
|
|
2530
|
+
title: string;
|
|
2531
|
+
status?: string;
|
|
2532
|
+
reason?: string;
|
|
2533
|
+
};
|
|
2534
|
+
|
|
2520
2535
|
export declare type SparklineDataPoint = {
|
|
2521
2536
|
value: number;
|
|
2522
2537
|
};
|
|
@@ -2571,6 +2586,17 @@ export declare const useMessageSourcesAction: () => void;
|
|
|
2571
2586
|
*/
|
|
2572
2587
|
export declare const useOrchestratorThinkingAction: () => void;
|
|
2573
2588
|
|
|
2589
|
+
/**
|
|
2590
|
+
* Profile data for a vacancy entity (ATS vacancy/position), resolved asynchronously
|
|
2591
|
+
* and displayed in the entity reference hover card.
|
|
2592
|
+
*/
|
|
2593
|
+
export declare type VacancyProfile = {
|
|
2594
|
+
id: string | number;
|
|
2595
|
+
name: string;
|
|
2596
|
+
status?: string;
|
|
2597
|
+
vacancyType?: string;
|
|
2598
|
+
};
|
|
2599
|
+
|
|
2574
2600
|
/**
|
|
2575
2601
|
* Visualization mode for the AI chat
|
|
2576
2602
|
*/
|
package/dist/ai.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { i as t, h as i, F as e, a as n, C as o, b as r, j as A, k as c, I as u, g as F, c as h, d as C, u as l, f as I, e as f } from "./F0AiChat-
|
|
1
|
+
import { i as t, h as i, F as e, a as n, C as o, b as r, j as A, k as c, I as u, g as F, c as h, d as C, u as l, f as I, e as f } from "./F0AiChat-CLTpMqnb.js";
|
|
2
2
|
import { defaultTranslations as m } from "./i18n-provider-defaults.js";
|
|
3
|
-
import { A as p, e as g, F as S, c as v, d as x, b as k, a as O, f as P, o as b, u as y } from "./types-
|
|
3
|
+
import { A as p, e as g, F as S, c as v, d as x, b as k, a as O, f as P, o as b, u as y } from "./types-BcRmQjTr.js";
|
|
4
4
|
export {
|
|
5
5
|
p as AiChatTranslationsProvider,
|
|
6
6
|
t as ChatSpinner,
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3397,6 +3397,8 @@ declare type EntityResolvers = {
|
|
|
3397
3397
|
person?: (id: string) => Promise<PersonProfile>;
|
|
3398
3398
|
candidate?: (id: string) => Promise<CandidateProfile>;
|
|
3399
3399
|
jobPosting?: (id: string) => Promise<JobPostingProfile>;
|
|
3400
|
+
requisition?: (id: string) => Promise<RequisitionProfile>;
|
|
3401
|
+
vacancy?: (id: string) => Promise<VacancyProfile>;
|
|
3400
3402
|
/**
|
|
3401
3403
|
* Search for persons by name query. Used by the @mention autocomplete
|
|
3402
3404
|
* in the chat input to let users reference specific employees.
|
|
@@ -3483,6 +3485,8 @@ declare type EntityUrlBuilders = {
|
|
|
3483
3485
|
person?: (id: string) => string;
|
|
3484
3486
|
candidate?: (id: string) => string;
|
|
3485
3487
|
jobPosting?: (id: string) => string;
|
|
3488
|
+
requisition?: (id: string) => string;
|
|
3489
|
+
vacancy?: (id: string) => string;
|
|
3486
3490
|
};
|
|
3487
3491
|
|
|
3488
3492
|
declare type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? [...Acc, N][number] : Enumerate<N, [...Acc, Acc["length"]]>;
|
|
@@ -6179,6 +6183,17 @@ declare interface ReplaceContentNotesTextEditorPageDocumentPatch {
|
|
|
6179
6183
|
content: JSONContent[];
|
|
6180
6184
|
}
|
|
6181
6185
|
|
|
6186
|
+
/**
|
|
6187
|
+
* Profile data for a requisition entity (ATS requisition), resolved asynchronously
|
|
6188
|
+
* and displayed in the entity reference hover card.
|
|
6189
|
+
*/
|
|
6190
|
+
declare type RequisitionProfile = {
|
|
6191
|
+
id: string | number;
|
|
6192
|
+
title: string;
|
|
6193
|
+
status?: string;
|
|
6194
|
+
reason?: string;
|
|
6195
|
+
};
|
|
6196
|
+
|
|
6182
6197
|
export declare type ResolvedRecordType<R> = R extends RecordType ? R : RecordType;
|
|
6183
6198
|
|
|
6184
6199
|
/**
|
|
@@ -7242,6 +7257,17 @@ declare interface User_2 {
|
|
|
7242
7257
|
|
|
7243
7258
|
export declare function useSidebar(): FrameContextType;
|
|
7244
7259
|
|
|
7260
|
+
/**
|
|
7261
|
+
* Profile data for a vacancy entity (ATS vacancy/position), resolved asynchronously
|
|
7262
|
+
* and displayed in the entity reference hover card.
|
|
7263
|
+
*/
|
|
7264
|
+
declare type VacancyProfile = {
|
|
7265
|
+
id: string | number;
|
|
7266
|
+
name: string;
|
|
7267
|
+
status?: string;
|
|
7268
|
+
vacancyType?: string;
|
|
7269
|
+
};
|
|
7270
|
+
|
|
7245
7271
|
declare type ValueDisplayRendererContext = {
|
|
7246
7272
|
visualization: ValueDisplayVisualizationType;
|
|
7247
7273
|
i18n: TranslationsType;
|