orb-billing 1.0.1 → 1.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/README.md +1 -1
- data/lib/orb/errors.rb +22 -0
- data/lib/orb/internal/type/array_of.rb +6 -1
- data/lib/orb/internal/type/base_model.rb +79 -25
- data/lib/orb/internal/type/boolean.rb +7 -1
- data/lib/orb/internal/type/converter.rb +42 -34
- data/lib/orb/internal/type/enum.rb +10 -2
- data/lib/orb/internal/type/file_input.rb +6 -1
- data/lib/orb/internal/type/hash_of.rb +6 -1
- data/lib/orb/internal/type/union.rb +12 -7
- data/lib/orb/internal/type/unknown.rb +7 -1
- data/lib/orb/models/customers/credits/ledger_create_entry_by_external_id_params.rb +4 -4
- data/lib/orb/models/customers/credits/ledger_create_entry_params.rb +4 -4
- data/lib/orb/models/invoice.rb +4 -1
- data/lib/orb/models/invoice_fetch_upcoming_response.rb +4 -1
- data/lib/orb/models/invoice_line_item_create_response.rb +4 -1
- data/lib/orb/models/new_plan_bps_price.rb +10 -1
- data/lib/orb/models/new_plan_bulk_bps_price.rb +10 -1
- data/lib/orb/models/new_plan_bulk_price.rb +10 -1
- data/lib/orb/models/new_plan_bulk_with_proration_price.rb +10 -1
- data/lib/orb/models/new_plan_cumulative_grouped_bulk_price.rb +10 -1
- data/lib/orb/models/new_plan_grouped_allocation_price.rb +10 -1
- data/lib/orb/models/new_plan_grouped_tiered_package_price.rb +10 -1
- data/lib/orb/models/new_plan_grouped_tiered_price.rb +10 -1
- data/lib/orb/models/new_plan_grouped_with_metered_minimum_price.rb +10 -1
- data/lib/orb/models/new_plan_grouped_with_prorated_minimum_price.rb +10 -1
- data/lib/orb/models/new_plan_matrix_price.rb +10 -1
- data/lib/orb/models/new_plan_matrix_with_allocation_price.rb +10 -1
- data/lib/orb/models/new_plan_matrix_with_display_name_price.rb +10 -1
- data/lib/orb/models/new_plan_max_group_tiered_package_price.rb +10 -1
- data/lib/orb/models/new_plan_package_price.rb +10 -1
- data/lib/orb/models/new_plan_package_with_allocation_price.rb +10 -1
- data/lib/orb/models/new_plan_scalable_matrix_with_tiered_pricing_price.rb +10 -1
- data/lib/orb/models/new_plan_scalable_matrix_with_unit_pricing_price.rb +10 -1
- data/lib/orb/models/new_plan_threshold_total_amount_price.rb +10 -1
- data/lib/orb/models/new_plan_tier_with_proration_price.rb +10 -1
- data/lib/orb/models/new_plan_tiered_bps_price.rb +10 -1
- data/lib/orb/models/new_plan_tiered_package_price.rb +10 -1
- data/lib/orb/models/new_plan_tiered_package_with_minimum_price.rb +10 -1
- data/lib/orb/models/new_plan_tiered_price.rb +10 -1
- data/lib/orb/models/new_plan_tiered_with_minimum_price.rb +10 -1
- data/lib/orb/models/new_plan_unit_price.rb +10 -1
- data/lib/orb/models/new_plan_unit_with_percent_price.rb +10 -1
- data/lib/orb/models/new_plan_unit_with_proration_price.rb +10 -1
- data/lib/orb/models/plan_create_params.rb +185 -37
- data/lib/orb/resources/customers/credits/ledger.rb +6 -6
- data/lib/orb/resources/plans.rb +6 -2
- data/lib/orb/version.rb +1 -1
- data/rbi/orb/errors.rbi +16 -0
- data/rbi/orb/internal/type/boolean.rbi +2 -0
- data/rbi/orb/internal/type/converter.rbi +15 -15
- data/rbi/orb/internal/type/union.rbi +5 -0
- data/rbi/orb/internal/type/unknown.rbi +2 -0
- data/rbi/orb/models/customers/credits/ledger_create_entry_by_external_id_params.rbi +3 -3
- data/rbi/orb/models/customers/credits/ledger_create_entry_params.rbi +3 -3
- data/rbi/orb/models/invoice.rbi +2 -0
- data/rbi/orb/models/invoice_fetch_upcoming_response.rbi +2 -0
- data/rbi/orb/models/invoice_line_item_create_response.rbi +2 -0
- data/rbi/orb/models/new_plan_bps_price.rbi +13 -3
- data/rbi/orb/models/new_plan_bulk_bps_price.rbi +13 -3
- data/rbi/orb/models/new_plan_bulk_price.rbi +13 -3
- data/rbi/orb/models/new_plan_bulk_with_proration_price.rbi +13 -3
- data/rbi/orb/models/new_plan_cumulative_grouped_bulk_price.rbi +13 -3
- data/rbi/orb/models/new_plan_grouped_allocation_price.rbi +13 -3
- data/rbi/orb/models/new_plan_grouped_tiered_package_price.rbi +13 -3
- data/rbi/orb/models/new_plan_grouped_tiered_price.rbi +13 -3
- data/rbi/orb/models/new_plan_grouped_with_metered_minimum_price.rbi +13 -3
- data/rbi/orb/models/new_plan_grouped_with_prorated_minimum_price.rbi +13 -3
- data/rbi/orb/models/new_plan_matrix_price.rbi +13 -3
- data/rbi/orb/models/new_plan_matrix_with_allocation_price.rbi +13 -3
- data/rbi/orb/models/new_plan_matrix_with_display_name_price.rbi +13 -3
- data/rbi/orb/models/new_plan_max_group_tiered_package_price.rbi +13 -3
- data/rbi/orb/models/new_plan_package_price.rbi +13 -3
- data/rbi/orb/models/new_plan_package_with_allocation_price.rbi +13 -3
- data/rbi/orb/models/new_plan_scalable_matrix_with_tiered_pricing_price.rbi +13 -3
- data/rbi/orb/models/new_plan_scalable_matrix_with_unit_pricing_price.rbi +13 -3
- data/rbi/orb/models/new_plan_threshold_total_amount_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tier_with_proration_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tiered_bps_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tiered_package_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tiered_package_with_minimum_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tiered_price.rbi +13 -3
- data/rbi/orb/models/new_plan_tiered_with_minimum_price.rbi +13 -3
- data/rbi/orb/models/new_plan_unit_price.rbi +13 -3
- data/rbi/orb/models/new_plan_unit_with_percent_price.rbi +13 -3
- data/rbi/orb/models/new_plan_unit_with_proration_price.rbi +13 -3
- data/rbi/orb/models/plan_create_params.rbi +415 -135
- data/rbi/orb/resources/customers/credits/ledger.rbi +6 -6
- data/rbi/orb/resources/plans.rbi +11 -33
- data/sig/orb/errors.rbs +9 -0
- data/sig/orb/internal/type/converter.rbs +7 -1
- data/sig/orb/models/customers/credits/ledger_create_entry_by_external_id_params.rbs +1 -1
- data/sig/orb/models/customers/credits/ledger_create_entry_params.rbs +1 -1
- data/sig/orb/models/new_plan_bps_price.rbs +8 -3
- data/sig/orb/models/new_plan_bulk_bps_price.rbs +8 -3
- data/sig/orb/models/new_plan_bulk_price.rbs +8 -3
- data/sig/orb/models/new_plan_bulk_with_proration_price.rbs +8 -3
- data/sig/orb/models/new_plan_cumulative_grouped_bulk_price.rbs +8 -3
- data/sig/orb/models/new_plan_grouped_allocation_price.rbs +8 -3
- data/sig/orb/models/new_plan_grouped_tiered_package_price.rbs +8 -3
- data/sig/orb/models/new_plan_grouped_tiered_price.rbs +8 -3
- data/sig/orb/models/new_plan_grouped_with_metered_minimum_price.rbs +8 -3
- data/sig/orb/models/new_plan_grouped_with_prorated_minimum_price.rbs +8 -3
- data/sig/orb/models/new_plan_matrix_price.rbs +8 -3
- data/sig/orb/models/new_plan_matrix_with_allocation_price.rbs +8 -3
- data/sig/orb/models/new_plan_matrix_with_display_name_price.rbs +8 -3
- data/sig/orb/models/new_plan_max_group_tiered_package_price.rbs +8 -3
- data/sig/orb/models/new_plan_package_price.rbs +8 -3
- data/sig/orb/models/new_plan_package_with_allocation_price.rbs +8 -3
- data/sig/orb/models/new_plan_scalable_matrix_with_tiered_pricing_price.rbs +8 -3
- data/sig/orb/models/new_plan_scalable_matrix_with_unit_pricing_price.rbs +8 -3
- data/sig/orb/models/new_plan_threshold_total_amount_price.rbs +8 -3
- data/sig/orb/models/new_plan_tier_with_proration_price.rbs +8 -3
- data/sig/orb/models/new_plan_tiered_bps_price.rbs +8 -3
- data/sig/orb/models/new_plan_tiered_package_price.rbs +8 -3
- data/sig/orb/models/new_plan_tiered_package_with_minimum_price.rbs +8 -3
- data/sig/orb/models/new_plan_tiered_price.rbs +8 -3
- data/sig/orb/models/new_plan_tiered_with_minimum_price.rbs +8 -3
- data/sig/orb/models/new_plan_unit_price.rbs +8 -3
- data/sig/orb/models/new_plan_unit_with_percent_price.rbs +8 -3
- data/sig/orb/models/new_plan_unit_with_proration_price.rbs +8 -3
- data/sig/orb/models/plan_create_params.rbs +156 -37
- data/sig/orb/resources/customers/credits/ledger.rbs +2 -2
- data/sig/orb/resources/plans.rbs +3 -1
- metadata +2 -2
@@ -4,11 +4,13 @@ module Orb
|
|
4
4
|
{
|
5
5
|
currency: String,
|
6
6
|
name: String,
|
7
|
-
prices: ::Array[Orb::
|
7
|
+
prices: ::Array[Orb::PlanCreateParams::Price],
|
8
|
+
adjustments: ::Array[Orb::PlanCreateParams::Adjustment]?,
|
8
9
|
default_invoice_memo: String?,
|
9
10
|
external_plan_id: String?,
|
10
11
|
metadata: ::Hash[Symbol, String?]?,
|
11
12
|
net_terms: Integer?,
|
13
|
+
plan_phases: ::Array[Orb::PlanCreateParams::PlanPhase]?,
|
12
14
|
status: Orb::Models::PlanCreateParams::status
|
13
15
|
}
|
14
16
|
& Orb::Internal::Type::request_parameters
|
@@ -21,7 +23,9 @@ module Orb
|
|
21
23
|
|
22
24
|
attr_accessor name: String
|
23
25
|
|
24
|
-
attr_accessor prices: ::Array[Orb::
|
26
|
+
attr_accessor prices: ::Array[Orb::PlanCreateParams::Price]
|
27
|
+
|
28
|
+
attr_accessor adjustments: ::Array[Orb::PlanCreateParams::Adjustment]?
|
25
29
|
|
26
30
|
attr_accessor default_invoice_memo: String?
|
27
31
|
|
@@ -31,6 +35,8 @@ module Orb
|
|
31
35
|
|
32
36
|
attr_accessor net_terms: Integer?
|
33
37
|
|
38
|
+
attr_accessor plan_phases: ::Array[Orb::PlanCreateParams::PlanPhase]?
|
39
|
+
|
34
40
|
attr_reader status: Orb::Models::PlanCreateParams::status?
|
35
41
|
|
36
42
|
def status=: (
|
@@ -40,11 +46,13 @@ module Orb
|
|
40
46
|
def initialize: (
|
41
47
|
currency: String,
|
42
48
|
name: String,
|
43
|
-
prices: ::Array[Orb::
|
49
|
+
prices: ::Array[Orb::PlanCreateParams::Price],
|
50
|
+
?adjustments: ::Array[Orb::PlanCreateParams::Adjustment]?,
|
44
51
|
?default_invoice_memo: String?,
|
45
52
|
?external_plan_id: String?,
|
46
53
|
?metadata: ::Hash[Symbol, String?]?,
|
47
54
|
?net_terms: Integer?,
|
55
|
+
?plan_phases: ::Array[Orb::PlanCreateParams::PlanPhase]?,
|
48
56
|
?status: Orb::Models::PlanCreateParams::status,
|
49
57
|
?request_options: Orb::request_opts
|
50
58
|
) -> void
|
@@ -52,49 +60,160 @@ module Orb
|
|
52
60
|
def to_hash: -> {
|
53
61
|
currency: String,
|
54
62
|
name: String,
|
55
|
-
prices: ::Array[Orb::
|
63
|
+
prices: ::Array[Orb::PlanCreateParams::Price],
|
64
|
+
adjustments: ::Array[Orb::PlanCreateParams::Adjustment]?,
|
56
65
|
default_invoice_memo: String?,
|
57
66
|
external_plan_id: String?,
|
58
67
|
metadata: ::Hash[Symbol, String?]?,
|
59
68
|
net_terms: Integer?,
|
69
|
+
plan_phases: ::Array[Orb::PlanCreateParams::PlanPhase]?,
|
60
70
|
status: Orb::Models::PlanCreateParams::status,
|
61
71
|
request_options: Orb::RequestOptions
|
62
72
|
}
|
63
73
|
|
64
74
|
type price =
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
75
|
+
{
|
76
|
+
allocation_price: Orb::NewAllocationPrice?,
|
77
|
+
plan_phase_order: Integer?,
|
78
|
+
price: Orb::Models::PlanCreateParams::Price::price?
|
79
|
+
}
|
80
|
+
|
81
|
+
class Price < Orb::Internal::Type::BaseModel
|
82
|
+
attr_accessor allocation_price: Orb::NewAllocationPrice?
|
83
|
+
|
84
|
+
attr_accessor plan_phase_order: Integer?
|
85
|
+
|
86
|
+
attr_accessor price: Orb::Models::PlanCreateParams::Price::price?
|
87
|
+
|
88
|
+
def initialize: (
|
89
|
+
?allocation_price: Orb::NewAllocationPrice?,
|
90
|
+
?plan_phase_order: Integer?,
|
91
|
+
?price: Orb::Models::PlanCreateParams::Price::price?
|
92
|
+
) -> void
|
93
|
+
|
94
|
+
def to_hash: -> {
|
95
|
+
allocation_price: Orb::NewAllocationPrice?,
|
96
|
+
plan_phase_order: Integer?,
|
97
|
+
price: Orb::Models::PlanCreateParams::Price::price?
|
98
|
+
}
|
99
|
+
|
100
|
+
type price =
|
101
|
+
Orb::NewPlanUnitPrice
|
102
|
+
| Orb::NewPlanPackagePrice
|
103
|
+
| Orb::NewPlanMatrixPrice
|
104
|
+
| Orb::NewPlanTieredPrice
|
105
|
+
| Orb::NewPlanTieredBPSPrice
|
106
|
+
| Orb::NewPlanBPSPrice
|
107
|
+
| Orb::NewPlanBulkBPSPrice
|
108
|
+
| Orb::NewPlanBulkPrice
|
109
|
+
| Orb::NewPlanThresholdTotalAmountPrice
|
110
|
+
| Orb::NewPlanTieredPackagePrice
|
111
|
+
| Orb::NewPlanTieredWithMinimumPrice
|
112
|
+
| Orb::NewPlanUnitWithPercentPrice
|
113
|
+
| Orb::NewPlanPackageWithAllocationPrice
|
114
|
+
| Orb::NewPlanTierWithProrationPrice
|
115
|
+
| Orb::NewPlanUnitWithProrationPrice
|
116
|
+
| Orb::NewPlanGroupedAllocationPrice
|
117
|
+
| Orb::NewPlanGroupedWithProratedMinimumPrice
|
118
|
+
| Orb::NewPlanGroupedWithMeteredMinimumPrice
|
119
|
+
| Orb::NewPlanMatrixWithDisplayNamePrice
|
120
|
+
| Orb::NewPlanBulkWithProrationPrice
|
121
|
+
| Orb::NewPlanGroupedTieredPackagePrice
|
122
|
+
| Orb::NewPlanMaxGroupTieredPackagePrice
|
123
|
+
| Orb::NewPlanScalableMatrixWithUnitPricingPrice
|
124
|
+
| Orb::NewPlanScalableMatrixWithTieredPricingPrice
|
125
|
+
| Orb::NewPlanCumulativeGroupedBulkPrice
|
126
|
+
| Orb::NewPlanTieredPackageWithMinimumPrice
|
127
|
+
| Orb::NewPlanMatrixWithAllocationPrice
|
128
|
+
| Orb::NewPlanGroupedTieredPrice
|
129
|
+
|
130
|
+
module Price
|
131
|
+
extend Orb::Internal::Type::Union
|
132
|
+
|
133
|
+
def self?.variants: -> ::Array[Orb::Models::PlanCreateParams::Price::price]
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
type adjustment =
|
138
|
+
{
|
139
|
+
adjustment: Orb::Models::PlanCreateParams::Adjustment::adjustment,
|
140
|
+
plan_phase_order: Integer?
|
141
|
+
}
|
142
|
+
|
143
|
+
class Adjustment < Orb::Internal::Type::BaseModel
|
144
|
+
attr_accessor adjustment: Orb::Models::PlanCreateParams::Adjustment::adjustment
|
145
|
+
|
146
|
+
attr_accessor plan_phase_order: Integer?
|
147
|
+
|
148
|
+
def initialize: (
|
149
|
+
adjustment: Orb::Models::PlanCreateParams::Adjustment::adjustment,
|
150
|
+
?plan_phase_order: Integer?
|
151
|
+
) -> void
|
152
|
+
|
153
|
+
def to_hash: -> {
|
154
|
+
adjustment: Orb::Models::PlanCreateParams::Adjustment::adjustment,
|
155
|
+
plan_phase_order: Integer?
|
156
|
+
}
|
157
|
+
|
158
|
+
type adjustment =
|
159
|
+
Orb::NewPercentageDiscount
|
160
|
+
| Orb::NewUsageDiscount
|
161
|
+
| Orb::NewAmountDiscount
|
162
|
+
| Orb::NewMinimum
|
163
|
+
| Orb::NewMaximum
|
164
|
+
|
165
|
+
module Adjustment
|
166
|
+
extend Orb::Internal::Type::Union
|
167
|
+
|
168
|
+
def self?.variants: -> ::Array[Orb::Models::PlanCreateParams::Adjustment::adjustment]
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
type plan_phase =
|
173
|
+
{
|
174
|
+
order: Integer,
|
175
|
+
align_billing_with_phase_start_date: bool?,
|
176
|
+
duration: Integer?,
|
177
|
+
duration_unit: Orb::Models::PlanCreateParams::PlanPhase::duration_unit?
|
178
|
+
}
|
179
|
+
|
180
|
+
class PlanPhase < Orb::Internal::Type::BaseModel
|
181
|
+
attr_accessor order: Integer
|
182
|
+
|
183
|
+
attr_accessor align_billing_with_phase_start_date: bool?
|
184
|
+
|
185
|
+
attr_accessor duration: Integer?
|
186
|
+
|
187
|
+
attr_accessor duration_unit: Orb::Models::PlanCreateParams::PlanPhase::duration_unit?
|
188
|
+
|
189
|
+
def initialize: (
|
190
|
+
order: Integer,
|
191
|
+
?align_billing_with_phase_start_date: bool?,
|
192
|
+
?duration: Integer?,
|
193
|
+
?duration_unit: Orb::Models::PlanCreateParams::PlanPhase::duration_unit?
|
194
|
+
) -> void
|
195
|
+
|
196
|
+
def to_hash: -> {
|
197
|
+
order: Integer,
|
198
|
+
align_billing_with_phase_start_date: bool?,
|
199
|
+
duration: Integer?,
|
200
|
+
duration_unit: Orb::Models::PlanCreateParams::PlanPhase::duration_unit?
|
201
|
+
}
|
202
|
+
|
203
|
+
type duration_unit =
|
204
|
+
:daily | :monthly | :quarterly | :semi_annual | :annual
|
205
|
+
|
206
|
+
module DurationUnit
|
207
|
+
extend Orb::Internal::Type::Enum
|
208
|
+
|
209
|
+
DAILY: :daily
|
210
|
+
MONTHLY: :monthly
|
211
|
+
QUARTERLY: :quarterly
|
212
|
+
SEMI_ANNUAL: :semi_annual
|
213
|
+
ANNUAL: :annual
|
214
|
+
|
215
|
+
def self?.values: -> ::Array[Orb::Models::PlanCreateParams::PlanPhase::duration_unit]
|
216
|
+
end
|
98
217
|
end
|
99
218
|
|
100
219
|
type status = :active | :draft
|
@@ -22,12 +22,12 @@ module Orb
|
|
22
22
|
String customer_id,
|
23
23
|
amount: Float,
|
24
24
|
entry_type: Orb::Models::Customers::Credits::LedgerCreateEntryParams::entry_type,
|
25
|
-
expiry_date: Time?,
|
26
25
|
target_expiry_date: Date,
|
27
26
|
block_id: String,
|
28
27
|
?currency: String?,
|
29
28
|
?description: String?,
|
30
29
|
?effective_date: Time?,
|
30
|
+
?expiry_date: Time?,
|
31
31
|
?invoice_settings: Orb::Customers::Credits::LedgerCreateEntryParams::InvoiceSettings?,
|
32
32
|
?metadata: ::Hash[Symbol, String?]?,
|
33
33
|
?per_unit_cost_basis: String?,
|
@@ -39,12 +39,12 @@ module Orb
|
|
39
39
|
String external_customer_id,
|
40
40
|
amount: Float,
|
41
41
|
entry_type: Orb::Models::Customers::Credits::LedgerCreateEntryByExternalIDParams::entry_type,
|
42
|
-
expiry_date: Time?,
|
43
42
|
target_expiry_date: Date,
|
44
43
|
block_id: String,
|
45
44
|
?currency: String?,
|
46
45
|
?description: String?,
|
47
46
|
?effective_date: Time?,
|
47
|
+
?expiry_date: Time?,
|
48
48
|
?invoice_settings: Orb::Customers::Credits::LedgerCreateEntryByExternalIDParams::InvoiceSettings?,
|
49
49
|
?metadata: ::Hash[Symbol, String?]?,
|
50
50
|
?per_unit_cost_basis: String?,
|
data/sig/orb/resources/plans.rbs
CHANGED
@@ -6,11 +6,13 @@ module Orb
|
|
6
6
|
def create: (
|
7
7
|
currency: String,
|
8
8
|
name: String,
|
9
|
-
prices: ::Array[Orb::
|
9
|
+
prices: ::Array[Orb::PlanCreateParams::Price],
|
10
|
+
?adjustments: ::Array[Orb::PlanCreateParams::Adjustment]?,
|
10
11
|
?default_invoice_memo: String?,
|
11
12
|
?external_plan_id: String?,
|
12
13
|
?metadata: ::Hash[Symbol, String?]?,
|
13
14
|
?net_terms: Integer?,
|
15
|
+
?plan_phases: ::Array[Orb::PlanCreateParams::PlanPhase]?,
|
14
16
|
?status: Orb::Models::PlanCreateParams::status,
|
15
17
|
?request_options: Orb::request_opts
|
16
18
|
) -> Orb::Plan
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orb-billing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Orb
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|