@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.
Files changed (49) hide show
  1. package/package.json +1 -1
  2. package/src/analytics/v1/analytics_pb.d.ts +31 -31
  3. package/src/analytics/v1/analytics_pb.js +1 -1
  4. package/src/apps/v1/apps_pb.d.ts +26 -26
  5. package/src/apps/v1/apps_pb.js +1 -1
  6. package/src/apps/v1/apps_service_pb.d.ts +38 -38
  7. package/src/apps/v1/apps_service_pb.js +1 -1
  8. package/src/billing/v1/billing_pb.d.ts +102 -102
  9. package/src/billing/v1/billing_pb.js +1 -1
  10. package/src/buf/validate/validate_pb.d.ts +10 -10
  11. package/src/buf/validate/validate_pb.js +1 -1
  12. package/src/configs/v1/configs_pb.d.ts +51 -51
  13. package/src/configs/v1/configs_pb.js +1 -1
  14. package/src/email/v1/email_pb.d.ts +24 -24
  15. package/src/email/v1/email_pb.js +1 -1
  16. package/src/experiments/v1/experiments_pb.d.ts +50 -50
  17. package/src/experiments/v1/experiments_pb.js +1 -1
  18. package/src/expressions/v1/expressions_pb.d.ts +11 -11
  19. package/src/expressions/v1/expressions_pb.js +1 -1
  20. package/src/hooks/v1/hooks_pb.d.ts +36 -36
  21. package/src/hooks/v1/hooks_pb.js +1 -1
  22. package/src/identity/v1/identity_pb.d.ts +196 -196
  23. package/src/identity/v1/identity_pb.js +1 -1
  24. package/src/models/v1/models_connect.d.ts +32 -1
  25. package/src/models/v1/models_connect.js +32 -1
  26. package/src/models/v1/models_pb.d.ts +265 -52
  27. package/src/models/v1/models_pb.js +58 -2
  28. package/src/notifications/v1/notifications_pb.d.ts +40 -40
  29. package/src/notifications/v1/notifications_pb.js +1 -1
  30. package/src/operations/v1/operations_connect.d.ts +37 -1
  31. package/src/operations/v1/operations_connect.js +37 -1
  32. package/src/operations/v1/operations_pb.d.ts +304 -114
  33. package/src/operations/v1/operations_pb.js +87 -31
  34. package/src/placements/v1/placements_pb.d.ts +24 -24
  35. package/src/placements/v1/placements_pb.js +1 -1
  36. package/src/queue/v1/queue_pb.d.ts +17 -17
  37. package/src/queue/v1/queue_pb.js +1 -1
  38. package/src/records/v1/records_pb.d.ts +136 -136
  39. package/src/records/v1/records_pb.js +1 -1
  40. package/src/schedules/v1/schedules_pb.d.ts +64 -64
  41. package/src/schedules/v1/schedules_pb.js +1 -1
  42. package/src/segments/v1/segments_pb.d.ts +35 -35
  43. package/src/segments/v1/segments_pb.js +1 -1
  44. package/src/settings/v1/settings_pb.d.ts +190 -190
  45. package/src/settings/v1/settings_pb.js +1 -1
  46. package/src/storage/v1/storage_pb.d.ts +41 -41
  47. package/src/storage/v1/storage_pb.js +1 -1
  48. package/src/workers/v1/workers_pb.d.ts +1 -1
  49. package/src/workers/v1/workers_pb.js +1 -1
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v2.11.0 with parameter "import_extension=js"
1
+ // @generated by protoc-gen-es v2.12.0 with parameter "import_extension=js"
2
2
  // @generated from file billing/v1/billing.proto (package billing.v1, syntax proto3)
3
3
  /* eslint-disable */
4
4
 
