@kernelminds/scailo-sdk 0.1.7 → 0.1.9

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.
@@ -4,7 +4,7 @@
4
4
  /* eslint-disable */
5
5
  // @ts-nocheck
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.VaultAccessLogsList = exports.VaultAccessLogCreateRequest = exports.VaultAccessLog = exports.VaultDuplicateCheckReq = exports.VaultSearchResponsesList = exports.VaultSearchResponse = exports.VaultSearchReq = exports.EnclaveEnvironmentVariablesList = exports.EnclaveEnvironmentVariable = exports.EnclaveEnvironmentVariableUpdateRequest = exports.EnclaveEnvironmentVariableAddRequest = exports.VerifyEnclaveIngressResponse = exports.VerifyEnclaveIngressRequest = exports.EnclaveIngressFilterReq = exports.EnclaveIngressCountReq = exports.EnclaveIngressesList = exports.EnclaveIngress = exports.EnclaveManifest = exports.EnclaveResources = exports.GiXAppRunFilterReq = exports.GiXAppRunCountReq = exports.GiXAppRunsList = exports.GiXAppRun = exports.GiXManifest = exports.GixResources = exports.VaultPermissionModifyRequest = exports.VaultPermissionAddRequest = exports.VaultPermission = exports.VAULT_ACCESS_LOG_OPERATION = exports.VAULT_SORT_KEY = exports.VAULT_PERMISSION_CODE = exports.VAULT_REF_FOR = void 0;
7
+ exports.VaultAccessLogsList = exports.VaultAccessLogCreateRequest = exports.VaultAccessLog = exports.VaultDuplicateCheckReq = exports.VaultSearchResponsesList = exports.VaultSearchResponse = exports.VaultSearchReq = exports.EnclaveDomainSuffixResp = exports.EnclaveDomainsList = exports.EnclaveDomainsFilterReq = exports.EnclaveDomain = exports.EnclaveDomainAddRequest = exports.EnclaveEnvironmentVariablesList = exports.EnclaveEnvironmentVariable = exports.EnclaveEnvironmentVariableUpdateRequest = exports.EnclaveEnvironmentVariableAddRequest = exports.VerifyEnclaveIngressResponse = exports.VerifyEnclaveIngressRequest = exports.EnclaveIngressFilterReq = exports.EnclaveIngressCountReq = exports.EnclaveIngressesList = exports.EnclaveIngress = exports.EnclaveManifest = exports.EnclaveResources = exports.GiXAppRunFilterReq = exports.GiXAppRunCountReq = exports.GiXAppRunsList = exports.GiXAppRun = exports.GiXManifest = exports.GixResources = exports.VaultPermissionModifyRequest = exports.VaultPermissionAddRequest = exports.VaultPermission = exports.VAULT_ACCESS_LOG_OPERATION = exports.VAULT_SORT_KEY = exports.ENCLAVE_DOMAIN_SORT_KEY = exports.VAULT_PERMISSION_CODE = exports.VAULT_REF_FOR = void 0;
8
8
  const protobuf_1 = require("@bufbuild/protobuf");
9
9
  const base_scailo_pb_js_1 = require("./base.scailo_pb.js");
