@eide/foir-proto-ts 0.21.0 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -1
- package/src/apps/v1/apps_pb.d.ts +722 -0
- package/src/apps/v1/apps_pb.js +143 -0
- package/src/apps/v1/apps_service_connect.d.ts +233 -0
- package/src/apps/v1/apps_service_connect.js +233 -0
- package/src/apps/v1/apps_service_pb.d.ts +1599 -0
- package/src/apps/v1/apps_service_pb.js +391 -0
- package/src/identity/v1/identity_connect.d.ts +30 -1
- package/src/identity/v1/identity_connect.js +30 -1
- package/src/identity/v1/identity_pb.d.ts +169 -0
- package/src/identity/v1/identity_pb.js +43 -1
- package/src/placements/v1/placements_connect.d.ts +76 -0
- package/src/placements/v1/placements_connect.js +76 -0
- package/src/placements/v1/placements_pb.d.ts +527 -0
- package/src/placements/v1/placements_pb.js +123 -0
|
@@ -0,0 +1,527 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file placements/v1/placements.proto (package placements.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file placements/v1/placements.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_placements_v1_placements: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Persisted placement row. Mirrors the `placements` table 1:1.
|
|
16
|
+
*
|
|
17
|
+
* @generated from message placements.v1.Placement
|
|
18
|
+
*/
|
|
19
|
+
export declare type Placement = Message<"placements.v1.Placement"> & {
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: string id = 1;
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @generated from field: string tenant_id = 2;
|
|
27
|
+
*/
|
|
28
|
+
tenantId: string;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @generated from field: string project_id = 3;
|
|
32
|
+
*/
|
|
33
|
+
projectId: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Either an apps.id or a configs.id. See package-level doc.
|
|
37
|
+
*
|
|
38
|
+
* @generated from field: string config_id = 4;
|
|
39
|
+
*/
|
|
40
|
+
configId: string;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Stable manifest-level key. Unique within (tenant, project, config_id).
|
|
44
|
+
*
|
|
45
|
+
* @generated from field: string key = 5;
|
|
46
|
+
*/
|
|
47
|
+
key: string;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: placements.v1.Placement.Target target = 6;
|
|
51
|
+
*/
|
|
52
|
+
target: Placement_Target;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Resolved model key, "*", or unset for FULL_PAGE.
|
|
56
|
+
*
|
|
57
|
+
* @generated from field: optional string model = 7;
|
|
58
|
+
*/
|
|
59
|
+
model?: string;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Only set for TARGET_FIELD.
|
|
63
|
+
*
|
|
64
|
+
* @generated from field: optional string field = 8;
|
|
65
|
+
*/
|
|
66
|
+
field?: string;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Only set for MAIN_EDITOR / SIDEBAR.
|
|
70
|
+
*
|
|
71
|
+
* @generated from field: optional string tab = 9;
|
|
72
|
+
*/
|
|
73
|
+
tab?: string;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string title = 10;
|
|
77
|
+
*/
|
|
78
|
+
title: string;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* @generated from field: string url = 11;
|
|
82
|
+
*/
|
|
83
|
+
url: string;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @generated from field: bool replaces_default = 12;
|
|
87
|
+
*/
|
|
88
|
+
replacesDefault: boolean;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @generated from field: optional google.protobuf.Struct hints = 13;
|
|
92
|
+
*/
|
|
93
|
+
hints?: JsonObject;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: google.protobuf.Timestamp created_at = 14;
|
|
97
|
+
*/
|
|
98
|
+
createdAt?: Timestamp;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 15;
|
|
102
|
+
*/
|
|
103
|
+
updatedAt?: Timestamp;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message placements.v1.Placement.
|
|
108
|
+
* Use `create(PlacementSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const PlacementSchema: GenMessage<Placement>;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* @generated from enum placements.v1.Placement.Target
|
|
114
|
+
*/
|
|
115
|
+
export enum Placement_Target {
|
|
116
|
+
/**
|
|
117
|
+
* @generated from enum value: TARGET_UNSPECIFIED = 0;
|
|
118
|
+
*/
|
|
119
|
+
UNSPECIFIED = 0,
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @generated from enum value: TARGET_FULL_PAGE = 1;
|
|
123
|
+
*/
|
|
124
|
+
FULL_PAGE = 1,
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @generated from enum value: TARGET_MAIN_EDITOR = 2;
|
|
128
|
+
*/
|
|
129
|
+
MAIN_EDITOR = 2,
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @generated from enum value: TARGET_SIDEBAR = 3;
|
|
133
|
+
*/
|
|
134
|
+
SIDEBAR = 3,
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @generated from enum value: TARGET_FIELD = 4;
|
|
138
|
+
*/
|
|
139
|
+
FIELD = 4,
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Describes the enum placements.v1.Placement.Target.
|
|
144
|
+
*/
|
|
145
|
+
export declare const Placement_TargetSchema: GenEnum<Placement_Target>;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* @generated from message placements.v1.CreatePlacementRequest
|
|
149
|
+
*/
|
|
150
|
+
export declare type CreatePlacementRequest = Message<"placements.v1.CreatePlacementRequest"> & {
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: string tenant_id = 1;
|
|
153
|
+
*/
|
|
154
|
+
tenantId: string;
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* @generated from field: string project_id = 2;
|
|
158
|
+
*/
|
|
159
|
+
projectId: string;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* @generated from field: string config_id = 3;
|
|
163
|
+
*/
|
|
164
|
+
configId: string;
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* @generated from field: string key = 4;
|
|
168
|
+
*/
|
|
169
|
+
key: string;
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @generated from field: placements.v1.Placement.Target target = 5;
|
|
173
|
+
*/
|
|
174
|
+
target: Placement_Target;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* @generated from field: optional string model = 6;
|
|
178
|
+
*/
|
|
179
|
+
model?: string;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: optional string field = 7;
|
|
183
|
+
*/
|
|
184
|
+
field?: string;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @generated from field: optional string tab = 8;
|
|
188
|
+
*/
|
|
189
|
+
tab?: string;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: string title = 9;
|
|
193
|
+
*/
|
|
194
|
+
title: string;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: string url = 10;
|
|
198
|
+
*/
|
|
199
|
+
url: string;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @generated from field: bool replaces_default = 11;
|
|
203
|
+
*/
|
|
204
|
+
replacesDefault: boolean;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: optional google.protobuf.Struct hints = 12;
|
|
208
|
+
*/
|
|
209
|
+
hints?: JsonObject;
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Describes the message placements.v1.CreatePlacementRequest.
|
|
214
|
+
* Use `create(CreatePlacementRequestSchema)` to create a new message.
|
|
215
|
+
*/
|
|
216
|
+
export declare const CreatePlacementRequestSchema: GenMessage<CreatePlacementRequest>;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from message placements.v1.CreatePlacementResponse
|
|
220
|
+
*/
|
|
221
|
+
export declare type CreatePlacementResponse = Message<"placements.v1.CreatePlacementResponse"> & {
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: placements.v1.Placement placement = 1;
|
|
224
|
+
*/
|
|
225
|
+
placement?: Placement;
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Describes the message placements.v1.CreatePlacementResponse.
|
|
230
|
+
* Use `create(CreatePlacementResponseSchema)` to create a new message.
|
|
231
|
+
*/
|
|
232
|
+
export declare const CreatePlacementResponseSchema: GenMessage<CreatePlacementResponse>;
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* @generated from message placements.v1.GetPlacementRequest
|
|
236
|
+
*/
|
|
237
|
+
export declare type GetPlacementRequest = Message<"placements.v1.GetPlacementRequest"> & {
|
|
238
|
+
/**
|
|
239
|
+
* @generated from field: string id = 1;
|
|
240
|
+
*/
|
|
241
|
+
id: string;
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Describes the message placements.v1.GetPlacementRequest.
|
|
246
|
+
* Use `create(GetPlacementRequestSchema)` to create a new message.
|
|
247
|
+
*/
|
|
248
|
+
export declare const GetPlacementRequestSchema: GenMessage<GetPlacementRequest>;
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* @generated from message placements.v1.GetPlacementResponse
|
|
252
|
+
*/
|
|
253
|
+
export declare type GetPlacementResponse = Message<"placements.v1.GetPlacementResponse"> & {
|
|
254
|
+
/**
|
|
255
|
+
* @generated from field: placements.v1.Placement placement = 1;
|
|
256
|
+
*/
|
|
257
|
+
placement?: Placement;
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Describes the message placements.v1.GetPlacementResponse.
|
|
262
|
+
* Use `create(GetPlacementResponseSchema)` to create a new message.
|
|
263
|
+
*/
|
|
264
|
+
export declare const GetPlacementResponseSchema: GenMessage<GetPlacementResponse>;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @generated from message placements.v1.ListPlacementsRequest
|
|
268
|
+
*/
|
|
269
|
+
export declare type ListPlacementsRequest = Message<"placements.v1.ListPlacementsRequest"> & {
|
|
270
|
+
/**
|
|
271
|
+
* @generated from field: string tenant_id = 1;
|
|
272
|
+
*/
|
|
273
|
+
tenantId: string;
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string project_id = 2;
|
|
277
|
+
*/
|
|
278
|
+
projectId: string;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* Restrict to a single owner (an apps.id or a configs.id). Empty returns
|
|
282
|
+
* all placements in the project regardless of owner.
|
|
283
|
+
*
|
|
284
|
+
* @generated from field: optional string config_id = 3;
|
|
285
|
+
*/
|
|
286
|
+
configId?: string;
|
|
287
|
+
};
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* Describes the message placements.v1.ListPlacementsRequest.
|
|
291
|
+
* Use `create(ListPlacementsRequestSchema)` to create a new message.
|
|
292
|
+
*/
|
|
293
|
+
export declare const ListPlacementsRequestSchema: GenMessage<ListPlacementsRequest>;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @generated from message placements.v1.ListPlacementsResponse
|
|
297
|
+
*/
|
|
298
|
+
export declare type ListPlacementsResponse = Message<"placements.v1.ListPlacementsResponse"> & {
|
|
299
|
+
/**
|
|
300
|
+
* @generated from field: repeated placements.v1.Placement placements = 1;
|
|
301
|
+
*/
|
|
302
|
+
placements: Placement[];
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Describes the message placements.v1.ListPlacementsResponse.
|
|
307
|
+
* Use `create(ListPlacementsResponseSchema)` to create a new message.
|
|
308
|
+
*/
|
|
309
|
+
export declare const ListPlacementsResponseSchema: GenMessage<ListPlacementsResponse>;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @generated from message placements.v1.ListPlacementsByModelRequest
|
|
313
|
+
*/
|
|
314
|
+
export declare type ListPlacementsByModelRequest = Message<"placements.v1.ListPlacementsByModelRequest"> & {
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: string tenant_id = 1;
|
|
317
|
+
*/
|
|
318
|
+
tenantId: string;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* @generated from field: string project_id = 2;
|
|
322
|
+
*/
|
|
323
|
+
projectId: string;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* concrete model key; wildcards expand
|
|
327
|
+
*
|
|
328
|
+
* @generated from field: string model = 3;
|
|
329
|
+
*/
|
|
330
|
+
model: string;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* narrow to one target, optional
|
|
334
|
+
*
|
|
335
|
+
* @generated from field: optional placements.v1.Placement.Target target = 4;
|
|
336
|
+
*/
|
|
337
|
+
target?: Placement_Target;
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Describes the message placements.v1.ListPlacementsByModelRequest.
|
|
342
|
+
* Use `create(ListPlacementsByModelRequestSchema)` to create a new message.
|
|
343
|
+
*/
|
|
344
|
+
export declare const ListPlacementsByModelRequestSchema: GenMessage<ListPlacementsByModelRequest>;
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @generated from message placements.v1.ListPlacementsByModelResponse
|
|
348
|
+
*/
|
|
349
|
+
export declare type ListPlacementsByModelResponse = Message<"placements.v1.ListPlacementsByModelResponse"> & {
|
|
350
|
+
/**
|
|
351
|
+
* @generated from field: repeated placements.v1.Placement placements = 1;
|
|
352
|
+
*/
|
|
353
|
+
placements: Placement[];
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* Describes the message placements.v1.ListPlacementsByModelResponse.
|
|
358
|
+
* Use `create(ListPlacementsByModelResponseSchema)` to create a new message.
|
|
359
|
+
*/
|
|
360
|
+
export declare const ListPlacementsByModelResponseSchema: GenMessage<ListPlacementsByModelResponse>;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* @generated from message placements.v1.UpdatePlacementRequest
|
|
364
|
+
*/
|
|
365
|
+
export declare type UpdatePlacementRequest = Message<"placements.v1.UpdatePlacementRequest"> & {
|
|
366
|
+
/**
|
|
367
|
+
* @generated from field: string id = 1;
|
|
368
|
+
*/
|
|
369
|
+
id: string;
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* All fields optional — only set ones are applied. config_id, key, and
|
|
373
|
+
* tenant_id / project_id are immutable post-create.
|
|
374
|
+
*
|
|
375
|
+
* @generated from field: optional placements.v1.Placement.Target target = 2;
|
|
376
|
+
*/
|
|
377
|
+
target?: Placement_Target;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* @generated from field: optional string model = 3;
|
|
381
|
+
*/
|
|
382
|
+
model?: string;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* @generated from field: optional string field = 4;
|
|
386
|
+
*/
|
|
387
|
+
field?: string;
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: optional string tab = 5;
|
|
391
|
+
*/
|
|
392
|
+
tab?: string;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: optional string title = 6;
|
|
396
|
+
*/
|
|
397
|
+
title?: string;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: optional string url = 7;
|
|
401
|
+
*/
|
|
402
|
+
url?: string;
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* @generated from field: optional bool replaces_default = 8;
|
|
406
|
+
*/
|
|
407
|
+
replacesDefault?: boolean;
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* @generated from field: optional google.protobuf.Struct hints = 9;
|
|
411
|
+
*/
|
|
412
|
+
hints?: JsonObject;
|
|
413
|
+
};
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* Describes the message placements.v1.UpdatePlacementRequest.
|
|
417
|
+
* Use `create(UpdatePlacementRequestSchema)` to create a new message.
|
|
418
|
+
*/
|
|
419
|
+
export declare const UpdatePlacementRequestSchema: GenMessage<UpdatePlacementRequest>;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* @generated from message placements.v1.UpdatePlacementResponse
|
|
423
|
+
*/
|
|
424
|
+
export declare type UpdatePlacementResponse = Message<"placements.v1.UpdatePlacementResponse"> & {
|
|
425
|
+
/**
|
|
426
|
+
* @generated from field: placements.v1.Placement placement = 1;
|
|
427
|
+
*/
|
|
428
|
+
placement?: Placement;
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Describes the message placements.v1.UpdatePlacementResponse.
|
|
433
|
+
* Use `create(UpdatePlacementResponseSchema)` to create a new message.
|
|
434
|
+
*/
|
|
435
|
+
export declare const UpdatePlacementResponseSchema: GenMessage<UpdatePlacementResponse>;
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* @generated from message placements.v1.DeletePlacementRequest
|
|
439
|
+
*/
|
|
440
|
+
export declare type DeletePlacementRequest = Message<"placements.v1.DeletePlacementRequest"> & {
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: string id = 1;
|
|
443
|
+
*/
|
|
444
|
+
id: string;
|
|
445
|
+
};
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Describes the message placements.v1.DeletePlacementRequest.
|
|
449
|
+
* Use `create(DeletePlacementRequestSchema)` to create a new message.
|
|
450
|
+
*/
|
|
451
|
+
export declare const DeletePlacementRequestSchema: GenMessage<DeletePlacementRequest>;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* @generated from message placements.v1.DeletePlacementResponse
|
|
455
|
+
*/
|
|
456
|
+
export declare type DeletePlacementResponse = Message<"placements.v1.DeletePlacementResponse"> & {
|
|
457
|
+
/**
|
|
458
|
+
* @generated from field: bool success = 1;
|
|
459
|
+
*/
|
|
460
|
+
success: boolean;
|
|
461
|
+
};
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Describes the message placements.v1.DeletePlacementResponse.
|
|
465
|
+
* Use `create(DeletePlacementResponseSchema)` to create a new message.
|
|
466
|
+
*/
|
|
467
|
+
export declare const DeletePlacementResponseSchema: GenMessage<DeletePlacementResponse>;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* @generated from service placements.v1.PlacementsService
|
|
471
|
+
*/
|
|
472
|
+
export declare const PlacementsService: GenService<{
|
|
473
|
+
/**
|
|
474
|
+
* @generated from rpc placements.v1.PlacementsService.CreatePlacement
|
|
475
|
+
*/
|
|
476
|
+
createPlacement: {
|
|
477
|
+
methodKind: "unary";
|
|
478
|
+
input: typeof CreatePlacementRequestSchema;
|
|
479
|
+
output: typeof CreatePlacementResponseSchema;
|
|
480
|
+
},
|
|
481
|
+
/**
|
|
482
|
+
* @generated from rpc placements.v1.PlacementsService.GetPlacement
|
|
483
|
+
*/
|
|
484
|
+
getPlacement: {
|
|
485
|
+
methodKind: "unary";
|
|
486
|
+
input: typeof GetPlacementRequestSchema;
|
|
487
|
+
output: typeof GetPlacementResponseSchema;
|
|
488
|
+
},
|
|
489
|
+
/**
|
|
490
|
+
* @generated from rpc placements.v1.PlacementsService.ListPlacements
|
|
491
|
+
*/
|
|
492
|
+
listPlacements: {
|
|
493
|
+
methodKind: "unary";
|
|
494
|
+
input: typeof ListPlacementsRequestSchema;
|
|
495
|
+
output: typeof ListPlacementsResponseSchema;
|
|
496
|
+
},
|
|
497
|
+
/**
|
|
498
|
+
* Cross-app query the field-input renderer uses to find applicable
|
|
499
|
+
* placements for a given (model, target). Rows where placement.model
|
|
500
|
+
* is NULL (FULL_PAGE) are excluded. Wildcard placements (model="*")
|
|
501
|
+
* are returned when the query's model is non-empty.
|
|
502
|
+
*
|
|
503
|
+
* @generated from rpc placements.v1.PlacementsService.ListPlacementsByModel
|
|
504
|
+
*/
|
|
505
|
+
listPlacementsByModel: {
|
|
506
|
+
methodKind: "unary";
|
|
507
|
+
input: typeof ListPlacementsByModelRequestSchema;
|
|
508
|
+
output: typeof ListPlacementsByModelResponseSchema;
|
|
509
|
+
},
|
|
510
|
+
/**
|
|
511
|
+
* @generated from rpc placements.v1.PlacementsService.UpdatePlacement
|
|
512
|
+
*/
|
|
513
|
+
updatePlacement: {
|
|
514
|
+
methodKind: "unary";
|
|
515
|
+
input: typeof UpdatePlacementRequestSchema;
|
|
516
|
+
output: typeof UpdatePlacementResponseSchema;
|
|
517
|
+
},
|
|
518
|
+
/**
|
|
519
|
+
* @generated from rpc placements.v1.PlacementsService.DeletePlacement
|
|
520
|
+
*/
|
|
521
|
+
deletePlacement: {
|
|
522
|
+
methodKind: "unary";
|
|
523
|
+
input: typeof DeletePlacementRequestSchema;
|
|
524
|
+
output: typeof DeletePlacementResponseSchema;
|
|
525
|
+
},
|
|
526
|
+
}>;
|
|
527
|
+
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file placements/v1/placements.proto (package placements.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_buf_validate_validate } from "../../buf/validate/validate_pb.js";
|
|
7
|
+
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file placements/v1/placements.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_placements_v1_placements = /*@__PURE__*/
|
|
13
|
+
fileDesc("Ch5wbGFjZW1lbnRzL3YxL3BsYWNlbWVudHMucHJvdG8SDXBsYWNlbWVudHMudjEiqAQKCVBsYWNlbWVudBIKCgJpZBgBIAEoCRIRCgl0ZW5hbnRfaWQYAiABKAkSEgoKcHJvamVjdF9pZBgDIAEoCRIRCgljb25maWdfaWQYBCABKAkSCwoDa2V5GAUgASgJEi8KBnRhcmdldBgGIAEoDjIfLnBsYWNlbWVudHMudjEuUGxhY2VtZW50LlRhcmdldBISCgVtb2RlbBgHIAEoCUgAiAEBEhIKBWZpZWxkGAggASgJSAGIAQESEAoDdGFiGAkgASgJSAKIAQESDQoFdGl0bGUYCiABKAkSCwoDdXJsGAsgASgJEhgKEHJlcGxhY2VzX2RlZmF1bHQYDCABKAgSKwoFaGludHMYDSABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAOIAQESLgoKY3JlYXRlZF9hdBgOIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgPIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAidAoGVGFyZ2V0EhYKElRBUkdFVF9VTlNQRUNJRklFRBAAEhQKEFRBUkdFVF9GVUxMX1BBR0UQARIWChJUQVJHRVRfTUFJTl9FRElUT1IQAhISCg5UQVJHRVRfU0lERUJBUhADEhAKDFRBUkdFVF9GSUVMRBAEQggKBl9tb2RlbEIICgZfZmllbGRCBgoEX3RhYkIICgZfaGludHMiswMKFkNyZWF0ZVBsYWNlbWVudFJlcXVlc3QSGgoJdGVuYW50X2lkGAEgASgJQge6SARyAhABEhsKCnByb2plY3RfaWQYAiABKAlCB7pIBHICEAESGgoJY29uZmlnX2lkGAMgASgJQge6SARyAhABEjMKA2tleRgEIAEoCUImukgjciEYQDIdXlthLXpdW2EtejAtOV0qKC1bYS16MC05XSspKiQSLwoGdGFyZ2V0GAUgASgOMh8ucGxhY2VtZW50cy52MS5QbGFjZW1lbnQuVGFyZ2V0EhIKBW1vZGVsGAYgASgJSACIAQESEgoFZmllbGQYByABKAlIAYgBARIQCgN0YWIYCCABKAlIAogBARIWCgV0aXRsZRgJIAEoCUIHukgEcgIQARIfCgN1cmwYCiABKAlCErpID3INMgteaHR0cHM6Ly8uKxIYChByZXBsYWNlc19kZWZhdWx0GAsgASgIEisKBWhpbnRzGAwgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdEgDiAEBQggKBl9tb2RlbEIICgZfZmllbGRCBgoEX3RhYkIICgZfaGludHMiRgoXQ3JlYXRlUGxhY2VtZW50UmVzcG9uc2USKwoJcGxhY2VtZW50GAEgASgLMhgucGxhY2VtZW50cy52MS5QbGFjZW1lbnQiIQoTR2V0UGxhY2VtZW50UmVxdWVzdBIKCgJpZBgBIAEoCSJDChRHZXRQbGFjZW1lbnRSZXNwb25zZRIrCglwbGFjZW1lbnQYASABKAsyGC5wbGFjZW1lbnRzLnYxLlBsYWNlbWVudCJkChVMaXN0UGxhY2VtZW50c1JlcXVlc3QSEQoJdGVuYW50X2lkGAEgASgJEhIKCnByb2plY3RfaWQYAiABKAkSFgoJY29uZmlnX2lkGAMgASgJSACIAQFCDAoKX2NvbmZpZ19pZCJGChZMaXN0UGxhY2VtZW50c1Jlc3BvbnNlEiwKCnBsYWNlbWVudHMYASADKAsyGC5wbGFjZW1lbnRzLnYxLlBsYWNlbWVudCKVAQocTGlzdFBsYWNlbWVudHNCeU1vZGVsUmVxdWVzdBIRCgl0ZW5hbnRfaWQYASABKAkSEgoKcHJvamVjdF9pZBgCIAEoCRINCgVtb2RlbBgDIAEoCRI0CgZ0YXJnZXQYBCABKA4yHy5wbGFjZW1lbnRzLnYxLlBsYWNlbWVudC5UYXJnZXRIAIgBAUIJCgdfdGFyZ2V0Ik0KHUxpc3RQbGFjZW1lbnRzQnlNb2RlbFJlc3BvbnNlEiwKCnBsYWNlbWVudHMYASADKAsyGC5wbGFjZW1lbnRzLnYxLlBsYWNlbWVudCLeAgoWVXBkYXRlUGxhY2VtZW50UmVxdWVzdBIKCgJpZBgBIAEoCRI0CgZ0YXJnZXQYAiABKA4yHy5wbGFjZW1lbnRzLnYxLlBsYWNlbWVudC5UYXJnZXRIAIgBARISCgVtb2RlbBgDIAEoCUgBiAEBEhIKBWZpZWxkGAQgASgJSAKIAQESEAoDdGFiGAUgASgJSAOIAQESEgoFdGl0bGUYBiABKAlIBIgBARIQCgN1cmwYByABKAlIBYgBARIdChByZXBsYWNlc19kZWZhdWx0GAggASgISAaIAQESKwoFaGludHMYCSABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0SAeIAQFCCQoHX3RhcmdldEIICgZfbW9kZWxCCAoGX2ZpZWxkQgYKBF90YWJCCAoGX3RpdGxlQgYKBF91cmxCEwoRX3JlcGxhY2VzX2RlZmF1bHRCCAoGX2hpbnRzIkYKF1VwZGF0ZVBsYWNlbWVudFJlc3BvbnNlEisKCXBsYWNlbWVudBgBIAEoCzIYLnBsYWNlbWVudHMudjEuUGxhY2VtZW50IiQKFkRlbGV0ZVBsYWNlbWVudFJlcXVlc3QSCgoCaWQYASABKAkiKgoXRGVsZXRlUGxhY2VtZW50UmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCDLlBAoRUGxhY2VtZW50c1NlcnZpY2USYAoPQ3JlYXRlUGxhY2VtZW50EiUucGxhY2VtZW50cy52MS5DcmVhdGVQbGFjZW1lbnRSZXF1ZXN0GiYucGxhY2VtZW50cy52MS5DcmVhdGVQbGFjZW1lbnRSZXNwb25zZRJXCgxHZXRQbGFjZW1lbnQSIi5wbGFjZW1lbnRzLnYxLkdldFBsYWNlbWVudFJlcXVlc3QaIy5wbGFjZW1lbnRzLnYxLkdldFBsYWNlbWVudFJlc3BvbnNlEl0KDkxpc3RQbGFjZW1lbnRzEiQucGxhY2VtZW50cy52MS5MaXN0UGxhY2VtZW50c1JlcXVlc3QaJS5wbGFjZW1lbnRzLnYxLkxpc3RQbGFjZW1lbnRzUmVzcG9uc2UScgoVTGlzdFBsYWNlbWVudHNCeU1vZGVsEisucGxhY2VtZW50cy52MS5MaXN0UGxhY2VtZW50c0J5TW9kZWxSZXF1ZXN0GiwucGxhY2VtZW50cy52MS5MaXN0UGxhY2VtZW50c0J5TW9kZWxSZXNwb25zZRJgCg9VcGRhdGVQbGFjZW1lbnQSJS5wbGFjZW1lbnRzLnYxLlVwZGF0ZVBsYWNlbWVudFJlcXVlc3QaJi5wbGFjZW1lbnRzLnYxLlVwZGF0ZVBsYWNlbWVudFJlc3BvbnNlEmAKD0RlbGV0ZVBsYWNlbWVudBIlLnBsYWNlbWVudHMudjEuRGVsZXRlUGxhY2VtZW50UmVxdWVzdBomLnBsYWNlbWVudHMudjEuRGVsZXRlUGxhY2VtZW50UmVzcG9uc2VCQVo/Z2l0aHViLmNvbS9laWRlc3R1ZGlvL2ZvaXIvZ2VuL3Byb3RvL3BsYWNlbWVudHMvdjE7cGxhY2VtZW50c3YxYgZwcm90bzM", [file_buf_validate_validate, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message placements.v1.Placement.
|
|
17
|
+
* Use `create(PlacementSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const PlacementSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_placements_v1_placements, 0);
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Describes the enum placements.v1.Placement.Target.
|
|
24
|
+
*/
|
|
25
|
+
export const Placement_TargetSchema = /*@__PURE__*/
|
|
26
|
+
enumDesc(file_placements_v1_placements, 0, 0);
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from enum placements.v1.Placement.Target
|
|
30
|
+
*/
|
|
31
|
+
export const Placement_Target = /*@__PURE__*/
|
|
32
|
+
tsEnum(Placement_TargetSchema);
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message placements.v1.CreatePlacementRequest.
|
|
36
|
+
* Use `create(CreatePlacementRequestSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const CreatePlacementRequestSchema = /*@__PURE__*/
|
|
39
|
+
messageDesc(file_placements_v1_placements, 1);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message placements.v1.CreatePlacementResponse.
|
|
43
|
+
* Use `create(CreatePlacementResponseSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export const CreatePlacementResponseSchema = /*@__PURE__*/
|
|
46
|
+
messageDesc(file_placements_v1_placements, 2);
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message placements.v1.GetPlacementRequest.
|
|
50
|
+
* Use `create(GetPlacementRequestSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export const GetPlacementRequestSchema = /*@__PURE__*/
|
|
53
|
+
messageDesc(file_placements_v1_placements, 3);
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Describes the message placements.v1.GetPlacementResponse.
|
|
57
|
+
* Use `create(GetPlacementResponseSchema)` to create a new message.
|
|
58
|
+
*/
|
|
59
|
+
export const GetPlacementResponseSchema = /*@__PURE__*/
|
|
60
|
+
messageDesc(file_placements_v1_placements, 4);
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Describes the message placements.v1.ListPlacementsRequest.
|
|
64
|
+
* Use `create(ListPlacementsRequestSchema)` to create a new message.
|
|
65
|
+
*/
|
|
66
|
+
export const ListPlacementsRequestSchema = /*@__PURE__*/
|
|
67
|
+
messageDesc(file_placements_v1_placements, 5);
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message placements.v1.ListPlacementsResponse.
|
|
71
|
+
* Use `create(ListPlacementsResponseSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export const ListPlacementsResponseSchema = /*@__PURE__*/
|
|
74
|
+
messageDesc(file_placements_v1_placements, 6);
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Describes the message placements.v1.ListPlacementsByModelRequest.
|
|
78
|
+
* Use `create(ListPlacementsByModelRequestSchema)` to create a new message.
|
|
79
|
+
*/
|
|
80
|
+
export const ListPlacementsByModelRequestSchema = /*@__PURE__*/
|
|
81
|
+
messageDesc(file_placements_v1_placements, 7);
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message placements.v1.ListPlacementsByModelResponse.
|
|
85
|
+
* Use `create(ListPlacementsByModelResponseSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export const ListPlacementsByModelResponseSchema = /*@__PURE__*/
|
|
88
|
+
messageDesc(file_placements_v1_placements, 8);
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Describes the message placements.v1.UpdatePlacementRequest.
|
|
92
|
+
* Use `create(UpdatePlacementRequestSchema)` to create a new message.
|
|
93
|
+
*/
|
|
94
|
+
export const UpdatePlacementRequestSchema = /*@__PURE__*/
|
|
95
|
+
messageDesc(file_placements_v1_placements, 9);
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Describes the message placements.v1.UpdatePlacementResponse.
|
|
99
|
+
* Use `create(UpdatePlacementResponseSchema)` to create a new message.
|
|
100
|
+
*/
|
|
101
|
+
export const UpdatePlacementResponseSchema = /*@__PURE__*/
|
|
102
|
+
messageDesc(file_placements_v1_placements, 10);
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Describes the message placements.v1.DeletePlacementRequest.
|
|
106
|
+
* Use `create(DeletePlacementRequestSchema)` to create a new message.
|
|
107
|
+
*/
|
|
108
|
+
export const DeletePlacementRequestSchema = /*@__PURE__*/
|
|
109
|
+
messageDesc(file_placements_v1_placements, 11);
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Describes the message placements.v1.DeletePlacementResponse.
|
|
113
|
+
* Use `create(DeletePlacementResponseSchema)` to create a new message.
|
|
114
|
+
*/
|
|
115
|
+
export const DeletePlacementResponseSchema = /*@__PURE__*/
|
|
116
|
+
messageDesc(file_placements_v1_placements, 12);
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @generated from service placements.v1.PlacementsService
|
|
120
|
+
*/
|
|
121
|
+
export const PlacementsService = /*@__PURE__*/
|
|
122
|
+
serviceDesc(file_placements_v1_placements, 0);
|
|
123
|
+
|