@eide/foir-proto-ts 0.27.0 → 0.28.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
package/package.json
CHANGED
|
@@ -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 analytics/v1/analytics.proto (package analytics.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
@@ -147,7 +147,7 @@ export declare type SuspiciousLogin = Message<"analytics.v1.SuspiciousLogin"> &
|
|
|
147
147
|
/**
|
|
148
148
|
* @generated from field: google.protobuf.Timestamp last_seen = 4;
|
|
149
149
|
*/
|
|
150
|
-
lastSeen?: Timestamp;
|
|
150
|
+
lastSeen?: Timestamp | undefined;
|
|
151
151
|
};
|
|
152
152
|
|
|
153
153
|
/**
|
|
@@ -173,7 +173,7 @@ export declare type FailedLogin = Message<"analytics.v1.FailedLogin"> & {
|
|
|
173
173
|
/**
|
|
174
174
|
* @generated from field: google.protobuf.Timestamp last_attempt = 3;
|
|
175
175
|
*/
|
|
176
|
-
lastAttempt?: Timestamp;
|
|
176
|
+
lastAttempt?: Timestamp | undefined;
|
|
177
177
|
};
|
|
178
178
|
|
|
179
179
|
/**
|
|
@@ -194,12 +194,12 @@ export declare type AccountLockout = Message<"analytics.v1.AccountLockout"> & {
|
|
|
194
194
|
/**
|
|
195
195
|
* @generated from field: google.protobuf.Timestamp locked_at = 2;
|
|
196
196
|
*/
|
|
197
|
-
lockedAt?: Timestamp;
|
|
197
|
+
lockedAt?: Timestamp | undefined;
|
|
198
198
|
|
|
199
199
|
/**
|
|
200
200
|
* @generated from field: optional string reason = 3;
|
|
201
201
|
*/
|
|
202
|
-
reason?: string;
|
|
202
|
+
reason?: string | undefined;
|
|
203
203
|
};
|
|
204
204
|
|
|
205
205
|
/**
|
|
@@ -215,12 +215,12 @@ export declare type GetAnalyticsSummaryRequest = Message<"analytics.v1.GetAnalyt
|
|
|
215
215
|
/**
|
|
216
216
|
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
217
217
|
*/
|
|
218
|
-
from?: Timestamp;
|
|
218
|
+
from?: Timestamp | undefined;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
221
|
* @generated from field: optional google.protobuf.Timestamp to = 2;
|
|
222
222
|
*/
|
|
223
|
-
to?: Timestamp;
|
|
223
|
+
to?: Timestamp | undefined;
|
|
224
224
|
};
|
|
225
225
|
|
|
226
226
|
/**
|
|
@@ -236,7 +236,7 @@ export declare type GetAnalyticsSummaryResponse = Message<"analytics.v1.GetAnaly
|
|
|
236
236
|
/**
|
|
237
237
|
* @generated from field: analytics.v1.AnalyticsSummary summary = 1;
|
|
238
238
|
*/
|
|
239
|
-
summary?: AnalyticsSummary;
|
|
239
|
+
summary?: AnalyticsSummary | undefined;
|
|
240
240
|
};
|
|
241
241
|
|
|
242
242
|
/**
|
|
@@ -257,17 +257,17 @@ export declare type GetTrendRequest = Message<"analytics.v1.GetTrendRequest"> &
|
|
|
257
257
|
/**
|
|
258
258
|
* @generated from field: optional google.protobuf.Timestamp from = 2;
|
|
259
259
|
*/
|
|
260
|
-
from?: Timestamp;
|
|
260
|
+
from?: Timestamp | undefined;
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
263
|
* @generated from field: optional google.protobuf.Timestamp to = 3;
|
|
264
264
|
*/
|
|
265
|
-
to?: Timestamp;
|
|
265
|
+
to?: Timestamp | undefined;
|
|
266
266
|
|
|
267
267
|
/**
|
|
268
268
|
* @generated from field: optional string granularity = 4;
|
|
269
269
|
*/
|
|
270
|
-
granularity?: string;
|
|
270
|
+
granularity?: string | undefined;
|
|
271
271
|
};
|
|
272
272
|
|
|
273
273
|
/**
|
|
@@ -336,17 +336,17 @@ export declare type GetSecuritySummaryRequest = Message<"analytics.v1.GetSecurit
|
|
|
336
336
|
/**
|
|
337
337
|
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
338
338
|
*/
|
|
339
|
-
from?: Timestamp;
|
|
339
|
+
from?: Timestamp | undefined;
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
342
|
* @generated from field: optional google.protobuf.Timestamp to = 2;
|
|
343
343
|
*/
|
|
344
|
-
to?: Timestamp;
|
|
344
|
+
to?: Timestamp | undefined;
|
|
345
345
|
|
|
346
346
|
/**
|
|
347
347
|
* @generated from field: optional string tenant_id = 3;
|
|
348
348
|
*/
|
|
349
|
-
tenantId?: string;
|
|
349
|
+
tenantId?: string | undefined;
|
|
350
350
|
};
|
|
351
351
|
|
|
352
352
|
/**
|
|
@@ -362,7 +362,7 @@ export declare type GetSecuritySummaryResponse = Message<"analytics.v1.GetSecuri
|
|
|
362
362
|
/**
|
|
363
363
|
* @generated from field: analytics.v1.SecuritySummary summary = 1;
|
|
364
364
|
*/
|
|
365
|
-
summary?: SecuritySummary;
|
|
365
|
+
summary?: SecuritySummary | undefined;
|
|
366
366
|
};
|
|
367
367
|
|
|
368
368
|
/**
|
|
@@ -383,7 +383,7 @@ export declare type GetSuspiciousLoginsRequest = Message<"analytics.v1.GetSuspic
|
|
|
383
383
|
/**
|
|
384
384
|
* @generated from field: optional string tenant_id = 2;
|
|
385
385
|
*/
|
|
386
|
-
tenantId?: string;
|
|
386
|
+
tenantId?: string | undefined;
|
|
387
387
|
};
|
|
388
388
|
|
|
389
389
|
/**
|
|
@@ -415,7 +415,7 @@ export declare type GetFailedLoginsRequest = Message<"analytics.v1.GetFailedLogi
|
|
|
415
415
|
/**
|
|
416
416
|
* @generated from field: optional string by = 1;
|
|
417
417
|
*/
|
|
418
|
-
by?: string;
|
|
418
|
+
by?: string | undefined;
|
|
419
419
|
|
|
420
420
|
/**
|
|
421
421
|
* @generated from field: int32 limit = 10;
|
|
@@ -425,7 +425,7 @@ export declare type GetFailedLoginsRequest = Message<"analytics.v1.GetFailedLogi
|
|
|
425
425
|
/**
|
|
426
426
|
* @generated from field: optional string tenant_id = 3;
|
|
427
427
|
*/
|
|
428
|
-
tenantId?: string;
|
|
428
|
+
tenantId?: string | undefined;
|
|
429
429
|
};
|
|
430
430
|
|
|
431
431
|
/**
|
|
@@ -462,7 +462,7 @@ export declare type GetAccountLockoutsRequest = Message<"analytics.v1.GetAccount
|
|
|
462
462
|
/**
|
|
463
463
|
* @generated from field: optional string tenant_id = 2;
|
|
464
464
|
*/
|
|
465
|
-
tenantId?: string;
|
|
465
|
+
tenantId?: string | undefined;
|
|
466
466
|
};
|
|
467
467
|
|
|
468
468
|
/**
|
|
@@ -520,12 +520,12 @@ export declare type GetVariantPerformanceRequest = Message<"analytics.v1.GetVari
|
|
|
520
520
|
/**
|
|
521
521
|
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
522
522
|
*/
|
|
523
|
-
from?: Timestamp;
|
|
523
|
+
from?: Timestamp | undefined;
|
|
524
524
|
|
|
525
525
|
/**
|
|
526
526
|
* @generated from field: optional google.protobuf.Timestamp to = 2;
|
|
527
527
|
*/
|
|
528
|
-
to?: Timestamp;
|
|
528
|
+
to?: Timestamp | undefined;
|
|
529
529
|
};
|
|
530
530
|
|
|
531
531
|
/**
|
|
@@ -583,12 +583,12 @@ export declare type GetSegmentEngagementRequest = Message<"analytics.v1.GetSegme
|
|
|
583
583
|
/**
|
|
584
584
|
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
585
585
|
*/
|
|
586
|
-
from?: Timestamp;
|
|
586
|
+
from?: Timestamp | undefined;
|
|
587
587
|
|
|
588
588
|
/**
|
|
589
589
|
* @generated from field: optional google.protobuf.Timestamp to = 2;
|
|
590
590
|
*/
|
|
591
|
-
to?: Timestamp;
|
|
591
|
+
to?: Timestamp | undefined;
|
|
592
592
|
};
|
|
593
593
|
|
|
594
594
|
/**
|
|
@@ -651,17 +651,17 @@ export declare type GetExperimentConversionsRequest = Message<"analytics.v1.GetE
|
|
|
651
651
|
/**
|
|
652
652
|
* @generated from field: optional string experiment_id = 1;
|
|
653
653
|
*/
|
|
654
|
-
experimentId?: string;
|
|
654
|
+
experimentId?: string | undefined;
|
|
655
655
|
|
|
656
656
|
/**
|
|
657
657
|
* @generated from field: optional google.protobuf.Timestamp from = 2;
|
|
658
658
|
*/
|
|
659
|
-
from?: Timestamp;
|
|
659
|
+
from?: Timestamp | undefined;
|
|
660
660
|
|
|
661
661
|
/**
|
|
662
662
|
* @generated from field: optional google.protobuf.Timestamp to = 3;
|
|
663
663
|
*/
|
|
664
|
-
to?: Timestamp;
|
|
664
|
+
to?: Timestamp | undefined;
|
|
665
665
|
};
|
|
666
666
|
|
|
667
667
|
/**
|
|
@@ -724,12 +724,12 @@ export declare type GetExperimentFunnelAnalysisRequest = Message<"analytics.v1.G
|
|
|
724
724
|
/**
|
|
725
725
|
* @generated from field: optional google.protobuf.Timestamp from = 2;
|
|
726
726
|
*/
|
|
727
|
-
from?: Timestamp;
|
|
727
|
+
from?: Timestamp | undefined;
|
|
728
728
|
|
|
729
729
|
/**
|
|
730
730
|
* @generated from field: optional google.protobuf.Timestamp to = 3;
|
|
731
731
|
*/
|
|
732
|
-
to?: Timestamp;
|
|
732
|
+
to?: Timestamp | undefined;
|
|
733
733
|
};
|
|
734
734
|
|
|
735
735
|
/**
|
|
@@ -787,17 +787,17 @@ export declare type RecordConversionEventRequest = Message<"analytics.v1.RecordC
|
|
|
787
787
|
/**
|
|
788
788
|
* @generated from field: optional string customer_id = 5;
|
|
789
789
|
*/
|
|
790
|
-
customerId?: string;
|
|
790
|
+
customerId?: string | undefined;
|
|
791
791
|
|
|
792
792
|
/**
|
|
793
793
|
* @generated from field: optional string viewer_key = 6;
|
|
794
794
|
*/
|
|
795
|
-
viewerKey?: string;
|
|
795
|
+
viewerKey?: string | undefined;
|
|
796
796
|
|
|
797
797
|
/**
|
|
798
798
|
* @generated from field: optional google.protobuf.Struct metadata = 7;
|
|
799
799
|
*/
|
|
800
|
-
metadata?: JsonObject;
|
|
800
|
+
metadata?: JsonObject | undefined;
|
|
801
801
|
};
|
|
802
802
|
|
|
803
803
|
/**
|
package/src/apps/v1/apps_pb.d.ts
CHANGED
|
@@ -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 apps/v1/apps.proto (package apps.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
@@ -37,7 +37,7 @@ export declare type AppConfig = Message<"apps.v1.AppConfig"> & {
|
|
|
37
37
|
*
|
|
38
38
|
* @generated from field: apps.v1.Metadata metadata = 3;
|
|
39
39
|
*/
|
|
40
|
-
metadata?: Metadata;
|
|
40
|
+
metadata?: Metadata | undefined;
|
|
41
41
|
|
|
42
42
|
/**
|
|
43
43
|
* OPTIONAL. If present, the app has a runtime service. Absent for pure
|
|
@@ -45,7 +45,7 @@ export declare type AppConfig = Message<"apps.v1.AppConfig"> & {
|
|
|
45
45
|
*
|
|
46
46
|
* @generated from field: apps.v1.Middleware middleware = 4;
|
|
47
47
|
*/
|
|
48
|
-
middleware?: Middleware;
|
|
48
|
+
middleware?: Middleware | undefined;
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
51
|
* OPTIONAL. Credential strategy and schema. Absent for apps that need no
|
|
@@ -53,14 +53,14 @@ export declare type AppConfig = Message<"apps.v1.AppConfig"> & {
|
|
|
53
53
|
*
|
|
54
54
|
* @generated from field: apps.v1.Credentials credentials = 5;
|
|
55
55
|
*/
|
|
56
|
-
credentials?: Credentials;
|
|
56
|
+
credentials?: Credentials | undefined;
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* OPTIONAL. JSON Schema describing per-project settings. Shape, not values.
|
|
60
60
|
*
|
|
61
61
|
* @generated from field: google.protobuf.Struct settings_schema = 6;
|
|
62
62
|
*/
|
|
63
|
-
settingsSchema?: JsonObject;
|
|
63
|
+
settingsSchema?: JsonObject | undefined;
|
|
64
64
|
|
|
65
65
|
/**
|
|
66
66
|
* OPTIONAL. Inbound data shapes the app can deliver. Each source type is
|
|
@@ -99,7 +99,7 @@ export declare type AppConfig = Message<"apps.v1.AppConfig"> & {
|
|
|
99
99
|
*
|
|
100
100
|
* @generated from field: apps.v1.UI ui = 11;
|
|
101
101
|
*/
|
|
102
|
-
ui?: UI;
|
|
102
|
+
ui?: UI | undefined;
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
105
|
* OPTIONAL. Inbound webhook declaration. If present, the gateway routes
|
|
@@ -107,7 +107,7 @@ export declare type AppConfig = Message<"apps.v1.AppConfig"> & {
|
|
|
107
107
|
*
|
|
108
108
|
* @generated from field: apps.v1.Inbound inbound = 12;
|
|
109
109
|
*/
|
|
110
|
-
inbound?: Inbound;
|
|
110
|
+
inbound?: Inbound | undefined;
|
|
111
111
|
};
|
|
112
112
|
|
|
113
113
|
/**
|
|
@@ -191,14 +191,14 @@ export declare type Credentials = Message<"apps.v1.Credentials"> & {
|
|
|
191
191
|
*
|
|
192
192
|
* @generated from field: optional google.protobuf.Struct schema = 2;
|
|
193
193
|
*/
|
|
194
|
-
schema?: JsonObject;
|
|
194
|
+
schema?: JsonObject | undefined;
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Required only when strategy is OAUTH.
|
|
198
198
|
*
|
|
199
199
|
* @generated from field: optional apps.v1.OAuthConfig oauth = 3;
|
|
200
200
|
*/
|
|
201
|
-
oauth?: OAuthConfig;
|
|
201
|
+
oauth?: OAuthConfig | undefined;
|
|
202
202
|
};
|
|
203
203
|
|
|
204
204
|
/**
|
|
@@ -284,7 +284,7 @@ export declare type Inbound = Message<"apps.v1.Inbound"> & {
|
|
|
284
284
|
/**
|
|
285
285
|
* @generated from field: apps.v1.Webhook webhook = 1;
|
|
286
286
|
*/
|
|
287
|
-
webhook?: Webhook;
|
|
287
|
+
webhook?: Webhook | undefined;
|
|
288
288
|
};
|
|
289
289
|
|
|
290
290
|
/**
|
|
@@ -389,17 +389,17 @@ export declare type SuggestedField = Message<"apps.v1.SuggestedField"> & {
|
|
|
389
389
|
/**
|
|
390
390
|
* @generated from field: optional string label = 2;
|
|
391
391
|
*/
|
|
392
|
-
label?: string;
|
|
392
|
+
label?: string | undefined;
|
|
393
393
|
|
|
394
394
|
/**
|
|
395
395
|
* @generated from field: optional bool required = 3;
|
|
396
396
|
*/
|
|
397
|
-
required?: boolean;
|
|
397
|
+
required?: boolean | undefined;
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
400
|
* @generated from field: optional google.protobuf.Struct config = 4;
|
|
401
401
|
*/
|
|
402
|
-
config?: JsonObject;
|
|
402
|
+
config?: JsonObject | undefined;
|
|
403
403
|
};
|
|
404
404
|
|
|
405
405
|
/**
|
|
@@ -440,7 +440,7 @@ export declare type SinkField = Message<"apps.v1.SinkField"> & {
|
|
|
440
440
|
/**
|
|
441
441
|
* @generated from field: optional string label = 4;
|
|
442
442
|
*/
|
|
443
|
-
label?: string;
|
|
443
|
+
label?: string | undefined;
|
|
444
444
|
};
|
|
445
445
|
|
|
446
446
|
/**
|
|
@@ -471,7 +471,7 @@ export declare type Operation = Message<"apps.v1.Operation"> & {
|
|
|
471
471
|
/**
|
|
472
472
|
* @generated from field: optional string description = 3;
|
|
473
473
|
*/
|
|
474
|
-
description?: string;
|
|
474
|
+
description?: string | undefined;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
477
|
* REQUIRED. Path on middleware.url that handles invocation.
|
|
@@ -494,27 +494,27 @@ export declare type Operation = Message<"apps.v1.Operation"> & {
|
|
|
494
494
|
/**
|
|
495
495
|
* @generated from field: optional int32 timeout_ms = 6;
|
|
496
496
|
*/
|
|
497
|
-
timeoutMs?: number;
|
|
497
|
+
timeoutMs?: number | undefined;
|
|
498
498
|
|
|
499
499
|
/**
|
|
500
500
|
* @generated from field: optional google.protobuf.Struct retry_policy = 7;
|
|
501
501
|
*/
|
|
502
|
-
retryPolicy?: JsonObject;
|
|
502
|
+
retryPolicy?: JsonObject | undefined;
|
|
503
503
|
|
|
504
504
|
/**
|
|
505
505
|
* @generated from field: optional google.protobuf.Struct input_schema = 8;
|
|
506
506
|
*/
|
|
507
|
-
inputSchema?: JsonObject;
|
|
507
|
+
inputSchema?: JsonObject | undefined;
|
|
508
508
|
|
|
509
509
|
/**
|
|
510
510
|
* @generated from field: optional google.protobuf.Struct output_schema = 9;
|
|
511
511
|
*/
|
|
512
|
-
outputSchema?: JsonObject;
|
|
512
|
+
outputSchema?: JsonObject | undefined;
|
|
513
513
|
|
|
514
514
|
/**
|
|
515
515
|
* @generated from field: optional bool supports_async = 10;
|
|
516
516
|
*/
|
|
517
|
-
supportsAsync?: boolean;
|
|
517
|
+
supportsAsync?: boolean | undefined;
|
|
518
518
|
|
|
519
519
|
/**
|
|
520
520
|
* When true, platform auto-enqueues this operation after a successful
|
|
@@ -563,7 +563,7 @@ export declare type Hook = Message<"apps.v1.Hook"> & {
|
|
|
563
563
|
*
|
|
564
564
|
* @generated from field: google.protobuf.Struct filter = 4;
|
|
565
565
|
*/
|
|
566
|
-
filter?: JsonObject;
|
|
566
|
+
filter?: JsonObject | undefined;
|
|
567
567
|
|
|
568
568
|
/**
|
|
569
569
|
* REQUIRED. Operation key from the same manifest's operations list.
|
|
@@ -629,7 +629,7 @@ export declare type PlacementDeclaration = Message<"apps.v1.PlacementDeclaration
|
|
|
629
629
|
*
|
|
630
630
|
* @generated from field: optional string model = 3;
|
|
631
631
|
*/
|
|
632
|
-
model?: string;
|
|
632
|
+
model?: string | undefined;
|
|
633
633
|
|
|
634
634
|
/**
|
|
635
635
|
* REQUIRED for FIELD when field_selected_at_install is false. Must be
|
|
@@ -637,7 +637,7 @@ export declare type PlacementDeclaration = Message<"apps.v1.PlacementDeclaration
|
|
|
637
637
|
*
|
|
638
638
|
* @generated from field: optional string field = 4;
|
|
639
639
|
*/
|
|
640
|
-
field?: string;
|
|
640
|
+
field?: string | undefined;
|
|
641
641
|
|
|
642
642
|
/**
|
|
643
643
|
* FIELD-only. When true, the admin chooses the specific field during
|
|
@@ -652,7 +652,7 @@ export declare type PlacementDeclaration = Message<"apps.v1.PlacementDeclaration
|
|
|
652
652
|
*
|
|
653
653
|
* @generated from field: optional string tab = 6;
|
|
654
654
|
*/
|
|
655
|
-
tab?: string;
|
|
655
|
+
tab?: string | undefined;
|
|
656
656
|
|
|
657
657
|
/**
|
|
658
658
|
* REQUIRED for all. Human-readable title.
|
|
@@ -673,14 +673,14 @@ export declare type PlacementDeclaration = Message<"apps.v1.PlacementDeclaration
|
|
|
673
673
|
*
|
|
674
674
|
* @generated from field: optional bool replaces_default = 9;
|
|
675
675
|
*/
|
|
676
|
-
replacesDefault?: boolean;
|
|
676
|
+
replacesDefault?: boolean | undefined;
|
|
677
677
|
|
|
678
678
|
/**
|
|
679
679
|
* Free-form hints (icon, ordering, badge text).
|
|
680
680
|
*
|
|
681
681
|
* @generated from field: optional google.protobuf.Struct hints = 10;
|
|
682
682
|
*/
|
|
683
|
-
hints?: JsonObject;
|
|
683
|
+
hints?: JsonObject | undefined;
|
|
684
684
|
};
|
|
685
685
|
|
|
686
686
|
/**
|
package/src/apps/v1/apps_pb.js
CHANGED