stigg-api-client 3.111.0__py3-none-any.whl → 3.115.0__py3-none-any.whl
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/generated/schema.py +25 -8
- {stigg_api_client-3.111.0.dist-info → stigg_api_client-3.115.0.dist-info}/METADATA +1 -1
- {stigg_api_client-3.111.0.dist-info → stigg_api_client-3.115.0.dist-info}/RECORD +5 -5
- {stigg_api_client-3.111.0.dist-info → stigg_api_client-3.115.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.111.0.dist-info → stigg_api_client-3.115.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -542,7 +542,7 @@ class SubscriptionProrationBehavior(sgqlc.types.Enum):
|
|
|
542
542
|
|
|
543
543
|
class SubscriptionQuerySortFields(sgqlc.types.Enum):
|
|
544
544
|
__schema__ = schema
|
|
545
|
-
__choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'startDate', 'status')
|
|
545
|
+
__choices__ = ('billingId', 'createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
|
|
546
546
|
|
|
547
547
|
|
|
548
548
|
class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
@@ -4475,8 +4475,9 @@ class SubscriptionPriceSort(sgqlc.types.Input):
|
|
|
4475
4475
|
|
|
4476
4476
|
class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
4477
4477
|
__schema__ = schema
|
|
4478
|
-
__field_names__ = ('and_', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'start_date', 'status')
|
|
4478
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'customer', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
4479
4479
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
|
|
4480
|
+
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4480
4481
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4481
4482
|
customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
|
|
4482
4483
|
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
@@ -4484,8 +4485,10 @@ class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
|
4484
4485
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
|
|
4485
4486
|
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
4486
4487
|
resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
|
|
4488
|
+
salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
|
|
4487
4489
|
start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
|
|
4488
4490
|
status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
|
|
4491
|
+
subscription_id = sgqlc.types.Field(StringFieldComparison, graphql_name='subscriptionId')
|
|
4489
4492
|
|
|
4490
4493
|
|
|
4491
4494
|
class SubscriptionQueryFilterCustomerFilter(sgqlc.types.Input):
|
|
@@ -5217,10 +5220,11 @@ class YearlyResetPeriodConfigInput(sgqlc.types.Input):
|
|
|
5217
5220
|
|
|
5218
5221
|
class ZuoraCredentialsInput(sgqlc.types.Input):
|
|
5219
5222
|
__schema__ = schema
|
|
5220
|
-
__field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'stripe_publishable_key', 'stripe_secret_key')
|
|
5223
|
+
__field_names__ = ('base_url', 'client_id', 'client_secret', 'invoice_settlement_enabled', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'stripe_publishable_key', 'stripe_secret_key')
|
|
5221
5224
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
5222
5225
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
5223
5226
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
5227
|
+
invoice_settlement_enabled = sgqlc.types.Field(Boolean, graphql_name='invoiceSettlementEnabled')
|
|
5224
5228
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
5225
5229
|
payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
|
|
5226
5230
|
publishable_key = sgqlc.types.Field(String, graphql_name='publishableKey')
|
|
@@ -10894,14 +10898,17 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10894
10898
|
|
|
10895
10899
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10896
10900
|
__schema__ = schema
|
|
10897
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10901
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10902
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10898
10903
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10899
10904
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10900
10905
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10901
10906
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10902
10907
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10908
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10903
10909
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10904
10910
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10911
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10905
10912
|
|
|
10906
10913
|
|
|
10907
10914
|
class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
@@ -10914,14 +10921,17 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10914
10921
|
|
|
10915
10922
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10916
10923
|
__schema__ = schema
|
|
10917
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10924
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10925
|
+
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
10918
10926
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10919
10927
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
10920
10928
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
10921
10929
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10922
10930
|
resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
|
|
10931
|
+
salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
|
|
10923
10932
|
start_date = sgqlc.types.Field(Int, graphql_name='startDate')
|
|
10924
10933
|
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
10934
|
+
subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
|
|
10925
10935
|
|
|
10926
10936
|
|
|
10927
10937
|
class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
@@ -10933,26 +10943,32 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10933
10943
|
|
|
10934
10944
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10935
10945
|
__schema__ = schema
|
|
10936
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10946
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10947
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10937
10948
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10938
10949
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10939
10950
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10940
10951
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10941
10952
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10953
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10942
10954
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10943
10955
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10956
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10944
10957
|
|
|
10945
10958
|
|
|
10946
10959
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10947
10960
|
__schema__ = schema
|
|
10948
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
|
|
10961
|
+
__field_names__ = ('billing_id', 'created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
10962
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
10949
10963
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10950
10964
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
10951
10965
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10952
10966
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10953
10967
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
10968
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
10954
10969
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10955
10970
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
10971
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10956
10972
|
|
|
10957
10973
|
|
|
10958
10974
|
class SubscriptionScheduledUpdate(sgqlc.types.Type):
|
|
@@ -11354,10 +11370,11 @@ class ZuoraCheckoutCredentials(sgqlc.types.Type):
|
|
|
11354
11370
|
|
|
11355
11371
|
class ZuoraCredentials(sgqlc.types.Type):
|
|
11356
11372
|
__schema__ = schema
|
|
11357
|
-
__field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
|
|
11373
|
+
__field_names__ = ('base_url', 'client_id', 'client_secret', 'invoice_settlement_enabled', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
|
|
11358
11374
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
11359
11375
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
11360
11376
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
11377
|
+
invoice_settlement_enabled = sgqlc.types.Field(Boolean, graphql_name='invoiceSettlementEnabled')
|
|
11361
11378
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
11362
11379
|
payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
|
|
11363
11380
|
publishable_key = sgqlc.types.Field(String, graphql_name='publishableKey')
|
|
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
|
2
2
|
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
3
|
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
stigg/generated/operations.py,sha256=ofbTuAiOhEldl-sDfr6oD4vTlfRDWWscsCQ-SrFYnxI,94243
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-3.
|
|
7
|
-
stigg_api_client-3.
|
|
8
|
-
stigg_api_client-3.
|
|
9
|
-
stigg_api_client-3.
|
|
5
|
+
stigg/generated/schema.py,sha256=VJUMCqW3ftmD8bKxHMP3fY0QXsBVlG0fl8OzUrz0lVQ,738313
|
|
6
|
+
stigg_api_client-3.115.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.115.0.dist-info/METADATA,sha256=bGJFFbBAKwunqW4Zwde_TKKuSp9Q6WzmFflzQSetbQg,3198
|
|
8
|
+
stigg_api_client-3.115.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.115.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|