@sylphx/contract 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/endpoint.d.ts +7 -1
- package/dist/endpoint.d.ts.map +1 -1
- package/dist/endpoints/admin-ai-playground.d.ts +3 -3
- package/dist/endpoints/admin-ai-playground.js +6 -6
- package/dist/endpoints/admin-anomalies.d.ts +7 -7
- package/dist/endpoints/admin-anomalies.js +14 -14
- package/dist/endpoints/admin-apm.d.ts +6 -6
- package/dist/endpoints/admin-apm.js +12 -12
- package/dist/endpoints/admin-audit.d.ts +185 -52
- package/dist/endpoints/admin-audit.d.ts.map +1 -1
- package/dist/endpoints/admin-audit.js +113 -113
- package/dist/endpoints/admin-billing.d.ts +19 -19
- package/dist/endpoints/admin-billing.js +38 -38
- package/dist/endpoints/admin-bootstrap.d.ts +1 -1
- package/dist/endpoints/admin-bootstrap.js +2 -2
- package/dist/endpoints/admin-broadcasts.d.ts +5 -5
- package/dist/endpoints/admin-broadcasts.js +10 -10
- package/dist/endpoints/admin-builds.d.ts +1 -1
- package/dist/endpoints/admin-builds.js +2 -2
- package/dist/endpoints/admin-config.d.ts +11 -11
- package/dist/endpoints/admin-config.js +22 -22
- package/dist/endpoints/admin-consent.d.ts +38 -14
- package/dist/endpoints/admin-consent.d.ts.map +1 -1
- package/dist/endpoints/admin-consent.js +27 -27
- package/dist/endpoints/admin-env-services.d.ts +1 -1
- package/dist/endpoints/admin-env-services.js +2 -2
- package/dist/endpoints/admin-impersonation.d.ts +9 -9
- package/dist/endpoints/admin-impersonation.js +18 -18
- package/dist/endpoints/admin-invitations.d.ts +5 -5
- package/dist/endpoints/admin-invitations.js +10 -10
- package/dist/endpoints/admin-jwt-keys.d.ts +6 -6
- package/dist/endpoints/admin-jwt-keys.js +12 -12
- package/dist/endpoints/admin-logs.d.ts +7 -7
- package/dist/endpoints/admin-logs.js +14 -14
- package/dist/endpoints/admin-plans.d.ts +4 -4
- package/dist/endpoints/admin-plans.js +8 -8
- package/dist/endpoints/admin-project-users.d.ts +8 -8
- package/dist/endpoints/admin-project-users.js +16 -16
- package/dist/endpoints/admin-projects.d.ts +7 -7
- package/dist/endpoints/admin-projects.js +14 -14
- package/dist/endpoints/admin-quotas.d.ts +6 -6
- package/dist/endpoints/admin-quotas.js +12 -12
- package/dist/endpoints/admin-rate-limits.d.ts +2 -2
- package/dist/endpoints/admin-rate-limits.js +4 -4
- package/dist/endpoints/admin-reconcile.d.ts +1 -1
- package/dist/endpoints/admin-reconcile.js +2 -2
- package/dist/endpoints/admin-resources.d.ts +2 -2
- package/dist/endpoints/admin-resources.js +4 -4
- package/dist/endpoints/admin-secrets.d.ts +2 -2
- package/dist/endpoints/admin-secrets.js +4 -4
- package/dist/endpoints/admin-services.d.ts +1 -1
- package/dist/endpoints/admin-services.js +2 -2
- package/dist/endpoints/admin-tasks.d.ts +6 -6
- package/dist/endpoints/admin-tasks.js +12 -12
- package/dist/endpoints/admin-tenants.d.ts +1 -1
- package/dist/endpoints/admin-tenants.js +2 -2
- package/dist/endpoints/admin-traces.d.ts +5 -5
- package/dist/endpoints/admin-traces.js +10 -10
- package/dist/endpoints/admin-users.d.ts +8 -8
- package/dist/endpoints/admin-users.js +16 -16
- package/dist/endpoints/admin-webhook-signature-versions.d.ts +3 -3
- package/dist/endpoints/admin-webhook-signature-versions.js +6 -6
- package/dist/endpoints/environments.d.ts +9 -0
- package/dist/endpoints/environments.d.ts.map +1 -1
- package/dist/endpoints/project-manifest.d.ts +16 -16
- package/dist/endpoints/storage.d.ts +4 -6
- package/dist/endpoints/storage.d.ts.map +1 -1
- package/dist/endpoints/storage.js +1 -12
- package/dist/hono-app.d.ts +206 -0
- package/dist/hono-app.d.ts.map +1 -0
- package/dist/hono-app.js +62 -0
- package/dist/index.d.ts +399 -228
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -3
- package/dist/schemas/admin-audit.d.ts +183 -0
- package/dist/schemas/admin-audit.d.ts.map +1 -1
- package/dist/schemas/admin-audit.js +144 -0
- package/dist/schemas/admin-consent.d.ts +32 -3
- package/dist/schemas/admin-consent.d.ts.map +1 -1
- package/dist/schemas/admin-consent.js +28 -1
- package/dist/schemas/environment.d.ts +6 -0
- package/dist/schemas/environment.d.ts.map +1 -1
- package/dist/schemas/environment.js +2 -0
- package/dist/schemas/project-manifest.d.ts +16 -16
- package/dist/schemas/storage.d.ts +4 -0
- package/dist/schemas/storage.d.ts.map +1 -1
- package/dist/schemas/storage.js +5 -0
- package/package.json +12 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* `@sylphx/contract` — the Effect Schema SSOT for every Sylphx API endpoint.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
* exposes Standard Schema's `~standard` interface
|
|
6
|
-
* consumers can swap validator libraries without breaking downstream code.
|
|
4
|
+
* The runtime surface is framework-free (no Hono, no Next.js, no Zod) — every
|
|
5
|
+
* schema exposes Standard Schema's `~standard` interface via Effect Schema,
|
|
6
|
+
* so consumers can swap validator libraries without breaking downstream code.
|
|
7
|
+
*
|
|
8
|
+
* The TYPE-LEVEL surface includes `HonoAppFromEndpoints<G>` (`./hono-app`) —
|
|
9
|
+
* a pure type transformer that derives a Hono RPC-compatible app type from
|
|
10
|
+
* an endpoint group. This is what `apps/web` consumes via `hc<T>()` so the
|
|
11
|
+
* Console never needs to import backend route handler types directly. Hono
|
|
12
|
+
* is a TYPE-ONLY peer dep here — not a runtime dependency of this package.
|
|
7
13
|
*
|
|
8
14
|
* See ADR-084 for the full rationale.
|
|
9
15
|
*/
|
|
@@ -97,6 +103,7 @@ export { tasksEndpoints } from './endpoints/tasks.js';
|
|
|
97
103
|
export { usersEndpoints } from './endpoints/users.js';
|
|
98
104
|
export { webhooksEndpoints } from './endpoints/webhooks.js';
|
|
99
105
|
export * from './errors.js';
|
|
106
|
+
export type { HonoAppFromEndpoints } from './hono-app.js';
|
|
100
107
|
export * from './schemas/_primitives.js';
|
|
101
108
|
export * from './schemas/admin-ai-playground.js';
|
|
102
109
|
export * from './schemas/admin-anomalies.js';
|
|
@@ -205,7 +212,7 @@ export * from './schemas/webhooks.js';
|
|
|
205
212
|
*/
|
|
206
213
|
export declare const endpoints: {
|
|
207
214
|
readonly adminAiPlayground: {
|
|
208
|
-
readonly listModels: import("./endpoint.js").Endpoint<"GET", "/
|
|
215
|
+
readonly listModels: import("./endpoint.js").Endpoint<"GET", "/operator/ai-playground/models", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
209
216
|
models: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
210
217
|
id: typeof import("effect/Schema").String;
|
|
211
218
|
name: typeof import("effect/Schema").String;
|
|
@@ -221,7 +228,7 @@ export declare const endpoints: {
|
|
|
221
228
|
outputCostPer1M: typeof import("effect/Schema").Number;
|
|
222
229
|
}>>;
|
|
223
230
|
}>>;
|
|
224
|
-
readonly chat: import("./endpoint.js").Endpoint<"POST", "/
|
|
231
|
+
readonly chat: import("./endpoint.js").Endpoint<"POST", "/operator/ai-playground/chat", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
225
232
|
projectId: typeof import("effect/Schema").String;
|
|
226
233
|
model: typeof import("effect/Schema").String;
|
|
227
234
|
messages: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -261,7 +268,7 @@ export declare const endpoints: {
|
|
|
261
268
|
arguments: import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>;
|
|
262
269
|
}>>>;
|
|
263
270
|
}>>;
|
|
264
|
-
readonly chatStream: import("./endpoint.js").Endpoint<"POST", "/
|
|
271
|
+
readonly chatStream: import("./endpoint.js").Endpoint<"POST", "/operator/ai-playground/chat/stream", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
265
272
|
projectId: typeof import("effect/Schema").String;
|
|
266
273
|
model: typeof import("effect/Schema").String;
|
|
267
274
|
messages: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -290,14 +297,14 @@ export declare const endpoints: {
|
|
|
290
297
|
}>>;
|
|
291
298
|
};
|
|
292
299
|
readonly adminAnomalies: {
|
|
293
|
-
readonly stats: import("./endpoint.js").Endpoint<"GET", "/
|
|
300
|
+
readonly stats: import("./endpoint.js").Endpoint<"GET", "/operator/anomalies/stats", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
294
301
|
open: typeof import("effect/Schema").Number;
|
|
295
302
|
acknowledged: typeof import("effect/Schema").Number;
|
|
296
303
|
resolved: typeof import("effect/Schema").Number;
|
|
297
304
|
dismissed: typeof import("effect/Schema").Number;
|
|
298
305
|
total: typeof import("effect/Schema").Number;
|
|
299
306
|
}>>;
|
|
300
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
307
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/anomalies/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
301
308
|
page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
302
309
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
303
310
|
status: import("effect/Schema").optional<import("effect/Schema").Literal<["all", "open", "acknowledged", "resolved", "dismissed"]>>;
|
|
@@ -326,7 +333,7 @@ export declare const endpoints: {
|
|
|
326
333
|
totalPages: typeof import("effect/Schema").Number;
|
|
327
334
|
}>;
|
|
328
335
|
}>>;
|
|
329
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
336
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/anomalies/:anomalyId", import("effect/Schema").Struct<{
|
|
330
337
|
anomalyId: typeof import("effect/Schema").String;
|
|
331
338
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
332
339
|
id: typeof import("effect/Schema").String;
|
|
@@ -344,19 +351,19 @@ export declare const endpoints: {
|
|
|
344
351
|
resolutionNotes: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
345
352
|
createdAt: typeof import("effect/Schema").String;
|
|
346
353
|
}>>;
|
|
347
|
-
readonly acknowledge: import("./endpoint.js").Endpoint<"POST", "/
|
|
354
|
+
readonly acknowledge: import("./endpoint.js").Endpoint<"POST", "/operator/anomalies/:anomalyId/acknowledge", import("effect/Schema").Struct<{
|
|
348
355
|
anomalyId: typeof import("effect/Schema").String;
|
|
349
356
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
350
357
|
success: typeof import("effect/Schema").Boolean;
|
|
351
358
|
status: import("effect/Schema").Literal<["open", "acknowledged", "resolved", "dismissed"]>;
|
|
352
359
|
}>>;
|
|
353
|
-
readonly dismiss: import("./endpoint.js").Endpoint<"POST", "/
|
|
360
|
+
readonly dismiss: import("./endpoint.js").Endpoint<"POST", "/operator/anomalies/:anomalyId/dismiss", import("effect/Schema").Struct<{
|
|
354
361
|
anomalyId: typeof import("effect/Schema").String;
|
|
355
362
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
356
363
|
success: typeof import("effect/Schema").Boolean;
|
|
357
364
|
status: import("effect/Schema").Literal<["open", "acknowledged", "resolved", "dismissed"]>;
|
|
358
365
|
}>>;
|
|
359
|
-
readonly resolve: import("./endpoint.js").Endpoint<"POST", "/
|
|
366
|
+
readonly resolve: import("./endpoint.js").Endpoint<"POST", "/operator/anomalies/:anomalyId/resolve", import("effect/Schema").Struct<{
|
|
360
367
|
anomalyId: typeof import("effect/Schema").String;
|
|
361
368
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
362
369
|
notes: typeof import("effect/Schema").String;
|
|
@@ -364,7 +371,7 @@ export declare const endpoints: {
|
|
|
364
371
|
success: typeof import("effect/Schema").Boolean;
|
|
365
372
|
status: import("effect/Schema").Literal<["open", "acknowledged", "resolved", "dismissed"]>;
|
|
366
373
|
}>>;
|
|
367
|
-
readonly errorsOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
374
|
+
readonly errorsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/anomalies/errors/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
368
375
|
total: typeof import("effect/Schema").Number;
|
|
369
376
|
unresolved: typeof import("effect/Schema").Number;
|
|
370
377
|
bySeverity: import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Number>;
|
|
@@ -391,7 +398,7 @@ export declare const endpoints: {
|
|
|
391
398
|
}>>;
|
|
392
399
|
};
|
|
393
400
|
readonly adminApm: {
|
|
394
|
-
readonly overview: import("./endpoint.js").Endpoint<"GET", "/
|
|
401
|
+
readonly overview: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/overview", import("effect/Schema").Struct<{
|
|
395
402
|
projectId: typeof import("effect/Schema").String;
|
|
396
403
|
}>, import("effect/Schema").Struct<{
|
|
397
404
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -410,7 +417,7 @@ export declare const endpoints: {
|
|
|
410
417
|
end: typeof import("effect/Schema").String;
|
|
411
418
|
}>;
|
|
412
419
|
}>>;
|
|
413
|
-
readonly endpoints: import("./endpoint.js").Endpoint<"GET", "/
|
|
420
|
+
readonly endpoints: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/endpoints", import("effect/Schema").Struct<{
|
|
414
421
|
projectId: typeof import("effect/Schema").String;
|
|
415
422
|
}>, import("effect/Schema").Struct<{
|
|
416
423
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -432,7 +439,7 @@ export declare const endpoints: {
|
|
|
432
439
|
total: typeof import("effect/Schema").Number;
|
|
433
440
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
434
441
|
}>>;
|
|
435
|
-
readonly endpointTrend: import("./endpoint.js").Endpoint<"GET", "/
|
|
442
|
+
readonly endpointTrend: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/endpoints/trend", import("effect/Schema").Struct<{
|
|
436
443
|
projectId: typeof import("effect/Schema").String;
|
|
437
444
|
}>, import("effect/Schema").Struct<{
|
|
438
445
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -448,7 +455,7 @@ export declare const endpoints: {
|
|
|
448
455
|
p95Ms: typeof import("effect/Schema").Number;
|
|
449
456
|
p99Ms: typeof import("effect/Schema").Number;
|
|
450
457
|
}>>>;
|
|
451
|
-
readonly slowestEndpoints: import("./endpoint.js").Endpoint<"GET", "/
|
|
458
|
+
readonly slowestEndpoints: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/endpoints/slowest", import("effect/Schema").Struct<{
|
|
452
459
|
projectId: typeof import("effect/Schema").String;
|
|
453
460
|
}>, import("effect/Schema").Struct<{
|
|
454
461
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -461,7 +468,7 @@ export declare const endpoints: {
|
|
|
461
468
|
p95Ms: typeof import("effect/Schema").Number;
|
|
462
469
|
requestCount: typeof import("effect/Schema").Number;
|
|
463
470
|
}>>>;
|
|
464
|
-
readonly errorEndpoints: import("./endpoint.js").Endpoint<"GET", "/
|
|
471
|
+
readonly errorEndpoints: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/endpoints/errors", import("effect/Schema").Struct<{
|
|
465
472
|
projectId: typeof import("effect/Schema").String;
|
|
466
473
|
}>, import("effect/Schema").Struct<{
|
|
467
474
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -474,7 +481,7 @@ export declare const endpoints: {
|
|
|
474
481
|
errorRate: typeof import("effect/Schema").Number;
|
|
475
482
|
requestCount: typeof import("effect/Schema").Number;
|
|
476
483
|
}>>>;
|
|
477
|
-
readonly hourlyVolume: import("./endpoint.js").Endpoint<"GET", "/
|
|
484
|
+
readonly hourlyVolume: import("./endpoint.js").Endpoint<"GET", "/operator/apm/:projectId/volume", import("effect/Schema").Struct<{
|
|
478
485
|
projectId: typeof import("effect/Schema").String;
|
|
479
486
|
}>, import("effect/Schema").Struct<{
|
|
480
487
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -486,7 +493,7 @@ export declare const endpoints: {
|
|
|
486
493
|
}>>>;
|
|
487
494
|
};
|
|
488
495
|
readonly adminAudit: {
|
|
489
|
-
readonly logs: import("./endpoint.js").Endpoint<"GET", "/
|
|
496
|
+
readonly logs: import("./endpoint.js").Endpoint<"GET", "/operator/audit/logs", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
490
497
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
491
498
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
492
499
|
page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -524,7 +531,7 @@ export declare const endpoints: {
|
|
|
524
531
|
totalActions: typeof import("effect/Schema").Number;
|
|
525
532
|
actionsByType: import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Number>;
|
|
526
533
|
}>]>>;
|
|
527
|
-
readonly activity: import("./endpoint.js").Endpoint<"GET", "/
|
|
534
|
+
readonly activity: import("./endpoint.js").Endpoint<"GET", "/operator/audit/activity", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
528
535
|
projectId: typeof import("effect/Schema").String;
|
|
529
536
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
530
537
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -541,7 +548,7 @@ export declare const endpoints: {
|
|
|
541
548
|
}>>;
|
|
542
549
|
}>>;
|
|
543
550
|
}>>;
|
|
544
|
-
readonly dashboard: import("./endpoint.js").Endpoint<"GET", "/
|
|
551
|
+
readonly dashboard: import("./endpoint.js").Endpoint<"GET", "/operator/audit/overview/dashboard", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
545
552
|
projects: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
546
553
|
id: typeof import("effect/Schema").String;
|
|
547
554
|
name: typeof import("effect/Schema").String;
|
|
@@ -586,7 +593,7 @@ export declare const endpoints: {
|
|
|
586
593
|
newOrgsThisMonth: typeof import("effect/Schema").Number;
|
|
587
594
|
userGrowth: typeof import("effect/Schema").Number;
|
|
588
595
|
}>>;
|
|
589
|
-
readonly charts: import("./endpoint.js").Endpoint<"GET", "/
|
|
596
|
+
readonly charts: import("./endpoint.js").Endpoint<"GET", "/operator/audit/overview/charts", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
590
597
|
revenueTrendData: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
591
598
|
date: typeof import("effect/Schema").String;
|
|
592
599
|
revenue: typeof import("effect/Schema").Number;
|
|
@@ -608,7 +615,7 @@ export declare const endpoints: {
|
|
|
608
615
|
cost: typeof import("effect/Schema").Number;
|
|
609
616
|
}>>;
|
|
610
617
|
}>>;
|
|
611
|
-
readonly health: import("./endpoint.js").Endpoint<"GET", "/
|
|
618
|
+
readonly health: import("./endpoint.js").Endpoint<"GET", "/operator/audit/overview/health", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
612
619
|
services: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
613
620
|
name: typeof import("effect/Schema").String;
|
|
614
621
|
status: import("effect/Schema").Literal<["healthy", "degraded", "down"]>;
|
|
@@ -621,7 +628,7 @@ export declare const endpoints: {
|
|
|
621
628
|
percentage: typeof import("effect/Schema").Number;
|
|
622
629
|
}>;
|
|
623
630
|
}>>;
|
|
624
|
-
readonly analytics: import("./endpoint.js").Endpoint<"GET", "/
|
|
631
|
+
readonly analytics: import("./endpoint.js").Endpoint<"GET", "/operator/audit/overview/analytics", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
625
632
|
totalUsers: typeof import("effect/Schema").Number;
|
|
626
633
|
newUsers30d: typeof import("effect/Schema").Number;
|
|
627
634
|
dau: typeof import("effect/Schema").Number;
|
|
@@ -644,7 +651,7 @@ export declare const endpoints: {
|
|
|
644
651
|
activeSubscriptions: typeof import("effect/Schema").Number;
|
|
645
652
|
retention: typeof import("effect/Schema").Number;
|
|
646
653
|
}>>;
|
|
647
|
-
readonly projectOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
654
|
+
readonly projectOverview: import("./endpoint.js").Endpoint<"GET", "/operator/audit/overview/:id", import("effect/Schema").Struct<{
|
|
648
655
|
id: typeof import("effect/Schema").String;
|
|
649
656
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
650
657
|
app: import("effect/Schema").Struct<{
|
|
@@ -668,7 +675,7 @@ export declare const endpoints: {
|
|
|
668
675
|
region: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
669
676
|
}>>;
|
|
670
677
|
}>>;
|
|
671
|
-
readonly servicesOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
678
|
+
readonly servicesOverview: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id", import("effect/Schema").Struct<{
|
|
672
679
|
id: typeof import("effect/Schema").String;
|
|
673
680
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
674
681
|
app: import("effect/Schema").Struct<{
|
|
@@ -706,7 +713,7 @@ export declare const endpoints: {
|
|
|
706
713
|
region: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
707
714
|
}>>;
|
|
708
715
|
}>>;
|
|
709
|
-
readonly ai: import("./endpoint.js").Endpoint<"GET", "/
|
|
716
|
+
readonly ai: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/ai", import("effect/Schema").Struct<{
|
|
710
717
|
id: typeof import("effect/Schema").String;
|
|
711
718
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
712
719
|
app: import("effect/Schema").Struct<{
|
|
@@ -740,7 +747,7 @@ export declare const endpoints: {
|
|
|
740
747
|
cost: typeof import("effect/Schema").Number;
|
|
741
748
|
}>>;
|
|
742
749
|
}>>;
|
|
743
|
-
readonly aiLogs: import("./endpoint.js").Endpoint<"GET", "/
|
|
750
|
+
readonly aiLogs: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/ai/logs", import("effect/Schema").Struct<{
|
|
744
751
|
id: typeof import("effect/Schema").String;
|
|
745
752
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
746
753
|
logs: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -767,7 +774,7 @@ export declare const endpoints: {
|
|
|
767
774
|
totalPages: typeof import("effect/Schema").Number;
|
|
768
775
|
}>;
|
|
769
776
|
}>>;
|
|
770
|
-
readonly aiRates: import("./endpoint.js").Endpoint<"GET", "/
|
|
777
|
+
readonly aiRates: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/ai/rates", import("effect/Schema").Struct<{
|
|
771
778
|
id: typeof import("effect/Schema").String;
|
|
772
779
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
773
780
|
currentRPM: typeof import("effect/Schema").Number;
|
|
@@ -785,7 +792,7 @@ export declare const endpoints: {
|
|
|
785
792
|
avgLatency: typeof import("effect/Schema").Number;
|
|
786
793
|
}>>;
|
|
787
794
|
}>>;
|
|
788
|
-
readonly aiSummary: import("./endpoint.js").Endpoint<"GET", "/
|
|
795
|
+
readonly aiSummary: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/ai/summary", import("effect/Schema").Struct<{
|
|
789
796
|
id: typeof import("effect/Schema").String;
|
|
790
797
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
791
798
|
period: typeof import("effect/Schema").String;
|
|
@@ -804,7 +811,7 @@ export declare const endpoints: {
|
|
|
804
811
|
cost: typeof import("effect/Schema").Number;
|
|
805
812
|
}>>;
|
|
806
813
|
}>>;
|
|
807
|
-
readonly billingUsage: import("./endpoint.js").Endpoint<"GET", "/
|
|
814
|
+
readonly billingUsage: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/billing/usage", import("effect/Schema").Struct<{
|
|
808
815
|
id: typeof import("effect/Schema").String;
|
|
809
816
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
810
817
|
app: import("effect/Schema").Struct<{
|
|
@@ -839,7 +846,7 @@ export declare const endpoints: {
|
|
|
839
846
|
message: typeof import("effect/Schema").String;
|
|
840
847
|
}>>;
|
|
841
848
|
}>>;
|
|
842
|
-
readonly billing: import("./endpoint.js").Endpoint<"GET", "/
|
|
849
|
+
readonly billing: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/billing", import("effect/Schema").Struct<{
|
|
843
850
|
id: typeof import("effect/Schema").String;
|
|
844
851
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
845
852
|
app: import("effect/Schema").Struct<{
|
|
@@ -880,16 +887,16 @@ export declare const endpoints: {
|
|
|
880
887
|
}>>;
|
|
881
888
|
hasStripeConnected: typeof import("effect/Schema").Boolean;
|
|
882
889
|
}>>;
|
|
883
|
-
readonly obsLogs: import("./endpoint.js").Endpoint<"GET", "/
|
|
890
|
+
readonly obsLogs: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/logs", import("effect/Schema").Struct<{
|
|
884
891
|
id: typeof import("effect/Schema").String;
|
|
885
892
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
886
893
|
entries: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
887
894
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
888
895
|
}>>;
|
|
889
|
-
readonly obsLogsStream: import("./endpoint.js").Endpoint<"GET", "/
|
|
896
|
+
readonly obsLogsStream: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/logs/stream", import("effect/Schema").Struct<{
|
|
890
897
|
id: typeof import("effect/Schema").String;
|
|
891
898
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
892
|
-
readonly obsMetrics: import("./endpoint.js").Endpoint<"GET", "/
|
|
899
|
+
readonly obsMetrics: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/metrics", import("effect/Schema").Struct<{
|
|
893
900
|
id: typeof import("effect/Schema").String;
|
|
894
901
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
895
902
|
requestRate: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
@@ -899,21 +906,21 @@ export declare const endpoints: {
|
|
|
899
906
|
memoryUsage: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
900
907
|
podCount: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
901
908
|
}>>;
|
|
902
|
-
readonly obsMetricsRange: import("./endpoint.js").Endpoint<"GET", "/
|
|
909
|
+
readonly obsMetricsRange: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/metrics/range", import("effect/Schema").Struct<{
|
|
903
910
|
id: typeof import("effect/Schema").String;
|
|
904
911
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
905
912
|
series: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
906
913
|
}>>;
|
|
907
|
-
readonly obsTraces: import("./endpoint.js").Endpoint<"GET", "/
|
|
914
|
+
readonly obsTraces: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/traces", import("effect/Schema").Struct<{
|
|
908
915
|
id: typeof import("effect/Schema").String;
|
|
909
916
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
910
917
|
traces: import("effect/Schema").Array$<typeof import("effect/Schema").Unknown>;
|
|
911
918
|
}>>;
|
|
912
|
-
readonly obsTrace: import("./endpoint.js").Endpoint<"GET", "/
|
|
919
|
+
readonly obsTrace: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/obs/traces/:traceId", import("effect/Schema").Struct<{
|
|
913
920
|
id: typeof import("effect/Schema").String;
|
|
914
921
|
traceId: typeof import("effect/Schema").String;
|
|
915
922
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
916
|
-
readonly authService: import("./endpoint.js").Endpoint<"GET", "/
|
|
923
|
+
readonly authService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/auth", import("effect/Schema").Struct<{
|
|
917
924
|
id: typeof import("effect/Schema").String;
|
|
918
925
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
919
926
|
app: import("effect/Schema").Struct<{
|
|
@@ -922,7 +929,7 @@ export declare const endpoints: {
|
|
|
922
929
|
slug: typeof import("effect/Schema").String;
|
|
923
930
|
}>;
|
|
924
931
|
}>>;
|
|
925
|
-
readonly analyticsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
932
|
+
readonly analyticsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/analytics", import("effect/Schema").Struct<{
|
|
926
933
|
id: typeof import("effect/Schema").String;
|
|
927
934
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
928
935
|
app: import("effect/Schema").Struct<{
|
|
@@ -930,8 +937,50 @@ export declare const endpoints: {
|
|
|
930
937
|
name: typeof import("effect/Schema").String;
|
|
931
938
|
slug: typeof import("effect/Schema").String;
|
|
932
939
|
}>;
|
|
940
|
+
eventsToday: typeof import("effect/Schema").Number;
|
|
941
|
+
eventsYesterday: typeof import("effect/Schema").Number;
|
|
942
|
+
eventsThisWeek: typeof import("effect/Schema").Number;
|
|
943
|
+
eventsLastWeek: typeof import("effect/Schema").Number;
|
|
944
|
+
activeUsersThisWeek: typeof import("effect/Schema").Number;
|
|
945
|
+
activeUsersLastWeek: typeof import("effect/Schema").Number;
|
|
946
|
+
uniqueVisitorsThisWeek: typeof import("effect/Schema").Number;
|
|
947
|
+
totalEvents: typeof import("effect/Schema").Number;
|
|
948
|
+
eventsByDay: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
949
|
+
date: typeof import("effect/Schema").String;
|
|
950
|
+
count: typeof import("effect/Schema").Number;
|
|
951
|
+
}>>;
|
|
952
|
+
topEvents: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
953
|
+
name: typeof import("effect/Schema").String;
|
|
954
|
+
count: typeof import("effect/Schema").Number;
|
|
955
|
+
}>>;
|
|
956
|
+
destinations: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
957
|
+
id: typeof import("effect/Schema").String;
|
|
958
|
+
platform: typeof import("effect/Schema").String;
|
|
959
|
+
name: typeof import("effect/Schema").String;
|
|
960
|
+
isActive: typeof import("effect/Schema").Boolean;
|
|
961
|
+
autoForward: typeof import("effect/Schema").Boolean;
|
|
962
|
+
eventFilter: import("effect/Schema").NullOr<import("effect/Schema").Array$<typeof import("effect/Schema").String>>;
|
|
963
|
+
eventsForwarded: typeof import("effect/Schema").Number;
|
|
964
|
+
lastUsedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
965
|
+
createdAt: typeof import("effect/Schema").String;
|
|
966
|
+
}>>;
|
|
967
|
+
destinationStats: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
968
|
+
platform: typeof import("effect/Schema").String;
|
|
969
|
+
totalEvents: typeof import("effect/Schema").Number;
|
|
970
|
+
successRate: typeof import("effect/Schema").Number;
|
|
971
|
+
lastDelivery: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
972
|
+
}>>;
|
|
973
|
+
recentDeliveries: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
974
|
+
id: typeof import("effect/Schema").String;
|
|
975
|
+
eventName: typeof import("effect/Schema").String;
|
|
976
|
+
eventTime: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
977
|
+
status: typeof import("effect/Schema").String;
|
|
978
|
+
errorMessage: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
979
|
+
conversionValue: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
|
|
980
|
+
sentAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
981
|
+
}>>;
|
|
933
982
|
}>>;
|
|
934
|
-
readonly jobsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
983
|
+
readonly jobsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/jobs", import("effect/Schema").Struct<{
|
|
935
984
|
id: typeof import("effect/Schema").String;
|
|
936
985
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
937
986
|
app: import("effect/Schema").Struct<{
|
|
@@ -939,8 +988,14 @@ export declare const endpoints: {
|
|
|
939
988
|
name: typeof import("effect/Schema").String;
|
|
940
989
|
slug: typeof import("effect/Schema").String;
|
|
941
990
|
}>;
|
|
991
|
+
scheduledCount: typeof import("effect/Schema").Number;
|
|
992
|
+
runningCount: typeof import("effect/Schema").Number;
|
|
993
|
+
completedToday: typeof import("effect/Schema").Number;
|
|
994
|
+
failedToday: typeof import("effect/Schema").Number;
|
|
995
|
+
totalJobs: typeof import("effect/Schema").Number;
|
|
996
|
+
dlqPendingCount: typeof import("effect/Schema").Number;
|
|
942
997
|
}>>;
|
|
943
|
-
readonly pushService: import("./endpoint.js").Endpoint<"GET", "/
|
|
998
|
+
readonly pushService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/push", import("effect/Schema").Struct<{
|
|
944
999
|
id: typeof import("effect/Schema").String;
|
|
945
1000
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
946
1001
|
app: import("effect/Schema").Struct<{
|
|
@@ -949,7 +1004,7 @@ export declare const endpoints: {
|
|
|
949
1004
|
slug: typeof import("effect/Schema").String;
|
|
950
1005
|
}>;
|
|
951
1006
|
}>>;
|
|
952
|
-
readonly runsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1007
|
+
readonly runsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/runs", import("effect/Schema").Struct<{
|
|
953
1008
|
id: typeof import("effect/Schema").String;
|
|
954
1009
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
955
1010
|
app: import("effect/Schema").Struct<{
|
|
@@ -957,8 +1012,14 @@ export declare const endpoints: {
|
|
|
957
1012
|
name: typeof import("effect/Schema").String;
|
|
958
1013
|
slug: typeof import("effect/Schema").String;
|
|
959
1014
|
}>;
|
|
1015
|
+
pendingCount: typeof import("effect/Schema").Number;
|
|
1016
|
+
runningCount: typeof import("effect/Schema").Number;
|
|
1017
|
+
succeededToday: typeof import("effect/Schema").Number;
|
|
1018
|
+
failedToday: typeof import("effect/Schema").Number;
|
|
1019
|
+
totalRuns: typeof import("effect/Schema").Number;
|
|
1020
|
+
avgDurationMs: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
|
|
960
1021
|
}>>;
|
|
961
|
-
readonly workersService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1022
|
+
readonly workersService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/workers", import("effect/Schema").Struct<{
|
|
962
1023
|
id: typeof import("effect/Schema").String;
|
|
963
1024
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
964
1025
|
app: import("effect/Schema").Struct<{
|
|
@@ -966,8 +1027,14 @@ export declare const endpoints: {
|
|
|
966
1027
|
name: typeof import("effect/Schema").String;
|
|
967
1028
|
slug: typeof import("effect/Schema").String;
|
|
968
1029
|
}>;
|
|
1030
|
+
pendingCount: typeof import("effect/Schema").Number;
|
|
1031
|
+
runningCount: typeof import("effect/Schema").Number;
|
|
1032
|
+
succeededToday: typeof import("effect/Schema").Number;
|
|
1033
|
+
failedToday: typeof import("effect/Schema").Number;
|
|
1034
|
+
totalRuns: typeof import("effect/Schema").Number;
|
|
1035
|
+
avgDurationMs: import("effect/Schema").NullOr<typeof import("effect/Schema").Number>;
|
|
969
1036
|
}>>;
|
|
970
|
-
readonly listRuns: import("./endpoint.js").Endpoint<"GET", "/
|
|
1037
|
+
readonly listRuns: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/runs/list", import("effect/Schema").Struct<{
|
|
971
1038
|
id: typeof import("effect/Schema").String;
|
|
972
1039
|
}>, import("effect/Schema").Struct<{
|
|
973
1040
|
status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -986,7 +1053,7 @@ export declare const endpoints: {
|
|
|
986
1053
|
}>>;
|
|
987
1054
|
total: typeof import("effect/Schema").Number;
|
|
988
1055
|
}>>;
|
|
989
|
-
readonly listWorkerRuns: import("./endpoint.js").Endpoint<"GET", "/
|
|
1056
|
+
readonly listWorkerRuns: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/workers/runs", import("effect/Schema").Struct<{
|
|
990
1057
|
id: typeof import("effect/Schema").String;
|
|
991
1058
|
}>, import("effect/Schema").Struct<{
|
|
992
1059
|
status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1005,7 +1072,7 @@ export declare const endpoints: {
|
|
|
1005
1072
|
}>>;
|
|
1006
1073
|
total: typeof import("effect/Schema").Number;
|
|
1007
1074
|
}>>;
|
|
1008
|
-
readonly triggersService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1075
|
+
readonly triggersService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/triggers", import("effect/Schema").Struct<{
|
|
1009
1076
|
id: typeof import("effect/Schema").String;
|
|
1010
1077
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1011
1078
|
app: import("effect/Schema").Struct<{
|
|
@@ -1013,36 +1080,60 @@ export declare const endpoints: {
|
|
|
1013
1080
|
name: typeof import("effect/Schema").String;
|
|
1014
1081
|
slug: typeof import("effect/Schema").String;
|
|
1015
1082
|
}>;
|
|
1083
|
+
triggers: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1084
|
+
id: typeof import("effect/Schema").String;
|
|
1085
|
+
name: typeof import("effect/Schema").String;
|
|
1086
|
+
sourceType: import("effect/Schema").Literal<["cron", "event"]>;
|
|
1087
|
+
targetType: import("effect/Schema").Literal<["task", "run", "http"]>;
|
|
1088
|
+
cronExpression: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1089
|
+
eventName: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1090
|
+
handlerPath: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1091
|
+
callbackUrl: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1092
|
+
status: import("effect/Schema").Literal<["active", "paused", "deleted"]>;
|
|
1093
|
+
nextRunAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1094
|
+
lastRunAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1095
|
+
createdAt: typeof import("effect/Schema").String;
|
|
1096
|
+
updatedAt: typeof import("effect/Schema").String;
|
|
1097
|
+
}>>;
|
|
1098
|
+
stats: import("effect/Schema").Struct<{
|
|
1099
|
+
activeCount: typeof import("effect/Schema").Number;
|
|
1100
|
+
pausedCount: typeof import("effect/Schema").Number;
|
|
1101
|
+
totalCount: typeof import("effect/Schema").Number;
|
|
1102
|
+
firedToday: typeof import("effect/Schema").Number;
|
|
1103
|
+
cronCount: typeof import("effect/Schema").Number;
|
|
1104
|
+
eventCount: typeof import("effect/Schema").Number;
|
|
1105
|
+
httpCount: typeof import("effect/Schema").Number;
|
|
1106
|
+
}>;
|
|
1016
1107
|
}>>;
|
|
1017
|
-
readonly pauseTrigger: import("./endpoint.js").Endpoint<"POST", "/
|
|
1108
|
+
readonly pauseTrigger: import("./endpoint.js").Endpoint<"POST", "/operator/audit/projects/:id/triggers/:triggerId/pause", import("effect/Schema").Struct<{
|
|
1018
1109
|
id: typeof import("effect/Schema").String;
|
|
1019
1110
|
triggerId: typeof import("effect/Schema").String;
|
|
1020
1111
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1021
1112
|
success: typeof import("effect/Schema").Boolean;
|
|
1022
1113
|
message: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1023
1114
|
}>>;
|
|
1024
|
-
readonly resumeTrigger: import("./endpoint.js").Endpoint<"POST", "/
|
|
1115
|
+
readonly resumeTrigger: import("./endpoint.js").Endpoint<"POST", "/operator/audit/projects/:id/triggers/:triggerId/resume", import("effect/Schema").Struct<{
|
|
1025
1116
|
id: typeof import("effect/Schema").String;
|
|
1026
1117
|
triggerId: typeof import("effect/Schema").String;
|
|
1027
1118
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1028
1119
|
success: typeof import("effect/Schema").Boolean;
|
|
1029
1120
|
message: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1030
1121
|
}>>;
|
|
1031
|
-
readonly fireTrigger: import("./endpoint.js").Endpoint<"POST", "/
|
|
1122
|
+
readonly fireTrigger: import("./endpoint.js").Endpoint<"POST", "/operator/audit/projects/:id/triggers/:triggerId/fire", import("effect/Schema").Struct<{
|
|
1032
1123
|
id: typeof import("effect/Schema").String;
|
|
1033
1124
|
triggerId: typeof import("effect/Schema").String;
|
|
1034
1125
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1035
1126
|
success: typeof import("effect/Schema").Boolean;
|
|
1036
1127
|
message: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1037
1128
|
}>>;
|
|
1038
|
-
readonly deleteTrigger: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
1129
|
+
readonly deleteTrigger: import("./endpoint.js").Endpoint<"DELETE", "/operator/audit/projects/:id/triggers/:triggerId", import("effect/Schema").Struct<{
|
|
1039
1130
|
id: typeof import("effect/Schema").String;
|
|
1040
1131
|
triggerId: typeof import("effect/Schema").String;
|
|
1041
1132
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1042
1133
|
success: typeof import("effect/Schema").Boolean;
|
|
1043
1134
|
message: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1044
1135
|
}>>;
|
|
1045
|
-
readonly functionsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1136
|
+
readonly functionsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/functions", import("effect/Schema").Struct<{
|
|
1046
1137
|
id: typeof import("effect/Schema").String;
|
|
1047
1138
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1048
1139
|
app: import("effect/Schema").Struct<{
|
|
@@ -1051,10 +1142,10 @@ export declare const endpoints: {
|
|
|
1051
1142
|
slug: typeof import("effect/Schema").String;
|
|
1052
1143
|
}>;
|
|
1053
1144
|
}>>;
|
|
1054
|
-
readonly listFunctions: import("./endpoint.js").Endpoint<"GET", "/
|
|
1145
|
+
readonly listFunctions: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/functions/list", import("effect/Schema").Struct<{
|
|
1055
1146
|
id: typeof import("effect/Schema").String;
|
|
1056
1147
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1057
|
-
readonly listPushSubscribers: import("./endpoint.js").Endpoint<"GET", "/
|
|
1148
|
+
readonly listPushSubscribers: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/push/subscribers", import("effect/Schema").Struct<{
|
|
1058
1149
|
id: typeof import("effect/Schema").String;
|
|
1059
1150
|
}>, import("effect/Schema").Struct<{
|
|
1060
1151
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1066,7 +1157,7 @@ export declare const endpoints: {
|
|
|
1066
1157
|
slug: typeof import("effect/Schema").String;
|
|
1067
1158
|
}>;
|
|
1068
1159
|
}>>;
|
|
1069
|
-
readonly emailService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1160
|
+
readonly emailService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/email", import("effect/Schema").Struct<{
|
|
1070
1161
|
id: typeof import("effect/Schema").String;
|
|
1071
1162
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1072
1163
|
app: import("effect/Schema").Struct<{
|
|
@@ -1074,8 +1165,27 @@ export declare const endpoints: {
|
|
|
1074
1165
|
name: typeof import("effect/Schema").String;
|
|
1075
1166
|
slug: typeof import("effect/Schema").String;
|
|
1076
1167
|
}>;
|
|
1168
|
+
stats: import("effect/Schema").Struct<{
|
|
1169
|
+
total: typeof import("effect/Schema").Number;
|
|
1170
|
+
sent: typeof import("effect/Schema").Number;
|
|
1171
|
+
delivered: typeof import("effect/Schema").Number;
|
|
1172
|
+
opened: typeof import("effect/Schema").Number;
|
|
1173
|
+
clicked: typeof import("effect/Schema").Number;
|
|
1174
|
+
bounced: typeof import("effect/Schema").Number;
|
|
1175
|
+
openRate: typeof import("effect/Schema").Number;
|
|
1176
|
+
clickRate: typeof import("effect/Schema").Number;
|
|
1177
|
+
}>;
|
|
1178
|
+
templateCount: typeof import("effect/Schema").Number;
|
|
1179
|
+
templates: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1180
|
+
id: typeof import("effect/Schema").String;
|
|
1181
|
+
key: typeof import("effect/Schema").String;
|
|
1182
|
+
name: typeof import("effect/Schema").String;
|
|
1183
|
+
type: typeof import("effect/Schema").String;
|
|
1184
|
+
isActive: typeof import("effect/Schema").Boolean;
|
|
1185
|
+
updatedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1186
|
+
}>>;
|
|
1077
1187
|
}>>;
|
|
1078
|
-
readonly consentService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1188
|
+
readonly consentService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/consent", import("effect/Schema").Struct<{
|
|
1079
1189
|
id: typeof import("effect/Schema").String;
|
|
1080
1190
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1081
1191
|
app: import("effect/Schema").Struct<{
|
|
@@ -1083,8 +1193,17 @@ export declare const endpoints: {
|
|
|
1083
1193
|
name: typeof import("effect/Schema").String;
|
|
1084
1194
|
slug: typeof import("effect/Schema").String;
|
|
1085
1195
|
}>;
|
|
1196
|
+
totalConsents: typeof import("effect/Schema").Number;
|
|
1197
|
+
acceptedCount: typeof import("effect/Schema").Number;
|
|
1198
|
+
totalChanges: typeof import("effect/Schema").Number;
|
|
1199
|
+
acceptRate: typeof import("effect/Schema").Number;
|
|
1200
|
+
config: import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
1201
|
+
position: typeof import("effect/Schema").String;
|
|
1202
|
+
theme: typeof import("effect/Schema").String;
|
|
1203
|
+
cookieLifetimeDays: typeof import("effect/Schema").Number;
|
|
1204
|
+
}>>;
|
|
1086
1205
|
}>>;
|
|
1087
|
-
readonly webhooksService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1206
|
+
readonly webhooksService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/webhooks", import("effect/Schema").Struct<{
|
|
1088
1207
|
id: typeof import("effect/Schema").String;
|
|
1089
1208
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1090
1209
|
app: import("effect/Schema").Struct<{
|
|
@@ -1093,7 +1212,7 @@ export declare const endpoints: {
|
|
|
1093
1212
|
slug: typeof import("effect/Schema").String;
|
|
1094
1213
|
}>;
|
|
1095
1214
|
}>>;
|
|
1096
|
-
readonly referralsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1215
|
+
readonly referralsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/referrals", import("effect/Schema").Struct<{
|
|
1097
1216
|
id: typeof import("effect/Schema").String;
|
|
1098
1217
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1099
1218
|
app: import("effect/Schema").Struct<{
|
|
@@ -1102,7 +1221,7 @@ export declare const endpoints: {
|
|
|
1102
1221
|
slug: typeof import("effect/Schema").String;
|
|
1103
1222
|
}>;
|
|
1104
1223
|
}>>;
|
|
1105
|
-
readonly databaseService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1224
|
+
readonly databaseService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/database", import("effect/Schema").Struct<{
|
|
1106
1225
|
id: typeof import("effect/Schema").String;
|
|
1107
1226
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1108
1227
|
app: import("effect/Schema").Struct<{
|
|
@@ -1111,7 +1230,7 @@ export declare const endpoints: {
|
|
|
1111
1230
|
slug: typeof import("effect/Schema").String;
|
|
1112
1231
|
}>;
|
|
1113
1232
|
}>>;
|
|
1114
|
-
readonly newsletterService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1233
|
+
readonly newsletterService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/newsletter", import("effect/Schema").Struct<{
|
|
1115
1234
|
id: typeof import("effect/Schema").String;
|
|
1116
1235
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1117
1236
|
app: import("effect/Schema").Struct<{
|
|
@@ -1119,8 +1238,29 @@ export declare const endpoints: {
|
|
|
1119
1238
|
name: typeof import("effect/Schema").String;
|
|
1120
1239
|
slug: typeof import("effect/Schema").String;
|
|
1121
1240
|
}>;
|
|
1241
|
+
totalSubscribers: typeof import("effect/Schema").Number;
|
|
1242
|
+
verifiedSubscribers: typeof import("effect/Schema").Number;
|
|
1243
|
+
unsubscribedCount: typeof import("effect/Schema").Number;
|
|
1244
|
+
newSubscribersThisMonth: typeof import("effect/Schema").Number;
|
|
1245
|
+
bySource: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1246
|
+
source: typeof import("effect/Schema").String;
|
|
1247
|
+
count: typeof import("effect/Schema").Number;
|
|
1248
|
+
}>>;
|
|
1249
|
+
recentSubscribers: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1250
|
+
id: typeof import("effect/Schema").String;
|
|
1251
|
+
email: typeof import("effect/Schema").String;
|
|
1252
|
+
name: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1253
|
+
source: typeof import("effect/Schema").String;
|
|
1254
|
+
emailVerified: typeof import("effect/Schema").Boolean;
|
|
1255
|
+
createdAt: typeof import("effect/Schema").String;
|
|
1256
|
+
}>>;
|
|
1257
|
+
automationStats: import("effect/Schema").Struct<{
|
|
1258
|
+
sequences: typeof import("effect/Schema").Number;
|
|
1259
|
+
activeSequences: typeof import("effect/Schema").Number;
|
|
1260
|
+
totalEnrollments: typeof import("effect/Schema").Number;
|
|
1261
|
+
}>;
|
|
1122
1262
|
}>>;
|
|
1123
|
-
readonly engagementService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1263
|
+
readonly engagementService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/engagement", import("effect/Schema").Struct<{
|
|
1124
1264
|
id: typeof import("effect/Schema").String;
|
|
1125
1265
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1126
1266
|
app: import("effect/Schema").Struct<{
|
|
@@ -1129,16 +1269,16 @@ export declare const endpoints: {
|
|
|
1129
1269
|
slug: typeof import("effect/Schema").String;
|
|
1130
1270
|
}>;
|
|
1131
1271
|
}>>;
|
|
1132
|
-
readonly databaseMetrics: import("./endpoint.js").Endpoint<"GET", "/
|
|
1272
|
+
readonly databaseMetrics: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/database/metrics", import("effect/Schema").Struct<{
|
|
1133
1273
|
id: typeof import("effect/Schema").String;
|
|
1134
1274
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1135
|
-
readonly databaseQueries: import("./endpoint.js").Endpoint<"GET", "/
|
|
1275
|
+
readonly databaseQueries: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/database/queries", import("effect/Schema").Struct<{
|
|
1136
1276
|
id: typeof import("effect/Schema").String;
|
|
1137
1277
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1138
|
-
readonly databaseTables: import("./endpoint.js").Endpoint<"GET", "/
|
|
1278
|
+
readonly databaseTables: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/database/tables", import("effect/Schema").Struct<{
|
|
1139
1279
|
id: typeof import("effect/Schema").String;
|
|
1140
1280
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1141
|
-
readonly flagsService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1281
|
+
readonly flagsService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/flags", import("effect/Schema").Struct<{
|
|
1142
1282
|
id: typeof import("effect/Schema").String;
|
|
1143
1283
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1144
1284
|
app: import("effect/Schema").Struct<{
|
|
@@ -1147,7 +1287,7 @@ export declare const endpoints: {
|
|
|
1147
1287
|
slug: typeof import("effect/Schema").String;
|
|
1148
1288
|
}>;
|
|
1149
1289
|
}>>;
|
|
1150
|
-
readonly monitoringService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1290
|
+
readonly monitoringService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/monitoring", import("effect/Schema").Struct<{
|
|
1151
1291
|
id: typeof import("effect/Schema").String;
|
|
1152
1292
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1153
1293
|
app: import("effect/Schema").Struct<{
|
|
@@ -1156,7 +1296,7 @@ export declare const endpoints: {
|
|
|
1156
1296
|
slug: typeof import("effect/Schema").String;
|
|
1157
1297
|
}>;
|
|
1158
1298
|
}>>;
|
|
1159
|
-
readonly storageService: import("./endpoint.js").Endpoint<"GET", "/
|
|
1299
|
+
readonly storageService: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/storage", import("effect/Schema").Struct<{
|
|
1160
1300
|
id: typeof import("effect/Schema").String;
|
|
1161
1301
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1162
1302
|
app: import("effect/Schema").Struct<{
|
|
@@ -1165,7 +1305,7 @@ export declare const endpoints: {
|
|
|
1165
1305
|
slug: typeof import("effect/Schema").String;
|
|
1166
1306
|
}>;
|
|
1167
1307
|
}>>;
|
|
1168
|
-
readonly storageBuckets: import("./endpoint.js").Endpoint<"GET", "/
|
|
1308
|
+
readonly storageBuckets: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/storage/buckets", import("effect/Schema").Struct<{
|
|
1169
1309
|
id: typeof import("effect/Schema").String;
|
|
1170
1310
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1171
1311
|
app: import("effect/Schema").Struct<{
|
|
@@ -1174,7 +1314,7 @@ export declare const endpoints: {
|
|
|
1174
1314
|
slug: typeof import("effect/Schema").String;
|
|
1175
1315
|
}>;
|
|
1176
1316
|
}>>;
|
|
1177
|
-
readonly storageFiles: import("./endpoint.js").Endpoint<"GET", "/
|
|
1317
|
+
readonly storageFiles: import("./endpoint.js").Endpoint<"GET", "/operator/audit/projects/:id/storage/files", import("effect/Schema").Struct<{
|
|
1178
1318
|
id: typeof import("effect/Schema").String;
|
|
1179
1319
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1180
1320
|
app: import("effect/Schema").Struct<{
|
|
@@ -1183,53 +1323,53 @@ export declare const endpoints: {
|
|
|
1183
1323
|
slug: typeof import("effect/Schema").String;
|
|
1184
1324
|
}>;
|
|
1185
1325
|
}>>;
|
|
1186
|
-
readonly dateRange: import("./endpoint.js").Endpoint<"GET", "/
|
|
1326
|
+
readonly dateRange: import("./endpoint.js").Endpoint<"GET", "/operator/audit/dateRange", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1187
1327
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1188
1328
|
endDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1189
1329
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1190
1330
|
};
|
|
1191
1331
|
readonly adminBilling: {
|
|
1192
|
-
readonly overview: import("./endpoint.js").Endpoint<"GET", "/
|
|
1193
|
-
readonly stats: import("./endpoint.js").Endpoint<"GET", "/
|
|
1194
|
-
readonly platformUsage: import("./endpoint.js").Endpoint<"GET", "/
|
|
1332
|
+
readonly overview: import("./endpoint.js").Endpoint<"GET", "/operator/billing/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1333
|
+
readonly stats: import("./endpoint.js").Endpoint<"GET", "/operator/billing/stats", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1334
|
+
readonly platformUsage: import("./endpoint.js").Endpoint<"GET", "/operator/billing/usage/platform", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1195
1335
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1196
1336
|
endDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1197
1337
|
period: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1198
1338
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1199
|
-
readonly orgUsage: import("./endpoint.js").Endpoint<"GET", "/
|
|
1339
|
+
readonly orgUsage: import("./endpoint.js").Endpoint<"GET", "/operator/billing/usage/orgs/:orgId", import("effect/Schema").Struct<{
|
|
1200
1340
|
orgId: typeof import("effect/Schema").String;
|
|
1201
1341
|
}>, import("effect/Schema").Struct<{
|
|
1202
1342
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1203
1343
|
endDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1204
1344
|
period: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1205
1345
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1206
|
-
readonly orgMonthlySummary: import("./endpoint.js").Endpoint<"GET", "/
|
|
1346
|
+
readonly orgMonthlySummary: import("./endpoint.js").Endpoint<"GET", "/operator/billing/usage/orgs/:orgId/monthly", import("effect/Schema").Struct<{
|
|
1207
1347
|
orgId: typeof import("effect/Schema").String;
|
|
1208
1348
|
}>, import("effect/Schema").Struct<{
|
|
1209
1349
|
month: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1210
1350
|
year: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1211
1351
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1212
|
-
readonly listBalances: import("./endpoint.js").Endpoint<"GET", "/
|
|
1352
|
+
readonly listBalances: import("./endpoint.js").Endpoint<"GET", "/operator/billing/balances", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1213
1353
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1214
1354
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1215
1355
|
status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1216
1356
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1217
|
-
readonly getBalance: import("./endpoint.js").Endpoint<"GET", "/
|
|
1357
|
+
readonly getBalance: import("./endpoint.js").Endpoint<"GET", "/operator/billing/balances/:orgId", import("effect/Schema").Struct<{
|
|
1218
1358
|
orgId: typeof import("effect/Schema").String;
|
|
1219
1359
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1220
|
-
readonly getTransactions: import("./endpoint.js").Endpoint<"GET", "/
|
|
1360
|
+
readonly getTransactions: import("./endpoint.js").Endpoint<"GET", "/operator/billing/balances/:orgId/transactions", import("effect/Schema").Struct<{
|
|
1221
1361
|
orgId: typeof import("effect/Schema").String;
|
|
1222
1362
|
}>, import("effect/Schema").Struct<{
|
|
1223
1363
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1224
1364
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1225
1365
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1226
|
-
readonly addCredits: import("./endpoint.js").Endpoint<"POST", "/
|
|
1366
|
+
readonly addCredits: import("./endpoint.js").Endpoint<"POST", "/operator/billing/balances/:orgId/credits", import("effect/Schema").Struct<{
|
|
1227
1367
|
orgId: typeof import("effect/Schema").String;
|
|
1228
1368
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1229
1369
|
amountCents: typeof import("effect/Schema").Number;
|
|
1230
1370
|
description: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1231
1371
|
}>, typeof import("effect/Schema").Unknown>;
|
|
1232
|
-
readonly updateBalanceSettings: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1372
|
+
readonly updateBalanceSettings: import("./endpoint.js").Endpoint<"PATCH", "/operator/billing/balances/:orgId/settings", import("effect/Schema").Struct<{
|
|
1233
1373
|
orgId: typeof import("effect/Schema").String;
|
|
1234
1374
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1235
1375
|
lowBalanceThresholdCents: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
|
|
@@ -1237,41 +1377,41 @@ export declare const endpoints: {
|
|
|
1237
1377
|
autoTopupAmountCents: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
|
|
1238
1378
|
autoTopupThresholdCents: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
|
|
1239
1379
|
}>, typeof import("effect/Schema").Unknown>;
|
|
1240
|
-
readonly listInvoices: import("./endpoint.js").Endpoint<"GET", "/
|
|
1380
|
+
readonly listInvoices: import("./endpoint.js").Endpoint<"GET", "/operator/billing/invoices", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1241
1381
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1242
1382
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1243
1383
|
status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1244
1384
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1245
|
-
readonly getInvoice: import("./endpoint.js").Endpoint<"GET", "/
|
|
1385
|
+
readonly getInvoice: import("./endpoint.js").Endpoint<"GET", "/operator/billing/invoices/:invoiceId", import("effect/Schema").Struct<{
|
|
1246
1386
|
invoiceId: typeof import("effect/Schema").String;
|
|
1247
1387
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1248
|
-
readonly getOrgInvoices: import("./endpoint.js").Endpoint<"GET", "/
|
|
1388
|
+
readonly getOrgInvoices: import("./endpoint.js").Endpoint<"GET", "/operator/billing/orgs/:orgId/invoices", import("effect/Schema").Struct<{
|
|
1249
1389
|
orgId: typeof import("effect/Schema").String;
|
|
1250
1390
|
}>, import("effect/Schema").Struct<{
|
|
1251
1391
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1252
1392
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1253
1393
|
status: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1254
1394
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1255
|
-
readonly generateInvoice: import("./endpoint.js").Endpoint<"POST", "/
|
|
1395
|
+
readonly generateInvoice: import("./endpoint.js").Endpoint<"POST", "/operator/billing/orgs/:orgId/invoices", import("effect/Schema").Struct<{
|
|
1256
1396
|
orgId: typeof import("effect/Schema").String;
|
|
1257
1397
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>, typeof import("effect/Schema").Unknown>;
|
|
1258
|
-
readonly finalizeInvoice: import("./endpoint.js").Endpoint<"POST", "/
|
|
1398
|
+
readonly finalizeInvoice: import("./endpoint.js").Endpoint<"POST", "/operator/billing/invoices/:invoiceId/finalize", import("effect/Schema").Struct<{
|
|
1259
1399
|
invoiceId: typeof import("effect/Schema").String;
|
|
1260
1400
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1261
|
-
readonly getPricing: import("./endpoint.js").Endpoint<"GET", "/
|
|
1262
|
-
readonly updatePricing: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1263
|
-
readonly costAnalysis: import("./endpoint.js").Endpoint<"GET", "/
|
|
1264
|
-
readonly topConsumers: import("./endpoint.js").Endpoint<"GET", "/
|
|
1401
|
+
readonly getPricing: import("./endpoint.js").Endpoint<"GET", "/operator/billing/pricing", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1402
|
+
readonly updatePricing: import("./endpoint.js").Endpoint<"PATCH", "/operator/billing/pricing", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>, typeof import("effect/Schema").Unknown>;
|
|
1403
|
+
readonly costAnalysis: import("./endpoint.js").Endpoint<"GET", "/operator/billing/analysis/costs", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1404
|
+
readonly topConsumers: import("./endpoint.js").Endpoint<"GET", "/operator/billing/analysis/top-consumers", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1265
1405
|
};
|
|
1266
1406
|
readonly adminBootstrap: {
|
|
1267
|
-
readonly resetWindow: import("./endpoint.js").Endpoint<"POST", "/
|
|
1407
|
+
readonly resetWindow: import("./endpoint.js").Endpoint<"POST", "/operator/reset-bootstrap-window", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{}>, import("effect/Schema").Struct<{
|
|
1268
1408
|
opened: typeof import("effect/Schema").Boolean;
|
|
1269
1409
|
ttlSeconds: typeof import("effect/Schema").Number;
|
|
1270
1410
|
message: typeof import("effect/Schema").String;
|
|
1271
1411
|
}>>;
|
|
1272
1412
|
};
|
|
1273
1413
|
readonly adminBuilds: {
|
|
1274
|
-
readonly reap: import("./endpoint.js").Endpoint<"POST", "/
|
|
1414
|
+
readonly reap: import("./endpoint.js").Endpoint<"POST", "/operator/builds/reap", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1275
1415
|
olderThan: import("effect/Schema").filter<typeof import("effect/Schema").String>;
|
|
1276
1416
|
dryRun: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
1277
1417
|
reason: import("effect/Schema").optional<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>>;
|
|
@@ -1290,7 +1430,7 @@ export declare const endpoints: {
|
|
|
1290
1430
|
}>>;
|
|
1291
1431
|
};
|
|
1292
1432
|
readonly adminBroadcasts: {
|
|
1293
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
1433
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/broadcasts/broadcasts", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1294
1434
|
projectId: typeof import("effect/Schema").String;
|
|
1295
1435
|
}>, import("effect/Schema").Struct<{
|
|
1296
1436
|
type: import("effect/Schema").Literal<["email", "push", "in_app"]>;
|
|
@@ -1307,7 +1447,7 @@ export declare const endpoints: {
|
|
|
1307
1447
|
scheduledAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1308
1448
|
createdAt: typeof import("effect/Schema").String;
|
|
1309
1449
|
}>>;
|
|
1310
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
1450
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/broadcasts/broadcasts", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1311
1451
|
projectId: typeof import("effect/Schema").String;
|
|
1312
1452
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1313
1453
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1337,7 +1477,7 @@ export declare const endpoints: {
|
|
|
1337
1477
|
}>>;
|
|
1338
1478
|
total: typeof import("effect/Schema").Number;
|
|
1339
1479
|
}>>;
|
|
1340
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
1480
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/broadcasts/broadcasts/:id", import("effect/Schema").Struct<{
|
|
1341
1481
|
id: typeof import("effect/Schema").String;
|
|
1342
1482
|
}>, import("effect/Schema").Struct<{
|
|
1343
1483
|
projectId: typeof import("effect/Schema").String;
|
|
@@ -1366,7 +1506,7 @@ export declare const endpoints: {
|
|
|
1366
1506
|
updatedAt: typeof import("effect/Schema").String;
|
|
1367
1507
|
}>;
|
|
1368
1508
|
}>>;
|
|
1369
|
-
readonly send: import("./endpoint.js").Endpoint<"POST", "/
|
|
1509
|
+
readonly send: import("./endpoint.js").Endpoint<"POST", "/operator/broadcasts/broadcasts/:id/send", import("effect/Schema").Struct<{
|
|
1370
1510
|
id: typeof import("effect/Schema").String;
|
|
1371
1511
|
}>, import("effect/Schema").Struct<{
|
|
1372
1512
|
projectId: typeof import("effect/Schema").String;
|
|
@@ -1378,7 +1518,7 @@ export declare const endpoints: {
|
|
|
1378
1518
|
failed: typeof import("effect/Schema").Number;
|
|
1379
1519
|
}>;
|
|
1380
1520
|
}>>;
|
|
1381
|
-
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
1521
|
+
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/operator/broadcasts/broadcasts/:id", import("effect/Schema").Struct<{
|
|
1382
1522
|
id: typeof import("effect/Schema").String;
|
|
1383
1523
|
}>, import("effect/Schema").Struct<{
|
|
1384
1524
|
projectId: typeof import("effect/Schema").String;
|
|
@@ -1387,7 +1527,7 @@ export declare const endpoints: {
|
|
|
1387
1527
|
}>>;
|
|
1388
1528
|
};
|
|
1389
1529
|
readonly adminConfig: {
|
|
1390
|
-
readonly getReferralConfig: import("./endpoint.js").Endpoint<"GET", "/
|
|
1530
|
+
readonly getReferralConfig: import("./endpoint.js").Endpoint<"GET", "/operator/config/projects/:projectId/referral-config", import("effect/Schema").Struct<{
|
|
1391
1531
|
projectId: typeof import("effect/Schema").String;
|
|
1392
1532
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1393
1533
|
config: import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -1407,7 +1547,7 @@ export declare const endpoints: {
|
|
|
1407
1547
|
updatedAt: typeof import("effect/Schema").String;
|
|
1408
1548
|
}>>;
|
|
1409
1549
|
}>>;
|
|
1410
|
-
readonly updateReferralConfig: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1550
|
+
readonly updateReferralConfig: import("./endpoint.js").Endpoint<"PATCH", "/operator/config/projects/:projectId/referral-config", import("effect/Schema").Struct<{
|
|
1411
1551
|
projectId: typeof import("effect/Schema").String;
|
|
1412
1552
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1413
1553
|
isActive: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
@@ -1438,7 +1578,7 @@ export declare const endpoints: {
|
|
|
1438
1578
|
updatedAt: typeof import("effect/Schema").String;
|
|
1439
1579
|
}>;
|
|
1440
1580
|
}>>;
|
|
1441
|
-
readonly getConsentConfig: import("./endpoint.js").Endpoint<"GET", "/
|
|
1581
|
+
readonly getConsentConfig: import("./endpoint.js").Endpoint<"GET", "/operator/config/projects/:projectId/consent-config", import("effect/Schema").Struct<{
|
|
1442
1582
|
projectId: typeof import("effect/Schema").String;
|
|
1443
1583
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1444
1584
|
config: import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -1463,7 +1603,7 @@ export declare const endpoints: {
|
|
|
1463
1603
|
updatedAt: typeof import("effect/Schema").String;
|
|
1464
1604
|
}>>;
|
|
1465
1605
|
}>>;
|
|
1466
|
-
readonly updateConsentConfig: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1606
|
+
readonly updateConsentConfig: import("./endpoint.js").Endpoint<"PATCH", "/operator/config/projects/:projectId/consent-config", import("effect/Schema").Struct<{
|
|
1467
1607
|
projectId: typeof import("effect/Schema").String;
|
|
1468
1608
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1469
1609
|
isActive: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
@@ -1504,7 +1644,7 @@ export declare const endpoints: {
|
|
|
1504
1644
|
updatedAt: typeof import("effect/Schema").String;
|
|
1505
1645
|
}>;
|
|
1506
1646
|
}>>;
|
|
1507
|
-
readonly getPushCredentials: import("./endpoint.js").Endpoint<"GET", "/
|
|
1647
|
+
readonly getPushCredentials: import("./endpoint.js").Endpoint<"GET", "/operator/config/projects/:projectId/push-credentials", import("effect/Schema").Struct<{
|
|
1508
1648
|
projectId: typeof import("effect/Schema").String;
|
|
1509
1649
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1510
1650
|
credentials: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -1523,7 +1663,7 @@ export declare const endpoints: {
|
|
|
1523
1663
|
updatedAt: typeof import("effect/Schema").String;
|
|
1524
1664
|
}>>;
|
|
1525
1665
|
}>>;
|
|
1526
|
-
readonly updatePushCredentials: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1666
|
+
readonly updatePushCredentials: import("./endpoint.js").Endpoint<"PATCH", "/operator/config/projects/:projectId/push-credentials", import("effect/Schema").Struct<{
|
|
1527
1667
|
projectId: typeof import("effect/Schema").String;
|
|
1528
1668
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1529
1669
|
platform: import("effect/Schema").Literal<["ios", "android", "web"]>;
|
|
@@ -1547,20 +1687,20 @@ export declare const endpoints: {
|
|
|
1547
1687
|
updatedAt: typeof import("effect/Schema").String;
|
|
1548
1688
|
}>;
|
|
1549
1689
|
}>>;
|
|
1550
|
-
readonly exportUsers: import("./endpoint.js").Endpoint<"POST", "/
|
|
1690
|
+
readonly exportUsers: import("./endpoint.js").Endpoint<"POST", "/operator/config/projects/:projectId/users/export", import("effect/Schema").Struct<{
|
|
1551
1691
|
projectId: typeof import("effect/Schema").String;
|
|
1552
1692
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1553
1693
|
csv: typeof import("effect/Schema").String;
|
|
1554
1694
|
filename: typeof import("effect/Schema").String;
|
|
1555
1695
|
count: typeof import("effect/Schema").Number;
|
|
1556
1696
|
}>>;
|
|
1557
|
-
readonly notificationsOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
1558
|
-
readonly referralsOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
1559
|
-
readonly flagsOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
1560
|
-
readonly webhooksOverview: import("./endpoint.js").Endpoint<"GET", "/
|
|
1697
|
+
readonly notificationsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/notifications/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1698
|
+
readonly referralsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/referrals/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1699
|
+
readonly flagsOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/flags/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1700
|
+
readonly webhooksOverview: import("./endpoint.js").Endpoint<"GET", "/operator/config/webhooks/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1561
1701
|
};
|
|
1562
1702
|
readonly adminEnvServices: {
|
|
1563
|
-
readonly repoint: import("./endpoint.js").Endpoint<"POST", "/
|
|
1703
|
+
readonly repoint: import("./endpoint.js").Endpoint<"POST", "/operator/env-services/repoint", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1564
1704
|
envId: import("effect/Schema").filter<typeof import("effect/Schema").String>;
|
|
1565
1705
|
service: import("effect/Schema").filter<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>>;
|
|
1566
1706
|
digest: import("effect/Schema").filter<typeof import("effect/Schema").String>;
|
|
@@ -1574,7 +1714,7 @@ export declare const endpoints: {
|
|
|
1574
1714
|
}>>;
|
|
1575
1715
|
};
|
|
1576
1716
|
readonly adminConsent: {
|
|
1577
|
-
readonly listTypes: import("./endpoint.js").Endpoint<"GET", "/
|
|
1717
|
+
readonly listTypes: import("./endpoint.js").Endpoint<"GET", "/operator/consent/projects/:projectId/consent-types", import("effect/Schema").Struct<{
|
|
1578
1718
|
projectId: typeof import("effect/Schema").String;
|
|
1579
1719
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1580
1720
|
consentTypes: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -1592,7 +1732,7 @@ export declare const endpoints: {
|
|
|
1592
1732
|
}>>;
|
|
1593
1733
|
total: typeof import("effect/Schema").Number;
|
|
1594
1734
|
}>>;
|
|
1595
|
-
readonly createType: import("./endpoint.js").Endpoint<"POST", "/
|
|
1735
|
+
readonly createType: import("./endpoint.js").Endpoint<"POST", "/operator/consent/projects/:projectId/consent-types", import("effect/Schema").Struct<{
|
|
1596
1736
|
projectId: typeof import("effect/Schema").String;
|
|
1597
1737
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1598
1738
|
category: import("effect/Schema").Literal<["necessary", "analytics", "marketing", "preferences", "functional"]>;
|
|
@@ -1617,7 +1757,7 @@ export declare const endpoints: {
|
|
|
1617
1757
|
updatedAt: typeof import("effect/Schema").String;
|
|
1618
1758
|
}>;
|
|
1619
1759
|
}>>;
|
|
1620
|
-
readonly updateType: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
1760
|
+
readonly updateType: import("./endpoint.js").Endpoint<"PATCH", "/operator/consent/projects/:projectId/consent-types/:typeId", import("effect/Schema").Struct<{
|
|
1621
1761
|
projectId: typeof import("effect/Schema").String;
|
|
1622
1762
|
typeId: typeof import("effect/Schema").String;
|
|
1623
1763
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -1644,52 +1784,76 @@ export declare const endpoints: {
|
|
|
1644
1784
|
updatedAt: typeof import("effect/Schema").String;
|
|
1645
1785
|
}>;
|
|
1646
1786
|
}>>;
|
|
1647
|
-
readonly deleteType: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
1787
|
+
readonly deleteType: import("./endpoint.js").Endpoint<"DELETE", "/operator/consent/projects/:projectId/consent-types/:typeId", import("effect/Schema").Struct<{
|
|
1648
1788
|
projectId: typeof import("effect/Schema").String;
|
|
1649
1789
|
typeId: typeof import("effect/Schema").String;
|
|
1650
1790
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1651
1791
|
success: typeof import("effect/Schema").Boolean;
|
|
1652
1792
|
}>>;
|
|
1653
|
-
readonly reactivateType: import("./endpoint.js").Endpoint<"POST", "/
|
|
1793
|
+
readonly reactivateType: import("./endpoint.js").Endpoint<"POST", "/operator/consent/projects/:projectId/consent-types/:typeId/reactivate", import("effect/Schema").Struct<{
|
|
1654
1794
|
projectId: typeof import("effect/Schema").String;
|
|
1655
1795
|
typeId: typeof import("effect/Schema").String;
|
|
1656
1796
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1657
1797
|
success: typeof import("effect/Schema").Boolean;
|
|
1658
1798
|
}>>;
|
|
1659
|
-
readonly reorderTypes: import("./endpoint.js").Endpoint<"POST", "/
|
|
1799
|
+
readonly reorderTypes: import("./endpoint.js").Endpoint<"POST", "/operator/consent/projects/:projectId/consent-types/reorder", import("effect/Schema").Struct<{
|
|
1660
1800
|
projectId: typeof import("effect/Schema").String;
|
|
1661
1801
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1662
1802
|
consentTypeIds: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
|
|
1663
1803
|
}>, import("effect/Schema").Struct<{
|
|
1664
1804
|
success: typeof import("effect/Schema").Boolean;
|
|
1665
1805
|
}>>;
|
|
1666
|
-
readonly bulkDeleteTypes: import("./endpoint.js").Endpoint<"POST", "/
|
|
1806
|
+
readonly bulkDeleteTypes: import("./endpoint.js").Endpoint<"POST", "/operator/consent/projects/:projectId/consent-types/bulk-delete", import("effect/Schema").Struct<{
|
|
1667
1807
|
projectId: typeof import("effect/Schema").String;
|
|
1668
1808
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1669
1809
|
consentTypeIds: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
|
|
1670
1810
|
}>, import("effect/Schema").Struct<{
|
|
1671
1811
|
deleted: typeof import("effect/Schema").Number;
|
|
1672
1812
|
}>>;
|
|
1673
|
-
readonly listUserConsents: import("./endpoint.js").Endpoint<"GET", "/
|
|
1813
|
+
readonly listUserConsents: import("./endpoint.js").Endpoint<"GET", "/operator/consent/projects/:projectId/user-consents", import("effect/Schema").Struct<{
|
|
1674
1814
|
projectId: typeof import("effect/Schema").String;
|
|
1675
1815
|
}>, import("effect/Schema").Struct<{
|
|
1676
1816
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1677
1817
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1678
1818
|
userId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1679
1819
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1680
|
-
readonly exportUserConsents: import("./endpoint.js").Endpoint<"POST", "/
|
|
1820
|
+
readonly exportUserConsents: import("./endpoint.js").Endpoint<"POST", "/operator/consent/projects/:projectId/user-consents/export", import("effect/Schema").Struct<{
|
|
1681
1821
|
projectId: typeof import("effect/Schema").String;
|
|
1682
1822
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1683
|
-
readonly stats: import("./endpoint.js").Endpoint<"GET", "/
|
|
1823
|
+
readonly stats: import("./endpoint.js").Endpoint<"GET", "/operator/consent/projects/:projectId/consent-stats", import("effect/Schema").Struct<{
|
|
1684
1824
|
projectId: typeof import("effect/Schema").String;
|
|
1685
|
-
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined,
|
|
1686
|
-
|
|
1825
|
+
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1826
|
+
byType: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1827
|
+
consentTypeId: typeof import("effect/Schema").String;
|
|
1828
|
+
category: import("effect/Schema").Literal<["necessary", "analytics", "marketing", "preferences", "functional"]>;
|
|
1829
|
+
slug: typeof import("effect/Schema").String;
|
|
1830
|
+
name: typeof import("effect/Schema").String;
|
|
1831
|
+
required: typeof import("effect/Schema").Boolean;
|
|
1832
|
+
totalConsents: typeof import("effect/Schema").Number;
|
|
1833
|
+
grantedCount: typeof import("effect/Schema").Number;
|
|
1834
|
+
deniedCount: typeof import("effect/Schema").Number;
|
|
1835
|
+
uniqueUsers: typeof import("effect/Schema").Number;
|
|
1836
|
+
grantRate: typeof import("effect/Schema").Number;
|
|
1837
|
+
denyRate: typeof import("effect/Schema").Number;
|
|
1838
|
+
}>>;
|
|
1839
|
+
totals: import("effect/Schema").Struct<{
|
|
1840
|
+
totalConsents: typeof import("effect/Schema").Number;
|
|
1841
|
+
grantedCount: typeof import("effect/Schema").Number;
|
|
1842
|
+
deniedCount: typeof import("effect/Schema").Number;
|
|
1843
|
+
overallGrantRate: typeof import("effect/Schema").Number;
|
|
1844
|
+
}>;
|
|
1845
|
+
}>>;
|
|
1846
|
+
readonly projectOverview: import("./endpoint.js").Endpoint<"GET", "/operator/consent/projects/:projectId/consent-overview", import("effect/Schema").Struct<{
|
|
1687
1847
|
projectId: typeof import("effect/Schema").String;
|
|
1688
|
-
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined,
|
|
1689
|
-
|
|
1848
|
+
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1849
|
+
totalVisitors: typeof import("effect/Schema").Number;
|
|
1850
|
+
consentTypeCount: typeof import("effect/Schema").Number;
|
|
1851
|
+
weeklyChanges: typeof import("effect/Schema").Number;
|
|
1852
|
+
}>>;
|
|
1853
|
+
readonly platformOverview: import("./endpoint.js").Endpoint<"GET", "/operator/consent/overview", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, typeof import("effect/Schema").Unknown>;
|
|
1690
1854
|
};
|
|
1691
1855
|
readonly adminImpersonation: {
|
|
1692
|
-
readonly start: import("./endpoint.js").Endpoint<"POST", "/
|
|
1856
|
+
readonly start: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/start", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1693
1857
|
targetUserId: typeof import("effect/Schema").String;
|
|
1694
1858
|
}>, import("effect/Schema").Struct<{
|
|
1695
1859
|
success: typeof import("effect/Schema").Boolean;
|
|
@@ -1697,20 +1861,20 @@ export declare const endpoints: {
|
|
|
1697
1861
|
sessionId: typeof import("effect/Schema").String;
|
|
1698
1862
|
expiresAt: typeof import("effect/Schema").String;
|
|
1699
1863
|
}>>;
|
|
1700
|
-
readonly end: import("./endpoint.js").Endpoint<"POST", "/
|
|
1864
|
+
readonly end: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/end", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1701
1865
|
sessionId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1702
1866
|
}>, import("effect/Schema").Struct<{
|
|
1703
1867
|
success: typeof import("effect/Schema").Boolean;
|
|
1704
1868
|
sessionsEnded: typeof import("effect/Schema").Number;
|
|
1705
1869
|
}>>;
|
|
1706
|
-
readonly info: import("./endpoint.js").Endpoint<"GET", "/
|
|
1870
|
+
readonly info: import("./endpoint.js").Endpoint<"GET", "/operator/impersonation/info", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
1707
1871
|
isImpersonation: typeof import("effect/Schema").Boolean;
|
|
1708
1872
|
adminUserId: typeof import("effect/Schema").String;
|
|
1709
1873
|
adminEmail: typeof import("effect/Schema").String;
|
|
1710
1874
|
adminName: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1711
1875
|
impersonatedAt: typeof import("effect/Schema").String;
|
|
1712
1876
|
}>>>;
|
|
1713
|
-
readonly active: import("./endpoint.js").Endpoint<"GET", "/
|
|
1877
|
+
readonly active: import("./endpoint.js").Endpoint<"GET", "/operator/impersonation/active", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1714
1878
|
sessionId: typeof import("effect/Schema").String;
|
|
1715
1879
|
adminUserId: typeof import("effect/Schema").String;
|
|
1716
1880
|
adminEmail: typeof import("effect/Schema").String;
|
|
@@ -1721,7 +1885,7 @@ export declare const endpoints: {
|
|
|
1721
1885
|
impersonatedAt: typeof import("effect/Schema").String;
|
|
1722
1886
|
lastActiveAt: typeof import("effect/Schema").String;
|
|
1723
1887
|
}>>>;
|
|
1724
|
-
readonly startChallenge: import("./endpoint.js").Endpoint<"POST", "/
|
|
1888
|
+
readonly startChallenge: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/start-challenge", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1725
1889
|
targetUserId: typeof import("effect/Schema").String;
|
|
1726
1890
|
reason: typeof import("effect/Schema").String;
|
|
1727
1891
|
}>, import("effect/Schema").Struct<{
|
|
@@ -1739,7 +1903,7 @@ export declare const endpoints: {
|
|
|
1739
1903
|
timeout: typeof import("effect/Schema").Number;
|
|
1740
1904
|
}>;
|
|
1741
1905
|
}>>;
|
|
1742
|
-
readonly startStepup: import("./endpoint.js").Endpoint<"POST", "/
|
|
1906
|
+
readonly startStepup: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/start-stepup", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1743
1907
|
requestId: typeof import("effect/Schema").String;
|
|
1744
1908
|
challengeKey: typeof import("effect/Schema").String;
|
|
1745
1909
|
assertion: typeof import("effect/Schema").Unknown;
|
|
@@ -1755,7 +1919,7 @@ export declare const endpoints: {
|
|
|
1755
1919
|
requestId: typeof import("effect/Schema").String;
|
|
1756
1920
|
consentDeadline: typeof import("effect/Schema").String;
|
|
1757
1921
|
}>]>>;
|
|
1758
|
-
readonly respondConsent: import("./endpoint.js").Endpoint<"POST", "/
|
|
1922
|
+
readonly respondConsent: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/consent/:id", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1759
1923
|
decision: import("effect/Schema").Literal<["approve", "deny"]>;
|
|
1760
1924
|
}>, import("effect/Schema").Union<[import("effect/Schema").Struct<{
|
|
1761
1925
|
branch: import("effect/Schema").Literal<["approved"]>;
|
|
@@ -1767,7 +1931,7 @@ export declare const endpoints: {
|
|
|
1767
1931
|
branch: import("effect/Schema").Literal<["denied"]>;
|
|
1768
1932
|
requestId: typeof import("effect/Schema").String;
|
|
1769
1933
|
}>]>>;
|
|
1770
|
-
readonly listRequests: import("./endpoint.js").Endpoint<"GET", "/
|
|
1934
|
+
readonly listRequests: import("./endpoint.js").Endpoint<"GET", "/operator/impersonation/requests", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1771
1935
|
id: typeof import("effect/Schema").String;
|
|
1772
1936
|
operatorId: typeof import("effect/Schema").String;
|
|
1773
1937
|
targetUserId: typeof import("effect/Schema").String;
|
|
@@ -1780,14 +1944,14 @@ export declare const endpoints: {
|
|
|
1780
1944
|
endedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1781
1945
|
createdAt: typeof import("effect/Schema").String;
|
|
1782
1946
|
}>>>;
|
|
1783
|
-
readonly endSession: import("./endpoint.js").Endpoint<"POST", "/
|
|
1947
|
+
readonly endSession: import("./endpoint.js").Endpoint<"POST", "/operator/impersonation/end/:id", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1784
1948
|
success: typeof import("effect/Schema").Boolean;
|
|
1785
1949
|
requestId: typeof import("effect/Schema").String;
|
|
1786
1950
|
sessionId: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1787
1951
|
}>>;
|
|
1788
1952
|
};
|
|
1789
1953
|
readonly adminInvitations: {
|
|
1790
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
1954
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/invitations/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1791
1955
|
email: typeof import("effect/Schema").String;
|
|
1792
1956
|
role: import("effect/Schema").optional<import("effect/Schema").Literal<["user", "admin", "super_admin"]>>;
|
|
1793
1957
|
note: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1798,7 +1962,7 @@ export declare const endpoints: {
|
|
|
1798
1962
|
inviteUrl: typeof import("effect/Schema").String;
|
|
1799
1963
|
expiresAt: typeof import("effect/Schema").String;
|
|
1800
1964
|
}>>;
|
|
1801
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
1965
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/invitations/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1802
1966
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1803
1967
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1804
1968
|
statsOnly: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1825,19 +1989,19 @@ export declare const endpoints: {
|
|
|
1825
1989
|
pendingInvites: typeof import("effect/Schema").Number;
|
|
1826
1990
|
acceptedInvites: typeof import("effect/Schema").Number;
|
|
1827
1991
|
}>]>>;
|
|
1828
|
-
readonly revoke: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
1992
|
+
readonly revoke: import("./endpoint.js").Endpoint<"DELETE", "/operator/invitations/:id", import("effect/Schema").Struct<{
|
|
1829
1993
|
id: typeof import("effect/Schema").String;
|
|
1830
1994
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1831
1995
|
success: typeof import("effect/Schema").Boolean;
|
|
1832
1996
|
}>>;
|
|
1833
|
-
readonly resend: import("./endpoint.js").Endpoint<"POST", "/
|
|
1997
|
+
readonly resend: import("./endpoint.js").Endpoint<"POST", "/operator/invitations/:id/resend", import("effect/Schema").Struct<{
|
|
1834
1998
|
id: typeof import("effect/Schema").String;
|
|
1835
1999
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1836
2000
|
success: typeof import("effect/Schema").Boolean;
|
|
1837
2001
|
inviteUrl: typeof import("effect/Schema").String;
|
|
1838
2002
|
expiresAt: typeof import("effect/Schema").String;
|
|
1839
2003
|
}>>;
|
|
1840
|
-
readonly accept: import("./endpoint.js").Endpoint<"POST", "/
|
|
2004
|
+
readonly accept: import("./endpoint.js").Endpoint<"POST", "/operator/invitations/accept", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1841
2005
|
code: typeof import("effect/Schema").String;
|
|
1842
2006
|
name: typeof import("effect/Schema").String;
|
|
1843
2007
|
password: typeof import("effect/Schema").String;
|
|
@@ -1853,7 +2017,7 @@ export declare const endpoints: {
|
|
|
1853
2017
|
}>>;
|
|
1854
2018
|
};
|
|
1855
2019
|
readonly adminJwtKeys: {
|
|
1856
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2020
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/jwt-keys/keys", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1857
2021
|
keys: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
1858
2022
|
id: typeof import("effect/Schema").String;
|
|
1859
2023
|
keyId: typeof import("effect/Schema").String;
|
|
@@ -1866,7 +2030,7 @@ export declare const endpoints: {
|
|
|
1866
2030
|
retiredAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1867
2031
|
}>>;
|
|
1868
2032
|
}>>;
|
|
1869
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
2033
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/jwt-keys/keys/:keyId", import("effect/Schema").Struct<{
|
|
1870
2034
|
keyId: typeof import("effect/Schema").String;
|
|
1871
2035
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1872
2036
|
id: typeof import("effect/Schema").String;
|
|
@@ -1885,14 +2049,14 @@ export declare const endpoints: {
|
|
|
1885
2049
|
name: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1886
2050
|
}>>;
|
|
1887
2051
|
}>>;
|
|
1888
|
-
readonly rotate: import("./endpoint.js").Endpoint<"POST", "/
|
|
2052
|
+
readonly rotate: import("./endpoint.js").Endpoint<"POST", "/operator/jwt-keys/rotate", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1889
2053
|
reason: import("effect/Schema").Literal<["scheduled", "manual", "compromise"]>;
|
|
1890
2054
|
notes: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1891
2055
|
}>, import("effect/Schema").Struct<{
|
|
1892
2056
|
success: typeof import("effect/Schema").Boolean;
|
|
1893
2057
|
newKeyId: typeof import("effect/Schema").String;
|
|
1894
2058
|
}>>;
|
|
1895
|
-
readonly forceRetire: import("./endpoint.js").Endpoint<"POST", "/
|
|
2059
|
+
readonly forceRetire: import("./endpoint.js").Endpoint<"POST", "/operator/jwt-keys/keys/:keyId/retire", import("effect/Schema").Struct<{
|
|
1896
2060
|
keyId: typeof import("effect/Schema").String;
|
|
1897
2061
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1898
2062
|
notes: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1901,7 +2065,7 @@ export declare const endpoints: {
|
|
|
1901
2065
|
keyId: typeof import("effect/Schema").String;
|
|
1902
2066
|
wasActive: typeof import("effect/Schema").Boolean;
|
|
1903
2067
|
}>>;
|
|
1904
|
-
readonly rotations: import("./endpoint.js").Endpoint<"GET", "/
|
|
2068
|
+
readonly rotations: import("./endpoint.js").Endpoint<"GET", "/operator/jwt-keys/rotations", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1905
2069
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
1906
2070
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1907
2071
|
rotations: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -1913,7 +2077,7 @@ export declare const endpoints: {
|
|
|
1913
2077
|
createdAt: typeof import("effect/Schema").String;
|
|
1914
2078
|
}>>;
|
|
1915
2079
|
}>>;
|
|
1916
|
-
readonly status: import("./endpoint.js").Endpoint<"GET", "/
|
|
2080
|
+
readonly status: import("./endpoint.js").Endpoint<"GET", "/operator/jwt-keys/status", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
1917
2081
|
rotationNeeded: typeof import("effect/Schema").Boolean;
|
|
1918
2082
|
activeKeyId: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
1919
2083
|
activeKeySince: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
@@ -1921,7 +2085,7 @@ export declare const endpoints: {
|
|
|
1921
2085
|
}>>;
|
|
1922
2086
|
};
|
|
1923
2087
|
readonly adminLogs: {
|
|
1924
|
-
readonly stats: import("./endpoint.js").Endpoint<"GET", "/
|
|
2088
|
+
readonly stats: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/stats", import("effect/Schema").Struct<{
|
|
1925
2089
|
projectId: typeof import("effect/Schema").String;
|
|
1926
2090
|
}>, import("effect/Schema").Struct<{
|
|
1927
2091
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1938,7 +2102,7 @@ export declare const endpoints: {
|
|
|
1938
2102
|
end: typeof import("effect/Schema").String;
|
|
1939
2103
|
}>;
|
|
1940
2104
|
}>>;
|
|
1941
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2105
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/logs", import("effect/Schema").Struct<{
|
|
1942
2106
|
projectId: typeof import("effect/Schema").String;
|
|
1943
2107
|
}>, import("effect/Schema").Struct<{
|
|
1944
2108
|
levels: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1964,7 +2128,7 @@ export declare const endpoints: {
|
|
|
1964
2128
|
total: typeof import("effect/Schema").Number;
|
|
1965
2129
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
1966
2130
|
}>>;
|
|
1967
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
2131
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/logs/:logId", import("effect/Schema").Struct<{
|
|
1968
2132
|
projectId: typeof import("effect/Schema").String;
|
|
1969
2133
|
logId: typeof import("effect/Schema").String;
|
|
1970
2134
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -1978,7 +2142,7 @@ export declare const endpoints: {
|
|
|
1978
2142
|
context: import("effect/Schema").NullOr<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
|
|
1979
2143
|
createdAt: typeof import("effect/Schema").String;
|
|
1980
2144
|
}>>;
|
|
1981
|
-
readonly forTrace: import("./endpoint.js").Endpoint<"GET", "/
|
|
2145
|
+
readonly forTrace: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/traces/:traceId/logs", import("effect/Schema").Struct<{
|
|
1982
2146
|
projectId: typeof import("effect/Schema").String;
|
|
1983
2147
|
traceId: typeof import("effect/Schema").String;
|
|
1984
2148
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -1989,7 +2153,7 @@ export declare const endpoints: {
|
|
|
1989
2153
|
context: import("effect/Schema").NullOr<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
|
|
1990
2154
|
createdAt: typeof import("effect/Schema").String;
|
|
1991
2155
|
}>>>;
|
|
1992
|
-
readonly volume: import("./endpoint.js").Endpoint<"GET", "/
|
|
2156
|
+
readonly volume: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/volume", import("effect/Schema").Struct<{
|
|
1993
2157
|
projectId: typeof import("effect/Schema").String;
|
|
1994
2158
|
}>, import("effect/Schema").Struct<{
|
|
1995
2159
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -1999,7 +2163,7 @@ export declare const endpoints: {
|
|
|
1999
2163
|
count: typeof import("effect/Schema").Number;
|
|
2000
2164
|
errors: typeof import("effect/Schema").Number;
|
|
2001
2165
|
}>>>;
|
|
2002
|
-
readonly topErrors: import("./endpoint.js").Endpoint<"GET", "/
|
|
2166
|
+
readonly topErrors: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/top-errors", import("effect/Schema").Struct<{
|
|
2003
2167
|
projectId: typeof import("effect/Schema").String;
|
|
2004
2168
|
}>, import("effect/Schema").Struct<{
|
|
2005
2169
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2010,7 +2174,7 @@ export declare const endpoints: {
|
|
|
2010
2174
|
count: typeof import("effect/Schema").Number;
|
|
2011
2175
|
lastSeen: typeof import("effect/Schema").String;
|
|
2012
2176
|
}>>>;
|
|
2013
|
-
readonly topSources: import("./endpoint.js").Endpoint<"GET", "/
|
|
2177
|
+
readonly topSources: import("./endpoint.js").Endpoint<"GET", "/operator/logs/projects/:projectId/top-sources", import("effect/Schema").Struct<{
|
|
2014
2178
|
projectId: typeof import("effect/Schema").String;
|
|
2015
2179
|
}>, import("effect/Schema").Struct<{
|
|
2016
2180
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2023,7 +2187,7 @@ export declare const endpoints: {
|
|
|
2023
2187
|
}>>>;
|
|
2024
2188
|
};
|
|
2025
2189
|
readonly adminPlans: {
|
|
2026
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2190
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/plans/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2027
2191
|
projectId: typeof import("effect/Schema").String;
|
|
2028
2192
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2029
2193
|
plans: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -2040,7 +2204,7 @@ export declare const endpoints: {
|
|
|
2040
2204
|
}>>;
|
|
2041
2205
|
total: typeof import("effect/Schema").Number;
|
|
2042
2206
|
}>>;
|
|
2043
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
2207
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/plans/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2044
2208
|
projectId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
2045
2209
|
name: typeof import("effect/Schema").String;
|
|
2046
2210
|
slug: typeof import("effect/Schema").String;
|
|
@@ -2055,7 +2219,7 @@ export declare const endpoints: {
|
|
|
2055
2219
|
slug: typeof import("effect/Schema").String;
|
|
2056
2220
|
name: typeof import("effect/Schema").String;
|
|
2057
2221
|
}>>;
|
|
2058
|
-
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
2222
|
+
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/operator/plans/:planId", import("effect/Schema").Struct<{
|
|
2059
2223
|
planId: typeof import("effect/Schema").String;
|
|
2060
2224
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2061
2225
|
name: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2071,7 +2235,7 @@ export declare const endpoints: {
|
|
|
2071
2235
|
slug: typeof import("effect/Schema").String;
|
|
2072
2236
|
name: typeof import("effect/Schema").String;
|
|
2073
2237
|
}>>;
|
|
2074
|
-
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
2238
|
+
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/operator/plans/:planId", import("effect/Schema").Struct<{
|
|
2075
2239
|
planId: typeof import("effect/Schema").String;
|
|
2076
2240
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2077
2241
|
id: typeof import("effect/Schema").String;
|
|
@@ -2079,7 +2243,7 @@ export declare const endpoints: {
|
|
|
2079
2243
|
}>>;
|
|
2080
2244
|
};
|
|
2081
2245
|
readonly adminProjects: {
|
|
2082
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2246
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/projects/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2083
2247
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
2084
2248
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
2085
2249
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2095,7 +2259,7 @@ export declare const endpoints: {
|
|
|
2095
2259
|
limit: typeof import("effect/Schema").Number;
|
|
2096
2260
|
offset: typeof import("effect/Schema").Number;
|
|
2097
2261
|
}>>;
|
|
2098
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
2262
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/projects/:id", import("effect/Schema").Struct<{
|
|
2099
2263
|
id: typeof import("effect/Schema").String;
|
|
2100
2264
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2101
2265
|
id: typeof import("effect/Schema").String;
|
|
@@ -2133,7 +2297,7 @@ export declare const endpoints: {
|
|
|
2133
2297
|
errorMessage: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2134
2298
|
}>>;
|
|
2135
2299
|
}>>;
|
|
2136
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
2300
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/projects/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2137
2301
|
name: typeof import("effect/Schema").String;
|
|
2138
2302
|
slug: typeof import("effect/Schema").String;
|
|
2139
2303
|
domains: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
|
|
@@ -2156,7 +2320,7 @@ export declare const endpoints: {
|
|
|
2156
2320
|
}>>;
|
|
2157
2321
|
}>;
|
|
2158
2322
|
}>>;
|
|
2159
|
-
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
2323
|
+
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/operator/projects/:id", import("effect/Schema").Struct<{
|
|
2160
2324
|
id: typeof import("effect/Schema").String;
|
|
2161
2325
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2162
2326
|
name: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2172,13 +2336,13 @@ export declare const endpoints: {
|
|
|
2172
2336
|
slug: typeof import("effect/Schema").String;
|
|
2173
2337
|
buildMachineType: import("effect/Schema").Literal<["standard", "large", "xlarge"]>;
|
|
2174
2338
|
}>>;
|
|
2175
|
-
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
2339
|
+
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/operator/projects/:id", import("effect/Schema").Struct<{
|
|
2176
2340
|
id: typeof import("effect/Schema").String;
|
|
2177
2341
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2178
2342
|
id: typeof import("effect/Schema").String;
|
|
2179
2343
|
name: typeof import("effect/Schema").String;
|
|
2180
2344
|
}>>;
|
|
2181
|
-
readonly regenerateSecretKey: import("./endpoint.js").Endpoint<"POST", "/
|
|
2345
|
+
readonly regenerateSecretKey: import("./endpoint.js").Endpoint<"POST", "/operator/projects/environments/:environmentId/regenerate-key", import("effect/Schema").Struct<{
|
|
2182
2346
|
environmentId: typeof import("effect/Schema").String;
|
|
2183
2347
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2184
2348
|
environmentId: typeof import("effect/Schema").String;
|
|
@@ -2186,7 +2350,7 @@ export declare const endpoints: {
|
|
|
2186
2350
|
secretKey: typeof import("effect/Schema").String;
|
|
2187
2351
|
publicKey: typeof import("effect/Schema").String;
|
|
2188
2352
|
}>>;
|
|
2189
|
-
readonly platformResources: import("./endpoint.js").Endpoint<"GET", "/
|
|
2353
|
+
readonly platformResources: import("./endpoint.js").Endpoint<"GET", "/operator/projects/:id/platform-resources", import("effect/Schema").Struct<{
|
|
2190
2354
|
id: typeof import("effect/Schema").String;
|
|
2191
2355
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
2192
2356
|
role: typeof import("effect/Schema").String;
|
|
@@ -2196,7 +2360,7 @@ export declare const endpoints: {
|
|
|
2196
2360
|
}>>>;
|
|
2197
2361
|
};
|
|
2198
2362
|
readonly adminProjectUsers: {
|
|
2199
|
-
readonly getByProjectId: import("./endpoint.js").Endpoint<"GET", "/
|
|
2363
|
+
readonly getByProjectId: import("./endpoint.js").Endpoint<"GET", "/operator/project-users/projects/:projectId/users", import("effect/Schema").Struct<{
|
|
2200
2364
|
projectId: typeof import("effect/Schema").String;
|
|
2201
2365
|
}>, import("effect/Schema").Struct<{
|
|
2202
2366
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2225,7 +2389,7 @@ export declare const endpoints: {
|
|
|
2225
2389
|
limit: typeof import("effect/Schema").Number;
|
|
2226
2390
|
offset: typeof import("effect/Schema").Number;
|
|
2227
2391
|
}>>;
|
|
2228
|
-
readonly getByIdOrSlug: import("./endpoint.js").Endpoint<"GET", "/
|
|
2392
|
+
readonly getByIdOrSlug: import("./endpoint.js").Endpoint<"GET", "/operator/project-users/projects/:id/users", import("effect/Schema").Struct<{
|
|
2229
2393
|
id: typeof import("effect/Schema").String;
|
|
2230
2394
|
}>, import("effect/Schema").Struct<{
|
|
2231
2395
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2259,7 +2423,7 @@ export declare const endpoints: {
|
|
|
2259
2423
|
limit: typeof import("effect/Schema").Number;
|
|
2260
2424
|
offset: typeof import("effect/Schema").Number;
|
|
2261
2425
|
}>>;
|
|
2262
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2426
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/project-users/projects/:id/users/list", import("effect/Schema").Struct<{
|
|
2263
2427
|
id: typeof import("effect/Schema").String;
|
|
2264
2428
|
}>, import("effect/Schema").Struct<{
|
|
2265
2429
|
cursor: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2291,7 +2455,7 @@ export declare const endpoints: {
|
|
|
2291
2455
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
2292
2456
|
total: typeof import("effect/Schema").Number;
|
|
2293
2457
|
}>>;
|
|
2294
|
-
readonly updateStatus: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
2458
|
+
readonly updateStatus: import("./endpoint.js").Endpoint<"PATCH", "/operator/project-users/projects/:projectId/users/:userId/status", import("effect/Schema").Struct<{
|
|
2295
2459
|
projectId: typeof import("effect/Schema").String;
|
|
2296
2460
|
userId: typeof import("effect/Schema").String;
|
|
2297
2461
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2302,7 +2466,7 @@ export declare const endpoints: {
|
|
|
2302
2466
|
status: import("effect/Schema").Literal<["active", "suspended", "banned"]>;
|
|
2303
2467
|
statusReason: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2304
2468
|
}>>;
|
|
2305
|
-
readonly updateRole: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
2469
|
+
readonly updateRole: import("./endpoint.js").Endpoint<"PATCH", "/operator/project-users/projects/:projectId/users/:userId/role", import("effect/Schema").Struct<{
|
|
2306
2470
|
projectId: typeof import("effect/Schema").String;
|
|
2307
2471
|
userId: typeof import("effect/Schema").String;
|
|
2308
2472
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2311,13 +2475,13 @@ export declare const endpoints: {
|
|
|
2311
2475
|
id: typeof import("effect/Schema").String;
|
|
2312
2476
|
role: import("effect/Schema").Literal<["user", "admin", "super_admin"]>;
|
|
2313
2477
|
}>>;
|
|
2314
|
-
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
2478
|
+
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/operator/project-users/projects/:projectId/users/:userId", import("effect/Schema").Struct<{
|
|
2315
2479
|
projectId: typeof import("effect/Schema").String;
|
|
2316
2480
|
userId: typeof import("effect/Schema").String;
|
|
2317
2481
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2318
2482
|
success: typeof import("effect/Schema").Boolean;
|
|
2319
2483
|
}>>;
|
|
2320
|
-
readonly bulkUpdateStatus: import("./endpoint.js").Endpoint<"POST", "/
|
|
2484
|
+
readonly bulkUpdateStatus: import("./endpoint.js").Endpoint<"POST", "/operator/project-users/projects/:projectId/users/bulk-status", import("effect/Schema").Struct<{
|
|
2321
2485
|
projectId: typeof import("effect/Schema").String;
|
|
2322
2486
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2323
2487
|
userIds: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
|
|
@@ -2327,7 +2491,7 @@ export declare const endpoints: {
|
|
|
2327
2491
|
updated: typeof import("effect/Schema").Number;
|
|
2328
2492
|
total: typeof import("effect/Schema").Number;
|
|
2329
2493
|
}>>;
|
|
2330
|
-
readonly bulkDelete: import("./endpoint.js").Endpoint<"POST", "/
|
|
2494
|
+
readonly bulkDelete: import("./endpoint.js").Endpoint<"POST", "/operator/project-users/projects/:projectId/users/bulk-delete", import("effect/Schema").Struct<{
|
|
2331
2495
|
projectId: typeof import("effect/Schema").String;
|
|
2332
2496
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2333
2497
|
userIds: import("effect/Schema").Array$<typeof import("effect/Schema").String>;
|
|
@@ -2337,7 +2501,7 @@ export declare const endpoints: {
|
|
|
2337
2501
|
}>>;
|
|
2338
2502
|
};
|
|
2339
2503
|
readonly adminQuotas: {
|
|
2340
|
-
readonly getProjectQuotas: import("./endpoint.js").Endpoint<"GET", "/
|
|
2504
|
+
readonly getProjectQuotas: import("./endpoint.js").Endpoint<"GET", "/operator/quotas/projects/:projectId/quotas", import("effect/Schema").Struct<{
|
|
2341
2505
|
projectId: typeof import("effect/Schema").String;
|
|
2342
2506
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2343
2507
|
projectId: typeof import("effect/Schema").String;
|
|
@@ -2358,7 +2522,7 @@ export declare const endpoints: {
|
|
|
2358
2522
|
overallStatus: import("effect/Schema").Literal<["ok", "warning", "critical", "exceeded", "blocked"]>;
|
|
2359
2523
|
unacknowledgedAlertsCount: typeof import("effect/Schema").Number;
|
|
2360
2524
|
}>>;
|
|
2361
|
-
readonly getQuotaStats: import("./endpoint.js").Endpoint<"GET", "/
|
|
2525
|
+
readonly getQuotaStats: import("./endpoint.js").Endpoint<"GET", "/operator/quotas/projects/:projectId/quotas/stats", import("effect/Schema").Struct<{
|
|
2362
2526
|
projectId: typeof import("effect/Schema").String;
|
|
2363
2527
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2364
2528
|
atLimit: typeof import("effect/Schema").Number;
|
|
@@ -2367,7 +2531,7 @@ export declare const endpoints: {
|
|
|
2367
2531
|
ok: typeof import("effect/Schema").Number;
|
|
2368
2532
|
total: typeof import("effect/Schema").Number;
|
|
2369
2533
|
}>>;
|
|
2370
|
-
readonly getQuotaAlerts: import("./endpoint.js").Endpoint<"GET", "/
|
|
2534
|
+
readonly getQuotaAlerts: import("./endpoint.js").Endpoint<"GET", "/operator/quotas/projects/:projectId/quotas/alerts", import("effect/Schema").Struct<{
|
|
2371
2535
|
projectId: typeof import("effect/Schema").String;
|
|
2372
2536
|
}>, import("effect/Schema").Struct<{
|
|
2373
2537
|
acknowledged: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2386,7 +2550,7 @@ export declare const endpoints: {
|
|
|
2386
2550
|
acknowledgedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2387
2551
|
}>>;
|
|
2388
2552
|
}>>;
|
|
2389
|
-
readonly getQuotaHistory: import("./endpoint.js").Endpoint<"GET", "/
|
|
2553
|
+
readonly getQuotaHistory: import("./endpoint.js").Endpoint<"GET", "/operator/quotas/projects/:projectId/quotas/history", import("effect/Schema").Struct<{
|
|
2390
2554
|
projectId: typeof import("effect/Schema").String;
|
|
2391
2555
|
}>, import("effect/Schema").Struct<{
|
|
2392
2556
|
service: typeof import("effect/Schema").String;
|
|
@@ -2398,7 +2562,7 @@ export declare const endpoints: {
|
|
|
2398
2562
|
value: typeof import("effect/Schema").Number;
|
|
2399
2563
|
}>>;
|
|
2400
2564
|
}>>;
|
|
2401
|
-
readonly updateQuota: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
2565
|
+
readonly updateQuota: import("./endpoint.js").Endpoint<"PATCH", "/operator/quotas/projects/:projectId/quotas", import("effect/Schema").Struct<{
|
|
2402
2566
|
projectId: typeof import("effect/Schema").String;
|
|
2403
2567
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2404
2568
|
service: typeof import("effect/Schema").String;
|
|
@@ -2420,7 +2584,7 @@ export declare const endpoints: {
|
|
|
2420
2584
|
isActive: typeof import("effect/Schema").Boolean;
|
|
2421
2585
|
}>;
|
|
2422
2586
|
}>>;
|
|
2423
|
-
readonly acknowledgeAlert: import("./endpoint.js").Endpoint<"POST", "/
|
|
2587
|
+
readonly acknowledgeAlert: import("./endpoint.js").Endpoint<"POST", "/operator/quotas/alerts/:alertId/acknowledge", import("effect/Schema").Struct<{
|
|
2424
2588
|
alertId: typeof import("effect/Schema").String;
|
|
2425
2589
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2426
2590
|
success: typeof import("effect/Schema").Boolean;
|
|
@@ -2428,7 +2592,7 @@ export declare const endpoints: {
|
|
|
2428
2592
|
}>>;
|
|
2429
2593
|
};
|
|
2430
2594
|
readonly adminRateLimits: {
|
|
2431
|
-
readonly listStrategies: import("./endpoint.js").Endpoint<"GET", "/
|
|
2595
|
+
readonly listStrategies: import("./endpoint.js").Endpoint<"GET", "/operator/rate-limits/strategies", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2432
2596
|
multipliers: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
2433
2597
|
credentialType: import("effect/Schema").Literal<["public", "secret", "service", "session", "spiffe", "unknown"]>;
|
|
2434
2598
|
multiplier: typeof import("effect/Schema").Number;
|
|
@@ -2437,7 +2601,7 @@ export declare const endpoints: {
|
|
|
2437
2601
|
lastUpdatedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2438
2602
|
}>>;
|
|
2439
2603
|
}>>;
|
|
2440
|
-
readonly setStrategy: import("./endpoint.js").Endpoint<"POST", "/
|
|
2604
|
+
readonly setStrategy: import("./endpoint.js").Endpoint<"POST", "/operator/rate-limits/strategies", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2441
2605
|
credentialType: import("effect/Schema").Literal<["public", "secret", "service", "session", "spiffe", "unknown"]>;
|
|
2442
2606
|
multiplier: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>;
|
|
2443
2607
|
exempt: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
@@ -2455,7 +2619,7 @@ export declare const endpoints: {
|
|
|
2455
2619
|
}>>;
|
|
2456
2620
|
};
|
|
2457
2621
|
readonly adminReconcile: {
|
|
2458
|
-
readonly reset: import("./endpoint.js").Endpoint<"POST", "/
|
|
2622
|
+
readonly reset: import("./endpoint.js").Endpoint<"POST", "/operator/reconcile/reset", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2459
2623
|
kind: import("effect/Schema").Union<[import("effect/Schema").Literal<["service"]>, import("effect/Schema").Literal<["environment"]>]>;
|
|
2460
2624
|
id: import("effect/Schema").filter<typeof import("effect/Schema").String>;
|
|
2461
2625
|
to: import("effect/Schema").Union<[import("effect/Schema").Literal<["pending"]>, import("effect/Schema").Literal<["synced"]>]>;
|
|
@@ -2469,7 +2633,7 @@ export declare const endpoints: {
|
|
|
2469
2633
|
}>>;
|
|
2470
2634
|
};
|
|
2471
2635
|
readonly adminResources: {
|
|
2472
|
-
readonly forceDelete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
2636
|
+
readonly forceDelete: import("./endpoint.js").Endpoint<"DELETE", "/operator/resources/:id", import("effect/Schema").Struct<{
|
|
2473
2637
|
id: import("effect/Schema").filter<typeof import("effect/Schema").String>;
|
|
2474
2638
|
}>, import("effect/Schema").Struct<{
|
|
2475
2639
|
reason: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>;
|
|
@@ -2482,7 +2646,7 @@ export declare const endpoints: {
|
|
|
2482
2646
|
reallyForce: typeof import("effect/Schema").Boolean;
|
|
2483
2647
|
dependentsDeleted: typeof import("effect/Schema").Number;
|
|
2484
2648
|
}>>;
|
|
2485
|
-
readonly reseal: import("./endpoint.js").Endpoint<"POST", "/
|
|
2649
|
+
readonly reseal: import("./endpoint.js").Endpoint<"POST", "/operator/resources/reseal", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2486
2650
|
keyId: import("effect/Schema").filter<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>>;
|
|
2487
2651
|
filter: import("effect/Schema").optional<import("effect/Schema").Struct<{
|
|
2488
2652
|
projectId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2505,7 +2669,7 @@ export declare const endpoints: {
|
|
|
2505
2669
|
}>>;
|
|
2506
2670
|
};
|
|
2507
2671
|
readonly adminSecrets: {
|
|
2508
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2672
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/secrets", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2509
2673
|
secrets: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
2510
2674
|
type: import("effect/Schema").Literal<["break-glass", "encryption-key", "jwt-signing"]>;
|
|
2511
2675
|
lastRotatedAt: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
@@ -2515,7 +2679,7 @@ export declare const endpoints: {
|
|
|
2515
2679
|
clusterSecretRef: typeof import("effect/Schema").String;
|
|
2516
2680
|
}>>;
|
|
2517
2681
|
}>>;
|
|
2518
|
-
readonly rotate: import("./endpoint.js").Endpoint<"POST", "/
|
|
2682
|
+
readonly rotate: import("./endpoint.js").Endpoint<"POST", "/operator/secrets/rotate", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2519
2683
|
type: import("effect/Schema").Literal<["break-glass", "encryption-key", "jwt-signing"]>;
|
|
2520
2684
|
dryRun: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
2521
2685
|
reason: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2534,7 +2698,7 @@ export declare const endpoints: {
|
|
|
2534
2698
|
}>>;
|
|
2535
2699
|
};
|
|
2536
2700
|
readonly adminServices: {
|
|
2537
|
-
readonly imageStatus: import("./endpoint.js").Endpoint<"GET", "/
|
|
2701
|
+
readonly imageStatus: import("./endpoint.js").Endpoint<"GET", "/operator/services/image-status", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2538
2702
|
services: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
2539
2703
|
name: typeof import("effect/Schema").String;
|
|
2540
2704
|
dbRef: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
@@ -2547,7 +2711,7 @@ export declare const endpoints: {
|
|
|
2547
2711
|
}>>;
|
|
2548
2712
|
};
|
|
2549
2713
|
readonly adminTasks: {
|
|
2550
|
-
readonly listTasks: import("./endpoint.js").Endpoint<"GET", "/
|
|
2714
|
+
readonly listTasks: import("./endpoint.js").Endpoint<"GET", "/operator/tasks/projects/:projectId/tasks", import("effect/Schema").Struct<{
|
|
2551
2715
|
projectId: typeof import("effect/Schema").String;
|
|
2552
2716
|
}>, import("effect/Schema").Struct<{
|
|
2553
2717
|
page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2595,7 +2759,7 @@ export declare const endpoints: {
|
|
|
2595
2759
|
totalPages: typeof import("effect/Schema").Number;
|
|
2596
2760
|
}>;
|
|
2597
2761
|
}>>;
|
|
2598
|
-
readonly listJobsCursor: import("./endpoint.js").Endpoint<"GET", "/
|
|
2762
|
+
readonly listJobsCursor: import("./endpoint.js").Endpoint<"GET", "/operator/tasks/projects/:projectId/jobs/cursor", import("effect/Schema").Struct<{
|
|
2599
2763
|
projectId: typeof import("effect/Schema").String;
|
|
2600
2764
|
}>, import("effect/Schema").Struct<{
|
|
2601
2765
|
cursor: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2626,7 +2790,7 @@ export declare const endpoints: {
|
|
|
2626
2790
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
2627
2791
|
total: typeof import("effect/Schema").Number;
|
|
2628
2792
|
}>>;
|
|
2629
|
-
readonly cancelJob: import("./endpoint.js").Endpoint<"POST", "/
|
|
2793
|
+
readonly cancelJob: import("./endpoint.js").Endpoint<"POST", "/operator/tasks/projects/:projectId/jobs/:jobId/cancel", import("effect/Schema").Struct<{
|
|
2630
2794
|
projectId: typeof import("effect/Schema").String;
|
|
2631
2795
|
jobId: typeof import("effect/Schema").String;
|
|
2632
2796
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2663,7 +2827,7 @@ export declare const endpoints: {
|
|
|
2663
2827
|
createdAt: typeof import("effect/Schema").String;
|
|
2664
2828
|
}>>;
|
|
2665
2829
|
}>>;
|
|
2666
|
-
readonly listDLQEntries: import("./endpoint.js").Endpoint<"GET", "/
|
|
2830
|
+
readonly listDLQEntries: import("./endpoint.js").Endpoint<"GET", "/operator/tasks/projects/:projectId/dlq", import("effect/Schema").Struct<{
|
|
2667
2831
|
projectId: typeof import("effect/Schema").String;
|
|
2668
2832
|
}>, import("effect/Schema").Struct<{
|
|
2669
2833
|
page: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2690,7 +2854,7 @@ export declare const endpoints: {
|
|
|
2690
2854
|
totalPages: typeof import("effect/Schema").Number;
|
|
2691
2855
|
}>;
|
|
2692
2856
|
}>>;
|
|
2693
|
-
readonly retryDLQEntry: import("./endpoint.js").Endpoint<"POST", "/
|
|
2857
|
+
readonly retryDLQEntry: import("./endpoint.js").Endpoint<"POST", "/operator/tasks/projects/:projectId/dlq/:entryId/retry", import("effect/Schema").Struct<{
|
|
2694
2858
|
projectId: typeof import("effect/Schema").String;
|
|
2695
2859
|
entryId: typeof import("effect/Schema").String;
|
|
2696
2860
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2707,7 +2871,7 @@ export declare const endpoints: {
|
|
|
2707
2871
|
createdAt: typeof import("effect/Schema").String;
|
|
2708
2872
|
}>;
|
|
2709
2873
|
}>>;
|
|
2710
|
-
readonly resolveDLQEntry: import("./endpoint.js").Endpoint<"POST", "/
|
|
2874
|
+
readonly resolveDLQEntry: import("./endpoint.js").Endpoint<"POST", "/operator/tasks/projects/:projectId/dlq/:entryId/resolve", import("effect/Schema").Struct<{
|
|
2711
2875
|
projectId: typeof import("effect/Schema").String;
|
|
2712
2876
|
entryId: typeof import("effect/Schema").String;
|
|
2713
2877
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2726,7 +2890,7 @@ export declare const endpoints: {
|
|
|
2726
2890
|
}>>;
|
|
2727
2891
|
};
|
|
2728
2892
|
readonly adminTenants: {
|
|
2729
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
2893
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/tenants/", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2730
2894
|
orgName: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>;
|
|
2731
2895
|
orgSlug: import("effect/Schema").filter<import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>>;
|
|
2732
2896
|
projectName: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").String>>;
|
|
@@ -2740,7 +2904,7 @@ export declare const endpoints: {
|
|
|
2740
2904
|
}>>;
|
|
2741
2905
|
};
|
|
2742
2906
|
readonly adminTraces: {
|
|
2743
|
-
readonly stats: import("./endpoint.js").Endpoint<"GET", "/
|
|
2907
|
+
readonly stats: import("./endpoint.js").Endpoint<"GET", "/operator/traces/projects/:projectId/stats", import("effect/Schema").Struct<{
|
|
2744
2908
|
projectId: typeof import("effect/Schema").String;
|
|
2745
2909
|
}>, import("effect/Schema").Struct<{
|
|
2746
2910
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2763,7 +2927,7 @@ export declare const endpoints: {
|
|
|
2763
2927
|
end: typeof import("effect/Schema").String;
|
|
2764
2928
|
}>;
|
|
2765
2929
|
}>>;
|
|
2766
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
2930
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/traces/projects/:projectId/traces", import("effect/Schema").Struct<{
|
|
2767
2931
|
projectId: typeof import("effect/Schema").String;
|
|
2768
2932
|
}>, import("effect/Schema").Struct<{
|
|
2769
2933
|
statusFilter: import("effect/Schema").optional<import("effect/Schema").Literal<["all", "2xx", "3xx", "4xx", "5xx", "error"]>>;
|
|
@@ -2792,7 +2956,7 @@ export declare const endpoints: {
|
|
|
2792
2956
|
total: typeof import("effect/Schema").Number;
|
|
2793
2957
|
hasMore: typeof import("effect/Schema").Boolean;
|
|
2794
2958
|
}>>;
|
|
2795
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
2959
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/traces/projects/:projectId/traces/:traceId", import("effect/Schema").Struct<{
|
|
2796
2960
|
projectId: typeof import("effect/Schema").String;
|
|
2797
2961
|
traceId: typeof import("effect/Schema").String;
|
|
2798
2962
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
@@ -2829,7 +2993,7 @@ export declare const endpoints: {
|
|
|
2829
2993
|
spanCount: typeof import("effect/Schema").Number;
|
|
2830
2994
|
}>>;
|
|
2831
2995
|
}>>;
|
|
2832
|
-
readonly slowEndpoints: import("./endpoint.js").Endpoint<"GET", "/
|
|
2996
|
+
readonly slowEndpoints: import("./endpoint.js").Endpoint<"GET", "/operator/traces/projects/:projectId/slow-endpoints", import("effect/Schema").Struct<{
|
|
2833
2997
|
projectId: typeof import("effect/Schema").String;
|
|
2834
2998
|
}>, import("effect/Schema").Struct<{
|
|
2835
2999
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2842,7 +3006,7 @@ export declare const endpoints: {
|
|
|
2842
3006
|
p95Ms: typeof import("effect/Schema").Number;
|
|
2843
3007
|
requestCount: typeof import("effect/Schema").Number;
|
|
2844
3008
|
}>>>;
|
|
2845
|
-
readonly errorEndpoints: import("./endpoint.js").Endpoint<"GET", "/
|
|
3009
|
+
readonly errorEndpoints: import("./endpoint.js").Endpoint<"GET", "/operator/traces/projects/:projectId/error-endpoints", import("effect/Schema").Struct<{
|
|
2846
3010
|
projectId: typeof import("effect/Schema").String;
|
|
2847
3011
|
}>, import("effect/Schema").Struct<{
|
|
2848
3012
|
startDate: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2857,7 +3021,7 @@ export declare const endpoints: {
|
|
|
2857
3021
|
}>>>;
|
|
2858
3022
|
};
|
|
2859
3023
|
readonly adminUsers: {
|
|
2860
|
-
readonly search: import("./endpoint.js").Endpoint<"GET", "/
|
|
3024
|
+
readonly search: import("./endpoint.js").Endpoint<"GET", "/operator/users/users", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2861
3025
|
query: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
2862
3026
|
limit: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
2863
3027
|
offset: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2881,7 +3045,7 @@ export declare const endpoints: {
|
|
|
2881
3045
|
emailVerified: typeof import("effect/Schema").Number;
|
|
2882
3046
|
unreadAlerts: typeof import("effect/Schema").Number;
|
|
2883
3047
|
}>]>>;
|
|
2884
|
-
readonly get: import("./endpoint.js").Endpoint<"GET", "/
|
|
3048
|
+
readonly get: import("./endpoint.js").Endpoint<"GET", "/operator/users/users/:userId", import("effect/Schema").Struct<{
|
|
2885
3049
|
userId: typeof import("effect/Schema").String;
|
|
2886
3050
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2887
3051
|
id: typeof import("effect/Schema").String;
|
|
@@ -2904,7 +3068,7 @@ export declare const endpoints: {
|
|
|
2904
3068
|
status: typeof import("effect/Schema").String;
|
|
2905
3069
|
}>>;
|
|
2906
3070
|
}>>;
|
|
2907
|
-
readonly updateRole: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
3071
|
+
readonly updateRole: import("./endpoint.js").Endpoint<"PATCH", "/operator/users/users/:userId/role", import("effect/Schema").Struct<{
|
|
2908
3072
|
userId: typeof import("effect/Schema").String;
|
|
2909
3073
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2910
3074
|
role: import("effect/Schema").Literal<["user", "admin", "super_admin"]>;
|
|
@@ -2912,13 +3076,13 @@ export declare const endpoints: {
|
|
|
2912
3076
|
id: typeof import("effect/Schema").String;
|
|
2913
3077
|
role: import("effect/Schema").Literal<["user", "admin", "super_admin"]>;
|
|
2914
3078
|
}>>;
|
|
2915
|
-
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
3079
|
+
readonly delete: import("./endpoint.js").Endpoint<"DELETE", "/operator/users/users/:userId", import("effect/Schema").Struct<{
|
|
2916
3080
|
userId: typeof import("effect/Schema").String;
|
|
2917
3081
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2918
3082
|
id: typeof import("effect/Schema").String;
|
|
2919
3083
|
email: typeof import("effect/Schema").String;
|
|
2920
3084
|
}>>;
|
|
2921
|
-
readonly getSessions: import("./endpoint.js").Endpoint<"GET", "/
|
|
3085
|
+
readonly getSessions: import("./endpoint.js").Endpoint<"GET", "/operator/users/users/:userId/sessions", import("effect/Schema").Struct<{
|
|
2922
3086
|
userId: typeof import("effect/Schema").String;
|
|
2923
3087
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2924
3088
|
sessions: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
@@ -2936,19 +3100,19 @@ export declare const endpoints: {
|
|
|
2936
3100
|
expiresAt: typeof import("effect/Schema").String;
|
|
2937
3101
|
}>>;
|
|
2938
3102
|
}>>;
|
|
2939
|
-
readonly revokeSessions: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
3103
|
+
readonly revokeSessions: import("./endpoint.js").Endpoint<"DELETE", "/operator/users/users/:userId/sessions", import("effect/Schema").Struct<{
|
|
2940
3104
|
userId: typeof import("effect/Schema").String;
|
|
2941
3105
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2942
3106
|
userId: typeof import("effect/Schema").String;
|
|
2943
3107
|
revokedCount: typeof import("effect/Schema").Number;
|
|
2944
3108
|
}>>;
|
|
2945
|
-
readonly revokeSession: import("./endpoint.js").Endpoint<"DELETE", "/
|
|
3109
|
+
readonly revokeSession: import("./endpoint.js").Endpoint<"DELETE", "/operator/users/users/:userId/sessions/:sessionId", import("effect/Schema").Struct<{
|
|
2946
3110
|
userId: typeof import("effect/Schema").String;
|
|
2947
3111
|
sessionId: typeof import("effect/Schema").String;
|
|
2948
3112
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2949
3113
|
sessionId: typeof import("effect/Schema").String;
|
|
2950
3114
|
}>>;
|
|
2951
|
-
readonly verifyEmail: import("./endpoint.js").Endpoint<"POST", "/
|
|
3115
|
+
readonly verifyEmail: import("./endpoint.js").Endpoint<"POST", "/operator/users/users/:userId/verify-email", import("effect/Schema").Struct<{
|
|
2952
3116
|
userId: typeof import("effect/Schema").String;
|
|
2953
3117
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2954
3118
|
id: typeof import("effect/Schema").String;
|
|
@@ -2956,7 +3120,7 @@ export declare const endpoints: {
|
|
|
2956
3120
|
}>>;
|
|
2957
3121
|
};
|
|
2958
3122
|
readonly adminWebhookSignatureVersions: {
|
|
2959
|
-
readonly list: import("./endpoint.js").Endpoint<"GET", "/
|
|
3123
|
+
readonly list: import("./endpoint.js").Endpoint<"GET", "/operator/webhooks/signature-versions", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2960
3124
|
versions: import("effect/Schema").Array$<import("effect/Schema").Struct<{
|
|
2961
3125
|
version: typeof import("effect/Schema").Number;
|
|
2962
3126
|
algorithm: import("effect/Schema").Literal<["HMAC-SHA256", "HMAC-SHA512"]>;
|
|
@@ -2968,7 +3132,7 @@ export declare const endpoints: {
|
|
|
2968
3132
|
updatedBy: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2969
3133
|
}>>;
|
|
2970
3134
|
}>>;
|
|
2971
|
-
readonly create: import("./endpoint.js").Endpoint<"POST", "/
|
|
3135
|
+
readonly create: import("./endpoint.js").Endpoint<"POST", "/operator/webhooks/signature-versions", import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2972
3136
|
version: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").Number>>;
|
|
2973
3137
|
algorithm: import("effect/Schema").Literal<["HMAC-SHA256", "HMAC-SHA512"]>;
|
|
2974
3138
|
hmacKeyKmsId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
@@ -2983,7 +3147,7 @@ export declare const endpoints: {
|
|
|
2983
3147
|
updatedAt: typeof import("effect/Schema").String;
|
|
2984
3148
|
updatedBy: import("effect/Schema").NullOr<typeof import("effect/Schema").String>;
|
|
2985
3149
|
}>>;
|
|
2986
|
-
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/
|
|
3150
|
+
readonly update: import("./endpoint.js").Endpoint<"PATCH", "/operator/webhooks/signature-versions/:version", import("effect/Schema").Struct<{
|
|
2987
3151
|
version: import("effect/Schema").filter<import("effect/Schema").filter<typeof import("effect/Schema").NumberFromString>>;
|
|
2988
3152
|
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
2989
3153
|
active: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
@@ -5885,6 +6049,7 @@ export declare const endpoints: {
|
|
|
5885
6049
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5886
6050
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
5887
6051
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6052
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
5888
6053
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5889
6054
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5890
6055
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -5937,6 +6102,7 @@ export declare const endpoints: {
|
|
|
5937
6102
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5938
6103
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
5939
6104
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6105
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
5940
6106
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5941
6107
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5942
6108
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -5973,6 +6139,7 @@ export declare const endpoints: {
|
|
|
5973
6139
|
allowPrivilegeEscalation: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
5974
6140
|
privileged: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
5975
6141
|
}>>;
|
|
6142
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
5976
6143
|
settings: import("effect/Schema").optional<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
|
|
5977
6144
|
}>, import("effect/Schema").Struct<{
|
|
5978
6145
|
id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "EnvironmentId">;
|
|
@@ -5996,6 +6163,7 @@ export declare const endpoints: {
|
|
|
5996
6163
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
5997
6164
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
5998
6165
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6166
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
5999
6167
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6000
6168
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6001
6169
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -6055,6 +6223,7 @@ export declare const endpoints: {
|
|
|
6055
6223
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6056
6224
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6057
6225
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6226
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
6058
6227
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6059
6228
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6060
6229
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -6085,6 +6254,7 @@ export declare const endpoints: {
|
|
|
6085
6254
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6086
6255
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6087
6256
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6257
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
6088
6258
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6089
6259
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6090
6260
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -6134,6 +6304,7 @@ export declare const endpoints: {
|
|
|
6134
6304
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6135
6305
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6136
6306
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6307
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
6137
6308
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6138
6309
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6139
6310
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -6169,6 +6340,7 @@ export declare const endpoints: {
|
|
|
6169
6340
|
allowPrivilegeEscalation: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
6170
6341
|
privileged: import("effect/Schema").optional<typeof import("effect/Schema").Boolean>;
|
|
6171
6342
|
}>>;
|
|
6343
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
6172
6344
|
settings: import("effect/Schema").optional<import("effect/Schema").Record$<typeof import("effect/Schema").String, typeof import("effect/Schema").Unknown>>;
|
|
6173
6345
|
}>, import("effect/Schema").Struct<{
|
|
6174
6346
|
id: import("effect/Schema").brand<import("effect/Schema").filter<typeof import("effect/Schema").String>, "EnvironmentId">;
|
|
@@ -6192,6 +6364,7 @@ export declare const endpoints: {
|
|
|
6192
6364
|
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6193
6365
|
deployAppId: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6194
6366
|
namespace: import("effect/Schema").optional<import("effect/Schema").NullOr<typeof import("effect/Schema").String>>;
|
|
6367
|
+
defaultHealthAgentMode: import("effect/Schema").optional<import("effect/Schema").Literal<["auto", "passthrough", "disabled"]>>;
|
|
6195
6368
|
createdAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6196
6369
|
updatedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
6197
6370
|
status: import("effect/Schema").optional<import("effect/Schema").NullOr<import("effect/Schema").Struct<{
|
|
@@ -9350,7 +9523,7 @@ export declare const endpoints: {
|
|
|
9350
9523
|
}[] | undefined;
|
|
9351
9524
|
readonly services?: readonly {
|
|
9352
9525
|
readonly name: string;
|
|
9353
|
-
readonly type?: "function" | "
|
|
9526
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9354
9527
|
readonly port?: number | undefined;
|
|
9355
9528
|
readonly env?: readonly string[] | undefined;
|
|
9356
9529
|
readonly replicas?: number | undefined;
|
|
@@ -9402,7 +9575,7 @@ export declare const endpoints: {
|
|
|
9402
9575
|
}[] | undefined;
|
|
9403
9576
|
readonly services?: readonly {
|
|
9404
9577
|
readonly name: string;
|
|
9405
|
-
readonly type?: "function" | "
|
|
9578
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9406
9579
|
readonly port?: number | undefined;
|
|
9407
9580
|
readonly env?: readonly string[] | undefined;
|
|
9408
9581
|
readonly replicas?: number | undefined;
|
|
@@ -9454,7 +9627,7 @@ export declare const endpoints: {
|
|
|
9454
9627
|
}[] | undefined;
|
|
9455
9628
|
readonly services?: readonly {
|
|
9456
9629
|
readonly name: string;
|
|
9457
|
-
readonly type?: "function" | "
|
|
9630
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9458
9631
|
readonly port?: number | undefined;
|
|
9459
9632
|
readonly env?: readonly string[] | undefined;
|
|
9460
9633
|
readonly replicas?: number | undefined;
|
|
@@ -9506,7 +9679,7 @@ export declare const endpoints: {
|
|
|
9506
9679
|
}[] | undefined;
|
|
9507
9680
|
readonly services?: readonly {
|
|
9508
9681
|
readonly name: string;
|
|
9509
|
-
readonly type?: "function" | "
|
|
9682
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9510
9683
|
readonly port?: number | undefined;
|
|
9511
9684
|
readonly env?: readonly string[] | undefined;
|
|
9512
9685
|
readonly replicas?: number | undefined;
|
|
@@ -9559,7 +9732,7 @@ export declare const endpoints: {
|
|
|
9559
9732
|
}[] | undefined;
|
|
9560
9733
|
readonly services?: readonly {
|
|
9561
9734
|
readonly name: string;
|
|
9562
|
-
readonly type?: "function" | "
|
|
9735
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9563
9736
|
readonly port?: number | undefined;
|
|
9564
9737
|
readonly env?: readonly string[] | undefined;
|
|
9565
9738
|
readonly replicas?: number | undefined;
|
|
@@ -9611,7 +9784,7 @@ export declare const endpoints: {
|
|
|
9611
9784
|
}[] | undefined;
|
|
9612
9785
|
readonly services?: readonly {
|
|
9613
9786
|
readonly name: string;
|
|
9614
|
-
readonly type?: "function" | "
|
|
9787
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9615
9788
|
readonly port?: number | undefined;
|
|
9616
9789
|
readonly env?: readonly string[] | undefined;
|
|
9617
9790
|
readonly replicas?: number | undefined;
|
|
@@ -9663,7 +9836,7 @@ export declare const endpoints: {
|
|
|
9663
9836
|
}[] | undefined;
|
|
9664
9837
|
readonly services?: readonly {
|
|
9665
9838
|
readonly name: string;
|
|
9666
|
-
readonly type?: "function" | "
|
|
9839
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9667
9840
|
readonly port?: number | undefined;
|
|
9668
9841
|
readonly env?: readonly string[] | undefined;
|
|
9669
9842
|
readonly replicas?: number | undefined;
|
|
@@ -9715,7 +9888,7 @@ export declare const endpoints: {
|
|
|
9715
9888
|
}[] | undefined;
|
|
9716
9889
|
readonly services?: readonly {
|
|
9717
9890
|
readonly name: string;
|
|
9718
|
-
readonly type?: "function" | "
|
|
9891
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9719
9892
|
readonly port?: number | undefined;
|
|
9720
9893
|
readonly env?: readonly string[] | undefined;
|
|
9721
9894
|
readonly replicas?: number | undefined;
|
|
@@ -9863,7 +10036,7 @@ export declare const endpoints: {
|
|
|
9863
10036
|
}[] | undefined;
|
|
9864
10037
|
readonly services?: readonly {
|
|
9865
10038
|
readonly name: string;
|
|
9866
|
-
readonly type?: "function" | "
|
|
10039
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9867
10040
|
readonly port?: number | undefined;
|
|
9868
10041
|
readonly env?: readonly string[] | undefined;
|
|
9869
10042
|
readonly replicas?: number | undefined;
|
|
@@ -9915,7 +10088,7 @@ export declare const endpoints: {
|
|
|
9915
10088
|
}[] | undefined;
|
|
9916
10089
|
readonly services?: readonly {
|
|
9917
10090
|
readonly name: string;
|
|
9918
|
-
readonly type?: "function" | "
|
|
10091
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9919
10092
|
readonly port?: number | undefined;
|
|
9920
10093
|
readonly env?: readonly string[] | undefined;
|
|
9921
10094
|
readonly replicas?: number | undefined;
|
|
@@ -9967,7 +10140,7 @@ export declare const endpoints: {
|
|
|
9967
10140
|
}[] | undefined;
|
|
9968
10141
|
readonly services?: readonly {
|
|
9969
10142
|
readonly name: string;
|
|
9970
|
-
readonly type?: "function" | "
|
|
10143
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
9971
10144
|
readonly port?: number | undefined;
|
|
9972
10145
|
readonly env?: readonly string[] | undefined;
|
|
9973
10146
|
readonly replicas?: number | undefined;
|
|
@@ -10019,7 +10192,7 @@ export declare const endpoints: {
|
|
|
10019
10192
|
}[] | undefined;
|
|
10020
10193
|
readonly services?: readonly {
|
|
10021
10194
|
readonly name: string;
|
|
10022
|
-
readonly type?: "function" | "
|
|
10195
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
10023
10196
|
readonly port?: number | undefined;
|
|
10024
10197
|
readonly env?: readonly string[] | undefined;
|
|
10025
10198
|
readonly replicas?: number | undefined;
|
|
@@ -10072,7 +10245,7 @@ export declare const endpoints: {
|
|
|
10072
10245
|
}[] | undefined;
|
|
10073
10246
|
readonly services?: readonly {
|
|
10074
10247
|
readonly name: string;
|
|
10075
|
-
readonly type?: "function" | "
|
|
10248
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
10076
10249
|
readonly port?: number | undefined;
|
|
10077
10250
|
readonly env?: readonly string[] | undefined;
|
|
10078
10251
|
readonly replicas?: number | undefined;
|
|
@@ -10124,7 +10297,7 @@ export declare const endpoints: {
|
|
|
10124
10297
|
}[] | undefined;
|
|
10125
10298
|
readonly services?: readonly {
|
|
10126
10299
|
readonly name: string;
|
|
10127
|
-
readonly type?: "function" | "
|
|
10300
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
10128
10301
|
readonly port?: number | undefined;
|
|
10129
10302
|
readonly env?: readonly string[] | undefined;
|
|
10130
10303
|
readonly replicas?: number | undefined;
|
|
@@ -10176,7 +10349,7 @@ export declare const endpoints: {
|
|
|
10176
10349
|
}[] | undefined;
|
|
10177
10350
|
readonly services?: readonly {
|
|
10178
10351
|
readonly name: string;
|
|
10179
|
-
readonly type?: "function" | "
|
|
10352
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
10180
10353
|
readonly port?: number | undefined;
|
|
10181
10354
|
readonly env?: readonly string[] | undefined;
|
|
10182
10355
|
readonly replicas?: number | undefined;
|
|
@@ -10228,7 +10401,7 @@ export declare const endpoints: {
|
|
|
10228
10401
|
}[] | undefined;
|
|
10229
10402
|
readonly services?: readonly {
|
|
10230
10403
|
readonly name: string;
|
|
10231
|
-
readonly type?: "function" | "
|
|
10404
|
+
readonly type?: "function" | "cron" | "web" | "worker" | undefined;
|
|
10232
10405
|
readonly port?: number | undefined;
|
|
10233
10406
|
readonly env?: readonly string[] | undefined;
|
|
10234
10407
|
readonly replicas?: number | undefined;
|
|
@@ -11663,6 +11836,10 @@ export declare const endpoints: {
|
|
|
11663
11836
|
publicUrl: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11664
11837
|
fileId: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11665
11838
|
expiresAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11839
|
+
presignedUrl: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11840
|
+
storageKey: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11841
|
+
tokenPayload: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11842
|
+
url: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11666
11843
|
uploadEndpoint: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11667
11844
|
clientPayload: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11668
11845
|
maxSize: import("effect/Schema").optional<typeof import("effect/Schema").Number>;
|
|
@@ -11793,12 +11970,6 @@ export declare const endpoints: {
|
|
|
11793
11970
|
uploadedAt: import("effect/Schema").optional<typeof import("effect/Schema").String>;
|
|
11794
11971
|
}>;
|
|
11795
11972
|
}>>;
|
|
11796
|
-
readonly softDelete: import("./endpoint.js").Endpoint<"DELETE", "/storage/files/:id", import("effect/Schema").Struct<{
|
|
11797
|
-
id: typeof import("effect/Schema").String;
|
|
11798
|
-
}>, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Schema.AnyNoContext | undefined, import("effect/Schema").Struct<{
|
|
11799
|
-
success: import("effect/Schema").Literal<[true]>;
|
|
11800
|
-
isDeleted: import("effect/Schema").Literal<[true]>;
|
|
11801
|
-
}>>;
|
|
11802
11973
|
};
|
|
11803
11974
|
readonly storageAdmin: {
|
|
11804
11975
|
readonly listBuckets: import("./endpoint.js").Endpoint<"GET", "/storage/projects/:id/buckets", import("effect/Schema").Struct<{
|