stigg 0.1.0.pre.alpha.1
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 +7 -0
- data/.ignore +2 -0
- data/CHANGELOG.md +45 -0
- data/README.md +233 -0
- data/SECURITY.md +23 -0
- data/lib/stigg/client.rb +72 -0
- data/lib/stigg/errors.rb +228 -0
- data/lib/stigg/file_part.rb +58 -0
- data/lib/stigg/internal/my_cursor_id_page.rb +82 -0
- data/lib/stigg/internal/transport/base_client.rb +570 -0
- data/lib/stigg/internal/transport/pooled_net_requester.rb +210 -0
- data/lib/stigg/internal/type/array_of.rb +168 -0
- data/lib/stigg/internal/type/base_model.rb +529 -0
- data/lib/stigg/internal/type/base_page.rb +55 -0
- data/lib/stigg/internal/type/boolean.rb +77 -0
- data/lib/stigg/internal/type/converter.rb +327 -0
- data/lib/stigg/internal/type/enum.rb +131 -0
- data/lib/stigg/internal/type/file_input.rb +110 -0
- data/lib/stigg/internal/type/hash_of.rb +188 -0
- data/lib/stigg/internal/type/request_parameters.rb +42 -0
- data/lib/stigg/internal/type/union.rb +237 -0
- data/lib/stigg/internal/type/unknown.rb +81 -0
- data/lib/stigg/internal/util.rb +920 -0
- data/lib/stigg/internal.rb +20 -0
- data/lib/stigg/models/v1/coupon_create_params.rb +221 -0
- data/lib/stigg/models/v1/coupon_create_response.rb +317 -0
- data/lib/stigg/models/v1/coupon_list_params.rb +40 -0
- data/lib/stigg/models/v1/coupon_list_response.rb +324 -0
- data/lib/stigg/models/v1/coupon_retrieve_params.rb +16 -0
- data/lib/stigg/models/v1/coupon_retrieve_response.rb +317 -0
- data/lib/stigg/models/v1/customer_archive_params.rb +16 -0
- data/lib/stigg/models/v1/customer_create_params.rb +185 -0
- data/lib/stigg/models/v1/customer_list_params.rb +40 -0
- data/lib/stigg/models/v1/customer_list_response.rb +223 -0
- data/lib/stigg/models/v1/customer_response.rb +216 -0
- data/lib/stigg/models/v1/customer_retrieve_params.rb +16 -0
- data/lib/stigg/models/v1/customer_unarchive_params.rb +16 -0
- data/lib/stigg/models/v1/customer_update_params.rb +107 -0
- data/lib/stigg/models/v1/customers/payment_method_attach_params.rb +197 -0
- data/lib/stigg/models/v1/customers/payment_method_detach_params.rb +18 -0
- data/lib/stigg/models/v1/customers/promotional_create_params.rb +294 -0
- data/lib/stigg/models/v1/customers/promotional_create_response.rb +268 -0
- data/lib/stigg/models/v1/customers/promotional_revoke_params.rb +24 -0
- data/lib/stigg/models/v1/customers/promotional_revoke_response.rb +268 -0
- data/lib/stigg/models/v1/customers/usage_retrieve_params.rb +56 -0
- data/lib/stigg/models/v1/customers/usage_retrieve_response.rb +145 -0
- data/lib/stigg/models/v1/subscription_create_params.rb +214 -0
- data/lib/stigg/models/v1/subscription_create_response.rb +338 -0
- data/lib/stigg/models/v1/subscription_delegate_params.rb +24 -0
- data/lib/stigg/models/v1/subscription_delegate_response.rb +274 -0
- data/lib/stigg/models/v1/subscription_list_params.rb +60 -0
- data/lib/stigg/models/v1/subscription_list_response.rb +281 -0
- data/lib/stigg/models/v1/subscription_migrate_params.rb +37 -0
- data/lib/stigg/models/v1/subscription_migrate_response.rb +274 -0
- data/lib/stigg/models/v1/subscription_preview_params.rb +644 -0
- data/lib/stigg/models/v1/subscription_preview_response.rb +431 -0
- data/lib/stigg/models/v1/subscription_retrieve_params.rb +16 -0
- data/lib/stigg/models/v1/subscription_retrieve_response.rb +274 -0
- data/lib/stigg/models/v1/subscription_transfer_params.rb +28 -0
- data/lib/stigg/models/v1/subscription_transfer_response.rb +274 -0
- data/lib/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rb +18 -0
- data/lib/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rb +32 -0
- data/lib/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rb +18 -0
- data/lib/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rb +32 -0
- data/lib/stigg/models/v1_create_event_params.rb +87 -0
- data/lib/stigg/models/v1_create_event_response.rb +16 -0
- data/lib/stigg/models/v1_create_usage_params.rb +96 -0
- data/lib/stigg/models/v1_create_usage_response.rb +112 -0
- data/lib/stigg/models.rb +47 -0
- data/lib/stigg/request_options.rb +77 -0
- data/lib/stigg/resources/v1/coupons.rb +95 -0
- data/lib/stigg/resources/v1/customers/payment_method.rb +67 -0
- data/lib/stigg/resources/v1/customers/promotional.rb +69 -0
- data/lib/stigg/resources/v1/customers/usage.rb +59 -0
- data/lib/stigg/resources/v1/customers.rb +177 -0
- data/lib/stigg/resources/v1/subscriptions/future_update.rb +56 -0
- data/lib/stigg/resources/v1/subscriptions.rb +241 -0
- data/lib/stigg/resources/v1.rb +70 -0
- data/lib/stigg/version.rb +5 -0
- data/lib/stigg.rb +108 -0
- data/manifest.yaml +17 -0
- data/rbi/stigg/client.rbi +49 -0
- data/rbi/stigg/errors.rbi +205 -0
- data/rbi/stigg/file_part.rbi +37 -0
- data/rbi/stigg/internal/my_cursor_id_page.rbi +19 -0
- data/rbi/stigg/internal/transport/base_client.rbi +297 -0
- data/rbi/stigg/internal/transport/pooled_net_requester.rbi +82 -0
- data/rbi/stigg/internal/type/array_of.rbi +104 -0
- data/rbi/stigg/internal/type/base_model.rbi +299 -0
- data/rbi/stigg/internal/type/base_page.rbi +42 -0
- data/rbi/stigg/internal/type/boolean.rbi +58 -0
- data/rbi/stigg/internal/type/converter.rbi +204 -0
- data/rbi/stigg/internal/type/enum.rbi +82 -0
- data/rbi/stigg/internal/type/file_input.rbi +58 -0
- data/rbi/stigg/internal/type/hash_of.rbi +104 -0
- data/rbi/stigg/internal/type/request_parameters.rbi +29 -0
- data/rbi/stigg/internal/type/union.rbi +126 -0
- data/rbi/stigg/internal/type/unknown.rbi +58 -0
- data/rbi/stigg/internal/util.rbi +478 -0
- data/rbi/stigg/internal.rbi +16 -0
- data/rbi/stigg/models/v1/coupon_create_params.rbi +758 -0
- data/rbi/stigg/models/v1/coupon_create_response.rbi +986 -0
- data/rbi/stigg/models/v1/coupon_list_params.rbi +70 -0
- data/rbi/stigg/models/v1/coupon_list_response.rbi +983 -0
- data/rbi/stigg/models/v1/coupon_retrieve_params.rbi +29 -0
- data/rbi/stigg/models/v1/coupon_retrieve_response.rbi +986 -0
- data/rbi/stigg/models/v1/customer_archive_params.rbi +29 -0
- data/rbi/stigg/models/v1/customer_create_params.rbi +376 -0
- data/rbi/stigg/models/v1/customer_list_params.rbi +70 -0
- data/rbi/stigg/models/v1/customer_list_response.rbi +447 -0
- data/rbi/stigg/models/v1/customer_response.rbi +423 -0
- data/rbi/stigg/models/v1/customer_retrieve_params.rbi +29 -0
- data/rbi/stigg/models/v1/customer_unarchive_params.rbi +29 -0
- data/rbi/stigg/models/v1/customer_update_params.rbi +226 -0
- data/rbi/stigg/models/v1/customers/payment_method_attach_params.rbi +769 -0
- data/rbi/stigg/models/v1/customers/payment_method_detach_params.rbi +34 -0
- data/rbi/stigg/models/v1/customers/promotional_create_params.rbi +639 -0
- data/rbi/stigg/models/v1/customers/promotional_create_response.rbi +495 -0
- data/rbi/stigg/models/v1/customers/promotional_revoke_params.rbi +42 -0
- data/rbi/stigg/models/v1/customers/promotional_revoke_response.rbi +497 -0
- data/rbi/stigg/models/v1/customers/usage_retrieve_params.rbi +84 -0
- data/rbi/stigg/models/v1/customers/usage_retrieve_response.rbi +353 -0
- data/rbi/stigg/models/v1/subscription_create_params.rbi +394 -0
- data/rbi/stigg/models/v1/subscription_create_response.rbi +668 -0
- data/rbi/stigg/models/v1/subscription_delegate_params.rbi +48 -0
- data/rbi/stigg/models/v1/subscription_delegate_response.rbi +535 -0
- data/rbi/stigg/models/v1/subscription_list_params.rbi +94 -0
- data/rbi/stigg/models/v1/subscription_list_response.rbi +543 -0
- data/rbi/stigg/models/v1/subscription_migrate_params.rbi +99 -0
- data/rbi/stigg/models/v1/subscription_migrate_response.rbi +535 -0
- data/rbi/stigg/models/v1/subscription_preview_params.rbi +1786 -0
- data/rbi/stigg/models/v1/subscription_preview_response.rbi +929 -0
- data/rbi/stigg/models/v1/subscription_retrieve_params.rbi +32 -0
- data/rbi/stigg/models/v1/subscription_retrieve_response.rbi +535 -0
- data/rbi/stigg/models/v1/subscription_transfer_params.rbi +50 -0
- data/rbi/stigg/models/v1/subscription_transfer_response.rbi +535 -0
- data/rbi/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rbi +34 -0
- data/rbi/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rbi +79 -0
- data/rbi/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rbi +34 -0
- data/rbi/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rbi +79 -0
- data/rbi/stigg/models/v1_create_event_params.rbi +160 -0
- data/rbi/stigg/models/v1_create_event_response.rbi +23 -0
- data/rbi/stigg/models/v1_create_usage_params.rbi +177 -0
- data/rbi/stigg/models/v1_create_usage_response.rbi +150 -0
- data/rbi/stigg/models.rbi +9 -0
- data/rbi/stigg/request_options.rbi +55 -0
- data/rbi/stigg/resources/v1/coupons.rbi +79 -0
- data/rbi/stigg/resources/v1/customers/payment_method.rbi +54 -0
- data/rbi/stigg/resources/v1/customers/promotional.rbi +53 -0
- data/rbi/stigg/resources/v1/customers/usage.rbi +45 -0
- data/rbi/stigg/resources/v1/customers.rbi +138 -0
- data/rbi/stigg/resources/v1/subscriptions/future_update.rbi +40 -0
- data/rbi/stigg/resources/v1/subscriptions.rbi +199 -0
- data/rbi/stigg/resources/v1.rbi +49 -0
- data/rbi/stigg/version.rbi +5 -0
- data/sig/stigg/client.rbs +26 -0
- data/sig/stigg/errors.rbs +117 -0
- data/sig/stigg/file_part.rbs +21 -0
- data/sig/stigg/internal/my_cursor_id_page.rbs +11 -0
- data/sig/stigg/internal/transport/base_client.rbs +133 -0
- data/sig/stigg/internal/transport/pooled_net_requester.rbs +48 -0
- data/sig/stigg/internal/type/array_of.rbs +48 -0
- data/sig/stigg/internal/type/base_model.rbs +102 -0
- data/sig/stigg/internal/type/base_page.rbs +24 -0
- data/sig/stigg/internal/type/boolean.rbs +26 -0
- data/sig/stigg/internal/type/converter.rbs +79 -0
- data/sig/stigg/internal/type/enum.rbs +32 -0
- data/sig/stigg/internal/type/file_input.rbs +25 -0
- data/sig/stigg/internal/type/hash_of.rbs +48 -0
- data/sig/stigg/internal/type/request_parameters.rbs +17 -0
- data/sig/stigg/internal/type/union.rbs +52 -0
- data/sig/stigg/internal/type/unknown.rbs +26 -0
- data/sig/stigg/internal/util.rbs +185 -0
- data/sig/stigg/internal.rbs +9 -0
- data/sig/stigg/models/v1/coupon_create_params.rbs +323 -0
- data/sig/stigg/models/v1/coupon_create_response.rbs +392 -0
- data/sig/stigg/models/v1/coupon_list_params.rbs +40 -0
- data/sig/stigg/models/v1/coupon_list_response.rbs +399 -0
- data/sig/stigg/models/v1/coupon_retrieve_params.rbs +17 -0
- data/sig/stigg/models/v1/coupon_retrieve_response.rbs +394 -0
- data/sig/stigg/models/v1/customer_archive_params.rbs +17 -0
- data/sig/stigg/models/v1/customer_create_params.rbs +169 -0
- data/sig/stigg/models/v1/customer_list_params.rbs +40 -0
- data/sig/stigg/models/v1/customer_list_response.rbs +198 -0
- data/sig/stigg/models/v1/customer_response.rbs +188 -0
- data/sig/stigg/models/v1/customer_retrieve_params.rbs +17 -0
- data/sig/stigg/models/v1/customer_unarchive_params.rbs +17 -0
- data/sig/stigg/models/v1/customer_update_params.rbs +110 -0
- data/sig/stigg/models/v1/customers/payment_method_attach_params.rbs +315 -0
- data/sig/stigg/models/v1/customers/payment_method_detach_params.rbs +19 -0
- data/sig/stigg/models/v1/customers/promotional_create_params.rbs +234 -0
- data/sig/stigg/models/v1/customers/promotional_create_response.rbs +209 -0
- data/sig/stigg/models/v1/customers/promotional_revoke_params.rbs +27 -0
- data/sig/stigg/models/v1/customers/promotional_revoke_response.rbs +209 -0
- data/sig/stigg/models/v1/customers/usage_retrieve_params.rbs +54 -0
- data/sig/stigg/models/v1/customers/usage_retrieve_response.rbs +134 -0
- data/sig/stigg/models/v1/subscription_create_params.rbs +199 -0
- data/sig/stigg/models/v1/subscription_create_response.rbs +283 -0
- data/sig/stigg/models/v1/subscription_delegate_params.rbs +26 -0
- data/sig/stigg/models/v1/subscription_delegate_response.rbs +224 -0
- data/sig/stigg/models/v1/subscription_list_params.rbs +58 -0
- data/sig/stigg/models/v1/subscription_list_response.rbs +229 -0
- data/sig/stigg/models/v1/subscription_migrate_params.rbs +43 -0
- data/sig/stigg/models/v1/subscription_migrate_response.rbs +224 -0
- data/sig/stigg/models/v1/subscription_preview_params.rbs +821 -0
- data/sig/stigg/models/v1/subscription_preview_response.rbs +466 -0
- data/sig/stigg/models/v1/subscription_retrieve_params.rbs +17 -0
- data/sig/stigg/models/v1/subscription_retrieve_response.rbs +224 -0
- data/sig/stigg/models/v1/subscription_transfer_params.rbs +26 -0
- data/sig/stigg/models/v1/subscription_transfer_response.rbs +224 -0
- data/sig/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rbs +19 -0
- data/sig/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rbs +34 -0
- data/sig/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rbs +19 -0
- data/sig/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rbs +34 -0
- data/sig/stigg/models/v1_create_event_params.rbs +80 -0
- data/sig/stigg/models/v1_create_event_response.rbs +13 -0
- data/sig/stigg/models/v1_create_usage_params.rbs +90 -0
- data/sig/stigg/models/v1_create_usage_response.rbs +85 -0
- data/sig/stigg/models.rbs +7 -0
- data/sig/stigg/request_options.rbs +34 -0
- data/sig/stigg/resources/v1/coupons.rbs +32 -0
- data/sig/stigg/resources/v1/customers/payment_method.rbs +25 -0
- data/sig/stigg/resources/v1/customers/promotional.rbs +23 -0
- data/sig/stigg/resources/v1/customers/usage.rbs +21 -0
- data/sig/stigg/resources/v1/customers.rbs +58 -0
- data/sig/stigg/resources/v1/subscriptions/future_update.rbs +21 -0
- data/sig/stigg/resources/v1/subscriptions.rbs +76 -0
- data/sig/stigg/resources/v1.rbs +23 -0
- data/sig/stigg/version.rbs +3 -0
- metadata +301 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Coupons
|
|
5
|
+
def create: (
|
|
6
|
+
id: String,
|
|
7
|
+
amounts_off: ::Array[Stigg::V1::CouponCreateParams::AmountsOff]?,
|
|
8
|
+
description: String?,
|
|
9
|
+
duration_in_months: Integer?,
|
|
10
|
+
name: String,
|
|
11
|
+
percent_off: Float?,
|
|
12
|
+
?additional_meta_data: top,
|
|
13
|
+
?request_options: Stigg::request_opts
|
|
14
|
+
) -> Stigg::Models::V1::CouponCreateResponse
|
|
15
|
+
|
|
16
|
+
def retrieve: (
|
|
17
|
+
String id,
|
|
18
|
+
?request_options: Stigg::request_opts
|
|
19
|
+
) -> Stigg::Models::V1::CouponRetrieveResponse
|
|
20
|
+
|
|
21
|
+
def list: (
|
|
22
|
+
?ending_before: String,
|
|
23
|
+
?limit: Integer,
|
|
24
|
+
?starting_after: String,
|
|
25
|
+
?request_options: Stigg::request_opts
|
|
26
|
+
) -> Stigg::Models::V1::CouponListResponse
|
|
27
|
+
|
|
28
|
+
def initialize: (client: Stigg::Client) -> void
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Customers
|
|
5
|
+
class PaymentMethod
|
|
6
|
+
def attach: (
|
|
7
|
+
String id,
|
|
8
|
+
integration_id: String,
|
|
9
|
+
payment_method_id: String,
|
|
10
|
+
vendor_identifier: Stigg::Models::V1::Customers::PaymentMethodAttachParams::vendor_identifier,
|
|
11
|
+
?billing_currency: Stigg::Models::V1::Customers::PaymentMethodAttachParams::billing_currency?,
|
|
12
|
+
?request_options: Stigg::request_opts
|
|
13
|
+
) -> Stigg::V1::CustomerResponse
|
|
14
|
+
|
|
15
|
+
def detach: (
|
|
16
|
+
String id,
|
|
17
|
+
?request_options: Stigg::request_opts
|
|
18
|
+
) -> Stigg::V1::CustomerResponse
|
|
19
|
+
|
|
20
|
+
def initialize: (client: Stigg::Client) -> void
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Customers
|
|
5
|
+
class Promotional
|
|
6
|
+
def create: (
|
|
7
|
+
String customer_id,
|
|
8
|
+
promotional_entitlements: ::Array[Stigg::V1::Customers::PromotionalCreateParams::PromotionalEntitlement],
|
|
9
|
+
?request_options: Stigg::request_opts
|
|
10
|
+
) -> Stigg::Models::V1::Customers::PromotionalCreateResponse
|
|
11
|
+
|
|
12
|
+
def revoke: (
|
|
13
|
+
String feature_id,
|
|
14
|
+
customer_id: String,
|
|
15
|
+
?request_options: Stigg::request_opts
|
|
16
|
+
) -> Stigg::Models::V1::Customers::PromotionalRevokeResponse
|
|
17
|
+
|
|
18
|
+
def initialize: (client: Stigg::Client) -> void
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Customers
|
|
5
|
+
class Usage
|
|
6
|
+
def retrieve: (
|
|
7
|
+
String feature_id,
|
|
8
|
+
customer_id: String,
|
|
9
|
+
start_date: Time,
|
|
10
|
+
?end_date: Time,
|
|
11
|
+
?group_by: String,
|
|
12
|
+
?resource_id: String?,
|
|
13
|
+
?request_options: Stigg::request_opts
|
|
14
|
+
) -> Stigg::Models::V1::Customers::UsageRetrieveResponse
|
|
15
|
+
|
|
16
|
+
def initialize: (client: Stigg::Client) -> void
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Customers
|
|
5
|
+
attr_reader payment_method: Stigg::Resources::V1::Customers::PaymentMethod
|
|
6
|
+
|
|
7
|
+
attr_reader usage: Stigg::Resources::V1::Customers::Usage
|
|
8
|
+
|
|
9
|
+
attr_reader promotional: Stigg::Resources::V1::Customers::Promotional
|
|
10
|
+
|
|
11
|
+
def create: (
|
|
12
|
+
id: String,
|
|
13
|
+
?coupon_id: String?,
|
|
14
|
+
?default_payment_method: Stigg::V1::CustomerCreateParams::DefaultPaymentMethod?,
|
|
15
|
+
?email: String?,
|
|
16
|
+
?integrations: ::Array[Stigg::V1::CustomerCreateParams::Integration],
|
|
17
|
+
?metadata: ::Hash[Symbol, String],
|
|
18
|
+
?name: String?,
|
|
19
|
+
?request_options: Stigg::request_opts
|
|
20
|
+
) -> Stigg::V1::CustomerResponse
|
|
21
|
+
|
|
22
|
+
def retrieve: (
|
|
23
|
+
String id,
|
|
24
|
+
?request_options: Stigg::request_opts
|
|
25
|
+
) -> Stigg::V1::CustomerResponse
|
|
26
|
+
|
|
27
|
+
def update: (
|
|
28
|
+
String id,
|
|
29
|
+
?coupon_id: String?,
|
|
30
|
+
?email: String?,
|
|
31
|
+
?integrations: ::Array[Stigg::V1::CustomerUpdateParams::Integration],
|
|
32
|
+
?metadata: ::Hash[Symbol, String],
|
|
33
|
+
?name: String?,
|
|
34
|
+
?request_options: Stigg::request_opts
|
|
35
|
+
) -> Stigg::V1::CustomerResponse
|
|
36
|
+
|
|
37
|
+
def list: (
|
|
38
|
+
?ending_before: String,
|
|
39
|
+
?limit: Integer,
|
|
40
|
+
?starting_after: String,
|
|
41
|
+
?request_options: Stigg::request_opts
|
|
42
|
+
) -> Stigg::Models::V1::CustomerListResponse
|
|
43
|
+
|
|
44
|
+
def archive: (
|
|
45
|
+
String id,
|
|
46
|
+
?request_options: Stigg::request_opts
|
|
47
|
+
) -> Stigg::V1::CustomerResponse
|
|
48
|
+
|
|
49
|
+
def unarchive: (
|
|
50
|
+
String id,
|
|
51
|
+
?request_options: Stigg::request_opts
|
|
52
|
+
) -> Stigg::V1::CustomerResponse
|
|
53
|
+
|
|
54
|
+
def initialize: (client: Stigg::Client) -> void
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Subscriptions
|
|
5
|
+
class FutureUpdate
|
|
6
|
+
def cancel_pending_payment: (
|
|
7
|
+
String id,
|
|
8
|
+
?request_options: Stigg::request_opts
|
|
9
|
+
) -> Stigg::Models::V1::Subscriptions::FutureUpdateCancelPendingPaymentResponse
|
|
10
|
+
|
|
11
|
+
def cancel_schedule: (
|
|
12
|
+
String id,
|
|
13
|
+
?request_options: Stigg::request_opts
|
|
14
|
+
) -> Stigg::Models::V1::Subscriptions::FutureUpdateCancelScheduleResponse
|
|
15
|
+
|
|
16
|
+
def initialize: (client: Stigg::Client) -> void
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
class Subscriptions
|
|
5
|
+
attr_reader future_update: Stigg::Resources::V1::Subscriptions::FutureUpdate
|
|
6
|
+
|
|
7
|
+
def create: (
|
|
8
|
+
customer_id: String,
|
|
9
|
+
plan_id: String,
|
|
10
|
+
?id: String?,
|
|
11
|
+
?await_payment_confirmation: bool,
|
|
12
|
+
?billing_period: Stigg::Models::V1::SubscriptionCreateParams::billing_period,
|
|
13
|
+
?checkout_options: Stigg::V1::SubscriptionCreateParams::CheckoutOptions,
|
|
14
|
+
?metadata: ::Hash[Symbol, String],
|
|
15
|
+
?paying_customer_id: String?,
|
|
16
|
+
?resource_id: String?,
|
|
17
|
+
?trial_override_configuration: Stigg::V1::SubscriptionCreateParams::TrialOverrideConfiguration,
|
|
18
|
+
?request_options: Stigg::request_opts
|
|
19
|
+
) -> Stigg::Models::V1::SubscriptionCreateResponse
|
|
20
|
+
|
|
21
|
+
def retrieve: (
|
|
22
|
+
String id,
|
|
23
|
+
?request_options: Stigg::request_opts
|
|
24
|
+
) -> Stigg::Models::V1::SubscriptionRetrieveResponse
|
|
25
|
+
|
|
26
|
+
def list: (
|
|
27
|
+
?customer_id: String,
|
|
28
|
+
?ending_before: String,
|
|
29
|
+
?limit: Integer,
|
|
30
|
+
?starting_after: String,
|
|
31
|
+
?status: String,
|
|
32
|
+
?request_options: Stigg::request_opts
|
|
33
|
+
) -> Stigg::Models::V1::SubscriptionListResponse
|
|
34
|
+
|
|
35
|
+
def delegate: (
|
|
36
|
+
String id,
|
|
37
|
+
target_customer_id: String,
|
|
38
|
+
?request_options: Stigg::request_opts
|
|
39
|
+
) -> Stigg::Models::V1::SubscriptionDelegateResponse
|
|
40
|
+
|
|
41
|
+
def migrate: (
|
|
42
|
+
String id,
|
|
43
|
+
?subscription_migration_time: Stigg::Models::V1::SubscriptionMigrateParams::subscription_migration_time,
|
|
44
|
+
?request_options: Stigg::request_opts
|
|
45
|
+
) -> Stigg::Models::V1::SubscriptionMigrateResponse
|
|
46
|
+
|
|
47
|
+
def preview: (
|
|
48
|
+
customer_id: String,
|
|
49
|
+
plan_id: String,
|
|
50
|
+
?addons: ::Array[Stigg::V1::SubscriptionPreviewParams::Addon],
|
|
51
|
+
?applied_coupon: Stigg::V1::SubscriptionPreviewParams::AppliedCoupon,
|
|
52
|
+
?billable_features: ::Array[Stigg::V1::SubscriptionPreviewParams::BillableFeature],
|
|
53
|
+
?billing_country_code: String,
|
|
54
|
+
?billing_information: Stigg::V1::SubscriptionPreviewParams::BillingInformation,
|
|
55
|
+
?billing_period: Stigg::Models::V1::SubscriptionPreviewParams::billing_period,
|
|
56
|
+
?charges: ::Array[Stigg::V1::SubscriptionPreviewParams::Charge],
|
|
57
|
+
?paying_customer_id: String,
|
|
58
|
+
?resource_id: String,
|
|
59
|
+
?schedule_strategy: Stigg::Models::V1::SubscriptionPreviewParams::schedule_strategy,
|
|
60
|
+
?start_date: Time,
|
|
61
|
+
?trial_override_configuration: Stigg::V1::SubscriptionPreviewParams::TrialOverrideConfiguration,
|
|
62
|
+
?unit_quantity: Float,
|
|
63
|
+
?request_options: Stigg::request_opts
|
|
64
|
+
) -> Stigg::Models::V1::SubscriptionPreviewResponse
|
|
65
|
+
|
|
66
|
+
def transfer: (
|
|
67
|
+
String id,
|
|
68
|
+
destination_resource_id: String,
|
|
69
|
+
?request_options: Stigg::request_opts
|
|
70
|
+
) -> Stigg::Models::V1::SubscriptionTransferResponse
|
|
71
|
+
|
|
72
|
+
def initialize: (client: Stigg::Client) -> void
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Stigg
|
|
2
|
+
module Resources
|
|
3
|
+
class V1
|
|
4
|
+
attr_reader customers: Stigg::Resources::V1::Customers
|
|
5
|
+
|
|
6
|
+
attr_reader subscriptions: Stigg::Resources::V1::Subscriptions
|
|
7
|
+
|
|
8
|
+
attr_reader coupons: Stigg::Resources::V1::Coupons
|
|
9
|
+
|
|
10
|
+
def create_event: (
|
|
11
|
+
events: ::Array[Stigg::V1CreateEventParams::Event],
|
|
12
|
+
?request_options: Stigg::request_opts
|
|
13
|
+
) -> Stigg::Models::V1CreateEventResponse
|
|
14
|
+
|
|
15
|
+
def create_usage: (
|
|
16
|
+
usages: ::Array[Stigg::V1CreateUsageParams::Usage],
|
|
17
|
+
?request_options: Stigg::request_opts
|
|
18
|
+
) -> Stigg::Models::V1CreateUsageResponse
|
|
19
|
+
|
|
20
|
+
def initialize: (client: Stigg::Client) -> void
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: stigg
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0.pre.alpha.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Stigg
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-01-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: cgi
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: connection_pool
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description:
|
|
42
|
+
email: ''
|
|
43
|
+
executables: []
|
|
44
|
+
extensions: []
|
|
45
|
+
extra_rdoc_files:
|
|
46
|
+
- README.md
|
|
47
|
+
files:
|
|
48
|
+
- ".ignore"
|
|
49
|
+
- CHANGELOG.md
|
|
50
|
+
- README.md
|
|
51
|
+
- SECURITY.md
|
|
52
|
+
- lib/stigg.rb
|
|
53
|
+
- lib/stigg/client.rb
|
|
54
|
+
- lib/stigg/errors.rb
|
|
55
|
+
- lib/stigg/file_part.rb
|
|
56
|
+
- lib/stigg/internal.rb
|
|
57
|
+
- lib/stigg/internal/my_cursor_id_page.rb
|
|
58
|
+
- lib/stigg/internal/transport/base_client.rb
|
|
59
|
+
- lib/stigg/internal/transport/pooled_net_requester.rb
|
|
60
|
+
- lib/stigg/internal/type/array_of.rb
|
|
61
|
+
- lib/stigg/internal/type/base_model.rb
|
|
62
|
+
- lib/stigg/internal/type/base_page.rb
|
|
63
|
+
- lib/stigg/internal/type/boolean.rb
|
|
64
|
+
- lib/stigg/internal/type/converter.rb
|
|
65
|
+
- lib/stigg/internal/type/enum.rb
|
|
66
|
+
- lib/stigg/internal/type/file_input.rb
|
|
67
|
+
- lib/stigg/internal/type/hash_of.rb
|
|
68
|
+
- lib/stigg/internal/type/request_parameters.rb
|
|
69
|
+
- lib/stigg/internal/type/union.rb
|
|
70
|
+
- lib/stigg/internal/type/unknown.rb
|
|
71
|
+
- lib/stigg/internal/util.rb
|
|
72
|
+
- lib/stigg/models.rb
|
|
73
|
+
- lib/stigg/models/v1/coupon_create_params.rb
|
|
74
|
+
- lib/stigg/models/v1/coupon_create_response.rb
|
|
75
|
+
- lib/stigg/models/v1/coupon_list_params.rb
|
|
76
|
+
- lib/stigg/models/v1/coupon_list_response.rb
|
|
77
|
+
- lib/stigg/models/v1/coupon_retrieve_params.rb
|
|
78
|
+
- lib/stigg/models/v1/coupon_retrieve_response.rb
|
|
79
|
+
- lib/stigg/models/v1/customer_archive_params.rb
|
|
80
|
+
- lib/stigg/models/v1/customer_create_params.rb
|
|
81
|
+
- lib/stigg/models/v1/customer_list_params.rb
|
|
82
|
+
- lib/stigg/models/v1/customer_list_response.rb
|
|
83
|
+
- lib/stigg/models/v1/customer_response.rb
|
|
84
|
+
- lib/stigg/models/v1/customer_retrieve_params.rb
|
|
85
|
+
- lib/stigg/models/v1/customer_unarchive_params.rb
|
|
86
|
+
- lib/stigg/models/v1/customer_update_params.rb
|
|
87
|
+
- lib/stigg/models/v1/customers/payment_method_attach_params.rb
|
|
88
|
+
- lib/stigg/models/v1/customers/payment_method_detach_params.rb
|
|
89
|
+
- lib/stigg/models/v1/customers/promotional_create_params.rb
|
|
90
|
+
- lib/stigg/models/v1/customers/promotional_create_response.rb
|
|
91
|
+
- lib/stigg/models/v1/customers/promotional_revoke_params.rb
|
|
92
|
+
- lib/stigg/models/v1/customers/promotional_revoke_response.rb
|
|
93
|
+
- lib/stigg/models/v1/customers/usage_retrieve_params.rb
|
|
94
|
+
- lib/stigg/models/v1/customers/usage_retrieve_response.rb
|
|
95
|
+
- lib/stigg/models/v1/subscription_create_params.rb
|
|
96
|
+
- lib/stigg/models/v1/subscription_create_response.rb
|
|
97
|
+
- lib/stigg/models/v1/subscription_delegate_params.rb
|
|
98
|
+
- lib/stigg/models/v1/subscription_delegate_response.rb
|
|
99
|
+
- lib/stigg/models/v1/subscription_list_params.rb
|
|
100
|
+
- lib/stigg/models/v1/subscription_list_response.rb
|
|
101
|
+
- lib/stigg/models/v1/subscription_migrate_params.rb
|
|
102
|
+
- lib/stigg/models/v1/subscription_migrate_response.rb
|
|
103
|
+
- lib/stigg/models/v1/subscription_preview_params.rb
|
|
104
|
+
- lib/stigg/models/v1/subscription_preview_response.rb
|
|
105
|
+
- lib/stigg/models/v1/subscription_retrieve_params.rb
|
|
106
|
+
- lib/stigg/models/v1/subscription_retrieve_response.rb
|
|
107
|
+
- lib/stigg/models/v1/subscription_transfer_params.rb
|
|
108
|
+
- lib/stigg/models/v1/subscription_transfer_response.rb
|
|
109
|
+
- lib/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rb
|
|
110
|
+
- lib/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rb
|
|
111
|
+
- lib/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rb
|
|
112
|
+
- lib/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rb
|
|
113
|
+
- lib/stigg/models/v1_create_event_params.rb
|
|
114
|
+
- lib/stigg/models/v1_create_event_response.rb
|
|
115
|
+
- lib/stigg/models/v1_create_usage_params.rb
|
|
116
|
+
- lib/stigg/models/v1_create_usage_response.rb
|
|
117
|
+
- lib/stigg/request_options.rb
|
|
118
|
+
- lib/stigg/resources/v1.rb
|
|
119
|
+
- lib/stigg/resources/v1/coupons.rb
|
|
120
|
+
- lib/stigg/resources/v1/customers.rb
|
|
121
|
+
- lib/stigg/resources/v1/customers/payment_method.rb
|
|
122
|
+
- lib/stigg/resources/v1/customers/promotional.rb
|
|
123
|
+
- lib/stigg/resources/v1/customers/usage.rb
|
|
124
|
+
- lib/stigg/resources/v1/subscriptions.rb
|
|
125
|
+
- lib/stigg/resources/v1/subscriptions/future_update.rb
|
|
126
|
+
- lib/stigg/version.rb
|
|
127
|
+
- manifest.yaml
|
|
128
|
+
- rbi/stigg/client.rbi
|
|
129
|
+
- rbi/stigg/errors.rbi
|
|
130
|
+
- rbi/stigg/file_part.rbi
|
|
131
|
+
- rbi/stigg/internal.rbi
|
|
132
|
+
- rbi/stigg/internal/my_cursor_id_page.rbi
|
|
133
|
+
- rbi/stigg/internal/transport/base_client.rbi
|
|
134
|
+
- rbi/stigg/internal/transport/pooled_net_requester.rbi
|
|
135
|
+
- rbi/stigg/internal/type/array_of.rbi
|
|
136
|
+
- rbi/stigg/internal/type/base_model.rbi
|
|
137
|
+
- rbi/stigg/internal/type/base_page.rbi
|
|
138
|
+
- rbi/stigg/internal/type/boolean.rbi
|
|
139
|
+
- rbi/stigg/internal/type/converter.rbi
|
|
140
|
+
- rbi/stigg/internal/type/enum.rbi
|
|
141
|
+
- rbi/stigg/internal/type/file_input.rbi
|
|
142
|
+
- rbi/stigg/internal/type/hash_of.rbi
|
|
143
|
+
- rbi/stigg/internal/type/request_parameters.rbi
|
|
144
|
+
- rbi/stigg/internal/type/union.rbi
|
|
145
|
+
- rbi/stigg/internal/type/unknown.rbi
|
|
146
|
+
- rbi/stigg/internal/util.rbi
|
|
147
|
+
- rbi/stigg/models.rbi
|
|
148
|
+
- rbi/stigg/models/v1/coupon_create_params.rbi
|
|
149
|
+
- rbi/stigg/models/v1/coupon_create_response.rbi
|
|
150
|
+
- rbi/stigg/models/v1/coupon_list_params.rbi
|
|
151
|
+
- rbi/stigg/models/v1/coupon_list_response.rbi
|
|
152
|
+
- rbi/stigg/models/v1/coupon_retrieve_params.rbi
|
|
153
|
+
- rbi/stigg/models/v1/coupon_retrieve_response.rbi
|
|
154
|
+
- rbi/stigg/models/v1/customer_archive_params.rbi
|
|
155
|
+
- rbi/stigg/models/v1/customer_create_params.rbi
|
|
156
|
+
- rbi/stigg/models/v1/customer_list_params.rbi
|
|
157
|
+
- rbi/stigg/models/v1/customer_list_response.rbi
|
|
158
|
+
- rbi/stigg/models/v1/customer_response.rbi
|
|
159
|
+
- rbi/stigg/models/v1/customer_retrieve_params.rbi
|
|
160
|
+
- rbi/stigg/models/v1/customer_unarchive_params.rbi
|
|
161
|
+
- rbi/stigg/models/v1/customer_update_params.rbi
|
|
162
|
+
- rbi/stigg/models/v1/customers/payment_method_attach_params.rbi
|
|
163
|
+
- rbi/stigg/models/v1/customers/payment_method_detach_params.rbi
|
|
164
|
+
- rbi/stigg/models/v1/customers/promotional_create_params.rbi
|
|
165
|
+
- rbi/stigg/models/v1/customers/promotional_create_response.rbi
|
|
166
|
+
- rbi/stigg/models/v1/customers/promotional_revoke_params.rbi
|
|
167
|
+
- rbi/stigg/models/v1/customers/promotional_revoke_response.rbi
|
|
168
|
+
- rbi/stigg/models/v1/customers/usage_retrieve_params.rbi
|
|
169
|
+
- rbi/stigg/models/v1/customers/usage_retrieve_response.rbi
|
|
170
|
+
- rbi/stigg/models/v1/subscription_create_params.rbi
|
|
171
|
+
- rbi/stigg/models/v1/subscription_create_response.rbi
|
|
172
|
+
- rbi/stigg/models/v1/subscription_delegate_params.rbi
|
|
173
|
+
- rbi/stigg/models/v1/subscription_delegate_response.rbi
|
|
174
|
+
- rbi/stigg/models/v1/subscription_list_params.rbi
|
|
175
|
+
- rbi/stigg/models/v1/subscription_list_response.rbi
|
|
176
|
+
- rbi/stigg/models/v1/subscription_migrate_params.rbi
|
|
177
|
+
- rbi/stigg/models/v1/subscription_migrate_response.rbi
|
|
178
|
+
- rbi/stigg/models/v1/subscription_preview_params.rbi
|
|
179
|
+
- rbi/stigg/models/v1/subscription_preview_response.rbi
|
|
180
|
+
- rbi/stigg/models/v1/subscription_retrieve_params.rbi
|
|
181
|
+
- rbi/stigg/models/v1/subscription_retrieve_response.rbi
|
|
182
|
+
- rbi/stigg/models/v1/subscription_transfer_params.rbi
|
|
183
|
+
- rbi/stigg/models/v1/subscription_transfer_response.rbi
|
|
184
|
+
- rbi/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rbi
|
|
185
|
+
- rbi/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rbi
|
|
186
|
+
- rbi/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rbi
|
|
187
|
+
- rbi/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rbi
|
|
188
|
+
- rbi/stigg/models/v1_create_event_params.rbi
|
|
189
|
+
- rbi/stigg/models/v1_create_event_response.rbi
|
|
190
|
+
- rbi/stigg/models/v1_create_usage_params.rbi
|
|
191
|
+
- rbi/stigg/models/v1_create_usage_response.rbi
|
|
192
|
+
- rbi/stigg/request_options.rbi
|
|
193
|
+
- rbi/stigg/resources/v1.rbi
|
|
194
|
+
- rbi/stigg/resources/v1/coupons.rbi
|
|
195
|
+
- rbi/stigg/resources/v1/customers.rbi
|
|
196
|
+
- rbi/stigg/resources/v1/customers/payment_method.rbi
|
|
197
|
+
- rbi/stigg/resources/v1/customers/promotional.rbi
|
|
198
|
+
- rbi/stigg/resources/v1/customers/usage.rbi
|
|
199
|
+
- rbi/stigg/resources/v1/subscriptions.rbi
|
|
200
|
+
- rbi/stigg/resources/v1/subscriptions/future_update.rbi
|
|
201
|
+
- rbi/stigg/version.rbi
|
|
202
|
+
- sig/stigg/client.rbs
|
|
203
|
+
- sig/stigg/errors.rbs
|
|
204
|
+
- sig/stigg/file_part.rbs
|
|
205
|
+
- sig/stigg/internal.rbs
|
|
206
|
+
- sig/stigg/internal/my_cursor_id_page.rbs
|
|
207
|
+
- sig/stigg/internal/transport/base_client.rbs
|
|
208
|
+
- sig/stigg/internal/transport/pooled_net_requester.rbs
|
|
209
|
+
- sig/stigg/internal/type/array_of.rbs
|
|
210
|
+
- sig/stigg/internal/type/base_model.rbs
|
|
211
|
+
- sig/stigg/internal/type/base_page.rbs
|
|
212
|
+
- sig/stigg/internal/type/boolean.rbs
|
|
213
|
+
- sig/stigg/internal/type/converter.rbs
|
|
214
|
+
- sig/stigg/internal/type/enum.rbs
|
|
215
|
+
- sig/stigg/internal/type/file_input.rbs
|
|
216
|
+
- sig/stigg/internal/type/hash_of.rbs
|
|
217
|
+
- sig/stigg/internal/type/request_parameters.rbs
|
|
218
|
+
- sig/stigg/internal/type/union.rbs
|
|
219
|
+
- sig/stigg/internal/type/unknown.rbs
|
|
220
|
+
- sig/stigg/internal/util.rbs
|
|
221
|
+
- sig/stigg/models.rbs
|
|
222
|
+
- sig/stigg/models/v1/coupon_create_params.rbs
|
|
223
|
+
- sig/stigg/models/v1/coupon_create_response.rbs
|
|
224
|
+
- sig/stigg/models/v1/coupon_list_params.rbs
|
|
225
|
+
- sig/stigg/models/v1/coupon_list_response.rbs
|
|
226
|
+
- sig/stigg/models/v1/coupon_retrieve_params.rbs
|
|
227
|
+
- sig/stigg/models/v1/coupon_retrieve_response.rbs
|
|
228
|
+
- sig/stigg/models/v1/customer_archive_params.rbs
|
|
229
|
+
- sig/stigg/models/v1/customer_create_params.rbs
|
|
230
|
+
- sig/stigg/models/v1/customer_list_params.rbs
|
|
231
|
+
- sig/stigg/models/v1/customer_list_response.rbs
|
|
232
|
+
- sig/stigg/models/v1/customer_response.rbs
|
|
233
|
+
- sig/stigg/models/v1/customer_retrieve_params.rbs
|
|
234
|
+
- sig/stigg/models/v1/customer_unarchive_params.rbs
|
|
235
|
+
- sig/stigg/models/v1/customer_update_params.rbs
|
|
236
|
+
- sig/stigg/models/v1/customers/payment_method_attach_params.rbs
|
|
237
|
+
- sig/stigg/models/v1/customers/payment_method_detach_params.rbs
|
|
238
|
+
- sig/stigg/models/v1/customers/promotional_create_params.rbs
|
|
239
|
+
- sig/stigg/models/v1/customers/promotional_create_response.rbs
|
|
240
|
+
- sig/stigg/models/v1/customers/promotional_revoke_params.rbs
|
|
241
|
+
- sig/stigg/models/v1/customers/promotional_revoke_response.rbs
|
|
242
|
+
- sig/stigg/models/v1/customers/usage_retrieve_params.rbs
|
|
243
|
+
- sig/stigg/models/v1/customers/usage_retrieve_response.rbs
|
|
244
|
+
- sig/stigg/models/v1/subscription_create_params.rbs
|
|
245
|
+
- sig/stigg/models/v1/subscription_create_response.rbs
|
|
246
|
+
- sig/stigg/models/v1/subscription_delegate_params.rbs
|
|
247
|
+
- sig/stigg/models/v1/subscription_delegate_response.rbs
|
|
248
|
+
- sig/stigg/models/v1/subscription_list_params.rbs
|
|
249
|
+
- sig/stigg/models/v1/subscription_list_response.rbs
|
|
250
|
+
- sig/stigg/models/v1/subscription_migrate_params.rbs
|
|
251
|
+
- sig/stigg/models/v1/subscription_migrate_response.rbs
|
|
252
|
+
- sig/stigg/models/v1/subscription_preview_params.rbs
|
|
253
|
+
- sig/stigg/models/v1/subscription_preview_response.rbs
|
|
254
|
+
- sig/stigg/models/v1/subscription_retrieve_params.rbs
|
|
255
|
+
- sig/stigg/models/v1/subscription_retrieve_response.rbs
|
|
256
|
+
- sig/stigg/models/v1/subscription_transfer_params.rbs
|
|
257
|
+
- sig/stigg/models/v1/subscription_transfer_response.rbs
|
|
258
|
+
- sig/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_params.rbs
|
|
259
|
+
- sig/stigg/models/v1/subscriptions/future_update_cancel_pending_payment_response.rbs
|
|
260
|
+
- sig/stigg/models/v1/subscriptions/future_update_cancel_schedule_params.rbs
|
|
261
|
+
- sig/stigg/models/v1/subscriptions/future_update_cancel_schedule_response.rbs
|
|
262
|
+
- sig/stigg/models/v1_create_event_params.rbs
|
|
263
|
+
- sig/stigg/models/v1_create_event_response.rbs
|
|
264
|
+
- sig/stigg/models/v1_create_usage_params.rbs
|
|
265
|
+
- sig/stigg/models/v1_create_usage_response.rbs
|
|
266
|
+
- sig/stigg/request_options.rbs
|
|
267
|
+
- sig/stigg/resources/v1.rbs
|
|
268
|
+
- sig/stigg/resources/v1/coupons.rbs
|
|
269
|
+
- sig/stigg/resources/v1/customers.rbs
|
|
270
|
+
- sig/stigg/resources/v1/customers/payment_method.rbs
|
|
271
|
+
- sig/stigg/resources/v1/customers/promotional.rbs
|
|
272
|
+
- sig/stigg/resources/v1/customers/usage.rbs
|
|
273
|
+
- sig/stigg/resources/v1/subscriptions.rbs
|
|
274
|
+
- sig/stigg/resources/v1/subscriptions/future_update.rbs
|
|
275
|
+
- sig/stigg/version.rbs
|
|
276
|
+
homepage: https://gemdocs.org/gems/stigg
|
|
277
|
+
licenses: []
|
|
278
|
+
metadata:
|
|
279
|
+
homepage_uri: https://gemdocs.org/gems/stigg
|
|
280
|
+
source_code_uri: https://github.com/stiggio/stigg-ruby
|
|
281
|
+
rubygems_mfa_required: 'false'
|
|
282
|
+
post_install_message:
|
|
283
|
+
rdoc_options: []
|
|
284
|
+
require_paths:
|
|
285
|
+
- lib
|
|
286
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
287
|
+
requirements:
|
|
288
|
+
- - ">="
|
|
289
|
+
- !ruby/object:Gem::Version
|
|
290
|
+
version: 3.2.0
|
|
291
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
292
|
+
requirements:
|
|
293
|
+
- - ">"
|
|
294
|
+
- !ruby/object:Gem::Version
|
|
295
|
+
version: 1.3.1
|
|
296
|
+
requirements: []
|
|
297
|
+
rubygems_version: 3.4.1
|
|
298
|
+
signing_key:
|
|
299
|
+
specification_version: 4
|
|
300
|
+
summary: Ruby library to access the Stigg API
|
|
301
|
+
test_files: []
|