@@ -64,7 +64,7 @@ export declare type BillingPlan = Message<"billing.v1.BillingPlan"> & {
64
64
  /**
65
65
  * @generated from field: optional string description = 4;
66
66
  */
67
- description?: string;
67
+ description?: string | undefined;
68
68
 
69
69
  /**
70
70
  * @generated from field: int32 price_cents = 5;
@@ -79,7 +79,7 @@ export declare type BillingPlan = Message<"billing.v1.BillingPlan"> & {
79
79
  /**
80
80
  * @generated from field: optional string currency = 7;
81
81
  */
82
- currency?: string;
82
+ currency?: string | undefined;
83
83
 
84
84
  /**
85
85
  * @generated from field: bool is_active = 8;
@@ -109,27 +109,27 @@ export declare type BillingPlan = Message<"billing.v1.BillingPlan"> & {
109
109
  /**
110
110
  * @generated from field: optional string stripe_product_id = 30;
111
111
  */
112
- stripeProductId?: string;
112
+ stripeProductId?: string | undefined;
113
113
 
114
114
  /**
115
115
  * @generated from field: optional string stripe_price_id = 31;
116
116
  */
117
- stripePriceId?: string;
117
+ stripePriceId?: string | undefined;
118
118
 
119
119
  /**
120
120
  * @generated from field: optional string tenant_id = 40;
121
121
  */
122
- tenantId?: string;
122
+ tenantId?: string | undefined;
123
123
 
124
124
  /**
125
125
  * @generated from field: google.protobuf.Timestamp created_at = 50;
126
126
  */
127
- createdAt?: Timestamp;
127
+ createdAt?: Timestamp | undefined;
128
128
 
129
129
  /**
130
130
  * @generated from field: google.protobuf.Timestamp updated_at = 51;
131
131
  */
132
- updatedAt?: Timestamp;
132
+ updatedAt?: Timestamp | undefined;
133
133
  };
134
134
 
135
135
  /**
@@ -164,12 +164,12 @@ export declare type Subscription = Message<"billing.v1.Subscription"> & {
164
164
  *
165
165
  * @generated from field: optional string custom_package_id = 4;
166
166
  */
167
- customPackageId?: string;
167
+ customPackageId?: string | undefined;
168
168
 
169
169
  /**
170
170
  * @generated from field: optional string stripe_subscription_id = 5;
171
171
  */
172
- stripeSubscriptionId?: string;
172
+ stripeSubscriptionId?: string | undefined;
173
173
 
174
174
  /**
175
175
  * @generated from field: string stripe_customer_id = 6;
@@ -188,43 +188,43 @@ export declare type Subscription = Message<"billing.v1.Subscription"> & {
188
188
  *
189
189
  * @generated from field: optional google.protobuf.Timestamp current_period_start = 30;
190
190
  */
191
- currentPeriodStart?: Timestamp;
191
+ currentPeriodStart?: Timestamp | undefined;
192
192
 
193
193
  /**
194
194
  * @generated from field: optional google.protobuf.Timestamp current_period_end = 31;
195
195
  */
196
- currentPeriodEnd?: Timestamp;
196
+ currentPeriodEnd?: Timestamp | undefined;
197
197
 
198
198
  /**
199
199
  * Trial.
200
200
  *
201
201
  * @generated from field: optional google.protobuf.Timestamp trial_start = 35;
202
202
  */
203
- trialStart?: Timestamp;
203
+ trialStart?: Timestamp | undefined;
204
204
 
205
205
  /**
206
206
  * @generated from field: optional google.protobuf.Timestamp trial_end = 36;
207
207
  */
208
- trialEnd?: Timestamp;
208
+ trialEnd?: Timestamp | undefined;
209
209
 
210
210
  /**
211
211
  * Cancellation.
212
212
  *
213
213
  * @generated from field: optional google.protobuf.Timestamp canceled_at = 40;
214
214
  */
215
- canceledAt?: Timestamp;
215
+ canceledAt?: Timestamp | undefined;
216
216
 
217
217
  /**
218
218
  * Timestamps.
219
219
  *
220
220
  * @generated from field: google.protobuf.Timestamp created_at = 50;
221
221
  */
222
- createdAt?: Timestamp;
222
+ createdAt?: Timestamp | undefined;
223
223
 
224
224
  /**
225
225
  * @generated from field: google.protobuf.Timestamp updated_at = 51;
226
226
  */
227
- updatedAt?: Timestamp;
227
+ updatedAt?: Timestamp | undefined;
228
228
 
229
229
  /**
230
230
  * Unified plan reference.
@@ -257,7 +257,7 @@ export declare type CustomPackage = Message<"billing.v1.CustomPackage"> & {
257
257
  /**
258
258
  * @generated from field: optional string project_id = 3;
259
259
  */