10
10
  /**
@@ -108,6 +108,39 @@ protobuf_1.proto3.util.setEnumType(VAULT_PERMISSION_CODE, "Scailo.VAULT_PERMISSI
108
108
  { no: 32, name: "VAULT_PERMISSION_CODE_EXECUTE" },
109
109
  { no: 63, name: "VAULT_PERMISSION_CODE_ALL" },
110
110
  ]);
111
+ /**
112
+ *
113
+ * Describes the available sort keys for enclave domains
114
+ *
115
+ * @generated from enum Scailo.ENCLAVE_DOMAIN_SORT_KEY
116
+ */
117
+ var ENCLAVE_DOMAIN_SORT_KEY;
118
+ (function (ENCLAVE_DOMAIN_SORT_KEY) {
119
+ /**
120
+ * Fetch ordered results by id
121
+ *
122
+ * @generated from enum value: ENCLAVE_DOMAIN_SORT_KEY_ID_UNSPECIFIED = 0;
123
+ */
124
+ ENCLAVE_DOMAIN_SORT_KEY[ENCLAVE_DOMAIN_SORT_KEY["ENCLAVE_DOMAIN_SORT_KEY_ID_UNSPECIFIED"] = 0] = "ENCLAVE_DOMAIN_SORT_KEY_ID_UNSPECIFIED";
125
+ /**
126
+ * Fetch ordered results by the creation timestamp
127
+ *
128
+ * @generated from enum value: ENCLAVE_DOMAIN_SORT_KEY_CREATED_AT = 1;
129
+ */
130
+ ENCLAVE_DOMAIN_SORT_KEY[ENCLAVE_DOMAIN_SORT_KEY["ENCLAVE_DOMAIN_SORT_KEY_CREATED_AT"] = 1] = "ENCLAVE_DOMAIN_SORT_KEY_CREATED_AT";
131
+ /**
132
+ * Fetch ordered results by the domain
133
+ *
134
+ * @generated from enum value: ENCLAVE_DOMAIN_SORT_KEY_DOMAIN = 10;
135
+ */
136
+ ENCLAVE_DOMAIN_SORT_KEY[ENCLAVE_DOMAIN_SORT_KEY["ENCLAVE_DOMAIN_SORT_KEY_DOMAIN"] = 10] = "ENCLAVE_DOMAIN_SORT_KEY_DOMAIN";
137
+ })(ENCLAVE_DOMAIN_SORT_KEY || (exports.ENCLAVE_DOMAIN_SORT_KEY = ENCLAVE_DOMAIN_SORT_KEY = {}));
138
+ // Retrieve enum metadata with: proto3.getEnumType(ENCLAVE_DOMAIN_SORT_KEY)
139
+ protobuf_1.proto3.util.setEnumType(ENCLAVE_DOMAIN_SORT_KEY, "Scailo.ENCLAVE_DOMAIN_SORT_KEY", [
140
+ { no: 0, name: "ENCLAVE_DOMAIN_SORT_KEY_ID_UNSPECIFIED" },
141
+ { no: 1, name: "ENCLAVE_DOMAIN_SORT_KEY_CREATED_AT" },
142
+ { no: 10, name: "ENCLAVE_DOMAIN_SORT_KEY_DOMAIN" },
143
+ ]);
111
144
  /**
112
145
  *
113
146
  * Describes the available sort keys
@@ -1683,6 +1716,298 @@ class EnclaveEnvironmentVariablesList extends protobuf_1.Message {
1683
1716
  }
1684
1717
  }
1685
1718
  exports.EnclaveEnvironmentVariablesList = EnclaveEnvironmentVariablesList;
1719
+ /**
1720
+ *
1721
+ * Stores the payload that is necessary to create a custom domain for an enclave
1722
+ *
1723
+ * @generated from message Scailo.EnclaveDomainAddRequest
1724
+ */
1725
+ class EnclaveDomainAddRequest extends protobuf_1.Message {
1726
+ /**
1727
+ * The UUID of the enclave file that will be updated with the given domain
1728
+ *
1729
+ * @generated from field: string file_uuid = 1;
1730
+ */
1731
+ fileUuid = "";
1732
+ /**
1733
+ * The domain that points to the enclave
1734
+ *
1735
+ * @generated from field: string domain = 11;
1736
+ */
1737
+ domain = "";
1738
+ constructor(data) {
1739
+ super();
1740
+ protobuf_1.proto3.util.initPartial(data, this);
1741
+ }
1742
+ static runtime = protobuf_1.proto3;
1743
+ static typeName = "Scailo.EnclaveDomainAddRequest";
1744
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
1745
+ { no: 1, name: "file_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1746
+ { no: 11, name: "domain", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1747
+ ]);
1748
+ static fromBinary(bytes, options) {
1749
+ return new EnclaveDomainAddRequest().fromBinary(bytes, options);
1750
+ }
1751
+ static fromJson(jsonValue, options) {
1752
+ return new EnclaveDomainAddRequest().fromJson(jsonValue, options);
1753
+ }
1754
+ static fromJsonString(jsonString, options) {
1755
+ return new EnclaveDomainAddRequest().fromJsonString(jsonString, options);
1756
+ }
1757
+ static equals(a, b) {
1758
+ return protobuf_1.proto3.util.equals(EnclaveDomainAddRequest, a, b);
1759
+ }
1760
+ }
1761
+ exports.EnclaveDomainAddRequest = EnclaveDomainAddRequest;
1762
+ /**
1763
+ *
1764
+ * Denotes an individual domain that is part of an enclave
1765
+ *
1766
+ * @generated from message Scailo.EnclaveDomain
1767
+ */
1768
+ class EnclaveDomain extends protobuf_1.Message {
1769
+ /**
1770
+ * Stores a globally unique entity UUID. This will be set at the organization level
1771
+ *
1772
+ * @generated from field: string entity_uuid = 1;
1773
+ */
1774
+ entityUuid = "";
1775
+ /**
1776
+ * Stores the metadata of this user
1777
+ *
1778
+ * @generated from field: Scailo.EmployeeMetadata metadata = 2;
1779
+ */
1780
+ metadata;
1781
+ /**
1782
+ * Stores the ID of the file that the domain belongs to
1783
+ *
1784
+ * @generated from field: uint64 vault_file_id = 10;
1785
+ */
1786
+ vaultFileId = protobuf_1.protoInt64.zero;
1787
+ /**
1788
+ * The domain that points to the enclave
1789
+ *
1790
+ * @generated from field: string domain = 11;
1791
+ */
1792
+ domain = "";
1793
+ /**
1794
+ * The internal address of the service that the domain points to
1795
+ *
1796
+ * @generated from field: string service_addr = 12;
1797
+ */
1798
+ serviceAddr = "";
1799
+ constructor(data) {
1800
+ super();
1801
+ protobuf_1.proto3.util.initPartial(data, this);
1802
+ }
1803
+ static runtime = protobuf_1.proto3;
1804
+ static typeName = "Scailo.EnclaveDomain";
1805
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
1806
+ { no: 1, name: "entity_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1807
+ { no: 2, name: "metadata", kind: "message", T: base_scailo_pb_js_1.EmployeeMetadata },
1808
+ { no: 10, name: "vault_file_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1809
+ { no: 11, name: "domain", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1810
+ { no: 12, name: "service_addr", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1811
+ ]);
1812
+ static fromBinary(bytes, options) {
1813
+ return new EnclaveDomain().fromBinary(bytes, options);
1814
+ }
1815
+ static fromJson(jsonValue, options) {
1816
+ return new EnclaveDomain().fromJson(jsonValue, options);
1817
+ }
1818
+ static fromJsonString(jsonString, options) {
1819
+ return new EnclaveDomain().fromJsonString(jsonString, options);
1820
+ }
1821
+ static equals(a, b) {
1822
+ return protobuf_1.proto3.util.equals(EnclaveDomain, a, b);
1823
+ }
1824
+ }
1825
+ exports.EnclaveDomain = EnclaveDomain;
1826
+ /**
1827
+ *
1828
+ * Describes the request payload of a enclave domains filter search
1829
+ *
1830
+ * @generated from message Scailo.EnclaveDomainsFilterReq
1831
+ */
1832
+ class EnclaveDomainsFilterReq extends protobuf_1.Message {
1833
+ /**
1834
+ * If true, then returns only active records. If false, then returns only inactive records
1835
+ *
1836
+ * @generated from field: Scailo.BOOL_FILTER is_active = 1;
1837
+ */
1838
+ isActive = base_scailo_pb_js_1.BOOL_FILTER.BOOL_FILTER_ANY_UNSPECIFIED;
1839
+ /**
1840
+ * The number of records that need to be sent in the response. Returns all records if it is set to -1
1841
+ *
1842
+ * @generated from field: int64 count = 2;
1843
+ */
1844
+ count = protobuf_1.protoInt64.zero;
1845
+ /**
1846
+ * The number that need to be offset by before fetching the records
1847
+ *
1848
+ * @generated from field: uint64 offset = 3;
1849
+ */
1850
+ offset = protobuf_1.protoInt64.zero;
1851
+ /**
1852
+ * The sort order that is to be used to fetch the pagination response
1853
+ *
1854
+ * @generated from field: Scailo.SORT_ORDER sort_order = 4;
1855
+ */
1856
+ sortOrder = base_scailo_pb_js_1.SORT_ORDER.ASCENDING_UNSPECIFIED;
1857
+ /**
1858
+ * The sort key that is to be used to fetch the pagination response
1859
+ *
1860
+ * @generated from field: Scailo.ENCLAVE_DOMAIN_SORT_KEY sort_key = 5;
1861
+ */
1862
+ sortKey = ENCLAVE_DOMAIN_SORT_KEY.ENCLAVE_DOMAIN_SORT_KEY_ID_UNSPECIFIED;
1863
+ /**
1864
+ * The minimum timestamp that needs to be considered to filter by creation
1865
+ *
1866
+ * @generated from field: uint64 creation_timestamp_start = 101;
1867
+ */
1868
+ creationTimestampStart = protobuf_1.protoInt64.zero;
1869
+ /**
1870
+ * The maximum timestamp that needs to be considered to filter by creation
1871
+ *
1872
+ * @generated from field: uint64 creation_timestamp_end = 102;
1873
+ */
1874
+ creationTimestampEnd = protobuf_1.protoInt64.zero;
1875
+ /**
1876
+ * The minimum timestamp that needs to be considered to filter by modification
1877
+ *
1878
+ * @generated from field: uint64 modification_timestamp_start = 103;
1879
+ */
1880
+ modificationTimestampStart = protobuf_1.protoInt64.zero;
1881
+ /**
1882
+ * The maximum timestamp that needs to be considered to filter by modification
1883
+ *
1884
+ * @generated from field: uint64 modification_timestamp_end = 104;
1885
+ */
1886
+ modificationTimestampEnd = protobuf_1.protoInt64.zero;
1887
+ /**
1888
+ * The entity UUID that is to be used to filter records
1889
+ *
1890
+ * @generated from field: string entity_uuid = 8;
1891
+ */
1892
+ entityUuid = "";
1893
+ /**
1894
+ * The domain that points to the enclave
1895
+ *
1896
+ * @generated from field: string domain = 11;
1897
+ */
1898
+ domain = "";
1899
+ /**
1900
+ * The internal address of the service that the domain points to
1901
+ *
1902
+ * @generated from field: string service_addr = 12;
1903
+ */
1904
+ serviceAddr = "";
1905
+ constructor(data) {
1906
+ super();
1907
+ protobuf_1.proto3.util.initPartial(data, this);
1908
+ }
1909
+ static runtime = protobuf_1.proto3;
1910
+ static typeName = "Scailo.EnclaveDomainsFilterReq";
1911
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
1912
+ { no: 1, name: "is_active", kind: "enum", T: protobuf_1.proto3.getEnumType(base_scailo_pb_js_1.BOOL_FILTER) },
1913
+ { no: 2, name: "count", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
1914
+ { no: 3, name: "offset", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1915
+ { no: 4, name: "sort_order", kind: "enum", T: protobuf_1.proto3.getEnumType(base_scailo_pb_js_1.SORT_ORDER) },
1916
+ { no: 5, name: "sort_key", kind: "enum", T: protobuf_1.proto3.getEnumType(ENCLAVE_DOMAIN_SORT_KEY) },
1917
+ { no: 101, name: "creation_timestamp_start", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1918
+ { no: 102, name: "creation_timestamp_end", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1919
+ { no: 103, name: "modification_timestamp_start", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1920
+ { no: 104, name: "modification_timestamp_end", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
1921
+ { no: 8, name: "entity_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1922
+ { no: 11, name: "domain", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1923
+ { no: 12, name: "service_addr", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1924
+ ]);
1925
+ static fromBinary(bytes, options) {
1926
+ return new EnclaveDomainsFilterReq().fromBinary(bytes, options);
1927
+ }
1928
+ static fromJson(jsonValue, options) {
1929
+ return new EnclaveDomainsFilterReq().fromJson(jsonValue, options);
1930
+ }
1931
+ static fromJsonString(jsonString, options) {
1932
+ return new EnclaveDomainsFilterReq().fromJsonString(jsonString, options);
1933
+ }
1934
+ static equals(a, b) {
1935
+ return protobuf_1.proto3.util.equals(EnclaveDomainsFilterReq, a, b);
1936
+ }
1937
+ }
1938
+ exports.EnclaveDomainsFilterReq = EnclaveDomainsFilterReq;
1939
+ /**
1940
+ *
1941
+ * Denotes the list of domains that are part of an enclave
1942
+ *
1943
+ * @generated from message Scailo.EnclaveDomainsList
1944
+ */
1945
+ class EnclaveDomainsList extends protobuf_1.Message {
1946
+ /**
1947
+ * List of domains
1948
+ *
1949
+ * @generated from field: repeated Scailo.EnclaveDomain list = 1;
1950
+ */
1951
+ list = [];
1952
+ constructor(data) {
1953
+ super();
1954
+ protobuf_1.proto3.util.initPartial(data, this);
1955
+ }
1956
+ static runtime = protobuf_1.proto3;
1957
+ static typeName = "Scailo.EnclaveDomainsList";
1958
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
1959
+ { no: 1, name: "list", kind: "message", T: EnclaveDomain, repeated: true },
1960
+ ]);
1961
+ static fromBinary(bytes, options) {
1962
+ return new EnclaveDomainsList().fromBinary(bytes, options);
1963
+ }
1964
+ static fromJson(jsonValue, options) {
1965
+ return new EnclaveDomainsList().fromJson(jsonValue, options);
1966
+ }
1967
+ static fromJsonString(jsonString, options) {
1968
+ return new EnclaveDomainsList().fromJsonString(jsonString, options);
1969
+ }
1970
+ static equals(a, b) {
1971
+ return protobuf_1.proto3.util.equals(EnclaveDomainsList, a, b);
1972
+ }
1973
+ }
1974
+ exports.EnclaveDomainsList = EnclaveDomainsList;
1975
+ /**
1976
+ *
1977
+ * The response that contains the default domain suffix that is used for creating enclave domains
1978
+ *
1979
+ * @generated from message Scailo.EnclaveDomainSuffixResp
1980
+ */
1981
+ class EnclaveDomainSuffixResp extends protobuf_1.Message {
1982
+ /**
1983
+ * The suffix that is used
1984
+ *
1985
+ * @generated from field: string suffix = 1;
1986
+ */
1987
+ suffix = "";
1988
+ constructor(data) {
1989
+ super();
1990
+ protobuf_1.proto3.util.initPartial(data, this);
1991
+ }
1992
+ static runtime = protobuf_1.proto3;
1993
+ static typeName = "Scailo.EnclaveDomainSuffixResp";
1994
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
1995
+ { no: 1, name: "suffix", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1996
+ ]);
1997
+ static fromBinary(bytes, options) {
1998
+ return new EnclaveDomainSuffixResp().fromBinary(bytes, options);
1999
+ }
2000
+ static fromJson(jsonValue, options) {
2001
+ return new EnclaveDomainSuffixResp().fromJson(jsonValue, options);
2002
+ }
2003
+ static fromJsonString(jsonString, options) {
2004
+ return new EnclaveDomainSuffixResp().fromJsonString(jsonString, options);
2005
+ }
2006
+ static equals(a, b) {
2007
+ return protobuf_1.proto3.util.equals(EnclaveDomainSuffixResp, a, b);
2008
+ }
2009
+ }
2010
+ exports.EnclaveDomainSuffixResp = EnclaveDomainSuffixResp;
1686
2011
  /**
1687
2012
  * @generated from message Scailo.VaultSearchReq
1688
2013
  */
@@ -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, IdentifierResponse, IdentifierUUID, IdentifierZeroable, StandardFile } from "./base.scailo_pb.js";
4
- import { 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";
3
+ import { BooleanResponse, CountResponse, Empty, Identifier, IdentifierResponse, IdentifierUUID, IdentifierZeroable, StandardFile } from "./base.scailo_pb.js";
4
+ import { EnclaveDomain, EnclaveDomainAddRequest, EnclaveDomainsFilterReq, EnclaveDomainsList, EnclaveDomainSuffixResp, 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";
@@ -690,6 +690,72 @@ export declare const VaultService: {
690
690
  readonly O: typeof EnclaveEnvironmentVariablesList;
691
691
  readonly kind: MethodKind.Unary;
692
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
+ * Retrieve the default domain suffix that could be used for creating a new domain
739
+ *
740
+ * @generated from rpc Scailo.VaultService.ViewDomainSuffix
741
+ */
742
+ readonly viewDomainSuffix: {
743
+ readonly name: "ViewDomainSuffix";
744
+ readonly I: typeof Empty;
745
+ readonly O: typeof EnclaveDomainSuffixResp;
746
+ readonly kind: MethodKind.Unary;
747
+ };
748
+ /**
749
+ * Filter all domains that match the given filter criteria
750
+ *
751
+ * @generated from rpc Scailo.VaultService.FilterEnclaveDomains
752
+ */
753
+ readonly filterEnclaveDomains: {
754
+ readonly name: "FilterEnclaveDomains";
755
+ readonly I: typeof EnclaveDomainsFilterReq;
756
+ readonly O: typeof EnclaveDomainsList;
757
+ readonly kind: MethodKind.Unary;
758
+ };
693
759
  };
694
760
  };
695
761
  //# 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,kBAAkB,EAAE,cAAc,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACvJ,OAAO,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;AAC/iB,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;;;;;;;;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,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC9J,OAAO,EAAE,aAAa,EAAE,uBAAuB,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,uBAAuB,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;AAC7pB,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;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}