stigg-api-client 2.300.0__tar.gz → 2.303.0__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.300.0 → stigg_api_client-2.303.0}/PKG-INFO +1 -1
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/pyproject.toml +1 -1
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/stigg/generated/schema.py +42 -11
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/LICENSE +0 -0
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/README.md +0 -0
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/stigg/client.py +0 -0
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.300.0 → stigg_api_client-2.303.0}/stigg/generated/operations.py +0 -0
|
@@ -271,7 +271,7 @@ Int = sgqlc.types.Int
|
|
|
271
271
|
|
|
272
272
|
class IntegrationSortFields(sgqlc.types.Enum):
|
|
273
273
|
__schema__ = schema
|
|
274
|
-
__choices__ = ('createdAt', 'environmentId', 'id', 'vendorIdentifier')
|
|
274
|
+
__choices__ = ('createdAt', 'environmentId', 'id', 'vendorIdentifier', 'vendorType')
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
class InvoiceLineItemType(sgqlc.types.Enum):
|
|
@@ -570,6 +570,11 @@ class VendorIdentifier(sgqlc.types.Enum):
|
|
|
570
570
|
__choices__ = ('AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'OPEN_FGA', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
571
571
|
|
|
572
572
|
|
|
573
|
+
class VendorType(sgqlc.types.Enum):
|
|
574
|
+
__schema__ = schema
|
|
575
|
+
__choices__ = ('AUTH', 'BILLING', 'CRM', 'DATA_EXPORT', 'MARKETPLACE')
|
|
576
|
+
|
|
577
|
+
|
|
573
578
|
class WeeklyAccordingTo(sgqlc.types.Enum):
|
|
574
579
|
__schema__ = schema
|
|
575
580
|
__choices__ = ('EveryFriday', 'EveryMonday', 'EverySaturday', 'EverySunday', 'EveryThursday', 'EveryTuesday', 'EveryWednesday', 'SubscriptionStart')
|
|
@@ -1144,12 +1149,14 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1144
1149
|
|
|
1145
1150
|
class CreateIntegrationInput(sgqlc.types.Input):
|
|
1146
1151
|
__schema__ = schema
|
|
1147
|
-
__field_names__ = ('auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1152
|
+
__field_names__ = ('auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1148
1153
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
1149
1154
|
aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
|
|
1150
1155
|
big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
|
|
1151
1156
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
1152
1157
|
hubspot_credentials = sgqlc.types.Field('HubspotCredentialsInput', graphql_name='hubspotCredentials')
|
|
1158
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
1159
|
+
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
1153
1160
|
open_fgacredentials = sgqlc.types.Field('OpenFGACredentialsInput', graphql_name='openFGACredentials')
|
|
1154
1161
|
salesforce_credentials = sgqlc.types.Field('SalesforceCredentialsInput', graphql_name='salesforceCredentials')
|
|
1155
1162
|
snowflake_credentials = sgqlc.types.Field('SnowflakeCredentialsInput', graphql_name='snowflakeCredentials')
|
|
@@ -2367,13 +2374,14 @@ class IntFieldComparisonBetween(sgqlc.types.Input):
|
|
|
2367
2374
|
|
|
2368
2375
|
class IntegrationFilter(sgqlc.types.Input):
|
|
2369
2376
|
__schema__ = schema
|
|
2370
|
-
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'vendor_identifier')
|
|
2377
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'or_', 'vendor_identifier', 'vendor_type')
|
|
2371
2378
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntegrationFilter')), graphql_name='and')
|
|
2372
2379
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2373
2380
|
environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
|
|
2374
2381
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
2375
2382
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntegrationFilter')), graphql_name='or')
|
|
2376
2383
|
vendor_identifier = sgqlc.types.Field('VendorIdentifierFilterComparison', graphql_name='vendorIdentifier')
|
|
2384
|
+
vendor_type = sgqlc.types.Field('IntegrationVendorTypeFilterComparison', graphql_name='vendorType')
|
|
2377
2385
|
|
|
2378
2386
|
|
|
2379
2387
|
class IntegrationSort(sgqlc.types.Input):
|
|
@@ -2384,6 +2392,15 @@ class IntegrationSort(sgqlc.types.Input):
|
|
|
2384
2392
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
2385
2393
|
|
|
2386
2394
|
|
|
2395
|
+
class IntegrationVendorTypeFilterComparison(sgqlc.types.Input):
|
|
2396
|
+
__schema__ = schema
|
|
2397
|
+
__field_names__ = ('eq', 'in_', 'neq', 'not_in')
|
|
2398
|
+
eq = sgqlc.types.Field(VendorType, graphql_name='eq')
|
|
2399
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(VendorType)), graphql_name='in')
|
|
2400
|
+
neq = sgqlc.types.Field(VendorType, graphql_name='neq')
|
|
2401
|
+
not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(VendorType)), graphql_name='notIn')
|
|
2402
|
+
|
|
2403
|
+
|
|
2387
2404
|
class InviteMembersInput(sgqlc.types.Input):
|
|
2388
2405
|
__schema__ = schema
|
|
2389
2406
|
__field_names__ = ('account_role', 'invites', 'non_production_role', 'production_role')
|
|
@@ -4251,8 +4268,10 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4251
4268
|
|
|
4252
4269
|
class UpdateIntegrationInput(sgqlc.types.Input):
|
|
4253
4270
|
__schema__ = schema
|
|
4254
|
-
__field_names__ = ('auth0_credentials', 'open_fgacredentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4271
|
+
__field_names__ = ('auth0_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4255
4272
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
4273
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
4274
|
+
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
4256
4275
|
open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
|
|
4257
4276
|
salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
|
|
4258
4277
|
stripe_credentials = sgqlc.types.Field(StripeCredentialsInput, graphql_name='stripeCredentials')
|
|
@@ -6520,23 +6539,27 @@ class InitStripePaymentMethodError(sgqlc.types.Type):
|
|
|
6520
6539
|
|
|
6521
6540
|
class Integration(sgqlc.types.Type):
|
|
6522
6541
|
__schema__ = schema
|
|
6523
|
-
__field_names__ = ('account', 'created_at', 'credentials', 'environment', 'environment_id', 'id', 'vendor_identifier')
|
|
6542
|
+
__field_names__ = ('account', 'created_at', 'credentials', 'environment', 'environment_id', 'id', 'integration_id', 'is_default', 'vendor_identifier', 'vendor_type')
|
|
6524
6543
|
account = sgqlc.types.Field(Account, graphql_name='account')
|
|
6525
6544
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6526
6545
|
credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
|
|
6527
6546
|
environment = sgqlc.types.Field(Environment, graphql_name='environment')
|
|
6528
6547
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
6529
6548
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
6549
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
6550
|
+
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
6530
6551
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
6552
|
+
vendor_type = sgqlc.types.Field(sgqlc.types.non_null(VendorType), graphql_name='vendorType')
|
|
6531
6553
|
|
|
6532
6554
|
|
|
6533
6555
|
class IntegrationAggregateGroupBy(sgqlc.types.Type):
|
|
6534
6556
|
__schema__ = schema
|
|
6535
|
-
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
|
|
6557
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6536
6558
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6537
6559
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6538
6560
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6539
6561
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6562
|
+
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6540
6563
|
|
|
6541
6564
|
|
|
6542
6565
|
class IntegrationConnection(sgqlc.types.relay.Connection):
|
|
@@ -6549,21 +6572,25 @@ class IntegrationConnection(sgqlc.types.relay.Connection):
|
|
|
6549
6572
|
|
|
6550
6573
|
class IntegrationCountAggregate(sgqlc.types.Type):
|
|
6551
6574
|
__schema__ = schema
|
|
6552
|
-
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
|
|
6575
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6553
6576
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
6554
6577
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
6555
6578
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
6556
6579
|
vendor_identifier = sgqlc.types.Field(Int, graphql_name='vendorIdentifier')
|
|
6580
|
+
vendor_type = sgqlc.types.Field(Int, graphql_name='vendorType')
|
|
6557
6581
|
|
|
6558
6582
|
|
|
6559
6583
|
class IntegrationDeleteResponse(sgqlc.types.Type):
|
|
6560
6584
|
__schema__ = schema
|
|
6561
|
-
__field_names__ = ('created_at', 'credentials', 'environment_id', 'id', 'vendor_identifier')
|
|
6585
|
+
__field_names__ = ('created_at', 'credentials', 'environment_id', 'id', 'integration_id', 'is_default', 'vendor_identifier', 'vendor_type')
|
|
6562
6586
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6563
6587
|
credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
|
|
6564
6588
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6565
6589
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6590
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
6591
|
+
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
6566
6592
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6593
|
+
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6567
6594
|
|
|
6568
6595
|
|
|
6569
6596
|
class IntegrationEdge(sgqlc.types.Type):
|
|
@@ -6575,20 +6602,22 @@ class IntegrationEdge(sgqlc.types.Type):
|
|
|
6575
6602
|
|
|
6576
6603
|
class IntegrationMaxAggregate(sgqlc.types.Type):
|
|
6577
6604
|
__schema__ = schema
|
|
6578
|
-
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
|
|
6605
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6579
6606
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6580
6607
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6581
6608
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6582
6609
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6610
|
+
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6583
6611
|
|
|
6584
6612
|
|
|
6585
6613
|
class IntegrationMinAggregate(sgqlc.types.Type):
|
|
6586
6614
|
__schema__ = schema
|
|
6587
|
-
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
|
|
6615
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
|
|
6588
6616
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6589
6617
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
6590
6618
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6591
6619
|
vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
|
|
6620
|
+
vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
|
|
6592
6621
|
|
|
6593
6622
|
|
|
6594
6623
|
class InvalidArgumentError(sgqlc.types.Type):
|
|
@@ -9850,12 +9879,14 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
9850
9879
|
|
|
9851
9880
|
class ZuoraCredentials(sgqlc.types.Type):
|
|
9852
9881
|
__schema__ = schema
|
|
9853
|
-
__field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
|
|
9882
|
+
__field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_page_id', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
|
|
9854
9883
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
9855
9884
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
9856
9885
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
9886
|
+
payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
|
|
9857
9887
|
stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
|
|
9858
9888
|
stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
|
|
9889
|
+
webhook_secret = sgqlc.types.Field(String, graphql_name='webhookSecret')
|
|
9859
9890
|
|
|
9860
9891
|
|
|
9861
9892
|
class ZuoraPaymentMethodForm(sgqlc.types.Type):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|