260
- projectId?: string;
260
+ projectId?: string | undefined;
261
261
 
262
262
  /**
263
263
  * @generated from field: string name = 4;
@@ -267,27 +267,27 @@ export declare type CustomPackage = Message<"billing.v1.CustomPackage"> & {
267
267
  /**
268
268
  * @generated from field: optional string description = 5;
269
269
  */
270
- description?: string;
270
+ description?: string | undefined;
271
271
 
272
272
  /**
273
273
  * @generated from field: optional int32 base_price_cents = 6;
274
274
  */
275
- basePriceCents?: number;
275
+ basePriceCents?: number | undefined;
276
276
 
277
277
  /**
278
278
  * @generated from field: optional billing.v1.BillingInterval billing_interval = 7;
279
279
  */
280
- billingInterval?: BillingInterval;
280
+ billingInterval?: BillingInterval | undefined;
281
281
 
282
282
  /**
283
283
  * @generated from field: optional string currency = 8;
284
284
  */
285
- currency?: string;
285
+ currency?: string | undefined;
286
286
 
287
287
  /**
288
288
  * @generated from field: optional string base_plan_slug = 9;
289
289
  */
290
- basePlanSlug?: string;
290
+ basePlanSlug?: string | undefined;
291
291
 
292
292
  /**
293
293
  * @generated from field: bool is_active = 10;
@@ -306,12 +306,12 @@ export declare type CustomPackage = Message<"billing.v1.CustomPackage"> & {
306
306
  *
307
307
  * @generated from field: google.protobuf.Timestamp created_at = 50;
308
308
  */
309
- createdAt?: Timestamp;
309
+ createdAt?: Timestamp | undefined;
310
310
 
311
311
  /**
312
312
  * @generated from field: google.protobuf.Timestamp updated_at = 51;
313
313
  */
314
- updatedAt?: Timestamp;
314
+ updatedAt?: Timestamp | undefined;
315
315
  };
316
316
 
317
317
  /**
@@ -342,17 +342,17 @@ export declare type CustomPackageLimit = Message<"billing.v1.CustomPackageLimit"
342
342
  /**
343
343
  * @generated from field: optional int64 included_quantity = 4;
344
344
  */
345
- includedQuantity?: bigint;
345
+ includedQuantity?: bigint | undefined;
346
346
 
347
347
  /**
348
348
  * @generated from field: optional int64 max_quantity = 5;
349
349
  */
350
- maxQuantity?: bigint;
350
+ maxQuantity?: bigint | undefined;
351
351
 
352
352
  /**
353
353
  * @generated from field: optional int32 overage_price_cents = 6;
354
354
  */
355
- overagePriceCents?: number;
355
+ overagePriceCents?: number | undefined;
356
356
  };
357
357
 
358
358
  /**
@@ -378,17 +378,17 @@ export declare type UsageSummary = Message<"billing.v1.UsageSummary"> & {
378
378
  /**
379
379
  * @generated from field: optional string project_id = 3;
380
380
  */
381
- projectId?: string;
381
+ projectId?: string | undefined;
382
382
 
383
383
  /**
384
384
  * @generated from field: google.protobuf.Timestamp period_start = 4;
385
385
  */
386
- periodStart?: Timestamp;
386
+ periodStart?: Timestamp | undefined;
387
387
 
388
388
  /**
389
389
  * @generated from field: google.protobuf.Timestamp period_end = 5;
390
390
  */
391
- periodEnd?: Timestamp;
391
+ periodEnd?: Timestamp | undefined;
392
392
 
393
393
  /**
394
394
  * @generated from field: int64 records_count = 6;
@@ -464,12 +464,12 @@ export declare type UsageAlert = Message<"billing.v1.UsageAlert"> & {
464
464
  /**
465
465
  * @generated from field: google.protobuf.Timestamp period_start = 8;
466
466
  */
467
- periodStart?: Timestamp;
467
+ periodStart?: Timestamp | undefined;
468
468
 
469
469
  /**
470
470
  * @generated from field: optional google.protobuf.Timestamp dismissed_at = 9;
471
471
  */
472
- dismissedAt?: Timestamp;
472
+ dismissedAt?: Timestamp | undefined;
473
473
  };
