@next-degree/pickle-shared-js 0.6.47 → 0.6.48

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.
Files changed (59) hide show
  1. package/dist/{company_service_latest-uu3w8AR6.d.cts → company_service_latest-DelYl1hO.d.cts} +1994 -266
  2. package/dist/{company_service_latest-uu3w8AR6.d.ts → company_service_latest-DelYl1hO.d.ts} +1994 -266
  3. package/dist/components/jobPost/JobPost.cjs +34 -10
  4. package/dist/components/jobPost/JobPost.cjs.map +1 -1
  5. package/dist/components/jobPost/JobPost.d.cts +1 -1
  6. package/dist/components/jobPost/JobPost.d.ts +1 -1
  7. package/dist/components/jobPost/JobPost.js +34 -10
  8. package/dist/components/jobPost/JobPost.js.map +1 -1
  9. package/dist/components/ui/MapComponent.cjs +9 -2
  10. package/dist/components/ui/MapComponent.cjs.map +1 -1
  11. package/dist/components/ui/MapComponent.d.cts +1 -1
  12. package/dist/components/ui/MapComponent.d.ts +1 -1
  13. package/dist/components/ui/MapComponent.js +9 -2
  14. package/dist/components/ui/MapComponent.js.map +1 -1
  15. package/dist/{displayText-CcePAspL.d.ts → displayText-DDf9iWyg.d.ts} +2 -2
  16. package/dist/{displayText-D3BX6YTj.d.cts → displayText-mYUVo6Ek.d.cts} +2 -2
  17. package/dist/hooks/useDisplayText.d.cts +3 -3
  18. package/dist/hooks/useDisplayText.d.ts +3 -3
  19. package/dist/index.cjs +74 -40
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.d.cts +4 -4
  22. package/dist/index.d.ts +4 -4
  23. package/dist/index.js +74 -40
  24. package/dist/index.js.map +1 -1
  25. package/dist/{job_posting_service_latest-CWuc_SuJ.d.cts → job_posting_service_latest-Dn5s8beY.d.cts} +1708 -250
  26. package/dist/{job_posting_service_latest-CWuc_SuJ.d.ts → job_posting_service_latest-Dn5s8beY.d.ts} +1708 -250
  27. package/dist/lib/locations.d.cts +2 -2
  28. package/dist/lib/locations.d.ts +2 -2
  29. package/dist/lib/mappings.d.cts +3 -3
  30. package/dist/lib/mappings.d.ts +3 -3
  31. package/dist/lib/salaryRange.cjs +29 -6
  32. package/dist/lib/salaryRange.cjs.map +1 -1
  33. package/dist/lib/salaryRange.d.cts +1 -1
  34. package/dist/lib/salaryRange.d.ts +1 -1
  35. package/dist/lib/salaryRange.js +29 -6
  36. package/dist/lib/salaryRange.js.map +1 -1
  37. package/dist/services/displayText.d.cts +3 -3
  38. package/dist/services/displayText.d.ts +3 -3
  39. package/dist/{shared_pickle_output_latest-CxZJXPOS.d.cts → shared_pickle_output_latest-DbAgINuf.d.cts} +159 -3
  40. package/dist/{shared_pickle_output_latest-CxZJXPOS.d.ts → shared_pickle_output_latest-DbAgINuf.d.ts} +159 -3
  41. package/dist/types/data/company_service_latest.cjs +58 -35
  42. package/dist/types/data/company_service_latest.cjs.map +1 -1
  43. package/dist/types/data/company_service_latest.d.cts +1 -1
  44. package/dist/types/data/company_service_latest.d.ts +1 -1
  45. package/dist/types/data/company_service_latest.js +57 -33
  46. package/dist/types/data/company_service_latest.js.map +1 -1
  47. package/dist/types/data/job_posting_service_latest.cjs +57 -32
  48. package/dist/types/data/job_posting_service_latest.cjs.map +1 -1
  49. package/dist/types/data/job_posting_service_latest.d.cts +1 -1
  50. package/dist/types/data/job_posting_service_latest.d.ts +1 -1
  51. package/dist/types/data/job_posting_service_latest.js +57 -32
  52. package/dist/types/data/job_posting_service_latest.js.map +1 -1
  53. package/dist/types/data/shared_pickle_output_latest.cjs +33 -6
  54. package/dist/types/data/shared_pickle_output_latest.cjs.map +1 -1
  55. package/dist/types/data/shared_pickle_output_latest.d.cts +1 -1
  56. package/dist/types/data/shared_pickle_output_latest.d.ts +1 -1
  57. package/dist/types/data/shared_pickle_output_latest.js +31 -6
  58. package/dist/types/data/shared_pickle_output_latest.js.map +1 -1
  59. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
 
3
- declare const TypeEnum: z.ZodEnum<["MONETARY_AMOUNT"]>;
3
+ declare const TypeEnum: z.ZodEnum<["IMAGE"]>;
4
4
  declare const DetailLevelEnum: z.ZodEnum<["COUNTRY", "GEO", "LOCALITY", "POSTAL_CODE", "REGION"]>;
5
5
  declare const UnitTextEnum: z.ZodEnum<["DAY", "HOUR", "MONTH", "PER_ACTIVITY", "WEEK", "YEAR"]>;
6
6
  declare const CurrencyEnum: z.ZodEnum<["EUR", "GBP", "USD"]>;
@@ -11,22 +11,28 @@ declare const postalAddressSchema: z.ZodObject<{
11
11
  addressRegion: z.ZodOptional<z.ZodString>;
12
12
  addressLocality: z.ZodOptional<z.ZodString>;
13
13
  streetAddress: z.ZodOptional<z.ZodString>;
14
+ streetNumber: z.ZodOptional<z.ZodString>;
14
15
  postalCode: z.ZodOptional<z.ZodString>;
16
+ description: z.ZodOptional<z.ZodString>;
15
17
  }, "strip", z.ZodTypeAny, {
16
18
  type: string;
17
19
  version: "1.0.0";
18
20
  addressCountry: string;
21
+ description?: string | undefined;
19
22
  addressRegion?: string | undefined;
20
23
  addressLocality?: string | undefined;
21
24
  streetAddress?: string | undefined;
25
+ streetNumber?: string | undefined;
22
26
  postalCode?: string | undefined;
23
27
  }, {
24
28
  type: string;
25
29
  addressCountry: string;
26
30
  version?: "1.0.0" | undefined;
31
+ description?: string | undefined;
27
32
  addressRegion?: string | undefined;
28
33
  addressLocality?: string | undefined;
29
34
  streetAddress?: string | undefined;
35
+ streetNumber?: string | undefined;
30
36
  postalCode?: string | undefined;
31
37
  }>;
32
38
  type PostalAddressModel = z.infer<typeof postalAddressSchema>;
@@ -42,22 +48,28 @@ declare const placeSchema: z.ZodObject<{
42
48
  addressRegion: z.ZodOptional<z.ZodString>;
43
49
  addressLocality: z.ZodOptional<z.ZodString>;
44
50
  streetAddress: z.ZodOptional<z.ZodString>;
51
+ streetNumber: z.ZodOptional<z.ZodString>;
45
52
  postalCode: z.ZodOptional<z.ZodString>;
53
+ description: z.ZodOptional<z.ZodString>;
46
54
  }, "strip", z.ZodTypeAny, {
47
55
  type: string;
48
56
  version: "1.0.0";
49
57
  addressCountry: string;
58
+ description?: string | undefined;
50
59
  addressRegion?: string | undefined;
51
60
  addressLocality?: string | undefined;
52
61
  streetAddress?: string | undefined;
62
+ streetNumber?: string | undefined;
53
63
  postalCode?: string | undefined;
54
64
  }, {
55
65
  type: string;
56
66
  addressCountry: string;
57
67
  version?: "1.0.0" | undefined;
68
+ description?: string | undefined;
58
69
  addressRegion?: string | undefined;
59
70
  addressLocality?: string | undefined;
60
71
  streetAddress?: string | undefined;
72
+ streetNumber?: string | undefined;
61
73
  postalCode?: string | undefined;
62
74
  }>>;
