@roleplay-sh/cli 0.1.4 → 0.1.6
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/README.md +10 -2
- package/RELEASE.md +4 -2
- package/dist/cli.js +374 -266
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -739,13 +739,13 @@ declare const cloudUploadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
739
739
|
mode: "sanitized_findings" | "full_transcript_opt_in";
|
|
740
740
|
projectId: string;
|
|
741
741
|
source: "ci" | "local" | "scheduled";
|
|
742
|
-
attackPackId?: string | undefined;
|
|
743
|
-
attackPackScenario?: string | undefined;
|
|
744
742
|
branch?: string | undefined;
|
|
745
743
|
commit?: string | undefined;
|
|
746
744
|
buildUrl?: string | undefined;
|
|
747
745
|
environment?: string | undefined;
|
|
748
746
|
targetAgent?: string | undefined;
|
|
747
|
+
attackPackId?: string | undefined;
|
|
748
|
+
attackPackScenario?: string | undefined;
|
|
749
749
|
}, {
|
|
750
750
|
run: {
|
|
751
751
|
report: {
|
|
@@ -787,14 +787,14 @@ declare const cloudUploadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
787
787
|
};
|
|
788
788
|
projectId: string;
|
|
789
789
|
mode?: "sanitized_findings" | "full_transcript_opt_in" | undefined;
|
|
790
|
-
attackPackId?: string | undefined;
|
|
791
|
-
attackPackScenario?: string | undefined;
|
|
792
790
|
source?: "ci" | "local" | "scheduled" | undefined;
|
|
793
791
|
branch?: string | undefined;
|
|
794
792
|
commit?: string | undefined;
|
|
795
793
|
buildUrl?: string | undefined;
|
|
796
794
|
environment?: string | undefined;
|
|
797
795
|
targetAgent?: string | undefined;
|
|
796
|
+
attackPackId?: string | undefined;
|
|
797
|
+
attackPackScenario?: string | undefined;
|
|
798
798
|
}>, {
|
|
799
799
|
run: {
|
|
800
800
|
report: {
|
|
@@ -837,13 +837,13 @@ declare const cloudUploadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
837
837
|
mode: "sanitized_findings" | "full_transcript_opt_in";
|
|
838
838
|
projectId: string;
|
|
839
839
|
source: "ci" | "local" | "scheduled";
|
|
840
|
-
attackPackId?: string | undefined;
|
|
841
|
-
attackPackScenario?: string | undefined;
|
|
842
840
|
branch?: string | undefined;
|
|
843
841
|
commit?: string | undefined;
|
|
844
842
|
buildUrl?: string | undefined;
|
|
845
843
|
environment?: string | undefined;
|
|
846
844
|
targetAgent?: string | undefined;
|
|
845
|
+
attackPackId?: string | undefined;
|
|
846
|
+
attackPackScenario?: string | undefined;
|
|
847
847
|
}, {
|
|
848
848
|
run: {
|
|
849
849
|
report: {
|
|
@@ -885,14 +885,14 @@ declare const cloudUploadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
885
885
|
};
|
|
886
886
|
projectId: string;
|
|
887
887
|
mode?: "sanitized_findings" | "full_transcript_opt_in" | undefined;
|
|
888
|
-
attackPackId?: string | undefined;
|
|
889
|
-
attackPackScenario?: string | undefined;
|
|
890
888
|
source?: "ci" | "local" | "scheduled" | undefined;
|
|
891
889
|
branch?: string | undefined;
|
|
892
890
|
commit?: string | undefined;
|
|
893
891
|
buildUrl?: string | undefined;
|
|
894
892
|
environment?: string | undefined;
|
|
895
893
|
targetAgent?: string | undefined;
|
|
894
|
+
attackPackId?: string | undefined;
|
|
895
|
+
attackPackScenario?: string | undefined;
|
|
896
896
|
}>;
|
|
897
897
|
type CloudUpload = z.infer<typeof cloudUploadSchema>;
|
|
898
898
|
|