@kernelminds/scailo-sdk 0.1.6 → 0.1.8

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.
@@ -1,7 +1,7 @@
1
1
  import { VaultFile, VaultFileAddChunkRequest, VaultFileInitiateFileRequest, VaultFileInitiateFileResponse, VaultFileMoveFileRequest, VaultFileRenameFileRequest, VaultFilesList, VaultFileUnzipRequest, VaultFileVersionChunk, VaultFileVersionsList } from "./vault_files.scailo_pb.js";
2
2
  import { MethodKind } from "@bufbuild/protobuf";
3
- import { BooleanResponse, CountResponse, Identifier, IdentifierUUID, IdentifierZeroable, StandardFile } from "./base.scailo_pb.js";
4
- import { GiXAppRun, GiXAppRunCountReq, GiXAppRunFilterReq, GiXAppRunsList, VaultAccessLogsList, VaultDuplicateCheckReq, VaultPermission, VaultPermissionAddRequest, VaultPermissionModifyRequest, VaultSearchReq, VaultSearchResponsesList } from "./vault_commons.scailo_pb.js";
3
+ import { BooleanResponse, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierZeroable, StandardFile } from "./base.scailo_pb.js";
4
+ import { EnclaveDomain, EnclaveDomainAddRequest, EnclaveDomainsFilterReq, EnclaveDomainsList, EnclaveEnvironmentVariable, EnclaveEnvironmentVariableAddRequest, EnclaveEnvironmentVariablesList, EnclaveEnvironmentVariableUpdateRequest, EnclaveIngress, EnclaveIngressCountReq, EnclaveIngressesList, EnclaveIngressFilterReq, GiXAppRun, GiXAppRunCountReq, GiXAppRunFilterReq, GiXAppRunsList, VaultAccessLogsList, VaultDuplicateCheckReq, VaultPermission, VaultPermissionAddRequest, VaultPermissionModifyRequest, VaultSearchReq, VaultSearchResponsesList, VerifyEnclaveIngressRequest, VerifyEnclaveIngressResponse } from "./vault_commons.scailo_pb.js";
5
5
  import { VaultFolder, VaultFolderAddRequest, VaultFolderDownload, VaultFolderMoveFolderRequest, VaultFolderRenameFolderRequest, VaultFoldersList } from "./vault_folders.scailo_pb.js";
6
6
  import { GiXRelayReqWithBody, GiXRelayReqWithoutBody, GiXRelayResponse, VaultResourcesList } from "./vault.scailo_pb.js";
7
7
  import { RolesList } from "./roles.scailo_pb.js";
@@ -580,6 +580,171 @@ export declare const VaultService: {
580
580
  readonly O: typeof CountResponse;
581
581
  readonly kind: MethodKind.Unary;
582
582
  };