63
75
  }, "strip", z.ZodTypeAny, {
@@ -66,9 +78,11 @@ declare const placeSchema: z.ZodObject<{
66
78
  type: string;
67
79
  version: "1.0.0";
68
80
  addressCountry: string;
81
+ description?: string | undefined;
69
82
  addressRegion?: string | undefined;
70
83
  addressLocality?: string | undefined;
71
84
  streetAddress?: string | undefined;
85
+ streetNumber?: string | undefined;
72
86
  postalCode?: string | undefined;
73
87
  } | undefined;
74
88
  detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
@@ -79,9 +93,11 @@ declare const placeSchema: z.ZodObject<{
79
93
  type: string;
80
94
  addressCountry: string;
81
95
  version?: "1.0.0" | undefined;
96
+ description?: string | undefined;
82
97
  addressRegion?: string | undefined;
83
98
  addressLocality?: string | undefined;
84
99
  streetAddress?: string | undefined;
100
+ streetNumber?: string | undefined;
85
101
  postalCode?: string | undefined;
86
102
  } | undefined;
87
103
  version?: "1.0.0" | undefined;
@@ -174,21 +190,161 @@ declare const monetaryAmountSchema: z.ZodObject<{
174
190
  singleValue?: number | undefined;
175
191
  }>;
176
192
  type MonetaryAmountModel = z.infer<typeof monetaryAmountSchema>;
193
+ declare const imageAssetSchema: z.ZodObject<{
194
+ version: z.ZodDefault<z.ZodLiteral<"1.0.0">>;
195
+ altText: z.ZodOptional<z.ZodString>;
196
+ assetId: z.ZodOptional<z.ZodString>;
197
+ description: z.ZodOptional<z.ZodString>;
198
+ extension: z.ZodOptional<z.ZodString>;
199
+ label: z.ZodOptional<z.ZodString>;
200
+ mimeType: z.ZodOptional<z.ZodString>;
201
+ originalFilename: z.ZodOptional<z.ZodString>;
202
+ path: z.ZodOptional<z.ZodString>;
203
+ sha1Hash: z.ZodOptional<z.ZodString>;
204
+ size: z.ZodOptional<z.ZodNumber>;
205
+ title: z.ZodOptional<z.ZodString>;
206
+ uploadId: z.ZodOptional<z.ZodString>;
207
+ url: z.ZodOptional<z.ZodString>;
208
+ }, "strip", z.ZodTypeAny, {
209
+ version: "1.0.0";
210
+ path?: string | undefined;
211
+ label?: string | undefined;
212
+ title?: string | undefined;
213
+ url?: string | undefined;
214
+ size?: number | undefined;
215
+ description?: string | undefined;
216
+ altText?: string | undefined;
217
+ assetId?: string | undefined;
218
+ extension?: string | undefined;
219
+ mimeType?: string | undefined;
220
+ originalFilename?: string | undefined;
221
+ sha1Hash?: string | undefined;
222
+ uploadId?: string | undefined;
223
+ }, {
224
+ path?: string | undefined;
225
+ label?: string | undefined;
226
+ title?: string | undefined;
227
+ url?: string | undefined;
228
+ version?: "1.0.0" | undefined;
229
+ size?: number | undefined;
230
+ description?: string | undefined;
231
+ altText?: string | undefined;
232
+ assetId?: string | undefined;
233
+ extension?: string | undefined;
234
+ mimeType?: string | undefined;
235
+ originalFilename?: string | undefined;
236
+ sha1Hash?: string | undefined;
237
+ uploadId?: string | undefined;
238
+ }>;
239
+ type ImageAssetModel = z.infer<typeof imageAssetSchema>;
240
+ declare const imageSchema: z.ZodObject<{
241
+ version: z.ZodDefault<z.ZodLiteral<"1.0.0">>;
242
+ type: z.ZodString;
243
+ asset: z.ZodOptional<z.ZodObject<{
244
+ version: z.ZodDefault<z.ZodLiteral<"1.0.0">>;
245
+ altText: z.ZodOptional<z.ZodString>;
246
+ assetId: z.ZodOptional<z.ZodString>;
247
+ description: z.ZodOptional<z.ZodString>;
248
+ extension: z.ZodOptional<z.ZodString>;
249
+ label: z.ZodOptional<z.ZodString>;
250
+ mimeType: z.ZodOptional<z.ZodString>;
251
+ originalFilename: z.ZodOptional<z.ZodString>;
252
+ path: z.ZodOptional<z.ZodString>;
253
+ sha1Hash: z.ZodOptional<z.ZodString>;
254
+ size: z.ZodOptional<z.ZodNumber>;
255
+ title: z.ZodOptional<z.ZodString>;
256
+ uploadId: z.ZodOptional<z.ZodString>;
257
+ url: z.ZodOptional<z.ZodString>;
258
+ }, "strip", z.ZodTypeAny, {
259
+ version: "1.0.0";
260
+ path?: string | undefined;
261
+ label?: string | undefined;
262
+ title?: string | undefined;
263
+ url?: string | undefined;
264
+ size?: number | undefined;
265
+ description?: string | undefined;
266
+ altText?: string | undefined;
267
+ assetId?: string | undefined;
268
+ extension?: string | undefined;
269
+ mimeType?: string | undefined;
270
+ originalFilename?: string | undefined;
271
+ sha1Hash?: string | undefined;
272
+ uploadId?: string | undefined;
273
+ }, {
274
+ path?: string | undefined;
275
+ label?: string | undefined;
276
+ title?: string | undefined;
277
+ url?: string | undefined;
278
+ version?: "1.0.0" | undefined;
279
+ size?: number | undefined;
280
+ description?: string | undefined;
281
+ altText?: string | undefined;
282
+ assetId?: string | undefined;
283
+ extension?: string | undefined;
284
+ mimeType?: string | undefined;
285
+ originalFilename?: string | undefined;
286
+ sha1Hash?: string | undefined;
287
+ uploadId?: string | undefined;
288
+ }>>;
289
+ }, "strip", z.ZodTypeAny, {
290
+ type: string;
291
+ version: "1.0.0";
292
+ asset?: {
293
+ version: "1.0.0";
294
+ path?: string | undefined;
295
+ label?: string | undefined;
296
+ title?: string | undefined;
297
+ url?: string | undefined;
298
+ size?: number | undefined;
299
+ description?: string | undefined;
300
+ altText?: string | undefined;
301
+ assetId?: string | undefined;
302
+ extension?: string | undefined;
303
+ mimeType?: string | undefined;
304
+ originalFilename?: string | undefined;
305
+ sha1Hash?: string | undefined;
306
+ uploadId?: string | undefined;
307
+ } | undefined;
308
+ }, {
309
+ type: string;
310
+ version?: "1.0.0" | undefined;
311
+ asset?: {
312
+ path?: string | undefined;
313
+ label?: string | undefined;
314
+ title?: string | undefined;
315
+ url?: string | undefined;
316
+ version?: "1.0.0" | undefined;
317
+ size?: number | undefined;
318
+ description?: string | undefined;
319
+ altText?: string | undefined;
320
+ assetId?: string | undefined;
321
+ extension?: string | undefined;
322
+ mimeType?: string | undefined;
323
+ originalFilename?: string | undefined;
324
+ sha1Hash?: string | undefined;
325
+ uploadId?: string | undefined;
326
+ } | undefined;
327
+ }>;
328
+ type ImageModel = z.infer<typeof imageSchema>;
177
329
 
178
330
  declare const shared_pickle_output_latest_CurrencyEnum: typeof CurrencyEnum;
179
331
  declare const shared_pickle_output_latest_DetailLevelEnum: typeof DetailLevelEnum;
332
+ type shared_pickle_output_latest_ImageAssetModel = ImageAssetModel;
333
+ type shared_pickle_output_latest_ImageModel = ImageModel;
180
334
  type shared_pickle_output_latest_MonetaryAmountModel = MonetaryAmountModel;
181
335
  type shared_pickle_output_latest_PlaceModel = PlaceModel;
182
336
  type shared_pickle_output_latest_PostalAddressModel = PostalAddressModel;
183
337
  type shared_pickle_output_latest_QuantitativeValueModel = QuantitativeValueModel;
184
338
  declare const shared_pickle_output_latest_TypeEnum: typeof TypeEnum;
185
339
  declare const shared_pickle_output_latest_UnitTextEnum: typeof UnitTextEnum;
340
+ declare const shared_pickle_output_latest_imageAssetSchema: typeof imageAssetSchema;
341
+ declare const shared_pickle_output_latest_imageSchema: typeof imageSchema;
186
342
  declare const shared_pickle_output_latest_monetaryAmountSchema: typeof monetaryAmountSchema;
187
343
  declare const shared_pickle_output_latest_placeSchema: typeof placeSchema;
188
344
  declare const shared_pickle_output_latest_postalAddressSchema: typeof postalAddressSchema;
189
345
  declare const shared_pickle_output_latest_quantitativeValueSchema: typeof quantitativeValueSchema;
190
346
  declare namespace shared_pickle_output_latest {
191
- export { shared_pickle_output_latest_CurrencyEnum as CurrencyEnum, shared_pickle_output_latest_DetailLevelEnum as DetailLevelEnum, type shared_pickle_output_latest_MonetaryAmountModel as MonetaryAmountModel, type shared_pickle_output_latest_PlaceModel as PlaceModel, type shared_pickle_output_latest_PostalAddressModel as PostalAddressModel, type shared_pickle_output_latest_QuantitativeValueModel as QuantitativeValueModel, shared_pickle_output_latest_TypeEnum as TypeEnum, shared_pickle_output_latest_UnitTextEnum as UnitTextEnum, shared_pickle_output_latest_monetaryAmountSchema as monetaryAmountSchema, shared_pickle_output_latest_placeSchema as placeSchema, shared_pickle_output_latest_postalAddressSchema as postalAddressSchema, shared_pickle_output_latest_quantitativeValueSchema as quantitativeValueSchema };
347
+ export { shared_pickle_output_latest_CurrencyEnum as CurrencyEnum, shared_pickle_output_latest_DetailLevelEnum as DetailLevelEnum, type shared_pickle_output_latest_ImageAssetModel as ImageAssetModel, type shared_pickle_output_latest_ImageModel as ImageModel, type shared_pickle_output_latest_MonetaryAmountModel as MonetaryAmountModel, type shared_pickle_output_latest_PlaceModel as PlaceModel, type shared_pickle_output_latest_PostalAddressModel as PostalAddressModel, type shared_pickle_output_latest_QuantitativeValueModel as QuantitativeValueModel, shared_pickle_output_latest_TypeEnum as TypeEnum, shared_pickle_output_latest_UnitTextEnum as UnitTextEnum, shared_pickle_output_latest_imageAssetSchema as imageAssetSchema, shared_pickle_output_latest_imageSchema as imageSchema, shared_pickle_output_latest_monetaryAmountSchema as monetaryAmountSchema, shared_pickle_output_latest_placeSchema as placeSchema, shared_pickle_output_latest_postalAddressSchema as postalAddressSchema, shared_pickle_output_latest_quantitativeValueSchema as quantitativeValueSchema };
192
348
  }
193
349
 
194
- export { CurrencyEnum as C, DetailLevelEnum as D, type MonetaryAmountModel as M, type PostalAddressModel as P, type QuantitativeValueModel as Q, TypeEnum as T, UnitTextEnum as U, placeSchema as a, type PlaceModel as b, monetaryAmountSchema as m, postalAddressSchema as p, quantitativeValueSchema as q, shared_pickle_output_latest as s };
350
+ export { CurrencyEnum as C, DetailLevelEnum as D, type ImageAssetModel as I, type MonetaryAmountModel as M, type PostalAddressModel as P, type QuantitativeValueModel as Q, TypeEnum as T, UnitTextEnum as U, placeSchema as a, type PlaceModel as b, imageSchema as c, type ImageModel as d, imageAssetSchema as i, monetaryAmountSchema as m, postalAddressSchema as p, quantitativeValueSchema as q, shared_pickle_output_latest as s };
@@ -26,12 +26,11 @@ __export(company_service_latest_exports, {
26
26
  TitleEnum: () => TitleEnum,
27
27
  TypeEnum: () => TypeEnum2,
28
28
  companyBenefitsSchema: () => companyBenefitsSchema,
29
- companyCareersPageSchema: () => companyCareersPageSchema,
29
+ companyCareersSchema: () => companyCareersSchema,
30
30
  companyNdgSchema: () => companyNdgSchema,
31
31
  companyPhilosophySchema: () => companyPhilosophySchema,
32
32
  companySchema: () => companySchema,
33
33
  foundingInformationSchema: () => foundingInformationSchema,
34
- imageSchema: () => imageSchema,
35
34
  industrySchema: () => industrySchema,
36
35
  jobBoardSchema: () => jobBoardSchema,
37
36
  ngdMetadataSchema: () => ngdMetadataSchema,
@@ -44,18 +43,20 @@ var import_zod2 = require("zod");
44
43
 
45
44
  // src/types/data/shared_pickle_output_latest.ts
46
45
  var import_zod = require("zod");
47
- var TypeEnum = import_zod.z.enum(["MONETARY_AMOUNT"]);
46
+ var TypeEnum = import_zod.z.enum(["IMAGE"]);
48
47
  var DetailLevelEnum = import_zod.z.enum(["COUNTRY", "GEO", "LOCALITY", "POSTAL_CODE", "REGION"]);
49
48
  var UnitTextEnum = import_zod.z.enum(["DAY", "HOUR", "MONTH", "PER_ACTIVITY", "WEEK", "YEAR"]);
50
49
  var CurrencyEnum = import_zod.z.enum(["EUR", "GBP", "USD"]);
51
50
  var postalAddressSchema = import_zod.z.object({
52
51
  version: import_zod.z.literal("1.0.0").default("1.0.0"),
53
- type: import_zod.z.string().describe("Document type used within sanity"),
52
+ type: import_zod.z.string().describe("Document type used for schema"),
54
53
  addressCountry: import_zod.z.string().describe("The physical country as defined in ISO 3166 Alpha-2"),
55
54
  addressRegion: import_zod.z.optional(import_zod.z.string()).describe("The region in which the locality is, and which is in the country."),
56
55
  addressLocality: import_zod.z.optional(import_zod.z.string()).describe("The locality in which the street address is, and which is in the region. In the US this would be city."),
57
- streetAddress: import_zod.z.optional(import_zod.z.string()).describe("The street address within the locality."),
58
- postalCode: import_zod.z.optional(import_zod.z.string()).describe("The postal code")
56
+ streetAddress: import_zod.z.optional(import_zod.z.string()).describe("The street name of the address within the locality."),
57
+ streetNumber: import_zod.z.optional(import_zod.z.string()).describe("The house of building number within the street."),
58
+ postalCode: import_zod.z.optional(import_zod.z.string()).describe("The postal code"),
59
+ description: import_zod.z.optional(import_zod.z.string()).describe("A descriptive string containing the full address.")
59
60
  });
60
61
  var placeSchema = import_zod.z.object({
61
62
  version: import_zod.z.literal("1.0.0").default("1.0.0"),
@@ -66,7 +67,7 @@ var placeSchema = import_zod.z.object({
66
67
  });
67
68
  var quantitativeValueSchema = import_zod.z.object({
68
69
  version: import_zod.z.literal("1.0.0").default("1.0.0"),
69
- type: import_zod.z.string().describe("Document type used within sanity"),
70
+ type: import_zod.z.string().describe("Document type used for schema"),
70
71
  value: import_zod.z.optional(import_zod.z.number()).describe("The single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Typically used for a single salary."),
71
72
  minValue: import_zod.z.optional(import_zod.z.number()).describe("The single minium value in a range for a quantitative_value, requires a maximum value."),
72
73
  maxValue: import_zod.z.optional(import_zod.z.number()).describe("The maximum value in a range for a quantitative_value, requires a minimum value."),
@@ -74,13 +75,34 @@ var quantitativeValueSchema = import_zod.z.object({
74
75
  });
75
76
  var monetaryAmountSchema = import_zod.z.object({
76
77
  version: import_zod.z.literal("1.0.0").default("1.0.0"),
77
- type: import_zod.z.string().describe("Document type used within sanity"),
78
+ type: import_zod.z.string().describe("Document type used for schema"),
78
79
  singleValue: import_zod.z.optional(import_zod.z.number()).describe("The annualized single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Deprecated - use value.value instead."),
79
80
  minValue: import_zod.z.optional(import_zod.z.number()).describe("The annualized single minium value in a range for a quantitative_value. Deprecated use value.minValue"),
80
81
  maxValue: import_zod.z.optional(import_zod.z.number()).describe("The annualized maximum value in a range for a quantitative_value. Deprecated use value.maxValue"),
81
82
  value: import_zod.z.optional(quantitativeValueSchema).describe("The quantitative_value for a given salary"),
82
83
  currency: import_zod.z.optional(CurrencyEnum)
83
84
  });
85
+ var imageAssetSchema = import_zod.z.object({
86
+ version: import_zod.z.literal("1.0.0").default("1.0.0"),
87
+ altText: import_zod.z.optional(import_zod.z.string()).describe("The alt text for the image"),
88
+ assetId: import_zod.z.optional(import_zod.z.string()).describe("The asset ID for the image"),
89
+ description: import_zod.z.optional(import_zod.z.string()).describe("The description for the image"),
90
+ extension: import_zod.z.optional(import_zod.z.string()).describe("The extension for the image"),
91
+ label: import_zod.z.optional(import_zod.z.string()).describe("The label for the image"),
92
+ mimeType: import_zod.z.optional(import_zod.z.string()).describe("The mime type for the image"),
93
+ originalFilename: import_zod.z.optional(import_zod.z.string()).describe("The original filename for the image"),
94
+ path: import_zod.z.optional(import_zod.z.string()).describe("The path for the image"),
95
+ sha1Hash: import_zod.z.optional(import_zod.z.string()).describe("The SHA1 hash for the image"),
96
+ size: import_zod.z.optional(import_zod.z.number()).describe("The size for the image"),
97
+ title: import_zod.z.optional(import_zod.z.string()).describe("The title for the image"),
98
+ uploadId: import_zod.z.optional(import_zod.z.string()).describe("The upload ID for the image"),
99
+ url: import_zod.z.optional(import_zod.z.string()).describe("The URL for the image")
100
+ });
101
+ var imageSchema = import_zod.z.object({
102
+ version: import_zod.z.literal("1.0.0").default("1.0.0"),
103
+ type: import_zod.z.string().describe("Document type used for schema"),
104
+ asset: import_zod.z.optional(imageAssetSchema).describe("The asset for the image")
105
+ });
84
106
 
85
107
  // src/types/data/company_service_latest.ts
86
108
  var TypeEnum2 = import_zod2.z.enum(["OFFICE"]);
@@ -88,10 +110,6 @@ var CategoryEnum = import_zod2.z.enum(["FINANCIAL", "HEALTH", "PROFESSIONAL_DEVE
88
110
  var TitleEnum = import_zod2.z.enum(["DMD", "JD", "MBA", "MD", "MHA", "MPH", "PT", "PH_D", "RN"]);
89
111
  var PublishStatusEnum = import_zod2.z.enum(["DRAFT", "IN_REVIEW", "PUBLISHED", "REMOVED"]);
90
112
  var OfficeTypeEnum = import_zod2.z.enum(["BRANCH", "HEADQUARTERS", "SATELLITE"]);
91
- var imageSchema = import_zod2.z.object({
92
- version: import_zod2.z.literal("1.0.0").default("1.0.0"),
93
- url: import_zod2.z.string()
94
- });
95
113
  var socialMediaSchema = import_zod2.z.object({
96
114
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
97
115
  url: import_zod2.z.string().describe("The link to the social media platform"),
@@ -99,14 +117,14 @@ var socialMediaSchema = import_zod2.z.object({
99
117
  });
100
118
  var companyBenefitsSchema = import_zod2.z.object({
101
119
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
102
- type: import_zod2.z.string().describe("Document type used within sanity"),
103
- name: import_zod2.z.string(),
120
+ type: import_zod2.z.string().describe("Document type used for schema"),
121
+ title: import_zod2.z.string(),
104
122
  description: import_zod2.z.optional(import_zod2.z.string()),
105
123
  category: CategoryEnum
106
124
  });
107
125
  var industrySchema = import_zod2.z.lazy(() => import_zod2.z.object({
108
126
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
109
- type: import_zod2.z.string().describe("Document type used within sanity"),
127
+ type: import_zod2.z.string().describe("Document type used for schema"),
110
128
  name: import_zod2.z.string(),
111
129
  description: import_zod2.z.optional(import_zod2.z.string()).describe("A brief description of the industry"),
112
130
  onetIndustryId: import_zod2.z.optional(import_zod2.z.string()).describe("ONET industry ID"),
@@ -114,7 +132,7 @@ var industrySchema = import_zod2.z.lazy(() => import_zod2.z.object({
114
132
  }));
115
133
  var jobBoardSchema = import_zod2.z.object({
116
134
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
117
- type: import_zod2.z.string().describe("Document type used within sanity"),
135
+ type: import_zod2.z.string().describe("Document type used for schema"),
118
136
  name: import_zod2.z.string().describe("The name of the job board"),
119
137
  description: import_zod2.z.string().describe("A brief description of the job board"),
120
138
  logo: import_zod2.z.optional(imageSchema).describe("The logo of the job board"),
@@ -122,7 +140,7 @@ var jobBoardSchema = import_zod2.z.object({
122
140
  });
123
141
  var personSchema = import_zod2.z.object({
124
142
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
125
- type: import_zod2.z.string().describe("Document type used within sanity"),
143
+ type: import_zod2.z.string().describe("Document type used for schema"),
126
144
  firstName: import_zod2.z.string().describe("The first name of the person"),
127
145
  lastName: import_zod2.z.string().describe("The last name of the person"),
128
146
  title: import_zod2.z.optional(import_zod2.z.array(import_zod2.z.string())).describe("The titles of the degree of the person"),
@@ -138,56 +156,62 @@ var personSchema = import_zod2.z.object({
138
156
  url: import_zod2.z.optional(import_zod2.z.string()).describe("The URL of the person"),
139
157
  address: import_zod2.z.optional(placeSchema).describe("The address of the person")
140
158
  });
141
- var companyCareersPageSchema = import_zod2.z.object({
159
+ var companyCareersSchema = import_zod2.z.object({
142
160
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
143
- companyCareersUrl: import_zod2.z.string().describe("The URL of the company careers page"),
144
- companyJobBoard: import_zod2.z.optional(jobBoardSchema),
145
- jobBoardSlug: import_zod2.z.array(import_zod2.z.string()),
161
+ type: import_zod2.z.string().describe("Document type used for schema"),
162
+ careersUrl: import_zod2.z.string().describe("The URL of the company careers page"),
163
+ jobBoard: import_zod2.z.optional(jobBoardSchema),
164
+ jobBoardSlug: import_zod2.z.optional(import_zod2.z.array(import_zod2.z.string())),
146
165
  companyBenefits: import_zod2.z.optional(import_zod2.z.array(companyBenefitsSchema)).describe("What are the specific benefits of that company. The benefit is generic.")
147
166
  });
148
167
  var companyPhilosophySchema = import_zod2.z.object({
149
168
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
150
- mission: import_zod2.z.optional(import_zod2.z.string()).describe("The mission statement of the company."),
169
+ type: import_zod2.z.string().describe("Document type used for schema"),
170
+ companyMission: import_zod2.z.optional(import_zod2.z.string()).describe("The mission statement of the company."),
151
171
  companyHow: import_zod2.z.optional(import_zod2.z.string()).describe("How does the company achieve its mission"),
152
172
  companyCulture: import_zod2.z.optional(import_zod2.z.array(import_zod2.z.string())).describe("What are some of the culture aspects of this company?")
153
173
  });
154
174
  var companyNdgSchema = import_zod2.z.object({
155
175
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
176
+ type: import_zod2.z.string().describe("Document type used for schema"),
156
177
  companyWow: import_zod2.z.optional(import_zod2.z.string()).describe("What is the wow of this company?"),
157
- companyNDGTake: import_zod2.z.optional(import_zod2.z.string()).describe("What is the NDG POV on this company?"),
158
- // Manually edited due to a different naming convention
178
+ companyNdgTake: import_zod2.z.optional(import_zod2.z.string()).describe("What is the NDG POV on this company?"),
159
179
  companyBestFit: import_zod2.z.optional(import_zod2.z.array(import_zod2.z.string())),
160
180
  companyInterests: import_zod2.z.optional(import_zod2.z.array(import_zod2.z.string()))
161
181
  });
162
182
  var foundingInformationSchema = import_zod2.z.object({
163
183
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
164
- foundedYear: import_zod2.z.optional(import_zod2.z.string()),
165
- foundingCountry: import_zod2.z.optional(import_zod2.z.string()),
166
- foundingCity: import_zod2.z.optional(import_zod2.z.string()),
184
+ type: import_zod2.z.string().describe("Document type used for schema"),
185
+ foundedDate: import_zod2.z.optional(import_zod2.z.string()),
186
+ foundedCountry: import_zod2.z.optional(import_zod2.z.string()),
187
+ foundedCity: import_zod2.z.optional(import_zod2.z.string()),
167
188
  founders: import_zod2.z.optional(import_zod2.z.array(personSchema))
168
189
  });
169
190
  var ngdMetadataSchema = import_zod2.z.object({
170
191
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
192
+ type: import_zod2.z.string().describe("Document type used for schema"),
171
193
  lastScraped: import_zod2.z.optional(import_zod2.z.string()).describe("Date the last entity was scraped, if applicable"),
172
194
  scraperVersion: import_zod2.z.optional(import_zod2.z.string()),
173
195
  postProcessorVersion: import_zod2.z.optional(import_zod2.z.string()),
174
196
  uniqueRunId: import_zod2.z.optional(import_zod2.z.string()),
175
197
  postProcessorUniqueRunId: import_zod2.z.optional(import_zod2.z.string()),
176
- shouldThisDocumentBeScraped: import_zod2.z.optional(import_zod2.z.boolean())
198
+ isScrapeManaged: import_zod2.z.optional(import_zod2.z.boolean()).default(true)
177
199
  });
178
200
  var companySchema = import_zod2.z.object({
179
201
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
202
+ id: import_zod2.z.string().describe("The NDG specific id for a company. Cannot be changed."),
203
+ createdAt: import_zod2.z.string().datetime().describe("Time document was created. Autoset by Sanity"),
204
+ updatedAt: import_zod2.z.string().datetime().describe("Time document was created. Autoset by Sanity"),
180
205
  companyName: import_zod2.z.string().describe("The name of the company"),
181
206
  slug: import_zod2.z.string().describe("The NDG specific slug for a company."),
182
- type: import_zod2.z.string().describe("Document type used within sanity"),
207
+ type: import_zod2.z.string().describe("Document type used for schema"),
183
208
  logo: import_zod2.z.optional(imageSchema).describe("The logo of the company"),
184
209
  companyWebsite: import_zod2.z.optional(import_zod2.z.string()).describe("The website of the company"),
185
210
  socialMedia: import_zod2.z.optional(import_zod2.z.array(socialMediaSchema)).describe("The social media links of the company"),
186
211
  brandColor: import_zod2.z.optional(import_zod2.z.string()).describe("The brand color of the company"),
187
- companyCareers: import_zod2.z.optional(companyCareersPageSchema).describe("Career Specific Information for the company."),
212
+ companyCareers: import_zod2.z.optional(companyCareersSchema).describe("Career Specific Information for the company."),
188
213
  companyPhilosophy: import_zod2.z.optional(companyPhilosophySchema).describe("Company mission,values and how the company achieves its mission."),
189
- companyNDG: import_zod2.z.optional(companyNdgSchema).describe("Next Degree specific information for the company."),
190
- // Manually edited due to a different naming convention
214
+ companyNdg: import_zod2.z.optional(companyNdgSchema).describe("Next Degree specific information for the company."),
191
215
  foundingInfo: import_zod2.z.optional(foundingInformationSchema),
192
216
  headquartersLocation: import_zod2.z.optional(placeSchema),
193
217
  employeeEstimate: import_zod2.z.optional(import_zod2.z.string()),
@@ -196,7 +220,7 @@ var companySchema = import_zod2.z.object({
196
220
  });
197
221
  var officeSchema = import_zod2.z.object({
198
222
  version: import_zod2.z.literal("1.0.0").default("1.0.0"),
199
- type: import_zod2.z.string().describe("Document type used within sanity"),
223
+ type: import_zod2.z.string().describe("Document type used for schema"),
200
224
  name: import_zod2.z.string().describe("Name or nickname for the office (e.g., 'NYC HQ', 'West Coast Branch')"),
201
225
  officeType: OfficeTypeEnum,
202
226
  companyId: import_zod2.z.optional(companySchema),
@@ -212,12 +236,11 @@ var officeSchema = import_zod2.z.object({
212
236
  TitleEnum,
213
237
  TypeEnum,
214
238
  companyBenefitsSchema,
215
- companyCareersPageSchema,
239
+ companyCareersSchema,
216
240
  companyNdgSchema,
217
241
  companyPhilosophySchema,
218
242
  companySchema,
219
243
  foundingInformationSchema,
220
- imageSchema,
221
244
  industrySchema,
222
245
  jobBoardSchema,
223
246
  ngdMetadataSchema,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/types/data/company_service_latest.ts","../../../src/types/data/shared_pickle_output_latest.ts"],"sourcesContent":["/*\nID:ebc38aef-0062-4f69-95af-d06bdc30d23f\nDomain: companies\nData Product: company_service\nVersion: 1.0.0\nThis data contract defines a company registered in the Pickle database. Every job posting is associated with a company.\n*/\n\nimport { z } from 'zod';\n\nimport { placeSchema } from './shared_pickle_output_latest' \n\n// Enums\n\nexport const TypeEnum = z.enum(['OFFICE']);\nexport const CategoryEnum = z.enum(['FINANCIAL', 'HEALTH', 'PROFESSIONAL_DEVELOPMENT', 'WORK_LIFE_BALANCE']);\nexport const TitleEnum = z.enum(['DMD', 'JD', 'MBA', 'MD', 'MHA', 'MPH', 'PT', 'PH_D', 'RN']);\nexport const PublishStatusEnum = z.enum(['DRAFT', 'IN_REVIEW', 'PUBLISHED', 'REMOVED']);\nexport const OfficeTypeEnum = z.enum(['BRANCH', 'HEADQUARTERS', 'SATELLITE']);\n\n\nexport const imageSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n url: z.string(),\n});\n\nexport type ImageModel = z.infer<typeof imageSchema>;\n\nexport const socialMediaSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n url: z.string().describe(\"The link to the social media platform\"),\n type: z.string().describe(\"The type of social media link\"),\n});\n\nexport type SocialMediaModel = z.infer<typeof socialMediaSchema>;\n\nexport const companyBenefitsSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n name: z.string(),\n description: z.optional(z.string()),\n category: CategoryEnum,\n});\n\nexport type CompanyBenefitsModel = z.infer<typeof companyBenefitsSchema>;\n\nexport const industrySchema: z.ZodType<any> = z.lazy(() => z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n name: z.string(),\n description: z.optional(z.string()).describe(\"A brief description of the industry\"),\n onetIndustryId: z.optional(z.string()).describe(\"ONET industry ID\"),\n parent: z.optional(industrySchema),\n}));\n\nexport type IndustryModel = z.infer<typeof industrySchema>;\n\nexport const jobBoardSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n name: z.string().describe(\"The name of the job board\"),\n description: z.string().describe(\"A brief description of the job board\"),\n logo: z.optional(imageSchema).describe(\"The logo of the job board\"),\n baseUrl: z.optional(z.string()).describe(\"The base URL of the job board\"),\n});\n\nexport type JobBoardModel = z.infer<typeof jobBoardSchema>;\n\nexport const personSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n firstName: z.string().describe(\"The first name of the person\"),\n lastName: z.string().describe(\"The last name of the person\"),\n title: z.optional(z.array(z.string())).describe(\"The titles of the degree of the person\"),\n slug: z.string().describe(\"person slug - should be familyname-givenname-title(s)\"),\n jobTitle: z.optional(z.string()).describe(\"The job title of the person\"),\n isDoctor: z.optional(z.boolean()).describe(\"Is the person a doctor\"),\n isMedical: z.optional(z.boolean()).describe(\"Are they of a medical background?\"),\n isScientist: z.optional(z.boolean()).describe(\"Are they a scientist?\"),\n image: z.optional(imageSchema).describe(\"The image of the person\"),\n email: z.optional(z.string()).describe(\"The email of the person\"),\n socialMedia: z.optional(z.array(socialMediaSchema)).describe(\"The social media links of the person\"),\n telephone: z.optional(z.string()).describe(\"The telephone number of the person\"),\n url: z.optional(z.string()).describe(\"The URL of the person\"),\n address: z.optional(placeSchema).describe(\"The address of the person\"),\n});\n\nexport type PersonModel = z.infer<typeof personSchema>;\n\nexport const companyCareersPageSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n companyCareersUrl: z.string().describe(\"The URL of the company careers page\"),\n companyJobBoard: z.optional(jobBoardSchema),\n jobBoardSlug: z.array(z.string()),\n companyBenefits: z.optional(z.array(companyBenefitsSchema)).describe(\"What are the specific benefits of that company. The benefit is generic.\"),\n});\n\nexport type CompanyCareersPageModel = z.infer<typeof companyCareersPageSchema>;\n\nexport const companyPhilosophySchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n mission: z.optional(z.string()).describe(\"The mission statement of the company.\"),\n companyHow: z.optional(z.string()).describe(\"How does the company achieve its mission\"),\n companyCulture: z.optional(z.array(z.string())).describe(\"What are some of the culture aspects of this company?\"),\n});\n\nexport type CompanyPhilosophyModel = z.infer<typeof companyPhilosophySchema>;\n\nexport const companyNdgSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n companyWow: z.optional(z.string()).describe(\"What is the wow of this company?\"),\n companyNDGTake: z.optional(z.string()).describe(\"What is the NDG POV on this company?\"), // Manually edited due to a different naming convention\n companyBestFit: z.optional(z.array(z.string())),\n companyInterests: z.optional(z.array(z.string())),\n});\n\nexport type CompanyNdgModel = z.infer<typeof companyNdgSchema>;\n\nexport const foundingInformationSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n foundedYear: z.optional(z.string()),\n foundingCountry: z.optional(z.string()),\n foundingCity: z.optional(z.string()),\n founders: z.optional(z.array(personSchema)),\n});\n\nexport type FoundingInformationModel = z.infer<typeof foundingInformationSchema>;\n\nexport const ngdMetadataSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n lastScraped: z.optional(z.string()).describe(\"Date the last entity was scraped, if applicable\"),\n scraperVersion: z.optional(z.string()),\n postProcessorVersion: z.optional(z.string()),\n uniqueRunId: z.optional(z.string()),\n postProcessorUniqueRunId: z.optional(z.string()),\n shouldThisDocumentBeScraped: z.optional(z.boolean()),\n});\n\nexport type NgdMetadataModel = z.infer<typeof ngdMetadataSchema>;\n\nexport const companySchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n companyName: z.string().describe(\"The name of the company\"),\n slug: z.string().describe(\"The NDG specific slug for a company.\"),\n type: z.string().describe(\"Document type used within sanity\"),\n logo: z.optional(imageSchema).describe(\"The logo of the company\"),\n companyWebsite: z.optional(z.string()).describe(\"The website of the company\"),\n socialMedia: z.optional(z.array(socialMediaSchema)).describe(\"The social media links of the company\"),\n brandColor: z.optional(z.string()).describe(\"The brand color of the company\"),\n companyCareers: z.optional(companyCareersPageSchema).describe(\"Career Specific Information for the company.\"),\n companyPhilosophy: z.optional(companyPhilosophySchema).describe(\"Company mission,values and how the company achieves its mission.\"),\n companyNDG: z.optional(companyNdgSchema).describe(\"Next Degree specific information for the company.\"), // Manually edited due to a different naming convention\n foundingInfo: z.optional(foundingInformationSchema),\n headquartersLocation: z.optional(placeSchema),\n employeeEstimate: z.optional(z.string()),\n publishStatus: z.optional(z.string()),\n ngdMetadata: z.optional(ngdMetadataSchema),\n});\n\nexport type CompanyModel = z.infer<typeof companySchema>;\n\nexport const officeSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n name: z.string().describe(\"Name or nickname for the office (e.g., 'NYC HQ', 'West Coast Branch')\"),\n officeType: OfficeTypeEnum,\n companyId: z.optional(companySchema),\n geoLocation: z.optional(placeSchema).describe(\"Geographical location details: coordinates + postal address\"),\n createdAt: z.optional(z.string()),\n updatedAt: z.optional(z.string()),\n});\n\nexport type OfficeModel = z.infer<typeof officeSchema>;\n","/*\nID:4cceb9ec-67b6-4372-9af0-0c6bfe55908b\nDomain: shared\nData Product: shared_pickle_output\nVersion: 1.0.0\nThis data contract defines a set of shared outputs from the Pickle model(s).\n*/\n\nimport { z } from 'zod';\n\n\n// Enums\n\nexport const TypeEnum = z.enum(['MONETARY_AMOUNT']);\nexport const DetailLevelEnum = z.enum(['COUNTRY', 'GEO', 'LOCALITY', 'POSTAL_CODE', 'REGION']);\nexport const UnitTextEnum = z.enum(['DAY', 'HOUR', 'MONTH', 'PER_ACTIVITY', 'WEEK', 'YEAR']);\nexport const CurrencyEnum = z.enum(['EUR', 'GBP', 'USD']);\n\n\nexport const postalAddressSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n addressCountry: z.string().describe(\"The physical country as defined in ISO 3166 Alpha-2\"),\n addressRegion: z.optional(z.string()).describe(\"The region in which the locality is, and which is in the country.\"),\n 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.\"),\n streetAddress: z.optional(z.string()).describe(\"The street address within the locality.\"),\n postalCode: z.optional(z.string()).describe(\"The postal code\"),\n});\n\nexport type PostalAddressModel = z.infer<typeof postalAddressSchema>;\n\nexport const placeSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n detailLevel: z.optional(DetailLevelEnum),\n latitude: z.optional(z.number()).describe(\"The latitude of a location.\"),\n longitude: z.optional(z.number()).describe(\"The longitude of a location.\"),\n address: z.optional(postalAddressSchema).describe(\"The physical place of the location\"),\n});\n\nexport type PlaceModel = z.infer<typeof placeSchema>;\n\nexport const quantitativeValueSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n value: z.optional(z.number()).describe(\"The single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Typically used for a single salary.\"),\n minValue: z.optional(z.number()).describe(\"The single minium value in a range for a quantitative_value, requires a maximum value.\"),\n maxValue: z.optional(z.number()).describe(\"The maximum value in a range for a quantitative_value, requires a minimum value.\"),\n unitText: UnitTextEnum,\n});\n\nexport type QuantitativeValueModel = z.infer<typeof quantitativeValueSchema>;\n\nexport const monetaryAmountSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used within sanity\"),\n singleValue: z.optional(z.number()).describe(\"The annualized single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Deprecated - use value.value instead.\"),\n minValue: z.optional(z.number()).describe(\"The annualized single minium value in a range for a quantitative_value. Deprecated use value.minValue\"),\n maxValue: z.optional(z.number()).describe(\"The annualized maximum value in a range for a quantitative_value. Deprecated use value.maxValue\"),\n value: z.optional(quantitativeValueSchema).describe(\"The quantitative_value for a given salary\"),\n currency: z.optional(CurrencyEnum),\n});\n\nexport type MonetaryAmountModel = z.infer<typeof monetaryAmountSchema>;\n"],"mappings":"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","names":["TypeEnum","import_zod","TypeEnum"]}
1
+ {"version":3,"sources":["../../../src/types/data/company_service_latest.ts","../../../src/types/data/shared_pickle_output_latest.ts"],"sourcesContent":["/*\nID:ebc38aef-0062-4f69-95af-d06bdc30d23f\nDomain: companies\nData Product: company_service\nVersion: 1.0.1\nThis data contract defines a company registered in the Pickle database. Every job posting is associated with a company.\n*/\n\nimport { z } from 'zod';\n\nimport { imageSchema, placeSchema } from './shared_pickle_output_latest'\n\n// Enums\n\nexport const TypeEnum = z.enum(['OFFICE']);\nexport const CategoryEnum = z.enum(['FINANCIAL', 'HEALTH', 'PROFESSIONAL_DEVELOPMENT', 'WORK_LIFE_BALANCE']);\nexport const TitleEnum = z.enum(['DMD', 'JD', 'MBA', 'MD', 'MHA', 'MPH', 'PT', 'PH_D', 'RN']);\nexport const PublishStatusEnum = z.enum(['DRAFT', 'IN_REVIEW', 'PUBLISHED', 'REMOVED']);\nexport const OfficeTypeEnum = z.enum(['BRANCH', 'HEADQUARTERS', 'SATELLITE']);\n\n\nexport const socialMediaSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n url: z.string().describe(\"The link to the social media platform\"),\n type: z.string().describe(\"The type of social media link\"),\n});\n\nexport type SocialMediaModel = z.infer<typeof socialMediaSchema>;\n\nexport const companyBenefitsSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n title: z.string(),\n description: z.optional(z.string()),\n category: CategoryEnum,\n});\n\nexport type CompanyBenefitsModel = z.infer<typeof companyBenefitsSchema>;\n\nexport const industrySchema: z.ZodType<any> = z.lazy(() => z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n name: z.string(),\n description: z.optional(z.string()).describe(\"A brief description of the industry\"),\n onetIndustryId: z.optional(z.string()).describe(\"ONET industry ID\"),\n parent: z.optional(industrySchema),\n}));\n\nexport type IndustryModel = z.infer<typeof industrySchema>;\n\nexport const jobBoardSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n name: z.string().describe(\"The name of the job board\"),\n description: z.string().describe(\"A brief description of the job board\"),\n logo: z.optional(imageSchema).describe(\"The logo of the job board\"),\n baseUrl: z.optional(z.string()).describe(\"The base URL of the job board\"),\n});\n\nexport type JobBoardModel = z.infer<typeof jobBoardSchema>;\n\nexport const personSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n firstName: z.string().describe(\"The first name of the person\"),\n lastName: z.string().describe(\"The last name of the person\"),\n title: z.optional(z.array(z.string())).describe(\"The titles of the degree of the person\"),\n slug: z.string().describe(\"person slug - should be familyname-givenname-title(s)\"),\n jobTitle: z.optional(z.string()).describe(\"The job title of the person\"),\n isDoctor: z.optional(z.boolean()).describe(\"Is the person a doctor\"),\n isMedical: z.optional(z.boolean()).describe(\"Are they of a medical background?\"),\n isScientist: z.optional(z.boolean()).describe(\"Are they a scientist?\"),\n image: z.optional(imageSchema).describe(\"The image of the person\"),\n email: z.optional(z.string()).describe(\"The email of the person\"),\n socialMedia: z.optional(z.array(socialMediaSchema)).describe(\"The social media links of the person\"),\n telephone: z.optional(z.string()).describe(\"The telephone number of the person\"),\n url: z.optional(z.string()).describe(\"The URL of the person\"),\n address: z.optional(placeSchema).describe(\"The address of the person\"),\n});\n\nexport type PersonModel = z.infer<typeof personSchema>;\n\nexport const companyCareersSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n careersUrl: z.string().describe(\"The URL of the company careers page\"),\n jobBoard: z.optional(jobBoardSchema),\n jobBoardSlug: z.optional(z.array(z.string())),\n companyBenefits: z.optional(z.array(companyBenefitsSchema)).describe(\"What are the specific benefits of that company. The benefit is generic.\"),\n});\n\nexport type CompanyCareersModel = z.infer<typeof companyCareersSchema>;\n\nexport const companyPhilosophySchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n companyMission: z.optional(z.string()).describe(\"The mission statement of the company.\"),\n companyHow: z.optional(z.string()).describe(\"How does the company achieve its mission\"),\n companyCulture: z.optional(z.array(z.string())).describe(\"What are some of the culture aspects of this company?\"),\n});\n\nexport type CompanyPhilosophyModel = z.infer<typeof companyPhilosophySchema>;\n\nexport const companyNdgSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n companyWow: z.optional(z.string()).describe(\"What is the wow of this company?\"),\n companyNdgTake: z.optional(z.string()).describe(\"What is the NDG POV on this company?\"),\n companyBestFit: z.optional(z.array(z.string())),\n companyInterests: z.optional(z.array(z.string())),\n});\n\nexport type CompanyNdgModel = z.infer<typeof companyNdgSchema>;\n\nexport const foundingInformationSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n foundedDate: z.optional(z.string()),\n foundedCountry: z.optional(z.string()),\n foundedCity: z.optional(z.string()),\n founders: z.optional(z.array(personSchema)),\n});\n\nexport type FoundingInformationModel = z.infer<typeof foundingInformationSchema>;\n\nexport const ngdMetadataSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n lastScraped: z.optional(z.string()).describe(\"Date the last entity was scraped, if applicable\"),\n scraperVersion: z.optional(z.string()),\n postProcessorVersion: z.optional(z.string()),\n uniqueRunId: z.optional(z.string()),\n postProcessorUniqueRunId: z.optional(z.string()),\n isScrapeManaged: z.optional(z.boolean()).default(true),\n});\n\nexport type NgdMetadataModel = z.infer<typeof ngdMetadataSchema>;\n\nexport const companySchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n id: z.string().describe(\"The NDG specific id for a company. Cannot be changed.\"),\n createdAt: z.string().datetime().describe(\"Time document was created. Autoset by Sanity\"),\n updatedAt: z.string().datetime().describe(\"Time document was created. Autoset by Sanity\"),\n companyName: z.string().describe(\"The name of the company\"),\n slug: z.string().describe(\"The NDG specific slug for a company.\"),\n type: z.string().describe(\"Document type used for schema\"),\n logo: z.optional(imageSchema).describe(\"The logo of the company\"),\n companyWebsite: z.optional(z.string()).describe(\"The website of the company\"),\n socialMedia: z.optional(z.array(socialMediaSchema)).describe(\"The social media links of the company\"),\n brandColor: z.optional(z.string()).describe(\"The brand color of the company\"),\n companyCareers: z.optional(companyCareersSchema).describe(\"Career Specific Information for the company.\"),\n companyPhilosophy: z.optional(companyPhilosophySchema).describe(\"Company mission,values and how the company achieves its mission.\"),\n companyNdg: z.optional(companyNdgSchema).describe(\"Next Degree specific information for the company.\"),\n foundingInfo: z.optional(foundingInformationSchema),\n headquartersLocation: z.optional(placeSchema),\n employeeEstimate: z.optional(z.string()),\n publishStatus: z.optional(z.string()),\n ngdMetadata: z.optional(ngdMetadataSchema),\n});\n\nexport type CompanyModel = z.infer<typeof companySchema>;\n\nexport const officeSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n name: z.string().describe(\"Name or nickname for the office (e.g., 'NYC HQ', 'West Coast Branch')\"),\n officeType: OfficeTypeEnum,\n companyId: z.optional(companySchema),\n geoLocation: z.optional(placeSchema).describe(\"Geographical location details: coordinates + postal address\"),\n createdAt: z.optional(z.string()),\n updatedAt: z.optional(z.string()),\n});\n\nexport type OfficeModel = z.infer<typeof officeSchema>;\n","/*\nID:c2c9f095-256f-44df-ada7-73753d8f4f92\nDomain: shared\nData Product: shared_pickle_output\nVersion: 1.0.2\nThis data contract defines a set of shared outputs from the Pickle model(s).\n*/\n\nimport { z } from 'zod';\n\n\n// Enums\n\nexport const TypeEnum = z.enum(['IMAGE']);\nexport const DetailLevelEnum = z.enum(['COUNTRY', 'GEO', 'LOCALITY', 'POSTAL_CODE', 'REGION']);\nexport const UnitTextEnum = z.enum(['DAY', 'HOUR', 'MONTH', 'PER_ACTIVITY', 'WEEK', 'YEAR']);\nexport const CurrencyEnum = z.enum(['EUR', 'GBP', 'USD']);\n\n\nexport const postalAddressSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n addressCountry: z.string().describe(\"The physical country as defined in ISO 3166 Alpha-2\"),\n addressRegion: z.optional(z.string()).describe(\"The region in which the locality is, and which is in the country.\"),\n 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.\"),\n streetAddress: z.optional(z.string()).describe(\"The street name of the address within the locality.\"),\n streetNumber: z.optional(z.string()).describe(\"The house of building number within the street.\"),\n postalCode: z.optional(z.string()).describe(\"The postal code\"),\n description: z.optional(z.string()).describe(\"A descriptive string containing the full address.\"),\n});\n\nexport type PostalAddressModel = z.infer<typeof postalAddressSchema>;\n\nexport const placeSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n detailLevel: z.optional(DetailLevelEnum),\n latitude: z.optional(z.number()).describe(\"The latitude of a location.\"),\n longitude: z.optional(z.number()).describe(\"The longitude of a location.\"),\n address: z.optional(postalAddressSchema).describe(\"The physical place of the location\"),\n});\n\nexport type PlaceModel = z.infer<typeof placeSchema>;\n\nexport const quantitativeValueSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n value: z.optional(z.number()).describe(\"The single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Typically used for a single salary.\"),\n minValue: z.optional(z.number()).describe(\"The single minium value in a range for a quantitative_value, requires a maximum value.\"),\n maxValue: z.optional(z.number()).describe(\"The maximum value in a range for a quantitative_value, requires a minimum value.\"),\n unitText: UnitTextEnum,\n});\n\nexport type QuantitativeValueModel = z.infer<typeof quantitativeValueSchema>;\n\nexport const monetaryAmountSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n singleValue: z.optional(z.number()).describe(\"The annualized single value for some quantity e.g 5000, if a range is needed use minValue and maxValue. Deprecated - use value.value instead.\"),\n minValue: z.optional(z.number()).describe(\"The annualized single minium value in a range for a quantitative_value. Deprecated use value.minValue\"),\n maxValue: z.optional(z.number()).describe(\"The annualized maximum value in a range for a quantitative_value. Deprecated use value.maxValue\"),\n value: z.optional(quantitativeValueSchema).describe(\"The quantitative_value for a given salary\"),\n currency: z.optional(CurrencyEnum),\n});\n\nexport type MonetaryAmountModel = z.infer<typeof monetaryAmountSchema>;\n\nexport const imageAssetSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n altText: z.optional(z.string()).describe(\"The alt text for the image\"),\n assetId: z.optional(z.string()).describe(\"The asset ID for the image\"),\n description: z.optional(z.string()).describe(\"The description for the image\"),\n extension: z.optional(z.string()).describe(\"The extension for the image\"),\n label: z.optional(z.string()).describe(\"The label for the image\"),\n mimeType: z.optional(z.string()).describe(\"The mime type for the image\"),\n originalFilename: z.optional(z.string()).describe(\"The original filename for the image\"),\n path: z.optional(z.string()).describe(\"The path for the image\"),\n sha1Hash: z.optional(z.string()).describe(\"The SHA1 hash for the image\"),\n size: z.optional(z.number()).describe(\"The size for the image\"),\n title: z.optional(z.string()).describe(\"The title for the image\"),\n uploadId: z.optional(z.string()).describe(\"The upload ID for the image\"),\n url: z.optional(z.string()).describe(\"The URL for the image\"),\n});\n\nexport type ImageAssetModel = z.infer<typeof imageAssetSchema>;\n\nexport const imageSchema = z.object({\n version: z.literal('1.0.0').default('1.0.0'),\n type: z.string().describe(\"Document type used for schema\"),\n asset: z.optional(imageAssetSchema).describe(\"The asset for the image\"),\n});\n\nexport type ImageModel = z.infer<typeof imageSchema>;\n"],"mappings":"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","names":["TypeEnum","import_zod","TypeEnum"]}
@@ -1,2 +1,2 @@
1
1
  import 'zod';
2
- export { C as CategoryEnum, d as CompanyBenefitsModel, k as CompanyCareersPageModel, u as CompanyModel, o as CompanyNdgModel, m as CompanyPhilosophyModel, F as FoundingInformationModel, I as ImageModel, f as IndustryModel, J as JobBoardModel, N as NgdMetadataModel, w as OfficeModel, O as OfficeTypeEnum, g as PersonModel, P as PublishStatusEnum, S as SocialMediaModel, a as TitleEnum, T as TypeEnum, b as companyBenefitsSchema, h as companyCareersPageSchema, n as companyNdgSchema, l as companyPhilosophySchema, t as companySchema, q as foundingInformationSchema, i as imageSchema, e as industrySchema, j as jobBoardSchema, r as ngdMetadataSchema, v as officeSchema, p as personSchema, s as socialMediaSchema } from '../../company_service_latest-uu3w8AR6.cjs';
2
+ export { C as CategoryEnum, d as CompanyBenefitsModel, g as CompanyCareersModel, r as CompanyModel, m as CompanyNdgModel, k as CompanyPhilosophyModel, F as FoundingInformationModel, I as IndustryModel, J as JobBoardModel, N as NgdMetadataModel, u as OfficeModel, O as OfficeTypeEnum, e as PersonModel, P as PublishStatusEnum, S as SocialMediaModel, a as TitleEnum, T as TypeEnum, b as companyBenefitsSchema, f as companyCareersSchema, l as companyNdgSchema, h as companyPhilosophySchema, q as companySchema, n as foundingInformationSchema, i as industrySchema, j as jobBoardSchema, o as ngdMetadataSchema, t as officeSchema, p as personSchema, s as socialMediaSchema } from '../../company_service_latest-DelYl1hO.cjs';
@@ -1,2 +1,2 @@
1
1
  import 'zod';
2
- export { C as CategoryEnum, d as CompanyBenefitsModel, k as CompanyCareersPageModel, u as CompanyModel, o as CompanyNdgModel, m as CompanyPhilosophyModel, F as FoundingInformationModel, I as ImageModel, f as IndustryModel, J as JobBoardModel, N as NgdMetadataModel, w as OfficeModel, O as OfficeTypeEnum, g as PersonModel, P as PublishStatusEnum, S as SocialMediaModel, a as TitleEnum, T as TypeEnum, b as companyBenefitsSchema, h as companyCareersPageSchema, n as companyNdgSchema, l as companyPhilosophySchema, t as companySchema, q as foundingInformationSchema, i as imageSchema, e as industrySchema, j as jobBoardSchema, r as ngdMetadataSchema, v as officeSchema, p as personSchema, s as socialMediaSchema } from '../../company_service_latest-uu3w8AR6.js';
2
+ export { C as CategoryEnum, d as CompanyBenefitsModel, g as CompanyCareersModel, r as CompanyModel, m as CompanyNdgModel, k as CompanyPhilosophyModel, F as FoundingInformationModel, I as IndustryModel, J as JobBoardModel, N as NgdMetadataModel, u as OfficeModel, O as OfficeTypeEnum, e as PersonModel, P as PublishStatusEnum, S as SocialMediaModel, a as TitleEnum, T as TypeEnum, b as companyBenefitsSchema, f as companyCareersSchema, l as companyNdgSchema, h as companyPhilosophySchema, q as companySchema, n as foundingInformationSchema, i as industrySchema, j as jobBoardSchema, o as ngdMetadataSchema, t as officeSchema, p as personSchema, s as socialMediaSchema } from '../../company_service_latest-DelYl1hO.js';