Skip to content

Commit 9251b92

Browse files
feat(api): api update
1 parent 9783129 commit 9251b92

File tree

116 files changed

+16585
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+16585
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 118
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-ee9adb19e1aafbee7edb5b95348a1629c1de6ca9625f3b49f6064ae10d863bfc.yml
3-
openapi_spec_hash: 42006f5fb95364855be09dc4432073c0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d0eaf664d43e26c42ebf8740ff1b6ee34c4d424c7048a7f04df994cb65627f89.yml
3+
openapi_spec_hash: 4d7622040380d5c7bd2e5a5ec9b86783
44
config_hash: 1f73a949b649ecfe6ec68ba1bb459dc2

src/Orb/Core/ModelBase.cs

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
using BalanceTransactionCreateResponseProperties = Orb.Models.Customers.BalanceTransactions.BalanceTransactionCreateResponseProperties;
3737
using BillableMetricProperties = Orb.Models.Metrics.BillableMetricProperties;
3838
using BulkProperties = Orb.Models.PriceProperties.BulkProperties;
39+
using BulkWithFiltersProperties = Orb.Models.PriceProperties.BulkWithFiltersProperties;
3940
using BulkWithProrationProperties = Orb.Models.PriceProperties.BulkWithProrationProperties;
4041
using CostListByExternalIDParamsProperties = Orb.Models.Customers.Costs.CostListByExternalIDParamsProperties;
4142
using CreatedInvoiceProperties = Orb.Models.ChangedSubscriptionResourcesProperties.CreatedInvoiceProperties;
@@ -498,6 +499,9 @@ public abstract record class ModelBase
498499
new ApiEnumConverter<string, BulkProperties::BillingMode>(),
499500
new ApiEnumConverter<string, BulkProperties::Cadence>(),
500501
new ApiEnumConverter<string, BulkProperties::PriceType>(),
502+
new ApiEnumConverter<string, BulkWithFiltersProperties::BillingMode>(),
503+
new ApiEnumConverter<string, BulkWithFiltersProperties::Cadence>(),
504+
new ApiEnumConverter<string, BulkWithFiltersProperties::PriceType>(),
501505
new ApiEnumConverter<string, PackageProperties::BillingMode>(),
502506
new ApiEnumConverter<string, PackageProperties::Cadence>(),
503507
new ApiEnumConverter<string, PackageProperties::PriceType>(),
@@ -585,6 +589,10 @@ public abstract record class ModelBase
585589
new ApiEnumConverter<string, UsageDiscountProperties::DiscountType>(),
586590
new ApiEnumConverter<string, UsageDiscountIntervalProperties::DiscountType>(),
587591
new ApiEnumConverter<string, PlanVersionPhaseProperties::DurationUnit>(),
592+
new ApiEnumConverter<
593+
string,
594+
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
595+
>(),
588596
new ApiEnumConverter<
589597
string,
590598
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -601,6 +609,10 @@ public abstract record class ModelBase
601609
string,
602610
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.EventOutputProperties.Cadence
603611
>(),
612+
new ApiEnumConverter<
613+
string,
614+
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.ReplacePriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
615+
>(),
604616
new ApiEnumConverter<
605617
string,
606618
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.ReplacePriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -617,6 +629,10 @@ public abstract record class ModelBase
617629
string,
618630
global::Orb.Models.Beta.BetaCreatePlanVersionParamsProperties.ReplacePriceProperties.PriceProperties.EventOutputProperties.Cadence
619631
>(),
632+
new ApiEnumConverter<
633+
string,
634+
global::Orb.Models.Beta.ExternalPlanID.ExternalPlanIDCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
635+
>(),
620636
new ApiEnumConverter<
621637
string,
622638
global::Orb.Models.Beta.ExternalPlanID.ExternalPlanIDCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -633,6 +649,10 @@ public abstract record class ModelBase
633649
string,
634650
global::Orb.Models.Beta.ExternalPlanID.ExternalPlanIDCreatePlanVersionParamsProperties.AddPriceProperties.PriceProperties.EventOutputProperties.Cadence
635651
>(),
652+
new ApiEnumConverter<
653+
string,
654+
global::Orb.Models.Beta.ExternalPlanID.ExternalPlanIDCreatePlanVersionParamsProperties.ReplacePriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
655+
>(),
636656
new ApiEnumConverter<
637657
string,
638658
global::Orb.Models.Beta.ExternalPlanID.ExternalPlanIDCreatePlanVersionParamsProperties.ReplacePriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -748,6 +768,10 @@ public abstract record class ModelBase
748768
new ApiEnumConverter<string, PlanPhaseProperties::DurationUnit>(),
749769
new ApiEnumConverter<string, PlanProperties::Status>(),
750770
new ApiEnumConverter<string, TrialPeriodUnit>(),
771+
new ApiEnumConverter<
772+
string,
773+
global::Orb.Models.Plans.PlanCreateParamsProperties.PriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
774+
>(),
751775
new ApiEnumConverter<
752776
string,
753777
global::Orb.Models.Plans.PlanCreateParamsProperties.PriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -770,6 +794,10 @@ public abstract record class ModelBase
770794
>(),
771795
new ApiEnumConverter<string, PlanCreateParamsProperties::Status>(),
772796
new ApiEnumConverter<string, PlanListParamsProperties::Status>(),
797+
new ApiEnumConverter<
798+
string,
799+
global::Orb.Models.Prices.PriceCreateParamsProperties.BodyProperties.BulkWithFiltersProperties.Cadence
800+
>(),
773801
new ApiEnumConverter<
774802
string,
775803
global::Orb.Models.Prices.PriceCreateParamsProperties.BodyProperties.GroupedWithMinMaxThresholdsProperties.Cadence
@@ -782,6 +810,10 @@ public abstract record class ModelBase
782810
string,
783811
global::Orb.Models.Prices.PriceCreateParamsProperties.BodyProperties.EventOutputProperties.Cadence
784812
>(),
813+
new ApiEnumConverter<
814+
string,
815+
global::Orb.Models.Prices.PriceEvaluateMultipleParamsProperties.PriceEvaluationProperties.PriceProperties.BulkWithFiltersProperties.Cadence
816+
>(),
785817
new ApiEnumConverter<
786818
string,
787819
global::Orb.Models.Prices.PriceEvaluateMultipleParamsProperties.PriceEvaluationProperties.PriceProperties.GroupedWithMinMaxThresholdsProperties.Cadence
@@ -794,6 +826,10 @@ public abstract record class ModelBase
794826
string,
795827
global::Orb.Models.Prices.PriceEvaluateMultipleParamsProperties.PriceEvaluationProperties.PriceProperties.EventOutputProperties.Cadence
796828
>(),
829+
new ApiEnumConverter<
830+
string,
831+
global::Orb.Models.Prices.PriceEvaluatePreviewEventsParamsProperties.PriceEvaluationProperties.PriceProperties.BulkWithFiltersProperties.Cadence
832+
>(),
797833
new ApiEnumConverter<
798834
string,
799835
global::Orb.Models.Prices.PriceEvaluatePreviewEventsParamsProperties.PriceEvaluationProperties.PriceProperties.GroupedWithMinMaxThresholdsProperties.Cadence
@@ -968,6 +1004,10 @@ public abstract record class ModelBase
9681004
string,
9691005
global::Orb.Models.Subscriptions.SubscriptionUsageProperties.GroupedSubscriptionUsageProperties.DataProperties.ViewMode
9701006
>(),
1007+
new ApiEnumConverter<
1008+
string,
1009+
global::Orb.Models.Subscriptions.SubscriptionCreateParamsProperties.AddPriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
1010+
>(),
9711011
new ApiEnumConverter<
9721012
string,
9731013
global::Orb.Models.Subscriptions.SubscriptionCreateParamsProperties.AddPriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -985,6 +1025,10 @@ public abstract record class ModelBase
9851025
global::Orb.Models.Subscriptions.SubscriptionCreateParamsProperties.AddPriceProperties.PriceProperties.EventOutputProperties.Cadence
9861026
>(),
9871027
new ApiEnumConverter<string, ExternalMarketplace>(),
1028+
new ApiEnumConverter<
1029+
string,
1030+
global::Orb.Models.Subscriptions.SubscriptionCreateParamsProperties.ReplacePriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
1031+
>(),
9881032
new ApiEnumConverter<
9891033
string,
9901034
global::Orb.Models.Subscriptions.SubscriptionCreateParamsProperties.ReplacePriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -1006,6 +1050,10 @@ public abstract record class ModelBase
10061050
new ApiEnumConverter<string, SubscriptionFetchCostsParamsProperties::ViewMode>(),
10071051
new ApiEnumConverter<string, SubscriptionFetchUsageParamsProperties::Granularity>(),
10081052
new ApiEnumConverter<string, SubscriptionFetchUsageParamsProperties::ViewMode>(),
1053+
new ApiEnumConverter<
1054+
string,
1055+
global::Orb.Models.Subscriptions.SubscriptionPriceIntervalsParamsProperties.AddProperties.PriceProperties.BulkWithFiltersProperties.Cadence
1056+
>(),
10091057
new ApiEnumConverter<
10101058
string,
10111059
global::Orb.Models.Subscriptions.SubscriptionPriceIntervalsParamsProperties.AddProperties.PriceProperties.GroupedWithMinMaxThresholdsProperties.Cadence
@@ -1023,6 +1071,10 @@ public abstract record class ModelBase
10231071
string,
10241072
SubscriptionSchedulePlanChangeParamsProperties::ChangeOption
10251073
>(),
1074+
new ApiEnumConverter<
1075+
string,
1076+
global::Orb.Models.Subscriptions.SubscriptionSchedulePlanChangeParamsProperties.AddPriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
1077+
>(),
10261078
new ApiEnumConverter<
10271079
string,
10281080
global::Orb.Models.Subscriptions.SubscriptionSchedulePlanChangeParamsProperties.AddPriceProperties.PriceProperties.TieredWithProrationProperties.Cadence
@@ -1043,6 +1095,10 @@ public abstract record class ModelBase
10431095
string,
10441096
SubscriptionSchedulePlanChangeParamsProperties::BillingCycleAlignment
10451097
>(),
1098+
new ApiEnumConverter<
1099+
string,
1100+
global::Orb.Models.Subscriptions.SubscriptionSchedulePlanChangeParamsProperties.ReplacePriceProperties.PriceProperties.BulkWithFiltersProperties.Cadence
1101+
>(),
10461102
new ApiEnumConverter<
10471103
string,
10481104
global::Orb.Models.Subscriptions.SubscriptionSchedulePlanChangeParamsProperties.ReplacePriceProperties.PriceProperties.TieredWithProrationProperties.Cadence

0 commit comments

Comments
 (0)