@waldofyi/sdk 0.1.0

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.

Potentially problematic release.


This version of @waldofyi/sdk might be problematic. Click here for more details.

Files changed (67) hide show
  1. package/LICENSE +40 -0
  2. package/README.md +37 -0
  3. package/dist/client/client.gen.d.ts +3 -0
  4. package/dist/client/client.gen.d.ts.map +1 -0
  5. package/dist/client/client.gen.js +218 -0
  6. package/dist/client/client.gen.js.map +1 -0
  7. package/dist/client/index.d.ts +11 -0
  8. package/dist/client/index.d.ts.map +1 -0
  9. package/dist/client/index.js +7 -0
  10. package/dist/client/index.js.map +1 -0
  11. package/dist/client/types.gen.d.ts +121 -0
  12. package/dist/client/types.gen.d.ts.map +1 -0
  13. package/dist/client/types.gen.js +3 -0
  14. package/dist/client/types.gen.js.map +1 -0
  15. package/dist/client/utils.gen.d.ts +38 -0
  16. package/dist/client/utils.gen.d.ts.map +1 -0
  17. package/dist/client/utils.gen.js +232 -0
  18. package/dist/client/utils.gen.js.map +1 -0
  19. package/dist/client.gen.d.ts +13 -0
  20. package/dist/client.gen.d.ts.map +1 -0
  21. package/dist/client.gen.js +4 -0
  22. package/dist/client.gen.js.map +1 -0
  23. package/dist/core/auth.gen.d.ts +26 -0
  24. package/dist/core/auth.gen.d.ts.map +1 -0
  25. package/dist/core/auth.gen.js +15 -0
  26. package/dist/core/auth.gen.js.map +1 -0
  27. package/dist/core/bodySerializer.gen.d.ts +26 -0
  28. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  29. package/dist/core/bodySerializer.gen.js +58 -0
  30. package/dist/core/bodySerializer.gen.js.map +1 -0
  31. package/dist/core/params.gen.d.ts +44 -0
  32. package/dist/core/params.gen.d.ts.map +1 -0
  33. package/dist/core/params.gen.js +113 -0
  34. package/dist/core/params.gen.js.map +1 -0
  35. package/dist/core/pathSerializer.gen.d.ts +34 -0
  36. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  37. package/dist/core/pathSerializer.gen.js +115 -0
  38. package/dist/core/pathSerializer.gen.js.map +1 -0
  39. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  40. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  41. package/dist/core/queryKeySerializer.gen.js +100 -0
  42. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  43. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  44. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  45. package/dist/core/serverSentEvents.gen.js +137 -0
  46. package/dist/core/serverSentEvents.gen.js.map +1 -0
  47. package/dist/core/types.gen.d.ts +84 -0
  48. package/dist/core/types.gen.d.ts.map +1 -0
  49. package/dist/core/types.gen.js +3 -0
  50. package/dist/core/types.gen.js.map +1 -0
  51. package/dist/core/utils.gen.d.ts +20 -0
  52. package/dist/core/utils.gen.d.ts.map +1 -0
  53. package/dist/core/utils.gen.js +88 -0
  54. package/dist/core/utils.gen.js.map +1 -0
  55. package/dist/index.d.ts +4 -0
  56. package/dist/index.d.ts.map +1 -0
  57. package/dist/index.js +4 -0
  58. package/dist/index.js.map +1 -0
  59. package/dist/sdk.gen.d.ts +408 -0
  60. package/dist/sdk.gen.d.ts.map +1 -0
  61. package/dist/sdk.gen.js +455 -0
  62. package/dist/sdk.gen.js.map +1 -0
  63. package/dist/types.gen.d.ts +2701 -0
  64. package/dist/types.gen.d.ts.map +1 -0
  65. package/dist/types.gen.js +3 -0
  66. package/dist/types.gen.js.map +1 -0
  67. package/package.json +49 -0
