@superblocksteam/sabs-types 0.684.0 → 0.685.0

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/index.d.ts CHANGED
@@ -2,4 +2,5 @@ export * from "./build/v1/service_pb";
2
2
  export * from "./google/api/http_pb";
3
3
  export * from "./health/v1/service_pb";
4
4
  export * from "./liveedit/v1/service_pb";
5
+ export * from "./scan/v1/service_pb";
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC"}
package/dist/index.js CHANGED
@@ -18,4 +18,5 @@ __exportStar(require("./build/v1/service_pb"), exports);
18
18
  __exportStar(require("./google/api/http_pb"), exports);
19
19
  __exportStar(require("./health/v1/service_pb"), exports);
20
20
  __exportStar(require("./liveedit/v1/service_pb"), exports);
21
+ __exportStar(require("./scan/v1/service_pb"), exports);
21
22
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,uDAAqC;AACrC,yDAAuC;AACvC,2DAAyC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,uDAAqC;AACrC,yDAAuC;AACvC,2DAAyC;AACzC,uDAAqC"}
@@ -0,0 +1,440 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
3
+ /**
4
+ * ScanStatus describes scan *execution* state only. Whether the findings a scan
5
+ * produced should block a deploy is a policy decision owned by the Superblocks
6
+ * server, deliberately not modeled here.
7
+ *
8
+ * @generated from enum scan.v1.ScanStatus
9
+ */
10
+ export declare enum ScanStatus {
11
+ /**
12
+ * @generated from enum value: SCAN_STATUS_UNSPECIFIED = 0;
13
+ */
14
+ UNSPECIFIED = 0,
15
+ /**
16
+ * @generated from enum value: SCAN_STATUS_RUNNING = 1;
17
+ */
18
+ RUNNING = 1,
19
+ /**
20
+ * @generated from enum value: SCAN_STATUS_SUCCESS = 2;
21
+ */
22
+ SUCCESS = 2,
23
+ /**
24
+ * @generated from enum value: SCAN_STATUS_FAILED = 3;
25
+ */
26
+ FAILED = 3,
27
+ /**
28
+ * @generated from enum value: SCAN_STATUS_TIMED_OUT = 4;
29
+ */
30
+ TIMED_OUT = 4
31
+ }
32
+ /**
33
+ * @generated from message scan.v1.ScanRequest
34
+ */
35
+ export declare class ScanRequest extends Message<ScanRequest> {
36
+ /**
37
+ * Identifies the application revision to scan. The scan pod resolves this to
38
+ * source and built artifacts previously persisted under this hash.
39
+ *
40
+ * @generated from field: string directory_hash = 1;
41
+ */
42
+ directoryHash: string;
43
+ /**
44
+ * @generated from field: scan.v1.ScanApplicationMetadata application_metadata = 2;
45
+ */
46
+ applicationMetadata?: ScanApplicationMetadata;
47
+ /**
48
+ * Secret key to associate with this scan. Required by any subsequent request
49
+ * that changes the state of the scan (e.g. terminating it).
50
+ *
51
+ * @generated from field: string scan_key = 3;
52
+ */
53
+ scanKey: string;
54
+ /**
55
+ * Policy-gate assignment the scan pod reports its findings against. Absent
56
+ * when the caller wants an unattributed scan; the pod then skips reporting.
57
+ *
58
+ * @generated from field: optional scan.v1.PolicyGateContext policy_gate = 4;
59
+ */
60
+ policyGate?: PolicyGateContext;
61
+ /**
62
+ * Token the scan pod presents to Bucketeer to presign artifact downloads.
63
+ * Bucketeer requires the org:read scope and its own audience, which the
64
+ * caller's SABS token does not carry, so it is supplied separately rather
65
+ * than reused. Absent means the pod cannot fetch artifacts and will fail.
66
+ *
67
+ * @generated from field: string artifact_read_token = 5;
68
+ */
69
+ artifactReadToken: string;
70
+ constructor(data?: PartialMessage<ScanRequest>);
71
+ static readonly runtime: typeof proto3;
72
+ static readonly typeName = "scan.v1.ScanRequest";
73
+ static readonly fields: FieldList;
74
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanRequest;
75
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanRequest;
76
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanRequest;
77
+ static equals(a: ScanRequest | PlainMessage<ScanRequest> | undefined, b: ScanRequest | PlainMessage<ScanRequest> | undefined): boolean;
78
+ }
79
+ /**
80
+ * Required data for locating the application's source and built artifacts.
81
+ *
82
+ * @generated from message scan.v1.ScanApplicationMetadata
83
+ */
84
+ export declare class ScanApplicationMetadata extends Message<ScanApplicationMetadata> {
85
+ /**
86
+ * @generated from field: string id = 1;
87
+ */
88
+ id: string;
89
+ /**
90
+ * @generated from field: string organization_id = 2;
91
+ */
92
+ organizationId: string;
93
+ constructor(data?: PartialMessage<ScanApplicationMetadata>);
94
+ static readonly runtime: typeof proto3;
95
+ static readonly typeName = "scan.v1.ScanApplicationMetadata";
96
+ static readonly fields: FieldList;
97
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanApplicationMetadata;
98
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanApplicationMetadata;
99
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanApplicationMetadata;
100
+ static equals(a: ScanApplicationMetadata | PlainMessage<ScanApplicationMetadata> | undefined, b: ScanApplicationMetadata | PlainMessage<ScanApplicationMetadata> | undefined): boolean;
101
+ }
102
+ /**
103
+ * PolicyGateContext carries the Superblocks server assignment that a scan's
104
+ * findings belong to. The scan pod echoes these fields back to the server on
105
+ * POST /api/v1/policy-gates/review-runs/state.
106
+ *
107
+ * @generated from message scan.v1.PolicyGateContext
108
+ */
109
+ export declare class PolicyGateContext extends Message<PolicyGateContext> {
110
+ /**
111
+ * @generated from field: string ai_agent_run_id = 1;
112
+ */
113
+ aiAgentRunId: string;
114
+ /**
115
+ * @generated from field: string application_commit_id = 2;
116
+ */
117
+ applicationCommitId: string;
118
+ /**
119
+ * @generated from field: string execution_context = 3;
120
+ */
121
+ executionContext: string;
122
+ /**
123
+ * @generated from field: string profile_id = 4;
124
+ */
125
+ profileId: string;
126
+ /**
127
+ * @generated from field: string review_policy_id = 5;
128
+ */
129
+ reviewPolicyId: string;
130
+ /**
131
+ * @generated from field: string review_policy_version_id = 6;
132
+ */
133
+ reviewPolicyVersionId: string;
134
+ /**
135
+ * @generated from field: string runner_type = 7;
136
+ */
137
+ runnerType: string;
138
+ /**
139
+ * @generated from field: string runtime = 8;
140
+ */
141
+ runtime: string;
142
+ /**
143
+ * @generated from field: string trigger = 9;
144
+ */
145
+ trigger: string;
146
+ /**
147
+ * Token the scan pod presents when reporting the review run. The server
148
+ * checks its commit_id and dir_hash claims against the reported body, so it
149
+ * is minted per scan and is neither the SABS token nor the Bucketeer token.
150
+ *
151
+ * @generated from field: string token = 10;
152
+ */
153
+ token: string;
154
+ constructor(data?: PartialMessage<PolicyGateContext>);
155
+ static readonly runtime: typeof proto3;
156
+ static readonly typeName = "scan.v1.PolicyGateContext";
157
+ static readonly fields: FieldList;
158
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PolicyGateContext;
159
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PolicyGateContext;
160
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PolicyGateContext;
161
+ static equals(a: PolicyGateContext | PlainMessage<PolicyGateContext> | undefined, b: PolicyGateContext | PlainMessage<PolicyGateContext> | undefined): boolean;
162
+ }
163
+ /**
164
+ * @generated from message scan.v1.ScanResponse
165
+ */
166
+ export declare class ScanResponse extends Message<ScanResponse> {
167
+ /**
168
+ * For use to query scan status
169
+ *
170
+ * @generated from field: string scan_id = 1;
171
+ */
172
+ scanId: string;
173
+ /**
174
+ * @generated from field: google.protobuf.Timestamp created = 2;
175
+ */
176
+ created?: Timestamp;
177
+ /**
178
+ * @generated from field: google.protobuf.Timestamp updated = 3;
179
+ */
180
+ updated?: Timestamp;
181
+ constructor(data?: PartialMessage<ScanResponse>);
182
+ static readonly runtime: typeof proto3;
183
+ static readonly typeName = "scan.v1.ScanResponse";
184
+ static readonly fields: FieldList;
185
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanResponse;
186
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanResponse;
187
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanResponse;
188
+ static equals(a: ScanResponse | PlainMessage<ScanResponse> | undefined, b: ScanResponse | PlainMessage<ScanResponse> | undefined): boolean;
189
+ }
190
+ /**
191
+ * @generated from message scan.v1.ScanStatusRequest
192
+ */
193
+ export declare class ScanStatusRequest extends Message<ScanStatusRequest> {
194
+ /**
195
+ * @generated from field: string scan_id = 1;
196
+ */
197
+ scanId: string;
198
+ constructor(data?: PartialMessage<ScanStatusRequest>);
199
+ static readonly runtime: typeof proto3;
200
+ static readonly typeName = "scan.v1.ScanStatusRequest";
201
+ static readonly fields: FieldList;
202
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanStatusRequest;
203
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanStatusRequest;
204
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanStatusRequest;
205
+ static equals(a: ScanStatusRequest | PlainMessage<ScanStatusRequest> | undefined, b: ScanStatusRequest | PlainMessage<ScanStatusRequest> | undefined): boolean;
206
+ }
207
+ /**
208
+ * @generated from message scan.v1.ScanStatusResponse
209
+ */
210
+ export declare class ScanStatusResponse extends Message<ScanStatusResponse> {
211
+ /**
212
+ * @generated from field: string scan_id = 1;
213
+ */
214
+ scanId: string;
215
+ /**
216
+ * @generated from field: scan.v1.ScanStatus status = 2;
217
+ */
218
+ status: ScanStatus;
219
+ /**
220
+ * @generated from field: optional string error = 3;
221
+ */
222
+ error?: string;
223
+ /**
224
+ * @generated from field: google.protobuf.Timestamp created = 4;
225
+ */
226
+ created?: Timestamp;
227
+ /**
228
+ * @generated from field: google.protobuf.Timestamp updated = 5;
229
+ */
230
+ updated?: Timestamp;
231
+ /**
232
+ * Present once the scan has reached a terminal status and reported results.
233
+ *
234
+ * @generated from field: optional scan.v1.ScanSummary summary = 6;
235
+ */
236
+ summary?: ScanSummary;
237
+ constructor(data?: PartialMessage<ScanStatusResponse>);
238
+ static readonly runtime: typeof proto3;
239
+ static readonly typeName = "scan.v1.ScanStatusResponse";
240
+ static readonly fields: FieldList;
241
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanStatusResponse;
242
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanStatusResponse;
243
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanStatusResponse;
244
+ static equals(a: ScanStatusResponse | PlainMessage<ScanStatusResponse> | undefined, b: ScanStatusResponse | PlainMessage<ScanStatusResponse> | undefined): boolean;
245
+ }
246
+ /**
247
+ * @generated from message scan.v1.ScanListRequest
248
+ */
249
+ export declare class ScanListRequest extends Message<ScanListRequest> {
250
+ /**
251
+ * @generated from field: string organization_id = 1;
252
+ */
253
+ organizationId: string;
254
+ /**
255
+ * @generated from field: string application_id = 2;
256
+ */
257
+ applicationId: string;
258
+ /**
259
+ * @generated from field: string directory_hash = 3;
260
+ */
261
+ directoryHash: string;
262
+ constructor(data?: PartialMessage<ScanListRequest>);
263
+ static readonly runtime: typeof proto3;
264
+ static readonly typeName = "scan.v1.ScanListRequest";
265
+ static readonly fields: FieldList;
266
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanListRequest;
267
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanListRequest;
268
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanListRequest;
269
+ static equals(a: ScanListRequest | PlainMessage<ScanListRequest> | undefined, b: ScanListRequest | PlainMessage<ScanListRequest> | undefined): boolean;
270
+ }
271
+ /**
272
+ * @generated from message scan.v1.ScanListResponse
273
+ */
274
+ export declare class ScanListResponse extends Message<ScanListResponse> {
275
+ /**
276
+ * @generated from field: repeated scan.v1.ScanStatusResponse scans = 1;
277
+ */
278
+ scans: ScanStatusResponse[];
279
+ constructor(data?: PartialMessage<ScanListResponse>);
280
+ static readonly runtime: typeof proto3;
281
+ static readonly typeName = "scan.v1.ScanListResponse";
282
+ static readonly fields: FieldList;
283
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanListResponse;
284
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanListResponse;
285
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanListResponse;
286
+ static equals(a: ScanListResponse | PlainMessage<ScanListResponse> | undefined, b: ScanListResponse | PlainMessage<ScanListResponse> | undefined): boolean;
287
+ }
288
+ /**
289
+ * ScanSummary is a compact tally of what a scan found. SABS stores this so
290
+ * callers can poll for an outcome without a second round trip to the server,
291
+ * which remains the system of record for individual findings.
292
+ *
293
+ * @generated from message scan.v1.ScanSummary
294
+ */
295
+ export declare class ScanSummary extends Message<ScanSummary> {
296
+ /**
297
+ * @generated from field: int64 total_findings = 1;
298
+ */
299
+ totalFindings: bigint;
300
+ /**
301
+ * Findings whose severity Semgrep reported as ERROR.
302
+ *
303
+ * @generated from field: int64 high_severity_findings = 2;
304
+ */
305
+ highSeverityFindings: bigint;
306
+ /**
307
+ * Findings originating from the source scan rather than the built-asset scan.
308
+ *
309
+ * @generated from field: int64 source_findings = 3;
310
+ */
311
+ sourceFindings: bigint;
312
+ /**
313
+ * Findings originating from the built-asset scan.
314
+ *
315
+ * @generated from field: int64 built_asset_findings = 4;
316
+ */
317
+ builtAssetFindings: bigint;
318
+ /**
319
+ * Version of the scanner that produced this summary, for finding provenance.
320
+ *
321
+ * @generated from field: string scanner_version = 5;
322
+ */
323
+ scannerVersion: string;
324
+ constructor(data?: PartialMessage<ScanSummary>);
325
+ static readonly runtime: typeof proto3;
326
+ static readonly typeName = "scan.v1.ScanSummary";
327
+ static readonly fields: FieldList;
328
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanSummary;
329
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanSummary;
330
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanSummary;
331
+ static equals(a: ScanSummary | PlainMessage<ScanSummary> | undefined, b: ScanSummary | PlainMessage<ScanSummary> | undefined): boolean;
332
+ }
333
+ /**
334
+ * Step timing information for scan metrics.
335
+ *
336
+ * @generated from message scan.v1.ScanStepTimings
337
+ */
338
+ export declare class ScanStepTimings extends Message<ScanStepTimings> {
339
+ /**
340
+ * @generated from field: optional int64 fetch_source_ms = 1;
341
+ */
342
+ fetchSourceMs?: bigint;
343
+ /**
344
+ * @generated from field: optional int64 fetch_artifacts_ms = 2;
345
+ */
346
+ fetchArtifactsMs?: bigint;
347
+ /**
348
+ * @generated from field: optional int64 source_scan_ms = 3;
349
+ */
350
+ sourceScanMs?: bigint;
351
+ /**
352
+ * @generated from field: optional int64 built_asset_scan_ms = 4;
353
+ */
354
+ builtAssetScanMs?: bigint;
355
+ /**
356
+ * @generated from field: optional int64 report_findings_ms = 5;
357
+ */
358
+ reportFindingsMs?: bigint;
359
+ constructor(data?: PartialMessage<ScanStepTimings>);
360
+ static readonly runtime: typeof proto3;
361
+ static readonly typeName = "scan.v1.ScanStepTimings";
362
+ static readonly fields: FieldList;
363
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanStepTimings;
364
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanStepTimings;
365
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanStepTimings;
366
+ static equals(a: ScanStepTimings | PlainMessage<ScanStepTimings> | undefined, b: ScanStepTimings | PlainMessage<ScanStepTimings> | undefined): boolean;
367
+ }
368
+ /**
369
+ * @generated from message scan.v1.ScanTerminateRequest
370
+ */
371
+ export declare class ScanTerminateRequest extends Message<ScanTerminateRequest> {
372
+ /**
373
+ * @generated from field: string scan_id = 1;
374
+ */
375
+ scanId: string;
376
+ /**
377
+ * @generated from field: scan.v1.ScanStatus status = 2;
378
+ */
379
+ status: ScanStatus;
380
+ /**
381
+ * @generated from field: optional string error = 3;
382
+ */
383
+ error?: string;
384
+ /**
385
+ * Secret key for the scan being terminated
386
+ *
387
+ * @generated from field: string scan_key = 4;
388
+ */
389
+ scanKey: string;
390
+ /**
391
+ * @generated from field: optional scan.v1.ScanStepTimings step_timings = 5;
392
+ */
393
+ stepTimings?: ScanStepTimings;
394
+ /**
395
+ * @generated from field: optional scan.v1.ScanSummary summary = 6;
396
+ */
397
+ summary?: ScanSummary;
398
+ constructor(data?: PartialMessage<ScanTerminateRequest>);
399
+ static readonly runtime: typeof proto3;
400
+ static readonly typeName = "scan.v1.ScanTerminateRequest";
401
+ static readonly fields: FieldList;
402
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanTerminateRequest;
403
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanTerminateRequest;
404
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanTerminateRequest;
405
+ static equals(a: ScanTerminateRequest | PlainMessage<ScanTerminateRequest> | undefined, b: ScanTerminateRequest | PlainMessage<ScanTerminateRequest> | undefined): boolean;
406
+ }
407
+ /**
408
+ * @generated from message scan.v1.ScanTerminateResponse
409
+ */
410
+ export declare class ScanTerminateResponse extends Message<ScanTerminateResponse> {
411
+ /**
412
+ * @generated from field: string scan_id = 1;
413
+ */
414
+ scanId: string;
415
+ /**
416
+ * @generated from field: scan.v1.ScanStatus status = 2;
417
+ */
418
+ status: ScanStatus;
419
+ /**
420
+ * @generated from field: optional string error = 3;
421
+ */
422
+ error?: string;
423
+ /**
424
+ * @generated from field: google.protobuf.Timestamp created = 4;
425
+ */
426
+ created?: Timestamp;
427
+ /**
428
+ * @generated from field: google.protobuf.Timestamp updated = 5;
429
+ */
430
+ updated?: Timestamp;
431
+ constructor(data?: PartialMessage<ScanTerminateResponse>);
432
+ static readonly runtime: typeof proto3;
433
+ static readonly typeName = "scan.v1.ScanTerminateResponse";
434
+ static readonly fields: FieldList;
435
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ScanTerminateResponse;
436
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ScanTerminateResponse;
437
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ScanTerminateResponse;
438
+ static equals(a: ScanTerminateResponse | PlainMessage<ScanTerminateResponse> | undefined, b: ScanTerminateResponse | PlainMessage<ScanTerminateResponse> | undefined): boolean;
439
+ }
440
+ //# sourceMappingURL=service_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service_pb.d.ts","sourceRoot":"","sources":["../../../scan/v1/service_pb.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,582 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v1.3.0 with parameter "target=ts"
3
+ // @generated from file scan/v1/service.proto (package scan.v1, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.ScanTerminateResponse = exports.ScanTerminateRequest = exports.ScanStepTimings = exports.ScanSummary = exports.ScanListResponse = exports.ScanListRequest = exports.ScanStatusResponse = exports.ScanStatusRequest = exports.ScanResponse = exports.PolicyGateContext = exports.ScanApplicationMetadata = exports.ScanRequest = exports.ScanStatus = void 0;
8
+ const protobuf_1 = require("@bufbuild/protobuf");
9
+ /**
10
+ * ScanStatus describes scan *execution* state only. Whether the findings a scan
11
+ * produced should block a deploy is a policy decision owned by the Superblocks
12
+ * server, deliberately not modeled here.
13
+ *
14
+ * @generated from enum scan.v1.ScanStatus
15
+ */
16
+ var ScanStatus;
17
+ (function (ScanStatus) {
18
+ /**
19
+ * @generated from enum value: SCAN_STATUS_UNSPECIFIED = 0;
20
+ */
21
+ ScanStatus[ScanStatus["UNSPECIFIED"] = 0] = "UNSPECIFIED";
22
+ /**
23
+ * @generated from enum value: SCAN_STATUS_RUNNING = 1;
24
+ */
25
+ ScanStatus[ScanStatus["RUNNING"] = 1] = "RUNNING";
26
+ /**
27
+ * @generated from enum value: SCAN_STATUS_SUCCESS = 2;
28
+ */
29
+ ScanStatus[ScanStatus["SUCCESS"] = 2] = "SUCCESS";
30
+ /**
31
+ * @generated from enum value: SCAN_STATUS_FAILED = 3;
32
+ */
33
+ ScanStatus[ScanStatus["FAILED"] = 3] = "FAILED";
34
+ /**
35
+ * @generated from enum value: SCAN_STATUS_TIMED_OUT = 4;
36
+ */
37
+ ScanStatus[ScanStatus["TIMED_OUT"] = 4] = "TIMED_OUT";
38
+ })(ScanStatus || (exports.ScanStatus = ScanStatus = {}));
39
+ // Retrieve enum metadata with: proto3.getEnumType(ScanStatus)
40
+ protobuf_1.proto3.util.setEnumType(ScanStatus, "scan.v1.ScanStatus", [
41
+ { no: 0, name: "SCAN_STATUS_UNSPECIFIED" },
42
+ { no: 1, name: "SCAN_STATUS_RUNNING" },
43
+ { no: 2, name: "SCAN_STATUS_SUCCESS" },
44
+ { no: 3, name: "SCAN_STATUS_FAILED" },
45
+ { no: 4, name: "SCAN_STATUS_TIMED_OUT" },
46
+ ]);
47
+ /**
48
+ * @generated from message scan.v1.ScanRequest
49
+ */
50
+ class ScanRequest extends protobuf_1.Message {
51
+ constructor(data) {
52
+ super();
53
+ /**
54
+ * Identifies the application revision to scan. The scan pod resolves this to
55
+ * source and built artifacts previously persisted under this hash.
56
+ *
57
+ * @generated from field: string directory_hash = 1;
58
+ */
59
+ this.directoryHash = "";
60
+ /**
61
+ * Secret key to associate with this scan. Required by any subsequent request
62
+ * that changes the state of the scan (e.g. terminating it).
63
+ *
64
+ * @generated from field: string scan_key = 3;
65
+ */
66
+ this.scanKey = "";
67
+ /**
68
+ * Token the scan pod presents to Bucketeer to presign artifact downloads.
69
+ * Bucketeer requires the org:read scope and its own audience, which the
70
+ * caller's SABS token does not carry, so it is supplied separately rather
71
+ * than reused. Absent means the pod cannot fetch artifacts and will fail.
72
+ *
73
+ * @generated from field: string artifact_read_token = 5;
74
+ */
75
+ this.artifactReadToken = "";
76
+ protobuf_1.proto3.util.initPartial(data, this);
77
+ }
78
+ static fromBinary(bytes, options) {
79
+ return new ScanRequest().fromBinary(bytes, options);
80
+ }
81
+ static fromJson(jsonValue, options) {
82
+ return new ScanRequest().fromJson(jsonValue, options);
83
+ }
84
+ static fromJsonString(jsonString, options) {
85
+ return new ScanRequest().fromJsonString(jsonString, options);
86
+ }
87
+ static equals(a, b) {
88
+ return protobuf_1.proto3.util.equals(ScanRequest, a, b);
89
+ }
90
+ }
91
+ exports.ScanRequest = ScanRequest;
92
+ ScanRequest.runtime = protobuf_1.proto3;
93
+ ScanRequest.typeName = "scan.v1.ScanRequest";
94
+ ScanRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
95
+ { no: 1, name: "directory_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
96
+ { no: 2, name: "application_metadata", kind: "message", T: ScanApplicationMetadata },
97
+ { no: 3, name: "scan_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
98
+ { no: 4, name: "policy_gate", kind: "message", T: PolicyGateContext, opt: true },
99
+ { no: 5, name: "artifact_read_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
100
+ ]);
101
+ /**
102
+ * Required data for locating the application's source and built artifacts.
103
+ *
104
+ * @generated from message scan.v1.ScanApplicationMetadata
105
+ */
106
+ class ScanApplicationMetadata extends protobuf_1.Message {
107
+ constructor(data) {
108
+ super();
109
+ /**
110
+ * @generated from field: string id = 1;
111
+ */
112
+ this.id = "";
113
+ /**
114
+ * @generated from field: string organization_id = 2;
115
+ */
116
+ this.organizationId = "";
117
+ protobuf_1.proto3.util.initPartial(data, this);
118
+ }
119
+ static fromBinary(bytes, options) {
120
+ return new ScanApplicationMetadata().fromBinary(bytes, options);
121
+ }
122
+ static fromJson(jsonValue, options) {
123
+ return new ScanApplicationMetadata().fromJson(jsonValue, options);
124
+ }
125
+ static fromJsonString(jsonString, options) {
126
+ return new ScanApplicationMetadata().fromJsonString(jsonString, options);
127
+ }
128
+ static equals(a, b) {
129
+ return protobuf_1.proto3.util.equals(ScanApplicationMetadata, a, b);
130
+ }
131
+ }
132
+ exports.ScanApplicationMetadata = ScanApplicationMetadata;
133
+ ScanApplicationMetadata.runtime = protobuf_1.proto3;
134
+ ScanApplicationMetadata.typeName = "scan.v1.ScanApplicationMetadata";
135
+ ScanApplicationMetadata.fields = protobuf_1.proto3.util.newFieldList(() => [
136
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
137
+ { no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
138
+ ]);
139
+ /**
140
+ * PolicyGateContext carries the Superblocks server assignment that a scan's
141
+ * findings belong to. The scan pod echoes these fields back to the server on
142
+ * POST /api/v1/policy-gates/review-runs/state.
143
+ *
144
+ * @generated from message scan.v1.PolicyGateContext
145
+ */
146
+ class PolicyGateContext extends protobuf_1.Message {
147
+ constructor(data) {
148
+ super();
149
+ /**
150
+ * @generated from field: string ai_agent_run_id = 1;
151
+ */
152
+ this.aiAgentRunId = "";
153
+ /**
154
+ * @generated from field: string application_commit_id = 2;
155
+ */
156
+ this.applicationCommitId = "";
157
+ /**
158
+ * @generated from field: string execution_context = 3;
159
+ */
160
+ this.executionContext = "";
161
+ /**
162
+ * @generated from field: string profile_id = 4;
163
+ */
164
+ this.profileId = "";
165
+ /**
166
+ * @generated from field: string review_policy_id = 5;
167
+ */
168
+ this.reviewPolicyId = "";
169
+ /**
170
+ * @generated from field: string review_policy_version_id = 6;
171
+ */
172
+ this.reviewPolicyVersionId = "";
173
+ /**
174
+ * @generated from field: string runner_type = 7;
175
+ */
176
+ this.runnerType = "";
177
+ /**
178
+ * @generated from field: string runtime = 8;
179
+ */
180
+ this.runtime = "";
181
+ /**
182
+ * @generated from field: string trigger = 9;
183
+ */
184
+ this.trigger = "";
185
+ /**
186
+ * Token the scan pod presents when reporting the review run. The server
187
+ * checks its commit_id and dir_hash claims against the reported body, so it
188
+ * is minted per scan and is neither the SABS token nor the Bucketeer token.
189
+ *
190
+ * @generated from field: string token = 10;
191
+ */
192
+ this.token = "";
193
+ protobuf_1.proto3.util.initPartial(data, this);
194
+ }
195
+ static fromBinary(bytes, options) {
196
+ return new PolicyGateContext().fromBinary(bytes, options);
197
+ }
198
+ static fromJson(jsonValue, options) {
199
+ return new PolicyGateContext().fromJson(jsonValue, options);
200
+ }
201
+ static fromJsonString(jsonString, options) {
202
+ return new PolicyGateContext().fromJsonString(jsonString, options);
203
+ }
204
+ static equals(a, b) {
205
+ return protobuf_1.proto3.util.equals(PolicyGateContext, a, b);
206
+ }
207
+ }
208
+ exports.PolicyGateContext = PolicyGateContext;
209
+ PolicyGateContext.runtime = protobuf_1.proto3;
210
+ PolicyGateContext.typeName = "scan.v1.PolicyGateContext";
211
+ PolicyGateContext.fields = protobuf_1.proto3.util.newFieldList(() => [
212
+ { no: 1, name: "ai_agent_run_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
213
+ { no: 2, name: "application_commit_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
214
+ { no: 3, name: "execution_context", kind: "scalar", T: 9 /* ScalarType.STRING */ },
215
+ { no: 4, name: "profile_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
216
+ { no: 5, name: "review_policy_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
217
+ { no: 6, name: "review_policy_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
218
+ { no: 7, name: "runner_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
219
+ { no: 8, name: "runtime", kind: "scalar", T: 9 /* ScalarType.STRING */ },
220
+ { no: 9, name: "trigger", kind: "scalar", T: 9 /* ScalarType.STRING */ },
221
+ { no: 10, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
222
+ ]);
223
+ /**
224
+ * @generated from message scan.v1.ScanResponse
225
+ */
226
+ class ScanResponse extends protobuf_1.Message {
227
+ constructor(data) {
228
+ super();
229
+ /**
230
+ * For use to query scan status
231
+ *
232
+ * @generated from field: string scan_id = 1;
233
+ */
234
+ this.scanId = "";
235
+ protobuf_1.proto3.util.initPartial(data, this);
236
+ }
237
+ static fromBinary(bytes, options) {
238
+ return new ScanResponse().fromBinary(bytes, options);
239
+ }
240
+ static fromJson(jsonValue, options) {
241
+ return new ScanResponse().fromJson(jsonValue, options);
242
+ }
243
+ static fromJsonString(jsonString, options) {
244
+ return new ScanResponse().fromJsonString(jsonString, options);
245
+ }
246
+ static equals(a, b) {
247
+ return protobuf_1.proto3.util.equals(ScanResponse, a, b);
248
+ }
249
+ }
250
+ exports.ScanResponse = ScanResponse;
251
+ ScanResponse.runtime = protobuf_1.proto3;
252
+ ScanResponse.typeName = "scan.v1.ScanResponse";
253
+ ScanResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
254
+ { no: 1, name: "scan_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
255
+ { no: 2, name: "created", kind: "message", T: protobuf_1.Timestamp },
256
+ { no: 3, name: "updated", kind: "message", T: protobuf_1.Timestamp },
257
+ ]);
258
+ /**
259
+ * @generated from message scan.v1.ScanStatusRequest
260
+ */
261
+ class ScanStatusRequest extends protobuf_1.Message {
262
+ constructor(data) {
263
+ super();
264
+ /**
265
+ * @generated from field: string scan_id = 1;
266
+ */
267
+ this.scanId = "";
268
+ protobuf_1.proto3.util.initPartial(data, this);
269
+ }
270
+ static fromBinary(bytes, options) {
271
+ return new ScanStatusRequest().fromBinary(bytes, options);
272
+ }
273
+ static fromJson(jsonValue, options) {
274
+ return new ScanStatusRequest().fromJson(jsonValue, options);
275
+ }
276
+ static fromJsonString(jsonString, options) {
277
+ return new ScanStatusRequest().fromJsonString(jsonString, options);
278
+ }
279
+ static equals(a, b) {
280
+ return protobuf_1.proto3.util.equals(ScanStatusRequest, a, b);
281
+ }
282
+ }
283
+ exports.ScanStatusRequest = ScanStatusRequest;
284
+ ScanStatusRequest.runtime = protobuf_1.proto3;
285
+ ScanStatusRequest.typeName = "scan.v1.ScanStatusRequest";
286
+ ScanStatusRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
287
+ { no: 1, name: "scan_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
288
+ ]);
289
+ /**
290
+ * @generated from message scan.v1.ScanStatusResponse
291
+ */
292
+ class ScanStatusResponse extends protobuf_1.Message {
293
+ constructor(data) {
294
+ super();
295
+ /**
296
+ * @generated from field: string scan_id = 1;
297
+ */
298
+ this.scanId = "";
299
+ /**
300
+ * @generated from field: scan.v1.ScanStatus status = 2;
301
+ */
302
+ this.status = ScanStatus.UNSPECIFIED;
303
+ protobuf_1.proto3.util.initPartial(data, this);
304
+ }
305
+ static fromBinary(bytes, options) {
306
+ return new ScanStatusResponse().fromBinary(bytes, options);
307
+ }
308
+ static fromJson(jsonValue, options) {
309
+ return new ScanStatusResponse().fromJson(jsonValue, options);
310
+ }
311
+ static fromJsonString(jsonString, options) {
312
+ return new ScanStatusResponse().fromJsonString(jsonString, options);
313
+ }
314
+ static equals(a, b) {
315
+ return protobuf_1.proto3.util.equals(ScanStatusResponse, a, b);
316
+ }
317
+ }
318
+ exports.ScanStatusResponse = ScanStatusResponse;
319
+ ScanStatusResponse.runtime = protobuf_1.proto3;
320
+ ScanStatusResponse.typeName = "scan.v1.ScanStatusResponse";
321
+ ScanStatusResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
322
+ { no: 1, name: "scan_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
323
+ { no: 2, name: "status", kind: "enum", T: protobuf_1.proto3.getEnumType(ScanStatus) },
324
+ { no: 3, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
325
+ { no: 4, name: "created", kind: "message", T: protobuf_1.Timestamp },
326
+ { no: 5, name: "updated", kind: "message", T: protobuf_1.Timestamp },
327
+ { no: 6, name: "summary", kind: "message", T: ScanSummary, opt: true },
328
+ ]);
329
+ /**
330
+ * @generated from message scan.v1.ScanListRequest
331
+ */
332
+ class ScanListRequest extends protobuf_1.Message {
333
+ constructor(data) {
334
+ super();
335
+ /**
336
+ * @generated from field: string organization_id = 1;
337
+ */
338
+ this.organizationId = "";
339
+ /**
340
+ * @generated from field: string application_id = 2;
341
+ */
342
+ this.applicationId = "";
343
+ /**
344
+ * @generated from field: string directory_hash = 3;
345
+ */
346
+ this.directoryHash = "";
347
+ protobuf_1.proto3.util.initPartial(data, this);
348
+ }
349
+ static fromBinary(bytes, options) {
350
+ return new ScanListRequest().fromBinary(bytes, options);
351
+ }
352
+ static fromJson(jsonValue, options) {
353
+ return new ScanListRequest().fromJson(jsonValue, options);
354
+ }
355
+ static fromJsonString(jsonString, options) {
356
+ return new ScanListRequest().fromJsonString(jsonString, options);
357
+ }
358
+ static equals(a, b) {
359
+ return protobuf_1.proto3.util.equals(ScanListRequest, a, b);
360
+ }
361
+ }
362
+ exports.ScanListRequest = ScanListRequest;
363
+ ScanListRequest.runtime = protobuf_1.proto3;
364
+ ScanListRequest.typeName = "scan.v1.ScanListRequest";
365
+ ScanListRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
366
+ { no: 1, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
367
+ { no: 2, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
368
+ { no: 3, name: "directory_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
369
+ ]);
370
+ /**
371
+ * @generated from message scan.v1.ScanListResponse
372
+ */
373
+ class ScanListResponse extends protobuf_1.Message {
374
+ constructor(data) {
375
+ super();
376
+ /**
377
+ * @generated from field: repeated scan.v1.ScanStatusResponse scans = 1;
378
+ */
379
+ this.scans = [];
380
+ protobuf_1.proto3.util.initPartial(data, this);
381
+ }
382
+ static fromBinary(bytes, options) {
383
+ return new ScanListResponse().fromBinary(bytes, options);
384
+ }
385
+ static fromJson(jsonValue, options) {
386
+ return new ScanListResponse().fromJson(jsonValue, options);
387
+ }
388
+ static fromJsonString(jsonString, options) {
389
+ return new ScanListResponse().fromJsonString(jsonString, options);
390
+ }
391
+ static equals(a, b) {
392
+ return protobuf_1.proto3.util.equals(ScanListResponse, a, b);
393
+ }
394
+ }
395
+ exports.ScanListResponse = ScanListResponse;
396
+ ScanListResponse.runtime = protobuf_1.proto3;
397
+ ScanListResponse.typeName = "scan.v1.ScanListResponse";
398
+ ScanListResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
399
+ { no: 1, name: "scans", kind: "message", T: ScanStatusResponse, repeated: true },
400
+ ]);
401
+ /**
402
+ * ScanSummary is a compact tally of what a scan found. SABS stores this so
403
+ * callers can poll for an outcome without a second round trip to the server,
404
+ * which remains the system of record for individual findings.
405
+ *
406
+ * @generated from message scan.v1.ScanSummary
407
+ */
408
+ class ScanSummary extends protobuf_1.Message {
409
+ constructor(data) {
410
+ super();
411
+ /**
412
+ * @generated from field: int64 total_findings = 1;
413
+ */
414
+ this.totalFindings = protobuf_1.protoInt64.zero;
415
+ /**
416
+ * Findings whose severity Semgrep reported as ERROR.
417
+ *
418
+ * @generated from field: int64 high_severity_findings = 2;
419
+ */
420
+ this.highSeverityFindings = protobuf_1.protoInt64.zero;
421
+ /**
422
+ * Findings originating from the source scan rather than the built-asset scan.
423
+ *
424
+ * @generated from field: int64 source_findings = 3;
425
+ */
426
+ this.sourceFindings = protobuf_1.protoInt64.zero;
427
+ /**
428
+ * Findings originating from the built-asset scan.
429
+ *
430
+ * @generated from field: int64 built_asset_findings = 4;
431
+ */
432
+ this.builtAssetFindings = protobuf_1.protoInt64.zero;
433
+ /**
434
+ * Version of the scanner that produced this summary, for finding provenance.
435
+ *
436
+ * @generated from field: string scanner_version = 5;
437
+ */
438
+ this.scannerVersion = "";
439
+ protobuf_1.proto3.util.initPartial(data, this);
440
+ }
441
+ static fromBinary(bytes, options) {
442
+ return new ScanSummary().fromBinary(bytes, options);
443
+ }
444
+ static fromJson(jsonValue, options) {
445
+ return new ScanSummary().fromJson(jsonValue, options);
446
+ }
447
+ static fromJsonString(jsonString, options) {
448
+ return new ScanSummary().fromJsonString(jsonString, options);
449
+ }
450
+ static equals(a, b) {
451
+ return protobuf_1.proto3.util.equals(ScanSummary, a, b);
452
+ }
453
+ }
454
+ exports.ScanSummary = ScanSummary;
455
+ ScanSummary.runtime = protobuf_1.proto3;
456
+ ScanSummary.typeName = "scan.v1.ScanSummary";
457
+ ScanSummary.fields = protobuf_1.proto3.util.newFieldList(() => [
458
+ { no: 1, name: "total_findings", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
459
+ { no: 2, name: "high_severity_findings", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
460
+ { no: 3, name: "source_findings", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
461
+ { no: 4, name: "built_asset_findings", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
462
+ { no: 5, name: "scanner_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
463
+ ]);
464
+ /**
465
+ * Step timing information for scan metrics.
466
+ *
467
+ * @generated from message scan.v1.ScanStepTimings
468
+ */
469
+ class ScanStepTimings extends protobuf_1.Message {
470
+ constructor(data) {
471
+ super();
472
+ protobuf_1.proto3.util.initPartial(data, this);
473
+ }
474
+ static fromBinary(bytes, options) {
475
+ return new ScanStepTimings().fromBinary(bytes, options);
476
+ }
477
+ static fromJson(jsonValue, options) {
478
+ return new ScanStepTimings().fromJson(jsonValue, options);
479
+ }
480
+ static fromJsonString(jsonString, options) {
481
+ return new ScanStepTimings().fromJsonString(jsonString, options);
482
+ }
483
+ static equals(a, b) {
484
+ return protobuf_1.proto3.util.equals(ScanStepTimings, a, b);
485
+ }
486
+ }
487
+ exports.ScanStepTimings = ScanStepTimings;
488
+ ScanStepTimings.runtime = protobuf_1.proto3;
489
+ ScanStepTimings.typeName = "scan.v1.ScanStepTimings";
490
+ ScanStepTimings.fields = protobuf_1.proto3.util.newFieldList(() => [
491
+ { no: 1, name: "fetch_source_ms", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
492
+ { no: 2, name: "fetch_artifacts_ms", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
493
+ { no: 3, name: "source_scan_ms", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
494
+ { no: 4, name: "built_asset_scan_ms", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
495
+ { no: 5, name: "report_findings_ms", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
496
+ ]);
497
+ /**
498
+ * @generated from message scan.v1.ScanTerminateRequest
499
+ */
500
+ class ScanTerminateRequest extends protobuf_1.Message {
501
+ constructor(data) {
502
+ super();
503
+ /**
504
+ * @generated from field: string scan_id = 1;
505
+ */
506
+ this.scanId = "";
507
+ /**
508
+ * @generated from field: scan.v1.ScanStatus status = 2;
509
+ */
510
+ this.status = ScanStatus.UNSPECIFIED;
511
+ /**
512
+ * Secret key for the scan being terminated
513
+ *
514
+ * @generated from field: string scan_key = 4;
515
+ */
516
+ this.scanKey = "";
517
+ protobuf_1.proto3.util.initPartial(data, this);
518
+ }
519
+ static fromBinary(bytes, options) {
520
+ return new ScanTerminateRequest().fromBinary(bytes, options);
521
+ }
522
+ static fromJson(jsonValue, options) {
523
+ return new ScanTerminateRequest().fromJson(jsonValue, options);
524
+ }
525
+ static fromJsonString(jsonString, options) {
526
+ return new ScanTerminateRequest().fromJsonString(jsonString, options);
527
+ }
528
+ static equals(a, b) {
529
+ return protobuf_1.proto3.util.equals(ScanTerminateRequest, a, b);
530
+ }
531
+ }
532
+ exports.ScanTerminateRequest = ScanTerminateRequest;
533
+ ScanTerminateRequest.runtime = protobuf_1.proto3;
534
+ ScanTerminateRequest.typeName = "scan.v1.ScanTerminateRequest";
535
+ ScanTerminateRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
536
+ { no: 1, name: "scan_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
537
+ { no: 2, name: "status", kind: "enum", T: protobuf_1.proto3.getEnumType(ScanStatus) },
538
+ { no: 3, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
539
+ { no: 4, name: "scan_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
540
+ { no: 5, name: "step_timings", kind: "message", T: ScanStepTimings, opt: true },
541
+ { no: 6, name: "summary", kind: "message", T: ScanSummary, opt: true },
542
+ ]);
543
+ /**
544
+ * @generated from message scan.v1.ScanTerminateResponse
545
+ */
546
+ class ScanTerminateResponse extends protobuf_1.Message {
547
+ constructor(data) {
548
+ super();
549
+ /**
550
+ * @generated from field: string scan_id = 1;
551
+ */
552
+ this.scanId = "";
553
+ /**
554
+ * @generated from field: scan.v1.ScanStatus status = 2;
555
+ */
556
+ this.status = ScanStatus.UNSPECIFIED;
557
+ protobuf_1.proto3.util.initPartial(data, this);
558
+ }
559
+ static fromBinary(bytes, options) {
560
+ return new ScanTerminateResponse().fromBinary(bytes, options);
561
+ }
562
+ static fromJson(jsonValue, options) {
563
+ return new ScanTerminateResponse().fromJson(jsonValue, options);
564
+ }
565
+ static fromJsonString(jsonString, options) {
566
+ return new ScanTerminateResponse().fromJsonString(jsonString, options);
567
+ }
568
+ static equals(a, b) {
569
+ return protobuf_1.proto3.util.equals(ScanTerminateResponse, a, b);
570
+ }
571
+ }
572
+ exports.ScanTerminateResponse = ScanTerminateResponse;
573
+ ScanTerminateResponse.runtime = protobuf_1.proto3;
574
+ ScanTerminateResponse.typeName = "scan.v1.ScanTerminateResponse";
575
+ ScanTerminateResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
576
+ { no: 1, name: "scan_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
577
+ { no: 2, name: "status", kind: "enum", T: protobuf_1.proto3.getEnumType(ScanStatus) },
578
+ { no: 3, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
579
+ { no: 4, name: "created", kind: "message", T: protobuf_1.Timestamp },
580
+ { no: 5, name: "updated", kind: "message", T: protobuf_1.Timestamp },
581
+ ]);
582
+ //# sourceMappingURL=service_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service_pb.js","sourceRoot":"","sources":["../../../scan/v1/service_pb.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts","../build/v1/service_pb.ts","../google/api/http_pb.ts","../health/v1/service_pb.ts","../liveedit/v1/service_pb.ts","../index.ts","../protoc-gen-openapiv2/options/openapiv2_pb.ts"],"fileIdsList":[[52,63,65],[57,60,79],[56,60,64],[56,60,67],[53,58,62,66,67],[56,57,58,59],[64,65,66],[62,63,65,73],[63],[53,57,62],[54,62,64,65,67,68,74],[54,64,65,68,74,88,90],[54,55,56,64,65,68],[54,55,64,65,68],[54,64,65,68,74],[54,64,65,68,74,88,89],[52,53,54,55,56,57,58,60,62,63,64,65,66,67,68,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97],[62,65],[57,62,65,67],[54,61,64,65,68,73],[62,64,68],[53],[52,62,63,65,66,73],[56,64],[54,63],[57,60,62,65],[53,62,64,65,66,68,69,70,71,72],[60],[53,54,62,65,69,70],[62,64,65],[73],[65],[53,58,62,66],[98],[99,100,101,102]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"d35d462c95a35e34cc56d4d1dbf6f41999283dc642013a6eba9c293da48922fc","impliedFormat":1},{"version":"961ae7c3710ad5925a8041716e5816ac1e301088c3815b710f20d3ae09695430","impliedFormat":1},{"version":"90d6939e56a48b142c601779694d77983fd71520694844f6928781c4718886fb","impliedFormat":1},{"version":"2d737ff39762a1fcfabd3b0f97c4b7d891d8f9bb8c45982e6e87549a90982481","impliedFormat":1},{"version":"465dfadcd4b4362963bc40a8f94ace0d1ecda68e869eeddc20be6bf57e0110fb","impliedFormat":1},{"version":"808fd1efdfa85e4eab8012c7a087a2ebb8b0c6a536d2518ff6cead7a3192eaf1","impliedFormat":1},{"version":"fb3304ed260dec0eaad2f713317b6bbc218c0d21cb67c78580bb3897c15575c6","impliedFormat":1},{"version":"b3850321b5b187ef1dd451bbd7b83c6e6831cce74a4a8bee95b9ff31b2d5172f","impliedFormat":1},{"version":"eb257064d5dacdcfe73a4cef3325562fd3a7927fcaadcede2b5dddb5b92da417","impliedFormat":1},{"version":"6ea9588a03dd2768754a9360166daae3b1bf5120e65f3baef43c5cd3dcb4fbb8","impliedFormat":1},{"version":"d67615efb0127284da59f73194545cf9410d2b48da3129a3b326abdead17c6f6","impliedFormat":1},{"version":"5af50732b404045bcc0bcb63cb7883ece1b4e6852b64517945e914432363bc2c","impliedFormat":1},{"version":"58070c94ea0e5108c0539458badde653762717cfeecdf5d25512e2f8171416fb","impliedFormat":1},{"version":"4d2f45800ddb1cb1de1ab34196c010fbdd2e2bef101c4e4b97091dc5040c2ca9","impliedFormat":1},{"version":"70fe05199ca2af2c83c0a914ec18e92ffb271c2e4a2f8ee3c04f6e031b14acbc","impliedFormat":1},{"version":"3cef89d2d28728e3e81637bd02c601a12245938344383a4ce2275802762e7e6b","impliedFormat":1},{"version":"92a33be4e45b94a0f4572071c4768189817546e2880ab38befcb844cdf102534","impliedFormat":1},{"version":"5fe7963c7ca10d11035871bebc893f20c5be4c63e30fbdac989da71ca5eebdbf","impliedFormat":1},{"version":"dd4ded215da5342d94173e6643650023ea248c0d9c0bbe0318caebe7274438c5","impliedFormat":1},{"version":"2ffb2971267f8df92b64cc3916630e376de936171df46a29612088f60293cd41","impliedFormat":1},{"version":"5c228e9ec4226c3f61ed137a59a15bdfd0574c4bfddbdc013c62d6e0b27b0b6a","impliedFormat":1},{"version":"9a84ba25d436d82f0830f9f88c0e698857c131f6305e80594a9861c65a10ae30","impliedFormat":1},{"version":"7d6568f33fe202d6e75ed60ddeac15bca8ce1e01077385e4cb3dd9dd0130da28","impliedFormat":1},{"version":"82d3cdd488466e697681b914420994c88fd8595bc6888c46c421af7919405c71","impliedFormat":1},{"version":"aa61e6cb5e048437ab87d09e316ac45770840de626f5736c98a192c7d60c907a","impliedFormat":1},{"version":"071a8cff6dad210ba0bf897f1388eeeaa805a526b9ec7cc7c8dddc635163d806","impliedFormat":1},{"version":"e29f94fc3483a23f83a1acb0d931ff693e97b1109554552aa521402beb0bf48e","impliedFormat":1},{"version":"147e333507832d5d99734b020def22f33f995d5fc86d747b4f5356d0188e63fd","impliedFormat":1},{"version":"8c4a8552716e1e0fdc136f0854f3f06f5fb8782b70adeb1a90aff8fe215629b8","impliedFormat":1},{"version":"899200619538b0f98db2b5bc852350aad059f2070aa814deedead6c02c9d8d46","impliedFormat":1},{"version":"64531510183ce687dc1484b1872abce3b9c6e01eceb2b6470e0a9c57fd2712d0","impliedFormat":1},{"version":"db9086eccd3256f810ac13f48e370f8b5137a63208f8040422a94744f781e73c","impliedFormat":1},{"version":"84c16bc921fcd5f4d846ce3d93d354f94f6299df34703f59afae6c6e775078bf","impliedFormat":1},{"version":"e712cad833246cdf450f5554ee1510f584a95a5e281efd52e29bed2deb1cc4c9","impliedFormat":1},{"version":"d7c8351dfa3a584c6fdc09544ef019194cb2ea7d9e85fb11230a3e42c4dc983a","impliedFormat":1},{"version":"33f99657300799c354171117d7f70da1f325f2083371074d92c6e07903110f87","impliedFormat":1},{"version":"fa6b27a596fa69645ea962f3d865eedb7a6e431fb1abe7648722fb33d30307e3","impliedFormat":1},{"version":"5174f5ef2b78013a23512cbc7836bf85781a5cad54c927f1ddbac41f28855b39","impliedFormat":1},{"version":"60da60a86767337d4f2184af60c1d8a5a3d78d2468323ae688478a4aac33d6e8","impliedFormat":1},{"version":"9d5758e932374ed7965ac329d30700098a4c752efdb1ce8170d74b3354475a7c","impliedFormat":1},{"version":"9a2205771a9ac694ee379c7da11c2ecbf92df025bf3ca0a7c67d5a466169da3b","impliedFormat":1},{"version":"ee7cf7d3f43ab03590c2af84c8c0f6685a950d28a1ba86a5ec594fc21fd892d1","impliedFormat":1},{"version":"eb9b4a340fdfa222f0bb5ca5cc57cfbdd2a8aece5b4c25543309a90906a7493a","impliedFormat":1},{"version":"2ef5231141ed12543768d0c0c5765ffd12d1a28fc231ec4c40caf11aa19908df","impliedFormat":1},{"version":"921572e442e836b604dfb2042ae0b4a268c9713c694a1807b3ad2f6acdf93737","impliedFormat":1},{"version":"b45c6a853aa17d19445f501aef85f135d7287b6e349a2297f1554e95d079d9d0","impliedFormat":1},{"version":"8748f92d6a1b4ebab0e74f3df84fe22178ed0781aa89e2c100d18ce8de042368","impliedFormat":1},{"version":"99ed61da07a77e24a5c74e1f1bde8adddc00823228a37fa15bda536f2504ce3f","signature":"9120486afaa15b5ec4e3a8d3fc9e2a4a6aeed993565b6c753e471bac975fe45f"},{"version":"87711873f4de57f4f54985d80b5240113d49af1d60dbc84417c6aec9cb5f363a","signature":"5eddbc2fee7235461e1150f8c20209acec6d617225d6b6f2c0f025badafccf0e"},{"version":"712b61dc5bc5544802653742d6e8569b3b46e8ed45d610e90a1dd99ef10101cd","signature":"23e5e2b574fdbe1af511c54c16706d6aad4866871b669508e5d7b78fa4ff28c3"},{"version":"6e53ea07f5b1108b3c24d20a742af97c9561a73d136710fddc2ec79873cacc9d","signature":"1c85cd742f06f96ff50aaf84a86a2f2d591f1a3e683f8725f58038dcff68e348"},"2889f10f34172ace25afe13fd27ed755aef06876400cdeaff4b7232e7ff56081",{"version":"2e3298f9ff02f0c30abecc6f79881aadb59e8e133ae8e1d20e0f31fec9fd598e","signature":"6954a3fc7a8b77b21c82ec7be4d73d19e8a30dda2bbbcc59f3c94a7b1181f442"}],"root":[[99,104]],"options":{"allowJs":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strictNullChecks":true,"target":7},"referencedMap":[[64,1],[80,2],[83,3],[85,4],[84,5],[60,6],[82,7],[66,8],[54,9],[63,10],[89,11],[91,12],[87,13],[56,14],[92,15],[93,15],[94,15],[88,15],[95,15],[96,15],[90,16],[97,15],[98,17],[81,18],[68,19],[62,20],[65,21],[70,22],[72,23],[59,24],[69,25],[61,26],[73,27],[79,28],[71,29],[78,30],[55,31],[74,31],[58,18],[86,32],[67,33],[99,34],[100,34],[101,34],[103,35],[102,34],[104,34]],"latestChangedDtsFile":"./protoc-gen-openapiv2/options/openapiv2_pb.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.full.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts","../../../../node_modules/.pnpm/@bufbuild+protobuf@1.10.1/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts","../build/v1/service_pb.ts","../google/api/http_pb.ts","../health/v1/service_pb.ts","../liveedit/v1/service_pb.ts","../scan/v1/service_pb.ts","../index.ts","../protoc-gen-openapiv2/options/openapiv2_pb.ts"],"fileIdsList":[[52,63,65],[57,60,79],[56,60,64],[56,60,67],[53,58,62,66,67],[56,57,58,59],[64,65,66],[62,63,65,73],[63],[53,57,62],[54,62,64,65,67,68,74],[54,64,65,68,74,88,90],[54,55,56,64,65,68],[54,55,64,65,68],[54,64,65,68,74],[54,64,65,68,74,88,89],[52,53,54,55,56,57,58,60,62,63,64,65,66,67,68,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97],[62,65],[57,62,65,67],[54,61,64,65,68,73],[62,64,68],[53],[52,62,63,65,66,73],[56,64],[54,63],[57,60,62,65],[53,62,64,65,66,68,69,70,71,72],[60],[53,54,62,65,69,70],[62,64,65],[73],[65],[53,58,62,66],[98],[99,100,101,102,103]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"d35d462c95a35e34cc56d4d1dbf6f41999283dc642013a6eba9c293da48922fc","impliedFormat":1},{"version":"961ae7c3710ad5925a8041716e5816ac1e301088c3815b710f20d3ae09695430","impliedFormat":1},{"version":"90d6939e56a48b142c601779694d77983fd71520694844f6928781c4718886fb","impliedFormat":1},{"version":"2d737ff39762a1fcfabd3b0f97c4b7d891d8f9bb8c45982e6e87549a90982481","impliedFormat":1},{"version":"465dfadcd4b4362963bc40a8f94ace0d1ecda68e869eeddc20be6bf57e0110fb","impliedFormat":1},{"version":"808fd1efdfa85e4eab8012c7a087a2ebb8b0c6a536d2518ff6cead7a3192eaf1","impliedFormat":1},{"version":"fb3304ed260dec0eaad2f713317b6bbc218c0d21cb67c78580bb3897c15575c6","impliedFormat":1},{"version":"b3850321b5b187ef1dd451bbd7b83c6e6831cce74a4a8bee95b9ff31b2d5172f","impliedFormat":1},{"version":"eb257064d5dacdcfe73a4cef3325562fd3a7927fcaadcede2b5dddb5b92da417","impliedFormat":1},{"version":"6ea9588a03dd2768754a9360166daae3b1bf5120e65f3baef43c5cd3dcb4fbb8","impliedFormat":1},{"version":"d67615efb0127284da59f73194545cf9410d2b48da3129a3b326abdead17c6f6","impliedFormat":1},{"version":"5af50732b404045bcc0bcb63cb7883ece1b4e6852b64517945e914432363bc2c","impliedFormat":1},{"version":"58070c94ea0e5108c0539458badde653762717cfeecdf5d25512e2f8171416fb","impliedFormat":1},{"version":"4d2f45800ddb1cb1de1ab34196c010fbdd2e2bef101c4e4b97091dc5040c2ca9","impliedFormat":1},{"version":"70fe05199ca2af2c83c0a914ec18e92ffb271c2e4a2f8ee3c04f6e031b14acbc","impliedFormat":1},{"version":"3cef89d2d28728e3e81637bd02c601a12245938344383a4ce2275802762e7e6b","impliedFormat":1},{"version":"92a33be4e45b94a0f4572071c4768189817546e2880ab38befcb844cdf102534","impliedFormat":1},{"version":"5fe7963c7ca10d11035871bebc893f20c5be4c63e30fbdac989da71ca5eebdbf","impliedFormat":1},{"version":"dd4ded215da5342d94173e6643650023ea248c0d9c0bbe0318caebe7274438c5","impliedFormat":1},{"version":"2ffb2971267f8df92b64cc3916630e376de936171df46a29612088f60293cd41","impliedFormat":1},{"version":"5c228e9ec4226c3f61ed137a59a15bdfd0574c4bfddbdc013c62d6e0b27b0b6a","impliedFormat":1},{"version":"9a84ba25d436d82f0830f9f88c0e698857c131f6305e80594a9861c65a10ae30","impliedFormat":1},{"version":"7d6568f33fe202d6e75ed60ddeac15bca8ce1e01077385e4cb3dd9dd0130da28","impliedFormat":1},{"version":"82d3cdd488466e697681b914420994c88fd8595bc6888c46c421af7919405c71","impliedFormat":1},{"version":"aa61e6cb5e048437ab87d09e316ac45770840de626f5736c98a192c7d60c907a","impliedFormat":1},{"version":"071a8cff6dad210ba0bf897f1388eeeaa805a526b9ec7cc7c8dddc635163d806","impliedFormat":1},{"version":"e29f94fc3483a23f83a1acb0d931ff693e97b1109554552aa521402beb0bf48e","impliedFormat":1},{"version":"147e333507832d5d99734b020def22f33f995d5fc86d747b4f5356d0188e63fd","impliedFormat":1},{"version":"8c4a8552716e1e0fdc136f0854f3f06f5fb8782b70adeb1a90aff8fe215629b8","impliedFormat":1},{"version":"899200619538b0f98db2b5bc852350aad059f2070aa814deedead6c02c9d8d46","impliedFormat":1},{"version":"64531510183ce687dc1484b1872abce3b9c6e01eceb2b6470e0a9c57fd2712d0","impliedFormat":1},{"version":"db9086eccd3256f810ac13f48e370f8b5137a63208f8040422a94744f781e73c","impliedFormat":1},{"version":"84c16bc921fcd5f4d846ce3d93d354f94f6299df34703f59afae6c6e775078bf","impliedFormat":1},{"version":"e712cad833246cdf450f5554ee1510f584a95a5e281efd52e29bed2deb1cc4c9","impliedFormat":1},{"version":"d7c8351dfa3a584c6fdc09544ef019194cb2ea7d9e85fb11230a3e42c4dc983a","impliedFormat":1},{"version":"33f99657300799c354171117d7f70da1f325f2083371074d92c6e07903110f87","impliedFormat":1},{"version":"fa6b27a596fa69645ea962f3d865eedb7a6e431fb1abe7648722fb33d30307e3","impliedFormat":1},{"version":"5174f5ef2b78013a23512cbc7836bf85781a5cad54c927f1ddbac41f28855b39","impliedFormat":1},{"version":"60da60a86767337d4f2184af60c1d8a5a3d78d2468323ae688478a4aac33d6e8","impliedFormat":1},{"version":"9d5758e932374ed7965ac329d30700098a4c752efdb1ce8170d74b3354475a7c","impliedFormat":1},{"version":"9a2205771a9ac694ee379c7da11c2ecbf92df025bf3ca0a7c67d5a466169da3b","impliedFormat":1},{"version":"ee7cf7d3f43ab03590c2af84c8c0f6685a950d28a1ba86a5ec594fc21fd892d1","impliedFormat":1},{"version":"eb9b4a340fdfa222f0bb5ca5cc57cfbdd2a8aece5b4c25543309a90906a7493a","impliedFormat":1},{"version":"2ef5231141ed12543768d0c0c5765ffd12d1a28fc231ec4c40caf11aa19908df","impliedFormat":1},{"version":"921572e442e836b604dfb2042ae0b4a268c9713c694a1807b3ad2f6acdf93737","impliedFormat":1},{"version":"b45c6a853aa17d19445f501aef85f135d7287b6e349a2297f1554e95d079d9d0","impliedFormat":1},{"version":"8748f92d6a1b4ebab0e74f3df84fe22178ed0781aa89e2c100d18ce8de042368","impliedFormat":1},{"version":"99ed61da07a77e24a5c74e1f1bde8adddc00823228a37fa15bda536f2504ce3f","signature":"9120486afaa15b5ec4e3a8d3fc9e2a4a6aeed993565b6c753e471bac975fe45f"},{"version":"87711873f4de57f4f54985d80b5240113d49af1d60dbc84417c6aec9cb5f363a","signature":"5eddbc2fee7235461e1150f8c20209acec6d617225d6b6f2c0f025badafccf0e"},{"version":"712b61dc5bc5544802653742d6e8569b3b46e8ed45d610e90a1dd99ef10101cd","signature":"23e5e2b574fdbe1af511c54c16706d6aad4866871b669508e5d7b78fa4ff28c3"},{"version":"6e53ea07f5b1108b3c24d20a742af97c9561a73d136710fddc2ec79873cacc9d","signature":"1c85cd742f06f96ff50aaf84a86a2f2d591f1a3e683f8725f58038dcff68e348"},{"version":"a01bece6719d01562132c9b5ea88f7099b369edfe6a4f451137685803c4a3605","signature":"1a055232cba5e3fd516b38a0dfa03e8b2a57d32566d9ee662bebd2250ec72233"},"43911f7bcc0e0e30ee98fb7337fe6122e387a9b9dff15d21a3a415d01bd1ce97",{"version":"2e3298f9ff02f0c30abecc6f79881aadb59e8e133ae8e1d20e0f31fec9fd598e","signature":"6954a3fc7a8b77b21c82ec7be4d73d19e8a30dda2bbbcc59f3c94a7b1181f442"}],"root":[[99,105]],"options":{"allowJs":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strictNullChecks":true,"target":7},"referencedMap":[[64,1],[80,2],[83,3],[85,4],[84,5],[60,6],[82,7],[66,8],[54,9],[63,10],[89,11],[91,12],[87,13],[56,14],[92,15],[93,15],[94,15],[88,15],[95,15],[96,15],[90,16],[97,15],[98,17],[81,18],[68,19],[62,20],[65,21],[70,22],[72,23],[59,24],[69,25],[61,26],[73,27],[79,28],[71,29],[78,30],[55,31],[74,31],[58,18],[86,32],[67,33],[99,34],[100,34],[101,34],[104,35],[102,34],[105,34],[103,34]],"latestChangedDtsFile":"./protoc-gen-openapiv2/options/openapiv2_pb.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superblocksteam/sabs-types",
3
- "version": "v0.684.0",
3
+ "version": "v0.685.0",
4
4
  "description": "Superblocks Application Build System Types for TypeScript",
5
5
  "repository": {
6
6
  "type": "git",