stigg 0.1.0.pre.beta.17 → 0.1.0.pre.beta.18
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 +8 -0
- data/README.md +1 -1
- data/lib/stigg/models/v1/subscription_provision_params.rb +9 -1
- data/lib/stigg/models/v1/subscription_update_params.rb +9 -1
- data/lib/stigg/resources/v1/subscriptions.rb +6 -2
- data/lib/stigg/version.rb +1 -1
- data/rbi/stigg/models/v1/subscription_provision_params.rbi +11 -0
- data/rbi/stigg/models/v1/subscription_update_params.rbi +8 -0
- data/rbi/stigg/resources/v1/subscriptions.rbi +6 -0
- data/sig/stigg/models/v1/subscription_provision_params.rbs +7 -0
- data/sig/stigg/models/v1/subscription_update_params.rbs +5 -0
- data/sig/stigg/resources/v1/subscriptions.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b604a5d9aac911efbc73e16af35f27dfda9ff62a30df96080121c01f87f2e0ad
|
|
4
|
+
data.tar.gz: d6fd1188ee42994a8c88607e79e9e296bbdbd878e653c665a49299b36e7885a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c96c97b81d1b2f8420fc8397475a58011eaaa1fc1431804cab0754c7c589d94d2d2fe53d8e1a30f68ccbca49c6dd54c0b520eac1c872f645cbf18b0259c6ee83
|
|
7
|
+
data.tar.gz: b4ff69b2ba2cad55c8f276a2dc515b0f4c66529d03296f42913470a8ffd0196a9e073931684916b65e9099fd93b42d548de57a95ef75f700ace1d1bddc1b6f9f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.18 (2026-06-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-beta.17...v0.1.0-beta.18](https://github.com/stiggio/stigg-ruby/compare/v0.1.0-beta.17...v0.1.0-beta.18)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** add cancellation_date to subscription provision/update ([03e1cbb](https://github.com/stiggio/stigg-ruby/commit/03e1cbb1d8f8f297d08fb471d3026db5dd49b463))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-beta.17 (2026-06-04)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.1.0-beta.16...v0.1.0-beta.17](https://github.com/stiggio/stigg-ruby/compare/v0.1.0-beta.16...v0.1.0-beta.17)
|
data/README.md
CHANGED
|
@@ -87,6 +87,12 @@ module Stigg
|
|
|
87
87
|
# @return [Stigg::Models::V1::SubscriptionProvisionParams::Budget, nil]
|
|
88
88
|
optional :budget, -> { Stigg::V1::SubscriptionProvisionParams::Budget }, nil?: true
|
|
89
89
|
|
|
90
|
+
# @!attribute cancellation_date
|
|
91
|
+
# Subscription cancellation date
|
|
92
|
+
#
|
|
93
|
+
# @return [Time, nil]
|
|
94
|
+
optional :cancellation_date, Time, api_name: :cancellationDate
|
|
95
|
+
|
|
90
96
|
# @!attribute charges
|
|
91
97
|
#
|
|
92
98
|
# @return [Array<Stigg::Models::V1::SubscriptionProvisionParams::Charge>, nil]
|
|
@@ -182,7 +188,7 @@ module Stigg
|
|
|
182
188
|
# @return [Integer, nil]
|
|
183
189
|
optional :unit_quantity, Integer, api_name: :unitQuantity
|
|
184
190
|
|
|
185
|
-
# @!method initialize(customer_id:, plan_id:, id: nil, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_country_code: nil, billing_cycle_anchor: nil, billing_id: nil, billing_information: nil, billing_period: nil, budget: nil, charges: nil, checkout_options: nil, entitlements: nil, metadata: nil, minimum_spend: nil, paying_customer_id: nil, payment_collection_method: nil, price_overrides: nil, resource_id: nil, salesforce_id: nil, schedule_strategy: nil, start_date: nil, trial_override_configuration: nil, unit_quantity: nil, request_options: {})
|
|
191
|
+
# @!method initialize(customer_id:, plan_id:, id: nil, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_country_code: nil, billing_cycle_anchor: nil, billing_id: nil, billing_information: nil, billing_period: nil, budget: nil, cancellation_date: nil, charges: nil, checkout_options: nil, entitlements: nil, metadata: nil, minimum_spend: nil, paying_customer_id: nil, payment_collection_method: nil, price_overrides: nil, resource_id: nil, salesforce_id: nil, schedule_strategy: nil, start_date: nil, trial_override_configuration: nil, unit_quantity: nil, request_options: {})
|
|
186
192
|
# @param customer_id [String] Customer ID to provision the subscription for
|
|
187
193
|
#
|
|
188
194
|
# @param plan_id [String] Plan ID to provision
|
|
@@ -207,6 +213,8 @@ module Stigg
|
|
|
207
213
|
#
|
|
208
214
|
# @param budget [Stigg::Models::V1::SubscriptionProvisionParams::Budget, nil]
|
|
209
215
|
#
|
|
216
|
+
# @param cancellation_date [Time] Subscription cancellation date
|
|
217
|
+
#
|
|
210
218
|
# @param charges [Array<Stigg::Models::V1::SubscriptionProvisionParams::Charge>]
|
|
211
219
|
#
|
|
212
220
|
# @param checkout_options [Stigg::Models::V1::SubscriptionProvisionParams::CheckoutOptions] Checkout page configuration for payment collection
|
|
@@ -59,6 +59,12 @@ module Stigg
|
|
|
59
59
|
# @return [Stigg::Models::V1::SubscriptionUpdateParams::Budget, nil]
|
|
60
60
|
optional :budget, -> { Stigg::V1::SubscriptionUpdateParams::Budget }, nil?: true
|
|
61
61
|
|
|
62
|
+
# @!attribute cancellation_date
|
|
63
|
+
# Subscription cancellation date
|
|
64
|
+
#
|
|
65
|
+
# @return [Time, nil]
|
|
66
|
+
optional :cancellation_date, Time, api_name: :cancellationDate, nil?: true
|
|
67
|
+
|
|
62
68
|
# @!attribute charges
|
|
63
69
|
#
|
|
64
70
|
# @return [Array<Stigg::Models::V1::SubscriptionUpdateParams::Charge>, nil]
|
|
@@ -111,7 +117,7 @@ module Stigg
|
|
|
111
117
|
# @return [Time, nil]
|
|
112
118
|
optional :trial_end_date, Time, api_name: :trialEndDate
|
|
113
119
|
|
|
114
|
-
# @!method initialize(id:, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_cycle_anchor: nil, billing_information: nil, billing_period: nil, budget: nil, charges: nil, entitlements: nil, metadata: nil, minimum_spend: nil, price_overrides: nil, promotion_code: nil, schedule_strategy: nil, trial_end_date: nil, request_options: {})
|
|
120
|
+
# @!method initialize(id:, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_cycle_anchor: nil, billing_information: nil, billing_period: nil, budget: nil, cancellation_date: nil, charges: nil, entitlements: nil, metadata: nil, minimum_spend: nil, price_overrides: nil, promotion_code: nil, schedule_strategy: nil, trial_end_date: nil, request_options: {})
|
|
115
121
|
# @param id [String]
|
|
116
122
|
#
|
|
117
123
|
# @param addons [Array<Stigg::Models::V1::SubscriptionUpdateParams::Addon>]
|
|
@@ -128,6 +134,8 @@ module Stigg
|
|
|
128
134
|
#
|
|
129
135
|
# @param budget [Stigg::Models::V1::SubscriptionUpdateParams::Budget, nil]
|
|
130
136
|
#
|
|
137
|
+
# @param cancellation_date [Time, nil] Subscription cancellation date
|
|
138
|
+
#
|
|
131
139
|
# @param charges [Array<Stigg::Models::V1::SubscriptionUpdateParams::Charge>]
|
|
132
140
|
#
|
|
133
141
|
# @param entitlements [Array<Stigg::Models::V1::SubscriptionUpdateParams::Entitlement::Feature, Stigg::Models::V1::SubscriptionUpdateParams::Entitlement::Credit>]
|
|
@@ -40,7 +40,7 @@ module Stigg
|
|
|
40
40
|
# Updates an active subscription's properties including billing period, add-ons,
|
|
41
41
|
# unit quantities, and discounts.
|
|
42
42
|
#
|
|
43
|
-
# @overload update(id, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_cycle_anchor: nil, billing_information: nil, billing_period: nil, budget: nil, charges: nil, entitlements: nil, metadata: nil, minimum_spend: nil, price_overrides: nil, promotion_code: nil, schedule_strategy: nil, trial_end_date: nil, request_options: {})
|
|
43
|
+
# @overload update(id, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_cycle_anchor: nil, billing_information: nil, billing_period: nil, budget: nil, cancellation_date: nil, charges: nil, entitlements: nil, metadata: nil, minimum_spend: nil, price_overrides: nil, promotion_code: nil, schedule_strategy: nil, trial_end_date: nil, request_options: {})
|
|
44
44
|
#
|
|
45
45
|
# @param id [String] The unique identifier of the entity
|
|
46
46
|
#
|
|
@@ -58,6 +58,8 @@ module Stigg
|
|
|
58
58
|
#
|
|
59
59
|
# @param budget [Stigg::Models::V1::SubscriptionUpdateParams::Budget, nil]
|
|
60
60
|
#
|
|
61
|
+
# @param cancellation_date [Time, nil] Subscription cancellation date
|
|
62
|
+
#
|
|
61
63
|
# @param charges [Array<Stigg::Models::V1::SubscriptionUpdateParams::Charge>]
|
|
62
64
|
#
|
|
63
65
|
# @param entitlements [Array<Stigg::Models::V1::SubscriptionUpdateParams::Entitlement::Feature, Stigg::Models::V1::SubscriptionUpdateParams::Entitlement::Credit>]
|
|
@@ -305,7 +307,7 @@ module Stigg
|
|
|
305
307
|
# Creates a new subscription for an existing customer. When payment is required
|
|
306
308
|
# and no payment method exists, returns a checkout URL.
|
|
307
309
|
#
|
|
308
|
-
# @overload provision(customer_id:, plan_id:, id: nil, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_country_code: nil, billing_cycle_anchor: nil, billing_id: nil, billing_information: nil, billing_period: nil, budget: nil, charges: nil, checkout_options: nil, entitlements: nil, metadata: nil, minimum_spend: nil, paying_customer_id: nil, payment_collection_method: nil, price_overrides: nil, resource_id: nil, salesforce_id: nil, schedule_strategy: nil, start_date: nil, trial_override_configuration: nil, unit_quantity: nil, request_options: {})
|
|
310
|
+
# @overload provision(customer_id:, plan_id:, id: nil, addons: nil, applied_coupon: nil, await_payment_confirmation: nil, billing_country_code: nil, billing_cycle_anchor: nil, billing_id: nil, billing_information: nil, billing_period: nil, budget: nil, cancellation_date: nil, charges: nil, checkout_options: nil, entitlements: nil, metadata: nil, minimum_spend: nil, paying_customer_id: nil, payment_collection_method: nil, price_overrides: nil, resource_id: nil, salesforce_id: nil, schedule_strategy: nil, start_date: nil, trial_override_configuration: nil, unit_quantity: nil, request_options: {})
|
|
309
311
|
#
|
|
310
312
|
# @param customer_id [String] Customer ID to provision the subscription for
|
|
311
313
|
#
|
|
@@ -331,6 +333,8 @@ module Stigg
|
|
|
331
333
|
#
|
|
332
334
|
# @param budget [Stigg::Models::V1::SubscriptionProvisionParams::Budget, nil]
|
|
333
335
|
#
|
|
336
|
+
# @param cancellation_date [Time] Subscription cancellation date
|
|
337
|
+
#
|
|
334
338
|
# @param charges [Array<Stigg::Models::V1::SubscriptionProvisionParams::Charge>]
|
|
335
339
|
#
|
|
336
340
|
# @param checkout_options [Stigg::Models::V1::SubscriptionProvisionParams::CheckoutOptions] Checkout page configuration for payment collection
|
data/lib/stigg/version.rb
CHANGED
|
@@ -142,6 +142,13 @@ module Stigg
|
|
|
142
142
|
end
|
|
143
143
|
attr_writer :budget
|
|
144
144
|
|
|
145
|
+
# Subscription cancellation date
|
|
146
|
+
sig { returns(T.nilable(Time)) }
|
|
147
|
+
attr_reader :cancellation_date
|
|
148
|
+
|
|
149
|
+
sig { params(cancellation_date: Time).void }
|
|
150
|
+
attr_writer :cancellation_date
|
|
151
|
+
|
|
145
152
|
sig do
|
|
146
153
|
returns(
|
|
147
154
|
T.nilable(T::Array[Stigg::V1::SubscriptionProvisionParams::Charge])
|
|
@@ -344,6 +351,7 @@ module Stigg
|
|
|
344
351
|
Stigg::V1::SubscriptionProvisionParams::BillingPeriod::OrSymbol,
|
|
345
352
|
budget:
|
|
346
353
|
T.nilable(Stigg::V1::SubscriptionProvisionParams::Budget::OrHash),
|
|
354
|
+
cancellation_date: Time,
|
|
347
355
|
charges:
|
|
348
356
|
T::Array[Stigg::V1::SubscriptionProvisionParams::Charge::OrHash],
|
|
349
357
|
checkout_options:
|
|
@@ -400,6 +408,8 @@ module Stigg
|
|
|
400
408
|
# Billing period (MONTHLY or ANNUALLY)
|
|
401
409
|
billing_period: nil,
|
|
402
410
|
budget: nil,
|
|
411
|
+
# Subscription cancellation date
|
|
412
|
+
cancellation_date: nil,
|
|
403
413
|
charges: nil,
|
|
404
414
|
# Checkout page configuration for payment collection
|
|
405
415
|
checkout_options: nil,
|
|
@@ -448,6 +458,7 @@ module Stigg
|
|
|
448
458
|
billing_period:
|
|
449
459
|
Stigg::V1::SubscriptionProvisionParams::BillingPeriod::OrSymbol,
|
|
450
460
|
budget: T.nilable(Stigg::V1::SubscriptionProvisionParams::Budget),
|
|
461
|
+
cancellation_date: Time,
|
|
451
462
|
charges: T::Array[Stigg::V1::SubscriptionProvisionParams::Charge],
|
|
452
463
|
checkout_options:
|
|
453
464
|
Stigg::V1::SubscriptionProvisionParams::CheckoutOptions,
|
|
@@ -109,6 +109,10 @@ module Stigg
|
|
|
109
109
|
end
|
|
110
110
|
attr_writer :budget
|
|
111
111
|
|
|
112
|
+
# Subscription cancellation date
|
|
113
|
+
sig { returns(T.nilable(Time)) }
|
|
114
|
+
attr_accessor :cancellation_date
|
|
115
|
+
|
|
112
116
|
sig do
|
|
113
117
|
returns(
|
|
114
118
|
T.nilable(T::Array[Stigg::V1::SubscriptionUpdateParams::Charge])
|
|
@@ -240,6 +244,7 @@ module Stigg
|
|
|
240
244
|
Stigg::V1::SubscriptionUpdateParams::BillingPeriod::OrSymbol,
|
|
241
245
|
budget:
|
|
242
246
|
T.nilable(Stigg::V1::SubscriptionUpdateParams::Budget::OrHash),
|
|
247
|
+
cancellation_date: T.nilable(Time),
|
|
243
248
|
charges:
|
|
244
249
|
T::Array[Stigg::V1::SubscriptionUpdateParams::Charge::OrHash],
|
|
245
250
|
entitlements:
|
|
@@ -275,6 +280,8 @@ module Stigg
|
|
|
275
280
|
billing_information: nil,
|
|
276
281
|
billing_period: nil,
|
|
277
282
|
budget: nil,
|
|
283
|
+
# Subscription cancellation date
|
|
284
|
+
cancellation_date: nil,
|
|
278
285
|
charges: nil,
|
|
279
286
|
entitlements: nil,
|
|
280
287
|
# Additional metadata for the subscription
|
|
@@ -306,6 +313,7 @@ module Stigg
|
|
|
306
313
|
billing_period:
|
|
307
314
|
Stigg::V1::SubscriptionUpdateParams::BillingPeriod::OrSymbol,
|
|
308
315
|
budget: T.nilable(Stigg::V1::SubscriptionUpdateParams::Budget),
|
|
316
|
+
cancellation_date: T.nilable(Time),
|
|
309
317
|
charges: T::Array[Stigg::V1::SubscriptionUpdateParams::Charge],
|
|
310
318
|
entitlements:
|
|
311
319
|
T::Array[
|
|
@@ -49,6 +49,7 @@ module Stigg
|
|
|
49
49
|
Stigg::V1::SubscriptionUpdateParams::BillingPeriod::OrSymbol,
|
|
50
50
|
budget:
|
|
51
51
|
T.nilable(Stigg::V1::SubscriptionUpdateParams::Budget::OrHash),
|
|
52
|
+
cancellation_date: T.nilable(Time),
|
|
52
53
|
charges:
|
|
53
54
|
T::Array[Stigg::V1::SubscriptionUpdateParams::Charge::OrHash],
|
|
54
55
|
entitlements:
|
|
@@ -85,6 +86,8 @@ module Stigg
|
|
|
85
86
|
billing_information: nil,
|
|
86
87
|
billing_period: nil,
|
|
87
88
|
budget: nil,
|
|
89
|
+
# Subscription cancellation date
|
|
90
|
+
cancellation_date: nil,
|
|
88
91
|
charges: nil,
|
|
89
92
|
entitlements: nil,
|
|
90
93
|
# Additional metadata for the subscription
|
|
@@ -331,6 +334,7 @@ module Stigg
|
|
|
331
334
|
Stigg::V1::SubscriptionProvisionParams::BillingPeriod::OrSymbol,
|
|
332
335
|
budget:
|
|
333
336
|
T.nilable(Stigg::V1::SubscriptionProvisionParams::Budget::OrHash),
|
|
337
|
+
cancellation_date: Time,
|
|
334
338
|
charges:
|
|
335
339
|
T::Array[Stigg::V1::SubscriptionProvisionParams::Charge::OrHash],
|
|
336
340
|
checkout_options:
|
|
@@ -387,6 +391,8 @@ module Stigg
|
|
|
387
391
|
# Billing period (MONTHLY or ANNUALLY)
|
|
388
392
|
billing_period: nil,
|
|
389
393
|
budget: nil,
|
|
394
|
+
# Subscription cancellation date
|
|
395
|
+
cancellation_date: nil,
|
|
390
396
|
charges: nil,
|
|
391
397
|
# Checkout page configuration for payment collection
|
|
392
398
|
checkout_options: nil,
|
|
@@ -15,6 +15,7 @@ module Stigg
|
|
|
15
15
|
billing_information: Stigg::V1::SubscriptionProvisionParams::BillingInformation,
|
|
16
16
|
billing_period: Stigg::Models::V1::SubscriptionProvisionParams::billing_period,
|
|
17
17
|
budget: Stigg::V1::SubscriptionProvisionParams::Budget?,
|
|
18
|
+
cancellation_date: Time,
|
|
18
19
|
charges: ::Array[Stigg::V1::SubscriptionProvisionParams::Charge],
|
|
19
20
|
checkout_options: Stigg::V1::SubscriptionProvisionParams::CheckoutOptions,
|
|
20
21
|
entitlements: ::Array[Stigg::Models::V1::SubscriptionProvisionParams::entitlement],
|
|
@@ -84,6 +85,10 @@ module Stigg
|
|
|
84
85
|
|
|
85
86
|
attr_accessor budget: Stigg::V1::SubscriptionProvisionParams::Budget?
|
|
86
87
|
|
|
88
|
+
attr_reader cancellation_date: Time?
|
|
89
|
+
|
|
90
|
+
def cancellation_date=: (Time) -> Time
|
|
91
|
+
|
|
87
92
|
attr_reader charges: ::Array[Stigg::V1::SubscriptionProvisionParams::Charge]?
|
|
88
93
|
|
|
89
94
|
def charges=: (
|
|
@@ -159,6 +164,7 @@ module Stigg
|
|
|
159
164
|
?billing_information: Stigg::V1::SubscriptionProvisionParams::BillingInformation,
|
|
160
165
|
?billing_period: Stigg::Models::V1::SubscriptionProvisionParams::billing_period,
|
|
161
166
|
?budget: Stigg::V1::SubscriptionProvisionParams::Budget?,
|
|
167
|
+
?cancellation_date: Time,
|
|
162
168
|
?charges: ::Array[Stigg::V1::SubscriptionProvisionParams::Charge],
|
|
163
169
|
?checkout_options: Stigg::V1::SubscriptionProvisionParams::CheckoutOptions,
|
|
164
170
|
?entitlements: ::Array[Stigg::Models::V1::SubscriptionProvisionParams::entitlement],
|
|
@@ -189,6 +195,7 @@ module Stigg
|
|
|
189
195
|
billing_information: Stigg::V1::SubscriptionProvisionParams::BillingInformation,
|
|
190
196
|
billing_period: Stigg::Models::V1::SubscriptionProvisionParams::billing_period,
|
|
191
197
|
budget: Stigg::V1::SubscriptionProvisionParams::Budget?,
|
|
198
|
+
cancellation_date: Time,
|
|
192
199
|
charges: ::Array[Stigg::V1::SubscriptionProvisionParams::Charge],
|
|
193
200
|
checkout_options: Stigg::V1::SubscriptionProvisionParams::CheckoutOptions,
|
|
194
201
|
entitlements: ::Array[Stigg::Models::V1::SubscriptionProvisionParams::entitlement],
|
|
@@ -11,6 +11,7 @@ module Stigg
|
|
|
11
11
|
billing_information: Stigg::V1::SubscriptionUpdateParams::BillingInformation,
|
|
12
12
|
billing_period: Stigg::Models::V1::SubscriptionUpdateParams::billing_period,
|
|
13
13
|
budget: Stigg::V1::SubscriptionUpdateParams::Budget?,
|
|
14
|
+
cancellation_date: Time?,
|
|
14
15
|
charges: ::Array[Stigg::V1::SubscriptionUpdateParams::Charge],
|
|
15
16
|
entitlements: ::Array[Stigg::Models::V1::SubscriptionUpdateParams::entitlement],
|
|
16
17
|
metadata: ::Hash[Symbol, String],
|
|
@@ -64,6 +65,8 @@ module Stigg
|
|
|
64
65
|
|
|
65
66
|
attr_accessor budget: Stigg::V1::SubscriptionUpdateParams::Budget?
|
|
66
67
|
|
|
68
|
+
attr_accessor cancellation_date: Time?
|
|
69
|
+
|
|
67
70
|
attr_reader charges: ::Array[Stigg::V1::SubscriptionUpdateParams::Charge]?
|
|
68
71
|
|
|
69
72
|
def charges=: (
|
|
@@ -111,6 +114,7 @@ module Stigg
|
|
|
111
114
|
?billing_information: Stigg::V1::SubscriptionUpdateParams::BillingInformation,
|
|
112
115
|
?billing_period: Stigg::Models::V1::SubscriptionUpdateParams::billing_period,
|
|
113
116
|
?budget: Stigg::V1::SubscriptionUpdateParams::Budget?,
|
|
117
|
+
?cancellation_date: Time?,
|
|
114
118
|
?charges: ::Array[Stigg::V1::SubscriptionUpdateParams::Charge],
|
|
115
119
|
?entitlements: ::Array[Stigg::Models::V1::SubscriptionUpdateParams::entitlement],
|
|
116
120
|
?metadata: ::Hash[Symbol, String],
|
|
@@ -131,6 +135,7 @@ module Stigg
|
|
|
131
135
|
billing_information: Stigg::V1::SubscriptionUpdateParams::BillingInformation,
|
|
132
136
|
billing_period: Stigg::Models::V1::SubscriptionUpdateParams::billing_period,
|
|
133
137
|
budget: Stigg::V1::SubscriptionUpdateParams::Budget?,
|
|
138
|
+
cancellation_date: Time?,
|
|
134
139
|
charges: ::Array[Stigg::V1::SubscriptionUpdateParams::Charge],
|
|
135
140
|
entitlements: ::Array[Stigg::Models::V1::SubscriptionUpdateParams::entitlement],
|
|
136
141
|
metadata: ::Hash[Symbol, String],
|
|
@@ -22,6 +22,7 @@ module Stigg
|
|
|
22
22
|
?billing_information: Stigg::V1::SubscriptionUpdateParams::BillingInformation,
|
|
23
23
|
?billing_period: Stigg::Models::V1::SubscriptionUpdateParams::billing_period,
|
|
24
24
|
?budget: Stigg::V1::SubscriptionUpdateParams::Budget?,
|
|
25
|
+
?cancellation_date: Time?,
|
|
25
26
|
?charges: ::Array[Stigg::V1::SubscriptionUpdateParams::Charge],
|
|
26
27
|
?entitlements: ::Array[Stigg::Models::V1::SubscriptionUpdateParams::entitlement],
|
|
27
28
|
?metadata: ::Hash[Symbol, String],
|
|
@@ -106,6 +107,7 @@ module Stigg
|
|
|
106
107
|
?billing_information: Stigg::V1::SubscriptionProvisionParams::BillingInformation,
|
|
107
108
|
?billing_period: Stigg::Models::V1::SubscriptionProvisionParams::billing_period,
|
|
108
109
|
?budget: Stigg::V1::SubscriptionProvisionParams::Budget?,
|
|
110
|
+
?cancellation_date: Time,
|
|
109
111
|
?charges: ::Array[Stigg::V1::SubscriptionProvisionParams::Charge],
|
|
110
112
|
?checkout_options: Stigg::V1::SubscriptionProvisionParams::CheckoutOptions,
|
|
111
113
|
?entitlements: ::Array[Stigg::Models::V1::SubscriptionProvisionParams::entitlement],
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stigg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.pre.beta.
|
|
4
|
+
version: 0.1.0.pre.beta.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stigg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|