@alpic-ai/api 0.0.0-staging.ecdfb94 → 0.0.0-staging.ed5f7ec
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/index.d.mts +70 -168
- package/dist/index.mjs +120 -70
- package/package.json +17 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
1
2
|
import * as _$_orpc_contract0 from "@orpc/contract";
|
|
2
3
|
import { InferContractRouterInputs, InferContractRouterOutputs } from "@orpc/contract";
|
|
3
|
-
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/api.contract.d.ts
|
|
6
6
|
type ApiContext = {
|
|
@@ -11,9 +11,9 @@ type ApiContext = {
|
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
13
|
declare const deploymentStatusSchema: z.ZodEnum<{
|
|
14
|
-
failed: "failed";
|
|
15
14
|
ongoing: "ongoing";
|
|
16
15
|
deployed: "deployed";
|
|
16
|
+
failed: "failed";
|
|
17
17
|
canceled: "canceled";
|
|
18
18
|
}>;
|
|
19
19
|
declare const createEnvironmentContractV1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -103,18 +103,18 @@ declare const contract: {
|
|
|
103
103
|
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
104
104
|
projectId: z.ZodString;
|
|
105
105
|
status: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
106
|
-
failed: "failed";
|
|
107
106
|
ongoing: "ongoing";
|
|
108
107
|
deployed: "deployed";
|
|
108
|
+
failed: "failed";
|
|
109
109
|
canceled: "canceled";
|
|
110
110
|
}>>>;
|
|
111
111
|
environmentId: z.ZodOptional<z.ZodString>;
|
|
112
112
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
113
113
|
id: z.ZodString;
|
|
114
114
|
status: z.ZodEnum<{
|
|
115
|
-
failed: "failed";
|
|
116
115
|
ongoing: "ongoing";
|
|
117
116
|
deployed: "deployed";
|
|
117
|
+
failed: "failed";
|
|
118
118
|
canceled: "canceled";
|
|
119
119
|
}>;
|
|
120
120
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -138,9 +138,9 @@ declare const contract: {
|
|
|
138
138
|
}, z.core.$strip>, z.ZodObject<{
|
|
139
139
|
id: z.ZodString;
|
|
140
140
|
status: z.ZodEnum<{
|
|
141
|
-
failed: "failed";
|
|
142
141
|
ongoing: "ongoing";
|
|
143
142
|
deployed: "deployed";
|
|
143
|
+
failed: "failed";
|
|
144
144
|
canceled: "canceled";
|
|
145
145
|
}>;
|
|
146
146
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -226,9 +226,9 @@ declare const contract: {
|
|
|
226
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
227
227
|
id: z.ZodString;
|
|
228
228
|
status: z.ZodEnum<{
|
|
229
|
-
failed: "failed";
|
|
230
229
|
ongoing: "ongoing";
|
|
231
230
|
deployed: "deployed";
|
|
231
|
+
failed: "failed";
|
|
232
232
|
canceled: "canceled";
|
|
233
233
|
}>;
|
|
234
234
|
sourceRef: z.ZodNullable<z.ZodString>;
|
|
@@ -283,6 +283,38 @@ declare const contract: {
|
|
|
283
283
|
BAD_REQUEST: {};
|
|
284
284
|
}>, Record<never, never>>;
|
|
285
285
|
};
|
|
286
|
+
getLatestLogs: {
|
|
287
|
+
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
288
|
+
environmentId: z.ZodString;
|
|
289
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
290
|
+
level: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
291
|
+
INFO: "INFO";
|
|
292
|
+
ERROR: "ERROR";
|
|
293
|
+
WARNING: "WARNING";
|
|
294
|
+
DEBUG: "DEBUG";
|
|
295
|
+
}>>>;
|
|
296
|
+
search: z.ZodOptional<z.ZodString>;
|
|
297
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
298
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
299
|
+
timestamp: z.ZodCoercedDate<unknown>;
|
|
300
|
+
type: z.ZodEnum<{
|
|
301
|
+
INFO: "INFO";
|
|
302
|
+
ERROR: "ERROR";
|
|
303
|
+
WARNING: "WARNING";
|
|
304
|
+
DEBUG: "DEBUG";
|
|
305
|
+
START: "START";
|
|
306
|
+
END: "END";
|
|
307
|
+
}>;
|
|
308
|
+
requestId: z.ZodString;
|
|
309
|
+
content: z.ZodOptional<z.ZodString>;
|
|
310
|
+
method: z.ZodOptional<z.ZodString>;
|
|
311
|
+
durationInMs: z.ZodOptional<z.ZodNumber>;
|
|
312
|
+
}, z.core.$strip>>;
|
|
313
|
+
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
314
|
+
NOT_FOUND: {};
|
|
315
|
+
BAD_REQUEST: {};
|
|
316
|
+
}>, Record<never, never>>;
|
|
317
|
+
};
|
|
286
318
|
};
|
|
287
319
|
environmentVariables: {
|
|
288
320
|
list: {
|
|
@@ -318,7 +350,7 @@ declare const contract: {
|
|
|
318
350
|
environmentVariableId: z.ZodString;
|
|
319
351
|
key: z.ZodString;
|
|
320
352
|
value: z.ZodOptional<z.ZodString>;
|
|
321
|
-
isSecret: z.ZodDefault<z.ZodBoolean
|
|
353
|
+
isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
322
354
|
}, z.core.$strip>, z.ZodObject<{
|
|
323
355
|
success: z.ZodLiteral<true>;
|
|
324
356
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
@@ -371,18 +403,18 @@ declare const contract: {
|
|
|
371
403
|
domains: z.ZodArray<z.ZodObject<{
|
|
372
404
|
domain: z.ZodString;
|
|
373
405
|
status: z.ZodEnum<{
|
|
374
|
-
failed: "failed";
|
|
375
406
|
ongoing: "ongoing";
|
|
376
407
|
deployed: "deployed";
|
|
408
|
+
failed: "failed";
|
|
377
409
|
}>;
|
|
378
410
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
379
411
|
}, z.core.$strip>>;
|
|
380
412
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
381
413
|
id: z.ZodString;
|
|
382
414
|
status: z.ZodEnum<{
|
|
383
|
-
failed: "failed";
|
|
384
415
|
ongoing: "ongoing";
|
|
385
416
|
deployed: "deployed";
|
|
417
|
+
failed: "failed";
|
|
386
418
|
canceled: "canceled";
|
|
387
419
|
}>;
|
|
388
420
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -400,9 +432,9 @@ declare const contract: {
|
|
|
400
432
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
401
433
|
id: z.ZodString;
|
|
402
434
|
status: z.ZodEnum<{
|
|
403
|
-
failed: "failed";
|
|
404
435
|
ongoing: "ongoing";
|
|
405
436
|
deployed: "deployed";
|
|
437
|
+
failed: "failed";
|
|
406
438
|
canceled: "canceled";
|
|
407
439
|
}>;
|
|
408
440
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -447,18 +479,18 @@ declare const contract: {
|
|
|
447
479
|
domains: z.ZodArray<z.ZodObject<{
|
|
448
480
|
domain: z.ZodString;
|
|
449
481
|
status: z.ZodEnum<{
|
|
450
|
-
failed: "failed";
|
|
451
482
|
ongoing: "ongoing";
|
|
452
483
|
deployed: "deployed";
|
|
484
|
+
failed: "failed";
|
|
453
485
|
}>;
|
|
454
486
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
455
487
|
}, z.core.$strip>>;
|
|
456
488
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
457
489
|
id: z.ZodString;
|
|
458
490
|
status: z.ZodEnum<{
|
|
459
|
-
failed: "failed";
|
|
460
491
|
ongoing: "ongoing";
|
|
461
492
|
deployed: "deployed";
|
|
493
|
+
failed: "failed";
|
|
462
494
|
canceled: "canceled";
|
|
463
495
|
}>;
|
|
464
496
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -476,9 +508,9 @@ declare const contract: {
|
|
|
476
508
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
477
509
|
id: z.ZodString;
|
|
478
510
|
status: z.ZodEnum<{
|
|
479
|
-
failed: "failed";
|
|
480
511
|
ongoing: "ongoing";
|
|
481
512
|
deployed: "deployed";
|
|
513
|
+
failed: "failed";
|
|
482
514
|
canceled: "canceled";
|
|
483
515
|
}>;
|
|
484
516
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -522,18 +554,18 @@ declare const contract: {
|
|
|
522
554
|
domains: z.ZodArray<z.ZodObject<{
|
|
523
555
|
domain: z.ZodString;
|
|
524
556
|
status: z.ZodEnum<{
|
|
525
|
-
failed: "failed";
|
|
526
557
|
ongoing: "ongoing";
|
|
527
558
|
deployed: "deployed";
|
|
559
|
+
failed: "failed";
|
|
528
560
|
}>;
|
|
529
561
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
530
562
|
}, z.core.$strip>>;
|
|
531
563
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
532
564
|
id: z.ZodString;
|
|
533
565
|
status: z.ZodEnum<{
|
|
534
|
-
failed: "failed";
|
|
535
566
|
ongoing: "ongoing";
|
|
536
567
|
deployed: "deployed";
|
|
568
|
+
failed: "failed";
|
|
537
569
|
canceled: "canceled";
|
|
538
570
|
}>;
|
|
539
571
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -551,9 +583,9 @@ declare const contract: {
|
|
|
551
583
|
latestDeployment: z.ZodNullable<z.ZodObject<{
|
|
552
584
|
id: z.ZodString;
|
|
553
585
|
status: z.ZodEnum<{
|
|
554
|
-
failed: "failed";
|
|
555
586
|
ongoing: "ongoing";
|
|
556
587
|
deployed: "deployed";
|
|
588
|
+
failed: "failed";
|
|
557
589
|
canceled: "canceled";
|
|
558
590
|
}>;
|
|
559
591
|
sourceCommitId: z.ZodNullable<z.ZodString>;
|
|
@@ -784,7 +816,7 @@ declare const contract: {
|
|
|
784
816
|
beacon: {
|
|
785
817
|
create: {
|
|
786
818
|
v1: _$_orpc_contract0.ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
787
|
-
targetUrl: z.
|
|
819
|
+
targetUrl: z.ZodURL;
|
|
788
820
|
teamId: z.ZodOptional<z.ZodString>;
|
|
789
821
|
projectId: z.ZodOptional<z.ZodString>;
|
|
790
822
|
excludeCategories: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -808,10 +840,10 @@ declare const contract: {
|
|
|
808
840
|
id: z.ZodString;
|
|
809
841
|
targetUrl: z.ZodString;
|
|
810
842
|
status: z.ZodEnum<{
|
|
843
|
+
failed: "failed";
|
|
811
844
|
pending: "pending";
|
|
812
845
|
partial: "partial";
|
|
813
846
|
completed: "completed";
|
|
814
|
-
failed: "failed";
|
|
815
847
|
}>;
|
|
816
848
|
durationMs: z.ZodNullable<z.ZodNumber>;
|
|
817
849
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
@@ -824,6 +856,8 @@ declare const contract: {
|
|
|
824
856
|
durationMs: z.ZodNumber;
|
|
825
857
|
results: z.ZodArray<z.ZodObject<{
|
|
826
858
|
checkId: z.ZodString;
|
|
859
|
+
checkName: z.ZodString;
|
|
860
|
+
description: z.ZodString;
|
|
827
861
|
status: z.ZodEnum<{
|
|
828
862
|
pending: "pending";
|
|
829
863
|
pass: "pass";
|
|
@@ -871,18 +905,18 @@ declare const contract: {
|
|
|
871
905
|
chatgpt: "chatgpt";
|
|
872
906
|
claudeai: "claudeai";
|
|
873
907
|
}>, z.ZodBoolean>;
|
|
874
|
-
widgetScreenshotKeys: z.
|
|
908
|
+
widgetScreenshotKeys: z.ZodObject<{
|
|
875
909
|
chatgpt: z.ZodOptional<z.ZodString>;
|
|
876
910
|
claudeai: z.ZodOptional<z.ZodString>;
|
|
877
|
-
}, z.core.$strip
|
|
878
|
-
widgetScreenshots: z.
|
|
911
|
+
}, z.core.$strip>;
|
|
912
|
+
widgetScreenshots: z.ZodObject<{
|
|
879
913
|
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
880
914
|
url: z.ZodString;
|
|
881
915
|
}, z.core.$strip>>;
|
|
882
916
|
claudeai: z.ZodOptional<z.ZodObject<{
|
|
883
917
|
url: z.ZodString;
|
|
884
918
|
}, z.core.$strip>>;
|
|
885
|
-
}, z.core.$strip
|
|
919
|
+
}, z.core.$strip>;
|
|
886
920
|
}, z.core.$strip>>;
|
|
887
921
|
}, z.core.$strip>, _$_orpc_contract0.MergedErrorMap<Record<never, never>, {
|
|
888
922
|
NOT_FOUND: {};
|
|
@@ -893,6 +927,14 @@ declare const contract: {
|
|
|
893
927
|
type RouterInput = InferContractRouterInputs<typeof contract>;
|
|
894
928
|
type RouterOutput = InferContractRouterOutputs<typeof contract>;
|
|
895
929
|
//#endregion
|
|
930
|
+
//#region ../domains/src/beacon/schemas.d.ts
|
|
931
|
+
declare const platformSchema: z.ZodEnum<{
|
|
932
|
+
chatgpt: "chatgpt";
|
|
933
|
+
claudeai: "claudeai";
|
|
934
|
+
}>;
|
|
935
|
+
type Platform = z.infer<typeof platformSchema>;
|
|
936
|
+
declare const PLATFORM_LABELS: Record<Platform, string>;
|
|
937
|
+
//#endregion
|
|
896
938
|
//#region src/schemas.d.ts
|
|
897
939
|
declare const environmentVariableSchema: z.ZodObject<{
|
|
898
940
|
key: z.ZodString;
|
|
@@ -904,6 +946,11 @@ declare const environmentVariablesSchema: z.ZodArray<z.ZodObject<{
|
|
|
904
946
|
value: z.ZodString;
|
|
905
947
|
isSecret: z.ZodDefault<z.ZodBoolean>;
|
|
906
948
|
}, z.core.$strip>>;
|
|
949
|
+
declare const updateEnvironmentVariableSchema: z.ZodObject<{
|
|
950
|
+
key: z.ZodString;
|
|
951
|
+
value: z.ZodOptional<z.ZodString>;
|
|
952
|
+
isSecret: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
953
|
+
}, z.core.$strip>;
|
|
907
954
|
declare const buildSettingsSchema: z.ZodObject<{
|
|
908
955
|
installCommand: z.ZodOptional<z.ZodString>;
|
|
909
956
|
buildCommand: z.ZodOptional<z.ZodString>;
|
|
@@ -923,151 +970,6 @@ declare const transportSchema: z.ZodEnum<{
|
|
|
923
970
|
streamablehttp: "streamablehttp";
|
|
924
971
|
}>;
|
|
925
972
|
type Transport = z.infer<typeof transportSchema>;
|
|
926
|
-
declare const auditStatusSchema: z.ZodEnum<{
|
|
927
|
-
pending: "pending";
|
|
928
|
-
partial: "partial";
|
|
929
|
-
completed: "completed";
|
|
930
|
-
failed: "failed";
|
|
931
|
-
}>;
|
|
932
|
-
declare const platformSchema: z.ZodEnum<{
|
|
933
|
-
chatgpt: "chatgpt";
|
|
934
|
-
claudeai: "claudeai";
|
|
935
|
-
}>;
|
|
936
|
-
type Platform = z.infer<typeof platformSchema>;
|
|
937
|
-
declare const checkSeveritySchema: z.ZodEnum<{
|
|
938
|
-
error: "error";
|
|
939
|
-
warning: "warning";
|
|
940
|
-
info: "info";
|
|
941
|
-
}>;
|
|
942
|
-
type CheckSeverity = z.infer<typeof checkSeveritySchema>;
|
|
943
|
-
declare const checkCategorySchema: z.ZodEnum<{
|
|
944
|
-
connectivity: "connectivity";
|
|
945
|
-
"tool-metadata": "tool-metadata";
|
|
946
|
-
"resource-metadata": "resource-metadata";
|
|
947
|
-
performance: "performance";
|
|
948
|
-
e2e: "e2e";
|
|
949
|
-
}>;
|
|
950
|
-
type CheckCategory = z.infer<typeof checkCategorySchema>;
|
|
951
|
-
declare const checkScopeSchema: z.ZodEnum<{
|
|
952
|
-
server: "server";
|
|
953
|
-
view: "view";
|
|
954
|
-
}>;
|
|
955
|
-
type CheckScope = z.infer<typeof checkScopeSchema>;
|
|
956
|
-
declare const checkDetailSchema: z.ZodObject<{
|
|
957
|
-
label: z.ZodString;
|
|
958
|
-
value: z.ZodOptional<z.ZodString>;
|
|
959
|
-
}, z.core.$strip>;
|
|
960
|
-
type CheckDetail = z.infer<typeof checkDetailSchema>;
|
|
961
|
-
declare const checkResultSchema: z.ZodObject<{
|
|
962
|
-
checkId: z.ZodString;
|
|
963
|
-
status: z.ZodEnum<{
|
|
964
|
-
pending: "pending";
|
|
965
|
-
pass: "pass";
|
|
966
|
-
fail: "fail";
|
|
967
|
-
skip: "skip";
|
|
968
|
-
}>;
|
|
969
|
-
message: z.ZodString;
|
|
970
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
971
|
-
severity: z.ZodEnum<{
|
|
972
|
-
error: "error";
|
|
973
|
-
warning: "warning";
|
|
974
|
-
info: "info";
|
|
975
|
-
}>;
|
|
976
|
-
category: z.ZodEnum<{
|
|
977
|
-
connectivity: "connectivity";
|
|
978
|
-
"tool-metadata": "tool-metadata";
|
|
979
|
-
"resource-metadata": "resource-metadata";
|
|
980
|
-
performance: "performance";
|
|
981
|
-
e2e: "e2e";
|
|
982
|
-
}>;
|
|
983
|
-
scope: z.ZodEnum<{
|
|
984
|
-
server: "server";
|
|
985
|
-
view: "view";
|
|
986
|
-
}>;
|
|
987
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
988
|
-
chatgpt: "chatgpt";
|
|
989
|
-
claudeai: "claudeai";
|
|
990
|
-
}>>>>;
|
|
991
|
-
durationMs: z.ZodNumber;
|
|
992
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
993
|
-
label: z.ZodString;
|
|
994
|
-
value: z.ZodOptional<z.ZodString>;
|
|
995
|
-
}, z.core.$strip>>>;
|
|
996
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
997
|
-
text: z.ZodString;
|
|
998
|
-
}, z.core.$strip>>;
|
|
999
|
-
}, z.core.$strip>;
|
|
1000
|
-
type CheckResult = z.infer<typeof checkResultSchema>;
|
|
1001
|
-
declare const auditReportSchema: z.ZodObject<{
|
|
1002
|
-
schemaVersion: z.ZodString;
|
|
1003
|
-
auditId: z.ZodString;
|
|
1004
|
-
targetUrl: z.ZodString;
|
|
1005
|
-
startedAt: z.ZodString;
|
|
1006
|
-
completedAt: z.ZodString;
|
|
1007
|
-
durationMs: z.ZodNumber;
|
|
1008
|
-
results: z.ZodArray<z.ZodObject<{
|
|
1009
|
-
checkId: z.ZodString;
|
|
1010
|
-
status: z.ZodEnum<{
|
|
1011
|
-
pending: "pending";
|
|
1012
|
-
pass: "pass";
|
|
1013
|
-
fail: "fail";
|
|
1014
|
-
skip: "skip";
|
|
1015
|
-
}>;
|
|
1016
|
-
message: z.ZodString;
|
|
1017
|
-
skipReason: z.ZodOptional<z.ZodString>;
|
|
1018
|
-
severity: z.ZodEnum<{
|
|
1019
|
-
error: "error";
|
|
1020
|
-
warning: "warning";
|
|
1021
|
-
info: "info";
|
|
1022
|
-
}>;
|
|
1023
|
-
category: z.ZodEnum<{
|
|
1024
|
-
connectivity: "connectivity";
|
|
1025
|
-
"tool-metadata": "tool-metadata";
|
|
1026
|
-
"resource-metadata": "resource-metadata";
|
|
1027
|
-
performance: "performance";
|
|
1028
|
-
e2e: "e2e";
|
|
1029
|
-
}>;
|
|
1030
|
-
scope: z.ZodEnum<{
|
|
1031
|
-
server: "server";
|
|
1032
|
-
view: "view";
|
|
1033
|
-
}>;
|
|
1034
|
-
platforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1035
|
-
chatgpt: "chatgpt";
|
|
1036
|
-
claudeai: "claudeai";
|
|
1037
|
-
}>>>>;
|
|
1038
|
-
durationMs: z.ZodNumber;
|
|
1039
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1040
|
-
label: z.ZodString;
|
|
1041
|
-
value: z.ZodOptional<z.ZodString>;
|
|
1042
|
-
}, z.core.$strip>>>;
|
|
1043
|
-
hint: z.ZodOptional<z.ZodObject<{
|
|
1044
|
-
text: z.ZodString;
|
|
1045
|
-
}, z.core.$strip>>;
|
|
1046
|
-
}, z.core.$strip>>;
|
|
1047
|
-
requiresAuth: z.ZodBoolean;
|
|
1048
|
-
hasViewSupport: z.ZodBoolean;
|
|
1049
|
-
viewPlatforms: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodEnum<{
|
|
1050
|
-
chatgpt: "chatgpt";
|
|
1051
|
-
claudeai: "claudeai";
|
|
1052
|
-
}>>>>;
|
|
1053
|
-
isReadyForPlatform: z.ZodRecord<z.ZodEnum<{
|
|
1054
|
-
chatgpt: "chatgpt";
|
|
1055
|
-
claudeai: "claudeai";
|
|
1056
|
-
}>, z.ZodBoolean>;
|
|
1057
|
-
widgetScreenshotKeys: z.ZodOptional<z.ZodObject<{
|
|
1058
|
-
chatgpt: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
claudeai: z.ZodOptional<z.ZodString>;
|
|
1060
|
-
}, z.core.$strip>>;
|
|
1061
|
-
widgetScreenshots: z.ZodOptional<z.ZodObject<{
|
|
1062
|
-
chatgpt: z.ZodOptional<z.ZodObject<{
|
|
1063
|
-
url: z.ZodString;
|
|
1064
|
-
}, z.core.$strip>>;
|
|
1065
|
-
claudeai: z.ZodOptional<z.ZodObject<{
|
|
1066
|
-
url: z.ZodString;
|
|
1067
|
-
}, z.core.$strip>>;
|
|
1068
|
-
}, z.core.$strip>>;
|
|
1069
|
-
}, z.core.$strip>;
|
|
1070
|
-
type AuditReport = z.infer<typeof auditReportSchema>;
|
|
1071
973
|
declare const playgroundHeaderSchema: z.ZodObject<{
|
|
1072
974
|
name: z.ZodString;
|
|
1073
975
|
description: z.ZodString;
|
|
@@ -1102,4 +1004,4 @@ declare const serverFieldsSchema: z.ZodObject<{
|
|
|
1102
1004
|
}, z.core.$strip>>>;
|
|
1103
1005
|
}, z.core.$strip>;
|
|
1104
1006
|
//#endregion
|
|
1105
|
-
export { ApiContext,
|
|
1007
|
+
export { ApiContext, PLATFORM_LABELS, type Platform, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -1,65 +1,7 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
1
2
|
import { oc } from "@orpc/contract";
|
|
2
3
|
import ms from "ms";
|
|
3
|
-
|
|
4
|
-
//#region src/schemas.ts
|
|
5
|
-
const RESERVED_KEYS = [
|
|
6
|
-
"_HANDLER",
|
|
7
|
-
"_X_AMZN_TRACE_ID",
|
|
8
|
-
"AWS_DEFAULT_REGION",
|
|
9
|
-
"AWS_REGION",
|
|
10
|
-
"AWS_EXECUTION_ENV",
|
|
11
|
-
"AWS_LAMBDA_FUNCTION_NAME",
|
|
12
|
-
"AWS_LAMBDA_FUNCTION_MEMORY_SIZE",
|
|
13
|
-
"AWS_LAMBDA_FUNCTION_VERSION",
|
|
14
|
-
"AWS_LAMBDA_INITIALIZATION_TYPE",
|
|
15
|
-
"AWS_LAMBDA_LOG_GROUP_NAME",
|
|
16
|
-
"AWS_LAMBDA_LOG_STREAM_NAME",
|
|
17
|
-
"AWS_ACCESS_KEY",
|
|
18
|
-
"AWS_ACCESS_KEY_ID",
|
|
19
|
-
"AWS_SECRET_ACCESS_KEY",
|
|
20
|
-
"AWS_SESSION_TOKEN",
|
|
21
|
-
"AWS_LAMBDA_RUNTIME_API",
|
|
22
|
-
"LAMBDA_TASK_ROOT",
|
|
23
|
-
"LAMBDA_RUNTIME_DIR",
|
|
24
|
-
"START_COMMAND",
|
|
25
|
-
"ENVIRONMENT_ID",
|
|
26
|
-
"PROJECT_BUILD_IMAGES_REPOSITORY_URI",
|
|
27
|
-
"ENVIRONMENT_LAMBDA_FUNCTION_ARN",
|
|
28
|
-
"SOURCE_REPOSITORY",
|
|
29
|
-
"SOURCE_BRANCH",
|
|
30
|
-
"SOURCE_REPOSITORY_CREDENTIALS",
|
|
31
|
-
"RUNTIME",
|
|
32
|
-
"ROOT_DIRECTORY",
|
|
33
|
-
"BUILD_ARG_INSTALL_COMMAND",
|
|
34
|
-
"BUILD_ARG_BUILD_COMMAND",
|
|
35
|
-
"BUILD_ARG_BUILD_OUTPUT_DIR",
|
|
36
|
-
"BUILD_ARG_START_COMMAND",
|
|
37
|
-
"ALPIC_HOST",
|
|
38
|
-
"ALPIC_CUSTOM_DOMAINS"
|
|
39
|
-
];
|
|
40
|
-
const environmentVariableSchema = z.object({
|
|
41
|
-
key: z.string().min(2, "Key must be at least 2 characters").regex(/^[a-zA-Z]([a-zA-Z0-9_])+$/, "Key must start with a letter and contain only letters, numbers, and underscores").refine((key) => !RESERVED_KEYS.includes(key), "This key is reserved and cannot be used as an environment variable key"),
|
|
42
|
-
value: z.string().min(1, "Value is required"),
|
|
43
|
-
isSecret: z.boolean().default(false)
|
|
44
|
-
});
|
|
45
|
-
const environmentVariablesSchema = z.array(environmentVariableSchema);
|
|
46
|
-
const buildSettingsSchema = z.object({
|
|
47
|
-
installCommand: z.string().optional(),
|
|
48
|
-
buildCommand: z.string().optional(),
|
|
49
|
-
buildOutputDir: z.string().optional(),
|
|
50
|
-
startCommand: z.string().optional()
|
|
51
|
-
});
|
|
52
|
-
const runtimeSchema = z.enum([
|
|
53
|
-
"python3.13",
|
|
54
|
-
"python3.14",
|
|
55
|
-
"node22",
|
|
56
|
-
"node24"
|
|
57
|
-
]);
|
|
58
|
-
const transportSchema = z.enum([
|
|
59
|
-
"stdio",
|
|
60
|
-
"sse",
|
|
61
|
-
"streamablehttp"
|
|
62
|
-
]);
|
|
4
|
+
//#region ../domains/dist/index.mjs
|
|
63
5
|
const auditStatusSchema = z.enum([
|
|
64
6
|
"pending",
|
|
65
7
|
"partial",
|
|
@@ -67,6 +9,10 @@ const auditStatusSchema = z.enum([
|
|
|
67
9
|
"failed"
|
|
68
10
|
]);
|
|
69
11
|
const platformSchema = z.enum(["chatgpt", "claudeai"]);
|
|
12
|
+
const PLATFORM_LABELS = {
|
|
13
|
+
chatgpt: "ChatGPT",
|
|
14
|
+
claudeai: "Claude.ai"
|
|
15
|
+
};
|
|
70
16
|
const checkSeveritySchema = z.enum([
|
|
71
17
|
"error",
|
|
72
18
|
"warning",
|
|
@@ -86,6 +32,8 @@ const checkDetailSchema = z.object({
|
|
|
86
32
|
});
|
|
87
33
|
const checkResultSchema = z.object({
|
|
88
34
|
checkId: z.string(),
|
|
35
|
+
checkName: z.string(),
|
|
36
|
+
description: z.string(),
|
|
89
37
|
status: z.enum([
|
|
90
38
|
"pass",
|
|
91
39
|
"fail",
|
|
@@ -117,12 +65,78 @@ const auditReportSchema = z.object({
|
|
|
117
65
|
widgetScreenshotKeys: z.object({
|
|
118
66
|
chatgpt: z.string().optional(),
|
|
119
67
|
claudeai: z.string().optional()
|
|
120
|
-
})
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
68
|
+
})
|
|
69
|
+
});
|
|
70
|
+
const widgetScreenshotSchema = z.object({ url: z.string() });
|
|
71
|
+
const auditReportWithScreenshotsSchema = auditReportSchema.extend({ widgetScreenshots: z.object({
|
|
72
|
+
chatgpt: widgetScreenshotSchema.optional(),
|
|
73
|
+
claudeai: widgetScreenshotSchema.optional()
|
|
74
|
+
}) });
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/schemas.ts
|
|
77
|
+
const RESERVED_KEYS = [
|
|
78
|
+
"_HANDLER",
|
|
79
|
+
"_X_AMZN_TRACE_ID",
|
|
80
|
+
"AWS_DEFAULT_REGION",
|
|
81
|
+
"AWS_REGION",
|
|
82
|
+
"AWS_EXECUTION_ENV",
|
|
83
|
+
"AWS_LAMBDA_FUNCTION_NAME",
|
|
84
|
+
"AWS_LAMBDA_FUNCTION_MEMORY_SIZE",
|
|
85
|
+
"AWS_LAMBDA_FUNCTION_VERSION",
|
|
86
|
+
"AWS_LAMBDA_INITIALIZATION_TYPE",
|
|
87
|
+
"AWS_LAMBDA_LOG_GROUP_NAME",
|
|
88
|
+
"AWS_LAMBDA_LOG_STREAM_NAME",
|
|
89
|
+
"AWS_ACCESS_KEY",
|
|
90
|
+
"AWS_ACCESS_KEY_ID",
|
|
91
|
+
"AWS_SECRET_ACCESS_KEY",
|
|
92
|
+
"AWS_SESSION_TOKEN",
|
|
93
|
+
"AWS_LAMBDA_RUNTIME_API",
|
|
94
|
+
"LAMBDA_TASK_ROOT",
|
|
95
|
+
"LAMBDA_RUNTIME_DIR",
|
|
96
|
+
"START_COMMAND",
|
|
97
|
+
"ENVIRONMENT_ID",
|
|
98
|
+
"PROJECT_BUILD_IMAGES_REPOSITORY_URI",
|
|
99
|
+
"ENVIRONMENT_LAMBDA_FUNCTION_ARN",
|
|
100
|
+
"SOURCE_REPOSITORY",
|
|
101
|
+
"SOURCE_BRANCH",
|
|
102
|
+
"SOURCE_REPOSITORY_CREDENTIALS",
|
|
103
|
+
"RUNTIME",
|
|
104
|
+
"ROOT_DIRECTORY",
|
|
105
|
+
"BUILD_ARG_INSTALL_COMMAND",
|
|
106
|
+
"BUILD_ARG_BUILD_COMMAND",
|
|
107
|
+
"BUILD_ARG_BUILD_OUTPUT_DIR",
|
|
108
|
+
"BUILD_ARG_START_COMMAND",
|
|
109
|
+
"ALPIC_HOST",
|
|
110
|
+
"ALPIC_CUSTOM_DOMAINS",
|
|
111
|
+
"ALPIC_PROMPT_META_KEY"
|
|
112
|
+
];
|
|
113
|
+
const environmentVariableSchema = z.object({
|
|
114
|
+
key: z.string().min(2, "Key must be at least 2 characters").regex(/^[a-zA-Z]([a-zA-Z0-9_])+$/, "Key must start with a letter and contain only letters, numbers, and underscores").refine((key) => !RESERVED_KEYS.includes(key), "This key is reserved and cannot be used as an environment variable key"),
|
|
115
|
+
value: z.string().min(1, "Value is required"),
|
|
116
|
+
isSecret: z.boolean().default(false)
|
|
117
|
+
});
|
|
118
|
+
const environmentVariablesSchema = z.array(environmentVariableSchema);
|
|
119
|
+
const updateEnvironmentVariableSchema = environmentVariableSchema.partial({
|
|
120
|
+
value: true,
|
|
121
|
+
isSecret: true
|
|
125
122
|
});
|
|
123
|
+
const buildSettingsSchema = z.object({
|
|
124
|
+
installCommand: z.string().optional(),
|
|
125
|
+
buildCommand: z.string().optional(),
|
|
126
|
+
buildOutputDir: z.string().optional(),
|
|
127
|
+
startCommand: z.string().optional()
|
|
128
|
+
});
|
|
129
|
+
const runtimeSchema = z.enum([
|
|
130
|
+
"python3.13",
|
|
131
|
+
"python3.14",
|
|
132
|
+
"node22",
|
|
133
|
+
"node24"
|
|
134
|
+
]);
|
|
135
|
+
const transportSchema = z.enum([
|
|
136
|
+
"stdio",
|
|
137
|
+
"sse",
|
|
138
|
+
"streamablehttp"
|
|
139
|
+
]);
|
|
126
140
|
const playgroundHeaderSchema = z.object({
|
|
127
141
|
name: z.string().min(1).max(100),
|
|
128
142
|
description: z.string().max(200),
|
|
@@ -371,7 +385,7 @@ const updateEnvironmentVariableContractV1 = oc.route({
|
|
|
371
385
|
environmentVariableId: z.string().describe("The ID of the environment variable"),
|
|
372
386
|
key: environmentVariableSchema.shape.key,
|
|
373
387
|
value: environmentVariableSchema.shape.value.optional(),
|
|
374
|
-
isSecret: environmentVariableSchema.shape.isSecret
|
|
388
|
+
isSecret: environmentVariableSchema.shape.isSecret.optional()
|
|
375
389
|
})).output(z.object({ success: z.literal(true) }));
|
|
376
390
|
const deleteEnvironmentVariableContractV1 = oc.route({
|
|
377
391
|
path: "/v1/environment-variables/{environmentVariableId}",
|
|
@@ -491,6 +505,41 @@ const getLogsContractV1 = oc.route({
|
|
|
491
505
|
})),
|
|
492
506
|
nextToken: z.string().nullable()
|
|
493
507
|
}));
|
|
508
|
+
const getLatestLogsContractV1 = oc.route({
|
|
509
|
+
path: "/v1/environments/{environmentId}/latest-logs",
|
|
510
|
+
method: "GET",
|
|
511
|
+
summary: "Get latest logs",
|
|
512
|
+
description: "Get the N most recent logs for an environment",
|
|
513
|
+
tags: ["environments"],
|
|
514
|
+
successDescription: "The latest logs"
|
|
515
|
+
}).errors({
|
|
516
|
+
NOT_FOUND: {},
|
|
517
|
+
BAD_REQUEST: {}
|
|
518
|
+
}).input(z.object({
|
|
519
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
520
|
+
limit: z.coerce.number().int().min(1).max(1e3).default(100).describe("Number of most recent log entries to return"),
|
|
521
|
+
level: z.array(z.enum([
|
|
522
|
+
"INFO",
|
|
523
|
+
"ERROR",
|
|
524
|
+
"WARNING",
|
|
525
|
+
"DEBUG"
|
|
526
|
+
])).optional().describe("Filter by log level"),
|
|
527
|
+
search: z.string().optional().describe("Filter pattern to search for in log content")
|
|
528
|
+
})).output(z.object({ logs: z.array(z.object({
|
|
529
|
+
timestamp: z.coerce.date(),
|
|
530
|
+
type: z.enum([
|
|
531
|
+
"START",
|
|
532
|
+
"END",
|
|
533
|
+
"INFO",
|
|
534
|
+
"ERROR",
|
|
535
|
+
"WARNING",
|
|
536
|
+
"DEBUG"
|
|
537
|
+
]),
|
|
538
|
+
requestId: z.string(),
|
|
539
|
+
content: z.string().optional(),
|
|
540
|
+
method: z.string().optional(),
|
|
541
|
+
durationInMs: z.number().optional()
|
|
542
|
+
})) }));
|
|
494
543
|
const getDeploymentLogsContractV1 = oc.route({
|
|
495
544
|
path: "/v1/deployments/{deploymentId}/logs",
|
|
496
545
|
method: "GET",
|
|
@@ -652,7 +701,7 @@ const createBeaconContractV1 = oc.route({
|
|
|
652
701
|
NOT_FOUND: {},
|
|
653
702
|
BAD_REQUEST: {}
|
|
654
703
|
}).input(z.object({
|
|
655
|
-
targetUrl: z.
|
|
704
|
+
targetUrl: z.url().describe("The HTTPS URL of the MCP server to audit"),
|
|
656
705
|
teamId: z.string().optional().describe("The team ID to associate the audit with"),
|
|
657
706
|
projectId: z.string().optional().describe("The project ID to associate the audit with"),
|
|
658
707
|
excludeCategories: z.array(checkCategorySchema).optional().describe("Check categories to exclude from the audit")
|
|
@@ -670,7 +719,7 @@ const getBeaconContractV1 = oc.route({
|
|
|
670
719
|
status: auditStatusSchema,
|
|
671
720
|
durationMs: z.number().nullable(),
|
|
672
721
|
createdAt: z.coerce.date(),
|
|
673
|
-
report:
|
|
722
|
+
report: auditReportWithScreenshotsSchema.nullable()
|
|
674
723
|
}));
|
|
675
724
|
const contract = {
|
|
676
725
|
teams: { list: { v1: listTeamsContractV1 } },
|
|
@@ -685,7 +734,8 @@ const contract = {
|
|
|
685
734
|
create: { v1: createEnvironmentContractV1 },
|
|
686
735
|
get: { v1: getEnvironmentContractV1 },
|
|
687
736
|
deploy: { v1: deployEnvironmentContractV1 },
|
|
688
|
-
getLogs: { v1: getLogsContractV1 }
|
|
737
|
+
getLogs: { v1: getLogsContractV1 },
|
|
738
|
+
getLatestLogs: { v1: getLatestLogsContractV1 }
|
|
689
739
|
},
|
|
690
740
|
environmentVariables: {
|
|
691
741
|
list: { v1: listEnvironmentVariablesContractV1 },
|
|
@@ -715,4 +765,4 @@ const contract = {
|
|
|
715
765
|
}
|
|
716
766
|
};
|
|
717
767
|
//#endregion
|
|
718
|
-
export {
|
|
768
|
+
export { PLATFORM_LABELS, buildSettingsSchema, contract, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "0.0.0-staging.
|
|
3
|
+
"version": "0.0.0-staging.ed5f7ec",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -14,20 +14,32 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
+
"nx": {
|
|
18
|
+
"targets": {
|
|
19
|
+
"build": {
|
|
20
|
+
"dependsOn": [
|
|
21
|
+
"^build"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
17
26
|
"author": "Alpic",
|
|
18
27
|
"license": "ISC",
|
|
19
28
|
"dependencies": {
|
|
20
|
-
"@orpc/contract": "^1.
|
|
29
|
+
"@orpc/contract": "^1.14.0",
|
|
21
30
|
"ms": "^2.1.3",
|
|
22
31
|
"zod": "^4.3.6"
|
|
23
32
|
},
|
|
24
33
|
"devDependencies": {
|
|
34
|
+
"@orpc/openapi": "^1.14.0",
|
|
35
|
+
"@orpc/zod": "^1.14.0",
|
|
25
36
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
26
37
|
"@types/ms": "^2.1.0",
|
|
27
38
|
"shx": "^0.4.0",
|
|
28
|
-
"tsdown": "^0.21.
|
|
29
|
-
"typescript": "^6.0.
|
|
30
|
-
"vitest": "^4.1.
|
|
39
|
+
"tsdown": "^0.21.10",
|
|
40
|
+
"typescript": "^6.0.3",
|
|
41
|
+
"vitest": "^4.1.5",
|
|
42
|
+
"@alpic-ai/domains": "0.0.0"
|
|
31
43
|
},
|
|
32
44
|
"scripts": {
|
|
33
45
|
"build": "shx rm -rf dist && tsdown",
|