@cavuno/board 1.35.0 → 1.35.1
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/{board-DsRbgz_D.d.ts → board-Z7hjKDp8.d.ts} +1 -1
- package/dist/{board-Be8dY9Ba.d.mts → board-t_WltBBa.d.mts} +1 -1
- package/dist/filters.d.mts +2 -2
- package/dist/filters.d.ts +2 -2
- package/dist/filters.js +3 -6
- package/dist/filters.mjs +3 -6
- package/dist/format.d.mts +4 -4
- package/dist/format.d.ts +4 -4
- package/dist/format.js +3 -6
- package/dist/format.mjs +3 -6
- package/dist/index.d.mts +42 -33
- package/dist/index.d.ts +42 -33
- package/dist/index.js +22 -17
- package/dist/index.mjs +22 -17
- package/dist/{jobs-BFLMDNEN.d.mts → jobs-Dq2a9oPj.d.mts} +686 -34
- package/dist/{jobs-BFLMDNEN.d.ts → jobs-Dq2a9oPj.d.ts} +686 -34
- package/dist/{salaries-negE75t8.d.ts → salaries-CTin-18R.d.ts} +1 -1
- package/dist/{salaries-pO_vGORE.d.mts → salaries-CWg82dOz.d.mts} +1 -1
- package/dist/seo.d.mts +4 -4
- package/dist/seo.d.ts +4 -4
- package/dist/seo.js +3 -6
- package/dist/seo.mjs +3 -6
- package/dist/server.d.mts +3 -3
- package/dist/server.d.ts +3 -3
- package/dist/sitemap.d.mts +3 -3
- package/dist/sitemap.d.ts +3 -3
- package/dist/{ui-copy-rlfoH9P3.d.mts → ui-copy-CKfFTtLk.d.mts} +0 -1
- package/dist/{ui-copy-rlfoH9P3.d.ts → ui-copy-CKfFTtLk.d.ts} +0 -1
- package/package.json +1 -1
- package/skills/cavuno-board-filters/SKILL.md +43 -3
- package/skills/cavuno-board-job-alerts/SKILL.md +3 -4
- package/skills/cavuno-board-job-posting/SKILL.md +8 -22
- package/skills/cavuno-board-smoke-test/SKILL.md +1 -1
- package/skills/manifest.json +2 -2
|
@@ -63,6 +63,10 @@ interface components {
|
|
|
63
63
|
AddCategoryAliasesBody: {
|
|
64
64
|
aliases: string[];
|
|
65
65
|
};
|
|
66
|
+
AddForagerExclusionBody: {
|
|
67
|
+
pattern: string;
|
|
68
|
+
type: string;
|
|
69
|
+
};
|
|
66
70
|
AddMarketAliasesBody: {
|
|
67
71
|
aliases: string[];
|
|
68
72
|
};
|
|
@@ -77,6 +81,22 @@ interface components {
|
|
|
77
81
|
*/
|
|
78
82
|
admin: string;
|
|
79
83
|
};
|
|
84
|
+
AiUsage: {
|
|
85
|
+
id: string;
|
|
86
|
+
/** @enum {string} */
|
|
87
|
+
object: "ai_usage";
|
|
88
|
+
/** @description The UTC day these counts are for (YYYY-MM-DD). */
|
|
89
|
+
date: string;
|
|
90
|
+
/** @description ISO timestamp of the next UTC-midnight counter reset. */
|
|
91
|
+
resetAt: string;
|
|
92
|
+
features: components["schemas"]["AiUsageFeature"][];
|
|
93
|
+
};
|
|
94
|
+
AiUsageFeature: {
|
|
95
|
+
feature: string;
|
|
96
|
+
used: number;
|
|
97
|
+
limit: number;
|
|
98
|
+
remaining: number;
|
|
99
|
+
};
|
|
80
100
|
Alert: {
|
|
81
101
|
/** @description Job-alert preference ID — also the path key. */
|
|
82
102
|
id: string;
|
|
@@ -172,6 +192,10 @@ interface components {
|
|
|
172
192
|
email?: string;
|
|
173
193
|
coverNote?: string;
|
|
174
194
|
};
|
|
195
|
+
ApproveClaimBody: {
|
|
196
|
+
/** @description Optional intended role for the approved employer, recorded in the audit log. Not yet persisted (companyMembers has no role field). */
|
|
197
|
+
role?: string;
|
|
198
|
+
};
|
|
175
199
|
AuditLogEntry: {
|
|
176
200
|
/** @description Unique identifier for the object. */
|
|
177
201
|
id: string;
|
|
@@ -448,6 +472,18 @@ interface components {
|
|
|
448
472
|
BoardAuthVerifyEmailBody: {
|
|
449
473
|
token: string;
|
|
450
474
|
};
|
|
475
|
+
BoardContentBody: {
|
|
476
|
+
/** @description The board name. */
|
|
477
|
+
boardName: string;
|
|
478
|
+
/** @description Optional board description to steer the copy. */
|
|
479
|
+
boardDescription?: string;
|
|
480
|
+
};
|
|
481
|
+
BoardRulesBody: {
|
|
482
|
+
/** @description The board name. */
|
|
483
|
+
boardName: string;
|
|
484
|
+
/** @description Optional board description to steer the scraping rules. */
|
|
485
|
+
boardDescription?: string;
|
|
486
|
+
};
|
|
451
487
|
BoardSeo: {
|
|
452
488
|
/** @enum {string} */
|
|
453
489
|
object: "board_seo";
|
|
@@ -477,6 +513,16 @@ interface components {
|
|
|
477
513
|
themeColor: string;
|
|
478
514
|
};
|
|
479
515
|
};
|
|
516
|
+
BoardThemeBody: {
|
|
517
|
+
/** @description The board name. */
|
|
518
|
+
boardName: string;
|
|
519
|
+
/** @description Optional board description to steer the palette + fonts. */
|
|
520
|
+
boardDescription?: string;
|
|
521
|
+
};
|
|
522
|
+
BoardToneBody: {
|
|
523
|
+
/** @description The board name the AI tone/voice profile is generated from. */
|
|
524
|
+
boardName: string;
|
|
525
|
+
};
|
|
480
526
|
BoardUser: {
|
|
481
527
|
/** @description Board user ID. */
|
|
482
528
|
id: string;
|
|
@@ -496,11 +542,52 @@ interface components {
|
|
|
496
542
|
BulkRejectApplicantsBody: {
|
|
497
543
|
applicationIds: string[];
|
|
498
544
|
};
|
|
545
|
+
Candidate: {
|
|
546
|
+
/** @description Unique identifier for the candidate. */
|
|
547
|
+
id: string;
|
|
548
|
+
/**
|
|
549
|
+
* @description String representing the object's type.
|
|
550
|
+
* @enum {string}
|
|
551
|
+
*/
|
|
552
|
+
object: "candidate";
|
|
553
|
+
/** @description The candidate's email address. */
|
|
554
|
+
email: string;
|
|
555
|
+
/** @description The candidate's display name. */
|
|
556
|
+
displayName: string | null;
|
|
557
|
+
/** @description Public-profile handle, or `null`. */
|
|
558
|
+
handle: string | null;
|
|
559
|
+
/** @description Avatar URL, or `null`. */
|
|
560
|
+
avatarUrl: string | null;
|
|
561
|
+
/** @description Whether the candidate has uploaded a resume. */
|
|
562
|
+
hasResume: boolean;
|
|
563
|
+
/** @description ISO-8601 timestamp of when the candidate registered. */
|
|
564
|
+
createdAt: string;
|
|
565
|
+
/** @description ISO-8601 timestamp of the last sign-in, or `null`. */
|
|
566
|
+
lastActiveAt: string | null;
|
|
567
|
+
};
|
|
499
568
|
CandidateAvatar: {
|
|
500
569
|
/** @enum {string} */
|
|
501
570
|
object: "candidate_avatar";
|
|
502
571
|
avatarUrl: string | null;
|
|
503
572
|
};
|
|
573
|
+
CandidateDetail: components["schemas"]["Candidate"] & {
|
|
574
|
+
profile: components["schemas"]["CandidateProfile"] & ({
|
|
575
|
+
headline: string | null;
|
|
576
|
+
location: string | null;
|
|
577
|
+
bio: string | null;
|
|
578
|
+
jobSearchStatus: string | null;
|
|
579
|
+
profileVisibility: string | null;
|
|
580
|
+
openToRelocate: boolean | null;
|
|
581
|
+
seniority: string[];
|
|
582
|
+
skills: string[];
|
|
583
|
+
workingPermits: string[];
|
|
584
|
+
interestedRoles: string[];
|
|
585
|
+
} | null);
|
|
586
|
+
/** @description Number of jobs the candidate has saved. */
|
|
587
|
+
savedJobCount: number;
|
|
588
|
+
/** @description Number of job alerts the candidate has. */
|
|
589
|
+
alertCount: number;
|
|
590
|
+
};
|
|
504
591
|
CandidateEducation: {
|
|
505
592
|
id: string;
|
|
506
593
|
/** @enum {string} */
|
|
@@ -583,6 +670,15 @@ interface components {
|
|
|
583
670
|
slug: string;
|
|
584
671
|
website: string | null;
|
|
585
672
|
};
|
|
673
|
+
CollectReportsBody: {
|
|
674
|
+
/** @description Restrict collection to these providers. Omit to collect every enabled provider. */
|
|
675
|
+
providers?: ("search_console" | "adsense" | "tinybird" | "stripe")[];
|
|
676
|
+
/**
|
|
677
|
+
* Format: date-time
|
|
678
|
+
* @description Collect up to this end date (ISO-8601). Defaults to the current day.
|
|
679
|
+
*/
|
|
680
|
+
endDate?: string;
|
|
681
|
+
};
|
|
586
682
|
CompaniesBatchRequest: {
|
|
587
683
|
/** @description Array of sub-operations to execute. Each entry runs independently and reports its result on the corresponding entry of the response `data` array. Sub-operation `id` values must be unique within the batch. Up to 100 entries. */
|
|
588
684
|
operations: ({
|
|
@@ -659,6 +755,20 @@ interface components {
|
|
|
659
755
|
boardCategoryP75Max: number | null;
|
|
660
756
|
currency: string;
|
|
661
757
|
};
|
|
758
|
+
CompanyClaim: {
|
|
759
|
+
id: string;
|
|
760
|
+
/** @enum {string} */
|
|
761
|
+
object: "company_claim";
|
|
762
|
+
companyId: string;
|
|
763
|
+
companyName: string;
|
|
764
|
+
employerId: string;
|
|
765
|
+
employerEmail: string;
|
|
766
|
+
workEmail: string | null;
|
|
767
|
+
workEmailVerifiedAt: string | null;
|
|
768
|
+
status: string;
|
|
769
|
+
/** @description ISO-8601 timestamp the claim was created. */
|
|
770
|
+
requestedAt: string;
|
|
771
|
+
};
|
|
662
772
|
CompanyMarket: {
|
|
663
773
|
/** @enum {string} */
|
|
664
774
|
object: "company_market";
|
|
@@ -797,6 +907,8 @@ interface components {
|
|
|
797
907
|
logoUrl: string | null;
|
|
798
908
|
/** @description One-line summary of the company, or `null` if not set. */
|
|
799
909
|
summary: string | null;
|
|
910
|
+
/** @description Canonical market slugs assigned to the company. */
|
|
911
|
+
markets: string[];
|
|
800
912
|
/** @description X (Twitter) profile URL, or `null` if not set. */
|
|
801
913
|
xUrl: string | null;
|
|
802
914
|
/** @description LinkedIn page URL, or `null` if not set. */
|
|
@@ -816,6 +928,36 @@ interface components {
|
|
|
816
928
|
public?: string | null;
|
|
817
929
|
};
|
|
818
930
|
};
|
|
931
|
+
ConfirmImportBody: {
|
|
932
|
+
/** @description A first-time or revised mapping to persist. Omit to use the mapping already attached to the batch (fingerprint reuse). */
|
|
933
|
+
inlineMapping?: {
|
|
934
|
+
schemaFingerprint: string;
|
|
935
|
+
/** @enum {string} */
|
|
936
|
+
sourceFormat: "csv" | "xml";
|
|
937
|
+
fieldMappings: {
|
|
938
|
+
sourceColumn: string;
|
|
939
|
+
targetField: string;
|
|
940
|
+
confidence: number;
|
|
941
|
+
notes?: string;
|
|
942
|
+
}[];
|
|
943
|
+
/** @default {} */
|
|
944
|
+
defaults: {
|
|
945
|
+
employmentType?: string;
|
|
946
|
+
remoteOption?: string;
|
|
947
|
+
currency?: string;
|
|
948
|
+
descriptionFormat?: string;
|
|
949
|
+
};
|
|
950
|
+
/** @default [] */
|
|
951
|
+
valueTransforms: {
|
|
952
|
+
sourceColumn: string;
|
|
953
|
+
targetField: string;
|
|
954
|
+
map: {
|
|
955
|
+
[key: string]: string;
|
|
956
|
+
};
|
|
957
|
+
fallback?: string;
|
|
958
|
+
}[];
|
|
959
|
+
};
|
|
960
|
+
};
|
|
819
961
|
ConfirmWorkEmailBody: {
|
|
820
962
|
token: string;
|
|
821
963
|
};
|
|
@@ -930,6 +1072,8 @@ interface components {
|
|
|
930
1072
|
linkedinUrl?: string;
|
|
931
1073
|
/** @description Facebook company page URL. */
|
|
932
1074
|
facebookUrl?: string;
|
|
1075
|
+
/** @description Canonical market slugs assigned to the company. Pass an empty array to clear all markets. */
|
|
1076
|
+
markets?: string[];
|
|
933
1077
|
/** @description The company's display name. */
|
|
934
1078
|
name: string;
|
|
935
1079
|
/** @description URL-friendly slug for the company. Auto-generated from `name` when omitted. */
|
|
@@ -966,6 +1110,18 @@ interface components {
|
|
|
966
1110
|
description?: string;
|
|
967
1111
|
sortOrder?: number;
|
|
968
1112
|
};
|
|
1113
|
+
CreateInvitationBody: {
|
|
1114
|
+
/**
|
|
1115
|
+
* Format: email
|
|
1116
|
+
* @description The email address to invite.
|
|
1117
|
+
*/
|
|
1118
|
+
email: string;
|
|
1119
|
+
/**
|
|
1120
|
+
* @description The role the invitee receives on accept.
|
|
1121
|
+
* @enum {string}
|
|
1122
|
+
*/
|
|
1123
|
+
role: "admin" | "member";
|
|
1124
|
+
};
|
|
969
1125
|
CreateJobBody: {
|
|
970
1126
|
/** @description The ID of an existing company. Provide either `companyId` or `company`, not both. */
|
|
971
1127
|
companyId?: string;
|
|
@@ -1269,6 +1425,35 @@ interface components {
|
|
|
1269
1425
|
EditMessageBody: {
|
|
1270
1426
|
body: string;
|
|
1271
1427
|
};
|
|
1428
|
+
Employer: {
|
|
1429
|
+
/** @description Unique identifier for the employer. */
|
|
1430
|
+
id: string;
|
|
1431
|
+
/**
|
|
1432
|
+
* @description String representing the object's type.
|
|
1433
|
+
* @enum {string}
|
|
1434
|
+
*/
|
|
1435
|
+
object: "employer";
|
|
1436
|
+
/** @description The employer's email address. */
|
|
1437
|
+
email: string;
|
|
1438
|
+
displayName: string | null;
|
|
1439
|
+
avatarUrl: string | null;
|
|
1440
|
+
emailVerifiedAt: string | null;
|
|
1441
|
+
createdAt: string;
|
|
1442
|
+
lastActiveAt: string | null;
|
|
1443
|
+
/** @description Approved company memberships. */
|
|
1444
|
+
companies: (components["schemas"]["EmployerCompany"] & {
|
|
1445
|
+
companyId: string;
|
|
1446
|
+
companyName: string;
|
|
1447
|
+
/** @description Membership status (e.g. `approved`). */
|
|
1448
|
+
status: string;
|
|
1449
|
+
/** @description How the membership was approved (`domain_match` | `work_email_verification` | `admin` | `owner_creation`), or `null`. */
|
|
1450
|
+
approvalSource: string | null;
|
|
1451
|
+
/** @description ISO-8601 timestamp the membership was created. */
|
|
1452
|
+
joinedAt: string;
|
|
1453
|
+
})[];
|
|
1454
|
+
/** @description Pending company claims (memberships awaiting approval). */
|
|
1455
|
+
pendingClaims: components["schemas"]["EmployerPendingClaim"][];
|
|
1456
|
+
};
|
|
1272
1457
|
EmployerApplicant: {
|
|
1273
1458
|
id: string;
|
|
1274
1459
|
/** @enum {string} */
|
|
@@ -1578,6 +1763,28 @@ interface components {
|
|
|
1578
1763
|
updatedAt: string;
|
|
1579
1764
|
links: components["schemas"]["EmployerJobLinks"];
|
|
1580
1765
|
};
|
|
1766
|
+
EmployerMembership: {
|
|
1767
|
+
id: string;
|
|
1768
|
+
/** @enum {string} */
|
|
1769
|
+
object: "employer_membership";
|
|
1770
|
+
companyId: string;
|
|
1771
|
+
companyName: string;
|
|
1772
|
+
employerId: string;
|
|
1773
|
+
employerEmail: string;
|
|
1774
|
+
/** @description How the membership was approved (`domain_match` | `work_email_verification` | `admin` | `owner_creation`), or `null`. */
|
|
1775
|
+
approvalSource: string | null;
|
|
1776
|
+
status: string;
|
|
1777
|
+
/** @description ISO-8601 timestamp the membership was created. */
|
|
1778
|
+
joinedAt: string;
|
|
1779
|
+
};
|
|
1780
|
+
EmployerPendingClaim: {
|
|
1781
|
+
membershipId: string;
|
|
1782
|
+
companyId: string;
|
|
1783
|
+
companyName: string;
|
|
1784
|
+
companyWebsiteDomain: string | null;
|
|
1785
|
+
workEmail: string | null;
|
|
1786
|
+
workEmailVerifiedAt: string | null;
|
|
1787
|
+
};
|
|
1581
1788
|
EmployerPipeline: {
|
|
1582
1789
|
/** @enum {string} */
|
|
1583
1790
|
object: "employer_pipeline";
|
|
@@ -1688,12 +1895,169 @@ interface components {
|
|
|
1688
1895
|
/** @description If `true` (default), creates a new company when no match is found. Set to `false` to receive a `404 companies_not_found` response instead. */
|
|
1689
1896
|
createIfMissing?: boolean;
|
|
1690
1897
|
};
|
|
1898
|
+
ForagerBackfillProgress: {
|
|
1899
|
+
id: string;
|
|
1900
|
+
/** @enum {string} */
|
|
1901
|
+
object: "forager_backfill_progress";
|
|
1902
|
+
backfillId: string;
|
|
1903
|
+
status: string;
|
|
1904
|
+
progress: {
|
|
1905
|
+
jobsMatched: number;
|
|
1906
|
+
jobsToEnhance: number;
|
|
1907
|
+
jobsEnhanced: number;
|
|
1908
|
+
jobsFailed: number;
|
|
1909
|
+
};
|
|
1910
|
+
errorMessage: string | null;
|
|
1911
|
+
createdAt: string;
|
|
1912
|
+
};
|
|
1913
|
+
ForagerConfig: {
|
|
1914
|
+
/** @enum {string} */
|
|
1915
|
+
object: "forager_config";
|
|
1916
|
+
configured: boolean;
|
|
1917
|
+
isActive?: boolean;
|
|
1918
|
+
foragerUserId?: string | null;
|
|
1919
|
+
privateVerticalId?: string | null;
|
|
1920
|
+
foragerPlan?: string | null;
|
|
1921
|
+
autoExpireJobs?: boolean;
|
|
1922
|
+
lastSyncedAt?: string | null;
|
|
1923
|
+
hasApiKey?: boolean;
|
|
1924
|
+
hasWebhookSecret?: boolean;
|
|
1925
|
+
};
|
|
1926
|
+
ForagerExclusion: {
|
|
1927
|
+
id: string;
|
|
1928
|
+
/** @enum {string} */
|
|
1929
|
+
object: "forager_exclusion";
|
|
1930
|
+
pattern: string;
|
|
1931
|
+
type: string;
|
|
1932
|
+
createdAt: string;
|
|
1933
|
+
};
|
|
1934
|
+
ForagerSyncRun: {
|
|
1935
|
+
id: string;
|
|
1936
|
+
/** @enum {string} */
|
|
1937
|
+
object: "forager_sync_run";
|
|
1938
|
+
startedAt: string | null;
|
|
1939
|
+
completedAt: string;
|
|
1940
|
+
/** @enum {string} */
|
|
1941
|
+
status: "completed";
|
|
1942
|
+
jobsCreated: number;
|
|
1943
|
+
jobsRepublished: number;
|
|
1944
|
+
companiesCreated: number;
|
|
1945
|
+
totalActive: number;
|
|
1946
|
+
};
|
|
1691
1947
|
HandleAvailability: {
|
|
1692
1948
|
/** @enum {string} */
|
|
1693
1949
|
object: "handle_availability";
|
|
1694
1950
|
handle: string;
|
|
1695
1951
|
available: boolean;
|
|
1696
1952
|
};
|
|
1953
|
+
Import: {
|
|
1954
|
+
id: string;
|
|
1955
|
+
/** @enum {string} */
|
|
1956
|
+
object: "import";
|
|
1957
|
+
filename: string;
|
|
1958
|
+
sourceFormat: string;
|
|
1959
|
+
status: string;
|
|
1960
|
+
discoveryStatus: string | null;
|
|
1961
|
+
totalRows: number;
|
|
1962
|
+
processedRows: number;
|
|
1963
|
+
createdCount: number;
|
|
1964
|
+
updatedCount: number;
|
|
1965
|
+
skippedCount: number;
|
|
1966
|
+
errorCount: number;
|
|
1967
|
+
mappingId: string | null;
|
|
1968
|
+
startedAt: string | null;
|
|
1969
|
+
completedAt: string | null;
|
|
1970
|
+
createdAt: string;
|
|
1971
|
+
};
|
|
1972
|
+
ImportBatchError: {
|
|
1973
|
+
rowIndex: number;
|
|
1974
|
+
code: string;
|
|
1975
|
+
message: string;
|
|
1976
|
+
};
|
|
1977
|
+
ImportDetail: {
|
|
1978
|
+
id: string;
|
|
1979
|
+
/** @enum {string} */
|
|
1980
|
+
object: "import";
|
|
1981
|
+
filename: string;
|
|
1982
|
+
sourceFormat: string;
|
|
1983
|
+
status: string;
|
|
1984
|
+
discoveryStatus: string | null;
|
|
1985
|
+
totalRows: number;
|
|
1986
|
+
processedRows: number;
|
|
1987
|
+
createdCount: number;
|
|
1988
|
+
updatedCount: number;
|
|
1989
|
+
skippedCount: number;
|
|
1990
|
+
errorCount: number;
|
|
1991
|
+
mappingId: string | null;
|
|
1992
|
+
startedAt: string | null;
|
|
1993
|
+
completedAt: string | null;
|
|
1994
|
+
createdAt: string;
|
|
1995
|
+
errors: components["schemas"]["ImportBatchError"][];
|
|
1996
|
+
proposedMapping?: unknown;
|
|
1997
|
+
};
|
|
1998
|
+
ImportFieldMapping: {
|
|
1999
|
+
sourceColumn: string;
|
|
2000
|
+
targetField: string;
|
|
2001
|
+
confidence: number;
|
|
2002
|
+
notes?: string;
|
|
2003
|
+
};
|
|
2004
|
+
ImportMapping: {
|
|
2005
|
+
id: string;
|
|
2006
|
+
/** @enum {string} */
|
|
2007
|
+
object: "import_mapping";
|
|
2008
|
+
schemaFingerprint: string;
|
|
2009
|
+
/** @enum {string} */
|
|
2010
|
+
sourceFormat: "csv" | "xml";
|
|
2011
|
+
fieldMappings: components["schemas"]["ImportFieldMapping"][];
|
|
2012
|
+
valueTransforms: components["schemas"]["ImportValueTransform"][];
|
|
2013
|
+
defaults: components["schemas"]["ImportMappingDefaults"];
|
|
2014
|
+
importCount: number;
|
|
2015
|
+
lastUsedAt: string;
|
|
2016
|
+
createdByUserId: string | null;
|
|
2017
|
+
createdAt: string;
|
|
2018
|
+
};
|
|
2019
|
+
ImportMappingDefaults: {
|
|
2020
|
+
employmentType?: string;
|
|
2021
|
+
remoteOption?: string;
|
|
2022
|
+
currency?: string;
|
|
2023
|
+
descriptionFormat?: string;
|
|
2024
|
+
};
|
|
2025
|
+
ImportQuota: {
|
|
2026
|
+
/** @enum {string} */
|
|
2027
|
+
object: "import_quota";
|
|
2028
|
+
used: number;
|
|
2029
|
+
remaining: number;
|
|
2030
|
+
limit: number;
|
|
2031
|
+
resetAt: string;
|
|
2032
|
+
};
|
|
2033
|
+
ImportValueTransform: {
|
|
2034
|
+
sourceColumn: string;
|
|
2035
|
+
targetField: string;
|
|
2036
|
+
map: {
|
|
2037
|
+
[key: string]: string;
|
|
2038
|
+
};
|
|
2039
|
+
fallback?: string;
|
|
2040
|
+
};
|
|
2041
|
+
IndexingConfig: {
|
|
2042
|
+
/** @enum {string} */
|
|
2043
|
+
id: "indexing_config";
|
|
2044
|
+
/** @enum {string} */
|
|
2045
|
+
object: "indexing_config";
|
|
2046
|
+
/** @description Whether Google Indexing submission is active. */
|
|
2047
|
+
enabled: boolean;
|
|
2048
|
+
/** @description Whether IndexNow (Bing/Yandex) instant indexing is enabled. */
|
|
2049
|
+
indexNowEnabled: boolean;
|
|
2050
|
+
/** @description GCP provisioning state (`pending` | `provisioning` | `ready` | `error`), or null. */
|
|
2051
|
+
provisioningStatus: string | null;
|
|
2052
|
+
/** @description ISO-8601 timestamp of the last submission, or null. */
|
|
2053
|
+
lastRunAt: string | null;
|
|
2054
|
+
/** @description The last recorded error message, or null. */
|
|
2055
|
+
lastError: string | null;
|
|
2056
|
+
};
|
|
2057
|
+
IndexingToggleBody: {
|
|
2058
|
+
/** @description Whether to enable the toggle. */
|
|
2059
|
+
enabled: boolean;
|
|
2060
|
+
};
|
|
1697
2061
|
/** @description An inline company payload, resolved via `find-or-create` before the job is created. Provide either `company` or `companyId`, not both. */
|
|
1698
2062
|
InlineCompanyInput: {
|
|
1699
2063
|
/** @description The company's display name. */
|
|
@@ -1707,6 +2071,33 @@ interface components {
|
|
|
1707
2071
|
/** @description If `true` (default), creates a new company when no match is found. Set to `false` to receive a `404 companies_not_found` response instead. */
|
|
1708
2072
|
createIfMissing?: boolean;
|
|
1709
2073
|
};
|
|
2074
|
+
Invitation: {
|
|
2075
|
+
/** @description Unique identifier for the invitation. */
|
|
2076
|
+
id: string;
|
|
2077
|
+
/**
|
|
2078
|
+
* @description String representing the object's type.
|
|
2079
|
+
* @enum {string}
|
|
2080
|
+
*/
|
|
2081
|
+
object: "invitation";
|
|
2082
|
+
/** @description The invited email address. */
|
|
2083
|
+
email: string;
|
|
2084
|
+
/** @description The role the invitee will receive on accept. */
|
|
2085
|
+
role: string;
|
|
2086
|
+
/** @description The invitation status: pending, expired, accepted, declined. */
|
|
2087
|
+
status: string;
|
|
2088
|
+
/** @description ISO-8601 timestamp of when the invitation expires. */
|
|
2089
|
+
expiresAt: string;
|
|
2090
|
+
/** @description Identifier of the user who created the invitation. */
|
|
2091
|
+
invitedByUserId: string | null;
|
|
2092
|
+
/** @description ISO-8601 timestamp of when the invitation was created. */
|
|
2093
|
+
createdAt: string;
|
|
2094
|
+
};
|
|
2095
|
+
InvitationWithToken: components["schemas"]["Invitation"] & {
|
|
2096
|
+
/** @description The opaque accept token. */
|
|
2097
|
+
token: string;
|
|
2098
|
+
/** @description The full URL a recipient uses to accept the invitation. */
|
|
2099
|
+
acceptUrl: string;
|
|
2100
|
+
};
|
|
1710
2101
|
Job: components["schemas"]["JobSummary"] & {
|
|
1711
2102
|
/** @description Public + admin URLs for this job. `public` may be `null` if the job lacks a slug or company-slug. */
|
|
1712
2103
|
links?: components["schemas"]["ResourceLinks"] & {
|
|
@@ -1834,11 +2225,6 @@ interface components {
|
|
|
1834
2225
|
/** @description Free-form location string (e.g. `"Berlin, Germany"`, `"Mountain View, California, USA"`). Mapbox parses + ranks candidates server-side; rejects on low confidence. */
|
|
1835
2226
|
query: string;
|
|
1836
2227
|
};
|
|
1837
|
-
JobPostingBillingCheck: {
|
|
1838
|
-
/** @enum {string} */
|
|
1839
|
-
object: "job_posting_billing_check";
|
|
1840
|
-
hasActiveBilling: boolean;
|
|
1841
|
-
};
|
|
1842
2228
|
JobPostingBillingOptions: {
|
|
1843
2229
|
/** @enum {string} */
|
|
1844
2230
|
object: "job_posting_billing_options";
|
|
@@ -1869,10 +2255,6 @@ interface components {
|
|
|
1869
2255
|
object: "job_posting_billing_verification";
|
|
1870
2256
|
success: boolean;
|
|
1871
2257
|
};
|
|
1872
|
-
JobPostingCheckBillingBody: {
|
|
1873
|
-
/** Format: email */
|
|
1874
|
-
email: string;
|
|
1875
|
-
};
|
|
1876
2258
|
JobPostingLogo: {
|
|
1877
2259
|
/** @enum {string} */
|
|
1878
2260
|
object: "job_posting_logo";
|
|
@@ -1936,23 +2318,6 @@ interface components {
|
|
|
1936
2318
|
/** Format: email */
|
|
1937
2319
|
email: string;
|
|
1938
2320
|
};
|
|
1939
|
-
JobPostingSubscriptionEntitlements: {
|
|
1940
|
-
/** @enum {string} */
|
|
1941
|
-
object: "job_posting_subscription_entitlements";
|
|
1942
|
-
hasSubscription: boolean;
|
|
1943
|
-
subscriptionId: string | null;
|
|
1944
|
-
canFeature: boolean | null;
|
|
1945
|
-
featuredSlotsRemaining: number | null;
|
|
1946
|
-
featuredSlotsTotal: number | null;
|
|
1947
|
-
maxActiveRemaining: number | null;
|
|
1948
|
-
maxActiveTotal: number | null;
|
|
1949
|
-
featureSelectionMode: string | null;
|
|
1950
|
-
};
|
|
1951
|
-
JobPostingSubscriptionEntitlementsBody: {
|
|
1952
|
-
/** Format: email */
|
|
1953
|
-
email: string;
|
|
1954
|
-
planId: string;
|
|
1955
|
-
};
|
|
1956
2321
|
JobSummary: {
|
|
1957
2322
|
/** @description Unique identifier for the object. Use this value as the `{id}` path parameter for the job endpoints (e.g. `GET /v1/jobs/{id}`). */
|
|
1958
2323
|
id: string;
|
|
@@ -2189,6 +2554,41 @@ interface components {
|
|
|
2189
2554
|
*/
|
|
2190
2555
|
purpose: "board_logo" | "board_hero" | "account_avatar" | "company_logo" | "blog_image";
|
|
2191
2556
|
};
|
|
2557
|
+
Member: {
|
|
2558
|
+
/** @description Unique identifier for the membership. */
|
|
2559
|
+
id: string;
|
|
2560
|
+
/**
|
|
2561
|
+
* @description String representing the object's type.
|
|
2562
|
+
* @enum {string}
|
|
2563
|
+
*/
|
|
2564
|
+
object: "member";
|
|
2565
|
+
/** @description Identifier of the user behind the member. */
|
|
2566
|
+
userId: string;
|
|
2567
|
+
/** @description The member's email address. */
|
|
2568
|
+
email: string;
|
|
2569
|
+
/** @description The member's display name. */
|
|
2570
|
+
name: string;
|
|
2571
|
+
/** @description URL of the member's avatar, or `null` if none is set. */
|
|
2572
|
+
avatarUrl: string | null;
|
|
2573
|
+
/** @description The member's role in the account. */
|
|
2574
|
+
role: string;
|
|
2575
|
+
/** @description Whether the member is currently suspended. */
|
|
2576
|
+
suspended: boolean;
|
|
2577
|
+
/** @description ISO-8601 timestamp of when the member joined the account. */
|
|
2578
|
+
joinedAt: string;
|
|
2579
|
+
/** @description Whether the member is the account primary owner. */
|
|
2580
|
+
isPrimaryOwner: boolean;
|
|
2581
|
+
};
|
|
2582
|
+
MemberPermissions: {
|
|
2583
|
+
/** @enum {string} */
|
|
2584
|
+
id: "members_me";
|
|
2585
|
+
/** @enum {string} */
|
|
2586
|
+
object: "member_permissions";
|
|
2587
|
+
/** @description The acting member's role, or `null` if they are not a member. */
|
|
2588
|
+
role: string | null;
|
|
2589
|
+
/** @description The permission strings the acting member effectively holds. */
|
|
2590
|
+
permissions: string[];
|
|
2591
|
+
};
|
|
2192
2592
|
Message: {
|
|
2193
2593
|
id: string;
|
|
2194
2594
|
/** @enum {string} */
|
|
@@ -2230,6 +2630,13 @@ interface components {
|
|
|
2230
2630
|
subscribed: boolean;
|
|
2231
2631
|
updatedAt: number | null;
|
|
2232
2632
|
};
|
|
2633
|
+
NotificationPreferences: {
|
|
2634
|
+
/** @enum {string} */
|
|
2635
|
+
object: "notification_preferences";
|
|
2636
|
+
backfillDigest: boolean;
|
|
2637
|
+
companyAccessRequest: boolean;
|
|
2638
|
+
companyRegistered: boolean;
|
|
2639
|
+
};
|
|
2233
2640
|
OffsetPagination: {
|
|
2234
2641
|
/** @description Total number of results matching the query. */
|
|
2235
2642
|
count?: number;
|
|
@@ -2298,6 +2705,19 @@ interface components {
|
|
|
2298
2705
|
/** @description Identifier of the parent operation when this operation is a child of a fan-out, or `null` otherwise. */
|
|
2299
2706
|
parentOperationId: string | null;
|
|
2300
2707
|
};
|
|
2708
|
+
PatchForagerConfigBody: {
|
|
2709
|
+
isActive?: boolean;
|
|
2710
|
+
autoExpireJobs?: boolean;
|
|
2711
|
+
};
|
|
2712
|
+
PatchNotificationPreferencesBody: {
|
|
2713
|
+
backfillDigest?: boolean;
|
|
2714
|
+
companyAccessRequest?: boolean;
|
|
2715
|
+
companyRegistered?: boolean;
|
|
2716
|
+
};
|
|
2717
|
+
PatchReportingIntegrationBody: {
|
|
2718
|
+
/** @description Whether collection is enabled for this integration. */
|
|
2719
|
+
enabled: boolean;
|
|
2720
|
+
};
|
|
2301
2721
|
PatchSettingsBody: {
|
|
2302
2722
|
/** @description Display name of the board. */
|
|
2303
2723
|
name?: string;
|
|
@@ -2374,6 +2794,17 @@ interface components {
|
|
|
2374
2794
|
intervalCount: number | null;
|
|
2375
2795
|
isDefault: boolean;
|
|
2376
2796
|
};
|
|
2797
|
+
Permission: {
|
|
2798
|
+
/** @description Unique identifier for the permission. */
|
|
2799
|
+
id: string;
|
|
2800
|
+
/**
|
|
2801
|
+
* @description String representing the object's type.
|
|
2802
|
+
* @enum {string}
|
|
2803
|
+
*/
|
|
2804
|
+
object: "permission";
|
|
2805
|
+
/** @description The permission string, e.g. `members.manage`. */
|
|
2806
|
+
permission: string;
|
|
2807
|
+
};
|
|
2377
2808
|
Plan: {
|
|
2378
2809
|
/** @enum {string} */
|
|
2379
2810
|
object: "plan";
|
|
@@ -2582,6 +3013,22 @@ interface components {
|
|
|
2582
3013
|
*/
|
|
2583
3014
|
public: string | null;
|
|
2584
3015
|
};
|
|
3016
|
+
PublicInvitation: {
|
|
3017
|
+
/** @enum {string} */
|
|
3018
|
+
object: "invitation";
|
|
3019
|
+
/** @description The invited email address. */
|
|
3020
|
+
email: string;
|
|
3021
|
+
/** @description The role the invitee will receive on accept. */
|
|
3022
|
+
role: string;
|
|
3023
|
+
/** @description The invitation status. */
|
|
3024
|
+
status: string;
|
|
3025
|
+
/** @description ISO-8601 timestamp of when the invitation expires. */
|
|
3026
|
+
expiresAt: string;
|
|
3027
|
+
/** @description The inviting account (name only). */
|
|
3028
|
+
account: {
|
|
3029
|
+
name: string;
|
|
3030
|
+
} | null;
|
|
3031
|
+
};
|
|
2585
3032
|
PublicJob: {
|
|
2586
3033
|
/** @description Unique identifier for the object. Use this value as the `{id}` path parameter for the job endpoints (e.g. `GET /v1/jobs/{id}`). */
|
|
2587
3034
|
id: string;
|
|
@@ -2743,21 +3190,20 @@ interface components {
|
|
|
2743
3190
|
PublicJobAlertResend: {
|
|
2744
3191
|
/** @enum {string} */
|
|
2745
3192
|
object: "job_alert_confirmation_resend";
|
|
2746
|
-
/**
|
|
2747
|
-
|
|
3193
|
+
/**
|
|
3194
|
+
* @description Always `submitted`. The response is intentionally uniform to prevent email enumeration. If a pending confirmation exists for this email, a confirmation email has been sent (subject to server-side throttle).
|
|
3195
|
+
* @enum {string}
|
|
3196
|
+
*/
|
|
3197
|
+
status: "submitted";
|
|
2748
3198
|
};
|
|
2749
3199
|
PublicJobAlertSubscription: {
|
|
2750
3200
|
/** @enum {string} */
|
|
2751
3201
|
object: "job_alert_subscription";
|
|
2752
3202
|
/**
|
|
2753
|
-
* @description `
|
|
3203
|
+
* @description Always `submitted`. The response is intentionally uniform to prevent email enumeration. If this email isn't already subscribed, a confirmation email has been sent.
|
|
2754
3204
|
* @enum {string}
|
|
2755
3205
|
*/
|
|
2756
|
-
status: "
|
|
2757
|
-
/** @description True when a double-opt-in confirmation email was sent. */
|
|
2758
|
-
requiresConfirmation: boolean;
|
|
2759
|
-
/** @description True if the subscriber was already email-confirmed. */
|
|
2760
|
-
confirmed: boolean;
|
|
3206
|
+
status: "submitted";
|
|
2761
3207
|
};
|
|
2762
3208
|
PublicJobCard: {
|
|
2763
3209
|
id: string;
|
|
@@ -2894,6 +3340,20 @@ interface components {
|
|
|
2894
3340
|
redirectTo: string | null;
|
|
2895
3341
|
geo: components["schemas"]["TaxonomyGeo"];
|
|
2896
3342
|
};
|
|
3343
|
+
PublicTaxonomyTerm: {
|
|
3344
|
+
/** @enum {string} */
|
|
3345
|
+
object: "taxonomy_term";
|
|
3346
|
+
/** @description Stable taxonomy entity ID. */
|
|
3347
|
+
id: string;
|
|
3348
|
+
/** @enum {string} */
|
|
3349
|
+
type: "category" | "skill";
|
|
3350
|
+
/** @description Current source-locale slug used by job search; old slugs may remain aliases. */
|
|
3351
|
+
sourceSlug: string;
|
|
3352
|
+
/** @description Board-language canonical URL slug. */
|
|
3353
|
+
canonicalSlug: string;
|
|
3354
|
+
/** @description Board-language name with source-name fallback. */
|
|
3355
|
+
displayName: string;
|
|
3356
|
+
};
|
|
2897
3357
|
PublicVerifyBoardPasswordBody: {
|
|
2898
3358
|
/** @description The board password. */
|
|
2899
3359
|
password: string;
|
|
@@ -2918,6 +3378,10 @@ interface components {
|
|
|
2918
3378
|
/** @description The redirect target (board-relative), or `null` when no redirect matches. The consumer 308s to `target`, or 404s when `null`. */
|
|
2919
3379
|
target: string | null;
|
|
2920
3380
|
};
|
|
3381
|
+
RejectClaimBody: {
|
|
3382
|
+
/** @description Optional free-form reason recorded in the audit log. */
|
|
3383
|
+
reason?: string;
|
|
3384
|
+
};
|
|
2921
3385
|
RemotePermitTaxonomyEntry: {
|
|
2922
3386
|
/** @description Discriminator. One of: `worldwide`, `world_region`, `continent`, `region`, `subregion`, `custom`, `country`, `subdivision`. */
|
|
2923
3387
|
type: string;
|
|
@@ -2948,6 +3412,94 @@ interface components {
|
|
|
2948
3412
|
reason: "spam" | "harassment" | "misrepresentation" | "other";
|
|
2949
3413
|
freeText?: string;
|
|
2950
3414
|
};
|
|
3415
|
+
ReportSnapshot: {
|
|
3416
|
+
/** @description Unique identifier for the snapshot. */
|
|
3417
|
+
id: string;
|
|
3418
|
+
/**
|
|
3419
|
+
* @description String representing the object's type.
|
|
3420
|
+
* @enum {string}
|
|
3421
|
+
*/
|
|
3422
|
+
object: "report_snapshot";
|
|
3423
|
+
/** @description The provider that produced the snapshot. */
|
|
3424
|
+
provider: string;
|
|
3425
|
+
/** @description The metric name. */
|
|
3426
|
+
metric: string;
|
|
3427
|
+
/** @description The segment (e.g. `global`, `country`). */
|
|
3428
|
+
segment: string;
|
|
3429
|
+
/** @description The aggregation interval (e.g. `1d`). */
|
|
3430
|
+
interval: string;
|
|
3431
|
+
/** @description ISO date string — inclusive start of the snapshot range. */
|
|
3432
|
+
rangeStart: string;
|
|
3433
|
+
/** @description ISO date string — inclusive end of the snapshot range. */
|
|
3434
|
+
rangeEnd: string;
|
|
3435
|
+
/** @description Provider-specific metric payload as collected. */
|
|
3436
|
+
payload?: unknown;
|
|
3437
|
+
};
|
|
3438
|
+
ReportingConnect: {
|
|
3439
|
+
/** @description Provider-synthetic identifier for the connect. */
|
|
3440
|
+
id: string;
|
|
3441
|
+
/**
|
|
3442
|
+
* @description String representing the object's type.
|
|
3443
|
+
* @enum {string}
|
|
3444
|
+
*/
|
|
3445
|
+
object: "reporting_integration_connect";
|
|
3446
|
+
/** @description The reporting provider key. */
|
|
3447
|
+
provider: string;
|
|
3448
|
+
/** @description Whether the integration is already fully connected. */
|
|
3449
|
+
connected: boolean;
|
|
3450
|
+
/** @description OAuth providers only — the URL the user must visit to grant access. */
|
|
3451
|
+
authorizationUrl?: string;
|
|
3452
|
+
/** @description Search Console only — the site-verification DNS token. */
|
|
3453
|
+
verificationToken?: string;
|
|
3454
|
+
/** @description The board site URL the integration reports on. */
|
|
3455
|
+
siteUrl?: string;
|
|
3456
|
+
/** @description Stripe only — the Monetization settings deep link. */
|
|
3457
|
+
redirectUrl?: string;
|
|
3458
|
+
/** @description Stripe only — why no OAuth URL is returned. */
|
|
3459
|
+
reason?: string;
|
|
3460
|
+
};
|
|
3461
|
+
ReportingIntegration: {
|
|
3462
|
+
/** @description Unique identifier for the integration. */
|
|
3463
|
+
id: string;
|
|
3464
|
+
/**
|
|
3465
|
+
* @description String representing the object's type.
|
|
3466
|
+
* @enum {string}
|
|
3467
|
+
*/
|
|
3468
|
+
object: "reporting_integration";
|
|
3469
|
+
/**
|
|
3470
|
+
* @description The reporting provider key.
|
|
3471
|
+
* @enum {string}
|
|
3472
|
+
*/
|
|
3473
|
+
provider: "search_console" | "adsense" | "tinybird" | "stripe" | "google_analytics";
|
|
3474
|
+
/** @description Whether collection is enabled for this integration. */
|
|
3475
|
+
enabled: boolean;
|
|
3476
|
+
/** @description ISO-8601 timestamp of when the integration was connected. */
|
|
3477
|
+
connectedAt: string | null;
|
|
3478
|
+
/** @description Provider-side identifier (e.g. the verified site URL). */
|
|
3479
|
+
externalId: string | null;
|
|
3480
|
+
/** @description OAuth scopes granted to the integration. */
|
|
3481
|
+
scopes: string[];
|
|
3482
|
+
settings: components["schemas"]["ReportingIntegrationSettings"];
|
|
3483
|
+
/** @description ISO-8601 timestamp of the last successful collection. */
|
|
3484
|
+
lastCollectedAt: string | null;
|
|
3485
|
+
};
|
|
3486
|
+
/** @description Provider-specific settings. The OAuth `refreshToken` and `oauthState` are always redacted. */
|
|
3487
|
+
ReportingIntegrationSettings: {
|
|
3488
|
+
type?: string;
|
|
3489
|
+
siteUrl?: string;
|
|
3490
|
+
domain?: string | null;
|
|
3491
|
+
siteHostname?: string;
|
|
3492
|
+
verificationToken?: string;
|
|
3493
|
+
status?: string;
|
|
3494
|
+
slug?: string;
|
|
3495
|
+
inspectionUrl?: string;
|
|
3496
|
+
lastSyncedAt?: string;
|
|
3497
|
+
permissionLevel?: string;
|
|
3498
|
+
platformSiteUrl?: string;
|
|
3499
|
+
propertyUrl?: string;
|
|
3500
|
+
adsenseAccountId?: string;
|
|
3501
|
+
sitemapSubmitted?: boolean;
|
|
3502
|
+
} | null;
|
|
2951
3503
|
ResourceLinks: {
|
|
2952
3504
|
/**
|
|
2953
3505
|
* Format: uri
|
|
@@ -2993,6 +3545,19 @@ interface components {
|
|
|
2993
3545
|
/** @description OAuth client secret. May be supplied here or via HTTP Basic authentication. */
|
|
2994
3546
|
client_secret?: string;
|
|
2995
3547
|
};
|
|
3548
|
+
Role: {
|
|
3549
|
+
/** @description Unique identifier for the role. */
|
|
3550
|
+
id: string;
|
|
3551
|
+
/**
|
|
3552
|
+
* @description String representing the object's type.
|
|
3553
|
+
* @enum {string}
|
|
3554
|
+
*/
|
|
3555
|
+
object: "role";
|
|
3556
|
+
/** @description The role name: owner, admin, or member. */
|
|
3557
|
+
role: string;
|
|
3558
|
+
/** @description The permission strings granted to the role by default. */
|
|
3559
|
+
permissions: string[];
|
|
3560
|
+
};
|
|
2996
3561
|
SalaryCompanyIndexItem: {
|
|
2997
3562
|
/** @enum {string} */
|
|
2998
3563
|
object: "salary_company";
|
|
@@ -3053,6 +3618,14 @@ interface components {
|
|
|
3053
3618
|
featuredBullets: string[];
|
|
3054
3619
|
displayOrder: number;
|
|
3055
3620
|
};
|
|
3621
|
+
SampleJobsBody: {
|
|
3622
|
+
/** @description The board name. */
|
|
3623
|
+
boardName: string;
|
|
3624
|
+
/** @description Optional board description to tailor the sample jobs. */
|
|
3625
|
+
boardDescription?: string;
|
|
3626
|
+
/** @description How many sample jobs to generate (default 10, max 25). */
|
|
3627
|
+
count?: number;
|
|
3628
|
+
};
|
|
3056
3629
|
SaveJobBody: {
|
|
3057
3630
|
jobId: string;
|
|
3058
3631
|
};
|
|
@@ -3084,6 +3657,10 @@ interface components {
|
|
|
3084
3657
|
* @example 20
|
|
3085
3658
|
*/
|
|
3086
3659
|
limit?: number;
|
|
3660
|
+
filters?: {
|
|
3661
|
+
/** @description Return companies assigned to any of these canonical market slugs. Up to 10 values. */
|
|
3662
|
+
markets?: string[];
|
|
3663
|
+
};
|
|
3087
3664
|
};
|
|
3088
3665
|
SearchJobsBody: {
|
|
3089
3666
|
/** @description Free-text search query matched against job title and description. Up to 200 characters. */
|
|
@@ -3341,6 +3918,57 @@ interface components {
|
|
|
3341
3918
|
candidateBoardUserId: string;
|
|
3342
3919
|
body: string;
|
|
3343
3920
|
};
|
|
3921
|
+
Subscriber: {
|
|
3922
|
+
/** @description Unique identifier for the subscriber. */
|
|
3923
|
+
id: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* @description String representing the object's type.
|
|
3926
|
+
* @enum {string}
|
|
3927
|
+
*/
|
|
3928
|
+
object: "subscriber";
|
|
3929
|
+
/** @description The subscriber's email address. */
|
|
3930
|
+
email: string;
|
|
3931
|
+
/** @description ISO-8601 timestamp of double-opt-in confirmation, or `null`. */
|
|
3932
|
+
confirmedAt: string | null;
|
|
3933
|
+
/** @description ISO-8601 timestamp of when the subscriber was waitlisted. */
|
|
3934
|
+
waitlistedAt: string | null;
|
|
3935
|
+
/** @description ISO-8601 timestamp of when the subscriber unsubscribed. */
|
|
3936
|
+
unsubscribedAt: string | null;
|
|
3937
|
+
/** @description ISO-8601 timestamp of when the subscriber was created. */
|
|
3938
|
+
createdAt: string;
|
|
3939
|
+
};
|
|
3940
|
+
SubscriberCount: {
|
|
3941
|
+
/** @enum {string} */
|
|
3942
|
+
object: "subscriber_count";
|
|
3943
|
+
/** @description The number of confirmed subscribers for the account. */
|
|
3944
|
+
confirmed: number;
|
|
3945
|
+
};
|
|
3946
|
+
SubscriberDetail: components["schemas"]["Subscriber"] & {
|
|
3947
|
+
/** @description ISO-8601 timestamp of the most recent alert dispatch, or `null`. */
|
|
3948
|
+
lastSentAt: string | null;
|
|
3949
|
+
/** @description The subscriber's alerts. */
|
|
3950
|
+
alerts: (components["schemas"]["Alert"] & {
|
|
3951
|
+
/** @description Unique identifier for the alert. */
|
|
3952
|
+
id: string;
|
|
3953
|
+
/**
|
|
3954
|
+
* @description String representing the object's type.
|
|
3955
|
+
* @enum {string}
|
|
3956
|
+
*/
|
|
3957
|
+
object: "alert";
|
|
3958
|
+
/** @description Identifier of the subscriber that owns this alert. */
|
|
3959
|
+
subscriberId: string;
|
|
3960
|
+
/** @description The job-filter criteria the alert matches against. */
|
|
3961
|
+
filters?: unknown;
|
|
3962
|
+
/** @description Delivery cadence: `instant`, `daily`, or `weekly`. */
|
|
3963
|
+
frequency: string;
|
|
3964
|
+
/** @description Whether the alert is currently active. */
|
|
3965
|
+
isActive: boolean;
|
|
3966
|
+
/** @description ISO-8601 timestamp of the last dispatch, or `null`. */
|
|
3967
|
+
lastSentAt: string | null;
|
|
3968
|
+
/** @description ISO-8601 timestamp of when the alert was created. */
|
|
3969
|
+
createdAt: string;
|
|
3970
|
+
})[];
|
|
3971
|
+
};
|
|
3344
3972
|
TalentDirectoryEntry: {
|
|
3345
3973
|
/** @enum {string} */
|
|
3346
3974
|
object: "talent_directory_entry";
|
|
@@ -3604,6 +4232,10 @@ interface components {
|
|
|
3604
4232
|
/** @description Space-separated list of scopes granted on the issued token. */
|
|
3605
4233
|
scope: string;
|
|
3606
4234
|
};
|
|
4235
|
+
TransferOwnershipBody: {
|
|
4236
|
+
/** @description The user ID of the member who will become the primary owner. */
|
|
4237
|
+
newOwnerUserId: string;
|
|
4238
|
+
};
|
|
3607
4239
|
UnreadCount: {
|
|
3608
4240
|
/** @enum {string} */
|
|
3609
4241
|
object: "unread_count";
|
|
@@ -3615,6 +4247,10 @@ interface components {
|
|
|
3615
4247
|
channel: "messageEmails" | "applicationEmails";
|
|
3616
4248
|
token: string;
|
|
3617
4249
|
};
|
|
4250
|
+
UnsubscribeSubscriberBody: {
|
|
4251
|
+
/** @description Optional free-form reason recorded in the audit log. */
|
|
4252
|
+
reason?: string;
|
|
4253
|
+
};
|
|
3618
4254
|
UpdateApplicationFactsBody: {
|
|
3619
4255
|
candidateName?: string;
|
|
3620
4256
|
/** Format: email */
|
|
@@ -3710,6 +4346,8 @@ interface components {
|
|
|
3710
4346
|
linkedinUrl?: string;
|
|
3711
4347
|
/** @description Facebook company page URL. */
|
|
3712
4348
|
facebookUrl?: string;
|
|
4349
|
+
/** @description Canonical market slugs assigned to the company. Pass an empty array to clear all markets. */
|
|
4350
|
+
markets?: string[];
|
|
3713
4351
|
/** @description The company's display name. */
|
|
3714
4352
|
name?: string;
|
|
3715
4353
|
/** @description URL-friendly slug for the company. */
|
|
@@ -3749,6 +4387,13 @@ interface components {
|
|
|
3749
4387
|
description?: string;
|
|
3750
4388
|
sortOrder?: number;
|
|
3751
4389
|
};
|
|
4390
|
+
UpdateInvitationBody: {
|
|
4391
|
+
/**
|
|
4392
|
+
* @description The new role for the pending invitation.
|
|
4393
|
+
* @enum {string}
|
|
4394
|
+
*/
|
|
4395
|
+
role: "admin" | "member";
|
|
4396
|
+
};
|
|
3752
4397
|
UpdateJobBody: {
|
|
3753
4398
|
/** @description Identifier of the company the job belongs to. */
|
|
3754
4399
|
companyId?: string;
|
|
@@ -3847,6 +4492,13 @@ interface components {
|
|
|
3847
4492
|
slug?: string;
|
|
3848
4493
|
sourceLocale?: string;
|
|
3849
4494
|
};
|
|
4495
|
+
UpdateMemberBody: {
|
|
4496
|
+
/**
|
|
4497
|
+
* @description The new role. Only an owner may set `owner`; the primary owner’s role is immutable (use transfer-ownership).
|
|
4498
|
+
* @enum {string}
|
|
4499
|
+
*/
|
|
4500
|
+
role: "owner" | "admin" | "member";
|
|
4501
|
+
};
|
|
3850
4502
|
UpdateNotificationPreferenceBody: {
|
|
3851
4503
|
/** @enum {string} */
|
|
3852
4504
|
channel: "messageEmails" | "applicationEmails";
|