stigg-api-client 2.80.0__tar.gz → 2.80.2__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.80.2}/PKG-INFO +1 -1
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/pyproject.toml +1 -1
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/stigg/generated/operations.py +2 -2
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/stigg/generated/schema.py +4 -4
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/LICENSE +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/README.md +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/stigg/__init__.py +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/stigg/client.py +0 -0
- {stigg_api_client-2.80.0 → stigg_api_client-2.80.2}/stigg/generated/__init__.py +0 -0
|
@@ -1375,7 +1375,7 @@ def mutation_provision_customer():
|
|
|
1375
1375
|
|
|
1376
1376
|
|
|
1377
1377
|
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.
|
|
1378
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportCustomerBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportCustomerBulkInput))))
|
|
1379
1379
|
_op.import_customers_bulk(input=sgqlc.types.Variable('input'))
|
|
1380
1380
|
return _op
|
|
1381
1381
|
|
|
@@ -1430,7 +1430,7 @@ def mutation_apply_subscription():
|
|
|
1430
1430
|
|
|
1431
1431
|
|
|
1432
1432
|
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.
|
|
1433
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportSubscriptionsBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportSubscriptionsBulkInput))))
|
|
1434
1434
|
_op.import_subscriptions_bulk(input=sgqlc.types.Variable('input'))
|
|
1435
1435
|
return _op
|
|
1436
1436
|
|
|
@@ -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
|