@kernelminds/scailo-sdk 0.1.12 → 0.1.14

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.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.EnclaveManifestEnvVariable = 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;
7
+ exports.VaultAccessLogsList = exports.VaultAccessLogCreateRequest = exports.VaultAccessLog = exports.VaultDuplicateCheckReq = exports.VaultSearchResponsesList = exports.VaultSearchResponse = exports.VaultSearchReq = exports.EnclaveFrameSetupList = exports.EnclaveFrameSetup = exports.EnclaveFrame = exports.EnclaveFrameUpdateRequest = exports.EnclaveFrameAddRequest = 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.EnclaveManifestEnvVariable = 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
  /**
@@ -2079,6 +2079,354 @@ class EnclaveDomainSuffixResp extends protobuf_1.Message {
2079
2079
  }
2080
2080
  }
2081
2081
  exports.EnclaveDomainSuffixResp = EnclaveDomainSuffixResp;
2082
+ /**
2083
+ *
2084
+ * Stores the payload that is necessary to create a custom frame for an enclave
2085
+ *
2086
+ * @generated from message Scailo.EnclaveFrameAddRequest
2087
+ */
2088
+ class EnclaveFrameAddRequest extends protobuf_1.Message {
2089
+ /**
2090
+ * The UUID of the enclave file that will be updated with the given frame
2091
+ *
2092
+ * @generated from field: string file_uuid = 1;
2093
+ */
2094
+ fileUuid = "";
2095
+ /**
2096
+ * The sequence number of the frame
2097
+ *
2098
+ * @generated from field: uint64 sequence_number = 10;
2099
+ */
2100
+ sequenceNumber = protobuf_1.protoInt64.zero;
2101
+ /**
2102
+ * The time in seconds after which the frame needs to be refreshed. O denotes no auto refresh.
2103
+ *
2104
+ * @generated from field: uint64 auto_refresh_interval = 11;
2105
+ */
2106
+ autoRefreshInterval = protobuf_1.protoInt64.zero;
2107
+ /**
2108
+ * The width of the frame, with the possible values being 3, 4, 6, 8, 9, and 12
2109
+ *
2110
+ * @generated from field: uint64 width = 12;
2111
+ */
2112
+ width = protobuf_1.protoInt64.zero;
2113
+ /**
2114
+ * The height of the frame in vh (viewport height)
2115
+ *
2116
+ * @generated from field: uint64 height = 13;
2117
+ */
2118
+ height = protobuf_1.protoInt64.zero;
2119
+ constructor(data) {
2120
+ super();
2121
+ protobuf_1.proto3.util.initPartial(data, this);
2122
+ }
2123
+ static runtime = protobuf_1.proto3;
2124
+ static typeName = "Scailo.EnclaveFrameAddRequest";
2125
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
2126
+ { no: 1, name: "file_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2127
+ { no: 10, name: "sequence_number", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2128
+ { no: 11, name: "auto_refresh_interval", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2129
+ { no: 12, name: "width", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2130
+ { no: 13, name: "height", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2131
+ ]);
2132
+ static fromBinary(bytes, options) {
2133
+ return new EnclaveFrameAddRequest().fromBinary(bytes, options);
2134
+ }
2135
+ static fromJson(jsonValue, options) {
2136
+ return new EnclaveFrameAddRequest().fromJson(jsonValue, options);
2137
+ }
2138
+ static fromJsonString(jsonString, options) {
2139
+ return new EnclaveFrameAddRequest().fromJsonString(jsonString, options);
2140
+ }
2141
+ static equals(a, b) {
2142
+ return protobuf_1.proto3.util.equals(EnclaveFrameAddRequest, a, b);
2143
+ }
2144
+ }
2145
+ exports.EnclaveFrameAddRequest = EnclaveFrameAddRequest;
2146
+ /**
2147
+ *
2148
+ * Stores the payload that is necessary to update a custom frame for an enclave
2149
+ *
2150
+ * @generated from message Scailo.EnclaveFrameUpdateRequest
2151
+ */
2152
+ class EnclaveFrameUpdateRequest extends protobuf_1.Message {
2153
+ /**
2154
+ * The UUID of the frame that needs to be updated
2155
+ *
2156
+ * @generated from field: string uuid = 1;
2157
+ */
2158
+ uuid = "";
2159
+ /**
2160
+ * The sequence number of the frame
2161
+ *
2162
+ * @generated from field: uint64 sequence_number = 10;
2163
+ */
2164
+ sequenceNumber = protobuf_1.protoInt64.zero;
2165
+ /**
2166
+ * The time in seconds after which the frame needs to be refreshed
2167
+ *
2168
+ * @generated from field: uint64 auto_refresh_interval = 11;
2169
+ */
2170
+ autoRefreshInterval = protobuf_1.protoInt64.zero;
2171
+ /**
2172
+ * The width of the frame, with the possible values being 3, 4, 6, 8, 9, and 12
2173
+ *
2174
+ * @generated from field: uint64 width = 12;
2175
+ */
2176
+ width = protobuf_1.protoInt64.zero;
2177
+ /**
2178
+ * The height of the frame in vh (viewport height)
2179
+ *
2180
+ * @generated from field: uint64 height = 13;
2181
+ */
2182
+ height = protobuf_1.protoInt64.zero;
2183
+ constructor(data) {
2184
+ super();
2185
+ protobuf_1.proto3.util.initPartial(data, this);
2186
+ }
2187
+ static runtime = protobuf_1.proto3;
2188
+ static typeName = "Scailo.EnclaveFrameUpdateRequest";
2189
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
2190
+ { no: 1, name: "uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2191
+ { no: 10, name: "sequence_number", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2192
+ { no: 11, name: "auto_refresh_interval", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2193
+ { no: 12, name: "width", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2194
+ { no: 13, name: "height", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2195
+ ]);
2196
+ static fromBinary(bytes, options) {
2197
+ return new EnclaveFrameUpdateRequest().fromBinary(bytes, options);
2198
+ }
2199
+ static fromJson(jsonValue, options) {
2200
+ return new EnclaveFrameUpdateRequest().fromJson(jsonValue, options);
2201
+ }
2202
+ static fromJsonString(jsonString, options) {
2203
+ return new EnclaveFrameUpdateRequest().fromJsonString(jsonString, options);
2204
+ }
2205
+ static equals(a, b) {
2206
+ return protobuf_1.proto3.util.equals(EnclaveFrameUpdateRequest, a, b);
2207
+ }
2208
+ }
2209
+ exports.EnclaveFrameUpdateRequest = EnclaveFrameUpdateRequest;
2210
+ /**
2211
+ *
2212
+ * Denotes an individual frame that is part of an enclave
2213
+ *
2214
+ * @generated from message Scailo.EnclaveFrame
2215
+ */
2216
+ class EnclaveFrame extends protobuf_1.Message {
2217
+ /**
2218
+ * Stores a globally unique entity UUID. This will be set at the organization level
2219
+ *
2220
+ * @generated from field: string entity_uuid = 1;
2221
+ */
2222
+ entityUuid = "";
2223
+ /**
2224
+ * Stores the metadata of this user
2225
+ *
2226
+ * @generated from field: Scailo.EmployeeMetadata metadata = 2;
2227
+ */
2228
+ metadata;
2229
+ /**
2230
+ * Stores the ID of the user that the frame belongs to
2231
+ *
2232
+ * @generated from field: uint64 user_id = 10;
2233
+ */
2234
+ userId = protobuf_1.protoInt64.zero;
2235
+ /**
2236
+ * Stores the ID of the file that is used to render the frame
2237
+ *
2238
+ * @generated from field: uint64 vault_file_id = 11;
2239
+ */
2240
+ vaultFileId = protobuf_1.protoInt64.zero;
2241
+ /**
2242
+ * The sequence number of the frame
2243
+ *
2244
+ * @generated from field: uint64 sequence_number = 20;
2245
+ */
2246
+ sequenceNumber = protobuf_1.protoInt64.zero;
2247
+ /**
2248
+ * The time in seconds after which the frame needs to be refreshed
2249
+ *
2250
+ * @generated from field: uint64 auto_refresh_interval = 21;
2251
+ */
2252
+ autoRefreshInterval = protobuf_1.protoInt64.zero;
2253
+ /**
2254
+ * The width of the frame, with the possible values being 3, 4, 6, 8, 9, and 12
2255
+ *
2256
+ * @generated from field: uint64 width = 22;
2257
+ */
2258
+ width = protobuf_1.protoInt64.zero;
2259
+ /**
2260
+ * The height of the frame in vh (viewport height)
2261
+ *
2262
+ * @generated from field: uint64 height = 23;
2263
+ */
2264
+ height = protobuf_1.protoInt64.zero;
2265
+ constructor(data) {
2266
+ super();
2267
+ protobuf_1.proto3.util.initPartial(data, this);
2268
+ }
2269
+ static runtime = protobuf_1.proto3;
2270
+ static typeName = "Scailo.EnclaveFrame";
2271
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
2272
+ { no: 1, name: "entity_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2273
+ { no: 2, name: "metadata", kind: "message", T: base_scailo_pb_js_1.EmployeeMetadata },
2274
+ { no: 10, name: "user_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2275
+ { no: 11, name: "vault_file_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2276
+ { no: 20, name: "sequence_number", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2277
+ { no: 21, name: "auto_refresh_interval", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2278
+ { no: 22, name: "width", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2279
+ { no: 23, name: "height", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2280
+ ]);
2281
+ static fromBinary(bytes, options) {
2282
+ return new EnclaveFrame().fromBinary(bytes, options);
2283
+ }
2284
+ static fromJson(jsonValue, options) {
2285
+ return new EnclaveFrame().fromJson(jsonValue, options);
2286
+ }
2287
+ static fromJsonString(jsonString, options) {
2288
+ return new EnclaveFrame().fromJsonString(jsonString, options);
2289
+ }
2290
+ static equals(a, b) {
2291
+ return protobuf_1.proto3.util.equals(EnclaveFrame, a, b);
2292
+ }
2293
+ }
2294
+ exports.EnclaveFrame = EnclaveFrame;
2295
+ /**
2296
+ *
2297
+ * Describes the data that is returned after setting up a frame
2298
+ *
2299
+ * @generated from message Scailo.EnclaveFrameSetup
2300
+ */
2301
+ class EnclaveFrameSetup extends protobuf_1.Message {
2302
+ /**
2303
+ * Stores a globally unique entity UUID. This will be set at the organization level
2304
+ *
2305
+ * @generated from field: string entity_uuid = 1;
2306
+ */
2307
+ entityUuid = "";
2308
+ /**
2309
+ * Stores the expiry timestamp of the frame
2310
+ *
2311
+ * @generated from field: uint64 expires_at = 10;
2312
+ */
2313
+ expiresAt = protobuf_1.protoInt64.zero;
2314
+ /**
2315
+ * Stores the unique identifier of the application
2316
+ *
2317
+ * @generated from field: string enclave_name = 12;
2318
+ */
2319
+ enclaveName = "";
2320
+ /**
2321
+ * Stores the endpoint of the application execution
2322
+ *
2323
+ * @generated from field: string app_endpoint = 13;
2324
+ */
2325
+ appEndpoint = "";
2326
+ /**
2327
+ * Stores the UUID of the enclave frame
2328
+ *
2329
+ * @generated from field: string enclave_frame_uuid = 20;
2330
+ */
2331
+ enclaveFrameUuid = "";
2332
+ /**
2333
+ * Stores the UUID of the file
2334
+ *
2335
+ * @generated from field: string file_uuid = 21;
2336
+ */
2337
+ fileUuid = "";
2338
+ /**
2339
+ * The sequence number of the frame
2340
+ *
2341
+ * @generated from field: uint64 sequence_number = 30;
2342
+ */
2343
+ sequenceNumber = protobuf_1.protoInt64.zero;
2344
+ /**
2345
+ * The time in seconds after which the frame needs to be refreshed
2346
+ *
2347
+ * @generated from field: uint64 auto_refresh_interval = 31;
2348
+ */
2349
+ autoRefreshInterval = protobuf_1.protoInt64.zero;
2350
+ /**
2351
+ * The width of the frame, with the possible values being 3, 4, 6, 8, 9, and 12
2352
+ *
2353
+ * @generated from field: uint64 width = 32;
2354
+ */
2355
+ width = protobuf_1.protoInt64.zero;
2356
+ /**
2357
+ * The height of the frame in vh (viewport height)
2358
+ *
2359
+ * @generated from field: uint64 height = 33;
2360
+ */
2361
+ height = protobuf_1.protoInt64.zero;
2362
+ constructor(data) {
2363
+ super();
2364
+ protobuf_1.proto3.util.initPartial(data, this);
2365
+ }
2366
+ static runtime = protobuf_1.proto3;
2367
+ static typeName = "Scailo.EnclaveFrameSetup";
2368
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
2369
+ { no: 1, name: "entity_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2370
+ { no: 10, name: "expires_at", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2371
+ { no: 12, name: "enclave_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2372
+ { no: 13, name: "app_endpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2373
+ { no: 20, name: "enclave_frame_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2374
+ { no: 21, name: "file_uuid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2375
+ { no: 30, name: "sequence_number", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2376
+ { no: 31, name: "auto_refresh_interval", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2377
+ { no: 32, name: "width", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2378
+ { no: 33, name: "height", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
2379
+ ]);
2380
+ static fromBinary(bytes, options) {
2381
+ return new EnclaveFrameSetup().fromBinary(bytes, options);
2382
+ }
2383
+ static fromJson(jsonValue, options) {
2384
+ return new EnclaveFrameSetup().fromJson(jsonValue, options);
2385
+ }
2386
+ static fromJsonString(jsonString, options) {
2387
+ return new EnclaveFrameSetup().fromJsonString(jsonString, options);
2388
+ }
2389
+ static equals(a, b) {
2390
+ return protobuf_1.proto3.util.equals(EnclaveFrameSetup, a, b);
2391
+ }
2392
+ }
2393
+ exports.EnclaveFrameSetup = EnclaveFrameSetup;
2394
+ /**
2395
+ *
2396
+ * Describes the list of enclave frames that have been setup
2397
+ *
2398
+ * @generated from message Scailo.EnclaveFrameSetupList
2399
+ */
2400
+ class EnclaveFrameSetupList extends protobuf_1.Message {
2401
+ /**
2402
+ * List of setup frames
2403
+ *
2404
+ * @generated from field: repeated Scailo.EnclaveFrameSetup list = 1;
2405
+ */
2406
+ list = [];
2407
+ constructor(data) {
2408
+ super();
2409
+ protobuf_1.proto3.util.initPartial(data, this);
2410
+ }
2411
+ static runtime = protobuf_1.proto3;
2412
+ static typeName = "Scailo.EnclaveFrameSetupList";
2413
+ static fields = protobuf_1.proto3.util.newFieldList(() => [
2414
+ { no: 1, name: "list", kind: "message", T: EnclaveFrameSetup, repeated: true },
2415
+ ]);
2416
+ static fromBinary(bytes, options) {
2417
+ return new EnclaveFrameSetupList().fromBinary(bytes, options);
2418
+ }
2419
+ static fromJson(jsonValue, options) {
2420
+ return new EnclaveFrameSetupList().fromJson(jsonValue, options);
2421
+ }
2422
+ static fromJsonString(jsonString, options) {
2423
+ return new EnclaveFrameSetupList().fromJsonString(jsonString, options);
2424
+ }
2425
+ static equals(a, b) {
2426
+ return protobuf_1.proto3.util.equals(EnclaveFrameSetupList, a, b);
2427
+ }
2428
+ }
2429
+ exports.EnclaveFrameSetupList = EnclaveFrameSetupList;
2082
2430
  /**
2083
2431
  * @generated from message Scailo.VaultSearchReq
2084
2432
  */
@@ -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
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";
4
+ import { EnclaveDomain, EnclaveDomainAddRequest, EnclaveDomainsFilterReq, EnclaveDomainsList, EnclaveDomainSuffixResp, EnclaveEnvironmentVariable, EnclaveEnvironmentVariableAddRequest, EnclaveEnvironmentVariablesList, EnclaveEnvironmentVariableUpdateRequest, EnclaveFrame, EnclaveFrameAddRequest, EnclaveFrameSetup, EnclaveFrameSetupList, EnclaveFrameUpdateRequest, 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";
@@ -756,6 +756,72 @@ export declare const VaultService: {
756
756
  readonly O: typeof EnclaveDomainsList;
757
757
  readonly kind: MethodKind.Unary;
758
758
  };
759
+ /**
760
+ * Adds an enclave as a dashboard frame. The file needs to be an enclave. Returns an error otherwise
761
+ *
762
+ * @generated from rpc Scailo.VaultService.AddEnclaveFrame
763
+ */
764
+ readonly addEnclaveFrame: {
765
+ readonly name: "AddEnclaveFrame";
766
+ readonly I: typeof EnclaveFrameAddRequest;
767
+ readonly O: typeof EnclaveFrame;
768
+ readonly kind: MethodKind.Unary;
769
+ };
770
+ /**
771
+ * View the properties of a frame
772
+ *
773
+ * @generated from rpc Scailo.VaultService.ViewEnclaveFrame
774
+ */
775
+ readonly viewEnclaveFrame: {
776
+ readonly name: "ViewEnclaveFrame";
777
+ readonly I: typeof IdentifierUUID;
778
+ readonly O: typeof EnclaveFrame;
779
+ readonly kind: MethodKind.Unary;
780
+ };
781
+ /**
782
+ * Update the properties of a frame
783
+ *
784
+ * @generated from rpc Scailo.VaultService.UpdateEnclaveFrame
785
+ */
786
+ readonly updateEnclaveFrame: {
787
+ readonly name: "UpdateEnclaveFrame";
788
+ readonly I: typeof EnclaveFrameUpdateRequest;
789
+ readonly O: typeof EnclaveFrame;
790
+ readonly kind: MethodKind.Unary;
791
+ };
792
+ /**
793
+ * Delete the dashboard frame
794
+ *
795
+ * @generated from rpc Scailo.VaultService.DeleteEnclaveFrame
796
+ */
797
+ readonly deleteEnclaveFrame: {
798
+ readonly name: "DeleteEnclaveFrame";
799
+ readonly I: typeof IdentifierUUID;
800
+ readonly O: typeof IdentifierResponse;
801
+ readonly kind: MethodKind.Unary;
802
+ };
803
+ /**
804
+ * Returns the endpoint that could be used to render a frame
805
+ *
806
+ * @generated from rpc Scailo.VaultService.SetupEnclaveFrame
807
+ */
808
+ readonly setupEnclaveFrame: {
809
+ readonly name: "SetupEnclaveFrame";
810
+ readonly I: typeof IdentifierUUID;
811
+ readonly O: typeof EnclaveFrameSetup;
812
+ readonly kind: MethodKind.Unary;
813
+ };
814
+ /**
815
+ * Returns all the endpoints that could be used to render frames for the identified user. This can be primary used to render all the frames on a user's dashboard, for example.
816
+ *
817
+ * @generated from rpc Scailo.VaultService.SetupAllEnclaveFrames
818
+ */
819
+ readonly setupAllEnclaveFrames: {
820
+ readonly name: "SetupAllEnclaveFrames";
821
+ readonly I: typeof Empty;
822
+ readonly O: typeof EnclaveFrameSetupList;
823
+ readonly kind: MethodKind.Unary;
824
+ };
759
825
  };
760
826
  };
761
827
  //# 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,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"}
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,YAAY,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,yBAAyB,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;AACxwB,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;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}