stigg-api-client 3.61.2__tar.gz → 3.62.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-3.61.2 → stigg_api_client-3.62.0}/PKG-INFO +1 -1
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/pyproject.toml +1 -1
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/stigg/generated/operations.py +24 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/LICENSE +0 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/README.md +0 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/stigg/__init__.py +0 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/stigg/client.py +0 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-3.61.2 → stigg_api_client-3.62.0}/stigg/generated/schema.py +0 -0
|
@@ -1741,6 +1741,27 @@ def mutation_grant_credits():
|
|
|
1741
1741
|
return _op
|
|
1742
1742
|
|
|
1743
1743
|
|
|
1744
|
+
def mutation_grant_promotional_entitlements_group():
|
|
1745
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='GrantPromotionalEntitlementsGroup', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.GrantPromotionalEntitlementsGroupInput))))
|
|
1746
|
+
_op_grant_promotional_entitlements_group = _op.grant_promotional_entitlements_group(input=sgqlc.types.Variable('input'))
|
|
1747
|
+
_op_grant_promotional_entitlements_group.__fragment__(fragment_promotional_entitlement_fragment())
|
|
1748
|
+
return _op
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
def mutation_revoke_promotional_entitlements_group():
|
|
1752
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='RevokePromotionalEntitlementsGroup', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.RevokePromotionalEntitlementsGroupInput))))
|
|
1753
|
+
_op_revoke_promotional_entitlements_group = _op.revoke_promotional_entitlements_group(input=sgqlc.types.Variable('input'))
|
|
1754
|
+
_op_revoke_promotional_entitlements_group.__fragment__(fragment_promotional_entitlement_fragment())
|
|
1755
|
+
return _op
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
def mutation_unlink_promotional_entitlements_group():
|
|
1759
|
+
_op = sgqlc.operation.Operation(_schema_root.mutation_type, name='UnlinkPromotionalEntitlementsGroup', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.UnlinkPromotionalEntitlementsGroupInput))))
|
|
1760
|
+
_op_unlink_promotional_entitlements_group = _op.unlink_promotional_entitlements_group(input=sgqlc.types.Variable('input'))
|
|
1761
|
+
_op_unlink_promotional_entitlements_group.__fragment__(fragment_promotional_entitlement_fragment())
|
|
1762
|
+
return _op
|
|
1763
|
+
|
|
1764
|
+
|
|
1744
1765
|
class Mutation:
|
|
1745
1766
|
apply_subscription = mutation_apply_subscription()
|
|
1746
1767
|
archive_customer = mutation_archive_customer()
|
|
@@ -1753,6 +1774,7 @@ class Mutation:
|
|
|
1753
1774
|
estimate_subscription_update = mutation_estimate_subscription_update()
|
|
1754
1775
|
grant_credits = mutation_grant_credits()
|
|
1755
1776
|
grant_promotional_entitlements = mutation_grant_promotional_entitlements()
|
|
1777
|
+
grant_promotional_entitlements_group = mutation_grant_promotional_entitlements_group()
|
|
1756
1778
|
import_customer = mutation_import_customer()
|
|
1757
1779
|
import_customer_bulk = mutation_import_customer_bulk()
|
|
1758
1780
|
import_subscriptions_bulk = mutation_import_subscriptions_bulk()
|
|
@@ -1766,9 +1788,11 @@ class Mutation:
|
|
|
1766
1788
|
report_usage = mutation_report_usage()
|
|
1767
1789
|
report_usage_bulk = mutation_report_usage_bulk()
|
|
1768
1790
|
revoke_promotional_entitlement = mutation_revoke_promotional_entitlement()
|
|
1791
|
+
revoke_promotional_entitlements_group = mutation_revoke_promotional_entitlements_group()
|
|
1769
1792
|
transfer_subscription = mutation_transfer_subscription()
|
|
1770
1793
|
transfer_subscription_to_resource = mutation_transfer_subscription_to_resource()
|
|
1771
1794
|
unarchive_customer = mutation_unarchive_customer()
|
|
1795
|
+
unlink_promotional_entitlements_group = mutation_unlink_promotional_entitlements_group()
|
|
1772
1796
|
update_customer = mutation_update_customer()
|
|
1773
1797
|
update_subscription = mutation_update_subscription()
|
|
1774
1798
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|