@evalops/sdk-ts 0.1.96 → 0.1.98
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/agentruntime/v1/runtime_pb.d.ts +1687 -208
- package/dist/agentruntime/v1/runtime_pb.js +292 -57
- package/dist/browsercontrol/v1/browser_control_pb.d.ts +565 -0
- package/dist/browsercontrol/v1/browser_control_pb.js +308 -0
- package/dist/chronicle/v1/chronicle_pb.d.ts +1524 -56
- package/dist/chronicle/v1/chronicle_pb.js +381 -20
- package/dist/connectors/v1/connectors_pb.d.ts +197 -1
- package/dist/connectors/v1/connectors_pb.js +52 -23
- package/dist/desktopcontrol/v1/desktop_control_pb.d.ts +595 -0
- package/dist/desktopcontrol/v1/desktop_control_pb.js +216 -0
- package/dist/identity/v1/devices_pb.d.ts +80 -0
- package/dist/identity/v1/devices_pb.js +15 -5
- package/dist/keys/v1/keys_pb.d.ts +56 -1
- package/dist/keys/v1/keys_pb.js +34 -2
- package/package.json +9 -1
|
@@ -94,6 +94,142 @@ export type ConnectionHealth = Message<"connectors.v1.ConnectionHealth"> & {
|
|
|
94
94
|
* Use `create(ConnectionHealthSchema)` to create a new message.
|
|
95
95
|
*/
|
|
96
96
|
export declare const ConnectionHealthSchema: GenMessage<ConnectionHealth>;
|
|
97
|
+
/**
|
|
98
|
+
* ConnectorCredentialField describes the credential reference slots accepted
|
|
99
|
+
* by a managed provider. Values are reference handles such as vault:// or
|
|
100
|
+
* gsm:// URIs, never raw credential material.
|
|
101
|
+
*
|
|
102
|
+
* @generated from message connectors.v1.ConnectorCredentialField
|
|
103
|
+
*/
|
|
104
|
+
export type ConnectorCredentialField = Message<"connectors.v1.ConnectorCredentialField"> & {
|
|
105
|
+
/**
|
|
106
|
+
* @generated from field: string name = 1;
|
|
107
|
+
*/
|
|
108
|
+
name: string;
|
|
109
|
+
/**
|
|
110
|
+
* @generated from field: string label = 2;
|
|
111
|
+
*/
|
|
112
|
+
label: string;
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: bool required = 3;
|
|
115
|
+
*/
|
|
116
|
+
required: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from field: bool secret = 4;
|
|
119
|
+
*/
|
|
120
|
+
secret: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: repeated string accepted_reference_schemes = 5;
|
|
123
|
+
*/
|
|
124
|
+
acceptedReferenceSchemes: string[];
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: string credential_type = 6;
|
|
127
|
+
*/
|
|
128
|
+
credentialType: string;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: bool versioned = 7;
|
|
131
|
+
*/
|
|
132
|
+
versioned: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: bool rotatable = 8;
|
|
135
|
+
*/
|
|
136
|
+
rotatable: boolean;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: bool revocable = 9;
|
|
139
|
+
*/
|
|
140
|
+
revocable: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from field: bool expires = 10;
|
|
143
|
+
*/
|
|
144
|
+
expires: boolean;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Describes the message connectors.v1.ConnectorCredentialField.
|
|
148
|
+
* Use `create(ConnectorCredentialFieldSchema)` to create a new message.
|
|
149
|
+
*/
|
|
150
|
+
export declare const ConnectorCredentialFieldSchema: GenMessage<ConnectorCredentialField>;
|
|
151
|
+
/**
|
|
152
|
+
* ConnectorCredentialLifecyclePolicy describes the generic credential lifecycle
|
|
153
|
+
* operations the platform can drive for a provider.
|
|
154
|
+
*
|
|
155
|
+
* @generated from message connectors.v1.ConnectorCredentialLifecyclePolicy
|
|
156
|
+
*/
|
|
157
|
+
export type ConnectorCredentialLifecyclePolicy = Message<"connectors.v1.ConnectorCredentialLifecyclePolicy"> & {
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: repeated string supported_credential_types = 1;
|
|
160
|
+
*/
|
|
161
|
+
supportedCredentialTypes: string[];
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: bool supports_versioning = 2;
|
|
164
|
+
*/
|
|
165
|
+
supportsVersioning: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* @generated from field: bool supports_rotation = 3;
|
|
168
|
+
*/
|
|
169
|
+
supportsRotation: boolean;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from field: bool supports_revocation = 4;
|
|
172
|
+
*/
|
|
173
|
+
supportsRevocation: boolean;
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: int32 rotation_notice_days = 5;
|
|
176
|
+
*/
|
|
177
|
+
rotationNoticeDays: number;
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* Describes the message connectors.v1.ConnectorCredentialLifecyclePolicy.
|
|
181
|
+
* Use `create(ConnectorCredentialLifecyclePolicySchema)` to create a new message.
|
|
182
|
+
*/
|
|
183
|
+
export declare const ConnectorCredentialLifecyclePolicySchema: GenMessage<ConnectorCredentialLifecyclePolicy>;
|
|
184
|
+
/**
|
|
185
|
+
* ConnectorProvider describes a managed connector provider that can be used to
|
|
186
|
+
* register a connection.
|
|
187
|
+
*
|
|
188
|
+
* @generated from message connectors.v1.ConnectorProvider
|
|
189
|
+
*/
|
|
190
|
+
export type ConnectorProvider = Message<"connectors.v1.ConnectorProvider"> & {
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: string id = 1;
|
|
193
|
+
*/
|
|
194
|
+
id: string;
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: string display_name = 2;
|
|
197
|
+
*/
|
|
198
|
+
displayName: string;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: connectors.v1.AuthType default_auth_type = 3;
|
|
201
|
+
*/
|
|
202
|
+
defaultAuthType: AuthType;
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: repeated string default_scopes = 4;
|
|
205
|
+
*/
|
|
206
|
+
defaultScopes: string[];
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: repeated string capabilities = 5;
|
|
209
|
+
*/
|
|
210
|
+
capabilities: string[];
|
|
211
|
+
/**
|
|
212
|
+
* @generated from field: bool supports_pkce = 6;
|
|
213
|
+
*/
|
|
214
|
+
supportsPkce: boolean;
|
|
215
|
+
/**
|
|
216
|
+
* @generated from field: bool supports_refresh = 7;
|
|
217
|
+
*/
|
|
218
|
+
supportsRefresh: boolean;
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: repeated connectors.v1.ConnectorCredentialField credential_fields = 8;
|
|
221
|
+
*/
|
|
222
|
+
credentialFields: ConnectorCredentialField[];
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: connectors.v1.ConnectorCredentialLifecyclePolicy credential_lifecycle_policy = 9;
|
|
225
|
+
*/
|
|
226
|
+
credentialLifecyclePolicy?: ConnectorCredentialLifecyclePolicy | undefined;
|
|
227
|
+
};
|
|
228
|
+
/**
|
|
229
|
+
* Describes the message connectors.v1.ConnectorProvider.
|
|
230
|
+
* Use `create(ConnectorProviderSchema)` to create a new message.
|
|
231
|
+
*/
|
|
232
|
+
export declare const ConnectorProviderSchema: GenMessage<ConnectorProvider>;
|
|
97
233
|
/**
|
|
98
234
|
* SourceOfTruthPolicy defines which connection is authoritative for a domain.
|
|
99
235
|
*
|
|
@@ -268,6 +404,54 @@ export type ListConnectionsResponse = Message<"connectors.v1.ListConnectionsResp
|
|
|
268
404
|
* Use `create(ListConnectionsResponseSchema)` to create a new message.
|
|
269
405
|
*/
|
|
270
406
|
export declare const ListConnectionsResponseSchema: GenMessage<ListConnectionsResponse>;
|
|
407
|
+
/**
|
|
408
|
+
* @generated from message connectors.v1.ListProvidersRequest
|
|
409
|
+
*/
|
|
410
|
+
export type ListProvidersRequest = Message<"connectors.v1.ListProvidersRequest"> & {
|
|
411
|
+
/**
|
|
412
|
+
* @generated from field: string query = 1;
|
|
413
|
+
*/
|
|
414
|
+
query: string;
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: connectors.v1.AuthType auth_type = 2;
|
|
417
|
+
*/
|
|
418
|
+
authType: AuthType;
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: int32 limit = 3;
|
|
421
|
+
*/
|
|
422
|
+
limit: number;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from field: int32 offset = 4;
|
|
425
|
+
*/
|
|
426
|
+
offset: number;
|
|
427
|
+
};
|
|
428
|
+
/**
|
|
429
|
+
* Describes the message connectors.v1.ListProvidersRequest.
|
|
430
|
+
* Use `create(ListProvidersRequestSchema)` to create a new message.
|
|
431
|
+
*/
|
|
432
|
+
export declare const ListProvidersRequestSchema: GenMessage<ListProvidersRequest>;
|
|
433
|
+
/**
|
|
434
|
+
* @generated from message connectors.v1.ListProvidersResponse
|
|
435
|
+
*/
|
|
436
|
+
export type ListProvidersResponse = Message<"connectors.v1.ListProvidersResponse"> & {
|
|
437
|
+
/**
|
|
438
|
+
* @generated from field: repeated connectors.v1.ConnectorProvider providers = 1;
|
|
439
|
+
*/
|
|
440
|
+
providers: ConnectorProvider[];
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: int32 total = 2;
|
|
443
|
+
*/
|
|
444
|
+
total: number;
|
|
445
|
+
/**
|
|
446
|
+
* @generated from field: string catalog_version = 3;
|
|
447
|
+
*/
|
|
448
|
+
catalogVersion: string;
|
|
449
|
+
};
|
|
450
|
+
/**
|
|
451
|
+
* Describes the message connectors.v1.ListProvidersResponse.
|
|
452
|
+
* Use `create(ListProvidersResponseSchema)` to create a new message.
|
|
453
|
+
*/
|
|
454
|
+
export declare const ListProvidersResponseSchema: GenMessage<ListProvidersResponse>;
|
|
271
455
|
/**
|
|
272
456
|
* @generated from message connectors.v1.RefreshConnectionRequest
|
|
273
457
|
*/
|
|
@@ -492,7 +676,11 @@ export declare enum AuthType {
|
|
|
492
676
|
/**
|
|
493
677
|
* @generated from enum value: AUTH_TYPE_MTLS = 4;
|
|
494
678
|
*/
|
|
495
|
-
MTLS = 4
|
|
679
|
+
MTLS = 4,
|
|
680
|
+
/**
|
|
681
|
+
* @generated from enum value: AUTH_TYPE_GITHUB_APP = 5;
|
|
682
|
+
*/
|
|
683
|
+
GITHUB_APP = 5
|
|
496
684
|
}
|
|
497
685
|
/**
|
|
498
686
|
* Describes the enum connectors.v1.AuthType.
|
|
@@ -594,6 +782,14 @@ export declare const ConnectorService: GenService<{
|
|
|
594
782
|
input: typeof ListConnectionsRequestSchema;
|
|
595
783
|
output: typeof ListConnectionsResponseSchema;
|
|
596
784
|
};
|
|
785
|
+
/**
|
|
786
|
+
* @generated from rpc connectors.v1.ConnectorService.ListProviders
|
|
787
|
+
*/
|
|
788
|
+
listProviders: {
|
|
789
|
+
methodKind: "unary";
|
|
790
|
+
input: typeof ListProvidersRequestSchema;
|
|
791
|
+
output: typeof ListProvidersResponseSchema;
|
|
792
|
+
};
|
|
597
793
|
/**
|
|
598
794
|
* @generated from rpc connectors.v1.ConnectorService.RefreshConnection
|
|
599
795
|
*/
|
|
@@ -7,7 +7,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
7
7
|
/**
|
|
8
8
|
* Describes the file connectors/v1/connectors.proto.
|
|
9
9
|
*/
|
|
10
|
-
export const file_connectors_v1_connectors = /*@__PURE__*/ fileDesc("
|
|
10
|
+
export const file_connectors_v1_connectors = /*@__PURE__*/ fileDesc("Ch5jb25uZWN0b3JzL3YxL2Nvbm5lY3RvcnMucHJvdG8SDWNvbm5lY3RvcnMudjEi3QMKCkNvbm5lY3Rpb24SCgoCaWQYASABKAkSFAoMd29ya3NwYWNlX2lkGAIgASgJEhMKC3Byb3ZpZGVyX2lkGAMgASgJEhQKDGRpc3BsYXlfbmFtZRgEIAEoCRIqCglhdXRoX3R5cGUYBSABKA4yFy5jb25uZWN0b3JzLnYxLkF1dGhUeXBlEg4KBnNjb3BlcxgGIAMoCRIyCg1oZWFsdGhfc3RhdHVzGAcgASgOMhsuY29ubmVjdG9ycy52MS5IZWFsdGhTdGF0dXMSMwoPbGFzdF9oZWFsdGh5X2F0GAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgpjcmVhdGVkX2F0GAkgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GAogASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBJGCg9jcmVkZW50aWFsX3JlZnMYCyADKAsyLS5jb25uZWN0b3JzLnYxLkNvbm5lY3Rpb24uQ3JlZGVudGlhbFJlZnNFbnRyeRo1ChNDcmVkZW50aWFsUmVmc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEinQEKEENvbm5lY3Rpb25IZWFsdGgSKwoGc3RhdHVzGAEgASgOMhsuY29ubmVjdG9ycy52MS5IZWFsdGhTdGF0dXMSEgoKbGF0ZW5jeV9tcxgCIAEoBRIxCg1sYXN0X2NoZWNrX2F0GAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIVCg1lcnJvcl9tZXNzYWdlGAQgASgJIukBChhDb25uZWN0b3JDcmVkZW50aWFsRmllbGQSFQoEbmFtZRgBIAEoCUIHukgEcgIQARINCgVsYWJlbBgCIAEoCRIQCghyZXF1aXJlZBgDIAEoCBIOCgZzZWNyZXQYBCABKAgSIgoaYWNjZXB0ZWRfcmVmZXJlbmNlX3NjaGVtZXMYBSADKAkSFwoPY3JlZGVudGlhbF90eXBlGAYgASgJEhEKCXZlcnNpb25lZBgHIAEoCBIRCglyb3RhdGFibGUYCCABKAgSEQoJcmV2b2NhYmxlGAkgASgIEg8KB2V4cGlyZXMYCiABKAgixAEKIkNvbm5lY3RvckNyZWRlbnRpYWxMaWZlY3ljbGVQb2xpY3kSIgoac3VwcG9ydGVkX2NyZWRlbnRpYWxfdHlwZXMYASADKAkSGwoTc3VwcG9ydHNfdmVyc2lvbmluZxgCIAEoCBIZChFzdXBwb3J0c19yb3RhdGlvbhgDIAEoCBIbChNzdXBwb3J0c19yZXZvY2F0aW9uGAQgASgIEiUKFHJvdGF0aW9uX25vdGljZV9kYXlzGAUgASgFQge6SAQaAigAIvcCChFDb25uZWN0b3JQcm92aWRlchITCgJpZBgBIAEoCUIHukgEcgIQARIUCgxkaXNwbGF5X25hbWUYAiABKAkSPAoRZGVmYXVsdF9hdXRoX3R5cGUYAyABKA4yFy5jb25uZWN0b3JzLnYxLkF1dGhUeXBlQgi6SAWCAQIQARIWCg5kZWZhdWx0X3Njb3BlcxgEIAMoCRIUCgxjYXBhYmlsaXRpZXMYBSADKAkSFQoNc3VwcG9ydHNfcGtjZRgGIAEoCBIYChBzdXBwb3J0c19yZWZyZXNoGAcgASgIEkIKEWNyZWRlbnRpYWxfZmllbGRzGAggAygLMicuY29ubmVjdG9ycy52MS5Db25uZWN0b3JDcmVkZW50aWFsRmllbGQSVgobY3JlZGVudGlhbF9saWZlY3ljbGVfcG9saWN5GAkgASgLMjEuY29ubmVjdG9ycy52MS5Db25uZWN0b3JDcmVkZW50aWFsTGlmZWN5Y2xlUG9saWN5IqwBChNTb3VyY2VPZlRydXRoUG9saWN5Eh0KDHdvcmtzcGFjZV9pZBgBIAEoCUIHukgEcgIQARIuCgRhcmVhGAIgASgOMiAuY29ubmVjdG9ycy52MS5Tb3VyY2VPZlRydXRoQXJlYRImChVwcmltYXJ5X2Nvbm5lY3Rpb25faWQYAyABKAlCB7pIBHICEAESHgoWZmFsbGJhY2tfY29ubmVjdGlvbl9pZBgEIAEoCSJ4ChJEZWdyYWRlZFJlYWRQb2xpY3kSDAoEbW9kZRgBIAEoCRIcChRhbGxvd2VkX2ludGVncmF0aW9ucxgCIAMoCRIXCg9tYXhfYWdlX21pbnV0ZXMYAyABKAUSHQoVcXVldWVfcHJpbWFyeV9yZWZyZXNoGAQgASgIIq4CChlSZWdpc3RlckNvbm5lY3Rpb25SZXF1ZXN0Eh0KDHdvcmtzcGFjZV9pZBgBIAEoCUIHukgEcgIQARIcCgtwcm92aWRlcl9pZBgCIAEoCUIHukgEcgIQARIUCgxkaXNwbGF5X25hbWUYAyABKAkSKgoJYXV0aF90eXBlGAQgASgOMhcuY29ubmVjdG9ycy52MS5BdXRoVHlwZRIOCgZzY29wZXMYBSADKAkSTgoLY3JlZGVudGlhbHMYBiADKAsyOS5jb25uZWN0b3JzLnYxLlJlZ2lzdGVyQ29ubmVjdGlvblJlcXVlc3QuQ3JlZGVudGlhbHNFbnRyeRoyChBDcmVkZW50aWFsc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEiSwoaUmVnaXN0ZXJDb25uZWN0aW9uUmVzcG9uc2USLQoKY29ubmVjdGlvbhgBIAEoCzIZLmNvbm5lY3RvcnMudjEuQ29ubmVjdGlvbiIrChRHZXRDb25uZWN0aW9uUmVxdWVzdBITCgJpZBgBIAEoCUIHukgEcgIQASJGChVHZXRDb25uZWN0aW9uUmVzcG9uc2USLQoKY29ubmVjdGlvbhgBIAEoCzIZLmNvbm5lY3RvcnMudjEuQ29ubmVjdGlvbiJrChZMaXN0Q29ubmVjdGlvbnNSZXF1ZXN0Eh0KDHdvcmtzcGFjZV9pZBgBIAEoCUIHukgEcgIQARIZCgVsaW1pdBgCIAEoBUIKukgHGgUYyAEoABIXCgZvZmZzZXQYAyABKAVCB7pIBBoCKAAiWAoXTGlzdENvbm5lY3Rpb25zUmVzcG9uc2USLgoLY29ubmVjdGlvbnMYASADKAsyGS5jb25uZWN0b3JzLnYxLkNvbm5lY3Rpb24SDQoFdG90YWwYAiABKAUijwEKFExpc3RQcm92aWRlcnNSZXF1ZXN0Eg0KBXF1ZXJ5GAEgASgJEjQKCWF1dGhfdHlwZRgCIAEoDjIXLmNvbm5lY3RvcnMudjEuQXV0aFR5cGVCCLpIBYIBAhABEhkKBWxpbWl0GAMgASgFQgq6SAcaBRjIASgAEhcKBm9mZnNldBgEIAEoBUIHukgEGgIoACJ9ChVMaXN0UHJvdmlkZXJzUmVzcG9uc2USMwoJcHJvdmlkZXJzGAEgAygLMiAuY29ubmVjdG9ycy52MS5Db25uZWN0b3JQcm92aWRlchIWCgV0b3RhbBgCIAEoBUIHukgEGgIoABIXCg9jYXRhbG9nX3ZlcnNpb24YAyABKAkiLwoYUmVmcmVzaENvbm5lY3Rpb25SZXF1ZXN0EhMKAmlkGAEgASgJQge6SARyAhABIkoKGVJlZnJlc2hDb25uZWN0aW9uUmVzcG9uc2USLQoKY29ubmVjdGlvbhgBIAEoCzIZLmNvbm5lY3RvcnMudjEuQ29ubmVjdGlvbiIuChdSZXZva2VDb25uZWN0aW9uUmVxdWVzdBITCgJpZBgBIAEoCUIHukgEcgIQASIaChhSZXZva2VDb25uZWN0aW9uUmVzcG9uc2UiMgoQR2V0SGVhbHRoUmVxdWVzdBIeCg1jb25uZWN0aW9uX2lkGAEgASgJQge6SARyAhABIkQKEUdldEhlYWx0aFJlc3BvbnNlEi8KBmhlYWx0aBgBIAEoCzIfLmNvbm5lY3RvcnMudjEuQ29ubmVjdGlvbkhlYWx0aCJsChtSZXNvbHZlU291cmNlT2ZUcnV0aFJlcXVlc3QSHQoMd29ya3NwYWNlX2lkGAEgASgJQge6SARyAhABEi4KBGFyZWEYAiABKA4yIC5jb25uZWN0b3JzLnYxLlNvdXJjZU9mVHJ1dGhBcmVhIokBChxSZXNvbHZlU291cmNlT2ZUcnV0aFJlc3BvbnNlEjIKBnBvbGljeRgBIAEoCzIiLmNvbm5lY3RvcnMudjEuU291cmNlT2ZUcnV0aFBvbGljeRI1ChJwcmltYXJ5X2Nvbm5lY3Rpb24YAiABKAsyGS5jb25uZWN0b3JzLnYxLkNvbm5lY3Rpb24iPQocR2V0RGVncmFkZWRSZWFkUG9saWN5UmVxdWVzdBIdCgx3b3Jrc3BhY2VfaWQYASABKAlCB7pIBHICEAEiUgodR2V0RGVncmFkZWRSZWFkUG9saWN5UmVzcG9uc2USMQoGcG9saWN5GAEgASgLMiEuY29ubmVjdG9ycy52MS5EZWdyYWRlZFJlYWRQb2xpY3kiWwodU2V0U291cmNlT2ZUcnV0aFBvbGljeVJlcXVlc3QSOgoGcG9saWN5GAEgASgLMiIuY29ubmVjdG9ycy52MS5Tb3VyY2VPZlRydXRoUG9saWN5Qga6SAPIAQEiVAoeU2V0U291cmNlT2ZUcnV0aFBvbGljeVJlc3BvbnNlEjIKBnBvbGljeRgBIAEoCzIiLmNvbm5lY3RvcnMudjEuU291cmNlT2ZUcnV0aFBvbGljeSI4ChZHZXRDYXBhYmlsaXRpZXNSZXF1ZXN0Eh4KDWNvbm5lY3Rpb25faWQYASABKAlCB7pIBHICEAEiLwoXR2V0Q2FwYWJpbGl0aWVzUmVzcG9uc2USFAoMY2FwYWJpbGl0aWVzGAEgAygJKpUBCghBdXRoVHlwZRIZChVBVVRIX1RZUEVfVU5TUEVDSUZJRUQQABIUChBBVVRIX1RZUEVfT0FVVEgyEAESFQoRQVVUSF9UWVBFX0FQSV9LRVkQAhITCg9BVVRIX1RZUEVfQkFTSUMQAxISCg5BVVRIX1RZUEVfTVRMUxAEEhgKFEFVVEhfVFlQRV9HSVRIVUJfQVBQEAUqnAEKDEhlYWx0aFN0YXR1cxIdChlIRUFMVEhfU1RBVFVTX1VOU1BFQ0lGSUVEEAASGQoVSEVBTFRIX1NUQVRVU19IRUFMVEhZEAESGgoWSEVBTFRIX1NUQVRVU19ERUdSQURFRBACEhsKF0hFQUxUSF9TVEFUVVNfVU5IRUFMVEhZEAMSGQoVSEVBTFRIX1NUQVRVU19VTktOT1dOEAQq3gEKEVNvdXJjZU9mVHJ1dGhBcmVhEiQKIFNPVVJDRV9PRl9UUlVUSF9BUkVBX1VOU1BFQ0lGSUVEEAASHAoYU09VUkNFX09GX1RSVVRIX0FSRUFfQ1JNEAESIAocU09VUkNFX09GX1RSVVRIX0FSRUFfU1VQUE9SVBACEiAKHFNPVVJDRV9PRl9UUlVUSF9BUkVBX0JJTExJTkcQAxIiCh5TT1VSQ0VfT0ZfVFJVVEhfQVJFQV9BTkFMWVRJQ1MQBBIdChlTT1VSQ0VfT0ZfVFJVVEhfQVJFQV9IUklTEAUy8ggKEENvbm5lY3RvclNlcnZpY2USaQoSUmVnaXN0ZXJDb25uZWN0aW9uEiguY29ubmVjdG9ycy52MS5SZWdpc3RlckNvbm5lY3Rpb25SZXF1ZXN0GikuY29ubmVjdG9ycy52MS5SZWdpc3RlckNvbm5lY3Rpb25SZXNwb25zZRJaCg1HZXRDb25uZWN0aW9uEiMuY29ubmVjdG9ycy52MS5HZXRDb25uZWN0aW9uUmVxdWVzdBokLmNvbm5lY3RvcnMudjEuR2V0Q29ubmVjdGlvblJlc3BvbnNlEmAKD0xpc3RDb25uZWN0aW9ucxIlLmNvbm5lY3RvcnMudjEuTGlzdENvbm5lY3Rpb25zUmVxdWVzdBomLmNvbm5lY3RvcnMudjEuTGlzdENvbm5lY3Rpb25zUmVzcG9uc2USWgoNTGlzdFByb3ZpZGVycxIjLmNvbm5lY3RvcnMudjEuTGlzdFByb3ZpZGVyc1JlcXVlc3QaJC5jb25uZWN0b3JzLnYxLkxpc3RQcm92aWRlcnNSZXNwb25zZRJmChFSZWZyZXNoQ29ubmVjdGlvbhInLmNvbm5lY3RvcnMudjEuUmVmcmVzaENvbm5lY3Rpb25SZXF1ZXN0GiguY29ubmVjdG9ycy52MS5SZWZyZXNoQ29ubmVjdGlvblJlc3BvbnNlEmMKEFJldm9rZUNvbm5lY3Rpb24SJi5jb25uZWN0b3JzLnYxLlJldm9rZUNvbm5lY3Rpb25SZXF1ZXN0GicuY29ubmVjdG9ycy52MS5SZXZva2VDb25uZWN0aW9uUmVzcG9uc2USTgoJR2V0SGVhbHRoEh8uY29ubmVjdG9ycy52MS5HZXRIZWFsdGhSZXF1ZXN0GiAuY29ubmVjdG9ycy52MS5HZXRIZWFsdGhSZXNwb25zZRJvChRSZXNvbHZlU291cmNlT2ZUcnV0aBIqLmNvbm5lY3RvcnMudjEuUmVzb2x2ZVNvdXJjZU9mVHJ1dGhSZXF1ZXN0GisuY29ubmVjdG9ycy52MS5SZXNvbHZlU291cmNlT2ZUcnV0aFJlc3BvbnNlEnIKFUdldERlZ3JhZGVkUmVhZFBvbGljeRIrLmNvbm5lY3RvcnMudjEuR2V0RGVncmFkZWRSZWFkUG9saWN5UmVxdWVzdBosLmNvbm5lY3RvcnMudjEuR2V0RGVncmFkZWRSZWFkUG9saWN5UmVzcG9uc2USdQoWU2V0U291cmNlT2ZUcnV0aFBvbGljeRIsLmNvbm5lY3RvcnMudjEuU2V0U291cmNlT2ZUcnV0aFBvbGljeVJlcXVlc3QaLS5jb25uZWN0b3JzLnYxLlNldFNvdXJjZU9mVHJ1dGhQb2xpY3lSZXNwb25zZRJgCg9HZXRDYXBhYmlsaXRpZXMSJS5jb25uZWN0b3JzLnYxLkdldENhcGFiaWxpdGllc1JlcXVlc3QaJi5jb25uZWN0b3JzLnYxLkdldENhcGFiaWxpdGllc1Jlc3BvbnNlQj9aPWdpdGh1Yi5jb20vZXZhbG9wcy9wbGF0Zm9ybS9nZW4vZ28vY29ubmVjdG9ycy92MTtjb25uZWN0b3JzdjFiBnByb3RvMw", [file_buf_validate_validate, file_google_protobuf_timestamp]);
|
|
11
11
|
/**
|
|
12
12
|
* Describes the message connectors.v1.Connection.
|
|
13
13
|
* Use `create(ConnectionSchema)` to create a new message.
|
|
@@ -18,116 +18,141 @@ export const ConnectionSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_con
|
|
|
18
18
|
* Use `create(ConnectionHealthSchema)` to create a new message.
|
|
19
19
|
*/
|
|
20
20
|
export const ConnectionHealthSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 1);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message connectors.v1.ConnectorCredentialField.
|
|
23
|
+
* Use `create(ConnectorCredentialFieldSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const ConnectorCredentialFieldSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 2);
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message connectors.v1.ConnectorCredentialLifecyclePolicy.
|
|
28
|
+
* Use `create(ConnectorCredentialLifecyclePolicySchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const ConnectorCredentialLifecyclePolicySchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 3);
|
|
31
|
+
/**
|
|
32
|
+
* Describes the message connectors.v1.ConnectorProvider.
|
|
33
|
+
* Use `create(ConnectorProviderSchema)` to create a new message.
|
|
34
|
+
*/
|
|
35
|
+
export const ConnectorProviderSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 4);
|
|
21
36
|
/**
|
|
22
37
|
* Describes the message connectors.v1.SourceOfTruthPolicy.
|
|
23
38
|
* Use `create(SourceOfTruthPolicySchema)` to create a new message.
|
|
24
39
|
*/
|
|
25
|
-
export const SourceOfTruthPolicySchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
40
|
+
export const SourceOfTruthPolicySchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 5);
|
|
26
41
|
/**
|
|
27
42
|
* Describes the message connectors.v1.DegradedReadPolicy.
|
|
28
43
|
* Use `create(DegradedReadPolicySchema)` to create a new message.
|
|
29
44
|
*/
|
|
30
|
-
export const DegradedReadPolicySchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
45
|
+
export const DegradedReadPolicySchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 6);
|
|
31
46
|
/**
|
|
32
47
|
* Describes the message connectors.v1.RegisterConnectionRequest.
|
|
33
48
|
* Use `create(RegisterConnectionRequestSchema)` to create a new message.
|
|
34
49
|
*/
|
|
35
|
-
export const RegisterConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
50
|
+
export const RegisterConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 7);
|
|
36
51
|
/**
|
|
37
52
|
* Describes the message connectors.v1.RegisterConnectionResponse.
|
|
38
53
|
* Use `create(RegisterConnectionResponseSchema)` to create a new message.
|
|
39
54
|
*/
|
|
40
|
-
export const RegisterConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
55
|
+
export const RegisterConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 8);
|
|
41
56
|
/**
|
|
42
57
|
* Describes the message connectors.v1.GetConnectionRequest.
|
|
43
58
|
* Use `create(GetConnectionRequestSchema)` to create a new message.
|
|
44
59
|
*/
|
|
45
|
-
export const GetConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
60
|
+
export const GetConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 9);
|
|
46
61
|
/**
|
|
47
62
|
* Describes the message connectors.v1.GetConnectionResponse.
|
|
48
63
|
* Use `create(GetConnectionResponseSchema)` to create a new message.
|
|
49
64
|
*/
|
|
50
|
-
export const GetConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
65
|
+
export const GetConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 10);
|
|
51
66
|
/**
|
|
52
67
|
* Describes the message connectors.v1.ListConnectionsRequest.
|
|
53
68
|
* Use `create(ListConnectionsRequestSchema)` to create a new message.
|
|
54
69
|
*/
|
|
55
|
-
export const ListConnectionsRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
70
|
+
export const ListConnectionsRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 11);
|
|
56
71
|
/**
|
|
57
72
|
* Describes the message connectors.v1.ListConnectionsResponse.
|
|
58
73
|
* Use `create(ListConnectionsResponseSchema)` to create a new message.
|
|
59
74
|
*/
|
|
60
|
-
export const ListConnectionsResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
75
|
+
export const ListConnectionsResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 12);
|
|
76
|
+
/**
|
|
77
|
+
* Describes the message connectors.v1.ListProvidersRequest.
|
|
78
|
+
* Use `create(ListProvidersRequestSchema)` to create a new message.
|
|
79
|
+
*/
|
|
80
|
+
export const ListProvidersRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 13);
|
|
81
|
+
/**
|
|
82
|
+
* Describes the message connectors.v1.ListProvidersResponse.
|
|
83
|
+
* Use `create(ListProvidersResponseSchema)` to create a new message.
|
|
84
|
+
*/
|
|
85
|
+
export const ListProvidersResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 14);
|
|
61
86
|
/**
|
|
62
87
|
* Describes the message connectors.v1.RefreshConnectionRequest.
|
|
63
88
|
* Use `create(RefreshConnectionRequestSchema)` to create a new message.
|
|
64
89
|
*/
|
|
65
|
-
export const RefreshConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
90
|
+
export const RefreshConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 15);
|
|
66
91
|
/**
|
|
67
92
|
* Describes the message connectors.v1.RefreshConnectionResponse.
|
|
68
93
|
* Use `create(RefreshConnectionResponseSchema)` to create a new message.
|
|
69
94
|
*/
|
|
70
|
-
export const RefreshConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
95
|
+
export const RefreshConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 16);
|
|
71
96
|
/**
|
|
72
97
|
* Describes the message connectors.v1.RevokeConnectionRequest.
|
|
73
98
|
* Use `create(RevokeConnectionRequestSchema)` to create a new message.
|
|
74
99
|
*/
|
|
75
|
-
export const RevokeConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
100
|
+
export const RevokeConnectionRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 17);
|
|
76
101
|
/**
|
|
77
102
|
* Describes the message connectors.v1.RevokeConnectionResponse.
|
|
78
103
|
* Use `create(RevokeConnectionResponseSchema)` to create a new message.
|
|
79
104
|
*/
|
|
80
|
-
export const RevokeConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
105
|
+
export const RevokeConnectionResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 18);
|
|
81
106
|
/**
|
|
82
107
|
* Describes the message connectors.v1.GetHealthRequest.
|
|
83
108
|
* Use `create(GetHealthRequestSchema)` to create a new message.
|
|
84
109
|
*/
|
|
85
|
-
export const GetHealthRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
110
|
+
export const GetHealthRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 19);
|
|
86
111
|
/**
|
|
87
112
|
* Describes the message connectors.v1.GetHealthResponse.
|
|
88
113
|
* Use `create(GetHealthResponseSchema)` to create a new message.
|
|
89
114
|
*/
|
|
90
|
-
export const GetHealthResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
115
|
+
export const GetHealthResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 20);
|
|
91
116
|
/**
|
|
92
117
|
* Describes the message connectors.v1.ResolveSourceOfTruthRequest.
|
|
93
118
|
* Use `create(ResolveSourceOfTruthRequestSchema)` to create a new message.
|
|
94
119
|
*/
|
|
95
|
-
export const ResolveSourceOfTruthRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
120
|
+
export const ResolveSourceOfTruthRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 21);
|
|
96
121
|
/**
|
|
97
122
|
* Describes the message connectors.v1.ResolveSourceOfTruthResponse.
|
|
98
123
|
* Use `create(ResolveSourceOfTruthResponseSchema)` to create a new message.
|
|
99
124
|
*/
|
|
100
|
-
export const ResolveSourceOfTruthResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
125
|
+
export const ResolveSourceOfTruthResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 22);
|
|
101
126
|
/**
|
|
102
127
|
* Describes the message connectors.v1.GetDegradedReadPolicyRequest.
|
|
103
128
|
* Use `create(GetDegradedReadPolicyRequestSchema)` to create a new message.
|
|
104
129
|
*/
|
|
105
|
-
export const GetDegradedReadPolicyRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
130
|
+
export const GetDegradedReadPolicyRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 23);
|
|
106
131
|
/**
|
|
107
132
|
* Describes the message connectors.v1.GetDegradedReadPolicyResponse.
|
|
108
133
|
* Use `create(GetDegradedReadPolicyResponseSchema)` to create a new message.
|
|
109
134
|
*/
|
|
110
|
-
export const GetDegradedReadPolicyResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
135
|
+
export const GetDegradedReadPolicyResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 24);
|
|
111
136
|
/**
|
|
112
137
|
* Describes the message connectors.v1.SetSourceOfTruthPolicyRequest.
|
|
113
138
|
* Use `create(SetSourceOfTruthPolicyRequestSchema)` to create a new message.
|
|
114
139
|
*/
|
|
115
|
-
export const SetSourceOfTruthPolicyRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
140
|
+
export const SetSourceOfTruthPolicyRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 25);
|
|
116
141
|
/**
|
|
117
142
|
* Describes the message connectors.v1.SetSourceOfTruthPolicyResponse.
|
|
118
143
|
* Use `create(SetSourceOfTruthPolicyResponseSchema)` to create a new message.
|
|
119
144
|
*/
|
|
120
|
-
export const SetSourceOfTruthPolicyResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
145
|
+
export const SetSourceOfTruthPolicyResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 26);
|
|
121
146
|
/**
|
|
122
147
|
* Describes the message connectors.v1.GetCapabilitiesRequest.
|
|
123
148
|
* Use `create(GetCapabilitiesRequestSchema)` to create a new message.
|
|
124
149
|
*/
|
|
125
|
-
export const GetCapabilitiesRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
150
|
+
export const GetCapabilitiesRequestSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 27);
|
|
126
151
|
/**
|
|
127
152
|
* Describes the message connectors.v1.GetCapabilitiesResponse.
|
|
128
153
|
* Use `create(GetCapabilitiesResponseSchema)` to create a new message.
|
|
129
154
|
*/
|
|
130
|
-
export const GetCapabilitiesResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors,
|
|
155
|
+
export const GetCapabilitiesResponseSchema = /*@__PURE__*/ messageDesc(file_connectors_v1_connectors, 28);
|
|
131
156
|
/**
|
|
132
157
|
* AuthType describes the authentication method for a connection.
|
|
133
158
|
*
|
|
@@ -155,6 +180,10 @@ export var AuthType;
|
|
|
155
180
|
* @generated from enum value: AUTH_TYPE_MTLS = 4;
|
|
156
181
|
*/
|
|
157
182
|
AuthType[AuthType["MTLS"] = 4] = "MTLS";
|
|
183
|
+
/**
|
|
184
|
+
* @generated from enum value: AUTH_TYPE_GITHUB_APP = 5;
|
|
185
|
+
*/
|
|
186
|
+
AuthType[AuthType["GITHUB_APP"] = 5] = "GITHUB_APP";
|
|
158
187
|
})(AuthType || (AuthType = {}));
|
|
159
188
|
/**
|
|
160
189
|
* Describes the enum connectors.v1.AuthType.
|