@next-degree/pickle-shared-js 0.6.45 → 0.6.46
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/{company_service_latest-DQ5joNqO.d.cts → company_service_latest-B7KhyYDc.d.cts} +149 -23
- package/dist/{company_service_latest-DQ5joNqO.d.ts → company_service_latest-B7KhyYDc.d.ts} +149 -23
- package/dist/components/jobPost/JobPost.cjs +6 -4
- package/dist/components/jobPost/JobPost.cjs.map +1 -1
- package/dist/components/jobPost/JobPost.d.cts +1 -1
- package/dist/components/jobPost/JobPost.d.ts +1 -1
- package/dist/components/jobPost/JobPost.js +6 -4
- package/dist/components/jobPost/JobPost.js.map +1 -1
- package/dist/components/primitives/command.d.cts +3 -3
- package/dist/components/primitives/command.d.ts +3 -3
- package/dist/{displayText-Dl2hcn02.d.ts → displayText-D8JK59Z-.d.ts} +2 -2
- package/dist/{displayText-C5jAFYZY.d.cts → displayText-DT2bYICS.d.cts} +2 -2
- package/dist/hooks/useDisplayText.d.cts +3 -3
- package/dist/hooks/useDisplayText.d.ts +3 -3
- package/dist/index.cjs +8 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +8 -6
- package/dist/index.js.map +1 -1
- package/dist/{job_posting_service_latest-D3PatPBh.d.cts → job_posting_service_latest-RgzWsEdh.d.cts} +171 -33
- package/dist/{job_posting_service_latest-D3PatPBh.d.ts → job_posting_service_latest-RgzWsEdh.d.ts} +171 -33
- package/dist/lib/locations.d.cts +2 -2
- package/dist/lib/locations.d.ts +2 -2
- package/dist/lib/mappings.d.cts +3 -3
- package/dist/lib/mappings.d.ts +3 -3
- package/dist/lib/salaryRange.cjs +4 -2
- package/dist/lib/salaryRange.cjs.map +1 -1
- package/dist/lib/salaryRange.d.cts +1 -1
- package/dist/lib/salaryRange.d.ts +1 -1
- package/dist/lib/salaryRange.js +4 -2
- package/dist/lib/salaryRange.js.map +1 -1
- package/dist/services/displayText.d.cts +3 -3
- package/dist/services/displayText.d.ts +3 -3
- package/dist/{shared_pickle_output_latest-DUO_efBh.d.cts → shared_pickle_output_latest-D8viuRLi.d.cts} +20 -4
- package/dist/{shared_pickle_output_latest-DUO_efBh.d.ts → shared_pickle_output_latest-D8viuRLi.d.ts} +20 -4
- package/dist/types/data/company_service_latest.cjs +6 -4
- package/dist/types/data/company_service_latest.cjs.map +1 -1
- package/dist/types/data/company_service_latest.d.cts +1 -1
- package/dist/types/data/company_service_latest.d.ts +1 -1
- package/dist/types/data/company_service_latest.js +6 -4
- package/dist/types/data/company_service_latest.js.map +1 -1
- package/dist/types/data/job_posting_service_latest.cjs +6 -4
- package/dist/types/data/job_posting_service_latest.cjs.map +1 -1
- package/dist/types/data/job_posting_service_latest.d.cts +1 -1
- package/dist/types/data/job_posting_service_latest.d.ts +1 -1
- package/dist/types/data/job_posting_service_latest.js +6 -4
- package/dist/types/data/job_posting_service_latest.js.map +1 -1
- package/dist/types/data/shared_pickle_output_latest.cjs +4 -2
- package/dist/types/data/shared_pickle_output_latest.cjs.map +1 -1
- package/dist/types/data/shared_pickle_output_latest.d.cts +1 -1
- package/dist/types/data/shared_pickle_output_latest.d.ts +1 -1
- package/dist/types/data/shared_pickle_output_latest.js +4 -2
- package/dist/types/data/shared_pickle_output_latest.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -26,9 +26,9 @@ export { BackButton } from './components/buttons/BackButton.cjs';
|
|
|
26
26
|
export { WindowHistoryProvider } from './contexts/WindowHistoryProvider.cjs';
|
|
27
27
|
export { useDisplayText } from './hooks/useDisplayText.cjs';
|
|
28
28
|
export { useWindowHistory } from './hooks/useWindowHistory.cjs';
|
|
29
|
-
export { j as JobPostService } from './job_posting_service_latest-
|
|
30
|
-
export { c as CompanyService } from './company_service_latest-
|
|
31
|
-
export { s as SharedService } from './shared_pickle_output_latest-
|
|
29
|
+
export { j as JobPostService } from './job_posting_service_latest-RgzWsEdh.cjs';
|
|
30
|
+
export { c as CompanyService } from './company_service_latest-B7KhyYDc.cjs';
|
|
31
|
+
export { s as SharedService } from './shared_pickle_output_latest-D8viuRLi.cjs';
|
|
32
32
|
import 'react';
|
|
33
33
|
import 'cva/types';
|
|
34
34
|
import 'react/jsx-runtime';
|
|
@@ -39,5 +39,5 @@ import '@googlemaps/google-maps-services-js';
|
|
|
39
39
|
import 'next/link';
|
|
40
40
|
import 'clsx';
|
|
41
41
|
import './lib/icons.cjs';
|
|
42
|
-
import './displayText-
|
|
42
|
+
import './displayText-DT2bYICS.cjs';
|
|
43
43
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -26,9 +26,9 @@ export { BackButton } from './components/buttons/BackButton.js';
|
|
|
26
26
|
export { WindowHistoryProvider } from './contexts/WindowHistoryProvider.js';
|
|
27
27
|
export { useDisplayText } from './hooks/useDisplayText.js';
|
|
28
28
|
export { useWindowHistory } from './hooks/useWindowHistory.js';
|
|
29
|
-
export { j as JobPostService } from './job_posting_service_latest-
|
|
30
|
-
export { c as CompanyService } from './company_service_latest-
|
|
31
|
-
export { s as SharedService } from './shared_pickle_output_latest-
|
|
29
|
+
export { j as JobPostService } from './job_posting_service_latest-RgzWsEdh.js';
|
|
30
|
+
export { c as CompanyService } from './company_service_latest-B7KhyYDc.js';
|
|
31
|
+
export { s as SharedService } from './shared_pickle_output_latest-D8viuRLi.js';
|
|
32
32
|
import 'react';
|
|
33
33
|
import 'cva/types';
|
|
34
34
|
import 'react/jsx-runtime';
|
|
@@ -39,5 +39,5 @@ import '@googlemaps/google-maps-services-js';
|
|
|
39
39
|
import 'next/link';
|
|
40
40
|
import 'clsx';
|
|
41
41
|
import './lib/icons.js';
|
|
42
|
-
import './displayText-
|
|
42
|
+
import './displayText-D8JK59Z-.js';
|
|
43
43
|
import 'zod';
|
package/dist/index.js
CHANGED
|
@@ -1900,8 +1900,10 @@ var postalAddressSchema = z.object({
|
|
|
1900
1900
|
addressCountry: z.string().describe("The physical country as defined in ISO 3166 Alpha-2"),
|
|
1901
1901
|
addressRegion: z.optional(z.string()).describe("The region in which the locality is, and which is in the country."),
|
|
1902
1902
|
addressLocality: z.optional(z.string()).describe("The locality in which the street address is, and which is in the region. In the US this would be city."),
|
|
1903
|
-
streetAddress: z.optional(z.string()).describe("The street address within the locality."),
|
|
1904
|
-
|
|
1903
|
+
streetAddress: z.optional(z.string()).describe("The street name of the address within the locality."),
|
|
1904
|
+
streetNumber: z.optional(z.string()).describe("The house of building number within the street."),
|
|
1905
|
+
postalCode: z.optional(z.string()).describe("The postal code"),
|
|
1906
|
+
description: z.optional(z.string()).describe("A descriptive string containing the full address.")
|
|
1905
1907
|
});
|
|
1906
1908
|
var placeSchema = z.object({
|
|
1907
1909
|
version: z.literal("1.0.0").default("1.0.0"),
|
|
@@ -2531,7 +2533,7 @@ function JobPost({
|
|
|
2531
2533
|
CompanyTake,
|
|
2532
2534
|
{
|
|
2533
2535
|
avatarSrc,
|
|
2534
|
-
content: job.hiringOrganization?.
|
|
2536
|
+
content: job.hiringOrganization?.companyNdg?.companyNdgTake
|
|
2535
2537
|
}
|
|
2536
2538
|
),
|
|
2537
2539
|
/* @__PURE__ */ jsx31(
|
|
@@ -2540,7 +2542,7 @@ function JobPost({
|
|
|
2540
2542
|
name: job.hiringOrganization?.companyName ?? "",
|
|
2541
2543
|
how: job.hiringOrganization?.companyPhilosophy?.companyHow,
|
|
2542
2544
|
mission: job.hiringOrganization?.companyPhilosophy?.companyMission,
|
|
2543
|
-
wow: job.hiringOrganization?.
|
|
2545
|
+
wow: job.hiringOrganization?.companyNdg?.companyWow,
|
|
2544
2546
|
website: job.hiringOrganization?.companyWebsite
|
|
2545
2547
|
}
|
|
2546
2548
|
),
|
|
@@ -2666,7 +2668,7 @@ var companyNdgSchema = z2.object({
|
|
|
2666
2668
|
version: z2.literal("1.0.0").default("1.0.0"),
|
|
2667
2669
|
type: z2.string().describe("Document type used for schema"),
|
|
2668
2670
|
companyWow: z2.optional(z2.string()).describe("What is the wow of this company?"),
|
|
2669
|
-
|
|
2671
|
+
companyNdgTake: z2.optional(z2.string()).describe("What is the NDG POV on this company?"),
|
|
2670
2672
|
companyBestFit: z2.optional(z2.array(z2.string())),
|
|
2671
2673
|
companyInterests: z2.optional(z2.array(z2.string()))
|
|
2672
2674
|
});
|
|
@@ -2702,7 +2704,7 @@ var companySchema = z2.object({
|
|
|
2702
2704
|
brandColor: z2.optional(z2.string()).describe("The brand color of the company"),
|
|
2703
2705
|
companyCareers: z2.optional(companyCareersSchema).describe("Career Specific Information for the company."),
|
|
2704
2706
|
companyPhilosophy: z2.optional(companyPhilosophySchema).describe("Company mission,values and how the company achieves its mission."),
|
|
2705
|
-
|
|
2707
|
+
companyNdg: z2.optional(companyNdgSchema).describe("Next Degree specific information for the company."),
|
|
2706
2708
|
foundingInfo: z2.optional(foundingInformationSchema),
|
|
2707
2709
|
headquartersLocation: z2.optional(placeSchema),
|
|
2708
2710
|
employeeEstimate: z2.optional(z2.string()),
|