stigg-api-client 2.80.0__tar.gz → 2.85.7__tar.gz
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.
Potentially problematic release.
This version of stigg-api-client might be problematic. Click here for more details.
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/PKG-INFO +1 -1
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/pyproject.toml +1 -1
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/stigg/generated/operations.py +4 -2
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/stigg/generated/schema.py +4 -4
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/LICENSE +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/README.md +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/stigg/__init__.py +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/stigg/client.py +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.85.7}/stigg/generated/__init__.py +0 -0
|
@@ -473,6 +473,7 @@ def fragment_subscription_preview_fragment():
|
|
|
473
473
|
_frag_billing_period_range.start()
|
|
474
474
|
_frag_billing_period_range.end()
|
|
475
475
|
_frag_discount = _frag.discount()
|
|
476
|
+
_frag_discount.name()
|
|
476
477
|
_frag_discount.type()
|
|
477
478
|
_frag_discount.value()
|
|
478
479
|
_frag_discount.duration_type()
|
|
@@ -498,6 +499,7 @@ def fragment_subscription_preview_fragment():
|
|
|
498
499
|
_frag_subscription_tax_details.percentage()
|
|
499
500
|
_frag_subscription_tax_details.inclusive()
|
|
500
501
|
_frag_subscription_discount = _frag_subscription.discount()
|
|
502
|
+
_frag_subscription_discount.name()
|
|
501
503
|
_frag_subscription_discount.type()
|
|
502
504
|
_frag_subscription_discount.value()
|
|
503
505
|
_frag_subscription_discount.duration_type()
|
|
@@ -1375,7 +1377,7 @@ def mutation_provision_customer():
|
|
|
1375
1377
|
|
|
1376
1378
|
|
|
1377
1379
|
def mutation_import_customer_bulk():
|
|
1378
|
-
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportCustomerBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.
|
|
1380
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportCustomerBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportCustomerBulkInput))))
|
|
1379
1381
|
_op.import_customers_bulk(input=sgqlc.types.Variable('input'))
|
|
1380
1382
|
return _op
|
|
1381
1383
|
|
|
@@ -1430,7 +1432,7 @@ def mutation_apply_subscription():
|
|
|
1430
1432
|
|
|
1431
1433
|
|
|
1432
1434
|
def mutation_import_subscriptions_bulk():
|
|
1433
|
-
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportSubscriptionsBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.
|
|
1435
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportSubscriptionsBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportSubscriptionsBulkInput))))
|
|
1434
1436
|
_op.import_subscriptions_bulk(input=sgqlc.types.Variable('input'))
|
|
1435
1437
|
return _op
|
|
1436
1438
|
|
|
@@ -2143,7 +2143,7 @@ class HubspotCredentialsInput(sgqlc.types.Input):
|
|
|
2143
2143
|
refresh_token = sgqlc.types.Field(String, graphql_name='refreshToken')
|
|
2144
2144
|
|
|
2145
2145
|
|
|
2146
|
-
class
|
|
2146
|
+
class ImportCustomerBulkInput(sgqlc.types.Input):
|
|
2147
2147
|
__schema__ = schema
|
|
2148
2148
|
__field_names__ = ('customers', 'environment_id')
|
|
2149
2149
|
customers = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ImportCustomerInput'))), graphql_name='customers')
|
|
@@ -2227,7 +2227,7 @@ class ImportSubscriptionInput(sgqlc.types.Input):
|
|
|
2227
2227
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
2228
2228
|
|
|
2229
2229
|
|
|
2230
|
-
class
|
|
2230
|
+
class ImportSubscriptionsBulkInput(sgqlc.types.Input):
|
|
2231
2231
|
__schema__ = schema
|
|
2232
2232
|
__field_names__ = ('environment_id', 'subscriptions')
|
|
2233
2233
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
@@ -6751,7 +6751,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
6751
6751
|
))
|
|
6752
6752
|
)
|
|
6753
6753
|
import_customers_bulk = sgqlc.types.Field(String, graphql_name='importCustomersBulk', args=sgqlc.types.ArgDict((
|
|
6754
|
-
('input', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
6754
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportCustomerBulkInput), graphql_name='input', default=None)),
|
|
6755
6755
|
))
|
|
6756
6756
|
)
|
|
6757
6757
|
import_one_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='importOneCustomer', args=sgqlc.types.ArgDict((
|
|
@@ -6759,7 +6759,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
6759
6759
|
))
|
|
6760
6760
|
)
|
|
6761
6761
|
import_subscriptions_bulk = sgqlc.types.Field(String, graphql_name='importSubscriptionsBulk', args=sgqlc.types.ArgDict((
|
|
6762
|
-
('input', sgqlc.types.Arg(sgqlc.types.non_null(
|
|
6762
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportSubscriptionsBulkInput), graphql_name='input', default=None)),
|
|
6763
6763
|
))
|
|
6764
6764
|
)
|
|
6765
6765
|
init_add_stripe_customer_payment_method = sgqlc.types.Field(sgqlc.types.non_null(InitAddStripeCustomerPaymentMethod), graphql_name='initAddStripeCustomerPaymentMethod', args=sgqlc.types.ArgDict((
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|