stigg-api-client-v2 3.61.2__py3-none-any.whl → 3.64.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-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +18 -0
- stigg/generated/async_client.py +135 -0
- stigg/generated/client.py +135 -0
- stigg/generated/fragments.py +321 -321
- stigg/generated/grant_promotional_entitlements_group.py +24 -0
- stigg/generated/input_types.py +1 -0
- stigg/generated/revoke_promotional_entitlements_group.py +24 -0
- stigg/generated/unlink_promotional_entitlements_group.py +24 -0
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/RECORD +12 -9
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from typing import List
|
|
5
|
+
|
|
6
|
+
from stigg._vendors.pydantic import Field
|
|
7
|
+
|
|
8
|
+
from .base_model import BaseModel
|
|
9
|
+
from .fragments import PromotionalEntitlementFragment
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class GrantPromotionalEntitlementsGroup(BaseModel):
|
|
13
|
+
grant_promotional_entitlements_group: List[
|
|
14
|
+
"GrantPromotionalEntitlementsGroupGrantPromotionalEntitlementsGroup"
|
|
15
|
+
] = Field(alias="grantPromotionalEntitlementsGroup")
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class GrantPromotionalEntitlementsGroupGrantPromotionalEntitlementsGroup(
|
|
19
|
+
PromotionalEntitlementFragment
|
|
20
|
+
):
|
|
21
|
+
pass
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
GrantPromotionalEntitlementsGroup.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4594,6 +4594,7 @@ class UpdateAccountInput(BaseModel):
|
|
|
4594
4594
|
alias="defaultSSORoles", default=None
|
|
4595
4595
|
)
|
|
4596
4596
|
display_name: str = Field(alias="displayName")
|
|
4597
|
+
email_domains: Optional[List[str]] = Field(alias="emailDomains", default=None)
|
|
4597
4598
|
subscription_billing_anchor: Optional[BillingAnchor] = Field(
|
|
4598
4599
|
alias="subscriptionBillingAnchor", default=None
|
|
4599
4600
|
)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from typing import List
|
|
5
|
+
|
|
6
|
+
from stigg._vendors.pydantic import Field
|
|
7
|
+
|
|
8
|
+
from .base_model import BaseModel
|
|
9
|
+
from .fragments import PromotionalEntitlementFragment
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class RevokePromotionalEntitlementsGroup(BaseModel):
|
|
13
|
+
revoke_promotional_entitlements_group: List[
|
|
14
|
+
"RevokePromotionalEntitlementsGroupRevokePromotionalEntitlementsGroup"
|
|
15
|
+
] = Field(alias="revokePromotionalEntitlementsGroup")
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class RevokePromotionalEntitlementsGroupRevokePromotionalEntitlementsGroup(
|
|
19
|
+
PromotionalEntitlementFragment
|
|
20
|
+
):
|
|
21
|
+
pass
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
RevokePromotionalEntitlementsGroup.model_rebuild()
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from typing import List
|
|
5
|
+
|
|
6
|
+
from stigg._vendors.pydantic import Field
|
|
7
|
+
|
|
8
|
+
from .base_model import BaseModel
|
|
9
|
+
from .fragments import PromotionalEntitlementFragment
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class UnlinkPromotionalEntitlementsGroup(BaseModel):
|
|
13
|
+
unlink_promotional_entitlements_group: List[
|
|
14
|
+
"UnlinkPromotionalEntitlementsGroupUnlinkPromotionalEntitlementsGroup"
|
|
15
|
+
] = Field(alias="unlinkPromotionalEntitlementsGroup")
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class UnlinkPromotionalEntitlementsGroupUnlinkPromotionalEntitlementsGroup(
|
|
19
|
+
PromotionalEntitlementFragment
|
|
20
|
+
):
|
|
21
|
+
pass
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
UnlinkPromotionalEntitlementsGroup.model_rebuild()
|
|
@@ -106,16 +106,16 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=m3rLX51Y6E1RlXFjzwu4ccdOdt3nnUNgsLOF1_8ISMc,74992
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
113
|
-
stigg/generated/async_client.py,sha256=
|
|
113
|
+
stigg/generated/async_client.py,sha256=L91D8H9RqJ9LmFBXJpvXBrKfiRheOphSHLf1ilFJ4u4,184383
|
|
114
114
|
stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
|
|
115
115
|
stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
|
|
116
116
|
stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
|
|
117
117
|
stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
|
|
118
|
-
stigg/generated/client.py,sha256=
|
|
118
|
+
stigg/generated/client.py,sha256=S3IQdR4v5a3m0LfUTffEUiHlTXDdbKAlc5qy8bOCEIw,183708
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=FmaOvezvY4CEseRjWDfGog9Mdyl4k-dEFe6-ADkHYvk,107006
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -145,10 +145,11 @@ stigg/generated/get_usage_history.py,sha256=3gwU1NOGkw0p3hLd2rjxJmN79iN7_GqtZhOu
|
|
|
145
145
|
stigg/generated/get_usage_history_v_2.py,sha256=qs93P7pxfl-Yu_zSGa2dhHACeY1efR7V42Vmg7h_7Jk,421
|
|
146
146
|
stigg/generated/grant_credits.py,sha256=rZE6D8PvPqnYde1RZUEUW0JAnHXaK7Zp46nKMynfKVE,420
|
|
147
147
|
stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkhHNOMOkCcBVXbQVNrHhrU,587
|
|
148
|
+
stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-MEcT0n-MHMcP6iijuahnuu04BQ,628
|
|
148
149
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
149
150
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
150
151
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
151
|
-
stigg/generated/input_types.py,sha256=
|
|
152
|
+
stigg/generated/input_types.py,sha256=W298oMCm3o6fxuH0CR8otGyCwGKLAg1adyUewzUGq0g,207384
|
|
152
153
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
153
154
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
154
155
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -159,12 +160,14 @@ stigg/generated/report_event.py,sha256=O_8Y2W-oGNLW0OeH1TtJUFmzTJexoXNoritIH-SUb
|
|
|
159
160
|
stigg/generated/report_usage.py,sha256=5J-nkJoVMi_JYWV50MTl78MHlzsC5035GxSih1S8c_w,377
|
|
160
161
|
stigg/generated/report_usage_bulk.py,sha256=QIJcyfKFe1urtQEzZ3hiVD0fZS00KFGsLTFE3sHnY9U,455
|
|
161
162
|
stigg/generated/revoke_promotional_entitlement.py,sha256=OOn7AIiQbzbO7J21mvYJdVtFIzOhuyF52GjhrFscmCk,502
|
|
163
|
+
stigg/generated/revoke_promotional_entitlements_group.py,sha256=U9BHC5bbY-S9-w5BWiDAJthPJKXS2S3-8QY6hIU5vhs,636
|
|
162
164
|
stigg/generated/transfer_subscription.py,sha256=FFYUD-I9EjeU5jvdq3a8fpdc7PmF-zC-9NyLcGXFHw8,473
|
|
163
165
|
stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U_dJRQZYoByALDy-z77UufyE,561
|
|
164
166
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
167
|
+
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
165
168
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
169
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
170
|
+
stigg_api_client_v2-3.64.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
171
|
+
stigg_api_client_v2-3.64.0.dist-info/METADATA,sha256=dSln0kuJDDrfeW4xWoXLHRuJ0dYhfUoOgVVhabFtfuI,2257
|
|
172
|
+
stigg_api_client_v2-3.64.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
173
|
+
stigg_api_client_v2-3.64.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|