@eide/foir-proto-ts 0.27.0 → 0.29.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 +1 -1
- package/src/analytics/v1/analytics_pb.d.ts +31 -31
- package/src/analytics/v1/analytics_pb.js +1 -1
- package/src/apps/v1/apps_pb.d.ts +26 -26
- package/src/apps/v1/apps_pb.js +1 -1
- package/src/apps/v1/apps_service_pb.d.ts +38 -38
- package/src/apps/v1/apps_service_pb.js +1 -1
- package/src/billing/v1/billing_pb.d.ts +102 -102
- package/src/billing/v1/billing_pb.js +1 -1
- package/src/buf/validate/validate_pb.d.ts +10 -10
- package/src/buf/validate/validate_pb.js +1 -1
- package/src/configs/v1/configs_pb.d.ts +51 -51
- package/src/configs/v1/configs_pb.js +1 -1
- package/src/email/v1/email_pb.d.ts +24 -24
- package/src/email/v1/email_pb.js +1 -1
- package/src/experiments/v1/experiments_pb.d.ts +50 -50
- package/src/experiments/v1/experiments_pb.js +1 -1
- package/src/expressions/v1/expressions_pb.d.ts +11 -11
- package/src/expressions/v1/expressions_pb.js +1 -1
- package/src/hooks/v1/hooks_pb.d.ts +36 -36
- package/src/hooks/v1/hooks_pb.js +1 -1
- package/src/identity/v1/identity_pb.d.ts +196 -196
- package/src/identity/v1/identity_pb.js +1 -1
- package/src/models/v1/models_connect.d.ts +32 -1
- package/src/models/v1/models_connect.js +32 -1
- package/src/models/v1/models_pb.d.ts +265 -52
- package/src/models/v1/models_pb.js +58 -2
- package/src/notifications/v1/notifications_pb.d.ts +40 -40
- package/src/notifications/v1/notifications_pb.js +1 -1
- package/src/operations/v1/operations_connect.d.ts +37 -1
- package/src/operations/v1/operations_connect.js +37 -1
- package/src/operations/v1/operations_pb.d.ts +304 -114
- package/src/operations/v1/operations_pb.js +87 -31
- package/src/placements/v1/placements_pb.d.ts +24 -24
- package/src/placements/v1/placements_pb.js +1 -1
- package/src/queue/v1/queue_pb.d.ts +17 -17
- package/src/queue/v1/queue_pb.js +1 -1
- package/src/records/v1/records_pb.d.ts +136 -136
- package/src/records/v1/records_pb.js +1 -1
- package/src/schedules/v1/schedules_pb.d.ts +64 -64
- package/src/schedules/v1/schedules_pb.js +1 -1
- package/src/segments/v1/segments_pb.d.ts +35 -35
- package/src/segments/v1/segments_pb.js +1 -1
- package/src/settings/v1/settings_pb.d.ts +190 -190
- package/src/settings/v1/settings_pb.js +1 -1
- package/src/storage/v1/storage_pb.d.ts +41 -41
- package/src/storage/v1/storage_pb.js +1 -1
- package/src/workers/v1/workers_pb.d.ts +1 -1
- package/src/workers/v1/workers_pb.js +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
|
|
2
2
|
// @generated from file records/v1/records.proto (package records.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
@@ -33,12 +33,12 @@ export declare type Record = Message<"records.v1.Record"> & {
|
|
|
33
33
|
/**
|
|
34
34
|
* @generated from field: optional string natural_key = 3;
|
|
35
35
|
*/
|
|
36
|
-
naturalKey?: string;
|
|
36
|
+
naturalKey?: string | undefined;
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
* @generated from field: optional string parent_id = 4;
|
|
40
40
|
*/
|
|
41
|
-
parentId?: string;
|
|
41
|
+
parentId?: string | undefined;
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
44
|
* @generated from field: records.v1.RecordType record_type = 5;
|
|
@@ -48,17 +48,17 @@ export declare type Record = Message<"records.v1.Record"> & {
|
|
|
48
48
|
/**
|
|
49
49
|
* @generated from field: google.protobuf.Struct data = 6;
|
|
50
50
|
*/
|
|
51
|
-
data?: JsonObject;
|
|
51
|
+
data?: JsonObject | undefined;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
54
|
* @generated from field: optional google.protobuf.Struct metadata = 7;
|
|
55
55
|
*/
|
|
56
|
-
metadata?: JsonObject;
|
|
56
|
+
metadata?: JsonObject | undefined;
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* @generated from field: optional string customer_id = 8;
|
|
60
60
|
*/
|
|
61
|
-
customerId?: string;
|
|
61
|
+
customerId?: string | undefined;
|
|
62
62
|
|
|
63
63
|
/**
|
|
64
64
|
* Ownership.
|
|
@@ -77,95 +77,95 @@ export declare type Record = Message<"records.v1.Record"> & {
|
|
|
77
77
|
*
|
|
78
78
|
* @generated from field: optional string created_by = 20;
|
|
79
79
|
*/
|
|
80
|
-
createdBy?: string;
|
|
80
|
+
createdBy?: string | undefined;
|
|
81
81
|
|
|
82
82
|
/**
|
|
83
83
|
* @generated from field: optional string updated_by = 21;
|
|
84
84
|
*/
|
|
85
|
-
updatedBy?: string;
|
|
85
|
+
updatedBy?: string | undefined;
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
88
|
* Timestamps.
|
|
89
89
|
*
|
|
90
90
|
* @generated from field: google.protobuf.Timestamp created_at = 30;
|
|
91
91
|
*/
|
|
92
|
-
createdAt?: Timestamp;
|
|
92
|
+
createdAt?: Timestamp | undefined;
|
|
93
93
|
|
|
94
94
|
/**
|
|
95
95
|
* @generated from field: google.protobuf.Timestamp updated_at = 31;
|
|
96
96
|
*/
|
|
97
|
-
updatedAt?: Timestamp;
|
|
97
|
+
updatedAt?: Timestamp | undefined;
|
|
98
98
|
|
|
99
99
|
/**
|
|
100
100
|
* --- Version metadata (populated when record_type = VERSION) ---
|
|
101
101
|
*
|
|
102
102
|
* @generated from field: optional int32 version_number = 40;
|
|
103
103
|
*/
|
|
104
|
-
versionNumber?: number;
|
|
104
|
+
versionNumber?: number | undefined;
|
|
105
105
|
|
|
106
106
|
/**
|
|
107
107
|
* @generated from field: optional string content_hash = 41;
|
|
108
108
|
*/
|
|
109
|
-
contentHash?: string;
|
|
109
|
+
contentHash?: string | undefined;
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
112
|
* @generated from field: optional string change_description = 42;
|
|
113
113
|
*/
|
|
114
|
-
changeDescription?: string;
|
|
114
|
+
changeDescription?: string | undefined;
|
|
115
115
|
|
|
116
116
|
/**
|
|
117
117
|
* "draft" | "published" | "scheduled"
|
|
118
118
|
*
|
|
119
119
|
* @generated from field: optional string publish_status = 43;
|
|
120
120
|
*/
|
|
121
|
-
publishStatus?: string;
|
|
121
|
+
publishStatus?: string | undefined;
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
124
|
* @generated from field: optional google.protobuf.Timestamp scheduled_publish_at = 44;
|
|
125
125
|
*/
|
|
126
|
-
scheduledPublishAt?: Timestamp;
|
|
126
|
+
scheduledPublishAt?: Timestamp | undefined;
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* @generated from field: optional google.protobuf.Timestamp scheduled_unpublish_at = 45;
|
|
130
130
|
*/
|
|
131
|
-
scheduledUnpublishAt?: Timestamp;
|
|
131
|
+
scheduledUnpublishAt?: Timestamp | undefined;
|
|
132
132
|
|
|
133
133
|
/**
|
|
134
134
|
* --- Variant metadata (populated when record_type = VARIANT) ---
|
|
135
135
|
*
|
|
136
136
|
* @generated from field: optional string variant_key = 50;
|
|
137
137
|
*/
|
|
138
|
-
variantKey?: string;
|
|
138
|
+
variantKey?: string | undefined;
|
|
139
139
|
|
|
140
140
|
/**
|
|
141
141
|
* @generated from field: optional string variant_name = 51;
|
|
142
142
|
*/
|
|
143
|
-
variantName?: string;
|
|
143
|
+
variantName?: string | undefined;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
146
|
* @generated from field: optional string variant_description = 52;
|
|
147
147
|
*/
|
|
148
|
-
variantDescription?: string;
|
|
148
|
+
variantDescription?: string | undefined;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
151
|
* @generated from field: optional string catalog_id = 53;
|
|
152
152
|
*/
|
|
153
|
-
catalogId?: string;
|
|
153
|
+
catalogId?: string | undefined;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* @generated from field: optional int32 priority = 54;
|
|
157
157
|
*/
|
|
158
|
-
priority?: number;
|
|
158
|
+
priority?: number | undefined;
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
161
|
* @generated from field: optional expressions.v1.RuleExpression targeting_rules = 55;
|
|
162
162
|
*/
|
|
163
|
-
targetingRules?: RuleExpression;
|
|
163
|
+
targetingRules?: RuleExpression | undefined;
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
166
|
* @generated from field: optional bool is_default = 56;
|
|
167
167
|
*/
|
|
168
|
-
isDefault?: boolean;
|
|
168
|
+
isDefault?: boolean | undefined;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
171
|
* --- Computed version state (populated on RECORD and VARIANT types) ---
|
|
@@ -173,27 +173,27 @@ export declare type Record = Message<"records.v1.Record"> & {
|
|
|
173
173
|
*
|
|
174
174
|
* @generated from field: optional string current_version_id = 60;
|
|
175
175
|
*/
|
|
176
|
-
currentVersionId?: string;
|
|
176
|
+
currentVersionId?: string | undefined;
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
179
|
* @generated from field: optional string published_version_id = 61;
|
|
180
180
|
*/
|
|
181
|
-
publishedVersionId?: string;
|
|
181
|
+
publishedVersionId?: string | undefined;
|
|
182
182
|
|
|
183
183
|
/**
|
|
184
184
|
* @generated from field: optional int32 published_version_number = 62;
|
|
185
185
|
*/
|
|
186
|
-
publishedVersionNumber?: number;
|
|
186
|
+
publishedVersionNumber?: number | undefined;
|
|
187
187
|
|
|
188
188
|
/**
|
|
189
189
|
* @generated from field: optional google.protobuf.Timestamp published_at = 63;
|
|
190
190
|
*/
|
|
191
|
-
publishedAt?: Timestamp;
|
|
191
|
+
publishedAt?: Timestamp | undefined;
|
|
192
192
|
|
|
193
193
|
/**
|
|
194
194
|
* @generated from field: optional string published_by = 64;
|
|
195
195
|
*/
|
|
196
|
-
publishedBy?: string;
|
|
196
|
+
publishedBy?: string | undefined;
|
|
197
197
|
|
|
198
198
|
/**
|
|
199
199
|
* @generated from field: bool can_publish = 65;
|
|
@@ -216,7 +216,7 @@ export declare type Record = Message<"records.v1.Record"> & {
|
|
|
216
216
|
*
|
|
217
217
|
* @generated from field: optional string model_version_id = 70;
|
|
218
218
|
*/
|
|
219
|
-
modelVersionId?: string;
|
|
219
|
+
modelVersionId?: string | undefined;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
222
|
/**
|
|
@@ -237,22 +237,22 @@ export declare type PublishSchedule = Message<"records.v1.PublishSchedule"> & {
|
|
|
237
237
|
/**
|
|
238
238
|
* @generated from field: google.protobuf.Timestamp publish_at = 2;
|
|
239
239
|
*/
|
|
240
|
-
publishAt?: Timestamp;
|
|
240
|
+
publishAt?: Timestamp | undefined;
|
|
241
241
|
|
|
242
242
|
/**
|
|
243
243
|
* @generated from field: optional google.protobuf.Timestamp unpublish_at = 3;
|
|
244
244
|
*/
|
|
245
|
-
unpublishAt?: Timestamp;
|
|
245
|
+
unpublishAt?: Timestamp | undefined;
|
|
246
246
|
|
|
247
247
|
/**
|
|
248
248
|
* @generated from field: google.protobuf.Timestamp created_at = 4;
|
|
249
249
|
*/
|
|
250
|
-
createdAt?: Timestamp;
|
|
250
|
+
createdAt?: Timestamp | undefined;
|
|
251
251
|
|
|
252
252
|
/**
|
|
253
253
|
* @generated from field: optional string created_by = 5;
|
|
254
254
|
*/
|
|
255
|
-
createdBy?: string;
|
|
255
|
+
createdBy?: string | undefined;
|
|
256
256
|
};
|
|
257
257
|
|
|
258
258
|
/**
|
|
@@ -283,12 +283,12 @@ export declare type PublishBatch = Message<"records.v1.PublishBatch"> & {
|
|
|
283
283
|
/**
|
|
284
284
|
* @generated from field: optional google.protobuf.Timestamp scheduled_at = 4;
|
|
285
285
|
*/
|
|
286
|
-
scheduledAt?: Timestamp;
|
|
286
|
+
scheduledAt?: Timestamp | undefined;
|
|
287
287
|
|
|
288
288
|
/**
|
|
289
289
|
* @generated from field: optional google.protobuf.Timestamp executed_at = 5;
|
|
290
290
|
*/
|
|
291
|
-
executedAt?: Timestamp;
|
|
291
|
+
executedAt?: Timestamp | undefined;
|
|
292
292
|
|
|
293
293
|
/**
|
|
294
294
|
* @generated from field: int32 items_count = 6;
|
|
@@ -308,12 +308,12 @@ export declare type PublishBatch = Message<"records.v1.PublishBatch"> & {
|
|
|
308
308
|
/**
|
|
309
309
|
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
310
310
|
*/
|
|
311
|
-
createdAt?: Timestamp;
|
|
311
|
+
createdAt?: Timestamp | undefined;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* @generated from field: optional string created_by = 10;
|
|
315
315
|
*/
|
|
316
|
-
createdBy?: string;
|
|
316
|
+
createdBy?: string | undefined;
|
|
317
317
|
|
|
318
318
|
/**
|
|
319
319
|
* Additional fields from DB.
|
|
@@ -330,7 +330,7 @@ export declare type PublishBatch = Message<"records.v1.PublishBatch"> & {
|
|
|
330
330
|
/**
|
|
331
331
|
* @generated from field: google.protobuf.Timestamp updated_at = 13;
|
|
332
332
|
*/
|
|
333
|
-
updatedAt?: Timestamp;
|
|
333
|
+
updatedAt?: Timestamp | undefined;
|
|
334
334
|
};
|
|
335
335
|
|
|
336
336
|
/**
|
|
@@ -356,7 +356,7 @@ export declare type RecordFilter = Message<"records.v1.RecordFilter"> & {
|
|
|
356
356
|
/**
|
|
357
357
|
* @generated from field: google.protobuf.Value value = 3;
|
|
358
358
|
*/
|
|
359
|
-
value?: Value;
|
|
359
|
+
value?: Value | undefined;
|
|
360
360
|
};
|
|
361
361
|
|
|
362
362
|
/**
|
|
@@ -405,27 +405,27 @@ export declare type BatchOperation = Message<"records.v1.BatchOperation"> & {
|
|
|
405
405
|
*
|
|
406
406
|
* @generated from field: optional string id = 2;
|
|
407
407
|
*/
|
|
408
|
-
id?: string;
|
|
408
|
+
id?: string | undefined;
|
|
409
409
|
|
|
410
410
|
/**
|
|
411
411
|
* @generated from field: optional string model_key = 3;
|
|
412
412
|
*/
|
|
413
|
-
modelKey?: string;
|
|
413
|
+
modelKey?: string | undefined;
|
|
414
414
|
|
|
415
415
|
/**
|
|
416
416
|
* @generated from field: optional string natural_key = 4;
|
|
417
417
|
*/
|
|
418
|
-
naturalKey?: string;
|
|
418
|
+
naturalKey?: string | undefined;
|
|
419
419
|
|
|
420
420
|
/**
|
|
421
421
|
* @generated from field: optional google.protobuf.Struct data = 5;
|
|
422
422
|
*/
|
|
423
|
-
data?: JsonObject;
|
|
423
|
+
data?: JsonObject | undefined;
|
|
424
424
|
|
|
425
425
|
/**
|
|
426
426
|
* @generated from field: optional string customer_id = 6;
|
|
427
427
|
*/
|
|
428
|
-
customerId?: string;
|
|
428
|
+
customerId?: string | undefined;
|
|
429
429
|
};
|
|
430
430
|
|
|
431
431
|
/**
|
|
@@ -451,12 +451,12 @@ export declare type BatchOperationResult = Message<"records.v1.BatchOperationRes
|
|
|
451
451
|
/**
|
|
452
452
|
* @generated from field: optional records.v1.Record record = 3;
|
|
453
453
|
*/
|
|
454
|
-
record?: Record;
|
|
454
|
+
record?: Record | undefined;
|
|
455
455
|
|
|
456
456
|
/**
|
|
457
457
|
* @generated from field: optional string error = 4;
|
|
458
458
|
*/
|
|
459
|
-
error?: string;
|
|
459
|
+
error?: string | undefined;
|
|
460
460
|
};
|
|
461
461
|
|
|
462
462
|
/**
|
|
@@ -477,31 +477,31 @@ export declare type CreateRecordRequest = Message<"records.v1.CreateRecordReques
|
|
|
477
477
|
/**
|
|
478
478
|
* @generated from field: optional string natural_key = 2;
|
|
479
479
|
*/
|
|
480
|
-
naturalKey?: string;
|
|
480
|
+
naturalKey?: string | undefined;
|
|
481
481
|
|
|
482
482
|
/**
|
|
483
483
|
* @generated from field: google.protobuf.Struct data = 3;
|
|
484
484
|
*/
|
|
485
|
-
data?: JsonObject;
|
|
485
|
+
data?: JsonObject | undefined;
|
|
486
486
|
|
|
487
487
|
/**
|
|
488
488
|
* @generated from field: optional string customer_id = 4;
|
|
489
489
|
*/
|
|
490
|
-
customerId?: string;
|
|
490
|
+
customerId?: string | undefined;
|
|
491
491
|
|
|
492
492
|
/**
|
|
493
493
|
* Display metadata (name, description, etc.)
|
|
494
494
|
*
|
|
495
495
|
* @generated from field: optional google.protobuf.Struct metadata = 5;
|
|
496
496
|
*/
|
|
497
|
-
metadata?: JsonObject;
|
|
497
|
+
metadata?: JsonObject | undefined;
|
|
498
498
|
|
|
499
499
|
/**
|
|
500
500
|
* Description for the initial version.
|
|
501
501
|
*
|
|
502
502
|
* @generated from field: optional string change_description = 6;
|
|
503
503
|
*/
|
|
504
|
-
changeDescription?: string;
|
|
504
|
+
changeDescription?: string | undefined;
|
|
505
505
|
};
|
|
506
506
|
|
|
507
507
|
/**
|
|
@@ -517,21 +517,21 @@ export declare type CreateRecordResponse = Message<"records.v1.CreateRecordRespo
|
|
|
517
517
|
/**
|
|
518
518
|
* @generated from field: records.v1.Record record = 1;
|
|
519
519
|
*/
|
|
520
|
-
record?: Record;
|
|
520
|
+
record?: Record | undefined;
|
|
521
521
|
|
|
522
522
|
/**
|
|
523
523
|
* Default variant (if model has variants).
|
|
524
524
|
*
|
|
525
525
|
* @generated from field: optional records.v1.Record variant = 2;
|
|
526
526
|
*/
|
|
527
|
-
variant?: Record;
|
|
527
|
+
variant?: Record | undefined;
|
|
528
528
|
|
|
529
529
|
/**
|
|
530
530
|
* Initial version (if model is versioned).
|
|
531
531
|
*
|
|
532
532
|
* @generated from field: optional records.v1.Record version = 3;
|
|
533
533
|
*/
|
|
534
|
-
version?: Record;
|
|
534
|
+
version?: Record | undefined;
|
|
535
535
|
};
|
|
536
536
|
|
|
537
537
|
/**
|
|
@@ -563,7 +563,7 @@ export declare type GetRecordResponse = Message<"records.v1.GetRecordResponse">
|
|
|
563
563
|
/**
|
|
564
564
|
* @generated from field: records.v1.Record record = 1;
|
|
565
565
|
*/
|
|
566
|
-
record?: Record;
|
|
566
|
+
record?: Record | undefined;
|
|
567
567
|
};
|
|
568
568
|
|
|
569
569
|
/**
|
|
@@ -600,7 +600,7 @@ export declare type GetRecordByKeyResponse = Message<"records.v1.GetRecordByKeyR
|
|
|
600
600
|
/**
|
|
601
601
|
* @generated from field: records.v1.Record record = 1;
|
|
602
602
|
*/
|
|
603
|
-
record?: Record;
|
|
603
|
+
record?: Record | undefined;
|
|
604
604
|
};
|
|
605
605
|
|
|
606
606
|
/**
|
|
@@ -639,7 +639,7 @@ export declare type GetRecordByKeyOrIdResponse = Message<"records.v1.GetRecordBy
|
|
|
639
639
|
/**
|
|
640
640
|
* @generated from field: records.v1.Record record = 1;
|
|
641
641
|
*/
|
|
642
|
-
record?: Record;
|
|
642
|
+
record?: Record | undefined;
|
|
643
643
|
};
|
|
644
644
|
|
|
645
645
|
/**
|
|
@@ -680,12 +680,12 @@ export declare type ListRecordsRequest = Message<"records.v1.ListRecordsRequest"
|
|
|
680
680
|
/**
|
|
681
681
|
* @generated from field: optional string customer_id = 6;
|
|
682
682
|
*/
|
|
683
|
-
customerId?: string;
|
|
683
|
+
customerId?: string | undefined;
|
|
684
684
|
|
|
685
685
|
/**
|
|
686
686
|
* @generated from field: optional string search = 7;
|
|
687
687
|
*/
|
|
688
|
-
search?: string;
|
|
688
|
+
search?: string | undefined;
|
|
689
689
|
};
|
|
690
690
|
|
|
691
691
|
/**
|
|
@@ -727,12 +727,12 @@ export declare type UpdateRecordRequest = Message<"records.v1.UpdateRecordReques
|
|
|
727
727
|
/**
|
|
728
728
|
* @generated from field: google.protobuf.Struct data = 2;
|
|
729
729
|
*/
|
|
730
|
-
data?: JsonObject;
|
|
730
|
+
data?: JsonObject | undefined;
|
|
731
731
|
|
|
732
732
|
/**
|
|
733
733
|
* @generated from field: optional string natural_key = 3;
|
|
734
734
|
*/
|
|
735
|
-
naturalKey?: string;
|
|
735
|
+
naturalKey?: string | undefined;
|
|
736
736
|
};
|
|
737
737
|
|
|
738
738
|
/**
|
|
@@ -748,7 +748,7 @@ export declare type UpdateRecordResponse = Message<"records.v1.UpdateRecordRespo
|
|
|
748
748
|
/**
|
|
749
749
|
* @generated from field: records.v1.Record record = 1;
|
|
750
750
|
*/
|
|
751
|
-
record?: Record;
|
|
751
|
+
record?: Record | undefined;
|
|
752
752
|
};
|
|
753
753
|
|
|
754
754
|
/**
|
|
@@ -824,7 +824,7 @@ export declare type UpsertRecordRequest = Message<"records.v1.UpsertRecordReques
|
|
|
824
824
|
/**
|
|
825
825
|
* @generated from field: google.protobuf.Struct data = 5;
|
|
826
826
|
*/
|
|
827
|
-
data?: JsonObject;
|
|
827
|
+
data?: JsonObject | undefined;
|
|
828
828
|
|
|
829
829
|
/**
|
|
830
830
|
* @generated from field: string change_description = 6;
|
|
@@ -845,7 +845,7 @@ export declare type UpsertRecordResponse = Message<"records.v1.UpsertRecordRespo
|
|
|
845
845
|
/**
|
|
846
846
|
* @generated from field: records.v1.Record record = 1;
|
|
847
847
|
*/
|
|
848
|
-
record?: Record;
|
|
848
|
+
record?: Record | undefined;
|
|
849
849
|
|
|
850
850
|
/**
|
|
851
851
|
* true if a new row was inserted, false if an existing row was updated.
|
|
@@ -910,7 +910,7 @@ export declare type BulkUpdateRecordsRequest = Message<"records.v1.BulkUpdateRec
|
|
|
910
910
|
/**
|
|
911
911
|
* @generated from field: google.protobuf.Struct data = 3;
|
|
912
912
|
*/
|
|
913
|
-
data?: JsonObject;
|
|
913
|
+
data?: JsonObject | undefined;
|
|
914
914
|
};
|
|
915
915
|
|
|
916
916
|
/**
|
|
@@ -947,7 +947,7 @@ export declare type DuplicateRecordRequest = Message<"records.v1.DuplicateRecord
|
|
|
947
947
|
/**
|
|
948
948
|
* @generated from field: optional string new_natural_key = 2;
|
|
949
949
|
*/
|
|
950
|
-
newNaturalKey?: string;
|
|
950
|
+
newNaturalKey?: string | undefined;
|
|
951
951
|
};
|
|
952
952
|
|
|
953
953
|
/**
|
|
@@ -963,7 +963,7 @@ export declare type DuplicateRecordResponse = Message<"records.v1.DuplicateRecor
|
|
|
963
963
|
/**
|
|
964
964
|
* @generated from field: records.v1.Record record = 1;
|
|
965
965
|
*/
|
|
966
|
-
record?: Record;
|
|
966
|
+
record?: Record | undefined;
|
|
967
967
|
};
|
|
968
968
|
|
|
969
969
|
/**
|
|
@@ -984,7 +984,7 @@ export declare type DuplicateRecordsBulkRequest = Message<"records.v1.DuplicateR
|
|
|
984
984
|
/**
|
|
985
985
|
* @generated from field: optional string model_key = 2;
|
|
986
986
|
*/
|
|
987
|
-
modelKey?: string;
|
|
987
|
+
modelKey?: string | undefined;
|
|
988
988
|
};
|
|
989
989
|
|
|
990
990
|
/**
|
|
@@ -1021,12 +1021,12 @@ export declare type CreateVersionRequest = Message<"records.v1.CreateVersionRequ
|
|
|
1021
1021
|
/**
|
|
1022
1022
|
* @generated from field: google.protobuf.Struct data = 2;
|
|
1023
1023
|
*/
|
|
1024
|
-
data?: JsonObject;
|
|
1024
|
+
data?: JsonObject | undefined;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @generated from field: optional string change_description = 3;
|
|
1028
1028
|
*/
|
|
1029
|
-
changeDescription?: string;
|
|
1029
|
+
changeDescription?: string | undefined;
|
|
1030
1030
|
};
|
|
1031
1031
|
|
|
1032
1032
|
/**
|
|
@@ -1042,7 +1042,7 @@ export declare type CreateVersionResponse = Message<"records.v1.CreateVersionRes
|
|
|
1042
1042
|
/**
|
|
1043
1043
|
* @generated from field: records.v1.Record version = 1;
|
|
1044
1044
|
*/
|
|
1045
|
-
version?: Record;
|
|
1045
|
+
version?: Record | undefined;
|
|
1046
1046
|
};
|
|
1047
1047
|
|
|
1048
1048
|
/**
|
|
@@ -1074,7 +1074,7 @@ export declare type PublishVersionResponse = Message<"records.v1.PublishVersionR
|
|
|
1074
1074
|
/**
|
|
1075
1075
|
* @generated from field: records.v1.Record record = 1;
|
|
1076
1076
|
*/
|
|
1077
|
-
record?: Record;
|
|
1077
|
+
record?: Record | undefined;
|
|
1078
1078
|
};
|
|
1079
1079
|
|
|
1080
1080
|
/**
|
|
@@ -1138,7 +1138,7 @@ export declare type RevertToVersionResponse = Message<"records.v1.RevertToVersio
|
|
|
1138
1138
|
/**
|
|
1139
1139
|
* @generated from field: records.v1.Record record = 1;
|
|
1140
1140
|
*/
|
|
1141
|
-
record?: Record;
|
|
1141
|
+
record?: Record | undefined;
|
|
1142
1142
|
};
|
|
1143
1143
|
|
|
1144
1144
|
/**
|
|
@@ -1211,7 +1211,7 @@ export declare type CreateVariantRequest = Message<"records.v1.CreateVariantRequ
|
|
|
1211
1211
|
/**
|
|
1212
1212
|
* @generated from field: google.protobuf.Struct data = 3;
|
|
1213
1213
|
*/
|
|
1214
|
-
data?: JsonObject;
|
|
1214
|
+
data?: JsonObject | undefined;
|
|
1215
1215
|
};
|
|
1216
1216
|
|
|
1217
1217
|
/**
|
|
@@ -1227,7 +1227,7 @@ export declare type CreateVariantResponse = Message<"records.v1.CreateVariantRes
|
|
|
1227
1227
|
/**
|
|
1228
1228
|
* @generated from field: records.v1.Record variant = 1;
|
|
1229
1229
|
*/
|
|
1230
|
-
variant?: Record;
|
|
1230
|
+
variant?: Record | undefined;
|
|
1231
1231
|
};
|
|
1232
1232
|
|
|
1233
1233
|
/**
|
|
@@ -1248,7 +1248,7 @@ export declare type UpdateVariantRequest = Message<"records.v1.UpdateVariantRequ
|
|
|
1248
1248
|
/**
|
|
1249
1249
|
* @generated from field: google.protobuf.Struct data = 2;
|
|
1250
1250
|
*/
|
|
1251
|
-
data?: JsonObject;
|
|
1251
|
+
data?: JsonObject | undefined;
|
|
1252
1252
|
};
|
|
1253
1253
|
|
|
1254
1254
|
/**
|
|
@@ -1264,7 +1264,7 @@ export declare type UpdateVariantResponse = Message<"records.v1.UpdateVariantRes
|
|
|
1264
1264
|
/**
|
|
1265
1265
|
* @generated from field: records.v1.Record variant = 1;
|
|
1266
1266
|
*/
|
|
1267
|
-
variant?: Record;
|
|
1267
|
+
variant?: Record | undefined;
|
|
1268
1268
|
};
|
|
1269
1269
|
|
|
1270
1270
|
/**
|
|
@@ -1333,7 +1333,7 @@ export declare type SetDefaultVariantResponse = Message<"records.v1.SetDefaultVa
|
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @generated from field: records.v1.Record record = 1;
|
|
1335
1335
|
*/
|
|
1336
|
-
record?: Record;
|
|
1336
|
+
record?: Record | undefined;
|
|
1337
1337
|
};
|
|
1338
1338
|
|
|
1339
1339
|
/**
|
|
@@ -1401,17 +1401,17 @@ export declare type SaveContentRequest = Message<"records.v1.SaveContentRequest"
|
|
|
1401
1401
|
/**
|
|
1402
1402
|
* @generated from field: google.protobuf.Struct data = 2;
|
|
1403
1403
|
*/
|
|
1404
|
-
data?: JsonObject;
|
|
1404
|
+
data?: JsonObject | undefined;
|
|
1405
1405
|
|
|
1406
1406
|
/**
|
|
1407
1407
|
* @generated from field: optional string variant_key = 3;
|
|
1408
1408
|
*/
|
|
1409
|
-
variantKey?: string;
|
|
1409
|
+
variantKey?: string | undefined;
|
|
1410
1410
|
|
|
1411
1411
|
/**
|
|
1412
1412
|
* @generated from field: optional string change_description = 4;
|
|
1413
1413
|
*/
|
|
1414
|
-
changeDescription?: string;
|
|
1414
|
+
changeDescription?: string | undefined;
|
|
1415
1415
|
};
|
|
1416
1416
|
|
|
1417
1417
|
/**
|
|
@@ -1427,12 +1427,12 @@ export declare type SaveContentResponse = Message<"records.v1.SaveContentRespons
|
|
|
1427
1427
|
/**
|
|
1428
1428
|
* @generated from field: records.v1.Record record = 1;
|
|
1429
1429
|
*/
|
|
1430
|
-
record?: Record;
|
|
1430
|
+
record?: Record | undefined;
|
|
1431
1431
|
|
|
1432
1432
|
/**
|
|
1433
1433
|
* @generated from field: records.v1.Record version = 2;
|
|
1434
1434
|
*/
|
|
1435
|
-
version?: Record;
|
|
1435
|
+
version?: Record | undefined;
|
|
1436
1436
|
};
|
|
1437
1437
|
|
|
1438
1438
|
/**
|
|
@@ -1453,12 +1453,12 @@ export declare type ScheduleRecordPublishRequest = Message<"records.v1.ScheduleR
|
|
|
1453
1453
|
/**
|
|
1454
1454
|
* @generated from field: google.protobuf.Timestamp publish_at = 2;
|
|
1455
1455
|
*/
|
|
1456
|
-
publishAt?: Timestamp;
|
|
1456
|
+
publishAt?: Timestamp | undefined;
|
|
1457
1457
|
|
|
1458
1458
|
/**
|
|
1459
1459
|
* @generated from field: optional google.protobuf.Timestamp unpublish_at = 3;
|
|
1460
1460
|
*/
|
|
1461
|
-
unpublishAt?: Timestamp;
|
|
1461
|
+
unpublishAt?: Timestamp | undefined;
|
|
1462
1462
|
};
|
|
1463
1463
|
|
|
1464
1464
|
/**
|
|
@@ -1474,7 +1474,7 @@ export declare type ScheduleRecordPublishResponse = Message<"records.v1.Schedule
|
|
|
1474
1474
|
/**
|
|
1475
1475
|
* @generated from field: records.v1.Record version = 1;
|
|
1476
1476
|
*/
|
|
1477
|
-
version?: Record;
|
|
1477
|
+
version?: Record | undefined;
|
|
1478
1478
|
};
|
|
1479
1479
|
|
|
1480
1480
|
/**
|
|
@@ -1506,7 +1506,7 @@ export declare type CancelScheduledRecordPublishResponse = Message<"records.v1.C
|
|
|
1506
1506
|
/**
|
|
1507
1507
|
* @generated from field: records.v1.Record version = 1;
|
|
1508
1508
|
*/
|
|
1509
|
-
version?: Record;
|
|
1509
|
+
version?: Record | undefined;
|
|
1510
1510
|
};
|
|
1511
1511
|
|
|
1512
1512
|
/**
|
|
@@ -1522,17 +1522,17 @@ export declare type ListScheduledPublishesRequest = Message<"records.v1.ListSche
|
|
|
1522
1522
|
/**
|
|
1523
1523
|
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
1524
1524
|
*/
|
|
1525
|
-
from?: Timestamp;
|
|
1525
|
+
from?: Timestamp | undefined;
|
|
1526
1526
|
|
|
1527
1527
|
/**
|
|
1528
1528
|
* @generated from field: optional google.protobuf.Timestamp to = 2;
|
|
1529
1529
|
*/
|
|
1530
|
-
to?: Timestamp;
|
|
1530
|
+
to?: Timestamp | undefined;
|
|
1531
1531
|
|
|
1532
1532
|
/**
|
|
1533
1533
|
* @generated from field: optional string model_key = 3;
|
|
1534
1534
|
*/
|
|
1535
|
-
modelKey?: string;
|
|
1535
|
+
modelKey?: string | undefined;
|
|
1536
1536
|
|
|
1537
1537
|
/**
|
|
1538
1538
|
* @generated from field: int32 limit = 4;
|
|
@@ -1595,7 +1595,7 @@ export declare type GetScheduledPublishResponse = Message<"records.v1.GetSchedul
|
|
|
1595
1595
|
/**
|
|
1596
1596
|
* @generated from field: records.v1.PublishSchedule schedule = 1;
|
|
1597
1597
|
*/
|
|
1598
|
-
schedule?: PublishSchedule;
|
|
1598
|
+
schedule?: PublishSchedule | undefined;
|
|
1599
1599
|
};
|
|
1600
1600
|
|
|
1601
1601
|
/**
|
|
@@ -1611,12 +1611,12 @@ export declare type ListDraftVersionsRequest = Message<"records.v1.ListDraftVers
|
|
|
1611
1611
|
/**
|
|
1612
1612
|
* @generated from field: optional string model_key = 1;
|
|
1613
1613
|
*/
|
|
1614
|
-
modelKey?: string;
|
|
1614
|
+
modelKey?: string | undefined;
|
|
1615
1615
|
|
|
1616
1616
|
/**
|
|
1617
1617
|
* @generated from field: optional string search = 2;
|
|
1618
1618
|
*/
|
|
1619
|
-
search?: string;
|
|
1619
|
+
search?: string | undefined;
|
|
1620
1620
|
|
|
1621
1621
|
/**
|
|
1622
1622
|
* @generated from field: int32 limit = 3;
|
|
@@ -1673,7 +1673,7 @@ export declare type CreatePublishBatchRequest = Message<"records.v1.CreatePublis
|
|
|
1673
1673
|
/**
|
|
1674
1674
|
* @generated from field: optional google.protobuf.Timestamp scheduled_at = 3;
|
|
1675
1675
|
*/
|
|
1676
|
-
scheduledAt?: Timestamp;
|
|
1676
|
+
scheduledAt?: Timestamp | undefined;
|
|
1677
1677
|
};
|
|
1678
1678
|
|
|
1679
1679
|
/**
|
|
@@ -1689,7 +1689,7 @@ export declare type CreatePublishBatchResponse = Message<"records.v1.CreatePubli
|
|
|
1689
1689
|
/**
|
|
1690
1690
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1691
1691
|
*/
|
|
1692
|
-
batch?: PublishBatch;
|
|
1692
|
+
batch?: PublishBatch | undefined;
|
|
1693
1693
|
};
|
|
1694
1694
|
|
|
1695
1695
|
/**
|
|
@@ -1710,12 +1710,12 @@ export declare type UpdatePublishBatchRequest = Message<"records.v1.UpdatePublis
|
|
|
1710
1710
|
/**
|
|
1711
1711
|
* @generated from field: optional string name = 2;
|
|
1712
1712
|
*/
|
|
1713
|
-
name?: string;
|
|
1713
|
+
name?: string | undefined;
|
|
1714
1714
|
|
|
1715
1715
|
/**
|
|
1716
1716
|
* @generated from field: optional google.protobuf.Timestamp scheduled_at = 3;
|
|
1717
1717
|
*/
|
|
1718
|
-
scheduledAt?: Timestamp;
|
|
1718
|
+
scheduledAt?: Timestamp | undefined;
|
|
1719
1719
|
};
|
|
1720
1720
|
|
|
1721
1721
|
/**
|
|
@@ -1731,7 +1731,7 @@ export declare type UpdatePublishBatchResponse = Message<"records.v1.UpdatePubli
|
|
|
1731
1731
|
/**
|
|
1732
1732
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1733
1733
|
*/
|
|
1734
|
-
batch?: PublishBatch;
|
|
1734
|
+
batch?: PublishBatch | undefined;
|
|
1735
1735
|
};
|
|
1736
1736
|
|
|
1737
1737
|
/**
|
|
@@ -1763,7 +1763,7 @@ export declare type CancelPublishBatchResponse = Message<"records.v1.CancelPubli
|
|
|
1763
1763
|
/**
|
|
1764
1764
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1765
1765
|
*/
|
|
1766
|
-
batch?: PublishBatch;
|
|
1766
|
+
batch?: PublishBatch | undefined;
|
|
1767
1767
|
};
|
|
1768
1768
|
|
|
1769
1769
|
/**
|
|
@@ -1795,7 +1795,7 @@ export declare type RollbackPublishBatchResponse = Message<"records.v1.RollbackP
|
|
|
1795
1795
|
/**
|
|
1796
1796
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1797
1797
|
*/
|
|
1798
|
-
batch?: PublishBatch;
|
|
1798
|
+
batch?: PublishBatch | undefined;
|
|
1799
1799
|
};
|
|
1800
1800
|
|
|
1801
1801
|
/**
|
|
@@ -1827,7 +1827,7 @@ export declare type RetryFailedBatchItemsResponse = Message<"records.v1.RetryFai
|
|
|
1827
1827
|
/**
|
|
1828
1828
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1829
1829
|
*/
|
|
1830
|
-
batch?: PublishBatch;
|
|
1830
|
+
batch?: PublishBatch | undefined;
|
|
1831
1831
|
|
|
1832
1832
|
/**
|
|
1833
1833
|
* @generated from field: int32 retried_count = 2;
|
|
@@ -1869,7 +1869,7 @@ export declare type AddItemsToPublishBatchResponse = Message<"records.v1.AddItem
|
|
|
1869
1869
|
/**
|
|
1870
1870
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1871
1871
|
*/
|
|
1872
|
-
batch?: PublishBatch;
|
|
1872
|
+
batch?: PublishBatch | undefined;
|
|
1873
1873
|
};
|
|
1874
1874
|
|
|
1875
1875
|
/**
|
|
@@ -1906,7 +1906,7 @@ export declare type RemoveItemsFromPublishBatchResponse = Message<"records.v1.Re
|
|
|
1906
1906
|
/**
|
|
1907
1907
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1908
1908
|
*/
|
|
1909
|
-
batch?: PublishBatch;
|
|
1909
|
+
batch?: PublishBatch | undefined;
|
|
1910
1910
|
};
|
|
1911
1911
|
|
|
1912
1912
|
/**
|
|
@@ -1922,17 +1922,17 @@ export declare type ListPublishBatchesRequest = Message<"records.v1.ListPublishB
|
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @generated from field: optional string status = 1;
|
|
1924
1924
|
*/
|
|
1925
|
-
status?: string;
|
|
1925
|
+
status?: string | undefined;
|
|
1926
1926
|
|
|
1927
1927
|
/**
|
|
1928
1928
|
* @generated from field: optional google.protobuf.Timestamp from = 2;
|
|
1929
1929
|
*/
|
|
1930
|
-
from?: Timestamp;
|
|
1930
|
+
from?: Timestamp | undefined;
|
|
1931
1931
|
|
|
1932
1932
|
/**
|
|
1933
1933
|
* @generated from field: optional google.protobuf.Timestamp to = 3;
|
|
1934
1934
|
*/
|
|
1935
|
-
to?: Timestamp;
|
|
1935
|
+
to?: Timestamp | undefined;
|
|
1936
1936
|
|
|
1937
1937
|
/**
|
|
1938
1938
|
* @generated from field: int32 limit = 4;
|
|
@@ -1995,7 +1995,7 @@ export declare type GetPublishBatchResponse = Message<"records.v1.GetPublishBatc
|
|
|
1995
1995
|
/**
|
|
1996
1996
|
* @generated from field: records.v1.PublishBatch batch = 1;
|
|
1997
1997
|
*/
|
|
1998
|
-
batch?: PublishBatch;
|
|
1998
|
+
batch?: PublishBatch | undefined;
|
|
1999
1999
|
|
|
2000
2000
|
/**
|
|
2001
2001
|
* @generated from field: repeated records.v1.Record versions = 2;
|
|
@@ -2058,22 +2058,22 @@ export declare type ResolveRecordRequest = Message<"records.v1.ResolveRecordRequ
|
|
|
2058
2058
|
/**
|
|
2059
2059
|
* @generated from field: optional string record_id = 2;
|
|
2060
2060
|
*/
|
|
2061
|
-
recordId?: string;
|
|
2061
|
+
recordId?: string | undefined;
|
|
2062
2062
|
|
|
2063
2063
|
/**
|
|
2064
2064
|
* @generated from field: optional string natural_key = 3;
|
|
2065
2065
|
*/
|
|
2066
|
-
naturalKey?: string;
|
|
2066
|
+
naturalKey?: string | undefined;
|
|
2067
2067
|
|
|
2068
2068
|
/**
|
|
2069
2069
|
* @generated from field: optional string customer_id = 4;
|
|
2070
2070
|
*/
|
|
2071
|
-
customerId?: string;
|
|
2071
|
+
customerId?: string | undefined;
|
|
2072
2072
|
|
|
2073
2073
|
/**
|
|
2074
2074
|
* @generated from field: optional google.protobuf.Struct context = 5;
|
|
2075
2075
|
*/
|
|
2076
|
-
context?: JsonObject;
|
|
2076
|
+
context?: JsonObject | undefined;
|
|
2077
2077
|
|
|
2078
2078
|
/**
|
|
2079
2079
|
* @generated from field: bool include_media = 6;
|
|
@@ -2091,7 +2091,7 @@ export declare type ResolveRecordRequest = Message<"records.v1.ResolveRecordRequ
|
|
|
2091
2091
|
*
|
|
2092
2092
|
* @generated from field: optional string viewer_key = 8;
|
|
2093
2093
|
*/
|
|
2094
|
-
viewerKey?: string;
|
|
2094
|
+
viewerKey?: string | undefined;
|
|
2095
2095
|
};
|
|
2096
2096
|
|
|
2097
2097
|
/**
|
|
@@ -2127,12 +2127,12 @@ export declare type ResolvedMedia = Message<"records.v1.ResolvedMedia"> & {
|
|
|
2127
2127
|
/**
|
|
2128
2128
|
* @generated from field: optional string filename = 5;
|
|
2129
2129
|
*/
|
|
2130
|
-
filename?: string;
|
|
2130
|
+
filename?: string | undefined;
|
|
2131
2131
|
|
|
2132
2132
|
/**
|
|
2133
2133
|
* @generated from field: optional google.protobuf.Struct metadata = 6;
|
|
2134
2134
|
*/
|
|
2135
|
-
metadata?: JsonObject;
|
|
2135
|
+
metadata?: JsonObject | undefined;
|
|
2136
2136
|
};
|
|
2137
2137
|
|
|
2138
2138
|
/**
|
|
@@ -2179,17 +2179,17 @@ export declare type ResolveRecordResponse = Message<"records.v1.ResolveRecordRes
|
|
|
2179
2179
|
/**
|
|
2180
2180
|
* @generated from field: google.protobuf.Struct data = 1;
|
|
2181
2181
|
*/
|
|
2182
|
-
data?: JsonObject;
|
|
2182
|
+
data?: JsonObject | undefined;
|
|
2183
2183
|
|
|
2184
2184
|
/**
|
|
2185
2185
|
* @generated from field: google.protobuf.Struct metadata = 2;
|
|
2186
2186
|
*/
|
|
2187
|
-
metadata?: JsonObject;
|
|
2187
|
+
metadata?: JsonObject | undefined;
|
|
2188
2188
|
|
|
2189
2189
|
/**
|
|
2190
2190
|
* @generated from field: optional string variant_id = 3;
|
|
2191
2191
|
*/
|
|
2192
|
-
variantId?: string;
|
|
2192
|
+
variantId?: string | undefined;
|
|
2193
2193
|
|
|
2194
2194
|
/**
|
|
2195
2195
|
* @generated from field: repeated records.v1.ResolvedMedia media = 4;
|
|
@@ -2199,12 +2199,12 @@ export declare type ResolveRecordResponse = Message<"records.v1.ResolveRecordRes
|
|
|
2199
2199
|
/**
|
|
2200
2200
|
* @generated from field: optional records.v1.Record record = 5;
|
|
2201
2201
|
*/
|
|
2202
|
-
record?: Record;
|
|
2202
|
+
record?: Record | undefined;
|
|
2203
2203
|
|
|
2204
2204
|
/**
|
|
2205
2205
|
* @generated from field: optional records.v1.ExperimentExposure experiment_exposure = 6;
|
|
2206
2206
|
*/
|
|
2207
|
-
experimentExposure?: ExperimentExposure;
|
|
2207
|
+
experimentExposure?: ExperimentExposure | undefined;
|
|
2208
2208
|
};
|
|
2209
2209
|
|
|
2210
2210
|
/**
|
|
@@ -2230,12 +2230,12 @@ export declare type ResolveRecordsRequest = Message<"records.v1.ResolveRecordsRe
|
|
|
2230
2230
|
/**
|
|
2231
2231
|
* @generated from field: optional string customer_id = 3;
|
|
2232
2232
|
*/
|
|
2233
|
-
customerId?: string;
|
|
2233
|
+
customerId?: string | undefined;
|
|
2234
2234
|
|
|
2235
2235
|
/**
|
|
2236
2236
|
* @generated from field: optional google.protobuf.Struct context = 4;
|
|
2237
2237
|
*/
|
|
2238
|
-
context?: JsonObject;
|
|
2238
|
+
context?: JsonObject | undefined;
|
|
2239
2239
|
|
|
2240
2240
|
/**
|
|
2241
2241
|
* @generated from field: bool include_media = 5;
|
|
@@ -2277,17 +2277,17 @@ export declare type ResolvedRecord = Message<"records.v1.ResolvedRecord"> & {
|
|
|
2277
2277
|
/**
|
|
2278
2278
|
* @generated from field: google.protobuf.Struct data = 2;
|
|
2279
2279
|
*/
|
|
2280
|
-
data?: JsonObject;
|
|
2280
|
+
data?: JsonObject | undefined;
|
|
2281
2281
|
|
|
2282
2282
|
/**
|
|
2283
2283
|
* @generated from field: google.protobuf.Struct metadata = 3;
|
|
2284
2284
|
*/
|
|
2285
|
-
metadata?: JsonObject;
|
|
2285
|
+
metadata?: JsonObject | undefined;
|
|
2286
2286
|
|
|
2287
2287
|
/**
|
|
2288
2288
|
* @generated from field: optional string variant_id = 4;
|
|
2289
2289
|
*/
|
|
2290
|
-
variantId?: string;
|
|
2290
|
+
variantId?: string | undefined;
|
|
2291
2291
|
|
|
2292
2292
|
/**
|
|
2293
2293
|
* @generated from field: repeated records.v1.ResolvedMedia media = 5;
|
|
@@ -2297,7 +2297,7 @@ export declare type ResolvedRecord = Message<"records.v1.ResolvedRecord"> & {
|
|
|
2297
2297
|
/**
|
|
2298
2298
|
* @generated from field: optional string natural_key = 6;
|
|
2299
2299
|
*/
|
|
2300
|
-
naturalKey?: string;
|
|
2300
|
+
naturalKey?: string | undefined;
|
|
2301
2301
|
};
|
|
2302
2302
|
|
|
2303
2303
|
/**
|
|
@@ -2349,12 +2349,12 @@ export declare type SearchResultItem = Message<"records.v1.SearchResultItem"> &
|
|
|
2349
2349
|
/**
|
|
2350
2350
|
* @generated from field: optional string natural_key = 3;
|
|
2351
2351
|
*/
|
|
2352
|
-
naturalKey?: string;
|
|
2352
|
+
naturalKey?: string | undefined;
|
|
2353
2353
|
|
|
2354
2354
|
/**
|
|
2355
2355
|
* @generated from field: google.protobuf.Struct data = 4;
|
|
2356
2356
|
*/
|
|
2357
|
-
data?: JsonObject;
|
|
2357
|
+
data?: JsonObject | undefined;
|
|
2358
2358
|
|
|
2359
2359
|
/**
|
|
2360
2360
|
* @generated from field: double score = 5;
|
|
@@ -2416,7 +2416,7 @@ export declare type EmbeddingStats = Message<"records.v1.EmbeddingStats"> & {
|
|
|
2416
2416
|
/**
|
|
2417
2417
|
* @generated from field: optional string last_embedded_at = 5;
|
|
2418
2418
|
*/
|
|
2419
|
-
lastEmbeddedAt?: string;
|
|
2419
|
+
lastEmbeddedAt?: string | undefined;
|
|
2420
2420
|
};
|
|
2421
2421
|
|
|
2422
2422
|
/**
|
|
@@ -2447,7 +2447,7 @@ export declare type RecordEmbedding = Message<"records.v1.RecordEmbedding"> & {
|
|
|
2447
2447
|
/**
|
|
2448
2448
|
* @generated from field: optional string embedded_at = 4;
|
|
2449
2449
|
*/
|
|
2450
|
-
embeddedAt?: string;
|
|
2450
|
+
embeddedAt?: string | undefined;
|
|
2451
2451
|
};
|
|
2452
2452
|
|
|
2453
2453
|
/**
|
|
@@ -2473,12 +2473,12 @@ export declare type SimilarRecord = Message<"records.v1.SimilarRecord"> & {
|
|
|
2473
2473
|
/**
|
|
2474
2474
|
* @generated from field: optional string natural_key = 3;
|
|
2475
2475
|
*/
|
|
2476
|
-
naturalKey?: string;
|
|
2476
|
+
naturalKey?: string | undefined;
|
|
2477
2477
|
|
|
2478
2478
|
/**
|
|
2479
2479
|
* @generated from field: google.protobuf.Struct data = 4;
|
|
2480
2480
|
*/
|
|
2481
|
-
data?: JsonObject;
|
|
2481
|
+
data?: JsonObject | undefined;
|
|
2482
2482
|
|
|
2483
2483
|
/**
|
|
2484
2484
|
* @generated from field: double similarity = 5;
|
|
@@ -2499,7 +2499,7 @@ export declare type GetEmbeddingStatsRequest = Message<"records.v1.GetEmbeddingS
|
|
|
2499
2499
|
/**
|
|
2500
2500
|
* @generated from field: optional string model_key = 1;
|
|
2501
2501
|
*/
|
|
2502
|
-
modelKey?: string;
|
|
2502
|
+
modelKey?: string | undefined;
|
|
2503
2503
|
};
|
|
2504
2504
|
|
|
2505
2505
|
/**
|
|
@@ -2568,7 +2568,7 @@ export declare type FindSimilarRecordsRequest = Message<"records.v1.FindSimilarR
|
|
|
2568
2568
|
/**
|
|
2569
2569
|
* @generated from field: optional string model_key = 2;
|
|
2570
2570
|
*/
|
|
2571
|
-
modelKey?: string;
|
|
2571
|
+
modelKey?: string | undefined;
|
|
2572
2572
|
|
|
2573
2573
|
/**
|
|
2574
2574
|
* @generated from field: int32 limit = 10;
|
|
@@ -2620,12 +2620,12 @@ export declare type WriteEmbeddingsRequest = Message<"records.v1.WriteEmbeddings
|
|
|
2620
2620
|
/**
|
|
2621
2621
|
* @generated from field: optional string provider = 4;
|
|
2622
2622
|
*/
|
|
2623
|
-
provider?: string;
|
|
2623
|
+
provider?: string | undefined;
|
|
2624
2624
|
|
|
2625
2625
|
/**
|
|
2626
2626
|
* @generated from field: optional string model_name = 5;
|
|
2627
2627
|
*/
|
|
2628
|
-
modelName?: string;
|
|
2628
|
+
modelName?: string | undefined;
|
|
2629
2629
|
};
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
@@ -2694,7 +2694,7 @@ export declare type SearchEmbeddingsRequest = Message<"records.v1.SearchEmbeddin
|
|
|
2694
2694
|
/**
|
|
2695
2695
|
* @generated from field: optional string model_key = 2;
|
|
2696
2696
|
*/
|
|
2697
|
-
modelKey?: string;
|
|
2697
|
+
modelKey?: string | undefined;
|
|
2698
2698
|
|
|
2699
2699
|
/**
|
|
2700
2700
|
* @generated from field: int32 limit = 10;
|