@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,455 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ import { client } from "./client.gen";
3
+ /**
4
+ * List collection windows
5
+ *
6
+ * List all parallel-scheduling collection windows. Windows are global scheduling state shared across teams — Waldo admin only.
7
+ */
8
+ export const getV1CollectionWindows = (options) => (options?.client ?? client).get({ url: "/v1/collection-windows", ...options });
9
+ /**
10
+ * Create a collection window
11
+ *
12
+ * 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.
13
+ */
14
+ export const postV1CollectionWindows = (options) => (options?.client ?? client).post({
15
+ url: "/v1/collection-windows",
16
+ ...options,
17
+ headers: {
18
+ "Content-Type": "application/json",
19
+ ...options?.headers,
20
+ },
21
+ });
22
+ /**
23
+ * List runs
24
+ *
25
+ * 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.
26
+ */
27
+ export const runList = (options) => (options?.client ?? client).get({
28
+ url: "/v1/runs",
29
+ ...options,
30
+ });
31
+ /**
32
+ * Get run
33
+ *
34
+ * Get detailed information about a run by ID.
35
+ */
36
+ export const runGet = (options) => (options.client ?? client).get({
37
+ url: "/v1/runs/{runId}",
38
+ ...options,
39
+ });
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 const executionList = (options) => (options?.client ?? client).get({ url: "/v1/executions", ...options });
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 const executionGet = (options) => (options.client ?? client).get({ url: "/v1/executions/{executionId}", ...options });
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 const apiKeyList = (options) => (options?.client ?? client).get({ url: "/v1/api-keys", ...options });
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 const apiKeyCreate = (options) => (options?.client ?? client).post({
64
+ url: "/v1/api-keys",
65
+ ...options,
66
+ headers: {
67
+ "Content-Type": "application/json",
68
+ ...options?.headers,
69
+ },
70
+ });
71
+ /**
72
+ * Revoke an API key
73
+ *
74
+ * 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.
75
+ */
76
+ export const apiKeyRevoke = (options) => (options.client ?? client).delete({ url: "/v1/api-keys/{keyId}", ...options });
77
+ /**
78
+ * Get rate-limit usage
79
+ *
80
+ * 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.
81
+ */
82
+ export const getUsage = (options) => (options?.client ?? client).get({
83
+ security: [{ scheme: "bearer", type: "http" }],
84
+ url: "/v1/usage",
85
+ ...options,
86
+ });
87
+ /**
88
+ * Search brands
89
+ *
90
+ * Search brands by name or keyword. Optionally filter by category. Returns a paginated list of brand summaries.
91
+ */
92
+ export const brandSearch = (options) => (options?.client ?? client).get({
93
+ url: "/v1/brands/search",
94
+ ...options,
95
+ });
96
+ /**
97
+ * Compare brands
98
+ *
99
+ * Compare up to 5 brands side-by-side on key metrics (owned posts, mention volume, sentiment, ad count).
100
+ */
101
+ export const brandCompare = (options) => (options.client ?? client).get({ url: "/v1/brands/compare", ...options });
102
+ /**
103
+ * Get brand
104
+ *
105
+ * Get detailed information about a single brand, including founded year, headquarters, and logo.
106
+ */
107
+ export const brandGet = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}", ...options });
108
+ /**
109
+ * Brand timeseries
110
+ *
111
+ * 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.
112
+ */
113
+ export const brandTimeseries = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/{dataset}/timeseries", ...options });
114
+ /**
115
+ * List brand platforms
116
+ *
117
+ * List all social platform accounts tracked for a brand, including follower counts, engagement rates, and sync status.
118
+ */
119
+ export const brandPlatformsList = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/platforms", ...options });
120
+ /**
121
+ * Get brand platform
122
+ *
123
+ * Get details for a specific social platform account tracked for a brand.
124
+ */
125
+ export const brandPlatformsGet = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/platforms/{platform}", ...options });
126
+ /**
127
+ * List owned posts
128
+ *
129
+ * List owned social media posts for a brand with optional filters for platform, date range, and region. Results are paginated.
130
+ */
131
+ export const brandOwnedMediaPostsList = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/owned-media/posts", ...options });
132
+ /**
133
+ * Get owned post
134
+ *
135
+ * Get details for a single owned post by ID.
136
+ */
137
+ export const brandOwnedMediaPostsGet = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/owned-media/posts/{post_id}", ...options });
138
+ /**
139
+ * Get owned media summary
140
+ *
141
+ * Get a summary of owned media activity for a brand, including posting cadence, platform breakdown, top themes, and sentiment distribution.
142
+ */
143
+ export const brandOwnedMediaSummary = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/owned-media/summary", ...options });
144
+ /**
145
+ * List ads
146
+ *
147
+ * List paid advertising creatives for a brand with optional filters for platform and status. Returns analyzer-approved ads only. Results are paginated.
148
+ */
149
+ export const brandPaidMediaAdsList = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/paid-media/ads", ...options });
150
+ /**
151
+ * Get ad
152
+ *
153
+ * 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).
154
+ */
155
+ export const brandPaidMediaAdsGet = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/paid-media/ads/{ad_id}", ...options });
156
+ /**
157
+ * Capture ad landing page
158
+ *
159
+ * 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.
160
+ */
161
+ export const brandPaidMediaAdsLandingPageGet = (options) => (options.client ?? client).get({
162
+ url: "/v1/brands/{brand_id}/paid-media/ads/{ad_id}/landing-page",
163
+ ...options,
164
+ });
165
+ /**
166
+ * Get paid media summary
167
+ *
168
+ * Get a summary of paid media activity for a brand, including total spend, active campaigns, and platform breakdown.
169
+ */
170
+ export const brandPaidMediaSummary = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/paid-media/summary", ...options });
171
+ /**
172
+ * List brand mentions
173
+ *
174
+ * List third-party mentions of a brand (posts from accounts the brand does not own that reference it). Results are paginated.
175
+ */
176
+ export const brandMentionsList = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/mentions", ...options });
177
+ /**
178
+ * Get mentions summary
179
+ *
180
+ * Aggregate mention volume for a brand over a window: total count, average per day, and breakdown by source type.
181
+ */
182
+ export const brandMentionsSummary = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/mentions/summary", ...options });
183
+ /**
184
+ * Get mention
185
+ *
186
+ * Get a single mention by ID.
187
+ */
188
+ export const brandMentionsGet = (options) => (options.client ?? client).get({ url: "/v1/brands/{brand_id}/mentions/{mention_id}", ...options });
189
+ /**
190
+ * Search posts
191
+ *
192
+ * 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.
193
+ *
194
+ * @deprecated
195
+ */
196
+ export const discoverPosts = (options) => (options.client ?? client).get({ url: "/v1/discover/posts", ...options });
197
+ /**
198
+ * Search X/Twitter posts
199
+ *
200
+ * Search X (Twitter) posts. Supports `sort` (top/latest). No time-window filter upstream.
201
+ */
202
+ export const discoverPosts2 = (options) => (options.client ?? client).get({ url: "/v1/discover/x/posts", ...options });
203
+ /**
204
+ * Search TikTok posts
205
+ *
206
+ * Search TikTok posts. Supports `sort` (relevance/likes/date), `since` (day/week/month/year), and `country` (ISO-2 region).
207
+ */
208
+ export const discoverPosts3 = (options) => (options.client ?? client).get({ url: "/v1/discover/tiktok/posts", ...options });
209
+ /**
210
+ * Search Reddit posts
211
+ *
212
+ * Search Reddit posts. Supports `sort` (relevance/hot/top/new/comments) and `since` (hour/today/week/month/year/all).
213
+ */
214
+ export const discoverPosts4 = (options) => (options.client ?? client).get({ url: "/v1/discover/reddit/posts", ...options });
215
+ /**
216
+ * Search LinkedIn posts
217
+ *
218
+ * Search LinkedIn posts. Supports `sort` (top/latest, defaults to top — LinkedIn requires a sort) and `since` (day/week/month).
219
+ */
220
+ export const discoverPosts5 = (options) => (options.client ?? client).get({ url: "/v1/discover/linkedin/posts", ...options });
221
+ /**
222
+ * Search YouTube videos
223
+ *
224
+ * Search YouTube videos. Supports `sort` (relevance/popularity) and `since` (day/week/month/year; omit for all-time).
225
+ */
226
+ export const discoverPosts6 = (options) => (options.client ?? client).get({ url: "/v1/discover/youtube/posts", ...options });
227
+ /**
228
+ * Search Instagram posts
229
+ *
230
+ * Search Instagram posts. No sort or time-window filter is available upstream.
231
+ */
232
+ export const discoverPosts7 = (options) => (options.client ?? client).get({ url: "/v1/discover/instagram/posts", ...options });
233
+ /**
234
+ * Search Facebook posts
235
+ *
236
+ * Search Facebook posts. No sort or time-window filter is available upstream.
237
+ */
238
+ export const discoverPosts8 = (options) => (options.client ?? client).get({ url: "/v1/discover/facebook/posts", ...options });
239
+ /**
240
+ * Search ads
241
+ *
242
+ * Search ad libraries across Meta, Google, or LinkedIn.
243
+ */
244
+ export const discoverAds = (options) => (options.client ?? client).get({
245
+ url: "/v1/discover/ads",
246
+ ...options,
247
+ });
248
+ /**
249
+ * Get trending topics
250
+ *
251
+ * Retrieve trending topics from Twitter or Google Trends.
252
+ */
253
+ export const discoverTrends = (options) => (options.client ?? client).get({ url: "/v1/discover/trends", ...options });
254
+ /**
255
+ * Find creators
256
+ *
257
+ * Search for creators or users across a specified social platform.
258
+ */
259
+ export const discoverUsers = (options) => (options.client ?? client).get({ url: "/v1/discover/users", ...options });
260
+ /**
261
+ * Search companies
262
+ *
263
+ * Search for companies on LinkedIn.
264
+ */
265
+ export const discoverCompanies = (options) => (options.client ?? client).get({ url: "/v1/discover/companies", ...options });
266
+ /**
267
+ * Search jobs
268
+ *
269
+ * Search for job listings on LinkedIn.
270
+ */
271
+ export const discoverJobs = (options) => (options.client ?? client).get({
272
+ url: "/v1/discover/jobs",
273
+ ...options,
274
+ });
275
+ /**
276
+ * Search communities
277
+ *
278
+ * Search for subreddits and communities on Reddit.
279
+ */
280
+ export const discoverCommunities = (options) => (options.client ?? client).get({ url: "/v1/discover/communities", ...options });
281
+ /**
282
+ * Look up a post by URL
283
+ *
284
+ * 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).
285
+ */
286
+ export const enrichmentPostLookup = (options) => (options.client ?? client).get({ url: "/v1/posts/lookup", ...options });
287
+ /**
288
+ * Get enriched post
289
+ *
290
+ * 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.
291
+ */
292
+ export const enrichmentPostGet = (options) => (options.client ?? client).get({ url: "/v1/posts/{post_id}", ...options });
293
+ /**
294
+ * Get post comments
295
+ *
296
+ * 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).
297
+ */
298
+ export const enrichmentPostComments = (options) => (options.client ?? client).get({ url: "/v1/posts/{post_id}/comments", ...options });
299
+ /**
300
+ * Get social profile
301
+ *
302
+ * Retrieve a social media profile by platform and username.
303
+ */
304
+ export const enrichmentProfileGet = (options) => (options.client ?? client).get({ url: "/v1/profiles/{platform}/{username}", ...options });
305
+ /**
306
+ * Get user's recent posts
307
+ *
308
+ * 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.
309
+ */
310
+ export const enrichmentProfilePosts = (options) => (options.client ?? client).get({ url: "/v1/profiles/{platform}/{username}/posts", ...options });
311
+ /**
312
+ * Get accounts a user follows
313
+ *
314
+ * 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.
315
+ */
316
+ export const enrichmentProfileFollowing = (options) => (options.client ?? client).get({ url: "/v1/profiles/{platform}/{username}/following", ...options });
317
+ /**
318
+ * Get video transcript
319
+ *
320
+ * Retrieve the transcript for a YouTube video.
321
+ */
322
+ export const enrichmentVideoTranscript = (options) => (options.client ?? client).get({ url: "/v1/videos/{video_id}/transcript", ...options });
323
+ /**
324
+ * Search company directory
325
+ *
326
+ * 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'.
327
+ */
328
+ export const enrichmentCompanySearch = (options) => (options.client ?? client).get({ url: "/v1/companies/{platform}/search", ...options });
329
+ /**
330
+ * Get company profile
331
+ *
332
+ * Retrieve a company profile (org page, not a personal user profile) by identifier on the specified platform. LinkedIn supported today.
333
+ */
334
+ export const enrichmentCompanyGet = (options) => (options.client ?? client).get({ url: "/v1/companies/{platform}/{identifier}", ...options });
335
+ /**
336
+ * Get company jobs
337
+ *
338
+ * 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.
339
+ */
340
+ export const enrichmentCompanyJobs = (options) => (options.client ?? client).get({ url: "/v1/companies/{platform}/{identifier}/jobs", ...options });
341
+ /**
342
+ * Get company people
343
+ *
344
+ * 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.
345
+ */
346
+ export const enrichmentCompanyPeople = (options) => (options.client ?? client).get({ url: "/v1/companies/{platform}/{identifier}/people", ...options });
347
+ /**
348
+ * List a Reddit user's posts
349
+ *
350
+ * List the posts authored by a Reddit user. Cursor-paginated; one request returns one page.
351
+ */
352
+ export const communityUserPosts = (options) => (options.client ?? client).get({ url: "/v1/communities/reddit/users/{name}/posts", ...options });
353
+ /**
354
+ * List a Reddit user's comments
355
+ *
356
+ * List the comments authored by a Reddit user. Cursor-paginated; one request returns one page.
357
+ */
358
+ export const communityUserComments = (options) => (options.client ?? client).get({ url: "/v1/communities/reddit/users/{name}/comments", ...options });
359
+ /**
360
+ * Browse a subreddit's posts
361
+ *
362
+ * 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.
363
+ */
364
+ export const communityPosts = (options) => (options.client ?? client).get({ url: "/v1/communities/reddit/{name}/posts", ...options });
365
+ /**
366
+ * Get subreddit details
367
+ *
368
+ * Fetch a Reddit subreddit's metadata: subscribers, description, type, NSFW flag, and taxonomy topics.
369
+ */
370
+ export const communityGet = (options) => (options.client ?? client).get({
371
+ url: "/v1/communities/reddit/{name}",
372
+ ...options,
373
+ });
374
+ /**
375
+ * Search brand posts
376
+ *
377
+ * Full-text search across all brand posts. Filter by brand, category, platform, dataset, or date range. Results are ranked by relevance.
378
+ */
379
+ export const getV1BrandSearch = (options) => (options.client ?? client).get({ url: "/v1/brand-search", ...options });
380
+ /**
381
+ * Get account
382
+ *
383
+ * Returns account profile information for the authenticated team, including entity counts (brands, categories, audiences).
384
+ */
385
+ export const getV1Account = (options) => (options?.client ?? client).get({ url: "/v1/account", ...options });
386
+ /**
387
+ * Get credit balance
388
+ *
389
+ * Returns the team's credit balance for the current billing period: remaining balance, used, limit, plan, and period bounds.
390
+ */
391
+ export const getV1AccountBalance = (options) => (options?.client ?? client).get({ url: "/v1/account/balance", ...options });
392
+ /**
393
+ * Get usage
394
+ *
395
+ * Returns API usage breakdown for the current billing period. V1 returns placeholder data; metering will be available in a future version.
396
+ */
397
+ export const getV1AccountUsage = (options) => (options?.client ?? client).get({ url: "/v1/account/usage", ...options });
398
+ /**
399
+ * List teams
400
+ *
401
+ * List teams. Waldo admin only.
402
+ */
403
+ export const teamList = (options) => (options?.client ?? client).get({ url: "/v1/teams", ...options });
404
+ /**
405
+ * Create a team
406
+ *
407
+ * Create a new team (workspace). Waldo admin only. Returns the newly inserted team row.
408
+ */
409
+ export const teamCreate = (options) => (options?.client ?? client).post({
410
+ url: "/v1/teams",
411
+ ...options,
412
+ headers: {
413
+ "Content-Type": "application/json",
414
+ ...options?.headers,
415
+ },
416
+ });
417
+ /**
418
+ * Get a team
419
+ *
420
+ * Fetch a single team by team_id. Waldo admin only.
421
+ */
422
+ export const teamGet = (options) => (options.client ?? client).get({ url: "/v1/teams/{team_id}", ...options });
423
+ /**
424
+ * Set team billable flag
425
+ *
426
+ * Set the billable flag on a team. billable=false makes the team unlimited; true puts it back on credit accounting. Waldo admin only.
427
+ */
428
+ export const teamSetBillable = (options) => (options.client ?? client).post({
429
+ url: "/v1/teams/{team_id}/billable",
430
+ ...options,
431
+ headers: {
432
+ "Content-Type": "application/json",
433
+ ...options.headers,
434
+ },
435
+ });
436
+ /**
437
+ * List team feature flags
438
+ *
439
+ * List feature flags enabled on a team. Use to audit a workspace's gating before provisioning gated workflows. Waldo admin only.
440
+ */
441
+ export const teamListFlags = (options) => (options.client ?? client).get({ url: "/v1/teams/{team_id}/flags", ...options });
442
+ /**
443
+ * Enable or disable a team feature flag
444
+ *
445
+ * 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.
446
+ */
447
+ export const teamSetFlag = (options) => (options.client ?? client).post({
448
+ url: "/v1/teams/{team_id}/flags",
449
+ ...options,
450
+ headers: {
451
+ "Content-Type": "application/json",
452
+ ...options.headers,
453
+ },
454
+ });
455
+ //# sourceMappingURL=sdk.gen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}