@otto-code/protocol 0.9.5 → 0.9.7
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/architectural-views/rpc-schemas.d.ts +5 -5
- package/dist/artifacts/rpc-schemas.d.ts +13 -13
- package/dist/artifacts/types.d.ts +4 -4
- package/dist/daemon-config.d.ts +9 -9
- package/dist/forge-connections.d.ts +127 -0
- package/dist/forge-connections.js +62 -0
- package/dist/generated/validation/ws-outbound.aot.js +14040 -13917
- package/dist/messages.d.ts +561 -387
- package/dist/messages.js +4 -0
- package/dist/project-knowledge.d.ts +11 -11
- package/dist/validation/ws-outbound-schema-metadata.d.ts +106 -78
- package/dist/workflow.d.ts +41 -41
- package/package.json +1 -1
package/dist/workflow.d.ts
CHANGED
|
@@ -144,8 +144,8 @@ export declare const WorkflowStorageProvenanceSchema: z.ZodObject<{
|
|
|
144
144
|
projectId: z.ZodOptional<z.ZodString>;
|
|
145
145
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
146
146
|
location: z.ZodEnum<{
|
|
147
|
-
repository: "repository";
|
|
148
147
|
host: "host";
|
|
148
|
+
repository: "repository";
|
|
149
149
|
}>;
|
|
150
150
|
storeKey: z.ZodString;
|
|
151
151
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -160,8 +160,8 @@ export declare const ProjectWorkflowStoreSetRequestSchema: z.ZodObject<{
|
|
|
160
160
|
type: z.ZodLiteral<"project.workflow.store.set.request">;
|
|
161
161
|
projectId: z.ZodString;
|
|
162
162
|
location: z.ZodNullable<z.ZodEnum<{
|
|
163
|
-
repository: "repository";
|
|
164
163
|
host: "host";
|
|
164
|
+
repository: "repository";
|
|
165
165
|
}>>;
|
|
166
166
|
requestId: z.ZodString;
|
|
167
167
|
}, z.core.$strip>;
|
|
@@ -273,8 +273,8 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
273
273
|
projectId: z.ZodOptional<z.ZodString>;
|
|
274
274
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
275
275
|
location: z.ZodEnum<{
|
|
276
|
-
repository: "repository";
|
|
277
276
|
host: "host";
|
|
277
|
+
repository: "repository";
|
|
278
278
|
}>;
|
|
279
279
|
storeKey: z.ZodString;
|
|
280
280
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -370,8 +370,8 @@ export declare const RunSchema: z.ZodObject<{
|
|
|
370
370
|
projectId: z.ZodOptional<z.ZodString>;
|
|
371
371
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
372
372
|
location: z.ZodEnum<{
|
|
373
|
-
repository: "repository";
|
|
374
373
|
host: "host";
|
|
374
|
+
repository: "repository";
|
|
375
375
|
}>;
|
|
376
376
|
storeKey: z.ZodString;
|
|
377
377
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -424,8 +424,8 @@ export declare const PromptTemplateSchema: z.ZodObject<{
|
|
|
424
424
|
projectId: z.ZodOptional<z.ZodString>;
|
|
425
425
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
426
426
|
location: z.ZodEnum<{
|
|
427
|
-
repository: "repository";
|
|
428
427
|
host: "host";
|
|
428
|
+
repository: "repository";
|
|
429
429
|
}>;
|
|
430
430
|
storeKey: z.ZodString;
|
|
431
431
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -690,8 +690,8 @@ export declare const OrchestrationGraphSchema: z.ZodObject<{
|
|
|
690
690
|
projectId: z.ZodOptional<z.ZodString>;
|
|
691
691
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
692
692
|
location: z.ZodEnum<{
|
|
693
|
-
repository: "repository";
|
|
694
693
|
host: "host";
|
|
694
|
+
repository: "repository";
|
|
695
695
|
}>;
|
|
696
696
|
storeKey: z.ZodString;
|
|
697
697
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -706,8 +706,8 @@ export type OrchestrationGraph = z.infer<typeof OrchestrationGraphSchema>;
|
|
|
706
706
|
export declare const WorkflowGraphShareLocationSchema: z.ZodObject<{
|
|
707
707
|
storeKey: z.ZodString;
|
|
708
708
|
location: z.ZodEnum<{
|
|
709
|
-
repository: "repository";
|
|
710
709
|
host: "host";
|
|
710
|
+
repository: "repository";
|
|
711
711
|
}>;
|
|
712
712
|
hostName: z.ZodOptional<z.ZodString>;
|
|
713
713
|
source: z.ZodEnum<{
|
|
@@ -813,8 +813,8 @@ export declare const WorkflowGraphExportSchema: z.ZodObject<{
|
|
|
813
813
|
projectId: z.ZodOptional<z.ZodString>;
|
|
814
814
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
815
815
|
location: z.ZodEnum<{
|
|
816
|
-
repository: "repository";
|
|
817
816
|
host: "host";
|
|
817
|
+
repository: "repository";
|
|
818
818
|
}>;
|
|
819
819
|
storeKey: z.ZodString;
|
|
820
820
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -828,8 +828,8 @@ export declare const WorkflowGraphExportSchema: z.ZodObject<{
|
|
|
828
828
|
source: z.ZodObject<{
|
|
829
829
|
storeKey: z.ZodString;
|
|
830
830
|
location: z.ZodEnum<{
|
|
831
|
-
repository: "repository";
|
|
832
831
|
host: "host";
|
|
832
|
+
repository: "repository";
|
|
833
833
|
}>;
|
|
834
834
|
hostName: z.ZodOptional<z.ZodString>;
|
|
835
835
|
source: z.ZodEnum<{
|
|
@@ -943,8 +943,8 @@ export declare const WorkflowGraphImportResultSchema: z.ZodObject<{
|
|
|
943
943
|
projectId: z.ZodOptional<z.ZodString>;
|
|
944
944
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
945
945
|
location: z.ZodEnum<{
|
|
946
|
-
repository: "repository";
|
|
947
946
|
host: "host";
|
|
947
|
+
repository: "repository";
|
|
948
948
|
}>;
|
|
949
949
|
storeKey: z.ZodString;
|
|
950
950
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -958,8 +958,8 @@ export declare const WorkflowGraphImportResultSchema: z.ZodObject<{
|
|
|
958
958
|
source: z.ZodOptional<z.ZodObject<{
|
|
959
959
|
storeKey: z.ZodString;
|
|
960
960
|
location: z.ZodEnum<{
|
|
961
|
-
repository: "repository";
|
|
962
961
|
host: "host";
|
|
962
|
+
repository: "repository";
|
|
963
963
|
}>;
|
|
964
964
|
hostName: z.ZodOptional<z.ZodString>;
|
|
965
965
|
source: z.ZodEnum<{
|
|
@@ -970,8 +970,8 @@ export declare const WorkflowGraphImportResultSchema: z.ZodObject<{
|
|
|
970
970
|
destination: z.ZodOptional<z.ZodObject<{
|
|
971
971
|
storeKey: z.ZodString;
|
|
972
972
|
location: z.ZodEnum<{
|
|
973
|
-
repository: "repository";
|
|
974
973
|
host: "host";
|
|
974
|
+
repository: "repository";
|
|
975
975
|
}>;
|
|
976
976
|
hostName: z.ZodOptional<z.ZodString>;
|
|
977
977
|
source: z.ZodEnum<{
|
|
@@ -1085,8 +1085,8 @@ export declare const RunsGetSnapshotResponseSchema: z.ZodObject<{
|
|
|
1085
1085
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1086
1086
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1087
1087
|
location: z.ZodEnum<{
|
|
1088
|
-
repository: "repository";
|
|
1089
1088
|
host: "host";
|
|
1089
|
+
repository: "repository";
|
|
1090
1090
|
}>;
|
|
1091
1091
|
storeKey: z.ZodString;
|
|
1092
1092
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1187,8 +1187,8 @@ export declare const RunsUpdatedNotificationSchema: z.ZodObject<{
|
|
|
1187
1187
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1188
1188
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1189
1189
|
location: z.ZodEnum<{
|
|
1190
|
-
repository: "repository";
|
|
1191
1190
|
host: "host";
|
|
1191
|
+
repository: "repository";
|
|
1192
1192
|
}>;
|
|
1193
1193
|
storeKey: z.ZodString;
|
|
1194
1194
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1370,8 +1370,8 @@ export declare const RunsGraphsListResponseSchema: z.ZodObject<{
|
|
|
1370
1370
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1371
1371
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1372
1372
|
location: z.ZodEnum<{
|
|
1373
|
-
repository: "repository";
|
|
1374
1373
|
host: "host";
|
|
1374
|
+
repository: "repository";
|
|
1375
1375
|
}>;
|
|
1376
1376
|
storeKey: z.ZodString;
|
|
1377
1377
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1483,8 +1483,8 @@ export declare const RunsGraphsSaveRequestSchema: z.ZodObject<{
|
|
|
1483
1483
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1484
1484
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1485
1485
|
location: z.ZodEnum<{
|
|
1486
|
-
repository: "repository";
|
|
1487
1486
|
host: "host";
|
|
1487
|
+
repository: "repository";
|
|
1488
1488
|
}>;
|
|
1489
1489
|
storeKey: z.ZodString;
|
|
1490
1490
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1596,8 +1596,8 @@ export declare const RunsGraphsSaveResponseSchema: z.ZodObject<{
|
|
|
1596
1596
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1597
1597
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1598
1598
|
location: z.ZodEnum<{
|
|
1599
|
-
repository: "repository";
|
|
1600
1599
|
host: "host";
|
|
1600
|
+
repository: "repository";
|
|
1601
1601
|
}>;
|
|
1602
1602
|
storeKey: z.ZodString;
|
|
1603
1603
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1724,8 +1724,8 @@ export declare const RunsGraphsChangedNotificationSchema: z.ZodObject<{
|
|
|
1724
1724
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1725
1725
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1726
1726
|
location: z.ZodEnum<{
|
|
1727
|
-
repository: "repository";
|
|
1728
1727
|
host: "host";
|
|
1728
|
+
repository: "repository";
|
|
1729
1729
|
}>;
|
|
1730
1730
|
storeKey: z.ZodString;
|
|
1731
1731
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1842,8 +1842,8 @@ export declare const WorkflowsGraphsListResponseSchema: z.ZodObject<{
|
|
|
1842
1842
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1843
1843
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1844
1844
|
location: z.ZodEnum<{
|
|
1845
|
-
repository: "repository";
|
|
1846
1845
|
host: "host";
|
|
1846
|
+
repository: "repository";
|
|
1847
1847
|
}>;
|
|
1848
1848
|
storeKey: z.ZodString;
|
|
1849
1849
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -1958,8 +1958,8 @@ export declare const WorkflowsGraphSaveRequestSchema: z.ZodObject<{
|
|
|
1958
1958
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1959
1959
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
1960
1960
|
location: z.ZodEnum<{
|
|
1961
|
-
repository: "repository";
|
|
1962
1961
|
host: "host";
|
|
1962
|
+
repository: "repository";
|
|
1963
1963
|
}>;
|
|
1964
1964
|
storeKey: z.ZodString;
|
|
1965
1965
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2071,8 +2071,8 @@ export declare const WorkflowsGraphSaveResponseSchema: z.ZodObject<{
|
|
|
2071
2071
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2072
2072
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2073
2073
|
location: z.ZodEnum<{
|
|
2074
|
-
repository: "repository";
|
|
2075
2074
|
host: "host";
|
|
2075
|
+
repository: "repository";
|
|
2076
2076
|
}>;
|
|
2077
2077
|
storeKey: z.ZodString;
|
|
2078
2078
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2193,8 +2193,8 @@ export declare const WorkflowsGraphExportResponseSchema: z.ZodObject<{
|
|
|
2193
2193
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2194
2194
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2195
2195
|
location: z.ZodEnum<{
|
|
2196
|
-
repository: "repository";
|
|
2197
2196
|
host: "host";
|
|
2197
|
+
repository: "repository";
|
|
2198
2198
|
}>;
|
|
2199
2199
|
storeKey: z.ZodString;
|
|
2200
2200
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2208,8 +2208,8 @@ export declare const WorkflowsGraphExportResponseSchema: z.ZodObject<{
|
|
|
2208
2208
|
source: z.ZodObject<{
|
|
2209
2209
|
storeKey: z.ZodString;
|
|
2210
2210
|
location: z.ZodEnum<{
|
|
2211
|
-
repository: "repository";
|
|
2212
2211
|
host: "host";
|
|
2212
|
+
repository: "repository";
|
|
2213
2213
|
}>;
|
|
2214
2214
|
hostName: z.ZodOptional<z.ZodString>;
|
|
2215
2215
|
source: z.ZodEnum<{
|
|
@@ -2325,8 +2325,8 @@ export declare const WorkflowsGraphImportRequestSchema: z.ZodObject<{
|
|
|
2325
2325
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2326
2326
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2327
2327
|
location: z.ZodEnum<{
|
|
2328
|
-
repository: "repository";
|
|
2329
2328
|
host: "host";
|
|
2329
|
+
repository: "repository";
|
|
2330
2330
|
}>;
|
|
2331
2331
|
storeKey: z.ZodString;
|
|
2332
2332
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2340,8 +2340,8 @@ export declare const WorkflowsGraphImportRequestSchema: z.ZodObject<{
|
|
|
2340
2340
|
source: z.ZodObject<{
|
|
2341
2341
|
storeKey: z.ZodString;
|
|
2342
2342
|
location: z.ZodEnum<{
|
|
2343
|
-
repository: "repository";
|
|
2344
2343
|
host: "host";
|
|
2344
|
+
repository: "repository";
|
|
2345
2345
|
}>;
|
|
2346
2346
|
hostName: z.ZodOptional<z.ZodString>;
|
|
2347
2347
|
source: z.ZodEnum<{
|
|
@@ -2460,8 +2460,8 @@ export declare const WorkflowsGraphImportResponseSchema: z.ZodObject<{
|
|
|
2460
2460
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2461
2461
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2462
2462
|
location: z.ZodEnum<{
|
|
2463
|
-
repository: "repository";
|
|
2464
2463
|
host: "host";
|
|
2464
|
+
repository: "repository";
|
|
2465
2465
|
}>;
|
|
2466
2466
|
storeKey: z.ZodString;
|
|
2467
2467
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2475,8 +2475,8 @@ export declare const WorkflowsGraphImportResponseSchema: z.ZodObject<{
|
|
|
2475
2475
|
source: z.ZodOptional<z.ZodObject<{
|
|
2476
2476
|
storeKey: z.ZodString;
|
|
2477
2477
|
location: z.ZodEnum<{
|
|
2478
|
-
repository: "repository";
|
|
2479
2478
|
host: "host";
|
|
2479
|
+
repository: "repository";
|
|
2480
2480
|
}>;
|
|
2481
2481
|
hostName: z.ZodOptional<z.ZodString>;
|
|
2482
2482
|
source: z.ZodEnum<{
|
|
@@ -2487,8 +2487,8 @@ export declare const WorkflowsGraphImportResponseSchema: z.ZodObject<{
|
|
|
2487
2487
|
destination: z.ZodOptional<z.ZodObject<{
|
|
2488
2488
|
storeKey: z.ZodString;
|
|
2489
2489
|
location: z.ZodEnum<{
|
|
2490
|
-
repository: "repository";
|
|
2491
2490
|
host: "host";
|
|
2491
|
+
repository: "repository";
|
|
2492
2492
|
}>;
|
|
2493
2493
|
hostName: z.ZodOptional<z.ZodString>;
|
|
2494
2494
|
source: z.ZodEnum<{
|
|
@@ -2533,8 +2533,8 @@ export declare const RunsTemplatesListResponseSchema: z.ZodObject<{
|
|
|
2533
2533
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2534
2534
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2535
2535
|
location: z.ZodEnum<{
|
|
2536
|
-
repository: "repository";
|
|
2537
2536
|
host: "host";
|
|
2537
|
+
repository: "repository";
|
|
2538
2538
|
}>;
|
|
2539
2539
|
storeKey: z.ZodString;
|
|
2540
2540
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2573,8 +2573,8 @@ export declare const RunsTemplatesSaveRequestSchema: z.ZodObject<{
|
|
|
2573
2573
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2574
2574
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2575
2575
|
location: z.ZodEnum<{
|
|
2576
|
-
repository: "repository";
|
|
2577
2576
|
host: "host";
|
|
2577
|
+
repository: "repository";
|
|
2578
2578
|
}>;
|
|
2579
2579
|
storeKey: z.ZodString;
|
|
2580
2580
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2613,8 +2613,8 @@ export declare const RunsTemplatesSaveResponseSchema: z.ZodObject<{
|
|
|
2613
2613
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2614
2614
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2615
2615
|
location: z.ZodEnum<{
|
|
2616
|
-
repository: "repository";
|
|
2617
2616
|
host: "host";
|
|
2617
|
+
repository: "repository";
|
|
2618
2618
|
}>;
|
|
2619
2619
|
storeKey: z.ZodString;
|
|
2620
2620
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2668,8 +2668,8 @@ export declare const RunsTemplatesChangedNotificationSchema: z.ZodObject<{
|
|
|
2668
2668
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2669
2669
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2670
2670
|
location: z.ZodEnum<{
|
|
2671
|
-
repository: "repository";
|
|
2672
2671
|
host: "host";
|
|
2672
|
+
repository: "repository";
|
|
2673
2673
|
}>;
|
|
2674
2674
|
storeKey: z.ZodString;
|
|
2675
2675
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2713,8 +2713,8 @@ export declare const WorkflowsTemplatesListResponseSchema: z.ZodObject<{
|
|
|
2713
2713
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2714
2714
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2715
2715
|
location: z.ZodEnum<{
|
|
2716
|
-
repository: "repository";
|
|
2717
2716
|
host: "host";
|
|
2717
|
+
repository: "repository";
|
|
2718
2718
|
}>;
|
|
2719
2719
|
storeKey: z.ZodString;
|
|
2720
2720
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2755,8 +2755,8 @@ export declare const WorkflowsTemplateSaveRequestSchema: z.ZodObject<{
|
|
|
2755
2755
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2756
2756
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2757
2757
|
location: z.ZodEnum<{
|
|
2758
|
-
repository: "repository";
|
|
2759
2758
|
host: "host";
|
|
2759
|
+
repository: "repository";
|
|
2760
2760
|
}>;
|
|
2761
2761
|
storeKey: z.ZodString;
|
|
2762
2762
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2795,8 +2795,8 @@ export declare const WorkflowsTemplateSaveResponseSchema: z.ZodObject<{
|
|
|
2795
2795
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2796
2796
|
projectKey: z.ZodOptional<z.ZodString>;
|
|
2797
2797
|
location: z.ZodEnum<{
|
|
2798
|
-
repository: "repository";
|
|
2799
2798
|
host: "host";
|
|
2799
|
+
repository: "repository";
|
|
2800
2800
|
}>;
|
|
2801
2801
|
storeKey: z.ZodString;
|
|
2802
2802
|
hostId: z.ZodOptional<z.ZodString>;
|
|
@@ -2826,16 +2826,16 @@ export declare const WorkflowTransferReceiptSchema: z.ZodObject<{
|
|
|
2826
2826
|
}>;
|
|
2827
2827
|
source: z.ZodObject<{
|
|
2828
2828
|
source: z.ZodEnum<{
|
|
2829
|
-
repository: "repository";
|
|
2830
2829
|
host: "host";
|
|
2830
|
+
repository: "repository";
|
|
2831
2831
|
"legacy-host-library": "legacy-host-library";
|
|
2832
2832
|
}>;
|
|
2833
2833
|
storeKey: z.ZodString;
|
|
2834
2834
|
}, z.core.$strip>;
|
|
2835
2835
|
destination: z.ZodObject<{
|
|
2836
2836
|
location: z.ZodEnum<{
|
|
2837
|
-
repository: "repository";
|
|
2838
2837
|
host: "host";
|
|
2838
|
+
repository: "repository";
|
|
2839
2839
|
}>;
|
|
2840
2840
|
storeKey: z.ZodString;
|
|
2841
2841
|
}, z.core.$strip>;
|
|
@@ -2861,13 +2861,13 @@ export declare const WorkflowsStorageTransferRequestSchema: z.ZodObject<{
|
|
|
2861
2861
|
}>;
|
|
2862
2862
|
recordId: z.ZodString;
|
|
2863
2863
|
source: z.ZodEnum<{
|
|
2864
|
-
repository: "repository";
|
|
2865
2864
|
host: "host";
|
|
2865
|
+
repository: "repository";
|
|
2866
2866
|
"legacy-host-library": "legacy-host-library";
|
|
2867
2867
|
}>;
|
|
2868
2868
|
destination: z.ZodEnum<{
|
|
2869
|
-
repository: "repository";
|
|
2870
2869
|
host: "host";
|
|
2870
|
+
repository: "repository";
|
|
2871
2871
|
}>;
|
|
2872
2872
|
mode: z.ZodEnum<{
|
|
2873
2873
|
copy: "copy";
|
|
@@ -2893,16 +2893,16 @@ export declare const WorkflowsStorageTransferResponseSchema: z.ZodObject<{
|
|
|
2893
2893
|
}>;
|
|
2894
2894
|
source: z.ZodObject<{
|
|
2895
2895
|
source: z.ZodEnum<{
|
|
2896
|
-
repository: "repository";
|
|
2897
2896
|
host: "host";
|
|
2897
|
+
repository: "repository";
|
|
2898
2898
|
"legacy-host-library": "legacy-host-library";
|
|
2899
2899
|
}>;
|
|
2900
2900
|
storeKey: z.ZodString;
|
|
2901
2901
|
}, z.core.$strip>;
|
|
2902
2902
|
destination: z.ZodObject<{
|
|
2903
2903
|
location: z.ZodEnum<{
|
|
2904
|
-
repository: "repository";
|
|
2905
2904
|
host: "host";
|
|
2905
|
+
repository: "repository";
|
|
2906
2906
|
}>;
|
|
2907
2907
|
storeKey: z.ZodString;
|
|
2908
2908
|
}, z.core.$strip>;
|