stigg 0.1.0.pre.beta.17 → 0.1.0.pre.beta.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d84c23f7e07a328a24012ae20f916e439e15d421ff7d162d3cfcf09bb38a2e9c
4
- data.tar.gz: d2b2ca1cc1aa807d10456fa49f0d739f22b459df8dbc7fdc768c683bdb892513
3
+ metadata.gz: 0fbe2aff02891eeb25de57c236e7dd9a477e0364b16b50cee05551ad48f738b5
4
+ data.tar.gz: 3517b62672bb4380dd05dc630de7b6b011f4aa78863ed4c17105e78e59c690e2
5
5
  SHA512:
6
- metadata.gz: 84c6344d2a78abec536ebda3572201f9a031682ca63ee95db9467e5e229f1023f1652f20b776a0fd64a4e27a34d4f17763c01f1e768c6eeb9cb7eabb8e099cb8
7
- data.tar.gz: 1d8271a02feee08875ef796f49479360e7c0e8e131818e484f60aacf19f12de4ee6978b90319abef64e1adc5fbffd8541b4d178ed035e903eb4fc9a91c2c649a
6
+ metadata.gz: 00f0cdfb3114b0541fdd53b6c566557775f2cb5e4908ad08294f78e02a67f1cb9d1e08f5ea362d25bec948587e41adbe0da60944d9e2acf3017b98c67df1ce39
7
+ data.tar.gz: 56d6f54afdc37f95fd95debfdf5d265da1cd5157c99dc7caf09c13ffd969b4079d5f395de9c0f5f0355e50a3b84fbea5d67291a0670496d66310ae3452822847
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-beta.19 (2026-06-08)
4
+
5
+ Full Changelog: [v0.1.0-beta.18...v0.1.0-beta.19](https://github.com/stiggio/stigg-ruby/compare/v0.1.0-beta.18...v0.1.0-beta.19)
6
+
7
+ ### Features
8
+
9
+ * **api:** add connection_status, last_sync_status fields to data_export destination responses ([b421148](https://github.com/stiggio/stigg-ruby/commit/b421148a32c286d560454febc8b9ace477b24902))
10
+
11
+ ## 0.1.0-beta.18 (2026-06-07)
12
+
13
+ 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)
14
+
15
+ ### Features
16
+
17
+ * **api:** add cancellation_date to subscription provision/update ([03e1cbb](https://github.com/stiggio/stigg-ruby/commit/03e1cbb1d8f8f297d08fb471d3026db5dd49b463))
18
+
3
19
  ## 0.1.0-beta.17 (2026-06-04)
4
20
 
5
21
  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
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "stigg", "~> 0.1.0.pre.beta.17"
27
+ gem "stigg", "~> 0.1.0.pre.beta.19"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -51,7 +51,21 @@ module Stigg
51
51
  # @return [String]
52
52
  required :type, String
53
53
 
54
- # @!method initialize(connected_at:, destination_id:, type:)
54
+ # @!attribute connection_status
55
+ # Connection status of the destination (connected, failed)
56
+ #
57
+ # @return [String, nil]
58
+ optional :connection_status, String, api_name: :connectionStatus
59
+
60
+ # @!attribute last_sync_status
61
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
62
+ #
63
+ # @return [Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus, nil]
64
+ optional :last_sync_status,
65
+ -> { Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus },
66
+ api_name: :lastSyncStatus
67
+
68
+ # @!method initialize(connected_at:, destination_id:, type:, connection_status: nil, last_sync_status: nil)
55
69
  # A single destination entry under the DATA_EXPORT integration.
56
70
  #
57
71
  # @param connected_at [String] ISO8601 timestamp of when the destination was connected
@@ -59,6 +73,64 @@ module Stigg
59
73
  # @param destination_id [String] Provider destination ID
60
74
  #
61
75
  # @param type [String] Destination type (snowflake, bigquery, ...)
76
+ #
77
+ # @param connection_status [String] Connection status of the destination (connected, failed)
78
+ #
79
+ # @param last_sync_status [Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus] Latest sync snapshot for the destination, refreshed by the provider webhook
80
+
81
+ # @see Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination#last_sync_status
82
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
83
+ # @!attribute finished_at
84
+ # ISO8601 timestamp of when the latest sync finished
85
+ #
86
+ # @return [String]
87
+ required :finished_at, String, api_name: :finishedAt
88
+
89
+ # @!attribute status
90
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
91
+ #
92
+ # @return [String]
93
+ required :status, String
94
+
95
+ # @!attribute transfer_id
96
+ # Provider transfer ID of the latest sync
97
+ #
98
+ # @return [String]
99
+ required :transfer_id, String, api_name: :transferId
100
+
101
+ # @!attribute blamed_party
102
+ # Party responsible for a failed sync, as reported by the data-export provider
103
+ #
104
+ # @return [String, nil]
105
+ optional :blamed_party, String, api_name: :blamedParty
106
+
107
+ # @!attribute failure_message
108
+ # Customer-friendly failure message, when the latest sync failed
109
+ #
110
+ # @return [String, nil]
111
+ optional :failure_message, String, api_name: :failureMessage
112
+
113
+ # @!attribute rows_transferred
114
+ # Number of rows transferred in the latest sync
115
+ #
116
+ # @return [Float, nil]
117
+ optional :rows_transferred, Float, api_name: :rowsTransferred
118
+
119
+ # @!method initialize(finished_at:, status:, transfer_id:, blamed_party: nil, failure_message: nil, rows_transferred: nil)
120
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
121
+ #
122
+ # @param finished_at [String] ISO8601 timestamp of when the latest sync finished
123
+ #
124
+ # @param status [String] Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
125
+ #
126
+ # @param transfer_id [String] Provider transfer ID of the latest sync
127
+ #
128
+ # @param blamed_party [String] Party responsible for a failed sync, as reported by the data-export provider
129
+ #
130
+ # @param failure_message [String] Customer-friendly failure message, when the latest sync failed
131
+ #
132
+ # @param rows_transferred [Float] Number of rows transferred in the latest sync
133
+ end
62
134
  end
63
135
  end
64
136
  end
@@ -51,7 +51,21 @@ module Stigg
51
51
  # @return [String]
52
52
  required :type, String
53
53
 
54
- # @!method initialize(connected_at:, destination_id:, type:)
54
+ # @!attribute connection_status
55
+ # Connection status of the destination (connected, failed)
56
+ #
57
+ # @return [String, nil]
58
+ optional :connection_status, String, api_name: :connectionStatus
59
+
60
+ # @!attribute last_sync_status
61
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
62
+ #
63
+ # @return [Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus, nil]
64
+ optional :last_sync_status,
65
+ -> { Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus },
66
+ api_name: :lastSyncStatus
67
+
68
+ # @!method initialize(connected_at:, destination_id:, type:, connection_status: nil, last_sync_status: nil)
55
69
  # A single destination entry under the DATA_EXPORT integration.
56
70
  #
57
71
  # @param connected_at [String] ISO8601 timestamp of when the destination was connected
@@ -59,6 +73,64 @@ module Stigg
59
73
  # @param destination_id [String] Provider destination ID
60
74
  #
61
75
  # @param type [String] Destination type (snowflake, bigquery, ...)
76
+ #
77
+ # @param connection_status [String] Connection status of the destination (connected, failed)
78
+ #
79
+ # @param last_sync_status [Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus] Latest sync snapshot for the destination, refreshed by the provider webhook
80
+
81
+ # @see Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination#last_sync_status
82
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
83
+ # @!attribute finished_at
84
+ # ISO8601 timestamp of when the latest sync finished
85
+ #
86
+ # @return [String]
87
+ required :finished_at, String, api_name: :finishedAt
88
+
89
+ # @!attribute status
90
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
91
+ #
92
+ # @return [String]
93
+ required :status, String
94
+
95
+ # @!attribute transfer_id
96
+ # Provider transfer ID of the latest sync
97
+ #
98
+ # @return [String]
99
+ required :transfer_id, String, api_name: :transferId
100
+
101
+ # @!attribute blamed_party
102
+ # Party responsible for a failed sync, as reported by the data-export provider
103
+ #
104
+ # @return [String, nil]
105
+ optional :blamed_party, String, api_name: :blamedParty
106
+
107
+ # @!attribute failure_message
108
+ # Customer-friendly failure message, when the latest sync failed
109
+ #
110
+ # @return [String, nil]
111
+ optional :failure_message, String, api_name: :failureMessage
112
+
113
+ # @!attribute rows_transferred
114
+ # Number of rows transferred in the latest sync
115
+ #
116
+ # @return [Float, nil]
117
+ optional :rows_transferred, Float, api_name: :rowsTransferred
118
+
119
+ # @!method initialize(finished_at:, status:, transfer_id:, blamed_party: nil, failure_message: nil, rows_transferred: nil)
120
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
121
+ #
122
+ # @param finished_at [String] ISO8601 timestamp of when the latest sync finished
123
+ #
124
+ # @param status [String] Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
125
+ #
126
+ # @param transfer_id [String] Provider transfer ID of the latest sync
127
+ #
128
+ # @param blamed_party [String] Party responsible for a failed sync, as reported by the data-export provider
129
+ #
130
+ # @param failure_message [String] Customer-friendly failure message, when the latest sync failed
131
+ #
132
+ # @param rows_transferred [Float] Number of rows transferred in the latest sync
133
+ end
62
134
  end
63
135
  end
64
136
  end
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.1.0.pre.beta.17"
4
+ VERSION = "0.1.0.pre.beta.19"
5
5
  end
@@ -122,12 +122,40 @@ module Stigg
122
122
  sig { returns(String) }
123
123
  attr_accessor :type
124
124
 
125
+ # Connection status of the destination (connected, failed)
126
+ sig { returns(T.nilable(String)) }
127
+ attr_reader :connection_status
128
+
129
+ sig { params(connection_status: String).void }
130
+ attr_writer :connection_status
131
+
132
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
133
+ sig do
134
+ returns(
135
+ T.nilable(
136
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
137
+ )
138
+ )
139
+ end
140
+ attr_reader :last_sync_status
141
+
142
+ sig do
143
+ params(
144
+ last_sync_status:
145
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus::OrHash
146
+ ).void
147
+ end
148
+ attr_writer :last_sync_status
149
+
125
150
  # A single destination entry under the DATA_EXPORT integration.
126
151
  sig do
127
152
  params(
128
153
  connected_at: String,
129
154
  destination_id: String,
130
- type: String
155
+ type: String,
156
+ connection_status: String,
157
+ last_sync_status:
158
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus::OrHash
131
159
  ).returns(T.attached_class)
132
160
  end
133
161
  def self.new(
@@ -136,7 +164,11 @@ module Stigg
136
164
  # Provider destination ID
137
165
  destination_id:,
138
166
  # Destination type (snowflake, bigquery, ...)
139
- type:
167
+ type:,
168
+ # Connection status of the destination (connected, failed)
169
+ connection_status: nil,
170
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
171
+ last_sync_status: nil
140
172
  )
141
173
  end
142
174
 
@@ -145,12 +177,100 @@ module Stigg
145
177
  {
146
178
  connected_at: String,
147
179
  destination_id: String,
148
- type: String
180
+ type: String,
181
+ connection_status: String,
182
+ last_sync_status:
183
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
149
184
  }
150
185
  )
151
186
  end
152
187
  def to_hash
153
188
  end
189
+
190
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
191
+ OrHash =
192
+ T.type_alias do
193
+ T.any(
194
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus,
195
+ Stigg::Internal::AnyHash
196
+ )
197
+ end
198
+
199
+ # ISO8601 timestamp of when the latest sync finished
200
+ sig { returns(String) }
201
+ attr_accessor :finished_at
202
+
203
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
204
+ sig { returns(String) }
205
+ attr_accessor :status
206
+
207
+ # Provider transfer ID of the latest sync
208
+ sig { returns(String) }
209
+ attr_accessor :transfer_id
210
+
211
+ # Party responsible for a failed sync, as reported by the data-export provider
212
+ sig { returns(T.nilable(String)) }
213
+ attr_reader :blamed_party
214
+
215
+ sig { params(blamed_party: String).void }
216
+ attr_writer :blamed_party
217
+
218
+ # Customer-friendly failure message, when the latest sync failed
219
+ sig { returns(T.nilable(String)) }
220
+ attr_reader :failure_message
221
+
222
+ sig { params(failure_message: String).void }
223
+ attr_writer :failure_message
224
+
225
+ # Number of rows transferred in the latest sync
226
+ sig { returns(T.nilable(Float)) }
227
+ attr_reader :rows_transferred
228
+
229
+ sig { params(rows_transferred: Float).void }
230
+ attr_writer :rows_transferred
231
+
232
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
233
+ sig do
234
+ params(
235
+ finished_at: String,
236
+ status: String,
237
+ transfer_id: String,
238
+ blamed_party: String,
239
+ failure_message: String,
240
+ rows_transferred: Float
241
+ ).returns(T.attached_class)
242
+ end
243
+ def self.new(
244
+ # ISO8601 timestamp of when the latest sync finished
245
+ finished_at:,
246
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
247
+ status:,
248
+ # Provider transfer ID of the latest sync
249
+ transfer_id:,
250
+ # Party responsible for a failed sync, as reported by the data-export provider
251
+ blamed_party: nil,
252
+ # Customer-friendly failure message, when the latest sync failed
253
+ failure_message: nil,
254
+ # Number of rows transferred in the latest sync
255
+ rows_transferred: nil
256
+ )
257
+ end
258
+
259
+ sig do
260
+ override.returns(
261
+ {
262
+ finished_at: String,
263
+ status: String,
264
+ transfer_id: String,
265
+ blamed_party: String,
266
+ failure_message: String,
267
+ rows_transferred: Float
268
+ }
269
+ )
270
+ end
271
+ def to_hash
272
+ end
273
+ end
154
274
  end
155
275
  end
156
276
  end
@@ -122,12 +122,40 @@ module Stigg
122
122
  sig { returns(String) }
123
123
  attr_accessor :type
124
124
 
125
+ # Connection status of the destination (connected, failed)
126
+ sig { returns(T.nilable(String)) }
127
+ attr_reader :connection_status
128
+
129
+ sig { params(connection_status: String).void }
130
+ attr_writer :connection_status
131
+
132
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
133
+ sig do
134
+ returns(
135
+ T.nilable(
136
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
137
+ )
138
+ )
139
+ end
140
+ attr_reader :last_sync_status
141
+
142
+ sig do
143
+ params(
144
+ last_sync_status:
145
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus::OrHash
146
+ ).void
147
+ end
148
+ attr_writer :last_sync_status
149
+
125
150
  # A single destination entry under the DATA_EXPORT integration.
126
151
  sig do
127
152
  params(
128
153
  connected_at: String,
129
154
  destination_id: String,
130
- type: String
155
+ type: String,
156
+ connection_status: String,
157
+ last_sync_status:
158
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus::OrHash
131
159
  ).returns(T.attached_class)
132
160
  end
133
161
  def self.new(
@@ -136,7 +164,11 @@ module Stigg
136
164
  # Provider destination ID
137
165
  destination_id:,
138
166
  # Destination type (snowflake, bigquery, ...)
139
- type:
167
+ type:,
168
+ # Connection status of the destination (connected, failed)
169
+ connection_status: nil,
170
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
171
+ last_sync_status: nil
140
172
  )
141
173
  end
142
174
 
@@ -145,12 +177,100 @@ module Stigg
145
177
  {
146
178
  connected_at: String,
147
179
  destination_id: String,
148
- type: String
180
+ type: String,
181
+ connection_status: String,
182
+ last_sync_status:
183
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
149
184
  }
150
185
  )
151
186
  end
152
187
  def to_hash
153
188
  end
189
+
190
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
191
+ OrHash =
192
+ T.type_alias do
193
+ T.any(
194
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus,
195
+ Stigg::Internal::AnyHash
196
+ )
197
+ end
198
+
199
+ # ISO8601 timestamp of when the latest sync finished
200
+ sig { returns(String) }
201
+ attr_accessor :finished_at
202
+
203
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
204
+ sig { returns(String) }
205
+ attr_accessor :status
206
+
207
+ # Provider transfer ID of the latest sync
208
+ sig { returns(String) }
209
+ attr_accessor :transfer_id
210
+
211
+ # Party responsible for a failed sync, as reported by the data-export provider
212
+ sig { returns(T.nilable(String)) }
213
+ attr_reader :blamed_party
214
+
215
+ sig { params(blamed_party: String).void }
216
+ attr_writer :blamed_party
217
+
218
+ # Customer-friendly failure message, when the latest sync failed
219
+ sig { returns(T.nilable(String)) }
220
+ attr_reader :failure_message
221
+
222
+ sig { params(failure_message: String).void }
223
+ attr_writer :failure_message
224
+
225
+ # Number of rows transferred in the latest sync
226
+ sig { returns(T.nilable(Float)) }
227
+ attr_reader :rows_transferred
228
+
229
+ sig { params(rows_transferred: Float).void }
230
+ attr_writer :rows_transferred
231
+
232
+ # Latest sync snapshot for the destination, refreshed by the provider webhook
233
+ sig do
234
+ params(
235
+ finished_at: String,
236
+ status: String,
237
+ transfer_id: String,
238
+ blamed_party: String,
239
+ failure_message: String,
240
+ rows_transferred: Float
241
+ ).returns(T.attached_class)
242
+ end
243
+ def self.new(
244
+ # ISO8601 timestamp of when the latest sync finished
245
+ finished_at:,
246
+ # Sync status (PENDING, RUNNING, INCOMPLETE, FAILED, SUCCEEDED, CANCELLED)
247
+ status:,
248
+ # Provider transfer ID of the latest sync
249
+ transfer_id:,
250
+ # Party responsible for a failed sync, as reported by the data-export provider
251
+ blamed_party: nil,
252
+ # Customer-friendly failure message, when the latest sync failed
253
+ failure_message: nil,
254
+ # Number of rows transferred in the latest sync
255
+ rows_transferred: nil
256
+ )
257
+ end
258
+
259
+ sig do
260
+ override.returns(
261
+ {
262
+ finished_at: String,
263
+ status: String,
264
+ transfer_id: String,
265
+ blamed_party: String,
266
+ failure_message: String,
267
+ rows_transferred: Float
268
+ }
269
+ )
270
+ end
271
+ def to_hash
272
+ end
273
+ end
154
274
  end
155
275
  end
156
276
  end
@@ -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,
@@ -36,7 +36,13 @@ module Stigg
36
36
  }
37
37
 
38
38
  type destination =
39
- { connected_at: String, destination_id: String, type: String }
39
+ {
40
+ connected_at: String,
41
+ destination_id: String,
42
+ type: String,
43
+ connection_status: String,
44
+ last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
45
+ }
40
46
 
41
47
  class Destination < Stigg::Internal::Type::BaseModel
42
48
  attr_accessor connected_at: String
@@ -45,17 +51,79 @@ module Stigg
45
51
 
46
52
  attr_accessor type: String
47
53
 
54
+ attr_reader connection_status: String?
55
+
56
+ def connection_status=: (String) -> String
57
+
58
+ attr_reader last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus?
59
+
60
+ def last_sync_status=: (
61
+ Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
62
+ ) -> Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
63
+
48
64
  def initialize: (
49
65
  connected_at: String,
50
66
  destination_id: String,
51
- type: String
67
+ type: String,
68
+ ?connection_status: String,
69
+ ?last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
52
70
  ) -> void
53
71
 
54
72
  def to_hash: -> {
55
73
  connected_at: String,
56
74
  destination_id: String,
57
- type: String
75
+ type: String,
76
+ connection_status: String,
77
+ last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationCreateResponse::Data::Destination::LastSyncStatus
58
78
  }
79
+
80
+ type last_sync_status =
81
+ {
82
+ finished_at: String,
83
+ status: String,
84
+ transfer_id: String,
85
+ blamed_party: String,
86
+ failure_message: String,
87
+ rows_transferred: Float
88
+ }
89
+
90
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
91
+ attr_accessor finished_at: String
92
+
93
+ attr_accessor status: String
94
+
95
+ attr_accessor transfer_id: String
96
+
97
+ attr_reader blamed_party: String?
98
+
99
+ def blamed_party=: (String) -> String
100
+
101
+ attr_reader failure_message: String?
102
+
103
+ def failure_message=: (String) -> String
104
+
105
+ attr_reader rows_transferred: Float?
106
+
107
+ def rows_transferred=: (Float) -> Float
108
+
109
+ def initialize: (
110
+ finished_at: String,
111
+ status: String,
112
+ transfer_id: String,
113
+ ?blamed_party: String,
114
+ ?failure_message: String,
115
+ ?rows_transferred: Float
116
+ ) -> void
117
+
118
+ def to_hash: -> {
119
+ finished_at: String,
120
+ status: String,
121
+ transfer_id: String,
122
+ blamed_party: String,
123
+ failure_message: String,
124
+ rows_transferred: Float
125
+ }
126
+ end
59
127
  end
60
128
  end
61
129
  end
@@ -36,7 +36,13 @@ module Stigg
36
36
  }