474
474
 
475
475
  /**
@@ -485,12 +485,12 @@ export declare type ListBillingPlansRequest = Message<"billing.v1.ListBillingPla
485
485
  /**
486
486
  * @generated from field: optional bool include_inactive = 1;
487
487
  */
488
- includeInactive?: boolean;
488
+ includeInactive?: boolean | undefined;
489
489
 
490
490
  /**
491
491
  * @generated from field: optional string tenant_id = 2;
492
492
  */
493
- tenantId?: string;
493
+ tenantId?: string | undefined;
494
494
  };
495
495
 
496
496
  /**
@@ -538,7 +538,7 @@ export declare type GetBillingPlanResponse = Message<"billing.v1.GetBillingPlanR
538
538
  /**
539
539
  * @generated from field: billing.v1.BillingPlan plan = 1;
540
540
  */
541
- plan?: BillingPlan;
541
+ plan?: BillingPlan | undefined;
542
542
  };
543
543
 
544
544
  /**
@@ -566,7 +566,7 @@ export declare type GetDefaultFreePlanResponse = Message<"billing.v1.GetDefaultF
566
566
  /**
567
567
  * @generated from field: billing.v1.BillingPlan plan = 1;
568
568
  */
569
- plan?: BillingPlan;
569
+ plan?: BillingPlan | undefined;
570
570
  };
571
571
 
572
572
  /**
@@ -592,7 +592,7 @@ export declare type CreateBillingPlanRequest = Message<"billing.v1.CreateBilling
592
592
  /**
593
593
  * @generated from field: optional string description = 3;
594
594
  */
595
- description?: string;
595
+ description?: string | undefined;
596
596
 
597
597
  /**
598
598
  * @generated from field: int32 price_cents = 4;
@@ -607,7 +607,7 @@ export declare type CreateBillingPlanRequest = Message<"billing.v1.CreateBilling
607
607
  /**
608
608
  * @generated from field: optional string currency = 6;
609
609
  */
610
- currency?: string;
610
+ currency?: string | undefined;
611
611
 
612
612
  /**
613
613
  * @generated from field: bool is_active = 7;
@@ -637,17 +637,17 @@ export declare type CreateBillingPlanRequest = Message<"billing.v1.CreateBilling
637
637
  /**
638
638
  * @generated from field: optional string stripe_product_id = 30;
639
639
  */
640
- stripeProductId?: string;
640
+ stripeProductId?: string | undefined;
641
641
 
642
642
  /**
643
643
  * @generated from field: optional string stripe_price_id = 31;
644
644
  */
645
- stripePriceId?: string;
645
+ stripePriceId?: string | undefined;
646
646
 
647
647
  /**
648
648
  * @generated from field: optional string tenant_id = 40;
649
649
  */
650
- tenantId?: string;
650
+ tenantId?: string | undefined;
651
651
  };
652
652
 
653
653
  /**
@@ -663,7 +663,7 @@ export declare type CreateBillingPlanResponse = Message<"billing.v1.CreateBillin
663
663
  /**
664
664
  * @generated from field: billing.v1.BillingPlan plan = 1;
665
665
  */
666
- plan?: BillingPlan;
666
+ plan?: BillingPlan | undefined;
667
667
  };
668
668
 
669
669
  /**
@@ -684,42 +684,42 @@ export declare type UpdateBillingPlanRequest = Message<"billing.v1.UpdateBilling
684
684
  /**
685
685
  * @generated from field: optional string slug = 2;
686
686
  */
687
- slug?: string;
687
+ slug?: string | undefined;
688
688
 
689
689
  /**
690
690
  * @generated from field: optional string name = 3;
691
691
  */
692
- name?: string;
692
+ name?: string | undefined;
693
693
 
694
694
  /**
695
695
  * @generated from field: optional string description = 4;
696
696
  */
697
- description?: string;
697
+ description?: string | undefined;
698
698
 
699
699
  /**
700
700
  * @generated from field: optional int32 price_cents = 5;
701
701
  */
702
- priceCents?: number;
702
+ priceCents?: number | undefined;
703
703
 
704
704
  /**
705
705
  * @generated from field: optional billing.v1.BillingInterval billing_interval = 6;
706
706
  */
