jitera_proto 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +31 -0
- data/README.md +23 -0
- data/Rakefile +4 -0
- data/lib/jitera_proto.rb +9 -0
- data/lib/payloads/report.proto +34 -0
- data/lib/payloads/report_pb.rb +44 -0
- data/lib/payloads/v1/backend.proto +776 -0
- data/lib/payloads/v1/backend_pb.rb +809 -0
- data/lib/payloads/v1/frontend.proto +466 -0
- data/lib/payloads/v1/frontend_pb.rb +461 -0
- data/lib/payloads/v1/service.proto +80 -0
- data/lib/payloads/v1/service_pb.rb +78 -0
- data/lib/payloads/v1/service_services_pb.rb +30 -0
- data/lib/version.rb +5 -0
- data/sig/proto.rbs +4 -0
- metadata +88 -0
@@ -0,0 +1,809 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: v1/backend.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
+
add_file("v1/backend.proto", :syntax => :proto3) do
|
8
|
+
add_message "schema.v1.Project" do
|
9
|
+
optional :id, :string, 1
|
10
|
+
optional :project_name, :string, 2
|
11
|
+
optional :project_id, :int32, 3
|
12
|
+
proto3_optional :infra, :message, 4, "schema.v1.Infra"
|
13
|
+
oneof :generate_type do
|
14
|
+
optional :project_export, :message, 9, "schema.v1.ProjectExport"
|
15
|
+
optional :project_preview, :message, 10, "schema.v1.ProjectPreview"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
add_message "schema.v1.ProjectExport" do
|
19
|
+
optional :id, :int32, 1
|
20
|
+
end
|
21
|
+
add_message "schema.v1.ProjectPreview" do
|
22
|
+
optional :id, :int32, 1
|
23
|
+
end
|
24
|
+
add_message "schema.v1.Infra" do
|
25
|
+
optional :path, :string, 1
|
26
|
+
end
|
27
|
+
add_message "schema.v1.Backend" do
|
28
|
+
repeated :tables, :message, 4, "schema.v1.Table"
|
29
|
+
repeated :controllers, :message, 5, "schema.v1.Controller"
|
30
|
+
repeated :features, :message, 6, "schema.v1.Feature"
|
31
|
+
repeated :authorizations, :message, 7, "schema.v1.Authorization"
|
32
|
+
repeated :localizations, :message, 8, "schema.v1.Localization"
|
33
|
+
repeated :migrations, :message, 9, "schema.v1.Migration"
|
34
|
+
end
|
35
|
+
add_message "schema.v1.Localization" do
|
36
|
+
optional :lang, :string, 1
|
37
|
+
repeated :namespaces, :message, 3, "schema.v1.Localization.Namespace"
|
38
|
+
end
|
39
|
+
add_message "schema.v1.Localization.Namespace" do
|
40
|
+
optional :name, :string, 1
|
41
|
+
repeated :translates, :message, 2, "schema.v1.Localization.Translate"
|
42
|
+
end
|
43
|
+
add_message "schema.v1.Localization.Translate" do
|
44
|
+
optional :key, :string, 1
|
45
|
+
optional :value, :string, 2
|
46
|
+
end
|
47
|
+
add_message "schema.v1.DataType" do
|
48
|
+
optional :name, :enum, 1, "schema.v1.DataTypeName"
|
49
|
+
end
|
50
|
+
add_message "schema.v1.Authorization" do
|
51
|
+
optional :name, :string, 1
|
52
|
+
optional :id, :int32, 2
|
53
|
+
repeated :policies, :message, 3, "schema.v1.Authorization.Policy"
|
54
|
+
end
|
55
|
+
add_message "schema.v1.Authorization.Policy" do
|
56
|
+
optional :resource, :string, 3
|
57
|
+
optional :role_binding, :message, 4, "schema.v1.Authorization.Policy.RoleBinding"
|
58
|
+
optional :rule, :message, 5, "schema.v1.Authorization.Policy.Rule"
|
59
|
+
optional :scope, :enum, 6, "schema.v1.Authorization.Policy.Scope"
|
60
|
+
end
|
61
|
+
add_message "schema.v1.Authorization.Policy.RoleBinding" do
|
62
|
+
optional :table, :string, 1
|
63
|
+
optional :column, :string, 2
|
64
|
+
optional :role, :string, 3
|
65
|
+
end
|
66
|
+
add_message "schema.v1.Authorization.Policy.Rule" do
|
67
|
+
repeated :operands, :message, 1, "schema.v1.Authorization.Policy.Rule.Operand"
|
68
|
+
repeated :operators, :enum, 2, "schema.v1.Operator"
|
69
|
+
end
|
70
|
+
add_message "schema.v1.Authorization.Policy.Rule.Operand" do
|
71
|
+
oneof :operand do
|
72
|
+
optional :expr, :message, 1, "schema.v1.Authorization.Policy.Rule.Expr"
|
73
|
+
optional :rule, :message, 2, "schema.v1.Authorization.Policy.Rule"
|
74
|
+
end
|
75
|
+
end
|
76
|
+
add_message "schema.v1.Authorization.Policy.Rule.Expr" do
|
77
|
+
optional :column, :string, 1
|
78
|
+
optional :data_type, :message, 4, "schema.v1.DataType"
|
79
|
+
optional :operator, :enum, 5, "schema.v1.Operator"
|
80
|
+
oneof :map_to do
|
81
|
+
optional :value, :string, 2
|
82
|
+
optional :paths, :string, 3
|
83
|
+
end
|
84
|
+
end
|
85
|
+
add_enum "schema.v1.Authorization.Policy.Scope" do
|
86
|
+
value :ALL, 0
|
87
|
+
value :ASSOCIATED, 1
|
88
|
+
end
|
89
|
+
add_message "schema.v1.Feature" do
|
90
|
+
optional :name, :enum, 1, "schema.v1.Feature.FeatureName"
|
91
|
+
optional :env, :enum, 2, "schema.v1.Feature.Environment"
|
92
|
+
oneof :types do
|
93
|
+
optional :email_login, :message, 3, "schema.v1.Feature.EmailLogin"
|
94
|
+
optional :jp_bank_data, :message, 4, "schema.v1.Feature.JPBankData"
|
95
|
+
optional :basic_auth, :message, 5, "schema.v1.Feature.BasicAuth"
|
96
|
+
optional :twilio_login, :message, 6, "schema.v1.Feature.TwilioLogin"
|
97
|
+
optional :rollbar, :message, 7, "schema.v1.Feature.Rollbar"
|
98
|
+
optional :deep_link, :message, 8, "schema.v1.Feature.DeepLink"
|
99
|
+
optional :stripe, :message, 9, "schema.v1.Feature.Stripe"
|
100
|
+
optional :line_login, :message, 10, "schema.v1.Feature.LineLogin"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
add_message "schema.v1.Feature.EmailLogin" do
|
104
|
+
repeated :tables, :string, 1
|
105
|
+
optional :password_min_length, :int32, 2
|
106
|
+
optional :remember_for, :int32, 3
|
107
|
+
optional :reset_password_within, :int32, 4
|
108
|
+
optional :maximum_retries, :int32, 5
|
109
|
+
optional :unlock_strategy, :enum, 6, "schema.v1.Feature.EmailLogin.UnlockStrategy"
|
110
|
+
optional :unlock_in, :int32, 7
|
111
|
+
optional :password_regex, :string, 8
|
112
|
+
optional :confirmation_email, :bool, 9
|
113
|
+
end
|
114
|
+
add_enum "schema.v1.Feature.EmailLogin.UnlockStrategy" do
|
115
|
+
value :TIME, 0
|
116
|
+
value :EMAIL, 1
|
117
|
+
value :BOTH, 2
|
118
|
+
end
|
119
|
+
add_message "schema.v1.Feature.JPBankData" do
|
120
|
+
end
|
121
|
+
add_message "schema.v1.Feature.BasicAuth" do
|
122
|
+
optional :username, :string, 1
|
123
|
+
optional :password, :string, 2
|
124
|
+
end
|
125
|
+
add_message "schema.v1.Feature.TwilioLogin" do
|
126
|
+
repeated :user_tables, :string, 1
|
127
|
+
optional :service_id, :string, 2
|
128
|
+
optional :sid, :string, 3
|
129
|
+
optional :token, :string, 4
|
130
|
+
optional :otp_length, :int32, 5
|
131
|
+
end
|
132
|
+
add_message "schema.v1.Feature.Rollbar" do
|
133
|
+
optional :access_token, :string, 1
|
134
|
+
end
|
135
|
+
add_message "schema.v1.Feature.DeepLink" do
|
136
|
+
optional :ios_app_store_id, :string, 1
|
137
|
+
optional :ios_bundle_id, :string, 2
|
138
|
+
optional :ios_app_link, :string, 3
|
139
|
+
optional :android_package_name, :string, 4
|
140
|
+
optional :android_cert_fingerprints, :string, 5
|
141
|
+
optional :android_app_link, :string, 6
|
142
|
+
optional :firebase_domain, :string, 7
|
143
|
+
end
|
144
|
+
add_message "schema.v1.Feature.Stripe" do
|
145
|
+
repeated :subscription_tables, :string, 1
|
146
|
+
repeated :user_tables, :string, 2
|
147
|
+
optional :public_key, :string, 3
|
148
|
+
optional :secret_key, :string, 4
|
149
|
+
optional :stripe_endpoint_secret, :string, 5
|
150
|
+
optional :http_stripe_signature, :string, 6
|
151
|
+
optional :add_stripe_subscription, :bool, 7
|
152
|
+
optional :add_charge_api, :bool, 8
|
153
|
+
optional :add_intent_api, :bool, 9
|
154
|
+
end
|
155
|
+
add_message "schema.v1.Feature.LineLogin" do
|
156
|
+
repeated :user_tables, :string, 1
|
157
|
+
optional :client_id, :string, 2
|
158
|
+
optional :secret_key, :string, 3
|
159
|
+
end
|
160
|
+
add_enum "schema.v1.Feature.FeatureName" do
|
161
|
+
value :EMAIL_LOGIN, 0
|
162
|
+
value :JP_BANKS_DATA, 1
|
163
|
+
value :BASIC_AUTH, 2
|
164
|
+
value :TWILIO_LOGIN, 3
|
165
|
+
value :ROLLBAR, 4
|
166
|
+
value :DEEP_LINK, 5
|
167
|
+
value :STRIPE, 6
|
168
|
+
value :LINE_LOGIN, 7
|
169
|
+
end
|
170
|
+
add_enum "schema.v1.Feature.Environment" do
|
171
|
+
value :DEVELOPMENT, 0
|
172
|
+
value :STAGING, 1
|
173
|
+
value :PRODUCTION, 2
|
174
|
+
value :ALL, 3
|
175
|
+
end
|
176
|
+
add_message "schema.v1.Controller" do
|
177
|
+
optional :name, :string, 1
|
178
|
+
repeated :endpoints, :message, 2, "schema.v1.Controller.Endpoint"
|
179
|
+
end
|
180
|
+
add_message "schema.v1.Controller.Endpoint" do
|
181
|
+
optional :path, :string, 1
|
182
|
+
optional :name, :string, 2
|
183
|
+
optional :authentication, :message, 10, "schema.v1.Controller.Authentication"
|
184
|
+
optional :authorization, :message, 11, "schema.v1.Controller.Authorization"
|
185
|
+
optional :responses, :message, 12, "schema.v1.Controller.Response"
|
186
|
+
optional :params, :message, 13, "schema.v1.Controller.RequestContent"
|
187
|
+
optional :writable, :bool, 14
|
188
|
+
oneof :resource do
|
189
|
+
optional :table, :string, 3
|
190
|
+
optional :feature, :enum, 4, "schema.v1.Feature.FeatureName"
|
191
|
+
end
|
192
|
+
oneof :methods do
|
193
|
+
optional :list, :message, 5, "schema.v1.Controller.Endpoint.List"
|
194
|
+
optional :get, :message, 6, "schema.v1.Controller.Endpoint.Get"
|
195
|
+
optional :create, :message, 7, "schema.v1.Controller.Endpoint.Create"
|
196
|
+
optional :update, :message, 8, "schema.v1.Controller.Endpoint.Update"
|
197
|
+
optional :delete, :message, 9, "schema.v1.Controller.Endpoint.Delete"
|
198
|
+
end
|
199
|
+
end
|
200
|
+
add_message "schema.v1.Controller.Endpoint.List" do
|
201
|
+
optional :queries, :message, 1, "schema.v1.Controller.RequestContent"
|
202
|
+
optional :conditions, :message, 2, "schema.v1.Controller.ResourceCondition"
|
203
|
+
end
|
204
|
+
add_message "schema.v1.Controller.Endpoint.Get" do
|
205
|
+
optional :queries, :message, 1, "schema.v1.Controller.RequestContent"
|
206
|
+
optional :conditions, :message, 2, "schema.v1.Controller.ResourceCondition"
|
207
|
+
end
|
208
|
+
add_message "schema.v1.Controller.Endpoint.Create" do
|
209
|
+
optional :body, :message, 1, "schema.v1.Controller.RequestContent"
|
210
|
+
optional :conditions, :message, 2, "schema.v1.Controller.ResourceCondition"
|
211
|
+
optional :resources, :message, 3, "schema.v1.Controller.ResourceUpdate"
|
212
|
+
end
|
213
|
+
add_message "schema.v1.Controller.Endpoint.Update" do
|
214
|
+
optional :body, :message, 1, "schema.v1.Controller.RequestContent"
|
215
|
+
optional :conditions, :message, 2, "schema.v1.Controller.ResourceCondition"
|
216
|
+
optional :resources, :message, 3, "schema.v1.Controller.ResourceUpdate"
|
217
|
+
end
|
218
|
+
add_message "schema.v1.Controller.Endpoint.Delete" do
|
219
|
+
optional :body, :message, 1, "schema.v1.Controller.RequestContent"
|
220
|
+
optional :conditions, :message, 2, "schema.v1.Controller.ResourceCondition"
|
221
|
+
end
|
222
|
+
add_message "schema.v1.Controller.RequestContent" do
|
223
|
+
repeated :fields, :message, 1, "schema.v1.Controller.RequestContent.Field"
|
224
|
+
end
|
225
|
+
add_message "schema.v1.Controller.RequestContent.Field" do
|
226
|
+
optional :name, :string, 1
|
227
|
+
optional :data_type, :message, 2, "schema.v1.DataType"
|
228
|
+
repeated :children, :message, 3, "schema.v1.Controller.RequestContent.Field"
|
229
|
+
end
|
230
|
+
add_message "schema.v1.Controller.Response" do
|
231
|
+
repeated :fields, :message, 1, "schema.v1.Controller.Response.Field"
|
232
|
+
end
|
233
|
+
add_message "schema.v1.Controller.Response.Field" do
|
234
|
+
optional :name, :string, 1
|
235
|
+
optional :data_type, :message, 5, "schema.v1.DataType"
|
236
|
+
repeated :children, :message, 6, "schema.v1.Controller.Response.Field"
|
237
|
+
optional :category, :string, 7
|
238
|
+
oneof :map_to do
|
239
|
+
optional :resource, :string, 2
|
240
|
+
optional :property, :string, 3
|
241
|
+
optional :value, :string, 4
|
242
|
+
end
|
243
|
+
end
|
244
|
+
add_message "schema.v1.Controller.ResourceCondition" do
|
245
|
+
repeated :operands, :message, 1, "schema.v1.Controller.ResourceCondition.Operand"
|
246
|
+
repeated :operators, :enum, 2, "schema.v1.Operator"
|
247
|
+
end
|
248
|
+
add_message "schema.v1.Controller.ResourceCondition.Operand" do
|
249
|
+
oneof :operand do
|
250
|
+
optional :expr, :message, 1, "schema.v1.Controller.ResourceCondition.Expr"
|
251
|
+
optional :condition, :message, 2, "schema.v1.Controller.ResourceCondition"
|
252
|
+
end
|
253
|
+
end
|
254
|
+
add_message "schema.v1.Controller.ResourceCondition.Expr" do
|
255
|
+
repeated :paths, :string, 1
|
256
|
+
optional :data_type, :message, 8, "schema.v1.DataType"
|
257
|
+
optional :operator, :enum, 9, "schema.v1.Operator"
|
258
|
+
oneof :map_to do
|
259
|
+
optional :query, :string, 2
|
260
|
+
optional :params, :string, 3
|
261
|
+
optional :body, :string, 4
|
262
|
+
optional :value, :string, 5
|
263
|
+
optional :system, :enum, 7, "schema.v1.Controller.ResourceCondition.System"
|
264
|
+
end
|
265
|
+
end
|
266
|
+
add_enum "schema.v1.Controller.ResourceCondition.System" do
|
267
|
+
value :RESOURCE_OWNER, 0
|
268
|
+
end
|
269
|
+
add_message "schema.v1.Controller.ResourceUpdate" do
|
270
|
+
repeated :fields, :message, 1, "schema.v1.Controller.ResourceUpdate.Field"
|
271
|
+
end
|
272
|
+
add_message "schema.v1.Controller.ResourceUpdate.Field" do
|
273
|
+
optional :name, :string, 1
|
274
|
+
optional :data_type, :message, 6, "schema.v1.DataType"
|
275
|
+
repeated :children, :message, 7, "schema.v1.Controller.ResourceUpdate.Field"
|
276
|
+
oneof :map_to do
|
277
|
+
optional :query, :string, 2
|
278
|
+
optional :params, :string, 3
|
279
|
+
optional :body, :string, 4
|
280
|
+
optional :value, :string, 5
|
281
|
+
end
|
282
|
+
end
|
283
|
+
add_message "schema.v1.Controller.Authentication" do
|
284
|
+
optional :table_name, :string, 1
|
285
|
+
end
|
286
|
+
add_message "schema.v1.Controller.Authorization" do
|
287
|
+
optional :authorization_id, :int32, 1
|
288
|
+
optional :table_name, :string, 2
|
289
|
+
end
|
290
|
+
add_message "schema.v1.Table" do
|
291
|
+
optional :name, :string, 1
|
292
|
+
repeated :columns, :message, 2, "schema.v1.Table.Column"
|
293
|
+
repeated :relations, :message, 3, "schema.v1.Table.Relation"
|
294
|
+
repeated :indexes, :message, 4, "schema.v1.Table.Index"
|
295
|
+
end
|
296
|
+
add_message "schema.v1.Table.Column" do
|
297
|
+
optional :name, :string, 1
|
298
|
+
optional :type, :message, 2, "schema.v1.Table.Column.ColumnType"
|
299
|
+
repeated :constraints, :message, 3, "schema.v1.Table.Constraint"
|
300
|
+
end
|
301
|
+
add_message "schema.v1.Table.Column.ColumnType" do
|
302
|
+
oneof :types do
|
303
|
+
optional :integer_type, :message, 1, "schema.v1.Table.Column.IntegerType"
|
304
|
+
optional :string_type, :message, 2, "schema.v1.Table.Column.StringType"
|
305
|
+
optional :float_type, :message, 3, "schema.v1.Table.Column.FloatType"
|
306
|
+
optional :boolean_type, :message, 4, "schema.v1.Table.Column.BooleanType"
|
307
|
+
optional :date_type, :message, 5, "schema.v1.Table.Column.DateType"
|
308
|
+
optional :file_type, :message, 6, "schema.v1.Table.Column.FileType"
|
309
|
+
optional :enum_type, :message, 7, "schema.v1.Table.Column.EnumType"
|
310
|
+
end
|
311
|
+
end
|
312
|
+
add_message "schema.v1.Table.Column.StringType" do
|
313
|
+
proto3_optional :default_value, :string, 1
|
314
|
+
optional :is_text, :bool, 2
|
315
|
+
repeated :formats, :enum, 3, "schema.v1.Table.Column.StringType.Format"
|
316
|
+
repeated :conditions, :message, 4, "schema.v1.Table.Column.StringType.Condition"
|
317
|
+
end
|
318
|
+
add_message "schema.v1.Table.Column.StringType.Condition" do
|
319
|
+
optional :operator, :enum, 1, "schema.v1.Table.Column.Operator"
|
320
|
+
oneof :operand do
|
321
|
+
optional :value, :int32, 2
|
322
|
+
optional :column_name, :string, 3
|
323
|
+
end
|
324
|
+
end
|
325
|
+
add_enum "schema.v1.Table.Column.StringType.Format" do
|
326
|
+
value :EMAIL, 0
|
327
|
+
value :HIRAGANA, 1
|
328
|
+
value :KATAKANA, 2
|
329
|
+
value :PHONE_NUMBER, 3
|
330
|
+
value :URL, 4
|
331
|
+
end
|
332
|
+
add_message "schema.v1.Table.Column.IntegerType" do
|
333
|
+
proto3_optional :default_value, :int32, 1
|
334
|
+
repeated :conditions, :message, 2, "schema.v1.Table.Column.IntegerType.Condition"
|
335
|
+
end
|
336
|
+
add_message "schema.v1.Table.Column.IntegerType.Condition" do
|
337
|
+
optional :operator, :enum, 1, "schema.v1.Table.Column.Operator"
|
338
|
+
oneof :operand do
|
339
|
+
optional :value, :int32, 2
|
340
|
+
optional :column_name, :string, 3
|
341
|
+
end
|
342
|
+
end
|
343
|
+
add_message "schema.v1.Table.Column.FloatType" do
|
344
|
+
proto3_optional :default_value, :float, 1
|
345
|
+
repeated :conditions, :message, 2, "schema.v1.Table.Column.FloatType.Condition"
|
346
|
+
end
|
347
|
+
add_message "schema.v1.Table.Column.FloatType.Condition" do
|
348
|
+
optional :operator, :enum, 1, "schema.v1.Table.Column.Operator"
|
349
|
+
oneof :operand do
|
350
|
+
optional :value, :float, 2
|
351
|
+
optional :column_name, :string, 3
|
352
|
+
end
|
353
|
+
end
|
354
|
+
add_message "schema.v1.Table.Column.BooleanType" do
|
355
|
+
optional :default_value, :bool, 1
|
356
|
+
end
|
357
|
+
add_message "schema.v1.Table.Column.DateType" do
|
358
|
+
optional :with_time, :bool, 1
|
359
|
+
repeated :conditions, :enum, 2, "schema.v1.Table.Column.DateType.Condition"
|
360
|
+
end
|
361
|
+
add_enum "schema.v1.Table.Column.DateType.Condition" do
|
362
|
+
value :IN_PAST, 0
|
363
|
+
value :IN_FUTURE, 1
|
364
|
+
end
|
365
|
+
add_message "schema.v1.Table.Column.FileType" do
|
366
|
+
optional :maximum_size, :int32, 1
|
367
|
+
optional :number_of_files, :message, 2, "schema.v1.Table.Column.FileType.NumberOfFiles"
|
368
|
+
repeated :content_types, :enum, 3, "schema.v1.Table.Column.FileType.ContentType"
|
369
|
+
optional :multiple, :bool, 4
|
370
|
+
end
|
371
|
+
add_message "schema.v1.Table.Column.FileType.NumberOfFiles" do
|
372
|
+
optional :minimum, :int32, 1
|
373
|
+
optional :maximum, :int32, 2
|
374
|
+
end
|
375
|
+
add_enum "schema.v1.Table.Column.FileType.ContentType" do
|
376
|
+
value :IMAGE, 0
|
377
|
+
value :VIDEO, 1
|
378
|
+
value :AUDIO, 2
|
379
|
+
value :CSV, 3
|
380
|
+
value :PDF, 4
|
381
|
+
value :JSON, 5
|
382
|
+
end
|
383
|
+
add_message "schema.v1.Table.Column.EnumType" do
|
384
|
+
optional :default_value, :string, 1
|
385
|
+
repeated :values, :string, 2
|
386
|
+
end
|
387
|
+
add_enum "schema.v1.Table.Column.Operator" do
|
388
|
+
value :GREATER_THAN, 0
|
389
|
+
value :GREATER_THAN_OR_EQUAL, 1
|
390
|
+
value :EQUAL, 2
|
391
|
+
value :LESS_THAN, 3
|
392
|
+
value :LESS_THAN_OR_EQUAL, 4
|
393
|
+
value :NOT_EQUAL, 5
|
394
|
+
end
|
395
|
+
add_message "schema.v1.Table.Constraint" do
|
396
|
+
oneof :relation_key do
|
397
|
+
optional :primary_key, :message, 1, "schema.v1.Table.Constraint.PrimaryKey"
|
398
|
+
optional :foreign_key, :message, 2, "schema.v1.Table.Constraint.ForeignKey"
|
399
|
+
optional :not_null, :message, 3, "schema.v1.Table.Constraint.NotNull"
|
400
|
+
optional :unique, :message, 4, "schema.v1.Table.Constraint.Unique"
|
401
|
+
end
|
402
|
+
end
|
403
|
+
add_message "schema.v1.Table.Constraint.PrimaryKey" do
|
404
|
+
end
|
405
|
+
add_message "schema.v1.Table.Constraint.ForeignKey" do
|
406
|
+
optional :table_name, :string, 1
|
407
|
+
optional :primary_key, :string, 2
|
408
|
+
end
|
409
|
+
add_message "schema.v1.Table.Constraint.NotNull" do
|
410
|
+
end
|
411
|
+
add_message "schema.v1.Table.Constraint.Unique" do
|
412
|
+
end
|
413
|
+
add_message "schema.v1.Table.Index" do
|
414
|
+
optional :name, :string, 1
|
415
|
+
optional :unique, :bool, 2
|
416
|
+
repeated :columns, :string, 3
|
417
|
+
end
|
418
|
+
add_message "schema.v1.Table.Relation" do
|
419
|
+
oneof :relation_type do
|
420
|
+
optional :has_one, :message, 1, "schema.v1.Table.Relation.RelationHasOne"
|
421
|
+
optional :belong_to, :message, 2, "schema.v1.Table.Relation.RelationBelongTo"
|
422
|
+
optional :one_many, :message, 3, "schema.v1.Table.Relation.RelationOneMany"
|
423
|
+
optional :many_one, :message, 4, "schema.v1.Table.Relation.RelationManyOne"
|
424
|
+
optional :many_many, :message, 5, "schema.v1.Table.Relation.RelationManyMany"
|
425
|
+
end
|
426
|
+
end
|
427
|
+
add_message "schema.v1.Table.Relation.RelationHasOne" do
|
428
|
+
optional :table_name, :string, 1
|
429
|
+
optional :column_name, :string, 2
|
430
|
+
end
|
431
|
+
add_message "schema.v1.Table.Relation.RelationBelongTo" do
|
432
|
+
optional :table_name, :string, 1
|
433
|
+
optional :column_name, :string, 2
|
434
|
+
end
|
435
|
+
add_message "schema.v1.Table.Relation.RelationManyOne" do
|
436
|
+
optional :table_name, :string, 1
|
437
|
+
optional :column_name, :string, 2
|
438
|
+
end
|
439
|
+
add_message "schema.v1.Table.Relation.RelationOneMany" do
|
440
|
+
optional :table_name, :string, 1
|
441
|
+
optional :column_name, :string, 2
|
442
|
+
end
|
443
|
+
add_message "schema.v1.Table.Relation.RelationManyMany" do
|
444
|
+
optional :table_name, :string, 1
|
445
|
+
optional :joined_name, :string, 2
|
446
|
+
end
|
447
|
+
add_message "schema.v1.Migration" do
|
448
|
+
optional :migration_id, :string, 1
|
449
|
+
repeated :changes, :message, 2, "schema.v1.MigrationChange"
|
450
|
+
end
|
451
|
+
add_message "schema.v1.MigrationChange" do
|
452
|
+
oneof :methods do
|
453
|
+
optional :create_table, :message, 1, "schema.v1.CreateTable"
|
454
|
+
optional :change_table_name, :message, 2, "schema.v1.ChangeTableName"
|
455
|
+
optional :change_table_comment, :message, 3, "schema.v1.ChangeTableComment"
|
456
|
+
optional :add_column, :message, 4, "schema.v1.AddColumn"
|
457
|
+
optional :rename_column, :message, 5, "schema.v1.RenameColumn"
|
458
|
+
optional :change_column_comment, :message, 6, "schema.v1.ChangeColumnComment"
|
459
|
+
optional :change_column, :message, 7, "schema.v1.ChangeColumn"
|
460
|
+
optional :change_column_default, :message, 8, "schema.v1.ChangeColumnDefault"
|
461
|
+
optional :change_column_null, :message, 9, "schema.v1.ChangeColumnNull"
|
462
|
+
optional :remove_table_index, :message, 10, "schema.v1.RemoveTableIndex"
|
463
|
+
optional :remove_table_relation, :message, 11, "schema.v1.RemoveTableRelation"
|
464
|
+
optional :create_table_relation, :message, 12, "schema.v1.CreateTableRelation"
|
465
|
+
optional :remove_column, :message, 13, "schema.v1.RemoveColumn"
|
466
|
+
optional :drop_table, :message, 14, "schema.v1.DropTable"
|
467
|
+
optional :change_table_index, :message, 15, "schema.v1.ChangeTableIndex"
|
468
|
+
optional :create_table_index, :message, 16, "schema.v1.CreateTableIndex"
|
469
|
+
optional :add_uniq_column, :message, 17, "schema.v1.AddUniqColumn"
|
470
|
+
optional :change_column_unique, :message, 18, "schema.v1.ChangeColumnUnique"
|
471
|
+
end
|
472
|
+
end
|
473
|
+
add_message "schema.v1.CreateTable" do
|
474
|
+
optional :key, :string, 1
|
475
|
+
optional :change_to, :message, 2, "schema.v1.CreateTableChange"
|
476
|
+
optional :prev_uuid, :string, 3
|
477
|
+
optional :next_uuid, :string, 4
|
478
|
+
optional :next_record, :message, 5, "schema.v1.CreateTableNextRecord"
|
479
|
+
end
|
480
|
+
add_message "schema.v1.ChangeTableName" do
|
481
|
+
optional :key, :string, 1
|
482
|
+
optional :change_from, :string, 2
|
483
|
+
optional :change_to, :string, 3
|
484
|
+
optional :prev_uuid, :string, 4
|
485
|
+
optional :next_uuid, :string, 5
|
486
|
+
optional :prev_record, :message, 6, "schema.v1.CreateTableNextRecord"
|
487
|
+
optional :next_record, :message, 7, "schema.v1.CreateTableNextRecord"
|
488
|
+
end
|
489
|
+
add_message "schema.v1.ChangeTableComment" do
|
490
|
+
optional :key, :string, 1
|
491
|
+
optional :change_from, :string, 2
|
492
|
+
optional :change_to, :string, 3
|
493
|
+
optional :prev_uuid, :string, 4
|
494
|
+
optional :next_uuid, :string, 5
|
495
|
+
optional :prev_record, :message, 6, "schema.v1.CreateTableNextRecord"
|
496
|
+
optional :next_record, :message, 7, "schema.v1.CreateTableNextRecord"
|
497
|
+
end
|
498
|
+
add_message "schema.v1.CreateTableChange" do
|
499
|
+
optional :name, :string, 1
|
500
|
+
optional :uuid, :string, 2
|
501
|
+
proto3_optional :comment, :string, 3
|
502
|
+
end
|
503
|
+
add_message "schema.v1.AddColumn" do
|
504
|
+
optional :key, :string, 1
|
505
|
+
optional :change_to, :message, 2, "schema.v1.MigrationColumnDefinition"
|
506
|
+
optional :prev_uuid, :string, 3
|
507
|
+
optional :next_uuid, :string, 4
|
508
|
+
optional :next_record, :message, 5, "schema.v1.MigrationColumnDefinition"
|
509
|
+
end
|
510
|
+
add_message "schema.v1.RenameColumn" do
|
511
|
+
optional :key, :string, 1
|
512
|
+
optional :change_from, :string, 2
|
513
|
+
optional :change_to, :string, 3
|
514
|
+
optional :prev_uuid, :string, 4
|
515
|
+
optional :next_uuid, :string, 5
|
516
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
517
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
518
|
+
end
|
519
|
+
add_message "schema.v1.ChangeColumnComment" do
|
520
|
+
optional :key, :string, 1
|
521
|
+
optional :change_from, :string, 2
|
522
|
+
optional :change_to, :string, 3
|
523
|
+
optional :prev_uuid, :string, 4
|
524
|
+
optional :next_uuid, :string, 5
|
525
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
526
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
527
|
+
end
|
528
|
+
add_message "schema.v1.ChangeColumn" do
|
529
|
+
optional :key, :string, 1
|
530
|
+
optional :change_from, :string, 2
|
531
|
+
optional :change_to, :string, 3
|
532
|
+
optional :prev_uuid, :string, 4
|
533
|
+
optional :next_uuid, :string, 5
|
534
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
535
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
536
|
+
end
|
537
|
+
add_message "schema.v1.ChangeColumnDefault" do
|
538
|
+
optional :key, :string, 1
|
539
|
+
optional :change_from, :string, 2
|
540
|
+
optional :change_to, :string, 3
|
541
|
+
optional :prev_uuid, :string, 4
|
542
|
+
optional :next_uuid, :string, 5
|
543
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
544
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
545
|
+
end
|
546
|
+
add_message "schema.v1.ChangeColumnNull" do
|
547
|
+
optional :key, :string, 1
|
548
|
+
optional :change_from, :string, 2
|
549
|
+
optional :change_to, :string, 3
|
550
|
+
optional :prev_uuid, :string, 4
|
551
|
+
optional :next_uuid, :string, 5
|
552
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
553
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
554
|
+
end
|
555
|
+
add_message "schema.v1.RemoveTableIndex" do
|
556
|
+
optional :key, :string, 1
|
557
|
+
optional :change_from, :message, 2, "schema.v1.TableIndexMigration"
|
558
|
+
optional :prev_uuid, :string, 3
|
559
|
+
optional :next_uuid, :string, 4
|
560
|
+
optional :prev_record, :message, 5, "schema.v1.TableIndexMigration"
|
561
|
+
end
|
562
|
+
add_message "schema.v1.RemoveTableRelation" do
|
563
|
+
optional :key, :string, 1
|
564
|
+
optional :prev_uuid, :string, 3
|
565
|
+
optional :next_uuid, :string, 4
|
566
|
+
optional :prev_record, :message, 5, "schema.v1.TableRelationMigration"
|
567
|
+
end
|
568
|
+
add_message "schema.v1.CreateTableRelation" do
|
569
|
+
optional :key, :string, 1
|
570
|
+
optional :change_to, :message, 2, "schema.v1.TableRelationMigration"
|
571
|
+
optional :prev_uuid, :string, 4
|
572
|
+
optional :next_uuid, :string, 5
|
573
|
+
optional :next_record, :message, 6, "schema.v1.TableRelationMigration"
|
574
|
+
end
|
575
|
+
add_message "schema.v1.RemoveColumn" do
|
576
|
+
optional :key, :string, 1
|
577
|
+
optional :change_from, :message, 2, "schema.v1.MigrationColumnDefinition"
|
578
|
+
optional :prev_uuid, :string, 4
|
579
|
+
optional :next_uuid, :string, 5
|
580
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
581
|
+
end
|
582
|
+
add_message "schema.v1.DropTable" do
|
583
|
+
optional :key, :string, 1
|
584
|
+
optional :change_from, :message, 2, "schema.v1.CreateTableNextRecord"
|
585
|
+
optional :prev_uuid, :string, 4
|
586
|
+
optional :next_uuid, :string, 5
|
587
|
+
optional :prev_record, :message, 6, "schema.v1.CreateTableNextRecord"
|
588
|
+
end
|
589
|
+
add_message "schema.v1.ChangeTableIndex" do
|
590
|
+
optional :key, :string, 1
|
591
|
+
optional :change_from, :string, 2
|
592
|
+
optional :change_to, :string, 3
|
593
|
+
optional :prev_uuid, :string, 4
|
594
|
+
optional :next_uuid, :string, 5
|
595
|
+
optional :prev_record, :message, 6, "schema.v1.TableIndexMigration"
|
596
|
+
optional :next_record, :message, 7, "schema.v1.TableIndexMigration"
|
597
|
+
end
|
598
|
+
add_message "schema.v1.CreateTableIndex" do
|
599
|
+
optional :key, :string, 1
|
600
|
+
optional :change_to, :message, 2, "schema.v1.TableIndexMigration"
|
601
|
+
optional :next_uuid, :string, 5
|
602
|
+
optional :next_record, :message, 7, "schema.v1.TableIndexMigration"
|
603
|
+
end
|
604
|
+
add_message "schema.v1.AddUniqColumn" do
|
605
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
606
|
+
end
|
607
|
+
add_message "schema.v1.ChangeColumnUnique" do
|
608
|
+
optional :key, :string, 1
|
609
|
+
optional :change_from, :bool, 2
|
610
|
+
optional :change_to, :bool, 3
|
611
|
+
optional :prev_uuid, :string, 4
|
612
|
+
optional :next_uuid, :string, 5
|
613
|
+
optional :prev_record, :message, 6, "schema.v1.MigrationColumnDefinition"
|
614
|
+
optional :next_record, :message, 7, "schema.v1.MigrationColumnDefinition"
|
615
|
+
end
|
616
|
+
add_message "schema.v1.CreateTableNextRecord" do
|
617
|
+
optional :name, :string, 1
|
618
|
+
optional :uuid, :string, 2
|
619
|
+
optional :comment, :string, 3
|
620
|
+
repeated :column_definitions, :message, 4, "schema.v1.MigrationColumnDefinition"
|
621
|
+
end
|
622
|
+
add_message "schema.v1.MigrationColumnDefinition" do
|
623
|
+
optional :name, :string, 1
|
624
|
+
optional :column_type, :string, 2
|
625
|
+
optional :required, :bool, 3
|
626
|
+
optional :unique, :bool, 4
|
627
|
+
optional :default_value, :string, 5
|
628
|
+
optional :comment, :string, 6
|
629
|
+
optional :uuid, :string, 7
|
630
|
+
optional :table_definition_uuid, :string, 8
|
631
|
+
proto3_optional :custom_foreign_key, :bool, 9
|
632
|
+
proto3_optional :table_definition, :message, 10, "schema.v1.TableMetaDataMigration"
|
633
|
+
optional :id, :int32, 11
|
634
|
+
end
|
635
|
+
add_message "schema.v1.TableMetaDataMigration" do
|
636
|
+
optional :name, :string, 1
|
637
|
+
optional :uuid, :string, 2
|
638
|
+
end
|
639
|
+
add_message "schema.v1.TableIndexMigration" do
|
640
|
+
optional :name, :string, 1
|
641
|
+
optional :unique, :bool, 2
|
642
|
+
optional :uuid, :string, 3
|
643
|
+
optional :table_definition_uuid, :string, 4
|
644
|
+
repeated :column_definitions, :message, 5, "schema.v1.MigrationColumnDefinition"
|
645
|
+
optional :single_index, :bool, 6
|
646
|
+
proto3_optional :table_definition, :message, 7, "schema.v1.TableMetaDataMigration"
|
647
|
+
optional :id, :int32, 8
|
648
|
+
end
|
649
|
+
add_message "schema.v1.TableRelationMigration" do
|
650
|
+
optional :foreign_key, :string, 1
|
651
|
+
optional :relation_type, :string, 2
|
652
|
+
optional :required, :bool, 3
|
653
|
+
optional :uuid, :string, 4
|
654
|
+
optional :table_definition_uuid, :string, 5
|
655
|
+
optional :related_table_uuid, :string, 6
|
656
|
+
proto3_optional :custom_foreign_key, :bool, 7
|
657
|
+
optional :table_definition, :message, 8, "schema.v1.CreateTableChange"
|
658
|
+
optional :related_table, :message, 9, "schema.v1.CreateTableChange"
|
659
|
+
optional :id, :int32, 10
|
660
|
+
end
|
661
|
+
add_enum "schema.v1.DataTypeName" do
|
662
|
+
value :BOOLEAN, 0
|
663
|
+
value :INTEGER, 1
|
664
|
+
value :FLOAT, 2
|
665
|
+
value :STRING, 3
|
666
|
+
value :TEXT, 4
|
667
|
+
value :DATE, 5
|
668
|
+
value :DATETIME, 6
|
669
|
+
value :ARRAY, 7
|
670
|
+
value :OBJECT, 8
|
671
|
+
value :PAGE_SIZE, 9
|
672
|
+
value :PAGE_NUMBER, 10
|
673
|
+
value :FILE, 11
|
674
|
+
value :TABLE, 12
|
675
|
+
value :ENUM, 13
|
676
|
+
value :CURRENT_USER, 14
|
677
|
+
end
|
678
|
+
add_enum "schema.v1.Operator" do
|
679
|
+
value :WHERE, 0
|
680
|
+
value :PAGINATION, 1
|
681
|
+
value :ORDER, 2
|
682
|
+
value :ORDER_ASC, 3
|
683
|
+
value :ORDER_DESC, 4
|
684
|
+
value :JOIN_AND, 5
|
685
|
+
value :JOIN_OR, 6
|
686
|
+
value :EQUAL, 7
|
687
|
+
value :START_WITH, 8
|
688
|
+
value :END_WITH, 9
|
689
|
+
value :CONTAIN, 10
|
690
|
+
value :NOT_EQUAL, 11
|
691
|
+
value :GREATER_THAN, 12
|
692
|
+
value :LESS_THAN, 13
|
693
|
+
value :GREATER_OR_EQUAL_THAN, 14
|
694
|
+
value :LESS_OR_EQUAL_THAN, 15
|
695
|
+
value :WHERE_AND, 16
|
696
|
+
value :WHERE_OR, 17
|
697
|
+
end
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
module Schema
|
702
|
+
module V1
|
703
|
+
Project = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Project").msgclass
|
704
|
+
ProjectExport = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ProjectExport").msgclass
|
705
|
+
ProjectPreview = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ProjectPreview").msgclass
|
706
|
+
Infra = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Infra").msgclass
|
707
|
+
Backend = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Backend").msgclass
|
708
|
+
Localization = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Localization").msgclass
|
709
|
+
Localization::Namespace = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Localization.Namespace").msgclass
|
710
|
+
Localization::Translate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Localization.Translate").msgclass
|
711
|
+
DataType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.DataType").msgclass
|
712
|
+
Authorization = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization").msgclass
|
713
|
+
Authorization::Policy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy").msgclass
|
714
|
+
Authorization::Policy::RoleBinding = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy.RoleBinding").msgclass
|
715
|
+
Authorization::Policy::Rule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy.Rule").msgclass
|
716
|
+
Authorization::Policy::Rule::Operand = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy.Rule.Operand").msgclass
|
717
|
+
Authorization::Policy::Rule::Expr = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy.Rule.Expr").msgclass
|
718
|
+
Authorization::Policy::Scope = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Authorization.Policy.Scope").enummodule
|
719
|
+
Feature = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature").msgclass
|
720
|
+
Feature::EmailLogin = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.EmailLogin").msgclass
|
721
|
+
Feature::EmailLogin::UnlockStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.EmailLogin.UnlockStrategy").enummodule
|
722
|
+
Feature::JPBankData = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.JPBankData").msgclass
|
723
|
+
Feature::BasicAuth = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.BasicAuth").msgclass
|
724
|
+
Feature::TwilioLogin = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.TwilioLogin").msgclass
|
725
|
+
Feature::Rollbar = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Rollbar").msgclass
|
726
|
+
Feature::DeepLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.DeepLink").msgclass
|
727
|
+
Feature::Stripe = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Stripe").msgclass
|
728
|
+
Feature::LineLogin = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.LineLogin").msgclass
|
729
|
+
Feature::FeatureName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.FeatureName").enummodule
|
730
|
+
Feature::Environment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Feature.Environment").enummodule
|
731
|
+
Controller = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller").msgclass
|
732
|
+
Controller::Endpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint").msgclass
|
733
|
+
Controller::Endpoint::List = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint.List").msgclass
|
734
|
+
Controller::Endpoint::Get = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint.Get").msgclass
|
735
|
+
Controller::Endpoint::Create = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint.Create").msgclass
|
736
|
+
Controller::Endpoint::Update = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint.Update").msgclass
|
737
|
+
Controller::Endpoint::Delete = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Endpoint.Delete").msgclass
|
738
|
+
Controller::RequestContent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.RequestContent").msgclass
|
739
|
+
Controller::RequestContent::Field = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.RequestContent.Field").msgclass
|
740
|
+
Controller::Response = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Response").msgclass
|
741
|
+
Controller::Response::Field = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Response.Field").msgclass
|
742
|
+
Controller::ResourceCondition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceCondition").msgclass
|
743
|
+
Controller::ResourceCondition::Operand = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceCondition.Operand").msgclass
|
744
|
+
Controller::ResourceCondition::Expr = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceCondition.Expr").msgclass
|
745
|
+
Controller::ResourceCondition::System = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceCondition.System").enummodule
|
746
|
+
Controller::ResourceUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceUpdate").msgclass
|
747
|
+
Controller::ResourceUpdate::Field = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.ResourceUpdate.Field").msgclass
|
748
|
+
Controller::Authentication = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Authentication").msgclass
|
749
|
+
Controller::Authorization = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Controller.Authorization").msgclass
|
750
|
+
Table = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table").msgclass
|
751
|
+
Table::Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column").msgclass
|
752
|
+
Table::Column::ColumnType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.ColumnType").msgclass
|
753
|
+
Table::Column::StringType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType").msgclass
|
754
|
+
Table::Column::StringType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Condition").msgclass
|
755
|
+
Table::Column::StringType::Format = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Format").enummodule
|
756
|
+
Table::Column::IntegerType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.IntegerType").msgclass
|
757
|
+
Table::Column::IntegerType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.IntegerType.Condition").msgclass
|
758
|
+
Table::Column::FloatType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.FloatType").msgclass
|
759
|
+
Table::Column::FloatType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.FloatType.Condition").msgclass
|
760
|
+
Table::Column::BooleanType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.BooleanType").msgclass
|
761
|
+
Table::Column::DateType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.DateType").msgclass
|
762
|
+
Table::Column::DateType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.DateType.Condition").enummodule
|
763
|
+
Table::Column::FileType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.FileType").msgclass
|
764
|
+
Table::Column::FileType::NumberOfFiles = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.FileType.NumberOfFiles").msgclass
|
765
|
+
Table::Column::FileType::ContentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.FileType.ContentType").enummodule
|
766
|
+
Table::Column::EnumType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.EnumType").msgclass
|
767
|
+
Table::Column::Operator = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.Operator").enummodule
|
768
|
+
Table::Constraint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Constraint").msgclass
|
769
|
+
Table::Constraint::PrimaryKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Constraint.PrimaryKey").msgclass
|
770
|
+
Table::Constraint::ForeignKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Constraint.ForeignKey").msgclass
|
771
|
+
Table::Constraint::NotNull = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Constraint.NotNull").msgclass
|
772
|
+
Table::Constraint::Unique = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Constraint.Unique").msgclass
|
773
|
+
Table::Index = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Index").msgclass
|
774
|
+
Table::Relation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation").msgclass
|
775
|
+
Table::Relation::RelationHasOne = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation.RelationHasOne").msgclass
|
776
|
+
Table::Relation::RelationBelongTo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation.RelationBelongTo").msgclass
|
777
|
+
Table::Relation::RelationManyOne = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation.RelationManyOne").msgclass
|
778
|
+
Table::Relation::RelationOneMany = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation.RelationOneMany").msgclass
|
779
|
+
Table::Relation::RelationManyMany = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Relation.RelationManyMany").msgclass
|
780
|
+
Migration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Migration").msgclass
|
781
|
+
MigrationChange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.MigrationChange").msgclass
|
782
|
+
CreateTable = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.CreateTable").msgclass
|
783
|
+
ChangeTableName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeTableName").msgclass
|
784
|
+
ChangeTableComment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeTableComment").msgclass
|
785
|
+
CreateTableChange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.CreateTableChange").msgclass
|
786
|
+
AddColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AddColumn").msgclass
|
787
|
+
RenameColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.RenameColumn").msgclass
|
788
|
+
ChangeColumnComment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeColumnComment").msgclass
|
789
|
+
ChangeColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeColumn").msgclass
|
790
|
+
ChangeColumnDefault = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeColumnDefault").msgclass
|
791
|
+
ChangeColumnNull = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeColumnNull").msgclass
|
792
|
+
RemoveTableIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.RemoveTableIndex").msgclass
|
793
|
+
RemoveTableRelation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.RemoveTableRelation").msgclass
|
794
|
+
CreateTableRelation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.CreateTableRelation").msgclass
|
795
|
+
RemoveColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.RemoveColumn").msgclass
|
796
|
+
DropTable = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.DropTable").msgclass
|
797
|
+
ChangeTableIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeTableIndex").msgclass
|
798
|
+
CreateTableIndex = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.CreateTableIndex").msgclass
|
799
|
+
AddUniqColumn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.AddUniqColumn").msgclass
|
800
|
+
ChangeColumnUnique = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.ChangeColumnUnique").msgclass
|
801
|
+
CreateTableNextRecord = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.CreateTableNextRecord").msgclass
|
802
|
+
MigrationColumnDefinition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.MigrationColumnDefinition").msgclass
|
803
|
+
TableMetaDataMigration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.TableMetaDataMigration").msgclass
|
804
|
+
TableIndexMigration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.TableIndexMigration").msgclass
|
805
|
+
TableRelationMigration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.TableRelationMigration").msgclass
|
806
|
+
DataTypeName = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.DataTypeName").enummodule
|
807
|
+
Operator = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Operator").enummodule
|
808
|
+
end
|
809
|
+
end
|