@singi-labs/sifa-sdk 0.11.23 → 0.11.25
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/{adult-content-DLMF0jAx.d.cts → adult-content-pvNBfDQL.d.cts} +32 -1
- package/dist/{adult-content-DLMF0jAx.d.ts → adult-content-pvNBfDQL.d.ts} +32 -1
- package/dist/{feed-DMWCGvKv.d.cts → feed-D2ZV8Eaj.d.cts} +74 -1
- package/dist/{feed-DMWCGvKv.d.ts → feed-D2ZV8Eaj.d.ts} +74 -1
- package/dist/index-BXi6sYhX.d.ts +611 -0
- package/dist/index-CCi2sg_u.d.ts +261 -0
- package/dist/index-CtH-frgT.d.cts +611 -0
- package/dist/index-OBJQIB9t.d.cts +261 -0
- package/dist/index.cjs +134 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +64 -7
- package/dist/index.d.ts +64 -7
- package/dist/index.js +120 -2
- package/dist/index.js.map +1 -1
- package/dist/{keys-OgHsKn9B.d.ts → keys-CxTXTPnI.d.ts} +2 -2
- package/dist/{keys-6Ck_vMeF.d.cts → keys-c5LIN2pO.d.cts} +2 -2
- package/dist/query/fetchers/index.cjs +11 -0
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +4 -247
- package/dist/query/fetchers/index.d.ts +4 -247
- package/dist/query/fetchers/index.js +11 -0
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +11 -0
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.d.cts +6 -558
- package/dist/query/hooks/index.d.ts +6 -558
- package/dist/query/hooks/index.js +11 -0
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +47 -0
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +6 -6
- package/dist/query/index.d.ts +6 -6
- package/dist/query/index.js +44 -1
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +14 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +415 -3
- package/dist/schemas/index.d.ts +415 -3
- package/dist/schemas/index.js +12 -1
- package/dist/schemas/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/shared-CHCY7Lst.d.cts +0 -416
- package/dist/shared-CHCY7Lst.d.ts +0 -416
|
@@ -47,6 +47,13 @@ interface ProfilePosition {
|
|
|
47
47
|
interface ProfileEducation {
|
|
48
48
|
rkey: string;
|
|
49
49
|
institution: string;
|
|
50
|
+
/**
|
|
51
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) written when the user
|
|
52
|
+
* links the institution to a resolved organization (#159/#241). Absent for
|
|
53
|
+
* free-text entries. Mirrors `ProfilePosition.entityRef`; the AppView sends it
|
|
54
|
+
* for display (the "Linked" badge).
|
|
55
|
+
*/
|
|
56
|
+
entityRef?: string;
|
|
50
57
|
degree?: string;
|
|
51
58
|
fieldOfStudy?: string;
|
|
52
59
|
description?: string;
|
|
@@ -100,6 +107,12 @@ interface ProfileCertification {
|
|
|
100
107
|
rkey: string;
|
|
101
108
|
name: string;
|
|
102
109
|
issuingOrg: string;
|
|
110
|
+
/**
|
|
111
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the issuing
|
|
112
|
+
* organization to a resolved entity (#159/#241). Absent for free-text entries.
|
|
113
|
+
* Mirrors `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
114
|
+
*/
|
|
115
|
+
entityRef?: string;
|
|
103
116
|
issueDate?: string;
|
|
104
117
|
expiryDate?: string;
|
|
105
118
|
credentialUrl?: string;
|
|
@@ -160,6 +173,12 @@ interface ProfilePublication {
|
|
|
160
173
|
interface ProfileVolunteering {
|
|
161
174
|
rkey: string;
|
|
162
175
|
organization: string;
|
|
176
|
+
/**
|
|
177
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the
|
|
178
|
+
* organization to a resolved entity (#159/#241). Absent for free-text entries.
|
|
179
|
+
* Mirrors `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
180
|
+
*/
|
|
181
|
+
entityRef?: string;
|
|
163
182
|
role?: string;
|
|
164
183
|
cause?: string;
|
|
165
184
|
startDate?: string;
|
|
@@ -171,6 +190,12 @@ interface ProfileHonor {
|
|
|
171
190
|
rkey: string;
|
|
172
191
|
title: string;
|
|
173
192
|
issuer?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the issuer to a
|
|
195
|
+
* resolved entity (#159/#241). Absent for free-text entries. Mirrors
|
|
196
|
+
* `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
197
|
+
*/
|
|
198
|
+
entityRef?: string;
|
|
174
199
|
date?: string;
|
|
175
200
|
description?: string;
|
|
176
201
|
hidden?: boolean;
|
|
@@ -232,6 +257,12 @@ interface ProfileCourse {
|
|
|
232
257
|
rkey: string;
|
|
233
258
|
name: string;
|
|
234
259
|
institution?: string;
|
|
260
|
+
/**
|
|
261
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the institution
|
|
262
|
+
* to a resolved entity (#159/#241). Absent for free-text entries. Mirrors
|
|
263
|
+
* `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
264
|
+
*/
|
|
265
|
+
entityRef?: string;
|
|
235
266
|
number?: string;
|
|
236
267
|
/** rkey of the associated certification, resolved from the course's
|
|
237
268
|
* `credential` at-uri. Used to join the course to a certification in the
|
|
@@ -486,4 +517,4 @@ declare function hasAdultContent(item: {
|
|
|
486
517
|
labels?: ActivityLabel[];
|
|
487
518
|
}): boolean;
|
|
488
519
|
|
|
489
|
-
export { type AdultContentLabel as A,
|
|
520
|
+
export { type AdultContentLabel as A, type PublicationContributor as B, type CoSpeaker as C, type SkillRef as D, type ExternalAccount as E, type FeedItem as F, hasAdultContent as G, type LocationValue as L, type ProfileSkill as P, type SkillSuggestion as S, type TrustStat as T, type VerifiedAccount as V, type ActivityLabel as a, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, ADULT_CONTENT_LABELS as e, type ActiveApp as f, type Endorsement as g, type EndorsementData as h, type ExternalAccountKeytraceClaim as i, type LanguageProficiency as j, type PresentationLinkView as k, type ProfileCertification as l, type ProfileCourse as m, type ProfileEducation as n, type ProfileHonor as o, type ProfileIndustry as p, type ProfileInvolvement as q, type ProfileInvolvementLink as r, type ProfileLanguage as s, type ProfileLocation as t, type ProfileOverrideSource as u, type ProfilePosition as v, type ProfilePresentation as w, type ProfileProject as x, type ProfilePublication as y, type ProfileVolunteering as z };
|
|
@@ -47,6 +47,13 @@ interface ProfilePosition {
|
|
|
47
47
|
interface ProfileEducation {
|
|
48
48
|
rkey: string;
|
|
49
49
|
institution: string;
|
|
50
|
+
/**
|
|
51
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) written when the user
|
|
52
|
+
* links the institution to a resolved organization (#159/#241). Absent for
|
|
53
|
+
* free-text entries. Mirrors `ProfilePosition.entityRef`; the AppView sends it
|
|
54
|
+
* for display (the "Linked" badge).
|
|
55
|
+
*/
|
|
56
|
+
entityRef?: string;
|
|
50
57
|
degree?: string;
|
|
51
58
|
fieldOfStudy?: string;
|
|
52
59
|
description?: string;
|
|
@@ -100,6 +107,12 @@ interface ProfileCertification {
|
|
|
100
107
|
rkey: string;
|
|
101
108
|
name: string;
|
|
102
109
|
issuingOrg: string;
|
|
110
|
+
/**
|
|
111
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the issuing
|
|
112
|
+
* organization to a resolved entity (#159/#241). Absent for free-text entries.
|
|
113
|
+
* Mirrors `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
114
|
+
*/
|
|
115
|
+
entityRef?: string;
|
|
103
116
|
issueDate?: string;
|
|
104
117
|
expiryDate?: string;
|
|
105
118
|
credentialUrl?: string;
|
|
@@ -160,6 +173,12 @@ interface ProfilePublication {
|
|
|
160
173
|
interface ProfileVolunteering {
|
|
161
174
|
rkey: string;
|
|
162
175
|
organization: string;
|
|
176
|
+
/**
|
|
177
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the
|
|
178
|
+
* organization to a resolved entity (#159/#241). Absent for free-text entries.
|
|
179
|
+
* Mirrors `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
180
|
+
*/
|
|
181
|
+
entityRef?: string;
|
|
163
182
|
role?: string;
|
|
164
183
|
cause?: string;
|
|
165
184
|
startDate?: string;
|
|
@@ -171,6 +190,12 @@ interface ProfileHonor {
|
|
|
171
190
|
rkey: string;
|
|
172
191
|
title: string;
|
|
173
192
|
issuer?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the issuer to a
|
|
195
|
+
* resolved entity (#159/#241). Absent for free-text entries. Mirrors
|
|
196
|
+
* `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
197
|
+
*/
|
|
198
|
+
entityRef?: string;
|
|
174
199
|
date?: string;
|
|
175
200
|
description?: string;
|
|
176
201
|
hidden?: boolean;
|
|
@@ -232,6 +257,12 @@ interface ProfileCourse {
|
|
|
232
257
|
rkey: string;
|
|
233
258
|
name: string;
|
|
234
259
|
institution?: string;
|
|
260
|
+
/**
|
|
261
|
+
* Portable org entity identifier (Wikidata/ROR/LEI URI) linking the institution
|
|
262
|
+
* to a resolved entity (#159/#241). Absent for free-text entries. Mirrors
|
|
263
|
+
* `ProfilePosition.entityRef`; the AppView sends it for display.
|
|
264
|
+
*/
|
|
265
|
+
entityRef?: string;
|
|
235
266
|
number?: string;
|
|
236
267
|
/** rkey of the associated certification, resolved from the course's
|
|
237
268
|
* `credential` at-uri. Used to join the course to a certification in the
|
|
@@ -486,4 +517,4 @@ declare function hasAdultContent(item: {
|
|
|
486
517
|
labels?: ActivityLabel[];
|
|
487
518
|
}): boolean;
|
|
488
519
|
|
|
489
|
-
export { type AdultContentLabel as A,
|
|
520
|
+
export { type AdultContentLabel as A, type PublicationContributor as B, type CoSpeaker as C, type SkillRef as D, type ExternalAccount as E, type FeedItem as F, hasAdultContent as G, type LocationValue as L, type ProfileSkill as P, type SkillSuggestion as S, type TrustStat as T, type VerifiedAccount as V, type ActivityLabel as a, type ProfilePresentationDelivery as b, type PdsProviderInfo as c, type Profile as d, ADULT_CONTENT_LABELS as e, type ActiveApp as f, type Endorsement as g, type EndorsementData as h, type ExternalAccountKeytraceClaim as i, type LanguageProficiency as j, type PresentationLinkView as k, type ProfileCertification as l, type ProfileCourse as m, type ProfileEducation as n, type ProfileHonor as o, type ProfileIndustry as p, type ProfileInvolvement as q, type ProfileInvolvementLink as r, type ProfileLanguage as s, type ProfileLocation as t, type ProfileOverrideSource as u, type ProfilePosition as v, type ProfilePresentation as w, type ProfileProject as x, type ProfilePublication as y, type ProfileVolunteering as z };
|
|
@@ -96,6 +96,79 @@ declare const EntityImportSearchResponseSchema: z.ZodObject<{
|
|
|
96
96
|
}, z.core.$strip>], "source">>;
|
|
97
97
|
}, z.core.$strip>;
|
|
98
98
|
type EntityImportSearchResponse = z.infer<typeof EntityImportSearchResponseSchema>;
|
|
99
|
+
/**
|
|
100
|
+
* Body of the domain grow-on-demand endpoints (`POST /api/entities/resolve-domain`
|
|
101
|
+
* and `POST /api/entities/mint-domain`). The server re-validates the value as a
|
|
102
|
+
* registrable domain; 253 is the max DNS name length.
|
|
103
|
+
*/
|
|
104
|
+
declare const EntityResolveDomainRequestSchema: z.ZodObject<{
|
|
105
|
+
domain: z.ZodString;
|
|
106
|
+
}, z.core.$strip>;
|
|
107
|
+
type EntityResolveDomainRequest = z.infer<typeof EntityResolveDomainRequestSchema>;
|
|
108
|
+
/**
|
|
109
|
+
* Response of `POST /api/entities/resolve-domain` (grow-on-demand Branch 1). Any
|
|
110
|
+
* notable companies whose official website is the domain, imported from Wikidata.
|
|
111
|
+
* `canMint` is true when nothing notable matched AND the domain is eligible for
|
|
112
|
+
* the user-initiated mint-from-domain path -- it drives the "Add <domain>"
|
|
113
|
+
* affordance.
|
|
114
|
+
*/
|
|
115
|
+
declare const EntityResolveDomainResponseSchema: z.ZodObject<{
|
|
116
|
+
results: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
117
|
+
kind: z.ZodString;
|
|
118
|
+
name: z.ZodString;
|
|
119
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
120
|
+
country: z.ZodNullable<z.ZodString>;
|
|
121
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
122
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
123
|
+
source: z.ZodLiteral<"entity">;
|
|
124
|
+
entityId: z.ZodNumber;
|
|
125
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
126
|
+
kind: z.ZodString;
|
|
127
|
+
name: z.ZodString;
|
|
128
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
129
|
+
country: z.ZodNullable<z.ZodString>;
|
|
130
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
131
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
132
|
+
source: z.ZodLiteral<"pdl">;
|
|
133
|
+
pdlId: z.ZodString;
|
|
134
|
+
}, z.core.$strip>], "source">>;
|
|
135
|
+
canMint: z.ZodBoolean;
|
|
136
|
+
}, z.core.$strip>;
|
|
137
|
+
type EntityResolveDomainResponse = z.infer<typeof EntityResolveDomainResponseSchema>;
|
|
138
|
+
/**
|
|
139
|
+
* Response of `POST /api/entities/mint-domain` (grow-on-demand Branch 2). The
|
|
140
|
+
* linkable entity minted from (or already resolved for) the domain. A non-2xx
|
|
141
|
+
* status (e.g. the domain is not mintable, a confusable look-alike, or the site
|
|
142
|
+
* yielded nothing usable) surfaces as a thrown error, not a null result.
|
|
143
|
+
*
|
|
144
|
+
* `pending` is true when the entity is a fresh hidden-pending mint: the
|
|
145
|
+
* requesting user's own link resolves to it immediately, but it stays out of
|
|
146
|
+
* other users' typeahead + aggregation until an admin approves it. Clients should
|
|
147
|
+
* reflect this ("added -- pending review") rather than "added & live".
|
|
148
|
+
*/
|
|
149
|
+
declare const EntityMintDomainResponseSchema: z.ZodObject<{
|
|
150
|
+
result: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
151
|
+
kind: z.ZodString;
|
|
152
|
+
name: z.ZodString;
|
|
153
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
154
|
+
country: z.ZodNullable<z.ZodString>;
|
|
155
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
156
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
157
|
+
source: z.ZodLiteral<"entity">;
|
|
158
|
+
entityId: z.ZodNumber;
|
|
159
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
160
|
+
kind: z.ZodString;
|
|
161
|
+
name: z.ZodString;
|
|
162
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
163
|
+
country: z.ZodNullable<z.ZodString>;
|
|
164
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
165
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
166
|
+
source: z.ZodLiteral<"pdl">;
|
|
167
|
+
pdlId: z.ZodString;
|
|
168
|
+
}, z.core.$strip>], "source">;
|
|
169
|
+
pending: z.ZodBoolean;
|
|
170
|
+
}, z.core.$strip>;
|
|
171
|
+
type EntityMintDomainResponse = z.infer<typeof EntityMintDomainResponseSchema>;
|
|
99
172
|
|
|
100
173
|
/**
|
|
101
174
|
* Profile row shared across `/api/following`, `/api/profile/:handleOrDid/mutuals`,
|
|
@@ -348,4 +421,4 @@ interface FeedCursor {
|
|
|
348
421
|
declare function encodeFeedCursor(cursor: FeedCursor): string;
|
|
349
422
|
declare function decodeFeedCursor(encoded: string): FeedCursor;
|
|
350
423
|
|
|
351
|
-
export { type AtmosphereFeedItem as A,
|
|
424
|
+
export { type AtmosphereFeedItem as A, FollowFeedPageSchema as B, type FollowProfilePage as C, FollowProfilePageSchema as D, type EntitySearchResult as E, type FollowFeedPage as F, FollowProfileSchema as G, SifaFeedItemSchema as H, decodeFeedCursor as I, encodeFeedCursor as J, type SifaFeedItem as S, type FollowProfileItem as a, type FeatureAllowlistEntry as b, type FeatureFlag as c, AtmosphereFeedItemSchema as d, type EntityImportSearchResponse as e, EntityImportSearchResponseSchema as f, type EntityMintDomainResponse as g, EntityMintDomainResponseSchema as h, type EntityResolveDomainRequest as i, EntityResolveDomainRequestSchema as j, type EntityResolveDomainResponse as k, EntityResolveDomainResponseSchema as l, type EntitySearchResponse as m, EntitySearchResponseSchema as n, EntitySearchResultSchema as o, type EntitySelectRequest as p, EntitySelectRequestSchema as q, type EntitySelectResponse as r, EntitySelectResponseSchema as s, FEATURE_FLAGS as t, FeatureAllowlistEntrySchema as u, type FeedActor as v, FeedActorSchema as w, type FeedCursor as x, type FollowFeedItem as y, FollowFeedItemSchema as z };
|
|
@@ -96,6 +96,79 @@ declare const EntityImportSearchResponseSchema: z.ZodObject<{
|
|
|
96
96
|
}, z.core.$strip>], "source">>;
|
|
97
97
|
}, z.core.$strip>;
|
|
98
98
|
type EntityImportSearchResponse = z.infer<typeof EntityImportSearchResponseSchema>;
|
|
99
|
+
/**
|
|
100
|
+
* Body of the domain grow-on-demand endpoints (`POST /api/entities/resolve-domain`
|
|
101
|
+
* and `POST /api/entities/mint-domain`). The server re-validates the value as a
|
|
102
|
+
* registrable domain; 253 is the max DNS name length.
|
|
103
|
+
*/
|
|
104
|
+
declare const EntityResolveDomainRequestSchema: z.ZodObject<{
|
|
105
|
+
domain: z.ZodString;
|
|
106
|
+
}, z.core.$strip>;
|
|
107
|
+
type EntityResolveDomainRequest = z.infer<typeof EntityResolveDomainRequestSchema>;
|
|
108
|
+
/**
|
|
109
|
+
* Response of `POST /api/entities/resolve-domain` (grow-on-demand Branch 1). Any
|
|
110
|
+
* notable companies whose official website is the domain, imported from Wikidata.
|
|
111
|
+
* `canMint` is true when nothing notable matched AND the domain is eligible for
|
|
112
|
+
* the user-initiated mint-from-domain path -- it drives the "Add <domain>"
|
|
113
|
+
* affordance.
|
|
114
|
+
*/
|
|
115
|
+
declare const EntityResolveDomainResponseSchema: z.ZodObject<{
|
|
116
|
+
results: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
117
|
+
kind: z.ZodString;
|
|
118
|
+
name: z.ZodString;
|
|
119
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
120
|
+
country: z.ZodNullable<z.ZodString>;
|
|
121
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
122
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
123
|
+
source: z.ZodLiteral<"entity">;
|
|
124
|
+
entityId: z.ZodNumber;
|
|
125
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
126
|
+
kind: z.ZodString;
|
|
127
|
+
name: z.ZodString;
|
|
128
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
129
|
+
country: z.ZodNullable<z.ZodString>;
|
|
130
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
131
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
132
|
+
source: z.ZodLiteral<"pdl">;
|
|
133
|
+
pdlId: z.ZodString;
|
|
134
|
+
}, z.core.$strip>], "source">>;
|
|
135
|
+
canMint: z.ZodBoolean;
|
|
136
|
+
}, z.core.$strip>;
|
|
137
|
+
type EntityResolveDomainResponse = z.infer<typeof EntityResolveDomainResponseSchema>;
|
|
138
|
+
/**
|
|
139
|
+
* Response of `POST /api/entities/mint-domain` (grow-on-demand Branch 2). The
|
|
140
|
+
* linkable entity minted from (or already resolved for) the domain. A non-2xx
|
|
141
|
+
* status (e.g. the domain is not mintable, a confusable look-alike, or the site
|
|
142
|
+
* yielded nothing usable) surfaces as a thrown error, not a null result.
|
|
143
|
+
*
|
|
144
|
+
* `pending` is true when the entity is a fresh hidden-pending mint: the
|
|
145
|
+
* requesting user's own link resolves to it immediately, but it stays out of
|
|
146
|
+
* other users' typeahead + aggregation until an admin approves it. Clients should
|
|
147
|
+
* reflect this ("added -- pending review") rather than "added & live".
|
|
148
|
+
*/
|
|
149
|
+
declare const EntityMintDomainResponseSchema: z.ZodObject<{
|
|
150
|
+
result: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
151
|
+
kind: z.ZodString;
|
|
152
|
+
name: z.ZodString;
|
|
153
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
154
|
+
country: z.ZodNullable<z.ZodString>;
|
|
155
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
156
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
157
|
+
source: z.ZodLiteral<"entity">;
|
|
158
|
+
entityId: z.ZodNumber;
|
|
159
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
160
|
+
kind: z.ZodString;
|
|
161
|
+
name: z.ZodString;
|
|
162
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
163
|
+
country: z.ZodNullable<z.ZodString>;
|
|
164
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
165
|
+
parentName: z.ZodNullable<z.ZodString>;
|
|
166
|
+
source: z.ZodLiteral<"pdl">;
|
|
167
|
+
pdlId: z.ZodString;
|
|
168
|
+
}, z.core.$strip>], "source">;
|
|
169
|
+
pending: z.ZodBoolean;
|
|
170
|
+
}, z.core.$strip>;
|
|
171
|
+
type EntityMintDomainResponse = z.infer<typeof EntityMintDomainResponseSchema>;
|
|
99
172
|
|
|
100
173
|
/**
|
|
101
174
|
* Profile row shared across `/api/following`, `/api/profile/:handleOrDid/mutuals`,
|
|
@@ -348,4 +421,4 @@ interface FeedCursor {
|
|
|
348
421
|
declare function encodeFeedCursor(cursor: FeedCursor): string;
|
|
349
422
|
declare function decodeFeedCursor(encoded: string): FeedCursor;
|
|
350
423
|
|
|
351
|
-
export { type AtmosphereFeedItem as A,
|
|
424
|
+
export { type AtmosphereFeedItem as A, FollowFeedPageSchema as B, type FollowProfilePage as C, FollowProfilePageSchema as D, type EntitySearchResult as E, type FollowFeedPage as F, FollowProfileSchema as G, SifaFeedItemSchema as H, decodeFeedCursor as I, encodeFeedCursor as J, type SifaFeedItem as S, type FollowProfileItem as a, type FeatureAllowlistEntry as b, type FeatureFlag as c, AtmosphereFeedItemSchema as d, type EntityImportSearchResponse as e, EntityImportSearchResponseSchema as f, type EntityMintDomainResponse as g, EntityMintDomainResponseSchema as h, type EntityResolveDomainRequest as i, EntityResolveDomainRequestSchema as j, type EntityResolveDomainResponse as k, EntityResolveDomainResponseSchema as l, type EntitySearchResponse as m, EntitySearchResponseSchema as n, EntitySearchResultSchema as o, type EntitySelectRequest as p, EntitySelectRequestSchema as q, type EntitySelectResponse as r, EntitySelectResponseSchema as s, FEATURE_FLAGS as t, FeatureAllowlistEntrySchema as u, type FeedActor as v, FeedActorSchema as w, type FeedCursor as x, type FollowFeedItem as y, FollowFeedItemSchema as z };
|