@hol-org/cigar 0.9.4
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/LICENSE +201 -0
- package/NOTICE +5 -0
- package/README.md +68 -0
- package/dist/client.d.ts +16 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +839 -0
- package/dist/client.js.map +1 -0
- package/dist/digest.d.ts +21 -0
- package/dist/digest.d.ts.map +1 -0
- package/dist/digest.js +406 -0
- package/dist/digest.js.map +1 -0
- package/dist/errors.d.ts +35 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +54 -0
- package/dist/errors.js.map +1 -0
- package/dist/examples/quickstart.d.ts +2 -0
- package/dist/examples/quickstart.d.ts.map +1 -0
- package/dist/examples/quickstart.js +32 -0
- package/dist/examples/quickstart.js.map +1 -0
- package/dist/examples/two-agent-observer.d.ts +9 -0
- package/dist/examples/two-agent-observer.d.ts.map +1 -0
- package/dist/examples/two-agent-observer.js +59 -0
- package/dist/examples/two-agent-observer.js.map +1 -0
- package/dist/examples/verify-shared-bundle.d.ts +2 -0
- package/dist/examples/verify-shared-bundle.d.ts.map +1 -0
- package/dist/examples/verify-shared-bundle.js +13 -0
- package/dist/examples/verify-shared-bundle.js.map +1 -0
- package/dist/generated/cigar_service_pb.d.ts +642 -0
- package/dist/generated/cigar_service_pb.d.ts.map +1 -0
- package/dist/generated/cigar_service_pb.js +55 -0
- package/dist/generated/cigar_service_pb.js.map +1 -0
- package/dist/generated/context_abi_pb.d.ts +3429 -0
- package/dist/generated/context_abi_pb.d.ts.map +1 -0
- package/dist/generated/context_abi_pb.js +1386 -0
- package/dist/generated/context_abi_pb.js.map +1 -0
- package/dist/generated/errors.d.ts +242 -0
- package/dist/generated/errors.d.ts.map +1 -0
- package/dist/generated/errors.js +38 -0
- package/dist/generated/errors.js.map +1 -0
- package/dist/generated/generated/error_codes_pb.d.ts +188 -0
- package/dist/generated/generated/error_codes_pb.d.ts.map +1 -0
- package/dist/generated/generated/error_codes_pb.js +191 -0
- package/dist/generated/generated/error_codes_pb.js.map +1 -0
- package/dist/generated/models.d.ts +472 -0
- package/dist/generated/models.d.ts.map +1 -0
- package/dist/generated/models.js +314 -0
- package/dist/generated/models.js.map +1 -0
- package/dist/generated/operations.d.ts +912 -0
- package/dist/generated/operations.d.ts.map +1 -0
- package/dist/generated/operations.js +50 -0
- package/dist/generated/operations.js.map +1 -0
- package/dist/idempotency.d.ts +3 -0
- package/dist/idempotency.d.ts.map +1 -0
- package/dist/idempotency.js +16 -0
- package/dist/idempotency.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -0
- package/dist/release.json +6 -0
- package/dist/types.d.ts +115 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/dist/verify-replay.d.ts +3 -0
- package/dist/verify-replay.d.ts.map +1 -0
- package/dist/verify-replay.js +391 -0
- package/dist/verify-replay.js.map +1 -0
- package/dist/verify-vectors.d.ts +3 -0
- package/dist/verify-vectors.d.ts.map +1 -0
- package/dist/verify-vectors.js +383 -0
- package/dist/verify-vectors.js.map +1 -0
- package/dist/workflow-session.d.ts +93 -0
- package/dist/workflow-session.d.ts.map +1 -0
- package/dist/workflow-session.js +550 -0
- package/dist/workflow-session.js.map +1 -0
- package/fixtures/semantic-bundle-v1.json +13 -0
- package/package.json +60 -0
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file cigar_service.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_cigar_service: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* One bounded path binding. Repeated bindings are sorted uniquely by name.
|
|
9
|
+
*
|
|
10
|
+
* @generated from message cigar.v1.PathParameter
|
|
11
|
+
*/
|
|
12
|
+
export type PathParameter = Message<"cigar.v1.PathParameter"> & {
|
|
13
|
+
/**
|
|
14
|
+
* 1..64 lowercase snake-case ASCII characters.
|
|
15
|
+
*
|
|
16
|
+
* @generated from field: string name = 1;
|
|
17
|
+
*/
|
|
18
|
+
name: string;
|
|
19
|
+
/**
|
|
20
|
+
* 1..256 unreserved ASCII characters.
|
|
21
|
+
*
|
|
22
|
+
* @generated from field: string value = 2;
|
|
23
|
+
*/
|
|
24
|
+
value: string;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message cigar.v1.PathParameter.
|
|
28
|
+
* Use `create(PathParameterSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export declare const PathParameterSchema: GenMessage<PathParameter>;
|
|
31
|
+
/**
|
|
32
|
+
* Generic bounded transport request. Services validate operation-specific CBOR.
|
|
33
|
+
*
|
|
34
|
+
* @generated from message cigar.v1.OperationRequest
|
|
35
|
+
*/
|
|
36
|
+
export type OperationRequest = Message<"cigar.v1.OperationRequest"> & {
|
|
37
|
+
/**
|
|
38
|
+
* 1..128 ASCII characters.
|
|
39
|
+
*
|
|
40
|
+
* @generated from field: string operation_id = 1;
|
|
41
|
+
*/
|
|
42
|
+
operationId: string;
|
|
43
|
+
/**
|
|
44
|
+
* At most 256 characters.
|
|
45
|
+
*
|
|
46
|
+
* @generated from field: string idempotency_key = 2;
|
|
47
|
+
*/
|
|
48
|
+
idempotencyKey: string;
|
|
49
|
+
/**
|
|
50
|
+
* At most 256 characters.
|
|
51
|
+
*
|
|
52
|
+
* @generated from field: string expected_revision = 3;
|
|
53
|
+
*/
|
|
54
|
+
expectedRevision: string;
|
|
55
|
+
/**
|
|
56
|
+
* At most 16 MiB after decompression.
|
|
57
|
+
*
|
|
58
|
+
* @generated from field: bytes payload_cbor = 4;
|
|
59
|
+
*/
|
|
60
|
+
payloadCbor: Uint8Array;
|
|
61
|
+
/**
|
|
62
|
+
* At most 4096 characters.
|
|
63
|
+
*
|
|
64
|
+
* @generated from field: string page_cursor = 5;
|
|
65
|
+
*/
|
|
66
|
+
pageCursor: string;
|
|
67
|
+
/**
|
|
68
|
+
* Server-capped at 1000.
|
|
69
|
+
*
|
|
70
|
+
* @generated from field: uint32 page_size = 6;
|
|
71
|
+
*/
|
|
72
|
+
pageSize: number;
|
|
73
|
+
/**
|
|
74
|
+
* At most 8, sorted uniquely by name.
|
|
75
|
+
*
|
|
76
|
+
* @generated from field: repeated cigar.v1.PathParameter path_parameters = 7;
|
|
77
|
+
*/
|
|
78
|
+
pathParameters: PathParameter[];
|
|
79
|
+
/**
|
|
80
|
+
* Requests a governed preview; execution policy remains service-owned.
|
|
81
|
+
*
|
|
82
|
+
* @generated from field: bool dry_run = 8;
|
|
83
|
+
*/
|
|
84
|
+
dryRun: boolean;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Describes the message cigar.v1.OperationRequest.
|
|
88
|
+
* Use `create(OperationRequestSchema)` to create a new message.
|
|
89
|
+
*/
|
|
90
|
+
export declare const OperationRequestSchema: GenMessage<OperationRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* Generic bounded transport response. Protected payloads remain canonical CBOR.
|
|
93
|
+
*
|
|
94
|
+
* @generated from message cigar.v1.OperationResponse
|
|
95
|
+
*/
|
|
96
|
+
export type OperationResponse = Message<"cigar.v1.OperationResponse"> & {
|
|
97
|
+
/**
|
|
98
|
+
* 1..128 ASCII characters.
|
|
99
|
+
*
|
|
100
|
+
* @generated from field: string operation_id = 1;
|
|
101
|
+
*/
|
|
102
|
+
operationId: string;
|
|
103
|
+
/**
|
|
104
|
+
* At most 16 MiB.
|
|
105
|
+
*
|
|
106
|
+
* @generated from field: bytes payload_cbor = 2;
|
|
107
|
+
*/
|
|
108
|
+
payloadCbor: Uint8Array;
|
|
109
|
+
/**
|
|
110
|
+
* At most 256 characters.
|
|
111
|
+
*
|
|
112
|
+
* @generated from field: string semantic_etag = 3;
|
|
113
|
+
*/
|
|
114
|
+
semanticEtag: string;
|
|
115
|
+
/**
|
|
116
|
+
* At most 4096 characters.
|
|
117
|
+
*
|
|
118
|
+
* @generated from field: string next_page_cursor = 4;
|
|
119
|
+
*/
|
|
120
|
+
nextPageCursor: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Describes the message cigar.v1.OperationResponse.
|
|
124
|
+
* Use `create(OperationResponseSchema)` to create a new message.
|
|
125
|
+
*/
|
|
126
|
+
export declare const OperationResponseSchema: GenMessage<OperationResponse>;
|
|
127
|
+
/**
|
|
128
|
+
* Generic bounded server-stream event with resumable identity.
|
|
129
|
+
*
|
|
130
|
+
* @generated from message cigar.v1.OperationEvent
|
|
131
|
+
*/
|
|
132
|
+
export type OperationEvent = Message<"cigar.v1.OperationEvent"> & {
|
|
133
|
+
/**
|
|
134
|
+
* 1..128 ASCII characters.
|
|
135
|
+
*
|
|
136
|
+
* @generated from field: string operation_id = 1;
|
|
137
|
+
*/
|
|
138
|
+
operationId: string;
|
|
139
|
+
/**
|
|
140
|
+
* At most 256 characters.
|
|
141
|
+
*
|
|
142
|
+
* @generated from field: string event_id = 2;
|
|
143
|
+
*/
|
|
144
|
+
eventId: string;
|
|
145
|
+
/**
|
|
146
|
+
* At most 1 MiB per event.
|
|
147
|
+
*
|
|
148
|
+
* @generated from field: bytes payload_cbor = 3;
|
|
149
|
+
*/
|
|
150
|
+
payloadCbor: Uint8Array;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Describes the message cigar.v1.OperationEvent.
|
|
154
|
+
* Use `create(OperationEventSchema)` to create a new message.
|
|
155
|
+
*/
|
|
156
|
+
export declare const OperationEventSchema: GenMessage<OperationEvent>;
|
|
157
|
+
/**
|
|
158
|
+
* @generated from service cigar.v1.CatalogService
|
|
159
|
+
*/
|
|
160
|
+
export declare const CatalogService: GenService<{
|
|
161
|
+
/**
|
|
162
|
+
* POST /v1/sources:discover | operation_id=discoverSources | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
163
|
+
*
|
|
164
|
+
* @generated from rpc cigar.v1.CatalogService.DiscoverSources
|
|
165
|
+
*/
|
|
166
|
+
discoverSources: {
|
|
167
|
+
methodKind: "unary";
|
|
168
|
+
input: typeof OperationRequestSchema;
|
|
169
|
+
output: typeof OperationResponseSchema;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* POST /v1/catalog:ingest | operation_id=ingestCatalog | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
173
|
+
*
|
|
174
|
+
* @generated from rpc cigar.v1.CatalogService.IngestCatalog
|
|
175
|
+
*/
|
|
176
|
+
ingestCatalog: {
|
|
177
|
+
methodKind: "unary";
|
|
178
|
+
input: typeof OperationRequestSchema;
|
|
179
|
+
output: typeof OperationResponseSchema;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* GET /v1/catalog/sources/{source_id} | operation_id=getSourceStatus | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
183
|
+
*
|
|
184
|
+
* @generated from rpc cigar.v1.CatalogService.GetSourceStatus
|
|
185
|
+
*/
|
|
186
|
+
getSourceStatus: {
|
|
187
|
+
methodKind: "unary";
|
|
188
|
+
input: typeof OperationRequestSchema;
|
|
189
|
+
output: typeof OperationResponseSchema;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* POST /v1/catalog:query | operation_id=queryCatalog | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
193
|
+
*
|
|
194
|
+
* @generated from rpc cigar.v1.CatalogService.QueryCatalog
|
|
195
|
+
*/
|
|
196
|
+
queryCatalog: {
|
|
197
|
+
methodKind: "unary";
|
|
198
|
+
input: typeof OperationRequestSchema;
|
|
199
|
+
output: typeof OperationResponseSchema;
|
|
200
|
+
};
|
|
201
|
+
/**
|
|
202
|
+
* POST /v1/catalog/atoms:batch | operation_id=batchAtoms | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
203
|
+
*
|
|
204
|
+
* @generated from rpc cigar.v1.CatalogService.BatchAtoms
|
|
205
|
+
*/
|
|
206
|
+
batchAtoms: {
|
|
207
|
+
methodKind: "unary";
|
|
208
|
+
input: typeof OperationRequestSchema;
|
|
209
|
+
output: typeof OperationResponseSchema;
|
|
210
|
+
};
|
|
211
|
+
/**
|
|
212
|
+
* POST /v1/catalog/atoms/{atom_id}:tombstone | operation_id=tombstoneAtom | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
213
|
+
*
|
|
214
|
+
* @generated from rpc cigar.v1.CatalogService.TombstoneAtom
|
|
215
|
+
*/
|
|
216
|
+
tombstoneAtom: {
|
|
217
|
+
methodKind: "unary";
|
|
218
|
+
input: typeof OperationRequestSchema;
|
|
219
|
+
output: typeof OperationResponseSchema;
|
|
220
|
+
};
|
|
221
|
+
}>;
|
|
222
|
+
/**
|
|
223
|
+
* @generated from service cigar.v1.ContextService
|
|
224
|
+
*/
|
|
225
|
+
export declare const ContextService: GenService<{
|
|
226
|
+
/**
|
|
227
|
+
* POST /v1/context/plans | operation_id=createContextPlan | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
228
|
+
*
|
|
229
|
+
* @generated from rpc cigar.v1.ContextService.CreateContextPlan
|
|
230
|
+
*/
|
|
231
|
+
createContextPlan: {
|
|
232
|
+
methodKind: "unary";
|
|
233
|
+
input: typeof OperationRequestSchema;
|
|
234
|
+
output: typeof OperationResponseSchema;
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* POST /v1/context/bundles:compile | operation_id=compileContextBundle | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
238
|
+
*
|
|
239
|
+
* @generated from rpc cigar.v1.ContextService.CompileContextBundle
|
|
240
|
+
*/
|
|
241
|
+
compileContextBundle: {
|
|
242
|
+
methodKind: "unary";
|
|
243
|
+
input: typeof OperationRequestSchema;
|
|
244
|
+
output: typeof OperationResponseSchema;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* POST /v1/context/deltas:compile | operation_id=compileContextDelta | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
248
|
+
*
|
|
249
|
+
* @generated from rpc cigar.v1.ContextService.CompileContextDelta
|
|
250
|
+
*/
|
|
251
|
+
compileContextDelta: {
|
|
252
|
+
methodKind: "unary";
|
|
253
|
+
input: typeof OperationRequestSchema;
|
|
254
|
+
output: typeof OperationResponseSchema;
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* GET /v1/context/bundles/{bundle_id} | operation_id=getContextBundle | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
258
|
+
*
|
|
259
|
+
* @generated from rpc cigar.v1.ContextService.GetContextBundle
|
|
260
|
+
*/
|
|
261
|
+
getContextBundle: {
|
|
262
|
+
methodKind: "unary";
|
|
263
|
+
input: typeof OperationRequestSchema;
|
|
264
|
+
output: typeof OperationResponseSchema;
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* GET /v1/context/bundles/{bundle_id}/manifest | operation_id=getContextBundleManifest | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
268
|
+
*
|
|
269
|
+
* @generated from rpc cigar.v1.ContextService.GetContextBundleManifest
|
|
270
|
+
*/
|
|
271
|
+
getContextBundleManifest: {
|
|
272
|
+
methodKind: "unary";
|
|
273
|
+
input: typeof OperationRequestSchema;
|
|
274
|
+
output: typeof OperationResponseSchema;
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* POST /v1/context/bundles/{bundle_id}:explain | operation_id=explainContextBundle | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
278
|
+
*
|
|
279
|
+
* @generated from rpc cigar.v1.ContextService.ExplainContextBundle
|
|
280
|
+
*/
|
|
281
|
+
explainContextBundle: {
|
|
282
|
+
methodKind: "unary";
|
|
283
|
+
input: typeof OperationRequestSchema;
|
|
284
|
+
output: typeof OperationResponseSchema;
|
|
285
|
+
};
|
|
286
|
+
/**
|
|
287
|
+
* POST /v1/context/bundles/{bundle_id}:materialize | operation_id=materializeContextBundle | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
288
|
+
*
|
|
289
|
+
* @generated from rpc cigar.v1.ContextService.MaterializeContextBundle
|
|
290
|
+
*/
|
|
291
|
+
materializeContextBundle: {
|
|
292
|
+
methodKind: "unary";
|
|
293
|
+
input: typeof OperationRequestSchema;
|
|
294
|
+
output: typeof OperationResponseSchema;
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* POST /v1/context/bundles/{bundle_id}:revalidate | operation_id=revalidateContextBundle | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
298
|
+
*
|
|
299
|
+
* @generated from rpc cigar.v1.ContextService.RevalidateContextBundle
|
|
300
|
+
*/
|
|
301
|
+
revalidateContextBundle: {
|
|
302
|
+
methodKind: "unary";
|
|
303
|
+
input: typeof OperationRequestSchema;
|
|
304
|
+
output: typeof OperationResponseSchema;
|
|
305
|
+
};
|
|
306
|
+
}>;
|
|
307
|
+
/**
|
|
308
|
+
* @generated from service cigar.v1.SpaceService
|
|
309
|
+
*/
|
|
310
|
+
export declare const SpaceService: GenService<{
|
|
311
|
+
/**
|
|
312
|
+
* POST /v1/spaces | operation_id=createSpace | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
313
|
+
*
|
|
314
|
+
* @generated from rpc cigar.v1.SpaceService.CreateSpace
|
|
315
|
+
*/
|
|
316
|
+
createSpace: {
|
|
317
|
+
methodKind: "unary";
|
|
318
|
+
input: typeof OperationRequestSchema;
|
|
319
|
+
output: typeof OperationResponseSchema;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* POST /v1/spaces/{space_id}:fork | operation_id=forkSpace | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
323
|
+
*
|
|
324
|
+
* @generated from rpc cigar.v1.SpaceService.ForkSpace
|
|
325
|
+
*/
|
|
326
|
+
forkSpace: {
|
|
327
|
+
methodKind: "unary";
|
|
328
|
+
input: typeof OperationRequestSchema;
|
|
329
|
+
output: typeof OperationResponseSchema;
|
|
330
|
+
};
|
|
331
|
+
/**
|
|
332
|
+
* POST /v1/spaces/{space_id}:publish | operation_id=publishSpace | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
333
|
+
*
|
|
334
|
+
* @generated from rpc cigar.v1.SpaceService.PublishSpace
|
|
335
|
+
*/
|
|
336
|
+
publishSpace: {
|
|
337
|
+
methodKind: "unary";
|
|
338
|
+
input: typeof OperationRequestSchema;
|
|
339
|
+
output: typeof OperationResponseSchema;
|
|
340
|
+
};
|
|
341
|
+
/**
|
|
342
|
+
* GET /v1/spaces/{space_id}/log | operation_id=getSpaceLog | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
343
|
+
*
|
|
344
|
+
* @generated from rpc cigar.v1.SpaceService.GetSpaceLog
|
|
345
|
+
*/
|
|
346
|
+
getSpaceLog: {
|
|
347
|
+
methodKind: "unary";
|
|
348
|
+
input: typeof OperationRequestSchema;
|
|
349
|
+
output: typeof OperationResponseSchema;
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* GET /v1/spaces/{space_id}/events | operation_id=subscribeSpaceEvents | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
353
|
+
*
|
|
354
|
+
* @generated from rpc cigar.v1.SpaceService.SubscribeSpaceEvents
|
|
355
|
+
*/
|
|
356
|
+
subscribeSpaceEvents: {
|
|
357
|
+
methodKind: "server_streaming";
|
|
358
|
+
input: typeof OperationRequestSchema;
|
|
359
|
+
output: typeof OperationEventSchema;
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* POST /v1/spaces/{space_id}/checkpoints | operation_id=createSpaceCheckpoint | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
363
|
+
*
|
|
364
|
+
* @generated from rpc cigar.v1.SpaceService.CreateSpaceCheckpoint
|
|
365
|
+
*/
|
|
366
|
+
createSpaceCheckpoint: {
|
|
367
|
+
methodKind: "unary";
|
|
368
|
+
input: typeof OperationRequestSchema;
|
|
369
|
+
output: typeof OperationResponseSchema;
|
|
370
|
+
};
|
|
371
|
+
/**
|
|
372
|
+
* GET /v1/spaces/{space_id}/conflicts | operation_id=listSpaceConflicts | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
373
|
+
*
|
|
374
|
+
* @generated from rpc cigar.v1.SpaceService.ListSpaceConflicts
|
|
375
|
+
*/
|
|
376
|
+
listSpaceConflicts: {
|
|
377
|
+
methodKind: "unary";
|
|
378
|
+
input: typeof OperationRequestSchema;
|
|
379
|
+
output: typeof OperationResponseSchema;
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* POST /v1/spaces/{space_id}/conflicts/{conflict_id}:resolve | operation_id=resolveSpaceConflict | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
383
|
+
*
|
|
384
|
+
* @generated from rpc cigar.v1.SpaceService.ResolveSpaceConflict
|
|
385
|
+
*/
|
|
386
|
+
resolveSpaceConflict: {
|
|
387
|
+
methodKind: "unary";
|
|
388
|
+
input: typeof OperationRequestSchema;
|
|
389
|
+
output: typeof OperationResponseSchema;
|
|
390
|
+
};
|
|
391
|
+
}>;
|
|
392
|
+
/**
|
|
393
|
+
* @generated from service cigar.v1.HandoffService
|
|
394
|
+
*/
|
|
395
|
+
export declare const HandoffService: GenService<{
|
|
396
|
+
/**
|
|
397
|
+
* POST /v1/handoffs | operation_id=createHandoff | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
398
|
+
*
|
|
399
|
+
* @generated from rpc cigar.v1.HandoffService.CreateHandoff
|
|
400
|
+
*/
|
|
401
|
+
createHandoff: {
|
|
402
|
+
methodKind: "unary";
|
|
403
|
+
input: typeof OperationRequestSchema;
|
|
404
|
+
output: typeof OperationResponseSchema;
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* POST /v1/handoffs/{handoff_id}:preview | operation_id=previewHandoff | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
408
|
+
*
|
|
409
|
+
* @generated from rpc cigar.v1.HandoffService.PreviewHandoff
|
|
410
|
+
*/
|
|
411
|
+
previewHandoff: {
|
|
412
|
+
methodKind: "unary";
|
|
413
|
+
input: typeof OperationRequestSchema;
|
|
414
|
+
output: typeof OperationResponseSchema;
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* POST /v1/handoffs/{handoff_id}:accept | operation_id=acceptHandoff | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
418
|
+
*
|
|
419
|
+
* @generated from rpc cigar.v1.HandoffService.AcceptHandoff
|
|
420
|
+
*/
|
|
421
|
+
acceptHandoff: {
|
|
422
|
+
methodKind: "unary";
|
|
423
|
+
input: typeof OperationRequestSchema;
|
|
424
|
+
output: typeof OperationResponseSchema;
|
|
425
|
+
};
|
|
426
|
+
/**
|
|
427
|
+
* POST /v1/handoffs/{handoff_id}:revoke | operation_id=revokeHandoff | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
428
|
+
*
|
|
429
|
+
* @generated from rpc cigar.v1.HandoffService.RevokeHandoff
|
|
430
|
+
*/
|
|
431
|
+
revokeHandoff: {
|
|
432
|
+
methodKind: "unary";
|
|
433
|
+
input: typeof OperationRequestSchema;
|
|
434
|
+
output: typeof OperationResponseSchema;
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* POST /v1/handoffs/{handoff_id}/results | operation_id=recordHandoffResult | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
438
|
+
*
|
|
439
|
+
* @generated from rpc cigar.v1.HandoffService.RecordHandoffResult
|
|
440
|
+
*/
|
|
441
|
+
recordHandoffResult: {
|
|
442
|
+
methodKind: "unary";
|
|
443
|
+
input: typeof OperationRequestSchema;
|
|
444
|
+
output: typeof OperationResponseSchema;
|
|
445
|
+
};
|
|
446
|
+
/**
|
|
447
|
+
* POST /v1/handoffs/{handoff_id}:merge | operation_id=mergeHandoff | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
448
|
+
*
|
|
449
|
+
* @generated from rpc cigar.v1.HandoffService.MergeHandoff
|
|
450
|
+
*/
|
|
451
|
+
mergeHandoff: {
|
|
452
|
+
methodKind: "unary";
|
|
453
|
+
input: typeof OperationRequestSchema;
|
|
454
|
+
output: typeof OperationResponseSchema;
|
|
455
|
+
};
|
|
456
|
+
}>;
|
|
457
|
+
/**
|
|
458
|
+
* @generated from service cigar.v1.EffectService
|
|
459
|
+
*/
|
|
460
|
+
export declare const EffectService: GenService<{
|
|
461
|
+
/**
|
|
462
|
+
* POST /v1/effects | operation_id=prepareEffect | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
463
|
+
*
|
|
464
|
+
* @generated from rpc cigar.v1.EffectService.PrepareEffect
|
|
465
|
+
*/
|
|
466
|
+
prepareEffect: {
|
|
467
|
+
methodKind: "unary";
|
|
468
|
+
input: typeof OperationRequestSchema;
|
|
469
|
+
output: typeof OperationResponseSchema;
|
|
470
|
+
};
|
|
471
|
+
/**
|
|
472
|
+
* POST /v1/effects/{effect_id}:authorize | operation_id=authorizeEffect | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
473
|
+
*
|
|
474
|
+
* @generated from rpc cigar.v1.EffectService.AuthorizeEffect
|
|
475
|
+
*/
|
|
476
|
+
authorizeEffect: {
|
|
477
|
+
methodKind: "unary";
|
|
478
|
+
input: typeof OperationRequestSchema;
|
|
479
|
+
output: typeof OperationResponseSchema;
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* POST /v1/effects/{effect_id}:dispatch | operation_id=dispatchEffect | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
483
|
+
*
|
|
484
|
+
* @generated from rpc cigar.v1.EffectService.DispatchEffect
|
|
485
|
+
*/
|
|
486
|
+
dispatchEffect: {
|
|
487
|
+
methodKind: "unary";
|
|
488
|
+
input: typeof OperationRequestSchema;
|
|
489
|
+
output: typeof OperationResponseSchema;
|
|
490
|
+
};
|
|
491
|
+
/**
|
|
492
|
+
* GET /v1/effects/{effect_id} | operation_id=getEffectStatus | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
493
|
+
*
|
|
494
|
+
* @generated from rpc cigar.v1.EffectService.GetEffectStatus
|
|
495
|
+
*/
|
|
496
|
+
getEffectStatus: {
|
|
497
|
+
methodKind: "unary";
|
|
498
|
+
input: typeof OperationRequestSchema;
|
|
499
|
+
output: typeof OperationResponseSchema;
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* POST /v1/effects/{effect_id}:reconcile | operation_id=reconcileEffect | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
503
|
+
*
|
|
504
|
+
* @generated from rpc cigar.v1.EffectService.ReconcileEffect
|
|
505
|
+
*/
|
|
506
|
+
reconcileEffect: {
|
|
507
|
+
methodKind: "unary";
|
|
508
|
+
input: typeof OperationRequestSchema;
|
|
509
|
+
output: typeof OperationResponseSchema;
|
|
510
|
+
};
|
|
511
|
+
/**
|
|
512
|
+
* POST /v1/effects/{effect_id}:compensate | operation_id=compensateEffect | mutation=true | idempotency=required | revision=required | auth=tenant
|
|
513
|
+
*
|
|
514
|
+
* @generated from rpc cigar.v1.EffectService.CompensateEffect
|
|
515
|
+
*/
|
|
516
|
+
compensateEffect: {
|
|
517
|
+
methodKind: "unary";
|
|
518
|
+
input: typeof OperationRequestSchema;
|
|
519
|
+
output: typeof OperationResponseSchema;
|
|
520
|
+
};
|
|
521
|
+
}>;
|
|
522
|
+
/**
|
|
523
|
+
* @generated from service cigar.v1.ReplayService
|
|
524
|
+
*/
|
|
525
|
+
export declare const ReplayService: GenService<{
|
|
526
|
+
/**
|
|
527
|
+
* POST /v1/replays | operation_id=createReplay | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
528
|
+
*
|
|
529
|
+
* @generated from rpc cigar.v1.ReplayService.CreateReplay
|
|
530
|
+
*/
|
|
531
|
+
createReplay: {
|
|
532
|
+
methodKind: "unary";
|
|
533
|
+
input: typeof OperationRequestSchema;
|
|
534
|
+
output: typeof OperationResponseSchema;
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* POST /v1/replays/{replay_id}:run | operation_id=runObservationalReplay | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
538
|
+
*
|
|
539
|
+
* @generated from rpc cigar.v1.ReplayService.RunObservationalReplay
|
|
540
|
+
*/
|
|
541
|
+
runObservationalReplay: {
|
|
542
|
+
methodKind: "unary";
|
|
543
|
+
input: typeof OperationRequestSchema;
|
|
544
|
+
output: typeof OperationResponseSchema;
|
|
545
|
+
};
|
|
546
|
+
/**
|
|
547
|
+
* POST /v1/replays/{replay_id}:compare | operation_id=compareLiveReplay | mutation=true | idempotency=required | revision=none | auth=tenant
|
|
548
|
+
*
|
|
549
|
+
* @generated from rpc cigar.v1.ReplayService.CompareLiveReplay
|
|
550
|
+
*/
|
|
551
|
+
compareLiveReplay: {
|
|
552
|
+
methodKind: "unary";
|
|
553
|
+
input: typeof OperationRequestSchema;
|
|
554
|
+
output: typeof OperationResponseSchema;
|
|
555
|
+
};
|
|
556
|
+
/**
|
|
557
|
+
* GET /v1/replays/{replay_id}/completeness | operation_id=getReplayCompleteness | mutation=false | idempotency=not_applicable | revision=none | auth=tenant
|
|
558
|
+
*
|
|
559
|
+
* @generated from rpc cigar.v1.ReplayService.GetReplayCompleteness
|
|
560
|
+
*/
|
|
561
|
+
getReplayCompleteness: {
|
|
562
|
+
methodKind: "unary";
|
|
563
|
+
input: typeof OperationRequestSchema;
|
|
564
|
+
output: typeof OperationResponseSchema;
|
|
565
|
+
};
|
|
566
|
+
}>;
|
|
567
|
+
/**
|
|
568
|
+
* @generated from service cigar.v1.OperationsService
|
|
569
|
+
*/
|
|
570
|
+
export declare const OperationsService: GenService<{
|
|
571
|
+
/**
|
|
572
|
+
* GET /livez | operation_id=getLiveness | mutation=false | idempotency=not_applicable | revision=none | auth=health
|
|
573
|
+
*
|
|
574
|
+
* @generated from rpc cigar.v1.OperationsService.GetLiveness
|
|
575
|
+
*/
|
|
576
|
+
getLiveness: {
|
|
577
|
+
methodKind: "unary";
|
|
578
|
+
input: typeof OperationRequestSchema;
|
|
579
|
+
output: typeof OperationResponseSchema;
|
|
580
|
+
};
|
|
581
|
+
/**
|
|
582
|
+
* GET /readyz | operation_id=getReadiness | mutation=false | idempotency=not_applicable | revision=none | auth=health
|
|
583
|
+
*
|
|
584
|
+
* @generated from rpc cigar.v1.OperationsService.GetReadiness
|
|
585
|
+
*/
|
|
586
|
+
getReadiness: {
|
|
587
|
+
methodKind: "unary";
|
|
588
|
+
input: typeof OperationRequestSchema;
|
|
589
|
+
output: typeof OperationResponseSchema;
|
|
590
|
+
};
|
|
591
|
+
/**
|
|
592
|
+
* GET /v1/version | operation_id=getVersion | mutation=false | idempotency=not_applicable | revision=none | auth=anonymous
|
|
593
|
+
*
|
|
594
|
+
* @generated from rpc cigar.v1.OperationsService.GetVersion
|
|
595
|
+
*/
|
|
596
|
+
getVersion: {
|
|
597
|
+
methodKind: "unary";
|
|
598
|
+
input: typeof OperationRequestSchema;
|
|
599
|
+
output: typeof OperationResponseSchema;
|
|
600
|
+
};
|
|
601
|
+
/**
|
|
602
|
+
* GET /v1/capabilities | operation_id=getCapabilities | mutation=false | idempotency=not_applicable | revision=none | auth=anonymous
|
|
603
|
+
*
|
|
604
|
+
* @generated from rpc cigar.v1.OperationsService.GetCapabilities
|
|
605
|
+
*/
|
|
606
|
+
getCapabilities: {
|
|
607
|
+
methodKind: "unary";
|
|
608
|
+
input: typeof OperationRequestSchema;
|
|
609
|
+
output: typeof OperationResponseSchema;
|
|
610
|
+
};
|
|
611
|
+
/**
|
|
612
|
+
* GET /v1/configuration | operation_id=getConfiguration | mutation=false | idempotency=not_applicable | revision=none | auth=operator
|
|
613
|
+
*
|
|
614
|
+
* @generated from rpc cigar.v1.OperationsService.GetConfiguration
|
|
615
|
+
*/
|
|
616
|
+
getConfiguration: {
|
|
617
|
+
methodKind: "unary";
|
|
618
|
+
input: typeof OperationRequestSchema;
|
|
619
|
+
output: typeof OperationResponseSchema;
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* GET /v1/diagnostics | operation_id=getDiagnostics | mutation=false | idempotency=not_applicable | revision=none | auth=operator
|
|
623
|
+
*
|
|
624
|
+
* @generated from rpc cigar.v1.OperationsService.GetDiagnostics
|
|
625
|
+
*/
|
|
626
|
+
getDiagnostics: {
|
|
627
|
+
methodKind: "unary";
|
|
628
|
+
input: typeof OperationRequestSchema;
|
|
629
|
+
output: typeof OperationResponseSchema;
|
|
630
|
+
};
|
|
631
|
+
/**
|
|
632
|
+
* GET /metrics | operation_id=getMetrics | mutation=false | idempotency=not_applicable | revision=none | auth=operator
|
|
633
|
+
*
|
|
634
|
+
* @generated from rpc cigar.v1.OperationsService.GetMetrics
|
|
635
|
+
*/
|
|
636
|
+
getMetrics: {
|
|
637
|
+
methodKind: "unary";
|
|
638
|
+
input: typeof OperationRequestSchema;
|
|
639
|
+
output: typeof OperationResponseSchema;
|
|
640
|
+
};
|
|
641
|
+
}>;
|
|
642
|
+
//# sourceMappingURL=cigar_service_pb.d.ts.map
|