veryfront 0.1.90 → 0.1.92
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/esm/deno.js +1 -1
- package/esm/src/config/environment-config.js +1 -1
- package/esm/src/jobs/schemas.d.ts +44 -44
- package/esm/src/jobs/schemas.js +3 -3
- package/esm/src/observability/metrics/manager.js +2 -2
- package/esm/src/observability/tracing/otlp-setup.js +2 -2
- package/esm/src/platform/adapters/fs/veryfront/adapter.d.ts +1 -0
- package/esm/src/platform/adapters/fs/veryfront/adapter.d.ts.map +1 -1
- package/esm/src/platform/adapters/fs/veryfront/adapter.js +11 -5
- package/esm/src/platform/adapters/veryfront-api-client/client.d.ts +3 -1
- package/esm/src/platform/adapters/veryfront-api-client/client.d.ts.map +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/client.js +6 -0
- package/esm/src/platform/adapters/veryfront-api-client/index.d.ts +2 -2
- package/esm/src/platform/adapters/veryfront-api-client/index.d.ts.map +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/index.js +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/operations.d.ts +24 -0
- package/esm/src/platform/adapters/veryfront-api-client/operations.d.ts.map +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/operations.js +65 -3
- package/esm/src/platform/adapters/veryfront-api-client/schemas/api.schema.d.ts +28 -0
- package/esm/src/platform/adapters/veryfront-api-client/schemas/api.schema.d.ts.map +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/schemas/api.schema.js +13 -0
- package/esm/src/platform/adapters/veryfront-api-client/schemas/index.d.ts +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/schemas/index.d.ts.map +1 -1
- package/esm/src/platform/adapters/veryfront-api-client/schemas/index.js +1 -1
- package/esm/src/proxy/logger.d.ts.map +1 -1
- package/esm/src/proxy/logger.js +2 -6
- package/esm/src/proxy/tracing.d.ts.map +1 -1
- package/esm/src/proxy/tracing.js +2 -5
- package/esm/src/proxy/version.d.ts +2 -0
- package/esm/src/proxy/version.d.ts.map +1 -0
- package/esm/src/proxy/version.js +18 -0
- package/esm/src/sandbox/index.d.ts +1 -1
- package/esm/src/sandbox/index.d.ts.map +1 -1
- package/esm/src/sandbox/index.js +1 -1
- package/esm/src/sandbox/sandbox.d.ts +58 -0
- package/esm/src/sandbox/sandbox.d.ts.map +1 -1
- package/esm/src/sandbox/sandbox.js +111 -0
- package/esm/src/server/handlers/dev/styles-css.handler.d.ts +5 -0
- package/esm/src/server/handlers/dev/styles-css.handler.d.ts.map +1 -1
- package/esm/src/server/handlers/dev/styles-css.handler.js +121 -1
- package/esm/src/server/handlers/monitoring/health.handler.js +2 -2
- package/esm/src/utils/logger/logger.js +2 -2
- package/esm/src/utils/version.d.ts +9 -1
- package/esm/src/utils/version.d.ts.map +1 -1
- package/esm/src/utils/version.js +29 -2
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/config/environment-config.ts +1 -1
- package/src/src/jobs/schemas.ts +3 -3
- package/src/src/observability/metrics/manager.ts +2 -2
- package/src/src/observability/tracing/otlp-setup.ts +2 -2
- package/src/src/platform/adapters/fs/veryfront/adapter.ts +12 -5
- package/src/src/platform/adapters/veryfront-api-client/client.ts +17 -0
- package/src/src/platform/adapters/veryfront-api-client/index.ts +6 -0
- package/src/src/platform/adapters/veryfront-api-client/operations.ts +110 -3
- package/src/src/platform/adapters/veryfront-api-client/schemas/api.schema.ts +16 -0
- package/src/src/platform/adapters/veryfront-api-client/schemas/index.ts +2 -0
- package/src/src/proxy/logger.ts +2 -8
- package/src/src/proxy/tracing.ts +2 -6
- package/src/src/proxy/version.ts +21 -0
- package/src/src/sandbox/index.ts +13 -1
- package/src/src/sandbox/sandbox.ts +183 -0
- package/src/src/server/handlers/dev/styles-css.handler.ts +179 -1
- package/src/src/server/handlers/monitoring/health.handler.ts +2 -2
- package/src/src/utils/logger/logger.ts +2 -2
- package/src/src/utils/version.ts +37 -2
package/esm/deno.js
CHANGED
|
@@ -91,7 +91,7 @@ function readEnvSnapshot() {
|
|
|
91
91
|
v8MaxOldSpaceSize: v8MaxOldSpaceSizeRaw
|
|
92
92
|
? parseNumber(v8MaxOldSpaceSizeRaw, 0) || undefined
|
|
93
93
|
: undefined,
|
|
94
|
-
veryfrontVersion: getEnv("VERYFRONT_VERSION") || undefined,
|
|
94
|
+
veryfrontVersion: getEnv("VERYFRONT_VERSION") || getEnv("RELEASE_VERSION") || undefined,
|
|
95
95
|
};
|
|
96
96
|
}
|
|
97
97
|
export function initEnvironmentConfig() {
|
|
@@ -510,7 +510,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
510
510
|
id: z.ZodString;
|
|
511
511
|
project_id: z.ZodString;
|
|
512
512
|
environment_id: z.ZodNullable<z.ZodString>;
|
|
513
|
-
branch_id: z.
|
|
513
|
+
branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
514
514
|
cron_job_id: z.ZodNullable<z.ZodString>;
|
|
515
515
|
batch_id: z.ZodNullable<z.ZodString>;
|
|
516
516
|
name: z.ZodString;
|
|
@@ -527,7 +527,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
527
527
|
created_at: z.ZodString;
|
|
528
528
|
updated_at: z.ZodString;
|
|
529
529
|
} & {
|
|
530
|
-
failed_reason: z.
|
|
530
|
+
failed_reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
531
531
|
kind: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<["knowledge_ingest"]>>>>;
|
|
532
532
|
failure_detail: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
533
533
|
result_summary: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
@@ -756,11 +756,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
756
756
|
artifacts: unknown[];
|
|
757
757
|
}>]>>>>;
|
|
758
758
|
}, "strip", z.ZodTypeAny, {
|
|
759
|
-
status: "failed" | "completed" | "
|
|
759
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
760
760
|
config: Record<string, unknown>;
|
|
761
761
|
name: string;
|
|
762
762
|
project_id: string;
|
|
763
|
-
branch_id: string | null;
|
|
764
763
|
batch_id: string | null;
|
|
765
764
|
kind: "knowledge_ingest" | null;
|
|
766
765
|
id: string;
|
|
@@ -812,15 +811,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
812
811
|
kind: "artifacts";
|
|
813
812
|
artifacts: unknown[];
|
|
814
813
|
} | null;
|
|
814
|
+
exit_code: number | null;
|
|
815
|
+
started_at: string | null;
|
|
815
816
|
cron_job_id: string | null;
|
|
816
817
|
context_id: string | null;
|
|
817
818
|
timeout_seconds: number;
|
|
818
819
|
backoff_limit: number;
|
|
819
|
-
exit_code: number | null;
|
|
820
|
-
started_at: string | null;
|
|
821
820
|
completed_at: string | null;
|
|
822
821
|
created_by: string | null;
|
|
823
|
-
failed_reason: string | null;
|
|
824
822
|
failure_detail: string | null;
|
|
825
823
|
result_summary: {
|
|
826
824
|
kind: "knowledge_ingest";
|
|
@@ -835,8 +833,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
835
833
|
kind: "artifacts";
|
|
836
834
|
artifact_count: number;
|
|
837
835
|
} | null;
|
|
836
|
+
branch_id?: string | null | undefined;
|
|
837
|
+
failed_reason?: string | null | undefined;
|
|
838
838
|
}, {
|
|
839
|
-
status: "failed" | "completed" | "
|
|
839
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
840
840
|
config: Record<string, unknown>;
|
|
841
841
|
name: string;
|
|
842
842
|
project_id: string;
|
|
@@ -846,12 +846,12 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
846
846
|
created_at: string;
|
|
847
847
|
environment_id: string | null;
|
|
848
848
|
target: string;
|
|
849
|
+
exit_code: number | null;
|
|
850
|
+
started_at: string | null;
|
|
849
851
|
cron_job_id: string | null;
|
|
850
852
|
context_id: string | null;
|
|
851
853
|
timeout_seconds: number;
|
|
852
854
|
backoff_limit: number;
|
|
853
|
-
exit_code: number | null;
|
|
854
|
-
started_at: string | null;
|
|
855
855
|
completed_at: string | null;
|
|
856
856
|
created_by: string | null;
|
|
857
857
|
branch_id?: string | null | undefined;
|
|
@@ -920,7 +920,7 @@ export declare const JobListItemSchema: z.ZodObject<{
|
|
|
920
920
|
id: z.ZodString;
|
|
921
921
|
project_id: z.ZodString;
|
|
922
922
|
environment_id: z.ZodNullable<z.ZodString>;
|
|
923
|
-
branch_id: z.
|
|
923
|
+
branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
924
924
|
cron_job_id: z.ZodNullable<z.ZodString>;
|
|
925
925
|
batch_id: z.ZodNullable<z.ZodString>;
|
|
926
926
|
name: z.ZodString;
|
|
@@ -977,11 +977,10 @@ export declare const JobListItemSchema: z.ZodObject<{
|
|
|
977
977
|
artifact_count: number;
|
|
978
978
|
}>]>>>>;
|
|
979
979
|
}, "strip", z.ZodTypeAny, {
|
|
980
|
-
status: "failed" | "completed" | "
|
|
980
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
981
981
|
config: Record<string, unknown>;
|
|
982
982
|
name: string;
|
|
983
983
|
project_id: string;
|
|
984
|
-
branch_id: string | null;
|
|
985
984
|
batch_id: string | null;
|
|
986
985
|
kind: "knowledge_ingest" | null;
|
|
987
986
|
id: string;
|
|
@@ -989,12 +988,12 @@ export declare const JobListItemSchema: z.ZodObject<{
|
|
|
989
988
|
created_at: string;
|
|
990
989
|
environment_id: string | null;
|
|
991
990
|
target: string;
|
|
991
|
+
exit_code: number | null;
|
|
992
|
+
started_at: string | null;
|
|
992
993
|
cron_job_id: string | null;
|
|
993
994
|
context_id: string | null;
|
|
994
995
|
timeout_seconds: number;
|
|
995
996
|
backoff_limit: number;
|
|
996
|
-
exit_code: number | null;
|
|
997
|
-
started_at: string | null;
|
|
998
997
|
completed_at: string | null;
|
|
999
998
|
created_by: string | null;
|
|
1000
999
|
failure_detail: string | null;
|
|
@@ -1011,8 +1010,9 @@ export declare const JobListItemSchema: z.ZodObject<{
|
|
|
1011
1010
|
kind: "artifacts";
|
|
1012
1011
|
artifact_count: number;
|
|
1013
1012
|
} | null;
|
|
1013
|
+
branch_id?: string | null | undefined;
|
|
1014
1014
|
}, {
|
|
1015
|
-
status: "failed" | "completed" | "
|
|
1015
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
1016
1016
|
config: Record<string, unknown>;
|
|
1017
1017
|
name: string;
|
|
1018
1018
|
project_id: string;
|
|
@@ -1022,12 +1022,12 @@ export declare const JobListItemSchema: z.ZodObject<{
|
|
|
1022
1022
|
created_at: string;
|
|
1023
1023
|
environment_id: string | null;
|
|
1024
1024
|
target: string;
|
|
1025
|
+
exit_code: number | null;
|
|
1026
|
+
started_at: string | null;
|
|
1025
1027
|
cron_job_id: string | null;
|
|
1026
1028
|
context_id: string | null;
|
|
1027
1029
|
timeout_seconds: number;
|
|
1028
1030
|
backoff_limit: number;
|
|
1029
|
-
exit_code: number | null;
|
|
1030
|
-
started_at: string | null;
|
|
1031
1031
|
completed_at: string | null;
|
|
1032
1032
|
created_by: string | null;
|
|
1033
1033
|
branch_id?: string | null | undefined;
|
|
@@ -1052,7 +1052,7 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1052
1052
|
id: z.ZodString;
|
|
1053
1053
|
project_id: z.ZodString;
|
|
1054
1054
|
environment_id: z.ZodNullable<z.ZodString>;
|
|
1055
|
-
branch_id: z.
|
|
1055
|
+
branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1056
1056
|
cron_job_id: z.ZodNullable<z.ZodString>;
|
|
1057
1057
|
batch_id: z.ZodNullable<z.ZodString>;
|
|
1058
1058
|
name: z.ZodString;
|
|
@@ -1109,11 +1109,10 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1109
1109
|
artifact_count: number;
|
|
1110
1110
|
}>]>>>>;
|
|
1111
1111
|
}, "strip", z.ZodTypeAny, {
|
|
1112
|
-
status: "failed" | "completed" | "
|
|
1112
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
1113
1113
|
config: Record<string, unknown>;
|
|
1114
1114
|
name: string;
|
|
1115
1115
|
project_id: string;
|
|
1116
|
-
branch_id: string | null;
|
|
1117
1116
|
batch_id: string | null;
|
|
1118
1117
|
kind: "knowledge_ingest" | null;
|
|
1119
1118
|
id: string;
|
|
@@ -1121,12 +1120,12 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1121
1120
|
created_at: string;
|
|
1122
1121
|
environment_id: string | null;
|
|
1123
1122
|
target: string;
|
|
1123
|
+
exit_code: number | null;
|
|
1124
|
+
started_at: string | null;
|
|
1124
1125
|
cron_job_id: string | null;
|
|
1125
1126
|
context_id: string | null;
|
|
1126
1127
|
timeout_seconds: number;
|
|
1127
1128
|
backoff_limit: number;
|
|
1128
|
-
exit_code: number | null;
|
|
1129
|
-
started_at: string | null;
|
|
1130
1129
|
completed_at: string | null;
|
|
1131
1130
|
created_by: string | null;
|
|
1132
1131
|
failure_detail: string | null;
|
|
@@ -1143,8 +1142,9 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1143
1142
|
kind: "artifacts";
|
|
1144
1143
|
artifact_count: number;
|
|
1145
1144
|
} | null;
|
|
1145
|
+
branch_id?: string | null | undefined;
|
|
1146
1146
|
}, {
|
|
1147
|
-
status: "failed" | "completed" | "
|
|
1147
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
1148
1148
|
config: Record<string, unknown>;
|
|
1149
1149
|
name: string;
|
|
1150
1150
|
project_id: string;
|
|
@@ -1154,12 +1154,12 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1154
1154
|
created_at: string;
|
|
1155
1155
|
environment_id: string | null;
|
|
1156
1156
|
target: string;
|
|
1157
|
+
exit_code: number | null;
|
|
1158
|
+
started_at: string | null;
|
|
1157
1159
|
cron_job_id: string | null;
|
|
1158
1160
|
context_id: string | null;
|
|
1159
1161
|
timeout_seconds: number;
|
|
1160
1162
|
backoff_limit: number;
|
|
1161
|
-
exit_code: number | null;
|
|
1162
|
-
started_at: string | null;
|
|
1163
1163
|
completed_at: string | null;
|
|
1164
1164
|
created_by: string | null;
|
|
1165
1165
|
branch_id?: string | null | undefined;
|
|
@@ -1197,11 +1197,10 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1197
1197
|
}>;
|
|
1198
1198
|
}, "strip", z.ZodTypeAny, {
|
|
1199
1199
|
data: {
|
|
1200
|
-
status: "failed" | "completed" | "
|
|
1200
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
1201
1201
|
config: Record<string, unknown>;
|
|
1202
1202
|
name: string;
|
|
1203
1203
|
project_id: string;
|
|
1204
|
-
branch_id: string | null;
|
|
1205
1204
|
batch_id: string | null;
|
|
1206
1205
|
kind: "knowledge_ingest" | null;
|
|
1207
1206
|
id: string;
|
|
@@ -1209,12 +1208,12 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1209
1208
|
created_at: string;
|
|
1210
1209
|
environment_id: string | null;
|
|
1211
1210
|
target: string;
|
|
1211
|
+
exit_code: number | null;
|
|
1212
|
+
started_at: string | null;
|
|
1212
1213
|
cron_job_id: string | null;
|
|
1213
1214
|
context_id: string | null;
|
|
1214
1215
|
timeout_seconds: number;
|
|
1215
1216
|
backoff_limit: number;
|
|
1216
|
-
exit_code: number | null;
|
|
1217
|
-
started_at: string | null;
|
|
1218
1217
|
completed_at: string | null;
|
|
1219
1218
|
created_by: string | null;
|
|
1220
1219
|
failure_detail: string | null;
|
|
@@ -1231,6 +1230,7 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1231
1230
|
kind: "artifacts";
|
|
1232
1231
|
artifact_count: number;
|
|
1233
1232
|
} | null;
|
|
1233
|
+
branch_id?: string | null | undefined;
|
|
1234
1234
|
}[];
|
|
1235
1235
|
page_info: {
|
|
1236
1236
|
self: string | null;
|
|
@@ -1240,7 +1240,7 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1240
1240
|
};
|
|
1241
1241
|
}, {
|
|
1242
1242
|
data: {
|
|
1243
|
-
status: "failed" | "completed" | "
|
|
1243
|
+
status: "failed" | "completed" | "canceled" | "submitted" | "working";
|
|
1244
1244
|
config: Record<string, unknown>;
|
|
1245
1245
|
name: string;
|
|
1246
1246
|
project_id: string;
|
|
@@ -1250,12 +1250,12 @@ export declare const PaginatedJobsResponseSchema: z.ZodObject<{
|
|
|
1250
1250
|
created_at: string;
|
|
1251
1251
|
environment_id: string | null;
|
|
1252
1252
|
target: string;
|
|
1253
|
+
exit_code: number | null;
|
|
1254
|
+
started_at: string | null;
|
|
1253
1255
|
cron_job_id: string | null;
|
|
1254
1256
|
context_id: string | null;
|
|
1255
1257
|
timeout_seconds: number;
|
|
1256
1258
|
backoff_limit: number;
|
|
1257
|
-
exit_code: number | null;
|
|
1258
|
-
started_at: string | null;
|
|
1259
1259
|
completed_at: string | null;
|
|
1260
1260
|
created_by: string | null;
|
|
1261
1261
|
branch_id?: string | null | undefined;
|
|
@@ -1438,15 +1438,15 @@ export declare const JobBatchStatusCountsSchema: z.ZodObject<{
|
|
|
1438
1438
|
}, "strip", z.ZodTypeAny, {
|
|
1439
1439
|
failed: number;
|
|
1440
1440
|
completed: number;
|
|
1441
|
+
canceled: number;
|
|
1441
1442
|
submitted: number;
|
|
1442
1443
|
working: number;
|
|
1443
|
-
canceled: number;
|
|
1444
1444
|
}, {
|
|
1445
1445
|
failed: number;
|
|
1446
1446
|
completed: number;
|
|
1447
|
+
canceled: number;
|
|
1447
1448
|
submitted: number;
|
|
1448
1449
|
working: number;
|
|
1449
|
-
canceled: number;
|
|
1450
1450
|
}>;
|
|
1451
1451
|
export declare const JobBatchResultSchema: z.ZodNullable<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
1452
1452
|
kind: z.ZodLiteral<"knowledge_ingest">;
|
|
@@ -1661,15 +1661,15 @@ export declare const JobBatchSchema: z.ZodObject<{
|
|
|
1661
1661
|
}, "strip", z.ZodTypeAny, {
|
|
1662
1662
|
failed: number;
|
|
1663
1663
|
completed: number;
|
|
1664
|
+
canceled: number;
|
|
1664
1665
|
submitted: number;
|
|
1665
1666
|
working: number;
|
|
1666
|
-
canceled: number;
|
|
1667
1667
|
}, {
|
|
1668
1668
|
failed: number;
|
|
1669
1669
|
completed: number;
|
|
1670
|
+
canceled: number;
|
|
1670
1671
|
submitted: number;
|
|
1671
1672
|
working: number;
|
|
1672
|
-
canceled: number;
|
|
1673
1673
|
}>;
|
|
1674
1674
|
created_at: z.ZodString;
|
|
1675
1675
|
updated_at: z.ZodString;
|
|
@@ -1927,9 +1927,9 @@ export declare const JobBatchSchema: z.ZodObject<{
|
|
|
1927
1927
|
status_counts: {
|
|
1928
1928
|
failed: number;
|
|
1929
1929
|
completed: number;
|
|
1930
|
+
canceled: number;
|
|
1930
1931
|
submitted: number;
|
|
1931
1932
|
working: number;
|
|
1932
|
-
canceled: number;
|
|
1933
1933
|
};
|
|
1934
1934
|
}, {
|
|
1935
1935
|
project_id: string;
|
|
@@ -1986,9 +1986,9 @@ export declare const JobBatchSchema: z.ZodObject<{
|
|
|
1986
1986
|
status_counts: {
|
|
1987
1987
|
failed: number;
|
|
1988
1988
|
completed: number;
|
|
1989
|
+
canceled: number;
|
|
1989
1990
|
submitted: number;
|
|
1990
1991
|
working: number;
|
|
1991
|
-
canceled: number;
|
|
1992
1992
|
};
|
|
1993
1993
|
}>;
|
|
1994
1994
|
export declare const JobTargetDefinitionSchema: z.ZodObject<{
|
|
@@ -2054,7 +2054,7 @@ export declare const CronJobSchema: z.ZodObject<{
|
|
|
2054
2054
|
id: z.ZodString;
|
|
2055
2055
|
project_id: z.ZodString;
|
|
2056
2056
|
environment_id: z.ZodNullable<z.ZodString>;
|
|
2057
|
-
branch_id: z.
|
|
2057
|
+
branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2058
2058
|
name: z.ZodString;
|
|
2059
2059
|
status: z.ZodEnum<["active", "paused", "deleting"]>;
|
|
2060
2060
|
target: z.ZodString;
|
|
@@ -2074,7 +2074,6 @@ export declare const CronJobSchema: z.ZodObject<{
|
|
|
2074
2074
|
config: Record<string, unknown>;
|
|
2075
2075
|
name: string;
|
|
2076
2076
|
project_id: string;
|
|
2077
|
-
branch_id: string | null;
|
|
2078
2077
|
id: string;
|
|
2079
2078
|
updated_at: string;
|
|
2080
2079
|
created_at: string;
|
|
@@ -2088,6 +2087,7 @@ export declare const CronJobSchema: z.ZodObject<{
|
|
|
2088
2087
|
concurrency_policy: string;
|
|
2089
2088
|
last_scheduled_at: string | null;
|
|
2090
2089
|
last_successful_at: string | null;
|
|
2090
|
+
branch_id?: string | null | undefined;
|
|
2091
2091
|
}, {
|
|
2092
2092
|
status: "deleting" | "active" | "paused";
|
|
2093
2093
|
config: Record<string, unknown>;
|
|
@@ -2113,7 +2113,7 @@ export declare const PaginatedCronJobsResponseSchema: z.ZodObject<{
|
|
|
2113
2113
|
id: z.ZodString;
|
|
2114
2114
|
project_id: z.ZodString;
|
|
2115
2115
|
environment_id: z.ZodNullable<z.ZodString>;
|
|
2116
|
-
branch_id: z.
|
|
2116
|
+
branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2117
2117
|
name: z.ZodString;
|
|
2118
2118
|
status: z.ZodEnum<["active", "paused", "deleting"]>;
|
|
2119
2119
|
target: z.ZodString;
|
|
@@ -2133,7 +2133,6 @@ export declare const PaginatedCronJobsResponseSchema: z.ZodObject<{
|
|
|
2133
2133
|
config: Record<string, unknown>;
|
|
2134
2134
|
name: string;
|
|
2135
2135
|
project_id: string;
|
|
2136
|
-
branch_id: string | null;
|
|
2137
2136
|
id: string;
|
|
2138
2137
|
updated_at: string;
|
|
2139
2138
|
created_at: string;
|
|
@@ -2147,6 +2146,7 @@ export declare const PaginatedCronJobsResponseSchema: z.ZodObject<{
|
|
|
2147
2146
|
concurrency_policy: string;
|
|
2148
2147
|
last_scheduled_at: string | null;
|
|
2149
2148
|
last_successful_at: string | null;
|
|
2149
|
+
branch_id?: string | null | undefined;
|
|
2150
2150
|
}, {
|
|
2151
2151
|
status: "deleting" | "active" | "paused";
|
|
2152
2152
|
config: Record<string, unknown>;
|
|
@@ -2189,7 +2189,6 @@ export declare const PaginatedCronJobsResponseSchema: z.ZodObject<{
|
|
|
2189
2189
|
config: Record<string, unknown>;
|
|
2190
2190
|
name: string;
|
|
2191
2191
|
project_id: string;
|
|
2192
|
-
branch_id: string | null;
|
|
2193
2192
|
id: string;
|
|
2194
2193
|
updated_at: string;
|
|
2195
2194
|
created_at: string;
|
|
@@ -2203,6 +2202,7 @@ export declare const PaginatedCronJobsResponseSchema: z.ZodObject<{
|
|
|
2203
2202
|
concurrency_policy: string;
|
|
2204
2203
|
last_scheduled_at: string | null;
|
|
2205
2204
|
last_successful_at: string | null;
|
|
2205
|
+
branch_id?: string | null | undefined;
|
|
2206
2206
|
}[];
|
|
2207
2207
|
page_info: {
|
|
2208
2208
|
self: string | null;
|
package/esm/src/jobs/schemas.js
CHANGED
|
@@ -101,7 +101,7 @@ const BaseJobSchema = z.object({
|
|
|
101
101
|
id: z.string().uuid(),
|
|
102
102
|
project_id: z.string().uuid(),
|
|
103
103
|
environment_id: z.string().uuid().nullable(),
|
|
104
|
-
branch_id: z.string().nullable().optional()
|
|
104
|
+
branch_id: z.string().nullable().optional(),
|
|
105
105
|
cron_job_id: z.string().uuid().nullable(),
|
|
106
106
|
batch_id: z.string().uuid().nullable(),
|
|
107
107
|
name: z.string(),
|
|
@@ -119,7 +119,7 @@ const BaseJobSchema = z.object({
|
|
|
119
119
|
updated_at: z.string(),
|
|
120
120
|
});
|
|
121
121
|
export const JobSchema = BaseJobSchema.extend({
|
|
122
|
-
failed_reason: z.string().nullable().optional()
|
|
122
|
+
failed_reason: z.string().nullable().optional(),
|
|
123
123
|
kind: JobKindSchema.optional().default(null),
|
|
124
124
|
failure_detail: z.string().nullable().optional().default(null),
|
|
125
125
|
result_summary: JobResultSummarySchema.optional().default(null),
|
|
@@ -214,7 +214,7 @@ export const CronJobSchema = z.object({
|
|
|
214
214
|
id: z.string().uuid(),
|
|
215
215
|
project_id: z.string().uuid(),
|
|
216
216
|
environment_id: z.string().uuid().nullable(),
|
|
217
|
-
branch_id: z.string().nullable().optional()
|
|
217
|
+
branch_id: z.string().nullable().optional(),
|
|
218
218
|
name: z.string(),
|
|
219
219
|
status: CronJobStatusSchema,
|
|
220
220
|
target: z.string(),
|
|
@@ -6,7 +6,7 @@ import { serverLogger } from "../../utils/index.js";
|
|
|
6
6
|
import { loadConfig } from "./config.js";
|
|
7
7
|
import { initializeInstruments } from "../instruments/index.js";
|
|
8
8
|
import { MetricsRecorder } from "./recorder.js";
|
|
9
|
-
import {
|
|
9
|
+
import { RUNTIME_VERSION } from "../../utils/version.js";
|
|
10
10
|
const logger = serverLogger.component("metrics");
|
|
11
11
|
/**
|
|
12
12
|
* Metrics manager class
|
|
@@ -68,7 +68,7 @@ export class MetricsManager {
|
|
|
68
68
|
}
|
|
69
69
|
try {
|
|
70
70
|
this.api = await import("@opentelemetry/api");
|
|
71
|
-
this.meter = this.api.metrics.getMeter(finalConfig.prefix,
|
|
71
|
+
this.meter = this.api.metrics.getMeter(finalConfig.prefix, RUNTIME_VERSION);
|
|
72
72
|
this.instruments = initializeInstruments(this.meter, finalConfig, this.runtimeState);
|
|
73
73
|
this.recorder.instruments = this.instruments;
|
|
74
74
|
logger.info("OpenTelemetry metrics initialized", {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getOtelTracingConfig } from "../../config/env.js";
|
|
2
2
|
import { serverLogger } from "../../utils/index.js";
|
|
3
|
-
import {
|
|
3
|
+
import { RUNTIME_VERSION } from "../../utils/version.js";
|
|
4
4
|
const logger = serverLogger.component("otel");
|
|
5
5
|
let initialized = false;
|
|
6
6
|
let tracerProvider = null;
|
|
@@ -76,7 +76,7 @@ export async function initializeOTLP() {
|
|
|
76
76
|
const { AsyncLocalStorageContextManager } = await import("@opentelemetry/context-async-hooks");
|
|
77
77
|
const resource = new Resource({
|
|
78
78
|
[ATTR_SERVICE_NAME]: config.serviceName,
|
|
79
|
-
[ATTR_SERVICE_VERSION]:
|
|
79
|
+
[ATTR_SERVICE_VERSION]: RUNTIME_VERSION,
|
|
80
80
|
});
|
|
81
81
|
const endpointBase = config.endpoint.replace(/\/$/, "");
|
|
82
82
|
const exporter = new OTLPTraceExporter({
|
|
@@ -32,6 +32,7 @@ export declare class VeryfrontFSAdapter implements FSAdapter {
|
|
|
32
32
|
constructor(config: FSAdapterConfig);
|
|
33
33
|
initialize(): Promise<void>;
|
|
34
34
|
private isPersistentCacheInvalidated;
|
|
35
|
+
private shouldBackgroundPregenerateStyles;
|
|
35
36
|
private scheduleFileListWarmup;
|
|
36
37
|
getPokeMetrics(): {
|
|
37
38
|
received: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../../../../../../src/src/platform/adapters/fs/veryfront/adapter.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../../../../../../src/src/platform/adapters/fs/veryfront/adapter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,UAAU,EAEV,cAAc,EACd,SAAS,EACT,eAAe,EAEf,sBAAsB,EACvB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAClE,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qCAAqC,CAAC;AA2BnE,qBAAa,kBAAmB,YAAW,SAAS;IAClD,OAAO,CAAC,MAAM,CAAqB;IACnC,OAAO,CAAC,KAAK,CAAY;IACzB,OAAO,CAAC,UAAU,CAAiB;IACnC,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,WAAW,CAAS;IAE5B,kFAAkF;IAClF,OAAO,CAAC,oBAAoB,CAA6B;IACzD,0EAA0E;IAC1E,OAAO,CAAC,qBAAqB,CAA8B;IAC3D,OAAO,CAAC,iBAAiB,CAAuB;IAEhD,OAAO,CAAC,WAAW,CAAC,CAAU;IAC9B,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,qBAAqB,CAAwB;IACrD,OAAO,CAAC,SAAS,CAAmB;IAEpC,4DAA4D;IAC5D,OAAO,CAAC,aAAa,CAAuB;IAE5C,+CAA+C;IAC/C,OAAO,CAAC,aAAa,CAAgB;IACrC,iGAAiG;IACjG,OAAO,CAAC,cAAc,CAAuC;IAC7D,mFAAmF;IACnF,OAAO,CAAC,SAAS,CAAU;gBAEf,MAAM,EAAE,eAAe;IA2L7B,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IA8IjC,OAAO,CAAC,4BAA4B;IAIpC,OAAO,CAAC,iCAAiC;IAOzC,OAAO,CAAC,sBAAsB;IA0E9B,cAAc,IAAI;QAChB,QAAQ,EAAE,MAAM,CAAC;QACjB,sBAAsB,EAAE,MAAM,CAAC;QAC/B,YAAY,EAAE,MAAM,CAAC;QACrB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;KAC7B;IAIK,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAKvC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;IAKhD,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAK3C,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;IAKhD,IAAI,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC;IAKrC,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAKtC,WAAW,CACf,QAAQ,EAAE,MAAM,EAChB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAKzB,OAAO,IAAI,IAAI;IAYf,aAAa,IAAI,UAAU;IAI3B,cAAc,IAAI,OAAO,GAAG,SAAS;IAI/B,iBAAiB,IAAI,OAAO,CAAC,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAoC7E,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAYpD,qBAAqB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAWrD,0BAA0B,CAC9B,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;IA0BvD,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAIpC,iBAAiB,IAAI,IAAI;IAIzB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAK7C,gBAAgB,IAAI,MAAM,GAAG,IAAI;IAIjC,kBAAkB,IAAI,IAAI;IAK1B,iBAAiB,CAAC,OAAO,EAAE,sBAAsB,GAAG,IAAI;IAoCxD,iBAAiB,IAAI,sBAAsB,GAAG,IAAI;IAWlD,SAAS,IAAI,kBAAkB;YAIjB,iBAAiB;IAK/B;;;;;OAKG;YACW,uBAAuB;CAkEtC"}
|
|
@@ -246,10 +246,10 @@ export class VeryfrontFSAdapter {
|
|
|
246
246
|
sourceFiles: fileSummary.sourceFiles,
|
|
247
247
|
sourceFilesWithContent: fileSummary.sourceFilesWithContent,
|
|
248
248
|
});
|
|
249
|
-
// Trigger CSS pre-generation after the initial file snapshot is ready
|
|
250
|
-
//
|
|
251
|
-
//
|
|
252
|
-
if (fileSummary.sourceFilesWithContent > 0) {
|
|
249
|
+
// Trigger CSS pre-generation after the initial file snapshot is ready for
|
|
250
|
+
// published contexts. Branch previews should first try remote metadata
|
|
251
|
+
// recovery on cold starts instead of repopulating the prepared cache here.
|
|
252
|
+
if (fileSummary.sourceFilesWithContent > 0 && this.shouldBackgroundPregenerateStyles()) {
|
|
253
253
|
this.triggerCSSPregeneration(files).catch(() => {
|
|
254
254
|
// Error already logged in triggerCSSPregeneration
|
|
255
255
|
});
|
|
@@ -293,6 +293,12 @@ export class VeryfrontFSAdapter {
|
|
|
293
293
|
isPersistentCacheInvalidated(prefix) {
|
|
294
294
|
return isPrefixBeingInvalidated(prefix);
|
|
295
295
|
}
|
|
296
|
+
shouldBackgroundPregenerateStyles() {
|
|
297
|
+
// Branch previews should recover the last registered stylesheet artifact on
|
|
298
|
+
// cold starts before rebuilding CSS locally. Live edit pokes still
|
|
299
|
+
// pregenerate through the WebSocket path after branch content changes.
|
|
300
|
+
return this.contentContext?.sourceType !== "branch";
|
|
301
|
+
}
|
|
296
302
|
scheduleFileListWarmup(reason, cacheKey) {
|
|
297
303
|
if (!this.initialized || !this.contentContext)
|
|
298
304
|
return;
|
|
@@ -328,7 +334,7 @@ export class VeryfrontFSAdapter {
|
|
|
328
334
|
const files = await fetchFileListForContext(this.client, warmupContext);
|
|
329
335
|
await this.cache.setAsync(effectiveCacheKey, files);
|
|
330
336
|
const fileSummary = summarizeFileList(files);
|
|
331
|
-
if (fileSummary.sourceFilesWithContent > 0) {
|
|
337
|
+
if (fileSummary.sourceFilesWithContent > 0 && this.shouldBackgroundPregenerateStyles()) {
|
|
332
338
|
this.triggerCSSPregeneration(files).catch(() => {
|
|
333
339
|
// Error already logged in triggerCSSPregeneration
|
|
334
340
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type FileDetail, type FileListResult, type ListFilesOptions, VeryfrontAPIOperations } from "./operations.js";
|
|
1
|
+
import { type FileDetail, type FileListResult, type ListFilesOptions, type ProjectStyleArtifactResolution, type ResolveStyleArtifactInput, type UpsertStyleArtifactInput, VeryfrontAPIOperations } from "./operations.js";
|
|
2
2
|
import { type VeryfrontAPIConfig } from "./types.js";
|
|
3
3
|
/**
|
|
4
4
|
* File context for API operations.
|
|
@@ -115,6 +115,8 @@ export declare class VeryfrontApiClient {
|
|
|
115
115
|
} | null;
|
|
116
116
|
project_name: string;
|
|
117
117
|
} | null>;
|
|
118
|
+
resolveStyleArtifact(input: ResolveStyleArtifactInput, projectRef?: string): Promise<ProjectStyleArtifactResolution>;
|
|
119
|
+
upsertStyleArtifact(input: UpsertStyleArtifactInput, projectRef?: string): Promise<ProjectStyleArtifactResolution>;
|
|
118
120
|
getFileById(entityId: string): Promise<{
|
|
119
121
|
path: string;
|
|
120
122
|
content: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/client.ts"],"names":[],"mappings":"AACA,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,gBAAgB,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/client.ts"],"names":[],"mappings":"AACA,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,gBAAgB,EACrB,KAAK,8BAA8B,EACnC,KAAK,yBAAyB,EAE9B,KAAK,wBAAwB,EAC7B,sBAAsB,EACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAoB,KAAK,kBAAkB,EAAE,MAAM,YAAY,CAAC;AASvE;;;;;GAKG;AACH,MAAM,MAAM,WAAW,GACnB;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GAChC;IAAE,IAAI,EAAE,aAAa,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,GACrC;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC;AAEzC,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,MAAM,CAEZ;IACF,OAAO,CAAC,UAAU,CAAyB;IAC3C,OAAO,CAAC,YAAY,CAAC,CAAS;IAC9B,OAAO,CAAC,kBAAkB,CAAC,CAAS;IACpC,OAAO,CAAC,cAAc,CAAC,CAAc;IACrC,OAAO,CAAC,aAAa,CAAC,CAAgB;IACtC,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,mBAAmB,CAAC,CAAgB;IAC5C,2EAA2E;IAC3E,OAAO,CAAC,iBAAiB,CAAC,CAA4D;gBAE1E,MAAM,EAAE,kBAAkB;IA0BtC,WAAW,IAAI,OAAO;IAItB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAIpC,iBAAiB,IAAI,IAAI;IAIzB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAIlC,cAAc,IAAI,MAAM,GAAG,SAAS;IAIpC,gBAAgB,IAAI,IAAI;IAIxB,UAAU,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAItC,UAAU,IAAI,WAAW;IAIzB,YAAY,IAAI,IAAI;IAIpB,QAAQ,IAAI,MAAM;IAIlB,aAAa,IAAI,OAAO;IAKxB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAW7C,gBAAgB,IAAI,MAAM,GAAG,IAAI,GAAG,SAAS;IAI7C,kBAAkB,IAAI,IAAI;IASpB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;YAgCnB,YAAY;IA8C1B,KAAK,IAAI,IAAI;IAMb,YAAY,IAAI,MAAM;IAItB;;;;OAIG;IACH,gBAAgB,IAAI,OAAO,CAAC,UAAU,CAAC,sBAAsB,CAAC,YAAY,CAAC,CAAC,CAAC,GAAG,SAAS;IAQzF,YAAY;;;;;;;;;;;;;IAIZ,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM;;;;;;;;;;;;;IAQ9B,SAAS,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,cAAc,CAAC;IAIlE,YAAY,CAAC,OAAO,GAAE,IAAI,CAAC,gBAAgB,EAAE,QAAQ,CAAM;;;;;;;;;IAc3D,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;IAcxC,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IASvD,eAAe,CAAC,UAAU,SAAS,EAAE,OAAO,GAAE,gBAAqB;IAInE,aAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAQlD,oBAAoB,CAAC,eAAe,SAAe,EAAE,OAAO,GAAE,gBAAqB;IAInF,uBAAuB,CACrB,eAAe,SAAe,EAC9B,OAAO,GAAE,IAAI,CAAC,gBAAgB,EAAE,QAAQ,CAAM;;;;;;;;;IAShD,kBAAkB,CAAC,eAAe,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAQ5D,gBAAgB,CAAC,OAAO,SAAW,EAAE,OAAO,GAAE,gBAAqB;IAInE,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAQhD,qBAAqB,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;IAIpC,oBAAoB,CAClB,KAAK,EAAE,yBAAyB,EAChC,UAAU,SAAyB,GAClC,OAAO,CAAC,8BAA8B,CAAC;IAI1C,mBAAmB,CACjB,KAAK,EAAE,wBAAwB,EAC/B,UAAU,SAAyB,GAClC,OAAO,CAAC,8BAA8B,CAAC;IAQpC,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAUhF,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAK5E;;;;;;;;;OASG;IACG,sBAAsB,CAC1B,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAmCpD,OAAO,CAAC,kBAAkB;IAe1B;;;;;;;OAOG;IACG,wBAAwB,CAC5B,QAAQ,EAAE,MAAM,EAChB,iBAAiB,WAAgD,GAChE,OAAO,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAapD,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,eAAe,CAAC,EAAE,MAAM;;;;;;;;;IAiB9E,uBAAuB,CAC3B,IAAI,EAAE,MAAM,EACZ,SAAS,CAAC,EAAE,MAAM,EAClB,eAAe,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,MAAM,CAAC;CAkBnB"}
|
|
@@ -253,6 +253,12 @@ export class VeryfrontApiClient {
|
|
|
253
253
|
lookupProjectByDomain(domain) {
|
|
254
254
|
return this.operations.lookupProjectByDomain(domain);
|
|
255
255
|
}
|
|
256
|
+
resolveStyleArtifact(input, projectRef = this.getProjectSlug()) {
|
|
257
|
+
return this.operations.resolveStyleArtifact(projectRef, input);
|
|
258
|
+
}
|
|
259
|
+
upsertStyleArtifact(input, projectRef = this.getProjectSlug()) {
|
|
260
|
+
return this.operations.upsertStyleArtifact(projectRef, input);
|
|
261
|
+
}
|
|
256
262
|
// =============================================================================
|
|
257
263
|
// Adapter Convenience Methods
|
|
258
264
|
// =============================================================================
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* @module platform/adapters/veryfront-api-client
|
|
5
5
|
*/
|
|
6
6
|
export { type FileContext, VeryfrontApiClient } from "./client.js";
|
|
7
|
-
export { type FileDetail, type FileListResult, type ListFilesOptions, VeryfrontAPIOperations, } from "./operations.js";
|
|
7
|
+
export { type FileDetail, type FileListResult, type ListFilesOptions, type ProjectStyleArtifactResolution, type ResolveStyleArtifactInput, type StyleArtifactSelector, type UpsertStyleArtifactInput, VeryfrontAPIOperations, } from "./operations.js";
|
|
8
8
|
export { type RequestOptions, requestWithRetry, type RetryConfig } from "./retry-handler.js";
|
|
9
9
|
export { API_CLIENT_ERROR, type Environment, type LookupDomainResponse, type PageInfo, type Project, type ProjectFile, type VeryfrontAPIConfig, VeryfrontError, } from "./types.js";
|
|
10
|
-
export { API_ENDPOINTS, BranchFileDetailSchema, BranchFileListItemSchema, EnvironmentFileDetailSchema, EnvironmentFileListItemSchema, EnvironmentSchema, ListBranchFilesResponseSchema, ListEnvironmentFilesResponseSchema, ListProjectsResponseSchema, ListReleaseFilesResponseSchema, LookupDomainResponseSchema, PageInfoSchema, ProjectFileSchema, ProjectSchema, ReleaseFileDetailSchema, ReleaseFileListItemSchema, } from "./schemas/index.js";
|
|
10
|
+
export { API_ENDPOINTS, BranchFileDetailSchema, BranchFileListItemSchema, EnvironmentFileDetailSchema, EnvironmentFileListItemSchema, EnvironmentSchema, ListBranchFilesResponseSchema, ListEnvironmentFilesResponseSchema, ListProjectsResponseSchema, ListReleaseFilesResponseSchema, LookupDomainResponseSchema, PageInfoSchema, ProjectFileSchema, ProjectSchema, ReleaseFileDetailSchema, ReleaseFileListItemSchema, type StyleArtifactResolveResponse, StyleArtifactResolveResponseSchema, } from "./schemas/index.js";
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,WAAW,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,gBAAgB,EACrB,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,KAAK,cAAc,EAAE,gBAAgB,EAAE,KAAK,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAC7F,OAAO,EACL,gBAAgB,EAChB,KAAK,WAAW,EAChB,KAAK,oBAAoB,EACzB,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,cAAc,GACf,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,aAAa,EACb,sBAAsB,EACtB,wBAAwB,EACxB,2BAA2B,EAC3B,6BAA6B,EAC7B,iBAAiB,EACjB,6BAA6B,EAC7B,kCAAkC,EAClC,0BAA0B,EAC1B,8BAA8B,EAC9B,0BAA0B,EAC1B,cAAc,EACd,iBAAiB,EACjB,aAAa,EACb,uBAAuB,EACvB,yBAAyB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,WAAW,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACnE,OAAO,EACL,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,gBAAgB,EACrB,KAAK,8BAA8B,EACnC,KAAK,yBAAyB,EAC9B,KAAK,qBAAqB,EAC1B,KAAK,wBAAwB,EAC7B,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,KAAK,cAAc,EAAE,gBAAgB,EAAE,KAAK,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAC7F,OAAO,EACL,gBAAgB,EAChB,KAAK,WAAW,EAChB,KAAK,oBAAoB,EACzB,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,cAAc,GACf,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,aAAa,EACb,sBAAsB,EACtB,wBAAwB,EACxB,2BAA2B,EAC3B,6BAA6B,EAC7B,iBAAiB,EACjB,6BAA6B,EAC7B,kCAAkC,EAClC,0BAA0B,EAC1B,8BAA8B,EAC9B,0BAA0B,EAC1B,cAAc,EACd,iBAAiB,EACjB,aAAa,EACb,uBAAuB,EACvB,yBAAyB,EACzB,KAAK,4BAA4B,EACjC,kCAAkC,GACnC,MAAM,oBAAoB,CAAC"}
|
|
@@ -7,4 +7,4 @@ export { VeryfrontApiClient } from "./client.js";
|
|
|
7
7
|
export { VeryfrontAPIOperations, } from "./operations.js";
|
|
8
8
|
export { requestWithRetry } from "./retry-handler.js";
|
|
9
9
|
export { API_CLIENT_ERROR, VeryfrontError, } from "./types.js";
|
|
10
|
-
export { API_ENDPOINTS, BranchFileDetailSchema, BranchFileListItemSchema, EnvironmentFileDetailSchema, EnvironmentFileListItemSchema, EnvironmentSchema, ListBranchFilesResponseSchema, ListEnvironmentFilesResponseSchema, ListProjectsResponseSchema, ListReleaseFilesResponseSchema, LookupDomainResponseSchema, PageInfoSchema, ProjectFileSchema, ProjectSchema, ReleaseFileDetailSchema, ReleaseFileListItemSchema, } from "./schemas/index.js";
|
|
10
|
+
export { API_ENDPOINTS, BranchFileDetailSchema, BranchFileListItemSchema, EnvironmentFileDetailSchema, EnvironmentFileListItemSchema, EnvironmentSchema, ListBranchFilesResponseSchema, ListEnvironmentFilesResponseSchema, ListProjectsResponseSchema, ListReleaseFilesResponseSchema, LookupDomainResponseSchema, PageInfoSchema, ProjectFileSchema, ProjectSchema, ReleaseFileDetailSchema, ReleaseFileListItemSchema, StyleArtifactResolveResponseSchema, } from "./schemas/index.js";
|
|
@@ -26,6 +26,28 @@ export interface FileDetail {
|
|
|
26
26
|
release_id?: string;
|
|
27
27
|
release_version?: string | null;
|
|
28
28
|
}
|
|
29
|
+
export interface StyleArtifactSelector {
|
|
30
|
+
branch?: string;
|
|
31
|
+
environmentName?: string;
|
|
32
|
+
releaseId?: string;
|
|
33
|
+
}
|
|
34
|
+
export interface ResolveStyleArtifactInput extends StyleArtifactSelector {
|
|
35
|
+
styleProfileHash: string;
|
|
36
|
+
}
|
|
37
|
+
export interface UpsertStyleArtifactInput extends ResolveStyleArtifactInput {
|
|
38
|
+
artifactHash: string;
|
|
39
|
+
assetPath?: string;
|
|
40
|
+
contentType?: string;
|
|
41
|
+
etag?: string;
|
|
42
|
+
}
|
|
43
|
+
export interface ProjectStyleArtifactResolution {
|
|
44
|
+
status: "ready" | "missing";
|
|
45
|
+
artifactHash?: string;
|
|
46
|
+
assetPath?: string;
|
|
47
|
+
etag?: string;
|
|
48
|
+
contentType?: string;
|
|
49
|
+
updatedAt?: string;
|
|
50
|
+
}
|
|
29
51
|
export declare class VeryfrontAPIOperations {
|
|
30
52
|
private apiBaseUrl;
|
|
31
53
|
private retryConfig;
|
|
@@ -53,6 +75,8 @@ export declare class VeryfrontAPIOperations {
|
|
|
53
75
|
listAllReleaseFiles(projectRef: string, version?: string, options?: Omit<ListFilesOptions, "cursor">): Promise<ProjectFile[]>;
|
|
54
76
|
getReleaseFile(projectRef: string, version: string, pathOrId: string): Promise<FileDetail>;
|
|
55
77
|
lookupProjectByDomain(domain: string): Promise<LookupDomainResponse | null>;
|
|
78
|
+
resolveStyleArtifact(projectRef: string, input: ResolveStyleArtifactInput): Promise<ProjectStyleArtifactResolution>;
|
|
79
|
+
upsertStyleArtifact(projectRef: string, input: UpsertStyleArtifactInput): Promise<ProjectStyleArtifactResolution>;
|
|
56
80
|
private request;
|
|
57
81
|
}
|
|
58
82
|
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/operations.ts"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../../../src/src/platform/adapters/veryfront-api-client/operations.ts"],"names":[],"mappings":"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"}
|