707
- billingInterval?: BillingInterval;
707
+ billingInterval?: BillingInterval | undefined;
708
708
 
709
709
  /**
710
710
  * @generated from field: optional string currency = 7;
711
711
  */
712
- currency?: string;
712
+ currency?: string | undefined;
713
713
 
714
714
  /**
715
715
  * @generated from field: optional bool is_active = 8;
716
716
  */
717
- isActive?: boolean;
717
+ isActive?: boolean | undefined;
718
718
 
719
719
  /**
720
720
  * @generated from field: optional int32 sort_order = 9;
721
721
  */
722
- sortOrder?: number;
722
+ sortOrder?: number | undefined;
723
723
 
724
724
  /**
725
725
  * @generated from field: repeated billing.v1.PlanLimit limits = 20;
@@ -739,12 +739,12 @@ export declare type UpdateBillingPlanRequest = Message<"billing.v1.UpdateBilling
739
739
  /**
740
740
  * @generated from field: optional string stripe_product_id = 30;
741
741
  */
742
- stripeProductId?: string;
742
+ stripeProductId?: string | undefined;
743
743
 
744
744
  /**
745
745
  * @generated from field: optional string stripe_price_id = 31;
746
746
  */
747
- stripePriceId?: string;
747
+ stripePriceId?: string | undefined;
748
748
  };
749
749
 
750
750
  /**
@@ -760,7 +760,7 @@ export declare type UpdateBillingPlanResponse = Message<"billing.v1.UpdateBillin
760
760
  /**
761
761
  * @generated from field: billing.v1.BillingPlan plan = 1;
762
762
  */
763
- plan?: BillingPlan;
763
+ plan?: BillingPlan | undefined;
764
764
  };
765
765
 
766
766
  /**
@@ -808,7 +808,7 @@ export declare type GetSubscriptionRequest = Message<"billing.v1.GetSubscription
808
808
  /**
809
809
  * @generated from field: optional string tenant_id = 1;
810
810
  */
811
- tenantId?: string;
811
+ tenantId?: string | undefined;
812
812
  };
813
813
 
814
814
  /**
@@ -824,7 +824,7 @@ export declare type GetSubscriptionResponse = Message<"billing.v1.GetSubscriptio
824
824
  /**
825
825
  * @generated from field: billing.v1.Subscription subscription = 1;
826
826
  */
827
- subscription?: Subscription;
827
+ subscription?: Subscription | undefined;
828
828
  };
829
829
 
830
830
  /**
@@ -914,7 +914,7 @@ export declare type CancelSubscriptionRequest = Message<"billing.v1.CancelSubscr
914
914
  /**
915
915
  * @generated from field: optional bool immediate = 1;
916
916
  */
917
- immediate?: boolean;
917
+ immediate?: boolean | undefined;
918
918
  };
919
919
 
920
920
  /**
@@ -930,7 +930,7 @@ export declare type CancelSubscriptionResponse = Message<"billing.v1.CancelSubsc
930
930
  /**
931
931
  * @generated from field: billing.v1.Subscription subscription = 1;
932
932
  */
933
- subscription?: Subscription;
933
+ subscription?: Subscription | undefined;
934
934
  };
935
935
 
936
936
  /**
@@ -958,7 +958,7 @@ export declare type ReactivateSubscriptionResponse = Message<"billing.v1.Reactiv
958
958
  /**
959
959
  * @generated from field: billing.v1.Subscription subscription = 1;
960
960
  */
961
- subscription?: Subscription;
961
+ subscription?: Subscription | undefined;
962
962
  };
963
963
 
964
964
  /**
@@ -974,12 +974,12 @@ export declare type GetUsageSummaryRequest = Message<"billing.v1.GetUsageSummary
974
974
  /**
975
975
  * @generated from field: optional string project_id = 1;
976
976
  */
977
- projectId?: string;
977
+ projectId?: string | undefined;
978
978
 
979
979
  /**
980
980
  * @generated from field: optional string tenant_id = 2;
981
981
  */
982
- tenantId?: string;
982
+ tenantId?: string | undefined;
983
983
  };
984
984
 
985
985
  /**
@@ -995,7 +995,7 @@ export declare type GetUsageSummaryResponse = Message<"billing.v1.GetUsageSummar
995
995
  /**
996
996
  * @generated from field: billing.v1.UsageSummary usage = 1;
997
997
  */
