@norskvideo/norsk-api 1.0.345 → 1.0.347

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.
@@ -0,0 +1,442 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v0.3.0 with parameter "target=ts"
3
+ // @generated from file shared/error.proto (package norsk.api.error, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.Status = exports.ListValue = exports.Value = exports.Struct = exports.NullValue = exports.Code = void 0;
8
+ const protobuf_1 = require("@bufbuild/protobuf");
9
+ /**
10
+ * The canonical error codes for gRPC APIs.
11
+ *
12
+ *
13
+ * Sometimes multiple error codes may apply. Services should return
14
+ * the most specific error code that applies. For example, prefer
15
+ * `OUT_OF_RANGE` over `FAILED_PRECONDITION` if both codes apply.
16
+ * Similarly prefer `NOT_FOUND` or `ALREADY_EXISTS` over `FAILED_PRECONDITION`.
17
+ *
18
+ * @generated from enum norsk.api.error.Code
19
+ */
20
+ var Code;
21
+ (function (Code) {
22
+ /**
23
+ * Not an error; returned on success
24
+ *
25
+ * HTTP Mapping: 200 OK
26
+ *
27
+ * @generated from enum value: OK = 0;
28
+ */
29
+ Code[Code["OK"] = 0] = "OK";
30
+ /**
31
+ * The operation was cancelled, typically by the caller.
32
+ *
33
+ * HTTP Mapping: 499 Client Closed Request
34
+ *
35
+ * @generated from enum value: CANCELLED = 1;
36
+ */
37
+ Code[Code["CANCELLED"] = 1] = "CANCELLED";
38
+ /**
39
+ * Unknown error. For example, this error may be returned when
40
+ * a `Status` value received from another address space belongs to
41
+ * an error space that is not known in this address space. Also
42
+ * errors raised by APIs that do not return enough error information
43
+ * may be converted to this error.
44
+ *
45
+ * HTTP Mapping: 500 Internal Server Error
46
+ *
47
+ * @generated from enum value: UNKNOWN_ERROR = 2;
48
+ */
49
+ Code[Code["UNKNOWN_ERROR"] = 2] = "UNKNOWN_ERROR";
50
+ /**
51
+ * The client specified an invalid argument. Note that this differs
52
+ * from `FAILED_PRECONDITION`. `INVALID_ARGUMENT` indicates arguments
53
+ * that are problematic regardless of the state of the system
54
+ * (e.g., a malformed file name).
55
+ *
56
+ * HTTP Mapping: 400 Bad Request
57
+ *
58
+ * @generated from enum value: INVALID_ARGUMENT = 3;
59
+ */
60
+ Code[Code["INVALID_ARGUMENT"] = 3] = "INVALID_ARGUMENT";
61
+ /**
62
+ * The deadline expired before the operation could complete. For operations
63
+ * that change the state of the system, this error may be returned
64
+ * even if the operation has completed successfully. For example, a
65
+ * successful response from a server could have been delayed long
66
+ * enough for the deadline to expire.
67
+ *
68
+ * HTTP Mapping: 504 Gateway Timeout
69
+ *
70
+ * @generated from enum value: DEADLINE_EXCEEDED = 4;
71
+ */
72
+ Code[Code["DEADLINE_EXCEEDED"] = 4] = "DEADLINE_EXCEEDED";
73
+ /**
74
+ * Some requested entity (e.g., file or directory) was not found.
75
+ *
76
+ * Note to server developers: if a request is denied for an entire class
77
+ * of users, such as gradual feature rollout or undocumented whitelist,
78
+ * `NOT_FOUND` may be used. If a request is denied for some users within
79
+ * a class of users, such as user-based access control, `PERMISSION_DENIED`
80
+ * must be used.
81
+ *
82
+ * HTTP Mapping: 404 Not Found
83
+ *
84
+ * @generated from enum value: NOT_FOUND = 5;
85
+ */
86
+ Code[Code["NOT_FOUND"] = 5] = "NOT_FOUND";
87
+ /**
88
+ * The entity that a client attempted to create (e.g., file or directory)
89
+ * already exists.
90
+ *
91
+ * HTTP Mapping: 409 Conflict
92
+ *
93
+ * @generated from enum value: ALREADY_EXISTS = 6;
94
+ */
95
+ Code[Code["ALREADY_EXISTS"] = 6] = "ALREADY_EXISTS";
96
+ /**
97
+ * The caller does not have permission to execute the specified
98
+ * operation. `PERMISSION_DENIED` must not be used for rejections
99
+ * caused by exhausting some resource (use `RESOURCE_EXHAUSTED`
100
+ * instead for those errors). `PERMISSION_DENIED` must not be
101
+ * used if the caller can not be identified (use `UNAUTHENTICATED`
102
+ * instead for those errors). This error code does not imply the
103
+ * request is valid or the requested entity exists or satisfies
104
+ * other pre-conditions.
105
+ *
106
+ * HTTP Mapping: 403 Forbidden
107
+ *
108
+ * @generated from enum value: PERMISSION_DENIED = 7;
109
+ */
110
+ Code[Code["PERMISSION_DENIED"] = 7] = "PERMISSION_DENIED";
111
+ /**
112
+ * The request does not have valid authentication credentials for the
113
+ * operation.
114
+ *
115
+ * HTTP Mapping: 401 Unauthorized
116
+ *
117
+ * @generated from enum value: UNAUTHENTICATED = 16;
118
+ */
119
+ Code[Code["UNAUTHENTICATED"] = 16] = "UNAUTHENTICATED";
120
+ /**
121
+ * Some resource has been exhausted, perhaps a per-user quota, or
122
+ * perhaps the entire file system is out of space.
123
+ *
124
+ * HTTP Mapping: 429 Too Many Requests
125
+ *
126
+ * @generated from enum value: RESOURCE_EXHAUSTED = 8;
127
+ */
128
+ Code[Code["RESOURCE_EXHAUSTED"] = 8] = "RESOURCE_EXHAUSTED";
129
+ /**
130
+ * The operation was rejected because the system is not in a state
131
+ * required for the operation's execution. For example, the directory
132
+ * to be deleted is non-empty, an rmdir operation is applied to
133
+ * a non-directory, etc.
134
+ *
135
+ * Service implementors can use the following guidelines to decide
136
+ * between `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`:
137
+ * (a) Use `UNAVAILABLE` if the client can retry just the failing call.
138
+ * (b) Use `ABORTED` if the client should retry at a higher level
139
+ * (e.g., when a client-specified test-and-set fails, indicating the
140
+ * client should restart a read-modify-write sequence).
141
+ * (c) Use `FAILED_PRECONDITION` if the client should not retry until
142
+ * the system state has been explicitly fixed. E.g., if an "rmdir"
143
+ * fails because the directory is non-empty, `FAILED_PRECONDITION`
144
+ * should be returned since the client should not retry unless
145
+ * the files are deleted from the directory.
146
+ *
147
+ * HTTP Mapping: 400 Bad Request
148
+ *
149
+ * @generated from enum value: FAILED_PRECONDITION = 9;
150
+ */
151
+ Code[Code["FAILED_PRECONDITION"] = 9] = "FAILED_PRECONDITION";
152
+ /**
153
+ * The operation was aborted, typically due to a concurrency issue such as
154
+ * a sequencer check failure or transaction abort.
155
+ *
156
+ * See the guidelines above for deciding between `FAILED_PRECONDITION`,
157
+ * `ABORTED`, and `UNAVAILABLE`.
158
+ *
159
+ * HTTP Mapping: 409 Conflict
160
+ *
161
+ * @generated from enum value: ABORTED = 10;
162
+ */
163
+ Code[Code["ABORTED"] = 10] = "ABORTED";
164
+ /**
165
+ * The operation was attempted past the valid range. E.g., seeking or
166
+ * reading past end-of-file.
167
+ *
168
+ * Unlike `INVALID_ARGUMENT`, this error indicates a problem that may
169
+ * be fixed if the system state changes. For example, a 32-bit file
170
+ * system will generate `INVALID_ARGUMENT` if asked to read at an
171
+ * offset that is not in the range [0,2^32-1], but it will generate
172
+ * `OUT_OF_RANGE` if asked to read from an offset past the current
173
+ * file size.
174
+ *
175
+ * There is a fair bit of overlap between `FAILED_PRECONDITION` and
176
+ * `OUT_OF_RANGE`. We recommend using `OUT_OF_RANGE` (the more specific
177
+ * error) when it applies so that callers who are iterating through
178
+ * a space can easily look for an `OUT_OF_RANGE` error to detect when
179
+ * they are done.
180
+ *
181
+ * HTTP Mapping: 400 Bad Request
182
+ *
183
+ * @generated from enum value: OUT_OF_RANGE = 11;
184
+ */
185
+ Code[Code["OUT_OF_RANGE"] = 11] = "OUT_OF_RANGE";
186
+ /**
187
+ * The operation is not implemented or is not supported/enabled in this
188
+ * service.
189
+ *
190
+ * HTTP Mapping: 501 Not Implemented
191
+ *
192
+ * @generated from enum value: UNIMPLEMENTED = 12;
193
+ */
194
+ Code[Code["UNIMPLEMENTED"] = 12] = "UNIMPLEMENTED";
195
+ /**
196
+ * Internal errors. This means that some invariants expected by the
197
+ * underlying system have been broken. This error code is reserved
198
+ * for serious errors.
199
+ *
200
+ * HTTP Mapping: 500 Internal Server Error
201
+ *
202
+ * @generated from enum value: INTERNAL = 13;
203
+ */
204
+ Code[Code["INTERNAL"] = 13] = "INTERNAL";
205
+ /**
206
+ * The service is currently unavailable. This is most likely a
207
+ * transient condition, which can be corrected by retrying with
208
+ * a backoff. Note that it is not always safe to retry
209
+ * non-idempotent operations.
210
+ *
211
+ * See the guidelines above for deciding between `FAILED_PRECONDITION`,
212
+ * `ABORTED`, and `UNAVAILABLE`.
213
+ *
214
+ * HTTP Mapping: 503 Service Unavailable
215
+ *
216
+ * @generated from enum value: UNAVAILABLE = 14;
217
+ */
218
+ Code[Code["UNAVAILABLE"] = 14] = "UNAVAILABLE";
219
+ /**
220
+ * Unrecoverable data loss or corruption.
221
+ *
222
+ * HTTP Mapping: 500 Internal Server Error
223
+ *
224
+ * @generated from enum value: DATA_LOSS = 15;
225
+ */
226
+ Code[Code["DATA_LOSS"] = 15] = "DATA_LOSS";
227
+ })(Code = exports.Code || (exports.Code = {}));
228
+ // Retrieve enum metadata with: proto3.getEnumType(Code)
229
+ protobuf_1.proto3.util.setEnumType(Code, "norsk.api.error.Code", [
230
+ { no: 0, name: "OK" },
231
+ { no: 1, name: "CANCELLED" },
232
+ { no: 2, name: "UNKNOWN_ERROR" },
233
+ { no: 3, name: "INVALID_ARGUMENT" },
234
+ { no: 4, name: "DEADLINE_EXCEEDED" },
235
+ { no: 5, name: "NOT_FOUND" },
236
+ { no: 6, name: "ALREADY_EXISTS" },
237
+ { no: 7, name: "PERMISSION_DENIED" },
238
+ { no: 16, name: "UNAUTHENTICATED" },
239
+ { no: 8, name: "RESOURCE_EXHAUSTED" },
240
+ { no: 9, name: "FAILED_PRECONDITION" },
241
+ { no: 10, name: "ABORTED" },
242
+ { no: 11, name: "OUT_OF_RANGE" },
243
+ { no: 12, name: "UNIMPLEMENTED" },
244
+ { no: 13, name: "INTERNAL" },
245
+ { no: 14, name: "UNAVAILABLE" },
246
+ { no: 15, name: "DATA_LOSS" },
247
+ ]);
248
+ /**
249
+ * `NullValue` is a singleton enumeration to represent the null value for the
250
+ * `Value` type union.
251
+ *
252
+ * The JSON representation for `NullValue` is JSON `null`.
253
+ *
254
+ * @generated from enum norsk.api.error.NullValue
255
+ */
256
+ var NullValue;
257
+ (function (NullValue) {
258
+ /**
259
+ * Null value.
260
+ *
261
+ * @generated from enum value: NULL_VALUE = 0;
262
+ */
263
+ NullValue[NullValue["NULL_VALUE"] = 0] = "NULL_VALUE";
264
+ })(NullValue = exports.NullValue || (exports.NullValue = {}));
265
+ // Retrieve enum metadata with: proto3.getEnumType(NullValue)
266
+ protobuf_1.proto3.util.setEnumType(NullValue, "norsk.api.error.NullValue", [
267
+ { no: 0, name: "NULL_VALUE" },
268
+ ]);
269
+ /**
270
+ * `Struct` represents a structured data value, consisting of fields
271
+ * which map to dynamically typed values. In some languages, `Struct`
272
+ * might be supported by a native representation. For example, in
273
+ * scripting languages like JS a struct is represented as an
274
+ * object. The details of that representation are described together
275
+ * with the proto support for the language.
276
+ *
277
+ * The JSON representation for `Struct` is JSON object.
278
+ *
279
+ * @generated from message norsk.api.error.Struct
280
+ */
281
+ class Struct extends protobuf_1.Message {
282
+ constructor(data) {
283
+ super();
284
+ /**
285
+ * Unordered map of dynamically typed values.
286
+ *
287
+ * @generated from field: map<string, norsk.api.error.Value> fields = 1;
288
+ */
289
+ this.fields = {};
290
+ protobuf_1.proto3.util.initPartial(data, this);
291
+ }
292
+ static fromBinary(bytes, options) {
293
+ return new Struct().fromBinary(bytes, options);
294
+ }
295
+ static fromJson(jsonValue, options) {
296
+ return new Struct().fromJson(jsonValue, options);
297
+ }
298
+ static fromJsonString(jsonString, options) {
299
+ return new Struct().fromJsonString(jsonString, options);
300
+ }
301
+ static equals(a, b) {
302
+ return protobuf_1.proto3.util.equals(Struct, a, b);
303
+ }
304
+ }
305
+ exports.Struct = Struct;
306
+ Struct.runtime = protobuf_1.proto3;
307
+ Struct.typeName = "norsk.api.error.Struct";
308
+ Struct.fields = protobuf_1.proto3.util.newFieldList(() => [
309
+ { no: 1, name: "fields", kind: "map", K: 9 /* ScalarType.STRING */, V: { kind: "message", T: Value } },
310
+ ]);
311
+ /**
312
+ * `Value` represents a dynamically typed value which can be either
313
+ * null, a number, a string, a boolean, a recursive struct value, or a
314
+ * list of values. A producer of value is expected to set one of that
315
+ * variants, absence of any variant indicates an error.
316
+ *
317
+ * The JSON representation for `Value` is JSON value.
318
+ *
319
+ * @generated from message norsk.api.error.Value
320
+ */
321
+ class Value extends protobuf_1.Message {
322
+ constructor(data) {
323
+ super();
324
+ /**
325
+ * The kind of value.
326
+ *
327
+ * @generated from oneof norsk.api.error.Value.kind
328
+ */
329
+ this.kind = { case: undefined };
330
+ protobuf_1.proto3.util.initPartial(data, this);
331
+ }
332
+ static fromBinary(bytes, options) {
333
+ return new Value().fromBinary(bytes, options);
334
+ }
335
+ static fromJson(jsonValue, options) {
336
+ return new Value().fromJson(jsonValue, options);
337
+ }
338
+ static fromJsonString(jsonString, options) {
339
+ return new Value().fromJsonString(jsonString, options);
340
+ }
341
+ static equals(a, b) {
342
+ return protobuf_1.proto3.util.equals(Value, a, b);
343
+ }
344
+ }
345
+ exports.Value = Value;
346
+ Value.runtime = protobuf_1.proto3;
347
+ Value.typeName = "norsk.api.error.Value";
348
+ Value.fields = protobuf_1.proto3.util.newFieldList(() => [
349
+ { no: 1, name: "null_value", kind: "enum", T: protobuf_1.proto3.getEnumType(NullValue), oneof: "kind" },
350
+ { no: 2, name: "number_value", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, oneof: "kind" },
351
+ { no: 3, name: "string_value", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "kind" },
352
+ { no: 4, name: "bool_value", kind: "scalar", T: 8 /* ScalarType.BOOL */, oneof: "kind" },
353
+ { no: 5, name: "struct_value", kind: "message", T: Struct, oneof: "kind" },
354
+ { no: 6, name: "list_value", kind: "message", T: ListValue, oneof: "kind" },
355
+ { no: 7, name: "code_value", kind: "enum", T: protobuf_1.proto3.getEnumType(Code), oneof: "kind" },
356
+ ]);
357
+ /**
358
+ * `ListValue` is a wrapper around a repeated field of values.
359
+ *
360
+ * The JSON representation for `ListValue` is JSON array.
361
+ *
362
+ * @generated from message norsk.api.error.ListValue
363
+ */
364
+ class ListValue extends protobuf_1.Message {
365
+ constructor(data) {
366
+ super();
367
+ /**
368
+ * Repeated field of dynamically typed values.
369
+ *
370
+ * @generated from field: repeated norsk.api.error.Value values = 1;
371
+ */
372
+ this.values = [];
373
+ protobuf_1.proto3.util.initPartial(data, this);
374
+ }
375
+ static fromBinary(bytes, options) {
376
+ return new ListValue().fromBinary(bytes, options);
377
+ }
378
+ static fromJson(jsonValue, options) {
379
+ return new ListValue().fromJson(jsonValue, options);
380
+ }
381
+ static fromJsonString(jsonString, options) {
382
+ return new ListValue().fromJsonString(jsonString, options);
383
+ }
384
+ static equals(a, b) {
385
+ return protobuf_1.proto3.util.equals(ListValue, a, b);
386
+ }
387
+ }
388
+ exports.ListValue = ListValue;
389
+ ListValue.runtime = protobuf_1.proto3;
390
+ ListValue.typeName = "norsk.api.error.ListValue";
391
+ ListValue.fields = protobuf_1.proto3.util.newFieldList(() => [
392
+ { no: 1, name: "values", kind: "message", T: Value, repeated: true },
393
+ ]);
394
+ /**
395
+ * ///////////////////////////////////////////////////////////////////////////
396
+ *
397
+ *
398
+ * @generated from message norsk.api.error.Status
399
+ */
400
+ class Status extends protobuf_1.Message {
401
+ constructor(data) {
402
+ super();
403
+ /**
404
+ * The status code, which should be an enum value of
405
+ * [google.rpc.Code][google.rpc.Code].
406
+ *
407
+ * @generated from field: norsk.api.error.Code code = 1;
408
+ */
409
+ this.code = Code.OK;
410
+ /**
411
+ * A developer-facing error message, which should be in English. Any
412
+ * user-facing error message should be localized and sent in the
413
+ * [google.rpc.Status.details][google.rpc.Status.details] field, or localized
414
+ * by the client.
415
+ *
416
+ * @generated from field: string message = 2;
417
+ */
418
+ this.message = "";
419
+ protobuf_1.proto3.util.initPartial(data, this);
420
+ }
421
+ static fromBinary(bytes, options) {
422
+ return new Status().fromBinary(bytes, options);
423
+ }
424
+ static fromJson(jsonValue, options) {
425
+ return new Status().fromJson(jsonValue, options);
426
+ }
427
+ static fromJsonString(jsonString, options) {
428
+ return new Status().fromJsonString(jsonString, options);
429
+ }
430
+ static equals(a, b) {
431
+ return protobuf_1.proto3.util.equals(Status, a, b);
432
+ }
433
+ }
434
+ exports.Status = Status;
435
+ Status.runtime = protobuf_1.proto3;
436
+ Status.typeName = "norsk.api.error.Status";
437
+ Status.fields = protobuf_1.proto3.util.newFieldList(() => [
438
+ { no: 1, name: "code", kind: "enum", T: protobuf_1.proto3.getEnumType(Code) },
439
+ { no: 2, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
440
+ { no: 3, name: "details", kind: "message", T: Struct },
441
+ ]);
442
+ //# sourceMappingURL=error_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"error_pb.js","sourceRoot":"","sources":["error_pb.ts"],"names":[],"mappings":"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"}