stigg-api-client-v2 3.34.1__py3-none-any.whl → 3.38.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 +19 -0
- stigg/generated/async_client.py +124 -0
- stigg/generated/client.py +122 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +375 -328
- stigg/generated/get_credit_balance.py +20 -0
- stigg/generated/get_credit_grants.py +20 -0
- stigg/generated/grant_credits.py +20 -0
- stigg/generated/input_types.py +3 -0
- {stigg_api_client_v2-3.34.1.dist-info → stigg_api_client_v2-3.38.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.34.1.dist-info → stigg_api_client_v2-3.38.0.dist-info}/RECORD +13 -10
- {stigg_api_client_v2-3.34.1.dist-info → stigg_api_client_v2-3.38.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.34.1.dist-info → stigg_api_client_v2-3.38.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from stigg._vendors.pydantic import Field
|
|
5
|
+
|
|
6
|
+
from .base_model import BaseModel
|
|
7
|
+
from .fragments import CreditsBalanceSummaryFragment
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class GetCreditBalance(BaseModel):
|
|
11
|
+
credit_balance_summary: "GetCreditBalanceCreditBalanceSummary" = Field(
|
|
12
|
+
alias="creditBalanceSummary"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetCreditBalanceCreditBalanceSummary(CreditsBalanceSummaryFragment):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
GetCreditBalance.model_rebuild()
|
|
@@ -0,0 +1,20 @@
|
|
|
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 CreditGrantFragment
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class GetCreditGrants(BaseModel):
|
|
13
|
+
credit_grants: List["GetCreditGrantsCreditGrants"] = Field(alias="creditGrants")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GetCreditGrantsCreditGrants(CreditGrantFragment):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
GetCreditGrants.model_rebuild()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from stigg._vendors.pydantic import Field
|
|
5
|
+
|
|
6
|
+
from .base_model import BaseModel
|
|
7
|
+
from .fragments import CreditGrantFragment
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class GrantCredits(BaseModel):
|
|
11
|
+
create_credit_grant: "GrantCreditsCreateCreditGrant" = Field(
|
|
12
|
+
alias="createCreditGrant"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class GrantCreditsCreateCreditGrant(CreditGrantFragment):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
GrantCredits.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2451,6 +2451,7 @@ class OverageEntitlementCreateInput(BaseModel):
|
|
|
2451
2451
|
alias="hiddenFromWidgets", default=None
|
|
2452
2452
|
)
|
|
2453
2453
|
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
2454
|
+
is_granted: Optional[bool] = Field(alias="isGranted", default=None)
|
|
2454
2455
|
monthly_reset_period_configuration: Optional[
|
|
2455
2456
|
"MonthlyResetPeriodConfigInput"
|
|
2456
2457
|
] = Field(alias="monthlyResetPeriodConfiguration", default=None)
|
|
@@ -2612,6 +2613,7 @@ class PackageEntitlementInput(BaseModel):
|
|
|
2612
2613
|
alias="hiddenFromWidgets", default=None
|
|
2613
2614
|
)
|
|
2614
2615
|
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
2616
|
+
is_granted: Optional[bool] = Field(alias="isGranted", default=None)
|
|
2615
2617
|
monthly_reset_period_configuration: Optional[
|
|
2616
2618
|
"MonthlyResetPeriodConfigInput"
|
|
2617
2619
|
] = Field(alias="monthlyResetPeriodConfiguration", default=None)
|
|
@@ -2648,6 +2650,7 @@ class PackageEntitlementUpdateInput(BaseModel):
|
|
|
2648
2650
|
alias="hiddenFromWidgets", default=None
|
|
2649
2651
|
)
|
|
2650
2652
|
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
2653
|
+
is_granted: Optional[bool] = Field(alias="isGranted", default=None)
|
|
2651
2654
|
monthly_reset_period_configuration: Optional[
|
|
2652
2655
|
"MonthlyResetPeriodConfigInput"
|
|
2653
2656
|
] = Field(alias="monthlyResetPeriodConfiguration", default=None)
|
|
@@ -106,28 +106,30 @@ 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=hLdgKGz4fpmi3uPgV3Cqa9PUJKmyHmxaWSQx9DrwspI,73646
|
|
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=7z92sg368Mhk6qGtyvzUtrJLK18tKn3H3luPZspZ04w,179477
|
|
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=QgPQpe2QpTR2aYiq0IBtSh-fPTQQub2e5pzyT2uHlDE,178838
|
|
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
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=GAp-4NjUmpQ-LwxRVPzSm8m2dtS3yVdlxyeT1gwRLsQ,37768
|
|
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=7ifjB2gpngFvX6YO67kKjgJTaLSkuPUDW221FZAkOZc,106695
|
|
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
|
|
130
130
|
stigg/generated/get_coupons.py,sha256=KiDyZKrIWLlXCORhEfwjZWw6urYALU6Z7dUn-1xc3j4,547
|
|
131
|
+
stigg/generated/get_credit_balance.py,sha256=b7PFYjOneQVXinRSgI2RQr0bvgPNmpGefljo99jZsFQ,468
|
|
132
|
+
stigg/generated/get_credit_grants.py,sha256=NOfbXNyS2G4tGrsxQVj2mISPKbkaTSLCRGEKd6cKAzQ,428
|
|
131
133
|
stigg/generated/get_customer_by_id.py,sha256=g_7q4ncmz6GH4Tl9fnlRYh-bxG5vHXsf9EDPEbqvdyA,505
|
|
132
134
|
stigg/generated/get_customer_portal_by_ref_id.py,sha256=k_P5_2HA4xlr46s6KRJ3Y4wr5nLBve592BMMKWlWPTM,461
|
|
133
135
|
stigg/generated/get_customer_statistics.py,sha256=4lchx8yhXTJ_Jtjqnn1BySLrcmla46VBUAxT8Jp5NjQ,515
|
|
@@ -141,11 +143,12 @@ stigg/generated/get_subscription.py,sha256=73Y5RrRta6fum9RYTQMdi9xnFwqwSxJM5ETI1
|
|
|
141
143
|
stigg/generated/get_subscriptions.py,sha256=kVq2pzbnDDG3VYPkiUZSTQrTmM_OI6PcjP7SPbgy26c,899
|
|
142
144
|
stigg/generated/get_usage_history.py,sha256=3gwU1NOGkw0p3hLd2rjxJmN79iN7_GqtZhOuJ0NOOFk,399
|
|
143
145
|
stigg/generated/get_usage_history_v_2.py,sha256=qs93P7pxfl-Yu_zSGa2dhHACeY1efR7V42Vmg7h_7Jk,421
|
|
146
|
+
stigg/generated/grant_credits.py,sha256=rZE6D8PvPqnYde1RZUEUW0JAnHXaK7Zp46nKMynfKVE,420
|
|
144
147
|
stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkhHNOMOkCcBVXbQVNrHhrU,587
|
|
145
148
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
149
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
150
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
151
|
+
stigg/generated/input_types.py,sha256=qK5WhLTLKNT-7oG0mrVx03-ZYVp10DqzLi-kGKJ9jmU,205901
|
|
149
152
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
153
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
154
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -161,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-3.
|
|
165
|
-
stigg_api_client_v2-3.
|
|
166
|
-
stigg_api_client_v2-3.
|
|
167
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.38.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.38.0.dist-info/METADATA,sha256=-ZiPGc0Shw6SK_rrJZ8-WBWTK1sXoaKAaz3cNGYX2MU,2257
|
|
169
|
+
stigg_api_client_v2-3.38.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.38.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|