998
- usage?: UsageSummary;
998
+ usage?: UsageSummary | undefined;
999
999
  };
1000
1000
 
1001
1001
  /**
@@ -1016,37 +1016,37 @@ export declare type CreateCustomPackageInput = Message<"billing.v1.CreateCustomP
1016
1016
  /**
1017
1017
  * @generated from field: optional string description = 2;
1018
1018
  */
1019
- description?: string;
1019
+ description?: string | undefined;
1020
1020
 
1021
1021
  /**
1022
1022
  * @generated from field: optional int32 base_price_cents = 3;
1023
1023
  */
1024
- basePriceCents?: number;
1024
+ basePriceCents?: number | undefined;
1025
1025
 
1026
1026
  /**
1027
1027
  * @generated from field: optional billing.v1.BillingInterval billing_interval = 4;
1028
1028
  */
1029
- billingInterval?: BillingInterval;
1029
+ billingInterval?: BillingInterval | undefined;
1030
1030
 
1031
1031
  /**
1032
1032
  * @generated from field: optional string currency = 5;
1033
1033
  */
1034
- currency?: string;
1034
+ currency?: string | undefined;
1035
1035
 
1036
1036
  /**
1037
1037
  * @generated from field: optional string base_plan_slug = 6;
1038
1038
  */
1039
- basePlanSlug?: string;
1039
+ basePlanSlug?: string | undefined;
1040
1040
 
1041
1041
  /**
1042
1042
  * @generated from field: optional string tenant_id = 7;
1043
1043
  */
1044
- tenantId?: string;
1044
+ tenantId?: string | undefined;
1045
1045
 
1046
1046
  /**
1047
1047
  * @generated from field: optional string project_id = 8;
1048
1048
  */
1049
- projectId?: string;
1049
+ projectId?: string | undefined;
1050
1050
 
1051
1051
  /**
1052
1052
  * @generated from field: repeated billing.v1.CreateCustomPackageLimitInput limits = 9;
@@ -1072,17 +1072,17 @@ export declare type CreateCustomPackageLimitInput = Message<"billing.v1.CreateCu
1072
1072
  /**
1073
1073
  * @generated from field: optional int64 included_quantity = 2;
1074
1074
  */
1075
- includedQuantity?: bigint;
1075
+ includedQuantity?: bigint | undefined;
1076
1076
 
1077
1077
  /**
1078
1078
  * @generated from field: optional int64 max_quantity = 3;
1079
1079
  */
1080
- maxQuantity?: bigint;
1080
+ maxQuantity?: bigint | undefined;
1081
1081
 
1082
1082
  /**
1083
1083
  * @generated from field: optional int32 overage_price_cents = 4;
1084
1084
  */
1085
- overagePriceCents?: number;
1085
+ overagePriceCents?: number | undefined;
1086
1086
  };
1087
1087
 
1088
1088
  /**
@@ -1098,7 +1098,7 @@ export declare type CreateCustomPackageRequest = Message<"billing.v1.CreateCusto
1098
1098
  /**
1099
1099
  * @generated from field: billing.v1.CreateCustomPackageInput input = 1;
1100
1100
  */
1101
- input?: CreateCustomPackageInput;
1101
+ input?: CreateCustomPackageInput | undefined;
1102
1102
  };
1103
1103
 
1104
1104
  /**
@@ -1114,7 +1114,7 @@ export declare type CreateCustomPackageResponse = Message<"billing.v1.CreateCust
1114
1114
  /**
1115
1115
  * @generated from field: billing.v1.CustomPackage package = 1;
1116
1116
  */
1117
- package?: CustomPackage;
1117
+ package?: CustomPackage | undefined;
1118
1118
  };
1119
1119
 
1120
1120
  /**
@@ -1130,37 +1130,37 @@ export declare type UpdateCustomPackageInput = Message<"billing.v1.UpdateCustomP
1130
1130
  /**
1131
1131
  * @generated from field: optional string name = 1;
1132
1132
  */
1133
- name?: string;
1133
+ name?: string | undefined;
1134
1134
 
1135
1135
  /**
1136
1136
  * @generated from field: optional string description = 2;
1137
1137
  */
