stigg-api-client 2.298.0__py3-none-any.whl → 2.302.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 CHANGED
@@ -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')
@@ -3440,8 +3457,9 @@ class ReportUsageInput(sgqlc.types.Input):
3440
3457
 
3441
3458
  class ResyncIntegrationInput(sgqlc.types.Input):
3442
3459
  __schema__ = schema
3443
- __field_names__ = ('environment_id', 'recalculate_entitlements', 'vendor_identifier')
3460
+ __field_names__ = ('environment_id', 'integration_id', 'recalculate_entitlements', 'vendor_identifier')
3444
3461
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
3462
+ integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
3445
3463
  recalculate_entitlements = sgqlc.types.Field(Boolean, graphql_name='recalculateEntitlements')
3446
3464
  vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
3447
3465
 
@@ -4250,8 +4268,10 @@ class UpdateHook(sgqlc.types.Input):
4250
4268
 
4251
4269
  class UpdateIntegrationInput(sgqlc.types.Input):
4252
4270
  __schema__ = schema
4253
- __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')
4254
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')
4255
4275
  open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
4256
4276
  salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
4257
4277
  stripe_credentials = sgqlc.types.Field(StripeCredentialsInput, graphql_name='stripeCredentials')
@@ -6519,23 +6539,27 @@ class InitStripePaymentMethodError(sgqlc.types.Type):
6519
6539
 
6520
6540
  class Integration(sgqlc.types.Type):
6521
6541
  __schema__ = schema
6522
- __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')
6523
6543
  account = sgqlc.types.Field(Account, graphql_name='account')
6524
6544
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6525
6545
  credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
6526
6546
  environment = sgqlc.types.Field(Environment, graphql_name='environment')
6527
6547
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
6528
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')
6529
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')
6530
6553
 
6531
6554
 
6532
6555
  class IntegrationAggregateGroupBy(sgqlc.types.Type):
6533
6556
  __schema__ = schema
6534
- __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
6557
+ __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
6535
6558
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6536
6559
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
6537
6560
  id = sgqlc.types.Field(String, graphql_name='id')
6538
6561
  vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
6562
+ vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
6539
6563
 
6540
6564
 
6541
6565
  class IntegrationConnection(sgqlc.types.relay.Connection):
@@ -6548,21 +6572,25 @@ class IntegrationConnection(sgqlc.types.relay.Connection):
6548
6572
 
6549
6573
  class IntegrationCountAggregate(sgqlc.types.Type):
6550
6574
  __schema__ = schema
6551
- __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
6575
+ __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
6552
6576
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
6553
6577
  environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
6554
6578
  id = sgqlc.types.Field(Int, graphql_name='id')
6555
6579
  vendor_identifier = sgqlc.types.Field(Int, graphql_name='vendorIdentifier')
6580
+ vendor_type = sgqlc.types.Field(Int, graphql_name='vendorType')
6556
6581
 
6557
6582
 
6558
6583
  class IntegrationDeleteResponse(sgqlc.types.Type):
6559
6584
  __schema__ = schema
6560
- __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')
6561
6586
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6562
6587
  credentials = sgqlc.types.Field('Credentials', graphql_name='credentials')
6563
6588
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
6564
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')
6565
6592
  vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
6593
+ vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
6566
6594
 
6567
6595
 
6568
6596
  class IntegrationEdge(sgqlc.types.Type):
@@ -6574,20 +6602,22 @@ class IntegrationEdge(sgqlc.types.Type):
6574
6602
 
6575
6603
  class IntegrationMaxAggregate(sgqlc.types.Type):
6576
6604
  __schema__ = schema
6577
- __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
6605
+ __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
6578
6606
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6579
6607
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
6580
6608
  id = sgqlc.types.Field(String, graphql_name='id')
6581
6609
  vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
6610
+ vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
6582
6611
 
6583
6612
 
6584
6613
  class IntegrationMinAggregate(sgqlc.types.Type):
6585
6614
  __schema__ = schema
6586
- __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier')
6615
+ __field_names__ = ('created_at', 'environment_id', 'id', 'vendor_identifier', 'vendor_type')
6587
6616
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6588
6617
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
6589
6618
  id = sgqlc.types.Field(String, graphql_name='id')
6590
6619
  vendor_identifier = sgqlc.types.Field(VendorIdentifier, graphql_name='vendorIdentifier')
6620
+ vendor_type = sgqlc.types.Field(VendorType, graphql_name='vendorType')
6591
6621
 
6592
6622
 
6593
6623
  class InvalidArgumentError(sgqlc.types.Type):
@@ -8801,7 +8831,8 @@ class RecalculateEntitlementsResult(sgqlc.types.Type):
8801
8831
 
8802
8832
  class ResyncIntegrationResult(sgqlc.types.Type):
8803
8833
  __schema__ = schema
8804
- __field_names__ = ('task_id',)
8834
+ __field_names__ = ('integration_id', 'task_id')
8835
+ integration_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='integrationId')
8805
8836
  task_id = sgqlc.types.Field(String, graphql_name='taskId')
8806
8837
 
8807
8838
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.298.0
3
+ Version: 2.302.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -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=7Q-QAtQWqKsKfMtv-aUjKVmm4WWBLztYf9lCqN3vbGw,79480
5
- stigg/generated/schema.py,sha256=16NUwKdopUWma0SfO0yt0PWpQQqM-HNoeCOi0Az6QF8,634822
6
- stigg_api_client-2.298.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-2.298.0.dist-info/METADATA,sha256=OqiNV45Rb513TxiK64iCky8oqVD5KKfV6RTn35bZkao,3198
8
- stigg_api_client-2.298.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-2.298.0.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=hbz4KiF0DASMACAUXeb0TUq0Nu9OEvpa7vEF-MuQsyc,637045
6
+ stigg_api_client-2.302.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-2.302.0.dist-info/METADATA,sha256=bjSpTUmjEiHH0F09zfno5qG1NK4ib95vgPIux3nqwiA,3198
8
+ stigg_api_client-2.302.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-2.302.0.dist-info/RECORD,,