@@ -0,0 +1,88 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ import { serializeArrayParam, serializeObjectParam, serializePrimitiveParam, } from "./pathSerializer.gen";
3
+ export const PATH_PARAM_RE = /\{[^{}]+\}/g;
4
+ export const defaultPathSerializer = ({ path, url: _url, }) => {
5
+ let url = _url;
6
+ const matches = _url.match(PATH_PARAM_RE);
7
+ if (matches) {
8
+ for (const match of matches) {
9
+ let explode = false;
10
+ let name = match.substring(1, match.length - 1);
11
+ let style = "simple";
12
+ if (name.endsWith("*")) {
13
+ explode = true;
14
+ name = name.substring(0, name.length - 1);
15
+ }
16
+ if (name.startsWith(".")) {
17
+ name = name.substring(1);
18
+ style = "label";
19
+ }
20
+ else if (name.startsWith(";")) {
21
+ name = name.substring(1);
22
+ style = "matrix";
23
+ }
24
+ const value = path[name];
25
+ if (value === undefined || value === null) {
26
+ continue;
27
+ }
28
+ if (Array.isArray(value)) {
29
+ url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
30
+ continue;
31
+ }
32
+ if (typeof value === "object") {
33
+ url = url.replace(match, serializeObjectParam({
34
+ explode,
35
+ name,
36
+ style,
37
+ value: value,
38
+ valueOnly: true,
39
+ }));
40
+ continue;
41
+ }
42
+ if (style === "matrix") {
43
+ url = url.replace(match, `;${serializePrimitiveParam({
44
+ name,
45
+ value: value,
46
+ })}`);
47
+ continue;
48
+ }
49
+ const replaceValue = encodeURIComponent(style === "label" ? `.${value}` : value);
50
+ url = url.replace(match, replaceValue);
51
+ }
52
+ }
53
+ return url;
54
+ };
55
+ export const getUrl = ({ baseUrl, path, query, querySerializer, url: _url, }) => {
56
+ const pathUrl = _url.startsWith("/") ? _url : `/${_url}`;
57
+ let url = (baseUrl ?? "") + pathUrl;
58
+ if (path) {
59
+ url = defaultPathSerializer({ path, url });
60
+ }
61
+ let search = query ? querySerializer(query) : "";
62
+ if (search.startsWith("?")) {
63
+ search = search.substring(1);
64
+ }
65
+ if (search) {
66
+ url += `?${search}`;
67
+ }
68
+ return url;
69
+ };
70
+ export function getValidRequestBody(options) {
71
+ const hasBody = options.body !== undefined;
72
+ const isSerializedBody = hasBody && options.bodySerializer;
73
+ if (isSerializedBody) {
74
+ if ("serializedBody" in options) {
75
+ const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== "";
76
+ return hasSerializedBody ? options.serializedBody : null;
77
+ }
78
+ // not all clients implement a serializedBody property (i.e., client-axios)
79
+ return options.body !== "" ? options.body : null;
80
+ }
81
+ // plain/text body
82
+ if (hasBody) {
83
+ return options.body;
84
+ }
85
+ // no body was provided
86
+ return undefined;
87
+ }
88
+ //# sourceMappingURL=utils.gen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.gen.js","sourceRoot":"","sources":["../../src/core/utils.gen.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ export { client, type CreateClientConfig } from "./client.gen";
2
+ export { apiKeyCreate, apiKeyList, apiKeyRevoke, brandCompare, brandGet, brandMentionsGet, brandMentionsList, brandMentionsSummary, brandOwnedMediaPostsGet, brandOwnedMediaPostsList, brandOwnedMediaSummary, brandPaidMediaAdsGet, brandPaidMediaAdsLandingPageGet, brandPaidMediaAdsList, brandPaidMediaSummary, brandPlatformsGet, brandPlatformsList, brandSearch, brandTimeseries, communityGet, communityPosts, communityUserComments, communityUserPosts, discoverAds, discoverCommunities, discoverCompanies, discoverJobs, discoverPosts, discoverPosts2, discoverPosts3, discoverPosts4, discoverPosts5, discoverPosts6, discoverPosts7, discoverPosts8, discoverTrends, discoverUsers, enrichmentCompanyGet, enrichmentCompanyJobs, enrichmentCompanyPeople, enrichmentCompanySearch, enrichmentPostComments, enrichmentPostGet, enrichmentPostLookup, enrichmentProfileFollowing, enrichmentProfileGet, enrichmentProfilePosts, enrichmentVideoTranscript, executionGet, executionList, getUsage, getV1Account, getV1AccountBalance, getV1AccountUsage, getV1BrandSearch, getV1CollectionWindows, type Options, postV1CollectionWindows, runGet, runList, teamCreate, teamGet, teamList, teamListFlags, teamSetBillable, teamSetFlag, } from "./sdk.gen";
3
+ export type { AccountBalance, AccountProfile, AccountUsage, Ad, AdAnalysis, AdAnalysisEntity, AdAnalysisOffer, AdLandingPage, AdminTeamRow, AdPromotion, ApiKeyCreated, ApiKeyCreateData, ApiKeyCreateError, ApiKeyCreateErrors, ApiKeyCreateResponse, ApiKeyCreateResponses, ApiKeyListData, ApiKeyListError, ApiKeyListErrors, ApiKeyListResponse, ApiKeyListResponses, ApiKeyMetadata, ApiKeyRevokeData, ApiKeyRevokeError, ApiKeyRevokeErrors, ApiKeyRevokeResponse, ApiKeyRevokeResponses, BrandCategory, BrandCompareData, BrandCompareError, BrandCompareErrors, BrandCompareResponse, BrandCompareResponses, BrandComparison, BrandDetail, BrandGetData, BrandGetError, BrandGetErrors, BrandGetResponse, BrandGetResponses, BrandMentionsGetData, BrandMentionsGetError, BrandMentionsGetErrors, BrandMentionsGetResponse, BrandMentionsGetResponses, BrandMentionsListData, BrandMentionsListError, BrandMentionsListErrors, BrandMentionsListResponse, BrandMentionsListResponses, BrandMentionsSummaryData, BrandMentionsSummaryError, BrandMentionsSummaryErrors, BrandMentionsSummaryResponse, BrandMentionsSummaryResponses, BrandOwnedMediaPostsGetData, BrandOwnedMediaPostsGetError, BrandOwnedMediaPostsGetErrors, BrandOwnedMediaPostsGetResponse, BrandOwnedMediaPostsGetResponses, BrandOwnedMediaPostsListData, BrandOwnedMediaPostsListError, BrandOwnedMediaPostsListErrors, BrandOwnedMediaPostsListResponse, BrandOwnedMediaPostsListResponses, BrandOwnedMediaSummaryData, BrandOwnedMediaSummaryError, BrandOwnedMediaSummaryErrors, BrandOwnedMediaSummaryResponse, BrandOwnedMediaSummaryResponses, BrandPaidMediaAdsGetData, BrandPaidMediaAdsGetError, BrandPaidMediaAdsGetErrors, BrandPaidMediaAdsGetResponse, BrandPaidMediaAdsGetResponses, BrandPaidMediaAdsLandingPageGetData, BrandPaidMediaAdsLandingPageGetError, BrandPaidMediaAdsLandingPageGetErrors, BrandPaidMediaAdsLandingPageGetResponse, BrandPaidMediaAdsLandingPageGetResponses, BrandPaidMediaAdsListData, BrandPaidMediaAdsListError, BrandPaidMediaAdsListErrors, BrandPaidMediaAdsListResponse, BrandPaidMediaAdsListResponses, BrandPaidMediaSummaryData, BrandPaidMediaSummaryError, BrandPaidMediaSummaryErrors, BrandPaidMediaSummaryResponse, BrandPaidMediaSummaryResponses, BrandPlatformsGetData, BrandPlatformsGetError, BrandPlatformsGetErrors, BrandPlatformsGetResponse, BrandPlatformsGetResponses, BrandPlatformsListData, BrandPlatformsListError, BrandPlatformsListErrors, BrandPlatformsListResponse, BrandPlatformsListResponses, BrandSearchData, BrandSearchResponse, BrandSearchResponses, BrandSummary, BrandTimeseriesData, BrandTimeseriesError, BrandTimeseriesErrors, BrandTimeseriesResponse, BrandTimeseriesResponses, ClientOptions, CollectionWindow, CommunityGetData, CommunityGetResponse, CommunityGetResponses, CommunityPostsData, CommunityPostsResponse, CommunityPostsResponses, CommunityUserCommentsData, CommunityUserCommentsResponse, CommunityUserCommentsResponses, CommunityUserPostsData, CommunityUserPostsResponse, CommunityUserPostsResponses, DiscoverAdsData, DiscoverAdsResponse, DiscoverAdsResponses, DiscoverCommunitiesData, DiscoverCommunitiesResponse, DiscoverCommunitiesResponses, DiscoverCompaniesData, DiscoverCompaniesResponse, DiscoverCompaniesResponses, DiscoverJobsData, DiscoverJobsResponse, DiscoverJobsResponses, DiscoverPosts2Data, DiscoverPosts2Response, DiscoverPosts2Responses, DiscoverPosts3Data, DiscoverPosts3Response, DiscoverPosts3Responses, DiscoverPosts4Data, DiscoverPosts4Response, DiscoverPosts4Responses, DiscoverPosts5Data, DiscoverPosts5Response, DiscoverPosts5Responses, DiscoverPosts6Data, DiscoverPosts6Response, DiscoverPosts6Responses, DiscoverPosts7Data, DiscoverPosts7Response, DiscoverPosts7Responses, DiscoverPosts8Data, DiscoverPosts8Response, DiscoverPosts8Responses, DiscoverPostsData, DiscoverPostsResponse, DiscoverPostsResponses, DiscoverTrendsData, DiscoverTrendsResponse, DiscoverTrendsResponses, DiscoverUsersData, DiscoverUsersResponse, DiscoverUsersResponses, EnrichmentCompanyGetData, EnrichmentCompanyGetResponse, EnrichmentCompanyGetResponses, EnrichmentCompanyJobsData, EnrichmentCompanyJobsResponse, EnrichmentCompanyJobsResponses, EnrichmentCompanyPeopleData, EnrichmentCompanyPeopleResponse, EnrichmentCompanyPeopleResponses, EnrichmentCompanySearchData, EnrichmentCompanySearchResponse, EnrichmentCompanySearchResponses, EnrichmentPostCommentsData, EnrichmentPostCommentsResponse, EnrichmentPostCommentsResponses, EnrichmentPostGetData, EnrichmentPostGetResponse, EnrichmentPostGetResponses, EnrichmentPostLookupData, EnrichmentPostLookupResponse, EnrichmentPostLookupResponses, EnrichmentProfileFollowingData, EnrichmentProfileFollowingResponse, EnrichmentProfileFollowingResponses, EnrichmentProfileGetData, EnrichmentProfileGetResponse, EnrichmentProfileGetResponses, EnrichmentProfilePostsData, EnrichmentProfilePostsResponse, EnrichmentProfilePostsResponses, EnrichmentVideoTranscriptData, EnrichmentVideoTranscriptResponse, EnrichmentVideoTranscriptResponses, Error, ExecutionDetail, ExecutionGetData, ExecutionGetError, ExecutionGetErrors, ExecutionGetResponse, ExecutionGetResponses, ExecutionListData, ExecutionListResponse, ExecutionListResponses, ExecutionSummary, GetUsageData, GetUsageResponse, GetUsageResponses, GetV1AccountBalanceData, GetV1AccountBalanceResponse, GetV1AccountBalanceResponses, GetV1AccountData, GetV1AccountResponse, GetV1AccountResponses, GetV1AccountUsageData, GetV1AccountUsageResponse, GetV1AccountUsageResponses, GetV1BrandSearchData, GetV1BrandSearchError, GetV1BrandSearchErrors, GetV1BrandSearchResponse, GetV1BrandSearchResponses, GetV1CollectionWindowsData, GetV1CollectionWindowsError, GetV1CollectionWindowsErrors, GetV1CollectionWindowsResponse, GetV1CollectionWindowsResponses, Mention, MentionsSummary, Meta, NormalizedPost, OwnedMediaSummary, PaidMediaSummary, Platform, Post, PostAnalysis, PostAnalysisEntity, PostDetail, PostMetadata, PostV1CollectionWindowsData, PostV1CollectionWindowsError, PostV1CollectionWindowsErrors, PostV1CollectionWindowsResponse, PostV1CollectionWindowsResponses, RateLimitBucketState, RedditComment, RedditSubredditDetails, RunDetail, RunGetData, RunGetError, RunGetErrors, RunGetResponse, RunGetResponses, RunListData, RunListResponse, RunListResponses, RunSummary, SearchResult, TeamCreateData, TeamCreateError, TeamCreateErrors, TeamCreateResponse, TeamCreateResponses, TeamFlagRow, TeamGetData, TeamGetError, TeamGetErrors, TeamGetResponse, TeamGetResponses, TeamListData, TeamListError, TeamListErrors, TeamListFlagsData, TeamListFlagsError, TeamListFlagsErrors, TeamListFlagsResponse, TeamListFlagsResponses, TeamListResponse, TeamListResponses, TeamSetBillableData, TeamSetBillableError, TeamSetBillableErrors, TeamSetBillableResponse, TeamSetBillableResponses, TeamSetFlagData, TeamSetFlagError, TeamSetFlagErrors, TeamSetFlagResponse, TeamSetFlagResponses, Timeseries, UsageResponse, } from "./types.gen";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ export { client } from "./client.gen";
3
+ export { apiKeyCreate, apiKeyList, apiKeyRevoke, brandCompare, brandGet, brandMentionsGet, brandMentionsList, brandMentionsSummary, brandOwnedMediaPostsGet, brandOwnedMediaPostsList, brandOwnedMediaSummary, brandPaidMediaAdsGet, brandPaidMediaAdsLandingPageGet, brandPaidMediaAdsList, brandPaidMediaSummary, brandPlatformsGet, brandPlatformsList, brandSearch, brandTimeseries, communityGet, communityPosts, communityUserComments, communityUserPosts, discoverAds, discoverCommunities, discoverCompanies, discoverJobs, discoverPosts, discoverPosts2, discoverPosts3, discoverPosts4, discoverPosts5, discoverPosts6, discoverPosts7, discoverPosts8, discoverTrends, discoverUsers, enrichmentCompanyGet, enrichmentCompanyJobs, enrichmentCompanyPeople, enrichmentCompanySearch, enrichmentPostComments, enrichmentPostGet, enrichmentPostLookup, enrichmentProfileFollowing, enrichmentProfileGet, enrichmentProfilePosts, enrichmentVideoTranscript, executionGet, executionList, getUsage, getV1Account, getV1AccountBalance, getV1AccountUsage, getV1BrandSearch, getV1CollectionWindows, postV1CollectionWindows, runGet, runList, teamCreate, teamGet, teamList, teamListFlags, teamSetBillable, teamSetFlag, } from "./sdk.gen";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAErD,OAAO,EAAE,MAAM,EAA2B,MAAM,cAAc,CAAC;AAC/D,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,iBAAiB,EACjB,oBAAoB,EACpB,uBAAuB,EACvB,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EACpB,+BAA+B,EAC/B,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,WAAW,EACX,eAAe,EACf,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,WAAW,EACX,mBAAmB,EACnB,iBAAiB,EACjB,YAAY,EACZ,aAAa,EACb,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,cAAc,EACd,aAAa,EACb,oBAAoB,EACpB,qBAAqB,EACrB,uBAAuB,EACvB,uBAAuB,EACvB,sBAAsB,EACtB,iBAAiB,EACjB,oBAAoB,EACpB,0BAA0B,EAC1B,oBAAoB,EACpB,sBAAsB,EACtB,yBAAyB,EACzB,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,YAAY,EACZ,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EAEtB,uBAAuB,EACvB,MAAM,EACN,OAAO,EACP,UAAU,EACV,OAAO,EACP,QAAQ,EACR,aAAa,EACb,eAAe,EACf,WAAW,GACZ,MAAM,WAAW,CAAC"}
@@ -0,0 +1,408 @@
1
+ import type { Client, ClientMeta, Options as Options2, RequestResult, TDataShape } from "./client";
2
+ import type { ApiKeyCreateData, ApiKeyCreateErrors, ApiKeyCreateResponses, ApiKeyListData, ApiKeyListErrors, ApiKeyListResponses, ApiKeyRevokeData, ApiKeyRevokeErrors, ApiKeyRevokeResponses, BrandCompareData, BrandCompareErrors, BrandCompareResponses, BrandGetData, BrandGetErrors, BrandGetResponses, BrandMentionsGetData, BrandMentionsGetErrors, BrandMentionsGetResponses, BrandMentionsListData, BrandMentionsListErrors, BrandMentionsListResponses, BrandMentionsSummaryData, BrandMentionsSummaryErrors, BrandMentionsSummaryResponses, BrandOwnedMediaPostsGetData, BrandOwnedMediaPostsGetErrors, BrandOwnedMediaPostsGetResponses, BrandOwnedMediaPostsListData, BrandOwnedMediaPostsListErrors, BrandOwnedMediaPostsListResponses, BrandOwnedMediaSummaryData, BrandOwnedMediaSummaryErrors, BrandOwnedMediaSummaryResponses, BrandPaidMediaAdsGetData, BrandPaidMediaAdsGetErrors, BrandPaidMediaAdsGetResponses, BrandPaidMediaAdsLandingPageGetData, BrandPaidMediaAdsLandingPageGetErrors, BrandPaidMediaAdsLandingPageGetResponses, BrandPaidMediaAdsListData, BrandPaidMediaAdsListErrors, BrandPaidMediaAdsListResponses, BrandPaidMediaSummaryData, BrandPaidMediaSummaryErrors, BrandPaidMediaSummaryResponses, BrandPlatformsGetData, BrandPlatformsGetErrors, BrandPlatformsGetResponses, BrandPlatformsListData, BrandPlatformsListErrors, BrandPlatformsListResponses, BrandSearchData, BrandSearchResponses, BrandTimeseriesData, BrandTimeseriesErrors, BrandTimeseriesResponses, CommunityGetData, CommunityGetResponses, CommunityPostsData, CommunityPostsResponses, CommunityUserCommentsData, CommunityUserCommentsResponses, CommunityUserPostsData, CommunityUserPostsResponses, DiscoverAdsData, DiscoverAdsResponses, DiscoverCommunitiesData, DiscoverCommunitiesResponses, DiscoverCompaniesData, DiscoverCompaniesResponses, DiscoverJobsData, DiscoverJobsResponses, DiscoverPosts2Data, DiscoverPosts2Responses, DiscoverPosts3Data, DiscoverPosts3Responses, DiscoverPosts4Data, DiscoverPosts4Responses, DiscoverPosts5Data, DiscoverPosts5Responses, DiscoverPosts6Data, DiscoverPosts6Responses, DiscoverPosts7Data, DiscoverPosts7Responses, DiscoverPosts8Data, DiscoverPosts8Responses, DiscoverPostsData, DiscoverPostsResponses, DiscoverTrendsData, DiscoverTrendsResponses, DiscoverUsersData, DiscoverUsersResponses, EnrichmentCompanyGetData, EnrichmentCompanyGetResponses, EnrichmentCompanyJobsData, EnrichmentCompanyJobsResponses, EnrichmentCompanyPeopleData, EnrichmentCompanyPeopleResponses, EnrichmentCompanySearchData, EnrichmentCompanySearchResponses, EnrichmentPostCommentsData, EnrichmentPostCommentsResponses, EnrichmentPostGetData, EnrichmentPostGetResponses, EnrichmentPostLookupData, EnrichmentPostLookupResponses, EnrichmentProfileFollowingData, EnrichmentProfileFollowingResponses, EnrichmentProfileGetData, EnrichmentProfileGetResponses, EnrichmentProfilePostsData, EnrichmentProfilePostsResponses, EnrichmentVideoTranscriptData, EnrichmentVideoTranscriptResponses, ExecutionGetData, ExecutionGetErrors, ExecutionGetResponses, ExecutionListData, ExecutionListResponses, GetUsageData, GetUsageResponses, GetV1AccountBalanceData, GetV1AccountBalanceResponses, GetV1AccountData, GetV1AccountResponses, GetV1AccountUsageData, GetV1AccountUsageResponses, GetV1BrandSearchData, GetV1BrandSearchErrors, GetV1BrandSearchResponses, GetV1CollectionWindowsData, GetV1CollectionWindowsErrors, GetV1CollectionWindowsResponses, PostV1CollectionWindowsData, PostV1CollectionWindowsErrors, PostV1CollectionWindowsResponses, RunGetData, RunGetErrors, RunGetResponses, RunListData, RunListResponses, TeamCreateData, TeamCreateErrors, TeamCreateResponses, TeamGetData, TeamGetErrors, TeamGetResponses, TeamListData, TeamListErrors, TeamListFlagsData, TeamListFlagsErrors, TeamListFlagsResponses, TeamListResponses, TeamSetBillableData, TeamSetBillableErrors, TeamSetBillableResponses, TeamSetFlagData, TeamSetFlagErrors, TeamSetFlagResponses } from "./types.gen";
3
+ export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options2<TData, ThrowOnError, TResponse> & {
4
+ /**
5
+ * You can provide a client instance returned by `createClient()` instead of
6
+ * individual options. This might be also useful if you want to implement a
7
+ * custom client.
8
+ */
9
+ client?: Client;
10
+ /**
11
+ * You can pass arbitrary values through the `meta` object. This can be
12
+ * used to access values that aren't defined as part of the SDK function.
13
+ */
14
+ meta?: keyof ClientMeta extends never ? Record<string, unknown> : ClientMeta;
15
+ };
16
+ /**
17
+ * List collection windows
18
+ *
19
+ * List all parallel-scheduling collection windows. Windows are global scheduling state shared across teams — Waldo admin only.
20
+ */
21
+ export declare const getV1CollectionWindows: <ThrowOnError extends boolean = false>(options?: Options<GetV1CollectionWindowsData, ThrowOnError>) => RequestResult<GetV1CollectionWindowsResponses, GetV1CollectionWindowsErrors, ThrowOnError>;
22
+ /**
23
+ * Create a collection window
24
+ *
25
+ * Create a parallel-scheduling collection window identified by (windowKey, period). Idempotent — re-creating an existing identity returns it unchanged. Templates can only reference windows that exist, so create the window before deploying a spec that declares it. Waldo admin only.
26
+ */
27
+ export declare const postV1CollectionWindows: <ThrowOnError extends boolean = false>(options?: Options<PostV1CollectionWindowsData, ThrowOnError>) => RequestResult<PostV1CollectionWindowsResponses, PostV1CollectionWindowsErrors, ThrowOnError>;
28
+ /**
29
+ * List runs
30
+ *
31
+ * List runs for your team, most recent first. Filter by status, agent, or sequence. Use with /v1/executions?runId=... to inspect what a run did.
32
+ */
33
+ export declare const runList: <ThrowOnError extends boolean = false>(options?: Options<RunListData, ThrowOnError>) => RequestResult<RunListResponses, unknown, ThrowOnError>;
34
+ /**
35
+ * Get run
36
+ *
37
+ * Get detailed information about a run by ID.
38
+ */
39
+ export declare const runGet: <ThrowOnError extends boolean = false>(options: Options<RunGetData, ThrowOnError>) => RequestResult<RunGetResponses, RunGetErrors, ThrowOnError>;
40
+ /**
41
+ * List executions
42
+ *
43
+ * List agent executions for your team. Filter by runId to see everything a run executed, or by agent/space/status. Child executions are excluded unless includeChildren=true.
44
+ */
45
+ export declare const executionList: <ThrowOnError extends boolean = false>(options?: Options<ExecutionListData, ThrowOnError>) => RequestResult<ExecutionListResponses, unknown, ThrowOnError>;
46
+ /**
47
+ * Get execution
48
+ *
49
+ * Get an agent execution by ID. Returns the summary form (status, final output, key metadata) by default; pass full=true for the complete record including the messages array, which can be very large.
50
+ */
51
+ export declare const executionGet: <ThrowOnError extends boolean = false>(options: Options<ExecutionGetData, ThrowOnError>) => RequestResult<ExecutionGetResponses, ExecutionGetErrors, ThrowOnError>;
52
+ /**
53
+ * List API keys
54
+ *
55
+ * List the current workspace's API keys — metadata only with derived status. Raw key material is never returned; it is only shown once at creation.
56
+ */
57
+ export declare const apiKeyList: <ThrowOnError extends boolean = false>(options?: Options<ApiKeyListData, ThrowOnError>) => RequestResult<ApiKeyListResponses, ApiKeyListErrors, ThrowOnError>;
58
+ /**
59
+ * Create an API key
60
+ *
61
+ * Create an API key for the current workspace, usable against both the REST API and the MCP server. The raw key is returned ONCE in this response and cannot be retrieved later — store it securely.
62
+ */
63
+ export declare const apiKeyCreate: <ThrowOnError extends boolean = false>(options?: Options<ApiKeyCreateData, ThrowOnError>) => RequestResult<ApiKeyCreateResponses, ApiKeyCreateErrors, ThrowOnError>;
64
+ /**
65
+ * Revoke an API key
66
+ *
67
+ * Revoke an API key in the current workspace. The key stops authenticating immediately and cannot be reactivated. Revoking an already-revoked key succeeds (idempotent); keys outside the current workspace report not-found.
68
+ */
69
+ export declare const apiKeyRevoke: <ThrowOnError extends boolean = false>(options: Options<ApiKeyRevokeData, ThrowOnError>) => RequestResult<ApiKeyRevokeResponses, ApiKeyRevokeErrors, ThrowOnError>;
70
+ /**
71
+ * Get rate-limit usage
72
+ *
73
+ * Current rate-limit consumption for your team, broken down by bucket. Use this to pace requests against your quota before issuing them. Returns each bucket's configured cap (rps + burst), the live remaining-token count, the ms-until-refill, and the list of operations that consume from each bucket.
74
+ */
75
+ export declare const getUsage: <ThrowOnError extends boolean = false>(options?: Options<GetUsageData, ThrowOnError>) => RequestResult<GetUsageResponses, unknown, ThrowOnError>;
76
+ /**
77
+ * Search brands
78
+ *
79
+ * Search brands by name or keyword. Optionally filter by category. Returns a paginated list of brand summaries.
80
+ */
81
+ export declare const brandSearch: <ThrowOnError extends boolean = false>(options?: Options<BrandSearchData, ThrowOnError>) => RequestResult<BrandSearchResponses, unknown, ThrowOnError>;
82
+ /**
83
+ * Compare brands
84
+ *
85
+ * Compare up to 5 brands side-by-side on key metrics (owned posts, mention volume, sentiment, ad count).
86
+ */
87
+ export declare const brandCompare: <ThrowOnError extends boolean = false>(options: Options<BrandCompareData, ThrowOnError>) => RequestResult<BrandCompareResponses, BrandCompareErrors, ThrowOnError>;
88
+ /**
89
+ * Get brand
90
+ *
91
+ * Get detailed information about a single brand, including founded year, headquarters, and logo.
92
+ */
93
+ export declare const brandGet: <ThrowOnError extends boolean = false>(options: Options<BrandGetData, ThrowOnError>) => RequestResult<BrandGetResponses, BrandGetErrors, ThrowOnError>;
94
+ /**
95
+ * Brand timeseries
96
+ *
97
+ * Get trend-line data for a brand metric over time. Supports multiple datasets (owned media, paid media, mentions, or all) with configurable grain and window.
98
+ */
99
+ export declare const brandTimeseries: <ThrowOnError extends boolean = false>(options: Options<BrandTimeseriesData, ThrowOnError>) => RequestResult<BrandTimeseriesResponses, BrandTimeseriesErrors, ThrowOnError>;
100
+ /**
101
+ * List brand platforms
102
+ *
103
+ * List all social platform accounts tracked for a brand, including follower counts, engagement rates, and sync status.
104
+ */
105
+ export declare const brandPlatformsList: <ThrowOnError extends boolean = false>(options: Options<BrandPlatformsListData, ThrowOnError>) => RequestResult<BrandPlatformsListResponses, BrandPlatformsListErrors, ThrowOnError>;
106
+ /**
107
+ * Get brand platform
108
+ *
109
+ * Get details for a specific social platform account tracked for a brand.
110
+ */
111
+ export declare const brandPlatformsGet: <ThrowOnError extends boolean = false>(options: Options<BrandPlatformsGetData, ThrowOnError>) => RequestResult<BrandPlatformsGetResponses, BrandPlatformsGetErrors, ThrowOnError>;
112
+ /**
113
+ * List owned posts
114
+ *
115
+ * List owned social media posts for a brand with optional filters for platform, date range, and region. Results are paginated.
116
+ */
117
+ export declare const brandOwnedMediaPostsList: <ThrowOnError extends boolean = false>(options: Options<BrandOwnedMediaPostsListData, ThrowOnError>) => RequestResult<BrandOwnedMediaPostsListResponses, BrandOwnedMediaPostsListErrors, ThrowOnError>;
118
+ /**
119
+ * Get owned post
120
+ *
121
+ * Get details for a single owned post by ID.
122
+ */
123
+ export declare const brandOwnedMediaPostsGet: <ThrowOnError extends boolean = false>(options: Options<BrandOwnedMediaPostsGetData, ThrowOnError>) => RequestResult<BrandOwnedMediaPostsGetResponses, BrandOwnedMediaPostsGetErrors, ThrowOnError>;
124
+ /**
125
+ * Get owned media summary
126
+ *
127
+ * Get a summary of owned media activity for a brand, including posting cadence, platform breakdown, top themes, and sentiment distribution.
128
+ */
129
+ export declare const brandOwnedMediaSummary: <ThrowOnError extends boolean = false>(options: Options<BrandOwnedMediaSummaryData, ThrowOnError>) => RequestResult<BrandOwnedMediaSummaryResponses, BrandOwnedMediaSummaryErrors, ThrowOnError>;
130
+ /**
131
+ * List ads
132
+ *
133
+ * List paid advertising creatives for a brand with optional filters for platform and status. Returns analyzer-approved ads only. Results are paginated.
134
+ */
135
+ export declare const brandPaidMediaAdsList: <ThrowOnError extends boolean = false>(options: Options<BrandPaidMediaAdsListData, ThrowOnError>) => RequestResult<BrandPaidMediaAdsListResponses, BrandPaidMediaAdsListErrors, ThrowOnError>;
136
+ /**
137
+ * Get ad
138
+ *
139
+ * Get details for a single paid media ad by ID. Returns the row regardless of analyzer stage (the list endpoint defaults to analyzer-approved only).
140
+ */
141
+ export declare const brandPaidMediaAdsGet: <ThrowOnError extends boolean = false>(options: Options<BrandPaidMediaAdsGetData, ThrowOnError>) => RequestResult<BrandPaidMediaAdsGetResponses, BrandPaidMediaAdsGetErrors, ThrowOnError>;
142
+ /**
143
+ * Capture ad landing page
144
+ *
145
+ * Capture a snapshot of the landing page an ad clicks through to — full-page screenshot, normalized destination URL, and capture timestamp. Capture-on-request: each call to a real landing page takes a fresh screenshot and costs 1 credit. Snapshots are retained 90 days for change detection. Destinations that aren't capturable landing pages (no URL, unresolved tracking macro, app-store link, or bare homepage) return 200 with a skip_reason and no screenshot, and cost no credit.
146
+ */
147
+ export declare const brandPaidMediaAdsLandingPageGet: <ThrowOnError extends boolean = false>(options: Options<BrandPaidMediaAdsLandingPageGetData, ThrowOnError>) => RequestResult<BrandPaidMediaAdsLandingPageGetResponses, BrandPaidMediaAdsLandingPageGetErrors, ThrowOnError>;
148
+ /**
149
+ * Get paid media summary
150
+ *
151
+ * Get a summary of paid media activity for a brand, including total spend, active campaigns, and platform breakdown.
152
+ */
153
+ export declare const brandPaidMediaSummary: <ThrowOnError extends boolean = false>(options: Options<BrandPaidMediaSummaryData, ThrowOnError>) => RequestResult<BrandPaidMediaSummaryResponses, BrandPaidMediaSummaryErrors, ThrowOnError>;
154
+ /**
155
+ * List brand mentions
156
+ *
157
+ * List third-party mentions of a brand (posts from accounts the brand does not own that reference it). Results are paginated.
158
+ */
159
+ export declare const brandMentionsList: <ThrowOnError extends boolean = false>(options: Options<BrandMentionsListData, ThrowOnError>) => RequestResult<BrandMentionsListResponses, BrandMentionsListErrors, ThrowOnError>;
160
+ /**
161
+ * Get mentions summary
162
+ *
163
+ * Aggregate mention volume for a brand over a window: total count, average per day, and breakdown by source type.
164
+ */
165
+ export declare const brandMentionsSummary: <ThrowOnError extends boolean = false>(options: Options<BrandMentionsSummaryData, ThrowOnError>) => RequestResult<BrandMentionsSummaryResponses, BrandMentionsSummaryErrors, ThrowOnError>;
166
+ /**
167
+ * Get mention
168
+ *
169
+ * Get a single mention by ID.
170
+ */
171
+ export declare const brandMentionsGet: <ThrowOnError extends boolean = false>(options: Options<BrandMentionsGetData, ThrowOnError>) => RequestResult<BrandMentionsGetResponses, BrandMentionsGetErrors, ThrowOnError>;
172
+ /**
173
+ * Search posts
174
+ *
175
+ * Search social media posts across a specified platform. **Deprecated** — use `GET /v1/discover/{platform}/posts`, which exposes each platform's sort and time-window filters. This generic form only accepts q/cursor.
176
+ *
177
+ * @deprecated
178
+ */
179
+ export declare const discoverPosts: <ThrowOnError extends boolean = false>(options: Options<DiscoverPostsData, ThrowOnError>) => RequestResult<DiscoverPostsResponses, unknown, ThrowOnError>;
180
+ /**
181
+ * Search X/Twitter posts
182
+ *
183
+ * Search X (Twitter) posts. Supports `sort` (top/latest). No time-window filter upstream.
184
+ */
185
+ export declare const discoverPosts2: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts2Data, ThrowOnError>) => RequestResult<DiscoverPosts2Responses, unknown, ThrowOnError>;
186
+ /**
187
+ * Search TikTok posts
188
+ *
189
+ * Search TikTok posts. Supports `sort` (relevance/likes/date), `since` (day/week/month/year), and `country` (ISO-2 region).
190
+ */
191
+ export declare const discoverPosts3: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts3Data, ThrowOnError>) => RequestResult<DiscoverPosts3Responses, unknown, ThrowOnError>;
192
+ /**
193
+ * Search Reddit posts
194
+ *
195
+ * Search Reddit posts. Supports `sort` (relevance/hot/top/new/comments) and `since` (hour/today/week/month/year/all).
196
+ */
197
+ export declare const discoverPosts4: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts4Data, ThrowOnError>) => RequestResult<DiscoverPosts4Responses, unknown, ThrowOnError>;
198
+ /**
199
+ * Search LinkedIn posts
200
+ *
201
+ * Search LinkedIn posts. Supports `sort` (top/latest, defaults to top — LinkedIn requires a sort) and `since` (day/week/month).
202
+ */
203
+ export declare const discoverPosts5: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts5Data, ThrowOnError>) => RequestResult<DiscoverPosts5Responses, unknown, ThrowOnError>;
204
+ /**
205
+ * Search YouTube videos
206
+ *
207
+ * Search YouTube videos. Supports `sort` (relevance/popularity) and `since` (day/week/month/year; omit for all-time).
208
+ */
209
+ export declare const discoverPosts6: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts6Data, ThrowOnError>) => RequestResult<DiscoverPosts6Responses, unknown, ThrowOnError>;
210
+ /**
211
+ * Search Instagram posts
212
+ *
213
+ * Search Instagram posts. No sort or time-window filter is available upstream.
214
+ */
215
+ export declare const discoverPosts7: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts7Data, ThrowOnError>) => RequestResult<DiscoverPosts7Responses, unknown, ThrowOnError>;
216
+ /**
217
+ * Search Facebook posts
218
+ *
219
+ * Search Facebook posts. No sort or time-window filter is available upstream.
220
+ */
221
+ export declare const discoverPosts8: <ThrowOnError extends boolean = false>(options: Options<DiscoverPosts8Data, ThrowOnError>) => RequestResult<DiscoverPosts8Responses, unknown, ThrowOnError>;
222
+ /**
223
+ * Search ads
224
+ *
225
+ * Search ad libraries across Meta, Google, or LinkedIn.
226
+ */
227
+ export declare const discoverAds: <ThrowOnError extends boolean = false>(options: Options<DiscoverAdsData, ThrowOnError>) => RequestResult<DiscoverAdsResponses, unknown, ThrowOnError>;
228
+ /**
229
+ * Get trending topics
230
+ *
231
+ * Retrieve trending topics from Twitter or Google Trends.
232
+ */
233
+ export declare const discoverTrends: <ThrowOnError extends boolean = false>(options: Options<DiscoverTrendsData, ThrowOnError>) => RequestResult<DiscoverTrendsResponses, unknown, ThrowOnError>;
234
+ /**
235
+ * Find creators
236
+ *
237
+ * Search for creators or users across a specified social platform.
238
+ */
239
+ export declare const discoverUsers: <ThrowOnError extends boolean = false>(options: Options<DiscoverUsersData, ThrowOnError>) => RequestResult<DiscoverUsersResponses, unknown, ThrowOnError>;
240
+ /**
241
+ * Search companies
242
+ *
243
+ * Search for companies on LinkedIn.
244
+ */
245
+ export declare const discoverCompanies: <ThrowOnError extends boolean = false>(options: Options<DiscoverCompaniesData, ThrowOnError>) => RequestResult<DiscoverCompaniesResponses, unknown, ThrowOnError>;
246
+ /**
247
+ * Search jobs
248
+ *
249
+ * Search for job listings on LinkedIn.
250
+ */
251
+ export declare const discoverJobs: <ThrowOnError extends boolean = false>(options: Options<DiscoverJobsData, ThrowOnError>) => RequestResult<DiscoverJobsResponses, unknown, ThrowOnError>;
252
+ /**
253
+ * Search communities
254
+ *
255
+ * Search for subreddits and communities on Reddit.
256
+ */
257
+ export declare const discoverCommunities: <ThrowOnError extends boolean = false>(options: Options<DiscoverCommunitiesData, ThrowOnError>) => RequestResult<DiscoverCommunitiesResponses, unknown, ThrowOnError>;
258
+ /**
259
+ * Look up a post by URL
260
+ *
261
+ * Resolve a raw post URL to its enriched data. The response carries a minted opaque `post_id` (`pid_…` token) downstream `/v1/posts/{post_id}` and `/comments` lookups consume directly — this is the entry point into the post-id system for URLs sourced outside our API. Platform is sniffed from the URL host; pass `platform` explicitly when the host is ambiguous (e.g. a shortened link).
262
+ */
263
+ export declare const enrichmentPostLookup: <ThrowOnError extends boolean = false>(options: Options<EnrichmentPostLookupData, ThrowOnError>) => RequestResult<EnrichmentPostLookupResponses, unknown, ThrowOnError>;
264
+ /**
265
+ * Get enriched post
266
+ *
267
+ * Retrieve an enriched post by `post_id` — either the opaque `pid_…` token returned in discover/search/profile-posts items and `/v1/posts/lookup` responses, OR a bare platform ID (e.g. tweet id) paired with the `platform` query. Both forms are first-class. A raw URL in the path param is unsupported: encoded slashes die at the API gateway with a bare 404 before the handler runs. Use `/v1/posts/lookup?url=…` instead.
268
+ */
269
+ export declare const enrichmentPostGet: <ThrowOnError extends boolean = false>(options: Options<EnrichmentPostGetData, ThrowOnError>) => RequestResult<EnrichmentPostGetResponses, unknown, ThrowOnError>;
270
+ /**
271
+ * Get post comments
272
+ *
273
+ * Retrieve comments or replies on a post. Same `post_id` semantics as `/v1/posts/{post_id}`. `cursor` is honored on x / instagram / tiktok / linkedin / facebook / youtube; reddit's scan_reddit_post_page tool has no pagination, so `cursor` is ignored on reddit (the response carries every retrievable comment in one call).
274
+ */
275
+ export declare const enrichmentPostComments: <ThrowOnError extends boolean = false>(options: Options<EnrichmentPostCommentsData, ThrowOnError>) => RequestResult<EnrichmentPostCommentsResponses, unknown, ThrowOnError>;
276
+ /**
277
+ * Get social profile
278
+ *
279
+ * Retrieve a social media profile by platform and username.
280
+ */
281
+ export declare const enrichmentProfileGet: <ThrowOnError extends boolean = false>(options: Options<EnrichmentProfileGetData, ThrowOnError>) => RequestResult<EnrichmentProfileGetResponses, unknown, ThrowOnError>;
282
+ /**
283
+ * Get user's recent posts
284
+ *
285
+ * Retrieve recent posts from a user's profile on the specified platform. For YouTube, `type` is required — YouTube splits a channel's uploads into separate `videos` (long-form) and `shorts` streams that must be fetched independently. Call this endpoint twice (once per type) if you want both.
286
+ */
287
+ export declare const enrichmentProfilePosts: <ThrowOnError extends boolean = false>(options: Options<EnrichmentProfilePostsData, ThrowOnError>) => RequestResult<EnrichmentProfilePostsResponses, unknown, ThrowOnError>;
288
+ /**
289
+ * Get accounts a user follows
290
+ *
291
+ * Retrieve the accounts a user follows on the specified platform. Supported on x, instagram, tiktok, and facebook. One request returns one page (~50–70 accounts); follow `meta.next_cursor` in the response to page deeper.
292
+ */
293
+ export declare const enrichmentProfileFollowing: <ThrowOnError extends boolean = false>(options: Options<EnrichmentProfileFollowingData, ThrowOnError>) => RequestResult<EnrichmentProfileFollowingResponses, unknown, ThrowOnError>;
294
+ /**
295
+ * Get video transcript
296
+ *
297
+ * Retrieve the transcript for a YouTube video.
298
+ */
299
+ export declare const enrichmentVideoTranscript: <ThrowOnError extends boolean = false>(options: Options<EnrichmentVideoTranscriptData, ThrowOnError>) => RequestResult<EnrichmentVideoTranscriptResponses, unknown, ThrowOnError>;
300
+ /**
301
+ * Search company directory
302
+ *
303
+ * Search a platform's company directory by name. LinkedIn dispatches to the Vetric companies search; Facebook dispatches to the Meta Ad Library (returning page_alias and ig_username natively). Other platforms return 400 'platform not supported'.
304
+ */
305
+ export declare const enrichmentCompanySearch: <ThrowOnError extends boolean = false>(options: Options<EnrichmentCompanySearchData, ThrowOnError>) => RequestResult<EnrichmentCompanySearchResponses, unknown, ThrowOnError>;
306
+ /**
307
+ * Get company profile
308
+ *
309
+ * Retrieve a company profile (org page, not a personal user profile) by identifier on the specified platform. LinkedIn supported today.
310
+ */
311
+ export declare const enrichmentCompanyGet: <ThrowOnError extends boolean = false>(options: Options<EnrichmentCompanyGetData, ThrowOnError>) => RequestResult<EnrichmentCompanyGetResponses, unknown, ThrowOnError>;
312
+ /**
313
+ * Get company jobs
314
+ *
315
+ * Retrieve job listings for a company on the specified platform. One request returns one page; follow `meta.next_cursor` in the response to page deeper.
316
+ */
317
+ export declare const enrichmentCompanyJobs: <ThrowOnError extends boolean = false>(options: Options<EnrichmentCompanyJobsData, ThrowOnError>) => RequestResult<EnrichmentCompanyJobsResponses, unknown, ThrowOnError>;
318
+ /**
319
+ * Get company people
320
+ *
321
+ * Retrieve people associated with a company on the specified platform. One request returns one page; follow `meta.next_cursor` in the response to page deeper.
322
+ */
323
+ export declare const enrichmentCompanyPeople: <ThrowOnError extends boolean = false>(options: Options<EnrichmentCompanyPeopleData, ThrowOnError>) => RequestResult<EnrichmentCompanyPeopleResponses, unknown, ThrowOnError>;
324
+ /**
325
+ * List a Reddit user's posts
326
+ *
327
+ * List the posts authored by a Reddit user. Cursor-paginated; one request returns one page.
328
+ */
329
+ export declare const communityUserPosts: <ThrowOnError extends boolean = false>(options: Options<CommunityUserPostsData, ThrowOnError>) => RequestResult<CommunityUserPostsResponses, unknown, ThrowOnError>;
330
+ /**
331
+ * List a Reddit user's comments
332
+ *
333
+ * List the comments authored by a Reddit user. Cursor-paginated; one request returns one page.
334
+ */
335
+ export declare const communityUserComments: <ThrowOnError extends boolean = false>(options: Options<CommunityUserCommentsData, ThrowOnError>) => RequestResult<CommunityUserCommentsResponses, unknown, ThrowOnError>;
336
+ /**
337
+ * Browse a subreddit's posts
338
+ *
339
+ * Browse a Reddit subreddit's post feed by name (not a keyword search). Cursor-paginated; one request returns one page (~285 posts max across pages). When sort is TOP or CONTROVERSIAL, `range` is required.
340
+ */
341
+ export declare const communityPosts: <ThrowOnError extends boolean = false>(options: Options<CommunityPostsData, ThrowOnError>) => RequestResult<CommunityPostsResponses, unknown, ThrowOnError>;
342
+ /**
343
+ * Get subreddit details
344
+ *
345
+ * Fetch a Reddit subreddit's metadata: subscribers, description, type, NSFW flag, and taxonomy topics.
346
+ */
347
+ export declare const communityGet: <ThrowOnError extends boolean = false>(options: Options<CommunityGetData, ThrowOnError>) => RequestResult<CommunityGetResponses, unknown, ThrowOnError>;
348
+ /**
349
+ * Search brand posts
350
+ *
351
+ * Full-text search across all brand posts. Filter by brand, category, platform, dataset, or date range. Results are ranked by relevance.
352
+ */
353
+ export declare const getV1BrandSearch: <ThrowOnError extends boolean = false>(options: Options<GetV1BrandSearchData, ThrowOnError>) => RequestResult<GetV1BrandSearchResponses, GetV1BrandSearchErrors, ThrowOnError>;
354
+ /**
355
+ * Get account
356
+ *
357
+ * Returns account profile information for the authenticated team, including entity counts (brands, categories, audiences).
358
+ */
359
+ export declare const getV1Account: <ThrowOnError extends boolean = false>(options?: Options<GetV1AccountData, ThrowOnError>) => RequestResult<GetV1AccountResponses, unknown, ThrowOnError>;
360
+ /**
361
+ * Get credit balance
362
+ *
363
+ * Returns the team's credit balance for the current billing period: remaining balance, used, limit, plan, and period bounds.
364
+ */
365
+ export declare const getV1AccountBalance: <ThrowOnError extends boolean = false>(options?: Options<GetV1AccountBalanceData, ThrowOnError>) => RequestResult<GetV1AccountBalanceResponses, unknown, ThrowOnError>;
366
+ /**
367
+ * Get usage
368
+ *
369
+ * Returns API usage breakdown for the current billing period. V1 returns placeholder data; metering will be available in a future version.
370
+ */
371
+ export declare const getV1AccountUsage: <ThrowOnError extends boolean = false>(options?: Options<GetV1AccountUsageData, ThrowOnError>) => RequestResult<GetV1AccountUsageResponses, unknown, ThrowOnError>;
372
+ /**
373
+ * List teams
374
+ *
375
+ * List teams. Waldo admin only.
376
+ */
377
+ export declare const teamList: <ThrowOnError extends boolean = false>(options?: Options<TeamListData, ThrowOnError>) => RequestResult<TeamListResponses, TeamListErrors, ThrowOnError>;
378
+ /**
379
+ * Create a team
380
+ *
381
+ * Create a new team (workspace). Waldo admin only. Returns the newly inserted team row.
382
+ */
383
+ export declare const teamCreate: <ThrowOnError extends boolean = false>(options?: Options<TeamCreateData, ThrowOnError>) => RequestResult<TeamCreateResponses, TeamCreateErrors, ThrowOnError>;
384
+ /**
385
+ * Get a team
386
+ *
387
+ * Fetch a single team by team_id. Waldo admin only.
388
+ */
389
+ export declare const teamGet: <ThrowOnError extends boolean = false>(options: Options<TeamGetData, ThrowOnError>) => RequestResult<TeamGetResponses, TeamGetErrors, ThrowOnError>;
390
+ /**
391
+ * Set team billable flag
392
+ *
393
+ * Set the billable flag on a team. billable=false makes the team unlimited; true puts it back on credit accounting. Waldo admin only.
394
+ */
395
+ export declare const teamSetBillable: <ThrowOnError extends boolean = false>(options: Options<TeamSetBillableData, ThrowOnError>) => RequestResult<TeamSetBillableResponses, TeamSetBillableErrors, ThrowOnError>;
396
+ /**
397
+ * List team feature flags
398
+ *
399
+ * List feature flags enabled on a team. Use to audit a workspace's gating before provisioning gated workflows. Waldo admin only.
400
+ */
401
+ export declare const teamListFlags: <ThrowOnError extends boolean = false>(options: Options<TeamListFlagsData, ThrowOnError>) => RequestResult<TeamListFlagsResponses, TeamListFlagsErrors, ThrowOnError>;
402
+ /**
403
+ * Enable or disable a team feature flag
404
+ *
405
+ * Upsert a feature flag for a team. Required when provisioning fresh test workspaces — the agent runtime gates tool resolution on team flags with no admin bypass, so flags like brand_intelligence must be set explicitly before brand-onboarding agents can resolve their tools. Waldo admin only.
406
+ */
407
+ export declare const teamSetFlag: <ThrowOnError extends boolean = false>(options: Options<TeamSetFlagData, ThrowOnError>) => RequestResult<TeamSetFlagResponses, TeamSetFlagErrors, ThrowOnError>;
408
+ //# sourceMappingURL=sdk.gen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}