583
+ /**
584
+ * Reconfigures the enclave (redeploys the enclave)
585
+ *
586
+ * @generated from rpc Scailo.VaultService.ReconfigureEnclave
587
+ */
588
+ readonly reconfigureEnclave: {
589
+ readonly name: "ReconfigureEnclave";
590
+ readonly I: typeof IdentifierUUID;
591
+ readonly O: typeof IdentifierUUID;
592
+ readonly kind: MethodKind.Unary;
593
+ };
594
+ /**
595
+ * Setup Enclave Ingress
596
+ *
597
+ * @generated from rpc Scailo.VaultService.SetupEnclaveIngress
598
+ */
599
+ readonly setupEnclaveIngress: {
600
+ readonly name: "SetupEnclaveIngress";
601
+ readonly I: typeof IdentifierUUID;
602
+ readonly O: typeof EnclaveIngress;
603
+ readonly kind: MethodKind.Unary;
604
+ };
605
+ /**
606
+ * View all enclave ingresses that match the given filter criteria
607
+ *
608
+ * @generated from rpc Scailo.VaultService.FilterEnclaveIngresses
609
+ */
610
+ readonly filterEnclaveIngresses: {
611
+ readonly name: "FilterEnclaveIngresses";
612
+ readonly I: typeof EnclaveIngressFilterReq;
613
+ readonly O: typeof EnclaveIngressesList;
614
+ readonly kind: MethodKind.Unary;
615
+ };
616
+ /**
617
+ * Count all enclave ingresses that match the given filter criteria
618
+ *
619
+ * @generated from rpc Scailo.VaultService.CountEnclaveIngresses
620
+ */
621
+ readonly countEnclaveIngresses: {
622
+ readonly name: "CountEnclaveIngresses";
623
+ readonly I: typeof EnclaveIngressCountReq;
624
+ readonly O: typeof CountResponse;
625
+ readonly kind: MethodKind.Unary;
626
+ };
627
+ /**
628
+ * Verifies the enclave ingress and returns the necessary information for subsequent requests
629
+ *
630
+ * @generated from rpc Scailo.VaultService.VerifyEnclaveIngress
631
+ */
632
+ readonly verifyEnclaveIngress: {
633
+ readonly name: "VerifyEnclaveIngress";
634
+ readonly I: typeof VerifyEnclaveIngressRequest;
635
+ readonly O: typeof VerifyEnclaveIngressResponse;
636
+ readonly kind: MethodKind.Unary;
637
+ };
638
+ /**
639
+ * Add environment variable to enclave
640
+ *
641
+ * @generated from rpc Scailo.VaultService.AddEnclaveEnvironmentVariable
642
+ */
643
+ readonly addEnclaveEnvironmentVariable: {
644
+ readonly name: "AddEnclaveEnvironmentVariable";
645
+ readonly I: typeof EnclaveEnvironmentVariableAddRequest;
646
+ readonly O: typeof EnclaveEnvironmentVariable;
647
+ readonly kind: MethodKind.Unary;
648
+ };
649
+ /**
650
+ * Update environment variable in enclave
651
+ *
652
+ * @generated from rpc Scailo.VaultService.UpdateEnclaveEnvironmentVariable
653
+ */
654
+ readonly updateEnclaveEnvironmentVariable: {
655
+ readonly name: "UpdateEnclaveEnvironmentVariable";
656
+ readonly I: typeof EnclaveEnvironmentVariableUpdateRequest;
657
+ readonly O: typeof EnclaveEnvironmentVariable;
658
+ readonly kind: MethodKind.Unary;
659
+ };
660
+ /**
661
+ * Delete environment variable in enclave
662
+ *
663
+ * @generated from rpc Scailo.VaultService.DeleteEnclaveEnvironmentVariable
664
+ */
665
+ readonly deleteEnclaveEnvironmentVariable: {
666
+ readonly name: "DeleteEnclaveEnvironmentVariable";
667
+ readonly I: typeof IdentifierUUID;
668
+ readonly O: typeof IdentifierResponse;
669
+ readonly kind: MethodKind.Unary;
670
+ };
671
+ /**
672
+ * View environment variable in enclave represented by the Identifier
673
+ *
674
+ * @generated from rpc Scailo.VaultService.ViewEnclaveEnvironmentVariable
675
+ */
676
+ readonly viewEnclaveEnvironmentVariable: {
677
+ readonly name: "ViewEnclaveEnvironmentVariable";
678
+ readonly I: typeof IdentifierUUID;
679
+ readonly O: typeof EnclaveEnvironmentVariable;
680
+ readonly kind: MethodKind.Unary;
681
+ };
682
+ /**
683
+ * View all environment variables in enclave for the enclave represented by the Identifier
684
+ *
685
+ * @generated from rpc Scailo.VaultService.ViewAllEnclaveEnvironmentVariables
686
+ */
687
+ readonly viewAllEnclaveEnvironmentVariables: {
688
+ readonly name: "ViewAllEnclaveEnvironmentVariables";
689
+ readonly I: typeof IdentifierUUID;
690
+ readonly O: typeof EnclaveEnvironmentVariablesList;
691
+ readonly kind: MethodKind.Unary;
692
+ };
693
+ /**
694
+ * Add domain to enclave
695
+ *
696
+ * @generated from rpc Scailo.VaultService.AddEnclaveDomain
697
+ */
698
+ readonly addEnclaveDomain: {
699
+ readonly name: "AddEnclaveDomain";
700
+ readonly I: typeof EnclaveDomainAddRequest;
701
+ readonly O: typeof EnclaveDomain;
702
+ readonly kind: MethodKind.Unary;
703
+ };
704
+ /**
705
+ * Delete domain from enclave
706
+ *
707
+ * @generated from rpc Scailo.VaultService.DeleteEnclaveDomain
708
+ */
709
+ readonly deleteEnclaveDomain: {
710
+ readonly name: "DeleteEnclaveDomain";
711
+ readonly I: typeof IdentifierUUID;
712
+ readonly O: typeof IdentifierResponse;
713
+ readonly kind: MethodKind.Unary;
714
+ };
715
+ /**
716
+ * View domain for enclave represented by the Identifier
717
+ *
718
+ * @generated from rpc Scailo.VaultService.ViewEnclaveDomain
719
+ */
720
+ readonly viewEnclaveDomain: {
721
+ readonly name: "ViewEnclaveDomain";
722
+ readonly I: typeof IdentifierUUID;
723
+ readonly O: typeof EnclaveDomain;
724
+ readonly kind: MethodKind.Unary;
725
+ };
726
+ /**
727
+ * View all domains for enclave for the enclave represented by the Identifier
728
+ *
729
+ * @generated from rpc Scailo.VaultService.ViewAllEnclaveDomains
730
+ */
731
+ readonly viewAllEnclaveDomains: {
732
+ readonly name: "ViewAllEnclaveDomains";
733
+ readonly I: typeof IdentifierUUID;
734
+ readonly O: typeof EnclaveDomainsList;
735
+ readonly kind: MethodKind.Unary;
736
+ };
737
+ /**
738
+ * Filter all domains that match the given filter criteria
739
+ *
740
+ * @generated from rpc Scailo.VaultService.FilterEnclaveDomains
741
+ */
742
+ readonly filterEnclaveDomains: {
743
+ readonly name: "FilterEnclaveDomains";
744
+ readonly I: typeof EnclaveDomainsFilterReq;
745
+ readonly O: typeof EnclaveDomainsList;
746
+ readonly kind: MethodKind.Unary;
747
+ };
583
748
  };
584
749
  };
585
750
  //# sourceMappingURL=vault.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vault.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vault.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,wBAAwB,EAAE,0BAA0B,EAAE,cAAc,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACzR,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,UAAU,EAAE,cAAc,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnI,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,eAAe,EAAE,yBAAyB,EAAE,4BAA4B,EAAE,cAAc,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AACjR,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,4BAA4B,EAAE,8BAA8B,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACvL,OAAO,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzH,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY;;;QAGrB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"vault.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vault.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,wBAAwB,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,wBAAwB,EAAE,0BAA0B,EAAE,cAAc,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACzR,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACvJ,OAAO,EAAE,aAAa,EAAE,uBAAuB,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,0BAA0B,EAAE,oCAAoC,EAAE,+BAA+B,EAAE,uCAAuC,EAAE,cAAc,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,SAAS,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,eAAe,EAAE,yBAAyB,EAAE,4BAA4B,EAAE,cAAc,EAAE,wBAAwB,EAAE,2BAA2B,EAAE,4BAA4B,EAAE,MAAM,8BAA8B,CAAC;AACpoB,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,4BAA4B,EAAE,8BAA8B,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACvL,OAAO,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACzH,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY;;;QAGrB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}