@singi-labs/sifa-sdk 0.12.20 → 0.12.21

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 (33) hide show
  1. package/dist/{adult-content-B06bKHpA.d.cts → adult-content-C9gi0C_Q.d.cts} +22 -1
  2. package/dist/{adult-content-B06bKHpA.d.ts → adult-content-C9gi0C_Q.d.ts} +22 -1
  3. package/dist/{index-nBCabKk0.d.cts → index-68tJSEtA.d.cts} +2 -2
  4. package/dist/{index-QUCsiCnz.d.ts → index-B4NfsdTi.d.ts} +2 -2
  5. package/dist/{index-DrOzgNB8.d.ts → index-BEDyt4ZP.d.ts} +2 -2
  6. package/dist/{index-NMOaWN-G.d.cts → index-Cbjiqz7Y.d.cts} +2 -2
  7. package/dist/index.cjs +24 -1
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +2 -2
  10. package/dist/index.d.ts +2 -2
  11. package/dist/index.js +24 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/{org-UaNOo0ya.d.cts → org-BX4WZoOT.d.cts} +1 -1
  14. package/dist/{org-DKbNPMry.d.ts → org-lScz_q2Z.d.ts} +1 -1
  15. package/dist/query/fetchers/index.d.cts +3 -3
  16. package/dist/query/fetchers/index.d.ts +3 -3
  17. package/dist/query/hooks/index.d.cts +3 -3
  18. package/dist/query/hooks/index.d.ts +3 -3
  19. package/dist/query/index.d.cts +5 -5
  20. package/dist/query/index.d.ts +5 -5
  21. package/dist/schemas/index.cjs +23 -0
  22. package/dist/schemas/index.cjs.map +1 -1
  23. package/dist/schemas/index.d.cts +13 -0
  24. package/dist/schemas/index.d.ts +13 -0
  25. package/dist/schemas/index.js +23 -0
  26. package/dist/schemas/index.js.map +1 -1
  27. package/dist/schemas/write/index.cjs +15 -0
  28. package/dist/schemas/write/index.cjs.map +1 -1
  29. package/dist/schemas/write/index.d.cts +13 -7
  30. package/dist/schemas/write/index.d.ts +13 -7
  31. package/dist/schemas/write/index.js +15 -0
  32. package/dist/schemas/write/index.js.map +1 -1
  33. package/package.json +1 -1
@@ -456,6 +456,23 @@ interface ProfileOverrideSource {
456
456
  displayName?: string;
457
457
  avatarUrl?: string;
458
458
  }
459
+ /**
460
+ * A structured physical address on the org view. Mirrors
461
+ * `community.lexicon.location.address`; every field is optional.
462
+ */
463
+ interface OrgAddressView {
464
+ country: string | null;
465
+ postalCode: string | null;
466
+ region: string | null;
467
+ locality: string | null;
468
+ street: string | null;
469
+ name: string | null;
470
+ }
471
+ /** A featured link on the org view. Both `name` and `url` are present. */
472
+ interface OrgLinkView {
473
+ name: string;
474
+ url: string;
475
+ }
459
476
  /**
460
477
  * The org-profile fields exposed on the profile resolve when the org rendering
461
478
  * floor is met. Narrow on purpose: `contact` is never included (not rendered
@@ -468,6 +485,10 @@ interface OrgProfileView {
468
485
  /** Blob CID (or resolved URL) of the org logo, when present. */
469
486
  logoBlob: string | null;
470
487
  entityRefs: string[] | null;
488
+ addresses: OrgAddressView[] | null;
489
+ /** Self-selected headcount range (declared bucket, never calculated). */
490
+ companySize: string | null;
491
+ links: OrgLinkView[] | null;
471
492
  }