37
37
 
38
38
  type destination =
39
- { connected_at: String, destination_id: String, type: String }
39
+ {
40
+ connected_at: String,
41
+ destination_id: String,
42
+ type: String,
43
+ connection_status: String,
44
+ last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
45
+ }
40
46
 
41
47
  class Destination < Stigg::Internal::Type::BaseModel
42
48
  attr_accessor connected_at: String
@@ -45,17 +51,79 @@ module Stigg
45
51
 
46
52
  attr_accessor type: String
47
53
 
54
+ attr_reader connection_status: String?
55
+
56
+ def connection_status=: (String) -> String
57
+
58
+ attr_reader last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus?
59
+
60
+ def last_sync_status=: (
61
+ Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
62
+ ) -> Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
63
+
48
64
  def initialize: (
49
65
  connected_at: String,
50
66
  destination_id: String,
51
- type: String
67
+ type: String,
68
+ ?connection_status: String,
69
+ ?last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
52
70
  ) -> void
53
71
 
54
72
  def to_hash: -> {
55
73
  connected_at: String,
56
74
  destination_id: String,
57
- type: String
75
+ type: String,
76
+ connection_status: String,
77
+ last_sync_status: Stigg::Models::V1::Events::DataExport::DestinationDeleteResponse::Data::Destination::LastSyncStatus
58
78
  }
