stigg-api-client 2.303.2__tar.gz → 2.304.1__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.303.2
3
+ Version: 2.304.1
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.303.2"
3
+ version = "2.304.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -977,10 +977,11 @@ class CheckoutPaletteInput(sgqlc.types.Input):
977
977
 
978
978
  class CheckoutStateInput(sgqlc.types.Input):
979
979
  __schema__ = schema
980
- __field_names__ = ('billing_country_code', 'customer_id', 'plan_id', 'resource_id')
980
+ __field_names__ = ('billing_country_code', 'customer_id', 'plan_id', 'product_id', 'resource_id')
981
981
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
982
982
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
983
983
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
984
+ product_id = sgqlc.types.Field(String, graphql_name='productId')
984
985
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
985
986
 
986
987