472
493
  /**
473
494
  * A company entity recognized purely from the handle's registrable domain
@@ -918,4 +939,4 @@ declare function hasAdultContent(item: {
918
939
  labels?: ActivityLabel[];
919
940
  }): boolean;
920
941
 
921
- export { type ProfileVolunteering as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgProfileView as K, type LocationValue as L, type PositionView as M, type PresentationDeliveryView as N, type OrgFloorVerdict as O, type ProfileSkill as P, type PresentationLinkView as Q, type PresentationView as R, type SkillSuggestion as S, type ProfileCourse as T, type ProfileIndustry as U, type ProfileInvolvementLink as V, type ProfileLocation as W, type ProfileLocationView as X, type ProfileOverrideSource as Y, type ProfilePresentation as Z, type ProfileView as _, type ActivityLabel as a, type ProjectView as a0, type PublicationContributor as a1, type PublicationView as a2, type RecognizedEntity as a3, type SkillRef as a4, type SkillView as a5, type TrustStat as a6, type VerifiedAccount as a7, type VolunteeringView as a8, hasAdultContent as a9, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
942
+ export { type ProfilePresentation as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgFloorVerdict as K, type LocationValue as L, type OrgLinkView as M, type OrgProfileView as N, type OrgAddressView as O, type ProfileSkill as P, type PositionView as Q, type PresentationDeliveryView as R, type SkillSuggestion as S, type PresentationLinkView as T, type PresentationView as U, type ProfileCourse as V, type ProfileIndustry as W, type ProfileInvolvementLink as X, type ProfileLocation as Y, type ProfileLocationView as Z, type ProfileOverrideSource as _, type ActivityLabel as a, type ProfileView as a0, type ProfileVolunteering as a1, type ProjectView as a2, type PublicationContributor as a3, type PublicationView as a4, type RecognizedEntity as a5, type SkillRef as a6, type SkillView as a7, type TrustStat as a8, type VerifiedAccount as a9, type VolunteeringView as aa, hasAdultContent as ab, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
@@ -456,6 +456,23 @@ interface ProfileOverrideSource {
456
456
  displayName?: string;
457
457
  avatarUrl?: string;
458
458
  }
459
+ /**
460
+ * A structured physical address on the org view. Mirrors
461
+ * `community.lexicon.location.address`; every field is optional.
462
+ */
463
+ interface OrgAddressView {
464
+ country: string | null;
465
+ postalCode: string | null;
466
+ region: string | null;
467
+ locality: string | null;
468
+ street: string | null;
469
+ name: string | null;
470
+ }
471
+ /** A featured link on the org view. Both `name` and `url` are present. */
472
+ interface OrgLinkView {
473
+ name: string;
474
+ url: string;
475
+ }
459
476
  /**
460
477
  * The org-profile fields exposed on the profile resolve when the org rendering
461
478
  * floor is met. Narrow on purpose: `contact` is never included (not rendered
@@ -468,6 +485,10 @@ interface OrgProfileView {
468
485
  /** Blob CID (or resolved URL) of the org logo, when present. */
469
486
  logoBlob: string | null;
470
487
  entityRefs: string[] | null;
488
+ addresses: OrgAddressView[] | null;
489
+ /** Self-selected headcount range (declared bucket, never calculated). */
490
+ companySize: string | null;
491
+ links: OrgLinkView[] | null;
471
492
  }
