@honeyhive/control-plane-sdk 1.0.0 → 1.2.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.
@@ -44,6 +44,42 @@ export interface GetAlertRequest {
44
44
  /** @description The unique identifier of the alert to retrieve */
45
45
  alert_id: string;
46
46
  }
47
+ export interface CreateWorkspaceRequest {
48
+ /** @description The unique identifier of the virtual data plane the workspace is created in */
49
+ virtual_dataplane_id: string;
50
+ /** @description Workspace display name. Allowed characters are letters, digits, space, underscore, hyphen, apostrophe and ampersand. The name must contain at least one letter or digit, and must not start with a space. */
51
+ name: string;
52
+ /** @description Globally unique identifier for the workspace, letters, digits and underscores only. Omit it and the server derives one from the name with a random suffix appended. Supply it when the identifier has to match a value maintained outside HoneyHive, such as an identity provider group that grants access to this workspace. A slug already in use returns 409. */
53
+ slug?: string;
54
+ /** @description Workspace description */
55
+ description?: string;
56
+ /**
57
+ * Format: email
58
+ * @description Email of the user to grant the workspace-creator membership to (API key actors only). A signed-in user does not see the new workspace until their session refreshes, which happens on their next request to the control plane.
59
+ */
60
+ workspace_creator?: string;
61
+ }
62
+ export interface GetWorkspaceRequest {
63
+ /** @description The unique identifier of the workspace to retrieve */
64
+ workspace_id: string;
65
+ }
66
+ export interface UpdateWorkspaceRequest {
67
+ /** @description The unique identifier of the workspace to update */
68
+ workspace_id: string;
69
+ /** @description Workspace display name. Allowed characters are letters, digits, space, underscore, hyphen, apostrophe and ampersand. The name must contain at least one letter or digit, and must not start with a space. */
70
+ name?: string;
71
+ /** @description Workspace description */
72
+ description?: string;
73
+ }
74
+ export interface DeleteWorkspaceRequest {
75
+ /** @description The unique identifier of the workspace to delete */
76
+ workspace_id: string;
77
+ /**
78
+ * @description Archive the workspace even when it still has active projects, archiving those projects
79
+ * too. Without it, such a request fails with a 409 and no changes are made.
80
+ */
81
+ dangerously_delete_child_scopes?: boolean;
82
+ }
47
83
  export interface CreateProjectRequest {
48
84
  /** @description The unique identifier of the workspace the project is created in */
49
85
  workspace_id: string;
@@ -53,7 +89,7 @@ export interface CreateProjectRequest {
53
89
  description?: string;
54
90
  /**
55
91
  * Format: email
56
- * @description Email of the user to grant the project-creator membership to (API key actors only)
92
+ * @description Email of the user to grant the project-creator membership to (API key actors only). A signed-in user does not see the new project until their session refreshes, which happens on their next request to the control plane.
57
93
  */
58
94
  project_creator?: string;
59
95
  }
@@ -73,6 +109,41 @@ export interface DeleteProjectRequest {
73
109
  /** @description The unique identifier of the project to delete */
74
110
  project_id: string;
75
111
  }
112
+ export interface CreateVirtualDataplaneRequest {
113
+ /** @description The unique identifier of the organization the virtual data plane is created in */
114
+ org_id: string;
115
+ /** @description Virtual dataplane display name. Allowed characters are letters, digits, space, underscore, hyphen, apostrophe and ampersand. The name must contain at least one letter or digit, and must not start with a space. */
116
+ name: string;
117
+ /** @description Globally unique identifier for the virtual dataplane, letters, digits and underscores only. Omit it and the server derives one from the name with a random suffix appended. A slug already in use returns 409. */
118
+ slug?: string;
119
+ /** @description Physical cluster to host this virtual dataplane. Omit to place it alongside the existing virtual dataplanes in this org; required when the org has none yet, or when its virtual dataplanes span more than one cluster. */
120
+ cluster_id?: string;
121
+ /**
122
+ * Format: email
123
+ * @description Email of the user to grant the dataplane-creator membership to (API key actors only). A signed-in user does not see the new dataplane until their session refreshes, which happens on their next request to the control plane.
124
+ */
125
+ dataplane_creator?: string;
126
+ }
127
+ export interface GetVirtualDataplaneRequest {
128
+ /** @description The unique identifier of the virtual data plane to retrieve */
129
+ virtual_dataplane_id: string;
130
+ }
131
+ export interface UpdateVirtualDataplaneRequest {
132
+ /** @description The unique identifier of the virtual data plane to update */
133
+ virtual_dataplane_id: string;
134
+ /** @description Virtual dataplane display name. Allowed characters are letters, digits, space, underscore, hyphen, apostrophe and ampersand. The name must contain at least one letter or digit, and must not start with a space. */
135
+ name?: string;
136
+ }
137
+ export interface DeleteVirtualDataplaneRequest {
138
+ /** @description The unique identifier of the virtual data plane to delete */
139
+ virtual_dataplane_id: string;
140
+ /**
141
+ * @description Archive the virtual data plane even when it still has active workspaces, archiving
142
+ * those workspaces and their projects too. Without it, such a request fails with a 409
143
+ * and no changes are made.
144
+ */
145
+ dangerously_delete_child_scopes?: boolean;
146
+ }
76
147
  /**
77
148
  * @description A paginated list of alerts
78
149
  */
@@ -98,6 +169,34 @@ export type GetAlertResponse = {
98
169
  success: true;
99
170
  data: AlertItem;
100
171
  };
172
+ /**
173
+ * @description The created workspace
174
+ */
175
+ export type CreateWorkspaceResponse = {
176
+ success: boolean;
177
+ data: WorkspaceItem;
178
+ };
179
+ /**
180
+ * @description A single workspace
181
+ */
182
+ export type GetWorkspaceResponse = {
183
+ success: boolean;
184
+ data: WorkspaceItem;
185
+ };
186
+ /**
187
+ * @description The updated workspace
188
+ */
189
+ export type UpdateWorkspaceResponse = {
190
+ success: boolean;
191
+ data: WorkspaceItem;
192
+ };
193
+ /**
194
+ * @description The deleted (archived) workspace. Descendants archived by the cascade are not listed.
195
+ */
196
+ export type DeleteWorkspaceResponse = {
197
+ success: boolean;
198
+ data: WorkspaceItem;
199
+ };
101
200
  /**
102
201
  * @description The created project
103
202
  */
@@ -126,6 +225,34 @@ export type DeleteProjectResponse = {
126
225
  success: boolean;
127
226
  data: ProjectItem;
128
227
  };
228
+ /**
229
+ * @description The created virtual dataplane
230
+ */
231
+ export type CreateVirtualDataplaneResponse = {
232
+ success: boolean;
233
+ data: VirtualDataplaneItem;
234
+ };
235
+ /**
236
+ * @description A single virtual dataplane
237
+ */
238
+ export type GetVirtualDataplaneResponse = {
239
+ success: boolean;
240
+ data: VirtualDataplaneItem;
241
+ };
242
+ /**
243
+ * @description The updated virtual dataplane
244
+ */
245
+ export type UpdateVirtualDataplaneResponse = {
246
+ success: boolean;
247
+ data: VirtualDataplaneItem;
248
+ };
249
+ /**
250
+ * @description The deleted (archived) virtual dataplane. Descendants archived by the cascade are not listed.
251
+ */
252
+ export type DeleteVirtualDataplaneResponse = {
253
+ success: boolean;
254
+ data: VirtualDataplaneItem;
255
+ };
129
256
  /**
130
257
  * @description Alert object
131
258
  * @inline
@@ -261,6 +388,32 @@ export type ProjectItem = {
261
388
  created_at: string;
262
389
  updated_at?: string | null;
263
390
  };
391
+ /**
392
+ * @description Virtual dataplane object
393
+ * @inline
394
+ */
395
+ export type VirtualDataplaneItem = {
396
+ id: string;
397
+ /** @description Virtual dataplane display name */
398
+ name: string;
399
+ /** @description Identifier of the physical cluster hosting this dataplane */
400
+ cluster_id: string;
401
+ created_at: string;
402
+ updated_at: string;
403
+ };
404
+ /**
405
+ * @description Workspace object
406
+ * @inline
407
+ */
408
+ export type WorkspaceItem = {
409
+ id: string;
410
+ /** @description Workspace display name */
411
+ name: string;
412
+ /** @description Workspace description */
413
+ description: string;
414
+ created_at: string;
415
+ updated_at?: string | null;
416
+ };
264
417
  /**
265
418
  * @inline
266
419
  */
@@ -1 +1 @@
1
- {"version":3,"file":"apiTypes.d.ts","sourceRoot":"","sources":["../../src/generated/apiTypes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"apiTypes.d.ts","sourceRoot":"","sources":["../../src/generated/apiTypes.ts"],"names":[],"mappings":"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"}
@@ -1,10 +1,20 @@
1
+ import { type Client as OpenapiFetchClient } from 'openapi-fetch';
1
2
  import { type paths } from './types.js';
2
- import { type ListAlertsRequest, type CreateAlertRequest, type GetAlertRequest, type CreateProjectRequest, type GetProjectRequest, type UpdateProjectRequest, type DeleteProjectRequest, type ListAlertsResponse, type CreateAlertResponse, type GetAlertResponse, type CreateProjectResponse, type GetProjectResponse, type UpdateProjectResponse, type DeleteProjectResponse } from './apiTypes.js';
3
- import { type ClientConfig, type FetchOptions, createApiClient } from '../util.js';
3
+ import { type ListAlertsRequest, type CreateAlertRequest, type GetAlertRequest, type CreateWorkspaceRequest, type GetWorkspaceRequest, type UpdateWorkspaceRequest, type DeleteWorkspaceRequest, type CreateProjectRequest, type GetProjectRequest, type UpdateProjectRequest, type DeleteProjectRequest, type CreateVirtualDataplaneRequest, type GetVirtualDataplaneRequest, type UpdateVirtualDataplaneRequest, type DeleteVirtualDataplaneRequest, type ListAlertsResponse, type CreateAlertResponse, type GetAlertResponse, type CreateWorkspaceResponse, type GetWorkspaceResponse, type UpdateWorkspaceResponse, type DeleteWorkspaceResponse, type CreateProjectResponse, type GetProjectResponse, type UpdateProjectResponse, type DeleteProjectResponse, type CreateVirtualDataplaneResponse, type GetVirtualDataplaneResponse, type UpdateVirtualDataplaneResponse, type DeleteVirtualDataplaneResponse } from './apiTypes.js';
4
+ import { type ClientConfig, type FetchOptions } from '../util.js';
5
+ /** Every security scheme the API's OpenAPI spec defines. */
6
+ export type SecurityScheme = 'ControlPlaneApiKey';
7
+ /**
8
+ * What `createApiClient` returns: for every security scheme the spec defines,
9
+ * the openapi-fetch client that carries the credential for it. The hand-written
10
+ * chassis builds this table, so a scheme added to or removed from the spec
11
+ * fails to compile there until the table says which client serves it.
12
+ */
13
+ export type ApiClients = Record<SecurityScheme, OpenapiFetchClient<paths>>;
4
14
  /** @inline */
5
15
  declare class AlertsNamespace {
6
16
  #private;
7
- constructor(client: ReturnType<typeof createApiClient<paths>>);
17
+ constructor(clients: ApiClients);
8
18
  /**
9
19
  * List alerts
10
20
  *
@@ -33,20 +43,105 @@ declare class AlertsNamespace {
33
43
  get(request: GetAlertRequest, options?: FetchOptions): Promise<GetAlertResponse>;
34
44
  }
35
45
  /** @inline */
46
+ declare class WorkspacesNamespace {
47
+ #private;
48
+ constructor(clients: ApiClients);
49
+ /**
50
+ * Create a workspace
51
+ *
52
+ * Create a workspace in a virtual data plane. The parent virtual data plane is identified by
53
+ * the `virtual_dataplane_id` path parameter alone; the `x-hh-dataplane-id` header does not
54
+ * participate. Your organization's virtual data plane ids are listed on the API keys page of
55
+ * your organization settings in the HoneyHive app. Most organizations have exactly one.
56
+ *
57
+ * The new workspace contains no projects. Create one with
58
+ * `POST /v1/workspaces/{workspace_id}/projects` if you need it, because a workspace with no
59
+ * projects has nowhere to log events.
60
+ *
61
+ * The optional `workspace_creator` field names the user (by email) who receives the
62
+ * workspace-creator membership on the new workspace. The named user must already be a member
63
+ * of the virtual data plane. When omitted, the workspace is created without any membership.
64
+ * The field is only accepted on API-key-initiated requests. User-initiated creation always
65
+ * makes the calling user the creator, so sending the field returns a 400.
66
+ *
67
+ * The roles that membership carries come from your organization's role configuration. An
68
+ * organization that grants no role on workspace creation is a supported case: the request
69
+ * still succeeds and the named user receives no access. A 200 response is not by itself
70
+ * confirmation that the named user was granted anything.
71
+ *
72
+ * A `workspace_creator` who is already signed in does not see the new workspace immediately.
73
+ * A session captures its scope tree and permission grants when it is created, so a membership
74
+ * granted afterwards is not reflected in it. Creating the workspace marks that user's sessions
75
+ * for refresh, and the refresh takes effect on their next request to the control plane, so an
76
+ * idle browser tab may need a page reload.
77
+ */
78
+ create(request: CreateWorkspaceRequest, options?: FetchOptions): Promise<CreateWorkspaceResponse>;
79
+ /**
80
+ * Get a workspace
81
+ *
82
+ * Retrieve a single workspace by id. The workspace is identified by the `workspace_id` path
83
+ * parameter alone; the `x-hh-workspace-id` header does not participate.
84
+ *
85
+ * The returned `name` is the workspace's display name. The globally unique slug the workspace
86
+ * was assigned at creation is an internal detail and is not part of this contract.
87
+ */
88
+ get(request: GetWorkspaceRequest, options?: FetchOptions): Promise<GetWorkspaceResponse>;
89
+ /**
90
+ * Update a workspace
91
+ *
92
+ * Update a workspace's display name and/or description. The workspace is identified by the
93
+ * `workspace_id` path parameter alone; the `x-hh-workspace-id` header does not participate.
94
+ * Only fields included in the request body are modified.
95
+ *
96
+ * The workspace's internal slug is not part of this contract and cannot be changed here.
97
+ */
98
+ update(request: UpdateWorkspaceRequest, options?: FetchOptions): Promise<UpdateWorkspaceResponse>;
99
+ /**
100
+ * Delete a workspace
101
+ *
102
+ * Delete a workspace. The workspace is soft-deleted (archived) and no longer appears in reads;
103
+ * the response returns the archived workspace. The workspace is identified by the
104
+ * `workspace_id` path parameter alone; the `x-hh-workspace-id` header does not participate.
105
+ *
106
+ * **Deleting a workspace also archives every project inside it**, so the events, datasets,
107
+ * and evaluations in those projects are no longer reachable. Because that reaches well
108
+ * beyond the resource named in the URL, a workspace that still has active projects is
109
+ * rejected with a 409 unless the request sets `dangerously_delete_child_scopes=true`.
110
+ * Projects that were already archived do not count, so a workspace emptied one project at a
111
+ * time deletes without the flag.
112
+ *
113
+ * The response describes only the workspace. It does not enumerate the projects archived
114
+ * alongside it, so read them first if you need that list.
115
+ */
116
+ delete(request: DeleteWorkspaceRequest, options?: FetchOptions): Promise<DeleteWorkspaceResponse>;
117
+ }
118
+ /** @inline */
36
119
  declare class ProjectsNamespace {
37
120
  #private;
38
- constructor(client: ReturnType<typeof createApiClient<paths>>);
121
+ constructor(clients: ApiClients);
39
122
  /**
40
123
  * Create a project
41
124
  *
42
125
  * Create a project in a workspace. The parent workspace is identified by the `workspace_id`
43
- * path parameter alone; the `x-hh-workspace-id` header does not participate.
126
+ * path parameter alone; the `x-hh-workspace-id` header does not participate. A workspace's id
127
+ * is listed on the API keys page of its workspace settings in the HoneyHive app.
44
128
  *
45
129
  * The optional `project_creator` field names the user (by email) who receives the
46
130
  * project-creator membership on the new project. The named user must already be a member of
47
131
  * the workspace. When omitted, the project is created without any membership. The field is
48
- * only accepted on API-key-initiated requests — user-initiated creation always makes the
49
- * calling user the creator and rejects the field with a 400.
132
+ * only accepted on API-key-initiated requests. User-initiated creation always makes the
133
+ * calling user the creator, so sending the field returns a 400.
134
+ *
135
+ * The roles that membership carries come from your organization's role configuration. An
136
+ * organization that grants no role on project creation is a supported case: the request
137
+ * still succeeds and the named user receives no access. A 200 response is not by itself
138
+ * confirmation that the named user was granted anything.
139
+ *
140
+ * A `project_creator` who is already signed in does not see the new project immediately. A
141
+ * session captures its scope tree and permission grants when it is created, so a membership
142
+ * granted afterwards is not reflected in it. Creating the project marks that user's sessions
143
+ * for refresh, and the refresh takes effect on their next request to the control plane, so
144
+ * an idle browser tab may need a page reload.
50
145
  */
51
146
  create(request: CreateProjectRequest, options?: FetchOptions): Promise<CreateProjectResponse>;
52
147
  /**
@@ -73,10 +168,114 @@ declare class ProjectsNamespace {
73
168
  */
74
169
  delete(request: DeleteProjectRequest, options?: FetchOptions): Promise<DeleteProjectResponse>;
75
170
  }
171
+ /** @inline */
172
+ declare class VirtualDataplanesNamespace {
173
+ #private;
174
+ constructor(clients: ApiClients);
175
+ /**
176
+ * Create a virtual data plane
177
+ *
178
+ * Create a virtual data plane in an organization. The parent organization is identified by the
179
+ * `org_id` path parameter alone; the `x-hh-org-id` header does not participate. Your
180
+ * organization's id is listed on the API keys page of your organization settings in the
181
+ * HoneyHive app.
182
+ *
183
+ * A virtual data plane is a logical tenant boundary hosted on a physical cluster, and several
184
+ * of them commonly share one cluster. Workspaces are created inside it.
185
+ *
186
+ * `cluster_id` is optional, and omitting it is the common case: the new virtual data plane is
187
+ * placed on the same cluster as the organization's existing ones. Two situations require it
188
+ * explicitly, and both return a 400 that says so rather than guessing: an organization whose
189
+ * existing virtual data planes span more than one cluster, and an organization that has none
190
+ * yet. Every response includes `cluster_id`, so reading an existing virtual data plane tells
191
+ * you which value to send.
192
+ *
193
+ * A cluster admits an organization only if your control plane administrator configured it to,
194
+ * so a `cluster_id` you can read from a sibling virtual data plane is not necessarily one you
195
+ * may place a new virtual data plane on. A cluster that does not admit this organization
196
+ * returns a 404. When this endpoint inferred the cluster, send an explicit `cluster_id` to
197
+ * place the virtual data plane on another cluster.
198
+ *
199
+ * Deployments differ in who places virtual data planes. Where HoneyHive assigns them to
200
+ * organizations automatically, this endpoint returns a 404 for every request and the
201
+ * placement is not yours to make. Deployments whose administrators own the scope tree are
202
+ * the ones this endpoint serves.
203
+ *
204
+ * The optional `dataplane_creator` field names the user (by email) who receives the
205
+ * dataplane-creator membership on the new virtual data plane. The named user must already be a
206
+ * member of the organization. When omitted, it is created without any membership. The field is
207
+ * only accepted on API-key-initiated requests; user-initiated creation always makes the
208
+ * calling user the creator, so sending the field returns a 400.
209
+ *
210
+ * The roles that membership carries come from your organization's role configuration. An
211
+ * organization that grants no role on dataplane creation is a supported case: the request
212
+ * still succeeds and the named user receives no access. A 200 response is not by itself
213
+ * confirmation that the named user was granted anything.
214
+ *
215
+ * A `dataplane_creator` who is already signed in does not see the new virtual data plane
216
+ * immediately. A session captures its scope tree and permission grants when it is created, so
217
+ * a membership granted afterwards is not reflected in it; the refresh takes effect on their
218
+ * next request to the control plane.
219
+ */
220
+ create(request: CreateVirtualDataplaneRequest, options?: FetchOptions): Promise<CreateVirtualDataplaneResponse>;
221
+ /**
222
+ * Get a virtual data plane
223
+ *
224
+ * Retrieve a single virtual data plane by id. It is identified by the `virtual_dataplane_id`
225
+ * path parameter alone; the `x-hh-dataplane-id` header does not participate.
226
+ *
227
+ * The returned `name` is the display name. The globally unique slug assigned at creation is
228
+ * an internal detail and is not part of this contract. `cluster_id` is the physical cluster
229
+ * hosting this virtual data plane, and it is the value to send when creating another one
230
+ * beside it.
231
+ *
232
+ * Reads work on every deployment, including those where HoneyHive assigns virtual data
233
+ * planes automatically and the write endpoints are unavailable.
234
+ */
235
+ get(request: GetVirtualDataplaneRequest, options?: FetchOptions): Promise<GetVirtualDataplaneResponse>;
236
+ /**
237
+ * Update a virtual data plane
238
+ *
239
+ * Update a virtual data plane's display name. It is identified by the `virtual_dataplane_id`
240
+ * path parameter alone; the `x-hh-dataplane-id` header does not participate.
241
+ *
242
+ * `name` is the only field this endpoint changes. `cluster_id` is placement rather than
243
+ * description: the workspaces and projects inside a virtual data plane hold data on the
244
+ * cluster hosting it, so moving one is a migration and not an update. A request that omits
245
+ * `name`, or sends the current one, changes nothing.
246
+ *
247
+ * This endpoint is unavailable where HoneyHive assigns virtual data planes automatically,
248
+ * and returns a 404 there.
249
+ */
250
+ update(request: UpdateVirtualDataplaneRequest, options?: FetchOptions): Promise<UpdateVirtualDataplaneResponse>;
251
+ /**
252
+ * Delete a virtual data plane
253
+ *
254
+ * Delete a virtual data plane. It is soft-deleted (archived) and no longer appears in reads;
255
+ * the response returns the archived virtual data plane. It is identified by the
256
+ * `virtual_dataplane_id` path parameter alone; the `x-hh-dataplane-id` header does not
257
+ * participate.
258
+ *
259
+ * **Deleting a virtual data plane also archives every workspace inside it and every project
260
+ * inside those workspaces**, so the events, datasets, and evaluations in them are no longer
261
+ * reachable. Because that reaches two levels below the resource named in the URL, a virtual
262
+ * data plane with active workspaces is rejected with a 409 unless the request sets
263
+ * `dangerously_delete_child_scopes=true`. Workspaces that were already archived do not count.
264
+ *
265
+ * The response describes only the virtual data plane. It does not enumerate what the cascade
266
+ * archived, so read that first if you need the list.
267
+ *
268
+ * This endpoint is unavailable where HoneyHive assigns virtual data planes automatically,
269
+ * and returns a 404 there.
270
+ */
271
+ delete(request: DeleteVirtualDataplaneRequest, options?: FetchOptions): Promise<DeleteVirtualDataplaneResponse>;
272
+ }
76
273
  export declare class Client {
77
274
  #private;
78
275
  readonly alerts: AlertsNamespace;
276
+ readonly workspaces: WorkspacesNamespace;
79
277
  readonly projects: ProjectsNamespace;
278
+ readonly virtualDataplanes: VirtualDataplanesNamespace;
80
279
  constructor(options?: ClientConfig);
81
280
  }
82
281
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/generated/client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC3B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,eAAe,EAAU,MAAM,YAAY,CAAC;AAE3F,cAAc;AACd,cAAM,eAAe;;gBAGP,MAAM,EAAE,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC;IAI7D;;;;;;OAMG;IACI,IAAI,CAAC,OAAO,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAU5F;;;;;;;;OAQG;IACI,MAAM,CAAC,OAAO,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAWhG;;;;;;OAMG;IACI,GAAG,CAAC,OAAO,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC;CASxF;AAED,cAAc;AACd,cAAM,iBAAiB;;gBAGT,MAAM,EAAE,UAAU,CAAC,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC;IAI7D;;;;;;;;;;;OAWG;IACI,MAAM,CACX,OAAO,EAAE,oBAAoB,EAC7B,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,qBAAqB,CAAC;IAWjC;;;;;OAKG;IACI,GAAG,CAAC,OAAO,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAU3F;;;;;;OAMG;IACI,MAAM,CACX,OAAO,EAAE,oBAAoB,EAC7B,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,qBAAqB,CAAC;IAWjC;;;;;;OAMG;IACI,MAAM,CACX,OAAO,EAAE,oBAAoB,EAC7B,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,qBAAqB,CAAC;CASlC;AAED,qBAAa,MAAM;;IAEjB,QAAQ,CAAC,MAAM,EAAE,eAAe,CAAC;IACjC,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAC;gBAEzB,OAAO,GAAE,YAAiB;CAKvC"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/generated/client.ts"],"names":[],"mappings":"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"}