1138
- description?: string;
1138
+ description?: string | undefined;
1139
1139
 
1140
1140
  /**
1141
1141
  * @generated from field: optional int32 base_price_cents = 3;
1142
1142
  */
1143
- basePriceCents?: number;
1143
+ basePriceCents?: number | undefined;
1144
1144
 
1145
1145
  /**
1146
1146
  * @generated from field: optional billing.v1.BillingInterval billing_interval = 4;
1147
1147
  */
1148
- billingInterval?: BillingInterval;
1148
+ billingInterval?: BillingInterval | undefined;
1149
1149
 
1150
1150
  /**
1151
1151
  * @generated from field: optional string currency = 5;
1152
1152
  */
1153
- currency?: string;
1153
+ currency?: string | undefined;
1154
1154
 
1155
1155
  /**
1156
1156
  * @generated from field: optional string base_plan_slug = 6;
1157
1157
  */
1158
- basePlanSlug?: string;
1158
+ basePlanSlug?: string | undefined;
1159
1159
 
1160
1160
  /**
1161
1161
  * @generated from field: optional bool is_active = 7;
1162
1162
  */
1163
- isActive?: boolean;
1163
+ isActive?: boolean | undefined;
1164
1164
 
1165
1165
  /**
1166
1166
  * @generated from field: repeated billing.v1.CreateCustomPackageLimitInput limits = 8;
@@ -1186,7 +1186,7 @@ export declare type UpdateCustomPackageRequest = Message<"billing.v1.UpdateCusto
1186
1186
  /**
1187
1187
  * @generated from field: billing.v1.UpdateCustomPackageInput input = 2;
1188
1188
  */
1189
- input?: UpdateCustomPackageInput;
1189
+ input?: UpdateCustomPackageInput | undefined;
1190
1190
  };
1191
1191
 
1192
1192
  /**
@@ -1202,7 +1202,7 @@ export declare type UpdateCustomPackageResponse = Message<"billing.v1.UpdateCust
1202
1202
  /**
1203
1203
  * @generated from field: billing.v1.CustomPackage package = 1;
1204
1204
  */
1205
- package?: CustomPackage;
1205
+ package?: CustomPackage | undefined;
1206
1206
  };
1207
1207
 
1208
1208
  /**
@@ -1250,7 +1250,7 @@ export declare type ListCustomPackagesRequest = Message<"billing.v1.ListCustomPa
1250
1250
  /**
1251
1251
  * @generated from field: optional string tenant_id = 1;
1252
1252
  */
1253
- tenantId?: string;
1253
+ tenantId?: string | undefined;
1254
1254
  };
1255
1255
 
1256
1256
  /**
@@ -1310,7 +1310,7 @@ export declare type AssignPlanResponse = Message<"billing.v1.AssignPlanResponse"
1310
1310
  /**
1311
1311
  * @generated from field: billing.v1.Subscription subscription = 1;
1312
1312
  */
1313
- subscription?: Subscription;
1313
+ subscription?: Subscription | undefined;
1314
1314
  };
1315
1315
 
1316
1316
  /**
@@ -1347,7 +1347,7 @@ export declare type AssignCustomPackageResponse = Message<"billing.v1.AssignCust
1347
1347
  /**
1348
1348
  * @generated from field: billing.v1.Subscription subscription = 1;
1349
1349
  */
1350
- subscription?: Subscription;
1350
+ subscription?: Subscription | undefined;
1351
1351
  };
1352
1352
 
1353
1353
  /**
@@ -1438,27 +1438,27 @@ export declare type SelfServiceSignupRequest = Message<"billing.v1.SelfServiceSi
1438
1438
  /**
1439
1439
  * @generated from field: optional string plan_slug = 4;
1440
1440
  */
1441
- planSlug?: string;
1441
+ planSlug?: string | undefined;
1442
1442
 
1443
1443
  /**
1444
1444
  * @generated from field: optional string first_name = 5;
1445
1445
  */
1446
- firstName?: string;
1446
+ firstName?: string | undefined;
1447
1447
 
1448
1448
  /**
1449
1449
  * @generated from field: optional string last_name = 6;
1450
1450
  */
1451
- lastName?: string;
1451
+ lastName?: string | undefined;
1452
1452
 