79
+
80
+ type last_sync_status =
81
+ {
82
+ finished_at: String,
83
+ status: String,
84
+ transfer_id: String,
85
+ blamed_party: String,
86
+ failure_message: String,
87
+ rows_transferred: Float
88
+ }
89
+
90
+ class LastSyncStatus < Stigg::Internal::Type::BaseModel
91
+ attr_accessor finished_at: String
92
+
93
+ attr_accessor status: String
94
+
95
+ attr_accessor transfer_id: String
96
+
97
+ attr_reader blamed_party: String?
98
+
99
+ def blamed_party=: (String) -> String
100
+
101
+ attr_reader failure_message: String?
102
+
103
+ def failure_message=: (String) -> String
104
+
105
+ attr_reader rows_transferred: Float?
106
+
107
+ def rows_transferred=: (Float) -> Float
108
+
109
+ def initialize: (
110
+ finished_at: String,
111
+ status: String,
112
+ transfer_id: String,
113
+ ?blamed_party: String,
114
+ ?failure_message: String,
115
+ ?rows_transferred: Float
116
+ ) -> void
117
+
118
+ def to_hash: -> {
119
+ finished_at: String,
120
+ status: String,
121
+ transfer_id: String,
122
+ blamed_party: String,
123
+ failure_message: String,
124
+ rows_transferred: Float
125
+ }
126
+ end
59
127
  end
60
128
  end
61
129
  end
@@ -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.17
4
+ version: 0.1.0.pre.beta.19
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-04 00:00:00.000000000 Z
11
+ date: 2026-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi