@scalekit-sdk/node 1.0.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.
Files changed (81) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +49 -0
  3. package/buf.gen.yaml +14 -0
  4. package/lib/connect.d.ts +9 -0
  5. package/lib/connect.js +31 -0
  6. package/lib/connect.js.map +1 -0
  7. package/lib/connection.d.ts +28 -0
  8. package/lib/connection.js +68 -0
  9. package/lib/connection.js.map +1 -0
  10. package/lib/constants/user.d.ts +4 -0
  11. package/lib/constants/user.js +24 -0
  12. package/lib/constants/user.js.map +1 -0
  13. package/lib/core.d.ts +37 -0
  14. package/lib/core.js +160 -0
  15. package/lib/core.js.map +1 -0
  16. package/lib/domain.d.ts +33 -0
  17. package/lib/domain.js +74 -0
  18. package/lib/domain.js.map +1 -0
  19. package/lib/index.d.ts +5 -0
  20. package/lib/index.js +26 -0
  21. package/lib/index.js.map +1 -0
  22. package/lib/organization.d.ts +64 -0
  23. package/lib/organization.js +116 -0
  24. package/lib/organization.js.map +1 -0
  25. package/lib/pkg/grpc/scalekit/v1/commons/commons_pb.d.ts +20 -0
  26. package/lib/pkg/grpc/scalekit/v1/commons/commons_pb.js +36 -0
  27. package/lib/pkg/grpc/scalekit/v1/commons/commons_pb.js.map +1 -0
  28. package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.d.ts +73 -0
  29. package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.js +81 -0
  30. package/lib/pkg/grpc/scalekit/v1/connections/connections_connect.js.map +1 -0
  31. package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.d.ts +1252 -0
  32. package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.js +1536 -0
  33. package/lib/pkg/grpc/scalekit/v1/connections/connections_pb.js.map +1 -0
  34. package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.d.ts +55 -0
  35. package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.js +63 -0
  36. package/lib/pkg/grpc/scalekit/v1/domains/domains_connect.js.map +1 -0
  37. package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.d.ts +394 -0
  38. package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.js +469 -0
  39. package/lib/pkg/grpc/scalekit/v1/domains/domains_pb.js.map +1 -0
  40. package/lib/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.d.ts +245 -0
  41. package/lib/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.js +369 -0
  42. package/lib/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.js.map +1 -0
  43. package/lib/pkg/grpc/scalekit/v1/options/options_pb.d.ts +98 -0
  44. package/lib/pkg/grpc/scalekit/v1/options/options_pb.js +135 -0
  45. package/lib/pkg/grpc/scalekit/v1/options/options_pb.js.map +1 -0
  46. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.d.ts +92 -0
  47. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.js +100 -0
  48. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_connect.js.map +1 -0
  49. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.d.ts +424 -0
  50. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.js +559 -0
  51. package/lib/pkg/grpc/scalekit/v1/organizations/organizations_pb.js.map +1 -0
  52. package/lib/scalekit.d.ts +60 -0
  53. package/lib/scalekit.js +140 -0
  54. package/lib/scalekit.js.map +1 -0
  55. package/lib/types/scalekit.d.ts +26 -0
  56. package/lib/types/scalekit.js +10 -0
  57. package/lib/types/scalekit.js.map +1 -0
  58. package/lib/types/user.d.ts +56 -0
  59. package/lib/types/user.js +3 -0
  60. package/lib/types/user.js.map +1 -0
  61. package/package.json +45 -0
  62. package/src/connect.ts +33 -0
  63. package/src/connection.ts +69 -0
  64. package/src/constants/user.ts +22 -0
  65. package/src/core.ts +127 -0
  66. package/src/domain.ts +75 -0
  67. package/src/index.ts +7 -0
  68. package/src/organization.ts +129 -0
  69. package/src/pkg/grpc/scalekit/v1/commons/commons_pb.ts +36 -0
  70. package/src/pkg/grpc/scalekit/v1/connections/connections_connect.ts +80 -0
  71. package/src/pkg/grpc/scalekit/v1/connections/connections_pb.ts +2138 -0
  72. package/src/pkg/grpc/scalekit/v1/domains/domains_connect.ts +62 -0
  73. package/src/pkg/grpc/scalekit/v1/domains/domains_pb.ts +687 -0
  74. package/src/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.ts +461 -0
  75. package/src/pkg/grpc/scalekit/v1/options/options_pb.ts +156 -0
  76. package/src/pkg/grpc/scalekit/v1/organizations/organizations_connect.ts +99 -0
  77. package/src/pkg/grpc/scalekit/v1/organizations/organizations_pb.ts +774 -0
  78. package/src/scalekit.ts +155 -0
  79. package/src/types/scalekit.ts +30 -0
  80. package/src/types/user.ts +59 -0
  81. package/tsconfig.json +18 -0
@@ -0,0 +1,245 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3 } from "@bufbuild/protobuf";
3
+ /**
4
+ * @generated from message scalekit.v1.errdetails.ErrorInfo
5
+ */
6
+ export declare class ErrorInfo extends Message<ErrorInfo> {
7
+ /**
8
+ * @generated from field: string error_code = 1;
9
+ */
10
+ errorCode: string;
11
+ /**
12
+ * @generated from field: optional scalekit.v1.errdetails.DebugInfo debug_info = 2;
13
+ */
14
+ debugInfo?: DebugInfo;
15
+ /**
16
+ * @generated from field: optional scalekit.v1.errdetails.HelpInfo help_info = 3;
17
+ */
18
+ helpInfo?: HelpInfo;
19
+ /**
20
+ * @generated from field: optional scalekit.v1.errdetails.LocalizedMessageInfo localized_message_info = 4;
21
+ */
22
+ localizedMessageInfo?: LocalizedMessageInfo;
23
+ /**
24
+ * @generated from field: optional scalekit.v1.errdetails.ResourceInfo resource_info = 5;
25
+ */
26
+ resourceInfo?: ResourceInfo;
27
+ /**
28
+ * @generated from field: optional scalekit.v1.errdetails.RequestInfo request_info = 6;
29
+ */
30
+ requestInfo?: RequestInfo;
31
+ /**
32
+ * @generated from field: optional scalekit.v1.errdetails.ValidationErrorInfo validation_error_info = 8;
33
+ */
34
+ validationErrorInfo?: ValidationErrorInfo;
35
+ constructor(data?: PartialMessage<ErrorInfo>);
36
+ static readonly runtime: typeof proto3;
37
+ static readonly typeName = "scalekit.v1.errdetails.ErrorInfo";
38
+ static readonly fields: FieldList;
39
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ErrorInfo;
40
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ErrorInfo;
41
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ErrorInfo;
42
+ static equals(a: ErrorInfo | PlainMessage<ErrorInfo> | undefined, b: ErrorInfo | PlainMessage<ErrorInfo> | undefined): boolean;
43
+ }
44
+ /**
45
+ * Describes additional debugging info.
46
+ *
47
+ * @generated from message scalekit.v1.errdetails.DebugInfo
48
+ */
49
+ export declare class DebugInfo extends Message<DebugInfo> {
50
+ /**
51
+ * The stack trace entries indicating where the error occurred.
52
+ *
53
+ * @generated from field: repeated string stack_entries = 1;
54
+ */
55
+ stackEntries: string[];
56
+ /**
57
+ * Additional debugging information provided by the server.
58
+ *
59
+ * @generated from field: string detail = 2;
60
+ */
61
+ detail: string;
62
+ constructor(data?: PartialMessage<DebugInfo>);
63
+ static readonly runtime: typeof proto3;
64
+ static readonly typeName = "scalekit.v1.errdetails.DebugInfo";
65
+ static readonly fields: FieldList;
66
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DebugInfo;
67
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DebugInfo;
68
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DebugInfo;
69
+ static equals(a: DebugInfo | PlainMessage<DebugInfo> | undefined, b: DebugInfo | PlainMessage<DebugInfo> | undefined): boolean;
70
+ }
71
+ /**
72
+ * Describes violations in a client request. This error type focuses on the
73
+ * syntactic aspects of the request.
74
+ *
75
+ * @generated from message scalekit.v1.errdetails.ValidationErrorInfo
76
+ */
77
+ export declare class ValidationErrorInfo extends Message<ValidationErrorInfo> {
78
+ /**
79
+ * Describes all violations in a client request.
80
+ *
81
+ * @generated from field: repeated scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation field_violations = 1;
82
+ */
83
+ fieldViolations: ValidationErrorInfo_FieldViolation[];
84
+ constructor(data?: PartialMessage<ValidationErrorInfo>);
85
+ static readonly runtime: typeof proto3;
86
+ static readonly typeName = "scalekit.v1.errdetails.ValidationErrorInfo";
87
+ static readonly fields: FieldList;
88
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidationErrorInfo;
89
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidationErrorInfo;
90
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidationErrorInfo;
91
+ static equals(a: ValidationErrorInfo | PlainMessage<ValidationErrorInfo> | undefined, b: ValidationErrorInfo | PlainMessage<ValidationErrorInfo> | undefined): boolean;
92
+ }
93
+ /**
94
+ * A message type used to describe a single bad request field.
95
+ *
96
+ * @generated from message scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation
97
+ */
98
+ export declare class ValidationErrorInfo_FieldViolation extends Message<ValidationErrorInfo_FieldViolation> {
99
+ /**
100
+ * @generated from field: string field = 1;
101
+ */
102
+ field: string;
103
+ /**
104
+ * A description of why the request element is bad.
105
+ *
106
+ * @generated from field: string description = 2;
107
+ */
108
+ description: string;
109
+ /**
110
+ * @generated from field: string constraint = 3;
111
+ */
112
+ constraint: string;
113
+ constructor(data?: PartialMessage<ValidationErrorInfo_FieldViolation>);
114
+ static readonly runtime: typeof proto3;
115
+ static readonly typeName = "scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation";
116
+ static readonly fields: FieldList;
117
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidationErrorInfo_FieldViolation;
118
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidationErrorInfo_FieldViolation;
119
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidationErrorInfo_FieldViolation;
120
+ static equals(a: ValidationErrorInfo_FieldViolation | PlainMessage<ValidationErrorInfo_FieldViolation> | undefined, b: ValidationErrorInfo_FieldViolation | PlainMessage<ValidationErrorInfo_FieldViolation> | undefined): boolean;
121
+ }
122
+ /**
123
+ * Contains metadata about the request that clients can attach when filing a bug
124
+ * or providing other forms of feedback.
125
+ *
126
+ * @generated from message scalekit.v1.errdetails.RequestInfo
127
+ */
128
+ export declare class RequestInfo extends Message<RequestInfo> {
129
+ /**
130
+ * An opaque string that should only be interpreted by the service generating
131
+ * it. For example, it can be used to identify requests in the service's logs.
132
+ *
133
+ * @generated from field: string request_id = 1;
134
+ */
135
+ requestId: string;
136
+ /**
137
+ * Any data that was used to serve this request. For example, an encrypted
138
+ * stack trace that can be sent back to the service provider for debugging.
139
+ *
140
+ * @generated from field: string serving_data = 2;
141
+ */
142
+ servingData: string;
143
+ constructor(data?: PartialMessage<RequestInfo>);
144
+ static readonly runtime: typeof proto3;
145
+ static readonly typeName = "scalekit.v1.errdetails.RequestInfo";
146
+ static readonly fields: FieldList;
147
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RequestInfo;
148
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RequestInfo;
149
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RequestInfo;
150
+ static equals(a: RequestInfo | PlainMessage<RequestInfo> | undefined, b: RequestInfo | PlainMessage<RequestInfo> | undefined): boolean;
151
+ }
152
+ /**
153
+ * Describes the resource that is being accessed.
154
+ *
155
+ * @generated from message scalekit.v1.errdetails.ResourceInfo
156
+ */
157
+ export declare class ResourceInfo extends Message<ResourceInfo> {
158
+ /**
159
+ * @generated from field: string resource_type = 1;
160
+ */
161
+ resourceType: string;
162
+ /**
163
+ * @generated from field: string resource_name = 2;
164
+ */
165
+ resourceName: string;
166
+ /**
167
+ * @generated from field: string owner = 3;
168
+ */
169
+ owner: string;
170
+ /**
171
+ * Describes what error is encountered when accessing this resource.
172
+ * For example, updating a cloud project may require the `writer` permission
173
+ * on the developer console project.
174
+ *
175
+ * @generated from field: string description = 4;
176
+ */
177
+ description: string;
178
+ constructor(data?: PartialMessage<ResourceInfo>);
179
+ static readonly runtime: typeof proto3;
180
+ static readonly typeName = "scalekit.v1.errdetails.ResourceInfo";
181
+ static readonly fields: FieldList;
182
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResourceInfo;
183
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResourceInfo;
184
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResourceInfo;
185
+ static equals(a: ResourceInfo | PlainMessage<ResourceInfo> | undefined, b: ResourceInfo | PlainMessage<ResourceInfo> | undefined): boolean;
186
+ }
187
+ /**
188
+ * @generated from message scalekit.v1.errdetails.HelpInfo
189
+ */
190
+ export declare class HelpInfo extends Message<HelpInfo> {
191
+ /**
192
+ * @generated from field: repeated scalekit.v1.errdetails.HelpInfo.Link links = 1;
193
+ */
194
+ links: HelpInfo_Link[];
195
+ constructor(data?: PartialMessage<HelpInfo>);
196
+ static readonly runtime: typeof proto3;
197
+ static readonly typeName = "scalekit.v1.errdetails.HelpInfo";
198
+ static readonly fields: FieldList;
199
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HelpInfo;
200
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HelpInfo;
201
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HelpInfo;
202
+ static equals(a: HelpInfo | PlainMessage<HelpInfo> | undefined, b: HelpInfo | PlainMessage<HelpInfo> | undefined): boolean;
203
+ }
204
+ /**
205
+ * @generated from message scalekit.v1.errdetails.HelpInfo.Link
206
+ */
207
+ export declare class HelpInfo_Link extends Message<HelpInfo_Link> {
208
+ /**
209
+ * @generated from field: string description = 1;
210
+ */
211
+ description: string;
212
+ /**
213
+ * @generated from field: string url = 2;
214
+ */
215
+ url: string;
216
+ constructor(data?: PartialMessage<HelpInfo_Link>);
217
+ static readonly runtime: typeof proto3;
218
+ static readonly typeName = "scalekit.v1.errdetails.HelpInfo.Link";
219
+ static readonly fields: FieldList;
220
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HelpInfo_Link;
221
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HelpInfo_Link;
222
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HelpInfo_Link;
223
+ static equals(a: HelpInfo_Link | PlainMessage<HelpInfo_Link> | undefined, b: HelpInfo_Link | PlainMessage<HelpInfo_Link> | undefined): boolean;
224
+ }
225
+ /**
226
+ * @generated from message scalekit.v1.errdetails.LocalizedMessageInfo
227
+ */
228
+ export declare class LocalizedMessageInfo extends Message<LocalizedMessageInfo> {
229
+ /**
230
+ * @generated from field: string locale = 1;
231
+ */
232
+ locale: string;
233
+ /**
234
+ * @generated from field: string message = 2;
235
+ */
236
+ message: string;
237
+ constructor(data?: PartialMessage<LocalizedMessageInfo>);
238
+ static readonly runtime: typeof proto3;
239
+ static readonly typeName = "scalekit.v1.errdetails.LocalizedMessageInfo";
240
+ static readonly fields: FieldList;
241
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LocalizedMessageInfo;
242
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LocalizedMessageInfo;
243
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): LocalizedMessageInfo;
244
+ static equals(a: LocalizedMessageInfo | PlainMessage<LocalizedMessageInfo> | undefined, b: LocalizedMessageInfo | PlainMessage<LocalizedMessageInfo> | undefined): boolean;
245
+ }
@@ -0,0 +1,369 @@
1
+ "use strict";
2
+ // @generated by protoc-gen-es v1.8.0 with parameter "target=ts"
3
+ // @generated from file scalekit/v1/errdetails/errdetails.proto (package scalekit.v1.errdetails, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.LocalizedMessageInfo = exports.HelpInfo_Link = exports.HelpInfo = exports.ResourceInfo = exports.RequestInfo = exports.ValidationErrorInfo_FieldViolation = exports.ValidationErrorInfo = exports.DebugInfo = exports.ErrorInfo = void 0;
8
+ const protobuf_1 = require("@bufbuild/protobuf");
9
+ /**
10
+ * @generated from message scalekit.v1.errdetails.ErrorInfo
11
+ */
12
+ class ErrorInfo extends protobuf_1.Message {
13
+ constructor(data) {
14
+ super();
15
+ /**
16
+ * @generated from field: string error_code = 1;
17
+ */
18
+ this.errorCode = "";
19
+ protobuf_1.proto3.util.initPartial(data, this);
20
+ }
21
+ static fromBinary(bytes, options) {
22
+ return new ErrorInfo().fromBinary(bytes, options);
23
+ }
24
+ static fromJson(jsonValue, options) {
25
+ return new ErrorInfo().fromJson(jsonValue, options);
26
+ }
27
+ static fromJsonString(jsonString, options) {
28
+ return new ErrorInfo().fromJsonString(jsonString, options);
29
+ }
30
+ static equals(a, b) {
31
+ return protobuf_1.proto3.util.equals(ErrorInfo, a, b);
32
+ }
33
+ }
34
+ exports.ErrorInfo = ErrorInfo;
35
+ ErrorInfo.runtime = protobuf_1.proto3;
36
+ ErrorInfo.typeName = "scalekit.v1.errdetails.ErrorInfo";
37
+ ErrorInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
38
+ { no: 1, name: "error_code", kind: "scalar", T: 9 /* ScalarType.STRING */ },
39
+ { no: 2, name: "debug_info", kind: "message", T: DebugInfo, opt: true },
40
+ { no: 3, name: "help_info", kind: "message", T: HelpInfo, opt: true },
41
+ { no: 4, name: "localized_message_info", kind: "message", T: LocalizedMessageInfo, opt: true },
42
+ { no: 5, name: "resource_info", kind: "message", T: ResourceInfo, opt: true },
43
+ { no: 6, name: "request_info", kind: "message", T: RequestInfo, opt: true },
44
+ { no: 8, name: "validation_error_info", kind: "message", T: ValidationErrorInfo, opt: true },
45
+ ]);
46
+ /**
47
+ * Describes additional debugging info.
48
+ *
49
+ * @generated from message scalekit.v1.errdetails.DebugInfo
50
+ */
51
+ class DebugInfo extends protobuf_1.Message {
52
+ constructor(data) {
53
+ super();
54
+ /**
55
+ * The stack trace entries indicating where the error occurred.
56
+ *
57
+ * @generated from field: repeated string stack_entries = 1;
58
+ */
59
+ this.stackEntries = [];
60
+ /**
61
+ * Additional debugging information provided by the server.
62
+ *
63
+ * @generated from field: string detail = 2;
64
+ */
65
+ this.detail = "";
66
+ protobuf_1.proto3.util.initPartial(data, this);
67
+ }
68
+ static fromBinary(bytes, options) {
69
+ return new DebugInfo().fromBinary(bytes, options);
70
+ }
71
+ static fromJson(jsonValue, options) {
72
+ return new DebugInfo().fromJson(jsonValue, options);
73
+ }
74
+ static fromJsonString(jsonString, options) {
75
+ return new DebugInfo().fromJsonString(jsonString, options);
76
+ }
77
+ static equals(a, b) {
78
+ return protobuf_1.proto3.util.equals(DebugInfo, a, b);
79
+ }
80
+ }
81
+ exports.DebugInfo = DebugInfo;
82
+ DebugInfo.runtime = protobuf_1.proto3;
83
+ DebugInfo.typeName = "scalekit.v1.errdetails.DebugInfo";
84
+ DebugInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
85
+ { no: 1, name: "stack_entries", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
86
+ { no: 2, name: "detail", kind: "scalar", T: 9 /* ScalarType.STRING */ },
87
+ ]);
88
+ /**
89
+ * Describes violations in a client request. This error type focuses on the
90
+ * syntactic aspects of the request.
91
+ *
92
+ * @generated from message scalekit.v1.errdetails.ValidationErrorInfo
93
+ */
94
+ class ValidationErrorInfo extends protobuf_1.Message {
95
+ constructor(data) {
96
+ super();
97
+ /**
98
+ * Describes all violations in a client request.
99
+ *
100
+ * @generated from field: repeated scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation field_violations = 1;
101
+ */
102
+ this.fieldViolations = [];
103
+ protobuf_1.proto3.util.initPartial(data, this);
104
+ }
105
+ static fromBinary(bytes, options) {
106
+ return new ValidationErrorInfo().fromBinary(bytes, options);
107
+ }
108
+ static fromJson(jsonValue, options) {
109
+ return new ValidationErrorInfo().fromJson(jsonValue, options);
110
+ }
111
+ static fromJsonString(jsonString, options) {
112
+ return new ValidationErrorInfo().fromJsonString(jsonString, options);
113
+ }
114
+ static equals(a, b) {
115
+ return protobuf_1.proto3.util.equals(ValidationErrorInfo, a, b);
116
+ }
117
+ }
118
+ exports.ValidationErrorInfo = ValidationErrorInfo;
119
+ ValidationErrorInfo.runtime = protobuf_1.proto3;
120
+ ValidationErrorInfo.typeName = "scalekit.v1.errdetails.ValidationErrorInfo";
121
+ ValidationErrorInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
122
+ { no: 1, name: "field_violations", kind: "message", T: ValidationErrorInfo_FieldViolation, repeated: true },
123
+ ]);
124
+ /**
125
+ * A message type used to describe a single bad request field.
126
+ *
127
+ * @generated from message scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation
128
+ */
129
+ class ValidationErrorInfo_FieldViolation extends protobuf_1.Message {
130
+ constructor(data) {
131
+ super();
132
+ /**
133
+ * @generated from field: string field = 1;
134
+ */
135
+ this.field = "";
136
+ /**
137
+ * A description of why the request element is bad.
138
+ *
139
+ * @generated from field: string description = 2;
140
+ */
141
+ this.description = "";
142
+ /**
143
+ * @generated from field: string constraint = 3;
144
+ */
145
+ this.constraint = "";
146
+ protobuf_1.proto3.util.initPartial(data, this);
147
+ }
148
+ static fromBinary(bytes, options) {
149
+ return new ValidationErrorInfo_FieldViolation().fromBinary(bytes, options);
150
+ }
151
+ static fromJson(jsonValue, options) {
152
+ return new ValidationErrorInfo_FieldViolation().fromJson(jsonValue, options);
153
+ }
154
+ static fromJsonString(jsonString, options) {
155
+ return new ValidationErrorInfo_FieldViolation().fromJsonString(jsonString, options);
156
+ }
157
+ static equals(a, b) {
158
+ return protobuf_1.proto3.util.equals(ValidationErrorInfo_FieldViolation, a, b);
159
+ }
160
+ }
161
+ exports.ValidationErrorInfo_FieldViolation = ValidationErrorInfo_FieldViolation;
162
+ ValidationErrorInfo_FieldViolation.runtime = protobuf_1.proto3;
163
+ ValidationErrorInfo_FieldViolation.typeName = "scalekit.v1.errdetails.ValidationErrorInfo.FieldViolation";
164
+ ValidationErrorInfo_FieldViolation.fields = protobuf_1.proto3.util.newFieldList(() => [
165
+ { no: 1, name: "field", kind: "scalar", T: 9 /* ScalarType.STRING */ },
166
+ { no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
167
+ { no: 3, name: "constraint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
168
+ ]);
169
+ /**
170
+ * Contains metadata about the request that clients can attach when filing a bug
171
+ * or providing other forms of feedback.
172
+ *
173
+ * @generated from message scalekit.v1.errdetails.RequestInfo
174
+ */
175
+ class RequestInfo extends protobuf_1.Message {
176
+ constructor(data) {
177
+ super();
178
+ /**
179
+ * An opaque string that should only be interpreted by the service generating
180
+ * it. For example, it can be used to identify requests in the service's logs.
181
+ *
182
+ * @generated from field: string request_id = 1;
183
+ */
184
+ this.requestId = "";
185
+ /**
186
+ * Any data that was used to serve this request. For example, an encrypted
187
+ * stack trace that can be sent back to the service provider for debugging.
188
+ *
189
+ * @generated from field: string serving_data = 2;
190
+ */
191
+ this.servingData = "";
192
+ protobuf_1.proto3.util.initPartial(data, this);
193
+ }
194
+ static fromBinary(bytes, options) {
195
+ return new RequestInfo().fromBinary(bytes, options);
196
+ }
197
+ static fromJson(jsonValue, options) {
198
+ return new RequestInfo().fromJson(jsonValue, options);
199
+ }
200
+ static fromJsonString(jsonString, options) {
201
+ return new RequestInfo().fromJsonString(jsonString, options);
202
+ }
203
+ static equals(a, b) {
204
+ return protobuf_1.proto3.util.equals(RequestInfo, a, b);
205
+ }
206
+ }
207
+ exports.RequestInfo = RequestInfo;
208
+ RequestInfo.runtime = protobuf_1.proto3;
209
+ RequestInfo.typeName = "scalekit.v1.errdetails.RequestInfo";
210
+ RequestInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
211
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
212
+ { no: 2, name: "serving_data", kind: "scalar", T: 9 /* ScalarType.STRING */ },
213
+ ]);
214
+ /**
215
+ * Describes the resource that is being accessed.
216
+ *
217
+ * @generated from message scalekit.v1.errdetails.ResourceInfo
218
+ */
219
+ class ResourceInfo extends protobuf_1.Message {
220
+ constructor(data) {
221
+ super();
222
+ /**
223
+ * @generated from field: string resource_type = 1;
224
+ */
225
+ this.resourceType = "";
226
+ /**
227
+ * @generated from field: string resource_name = 2;
228
+ */
229
+ this.resourceName = "";
230
+ /**
231
+ * @generated from field: string owner = 3;
232
+ */
233
+ this.owner = "";
234
+ /**
235
+ * Describes what error is encountered when accessing this resource.
236
+ * For example, updating a cloud project may require the `writer` permission
237
+ * on the developer console project.
238
+ *
239
+ * @generated from field: string description = 4;
240
+ */
241
+ this.description = "";
242
+ protobuf_1.proto3.util.initPartial(data, this);
243
+ }
244
+ static fromBinary(bytes, options) {
245
+ return new ResourceInfo().fromBinary(bytes, options);
246
+ }
247
+ static fromJson(jsonValue, options) {
248
+ return new ResourceInfo().fromJson(jsonValue, options);
249
+ }
250
+ static fromJsonString(jsonString, options) {
251
+ return new ResourceInfo().fromJsonString(jsonString, options);
252
+ }
253
+ static equals(a, b) {
254
+ return protobuf_1.proto3.util.equals(ResourceInfo, a, b);
255
+ }
256
+ }
257
+ exports.ResourceInfo = ResourceInfo;
258
+ ResourceInfo.runtime = protobuf_1.proto3;
259
+ ResourceInfo.typeName = "scalekit.v1.errdetails.ResourceInfo";
260
+ ResourceInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
261
+ { no: 1, name: "resource_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
262
+ { no: 2, name: "resource_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
263
+ { no: 3, name: "owner", kind: "scalar", T: 9 /* ScalarType.STRING */ },
264
+ { no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
265
+ ]);
266
+ /**
267
+ * @generated from message scalekit.v1.errdetails.HelpInfo
268
+ */
269
+ class HelpInfo extends protobuf_1.Message {
270
+ constructor(data) {
271
+ super();
272
+ /**
273
+ * @generated from field: repeated scalekit.v1.errdetails.HelpInfo.Link links = 1;
274
+ */
275
+ this.links = [];
276
+ protobuf_1.proto3.util.initPartial(data, this);
277
+ }
278
+ static fromBinary(bytes, options) {
279
+ return new HelpInfo().fromBinary(bytes, options);
280
+ }
281
+ static fromJson(jsonValue, options) {
282
+ return new HelpInfo().fromJson(jsonValue, options);
283
+ }
284
+ static fromJsonString(jsonString, options) {
285
+ return new HelpInfo().fromJsonString(jsonString, options);
286
+ }
287
+ static equals(a, b) {
288
+ return protobuf_1.proto3.util.equals(HelpInfo, a, b);
289
+ }
290
+ }
291
+ exports.HelpInfo = HelpInfo;
292
+ HelpInfo.runtime = protobuf_1.proto3;
293
+ HelpInfo.typeName = "scalekit.v1.errdetails.HelpInfo";
294
+ HelpInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
295
+ { no: 1, name: "links", kind: "message", T: HelpInfo_Link, repeated: true },
296
+ ]);
297
+ /**
298
+ * @generated from message scalekit.v1.errdetails.HelpInfo.Link
299
+ */
300
+ class HelpInfo_Link extends protobuf_1.Message {
301
+ constructor(data) {
302
+ super();
303
+ /**
304
+ * @generated from field: string description = 1;
305
+ */
306
+ this.description = "";
307
+ /**
308
+ * @generated from field: string url = 2;
309
+ */
310
+ this.url = "";
311
+ protobuf_1.proto3.util.initPartial(data, this);
312
+ }
313
+ static fromBinary(bytes, options) {
314
+ return new HelpInfo_Link().fromBinary(bytes, options);
315
+ }
316
+ static fromJson(jsonValue, options) {
317
+ return new HelpInfo_Link().fromJson(jsonValue, options);
318
+ }
319
+ static fromJsonString(jsonString, options) {
320
+ return new HelpInfo_Link().fromJsonString(jsonString, options);
321
+ }
322
+ static equals(a, b) {
323
+ return protobuf_1.proto3.util.equals(HelpInfo_Link, a, b);
324
+ }
325
+ }
326
+ exports.HelpInfo_Link = HelpInfo_Link;
327
+ HelpInfo_Link.runtime = protobuf_1.proto3;
328
+ HelpInfo_Link.typeName = "scalekit.v1.errdetails.HelpInfo.Link";
329
+ HelpInfo_Link.fields = protobuf_1.proto3.util.newFieldList(() => [
330
+ { no: 1, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
331
+ { no: 2, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
332
+ ]);
333
+ /**
334
+ * @generated from message scalekit.v1.errdetails.LocalizedMessageInfo
335
+ */
336
+ class LocalizedMessageInfo extends protobuf_1.Message {
337
+ constructor(data) {
338
+ super();
339
+ /**
340
+ * @generated from field: string locale = 1;
341
+ */
342
+ this.locale = "";
343
+ /**
344
+ * @generated from field: string message = 2;
345
+ */
346
+ this.message = "";
347
+ protobuf_1.proto3.util.initPartial(data, this);
348
+ }
349
+ static fromBinary(bytes, options) {
350
+ return new LocalizedMessageInfo().fromBinary(bytes, options);
351
+ }
352
+ static fromJson(jsonValue, options) {
353
+ return new LocalizedMessageInfo().fromJson(jsonValue, options);
354
+ }
355
+ static fromJsonString(jsonString, options) {
356
+ return new LocalizedMessageInfo().fromJsonString(jsonString, options);
357
+ }
358
+ static equals(a, b) {
359
+ return protobuf_1.proto3.util.equals(LocalizedMessageInfo, a, b);
360
+ }
361
+ }
362
+ exports.LocalizedMessageInfo = LocalizedMessageInfo;
363
+ LocalizedMessageInfo.runtime = protobuf_1.proto3;
364
+ LocalizedMessageInfo.typeName = "scalekit.v1.errdetails.LocalizedMessageInfo";
365
+ LocalizedMessageInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
366
+ { no: 1, name: "locale", kind: "scalar", T: 9 /* ScalarType.STRING */ },
367
+ { no: 2, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
368
+ ]);
369
+ //# sourceMappingURL=errdetails_pb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"errdetails_pb.js","sourceRoot":"","sources":["../../../../../../src/pkg/grpc/scalekit/v1/errdetails/errdetails_pb.ts"],"names":[],"mappings":"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"}