1453
1453
  /**
1454
1454
  * @generated from field: optional string project_name = 7;
1455
1455
  */
1456
- projectName?: string;
1456
+ projectName?: string | undefined;
1457
1457
 
1458
1458
  /**
1459
1459
  * @generated from field: optional bool create_session = 8;
1460
1460
  */
1461
- createSession?: boolean;
1461
+ createSession?: boolean | undefined;
1462
1462
  };
1463
1463
 
1464
1464
  /**
@@ -1484,12 +1484,12 @@ export declare type SignupUser = Message<"billing.v1.SignupUser"> & {
1484
1484
  /**
1485
1485
  * @generated from field: optional string first_name = 3;
1486
1486
  */
1487
- firstName?: string;
1487
+ firstName?: string | undefined;
1488
1488
 
1489
1489
  /**
1490
1490
  * @generated from field: optional string last_name = 4;
1491
1491
  */
1492
- lastName?: string;
1492
+ lastName?: string | undefined;
1493
1493
  };
1494
1494
 
1495
1495
  /**
@@ -1547,22 +1547,22 @@ export declare type SelfServiceSignupResponse = Message<"billing.v1.SelfServiceS
1547
1547
  /**
1548
1548
  * @generated from field: billing.v1.SignupUser user = 1;
1549
1549
  */
1550
- user?: SignupUser;
1550
+ user?: SignupUser | undefined;
1551
1551
 
1552
1552
  /**
1553
1553
  * @generated from field: billing.v1.SignupTenant tenant = 2;
1554
1554
  */
1555
- tenant?: SignupTenant;
1555
+ tenant?: SignupTenant | undefined;
1556
1556
 
1557
1557
  /**
1558
1558
  * @generated from field: billing.v1.SignupProject project = 3;
1559
1559
  */
1560
- project?: SignupProject;
1560
+ project?: SignupProject | undefined;
1561
1561
 
1562
1562
  /**
1563
1563
  * @generated from field: billing.v1.Subscription subscription = 4;
1564
1564
  */
1565
- subscription?: Subscription;
1565
+ subscription?: Subscription | undefined;
1566
1566
  };
1567
1567
 
1568
1568
  /**
@@ -1594,7 +1594,7 @@ export declare type GetBillingCustomPackageResponse = Message<"billing.v1.GetBil
1594
1594
  /**
1595
1595
  * @generated from field: billing.v1.CustomPackage package = 1;
1596
1596
  */
1597
- package?: CustomPackage;
1597
+ package?: CustomPackage | undefined;
1598
1598
  };
1599
1599
 
1600
1600
  /**
@@ -1704,7 +1704,7 @@ export declare type CreateBillingSubscriptionResponse = Message<"billing.v1.Crea
1704
1704
  /**
1705
1705
  * @generated from field: billing.v1.Subscription subscription = 1;
1706
1706
  */
1707
- subscription?: Subscription;
1707
+ subscription?: Subscription | undefined;
1708
1708
  };
1709
1709
 
1710
1710
  /**
@@ -1736,7 +1736,7 @@ export declare type UpdateBillingSubscriptionResponse = Message<"billing.v1.Upda
1736
1736
  /**
1737
1737
  * @generated from field: billing.v1.Subscription subscription = 1;
1738
1738
  */
1739
- subscription?: Subscription;
1739
+ subscription?: Subscription | undefined;
1740
1740
  };
1741
1741
 
1742
1742
  /**
@@ -1762,7 +1762,7 @@ export declare type StripeProduct = Message<"billing.v1.StripeProduct"> & {
1762
1762
  /**
1763
1763
  * @generated from field: optional string description = 3;
1764
1764
  */
1765
- description?: string;
1765
+ description?: string | undefined;
1766
1766
 
1767
1767
  /**
1768
1768
  * @generated from field: bool active = 4;
@@ -1803,7 +1803,7 @@ export declare type StripePrice = Message<"billing.v1.StripePrice"> & {
1803
1803
  /**
1804
1804
  * @generated from field: optional string interval = 4;
1805
1805
  */
1806
- interval?: string;
1806
+ interval?: string | undefined;
1807
1807
 
1808
1808
  /**
1809
1809
  * @generated from field: bool active = 5;