472
493
  /**
473
494
  * A company entity recognized purely from the handle's registrable domain
@@ -918,4 +939,4 @@ declare function hasAdultContent(item: {
918
939
  labels?: ActivityLabel[];
919
940
  }): boolean;
920
941
 
921
- export { type ProfileVolunteering as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgProfileView as K, type LocationValue as L, type PositionView as M, type PresentationDeliveryView as N, type OrgFloorVerdict as O, type ProfileSkill as P, type PresentationLinkView as Q, type PresentationView as R, type SkillSuggestion as S, type ProfileCourse as T, type ProfileIndustry as U, type ProfileInvolvementLink as V, type ProfileLocation as W, type ProfileLocationView as X, type ProfileOverrideSource as Y, type ProfilePresentation as Z, type ProfileView as _, type ActivityLabel as a, type ProjectView as a0, type PublicationContributor as a1, type PublicationView as a2, type RecognizedEntity as a3, type SkillRef as a4, type SkillView as a5, type TrustStat as a6, type VerifiedAccount as a7, type VolunteeringView as a8, hasAdultContent as a9, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
942
+ export { type ProfilePresentation as $, type AdultContentLabel as A, type InvolvementView as B, type CoSpeaker as C, type DurationView as D, type ExternalAccount as E, type FeedItem as F, type LanguageProficiency as G, type HonorView as H, type IndustryDomain as I, type LanguageView as J, type OrgFloorVerdict as K, type LocationValue as L, type OrgLinkView as M, type OrgProfileView as N, type OrgAddressView as O, type ProfileSkill as P, type PositionView as Q, type PresentationDeliveryView as R, type SkillSuggestion as S, type PresentationLinkView as T, type PresentationView as U, type ProfileCourse as V, type ProfileIndustry as W, type ProfileInvolvementLink as X, type ProfileLocation as Y, type ProfileLocationView as Z, type ProfileOverrideSource as _, type ActivityLabel as a, type ProfileView as a0, type ProfileVolunteering as a1, type ProjectView as a2, type PublicationContributor as a3, type PublicationView as a4, type RecognizedEntity as a5, type SkillRef as a6, type SkillView as a7, type TrustStat as a8, type VerifiedAccount as a9, type VolunteeringView as aa, hasAdultContent as ab, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, type ProfilePosition as e, type ProfileCertification as f, type ProfileEducation as g, type ProfileHonor as h, type ProfileLanguage as i, type ProfileProject as j, type ProfilePublication as k, type ProfileInvolvement as l, ADULT_CONTENT_LABELS as m, type ActiveApp as n, type ActiveAppView as o, type AtfundLinkView as p, type CertificationView as q, type CoSpeakerView as r, type ContributorView as s, type CourseView as t, type EducationView as u, type Endorsement as v, type EndorsementData as w, type ExternalAccountKeytraceClaim as x, type ExternalAccountView as y, type InvolvementLinkView as z };
@@ -1,9 +1,9 @@
1
1
  import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
- import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ae as RefreshPdsResult, at as UpdateProfileOverrideInput, au as UpdateProfileSelfInput, av as UploadAvatarResult, j as CreateResult, a2 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, aw as VerifyExternalAccountResult, E as EndorsementInput, ad as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, aq as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, al as SearchFilters, am as SearchResponse, ap as SkillSearchResult, l as FeaturedProfile, ao as SimilarProfile, v as FetchSuggestionsOptions, as as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ac as ReactionStatus, ab as ReactionResult, aa as ReactionError, ak as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, af as ResetProfileResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-UaNOo0ya.cjs';
3
+ import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ae as RefreshPdsResult, at as UpdateProfileOverrideInput, au as UpdateProfileSelfInput, av as UploadAvatarResult, j as CreateResult, a2 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, aw as VerifyExternalAccountResult, E as EndorsementInput, ad as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, aq as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, al as SearchFilters, am as SearchResponse, ap as SkillSearchResult, l as FeaturedProfile, ao as SimilarProfile, v as FetchSuggestionsOptions, as as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ac as ReactionStatus, ab as ReactionResult, aa as ReactionError, ak as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, af as ResetProfileResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-BX4WZoOT.cjs';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
  import { UseQueryOptions, UseMutationOptions, UseInfiniteQueryOptions, InfiniteData } from '@tanstack/react-query';
6
- import { d as Profile, _ as ProfileView, e as ProfilePosition, a4 as SkillRef, E as ExternalAccount, S as SkillSuggestion, O as OrgFloorVerdict } from './adult-content-B06bKHpA.cjs';
6
+ import { d as Profile, a0 as ProfileView, e as ProfilePosition, a6 as SkillRef, E as ExternalAccount, S as SkillSuggestion, K as OrgFloorVerdict } from './adult-content-C9gi0C_Q.cjs';
7
7
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, r as EntitySelectResponse, p as EntitySelectRequest, F as FollowFeedPage, c as FeatureFlag } from './feed-D2ZV8Eaj.cjs';
8
8
  import { O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, b as OrgDomainChallengeRequestInput, d as OrgDomainVerifyRequestInput, f as OrgNotificationEmailRequestInput } from './org-settings-CmaSX5ZI.cjs';
9
9
 
@@ -1,9 +1,9 @@
1
1
  import * as react from 'react';
2
2
  import { ReactNode } from 'react';
3
- import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ae as RefreshPdsResult, at as UpdateProfileOverrideInput, au as UpdateProfileSelfInput, av as UploadAvatarResult, j as CreateResult, a2 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, aw as VerifyExternalAccountResult, E as EndorsementInput, ad as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, aq as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, al as SearchFilters, am as SearchResponse, ap as SkillSearchResult, l as FeaturedProfile, ao as SimilarProfile, v as FetchSuggestionsOptions, as as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ac as ReactionStatus, ab as ReactionResult, aa as ReactionError, ak as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, af as ResetProfileResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-DKbNPMry.js';
3
+ import { S as SifaApiConfig, s as sifaQueryKeys, W as WriteResult, ae as RefreshPdsResult, at as UpdateProfileOverrideInput, au as UpdateProfileSelfInput, av as UploadAvatarResult, j as CreateResult, a2 as ProfileLocationInput, k as ExternalAccountInput, i as CreateExternalAccountResult, aw as VerifyExternalAccountResult, E as EndorsementInput, ad as RefreshOrcidPublicationsResult, B as BulkHideProfileItemInput, P as HideProfileItemInput, aq as StatsResponse, g as AppRegistryEntry, M as HiddenApp, w as FilterOptions, al as SearchFilters, am as SearchResponse, ap as SkillSearchResult, l as FeaturedProfile, ao as SimilarProfile, v as FetchSuggestionsOptions, as as SuggestionsResponse, G as FollowUserResult, o as FetchFollowListOptions, x as FollowListPage, H as FollowingResponse, q as FetchFollowingFeedOptions, p as FetchFollowProfilePageOptions, z as FollowProfilePageResponse, F as FeatureAllowlistResponse, m as FetchActivityFeedOptions, b as ActivityFeedResponse, e as ActivityTeaserResponse, L as HeatmapResponse, a as AccountCheckResult, ac as ReactionStatus, ab as ReactionResult, aa as ReactionError, ak as RoadmapVotesResponse, C as CastRoadmapVoteResult, D as DeleteAccountResult, af as ResetProfileResult, T as OrgClaimResult, _ as OrgProfileUpdateResult, U as OrgDomainChallengeResult, V as OrgDomainVerifyResult, X as OrgNotificationEmailAddResult, Y as OrgNotificationEmailRemoveResult } from './org-lScz_q2Z.js';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
  import { UseQueryOptions, UseMutationOptions, UseInfiniteQueryOptions, InfiniteData } from '@tanstack/react-query';
6
- import { d as Profile, _ as ProfileView, e as ProfilePosition, a4 as SkillRef, E as ExternalAccount, S as SkillSuggestion, O as OrgFloorVerdict } from './adult-content-B06bKHpA.js';
6
+ import { d as Profile, a0 as ProfileView, e as ProfilePosition, a6 as SkillRef, E as ExternalAccount, S as SkillSuggestion, K as OrgFloorVerdict } from './adult-content-C9gi0C_Q.js';
7
7
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, r as EntitySelectResponse, p as EntitySelectRequest, F as FollowFeedPage, c as FeatureFlag } from './feed-D2ZV8Eaj.js';
8
8
  import { O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, b as OrgDomainChallengeRequestInput, d as OrgDomainVerifyRequestInput, f as OrgNotificationEmailRequestInput } from './org-settings-CmaSX5ZI.js';
9
9
 
@@ -1,5 +1,5 @@
1
- import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-DKbNPMry.js';
2
- import { d as Profile, _ as ProfileView, e as ProfilePosition, a4 as SkillRef } from './adult-content-B06bKHpA.js';
1
+ import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-lScz_q2Z.js';
2
+ import { d as Profile, a0 as ProfileView, e as ProfilePosition, a6 as SkillRef } from './adult-content-C9gi0C_Q.js';
3
3
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, p as EntitySelectRequest, r as EntitySelectResponse } from './feed-D2ZV8Eaj.js';
4
4
 
5
5
  /**
@@ -1,5 +1,5 @@
1
- import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-UaNOo0ya.cjs';
2
- import { d as Profile, _ as ProfileView, e as ProfilePosition, a4 as SkillRef } from './adult-content-B06bKHpA.cjs';
1
+ import { S as SifaApiConfig, A as ApiFetchOptions, j as CreateResult, W as WriteResult } from './org-BX4WZoOT.cjs';
2
+ import { d as Profile, a0 as ProfileView, e as ProfilePosition, a6 as SkillRef } from './adult-content-C9gi0C_Q.cjs';
3
3
  import { m as EntitySearchResponse, E as EntitySearchResult, g as EntityMintDomainResponse, k as EntityResolveDomainResponse, p as EntitySelectRequest, r as EntitySelectResponse } from './feed-D2ZV8Eaj.cjs';
4
4
 
5
5
  /**
package/dist/index.cjs CHANGED
@@ -4254,6 +4254,18 @@ var EndorsementRecordSchema = zod.z.object({
4254
4254
  comment: zod.z.string().refine(maxGraphemes(300)).max(3e3).optional(),
4255
4255
  createdAt: datetimeSchema
4256
4256
  });
4257
+ var orgAddressSchema = zod.z.object({
4258
+ country: zod.z.string().optional(),
4259
+ postalCode: zod.z.string().optional(),
4260
+ region: zod.z.string().optional(),
4261
+ locality: zod.z.string().optional(),
4262
+ street: zod.z.string().optional(),
4263
+ name: zod.z.string().optional()
4264
+ });
4265
+ var orgLinkSchema = zod.z.object({
4266
+ name: zod.z.string().refine(maxGraphemes(60)).max(600),
4267
+ url: uriSchema.max(2048)
4268
+ });
4257
4269
  var OrgProfileRecordSchema = zod.z.object({
4258
4270
  name: zod.z.string().min(1).refine(maxGraphemes(200)).max(2e3),
4259
4271
  description: zod.z.string().refine(maxGraphemes(5e3)).max(5e4).optional(),
@@ -4263,6 +4275,17 @@ var OrgProfileRecordSchema = zod.z.object({
4263
4275
  entityRefs: zod.z.array(uriSchema).max(20).optional(),
4264
4276
  /** Contact email. NOT rendered publicly; validated as email at the app layer. */
4265
4277
  contact: zod.z.string().optional(),
4278
+ /** Physical addresses (headquarters, offices). */
4279
+ addresses: zod.z.array(orgAddressSchema).max(10).optional(),
4280
+ /**
4281
+ * Self-selected headcount range (a declared bucket, never a calculated count).
4282
+ * Open enum (bare-string knownValues in the lexicon): `1-10`, `11-50`,
4283
+ * `51-200`, `201-500`, `501-1000`, `1001-5000`, `5001-10000`, `10001+`. Any
4284
+ * string is accepted so future ranges do not break older records.
4285
+ */
4286
+ companySize: zod.z.string().optional(),
4287
+ /** Featured links or content surfaced on the org profile. */
4288
+ links: zod.z.array(orgLinkSchema).max(10).optional(),
4266
4289
  labels: selfLabelsSchema.optional(),
4267
4290
  createdAt: datetimeSchema
4268
4291
  });
@@ -4597,7 +4620,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
4597
4620
  });
4598
4621
 
4599
4622
  // src/index.ts
4600
- var SIFA_SDK_VERSION = "0.12.20";
4623
+ var SIFA_SDK_VERSION = "0.12.21";
4601
4624
 
4602
4625
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
4603
4626
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;