stigg-api-client 0.719.0__tar.gz → 0.721.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: 0.719.0
3
+ Version: 0.721.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 = "0.719.0"
3
+ version = "0.721.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1235,12 +1235,12 @@ def mutation_cancel_subscription_updates():
1235
1235
 
1236
1236
 
1237
1237
  def mutation_report_usage():
1238
- _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ReportUsage', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.UsageMeasurementCreateInput))))
1239
- _op_create_usage_measurement = _op.create_usage_measurement(usage_measurement=sgqlc.types.Variable('input'))
1240
- _op_create_usage_measurement.id()
1241
- _op_create_usage_measurement.current_usage()
1242
- _op_create_usage_measurement.next_reset_date()
1243
- _op_create_usage_measurement.timestamp()
1238
+ _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ReportUsage', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ReportUsageInput))))
1239
+ _op_report_usage = _op.report_usage(input=sgqlc.types.Variable('input'))
1240
+ _op_report_usage.id()
1241
+ _op_report_usage.current_usage()
1242
+ _op_report_usage.next_reset_date()
1243
+ _op_report_usage.timestamp()
1244
1244
  return _op
1245
1245
 
1246
1246