stigg-api-client 2.300.0__tar.gz → 2.302.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.300.0
3
+ Version: 2.302.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "2.300.0"
3
+ version = "2.302.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -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):