pipe2 0.1.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.
- pipe2-0.1.0/.gitignore +38 -0
- pipe2-0.1.0/PKG-INFO +7 -0
- pipe2-0.1.0/pipe2/__init__.py +4 -0
- pipe2-0.1.0/pipe2/client.py +20 -0
- pipe2-0.1.0/pipe2/generated/__init__.py +364 -0
- pipe2-0.1.0/pipe2/generated/add_affiliate_code.py +16 -0
- pipe2-0.1.0/pipe2/generated/async_base_client.py +395 -0
- pipe2-0.1.0/pipe2/generated/base_model.py +30 -0
- pipe2-0.1.0/pipe2/generated/client.py +935 -0
- pipe2-0.1.0/pipe2/generated/create_asset.py +21 -0
- pipe2-0.1.0/pipe2/generated/create_personal_access_token.py +19 -0
- pipe2-0.1.0/pipe2/generated/delete_asset_action.py +15 -0
- pipe2-0.1.0/pipe2/generated/ensure_affiliate.py +16 -0
- pipe2-0.1.0/pipe2/generated/enums.py +130 -0
- pipe2-0.1.0/pipe2/generated/exceptions.py +85 -0
- pipe2-0.1.0/pipe2/generated/get_credit_balance.py +19 -0
- pipe2-0.1.0/pipe2/generated/get_credit_history.py +20 -0
- pipe2-0.1.0/pipe2/generated/get_credit_packs.py +23 -0
- pipe2-0.1.0/pipe2/generated/get_current_user.py +21 -0
- pipe2-0.1.0/pipe2/generated/get_my_affiliate.py +30 -0
- pipe2-0.1.0/pipe2/generated/get_my_affiliate_codes.py +21 -0
- pipe2-0.1.0/pipe2/generated/get_my_api_keys.py +23 -0
- pipe2-0.1.0/pipe2/generated/get_my_referrals.py +29 -0
- pipe2-0.1.0/pipe2/generated/get_pipeline_run.py +49 -0
- pipe2-0.1.0/pipe2/generated/get_pipeline_runs.py +57 -0
- pipe2-0.1.0/pipe2/generated/get_pipeline_runs_by_slug.py +48 -0
- pipe2-0.1.0/pipe2/generated/get_pipelines.py +30 -0
- pipe2-0.1.0/pipe2/generated/get_plans.py +25 -0
- pipe2-0.1.0/pipe2/generated/get_subscription.py +31 -0
- pipe2-0.1.0/pipe2/generated/get_user_assets.py +36 -0
- pipe2-0.1.0/pipe2/generated/init_login_flow.py +16 -0
- pipe2-0.1.0/pipe2/generated/init_recovery_flow.py +16 -0
- pipe2-0.1.0/pipe2/generated/init_signup_flow.py +16 -0
- pipe2-0.1.0/pipe2/generated/init_verification_flow.py +16 -0
- pipe2-0.1.0/pipe2/generated/input_types.py +877 -0
- pipe2-0.1.0/pipe2/generated/request_upload.py +17 -0
- pipe2-0.1.0/pipe2/generated/revoke_personal_access_token.py +16 -0
- pipe2-0.1.0/pipe2/generated/run_pipeline.py +18 -0
- pipe2-0.1.0/pipe2/generated/submit_login_flow.py +20 -0
- pipe2-0.1.0/pipe2/generated/submit_recovery_flow.py +16 -0
- pipe2-0.1.0/pipe2/generated/submit_signup_flow.py +19 -0
- pipe2-0.1.0/pipe2/generated/submit_social_login.py +16 -0
- pipe2-0.1.0/pipe2/generated/submit_verification_code.py +16 -0
- pipe2-0.1.0/pipe2/generated/update_asset_tags.py +18 -0
- pipe2-0.1.0/pipe2/generated/watch_pipeline_run.py +38 -0
- pipe2-0.1.0/pyproject.toml +22 -0
pipe2-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Environment
|
|
2
|
+
.env
|
|
3
|
+
|
|
4
|
+
# Go
|
|
5
|
+
packages/api/tmp/
|
|
6
|
+
packages/api/bin/
|
|
7
|
+
packages/api/api
|
|
8
|
+
packages/api/web-public/
|
|
9
|
+
packages/cli/tmp/
|
|
10
|
+
packages/cli/bin/
|
|
11
|
+
packages/worker/worker
|
|
12
|
+
|
|
13
|
+
# Go compiled binaries (from `go build`)
|
|
14
|
+
packages/*/seed
|
|
15
|
+
packages/*/generate-*
|
|
16
|
+
packages/*/whop-sync
|
|
17
|
+
|
|
18
|
+
# Node & Build
|
|
19
|
+
node_modules/
|
|
20
|
+
dist/
|
|
21
|
+
.astro/
|
|
22
|
+
.vite/
|
|
23
|
+
|
|
24
|
+
# IDE
|
|
25
|
+
.idea/
|
|
26
|
+
.vscode/
|
|
27
|
+
*.swp
|
|
28
|
+
|
|
29
|
+
# Test
|
|
30
|
+
test-results/
|
|
31
|
+
|
|
32
|
+
# OS
|
|
33
|
+
.DS_Store
|
|
34
|
+
Thumbs.db
|
|
35
|
+
Screenshot*
|
|
36
|
+
ChatGPT*
|
|
37
|
+
discord-logo-*.png
|
|
38
|
+
packages/api/api
|
pipe2-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from .generated.client import Pipe2GraphQLClient
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class Pipe2Client(Pipe2GraphQLClient):
|
|
5
|
+
"""Pipe2.ai Python SDK client.
|
|
6
|
+
|
|
7
|
+
Usage:
|
|
8
|
+
client = Pipe2Client(token="eyJ...")
|
|
9
|
+
pipelines = await client.get_pipelines()
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
def __init__(
|
|
13
|
+
self,
|
|
14
|
+
token: str,
|
|
15
|
+
endpoint: str = "https://api.pipe2.ai/v1/graphql",
|
|
16
|
+
):
|
|
17
|
+
super().__init__(
|
|
18
|
+
url=endpoint,
|
|
19
|
+
headers={"Authorization": f"Bearer {token}"},
|
|
20
|
+
)
|
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
|
|
3
|
+
from .add_affiliate_code import AddAffiliateCode, AddAffiliateCodeAddAffiliateCode
|
|
4
|
+
from .async_base_client import AsyncBaseClient
|
|
5
|
+
from .base_model import BaseModel, Upload
|
|
6
|
+
from .client import Pipe2GraphQLClient
|
|
7
|
+
from .create_asset import CreateAsset, CreateAssetCreateAsset
|
|
8
|
+
from .create_personal_access_token import (
|
|
9
|
+
CreatePersonalAccessToken,
|
|
10
|
+
CreatePersonalAccessTokenCreatePersonalAccessToken,
|
|
11
|
+
)
|
|
12
|
+
from .delete_asset_action import DeleteAssetAction, DeleteAssetActionDeleteAsset
|
|
13
|
+
from .ensure_affiliate import EnsureAffiliate, EnsureAffiliateEnsureAffiliate
|
|
14
|
+
from .enums import (
|
|
15
|
+
affiliate_codes_select_column,
|
|
16
|
+
affiliates_select_column,
|
|
17
|
+
assets_select_column,
|
|
18
|
+
credit_packs_select_column,
|
|
19
|
+
cursor_ordering,
|
|
20
|
+
executions_visibility_select_column,
|
|
21
|
+
order_by,
|
|
22
|
+
personal_access_tokens_select_column,
|
|
23
|
+
pipeline_runs_select_column,
|
|
24
|
+
pipelines_select_column,
|
|
25
|
+
plans_select_column,
|
|
26
|
+
subscriptions_select_column,
|
|
27
|
+
)
|
|
28
|
+
from .exceptions import (
|
|
29
|
+
GraphQLClientError,
|
|
30
|
+
GraphQLClientGraphQLError,
|
|
31
|
+
GraphQLClientGraphQLMultiError,
|
|
32
|
+
GraphQLClientHttpError,
|
|
33
|
+
GraphQLClientInvalidResponseError,
|
|
34
|
+
)
|
|
35
|
+
from .get_credit_balance import GetCreditBalance, GetCreditBalanceGetCreditBalance
|
|
36
|
+
from .get_credit_history import GetCreditHistory, GetCreditHistoryGetCreditHistory
|
|
37
|
+
from .get_credit_packs import GetCreditPacks, GetCreditPacksCreditPacks
|
|
38
|
+
from .get_current_user import GetCurrentUser, GetCurrentUserCurrentUser
|
|
39
|
+
from .get_my_affiliate import (
|
|
40
|
+
GetMyAffiliate,
|
|
41
|
+
GetMyAffiliateAffiliates,
|
|
42
|
+
GetMyAffiliateAffiliatesCodes,
|
|
43
|
+
)
|
|
44
|
+
from .get_my_affiliate_codes import (
|
|
45
|
+
GetMyAffiliateCodes,
|
|
46
|
+
GetMyAffiliateCodesAffiliateCodes,
|
|
47
|
+
)
|
|
48
|
+
from .get_my_api_keys import GetMyApiKeys, GetMyApiKeysPersonalAccessTokens
|
|
49
|
+
from .get_my_referrals import (
|
|
50
|
+
GetMyReferrals,
|
|
51
|
+
GetMyReferralsGetMyReferrals,
|
|
52
|
+
GetMyReferralsGetMyReferralsReferrals,
|
|
53
|
+
)
|
|
54
|
+
from .get_pipeline_run import (
|
|
55
|
+
GetPipelineRun,
|
|
56
|
+
GetPipelineRunPipelineRunsByPk,
|
|
57
|
+
GetPipelineRunPipelineRunsByPkAssets,
|
|
58
|
+
GetPipelineRunPipelineRunsByPkPipeline,
|
|
59
|
+
GetPipelineRunPipelineRunsByPkWorkflowExecution,
|
|
60
|
+
)
|
|
61
|
+
from .get_pipeline_runs import (
|
|
62
|
+
GetPipelineRuns,
|
|
63
|
+
GetPipelineRunsCompleted,
|
|
64
|
+
GetPipelineRunsCompletedAggregate,
|
|
65
|
+
GetPipelineRunsPipelineRuns,
|
|
66
|
+
GetPipelineRunsPipelineRunsAggregate,
|
|
67
|
+
GetPipelineRunsPipelineRunsAggregateAggregate,
|
|
68
|
+
GetPipelineRunsPipelineRunsAggregateAggregateSum,
|
|
69
|
+
GetPipelineRunsPipelineRunsPipeline,
|
|
70
|
+
)
|
|
71
|
+
from .get_pipeline_runs_by_slug import (
|
|
72
|
+
GetPipelineRunsBySlug,
|
|
73
|
+
GetPipelineRunsBySlugPipelineRuns,
|
|
74
|
+
GetPipelineRunsBySlugPipelineRunsAggregate,
|
|
75
|
+
GetPipelineRunsBySlugPipelineRunsAggregateAggregate,
|
|
76
|
+
GetPipelineRunsBySlugPipelineRunsPipeline,
|
|
77
|
+
GetPipelineRunsBySlugPipelineRunsWorkflowExecution,
|
|
78
|
+
)
|
|
79
|
+
from .get_pipelines import GetPipelines, GetPipelinesPipelines
|
|
80
|
+
from .get_plans import GetPlans, GetPlansPlans
|
|
81
|
+
from .get_subscription import (
|
|
82
|
+
GetSubscription,
|
|
83
|
+
GetSubscriptionSubscriptions,
|
|
84
|
+
GetSubscriptionSubscriptionsPlan,
|
|
85
|
+
)
|
|
86
|
+
from .get_user_assets import (
|
|
87
|
+
GetUserAssets,
|
|
88
|
+
GetUserAssetsAssets,
|
|
89
|
+
GetUserAssetsAssetsAggregate,
|
|
90
|
+
GetUserAssetsAssetsAggregateAggregate,
|
|
91
|
+
)
|
|
92
|
+
from .init_login_flow import InitLoginFlow, InitLoginFlowInitLoginFlow
|
|
93
|
+
from .init_recovery_flow import InitRecoveryFlow, InitRecoveryFlowInitRecoveryFlow
|
|
94
|
+
from .init_signup_flow import InitSignupFlow, InitSignupFlowInitSignupFlow
|
|
95
|
+
from .init_verification_flow import (
|
|
96
|
+
InitVerificationFlow,
|
|
97
|
+
InitVerificationFlowInitVerificationFlow,
|
|
98
|
+
)
|
|
99
|
+
from .input_types import (
|
|
100
|
+
Boolean_comparison_exp,
|
|
101
|
+
Int_comparison_exp,
|
|
102
|
+
String_array_comparison_exp,
|
|
103
|
+
String_comparison_exp,
|
|
104
|
+
affiliate_codes_aggregate_order_by,
|
|
105
|
+
affiliate_codes_bool_exp,
|
|
106
|
+
affiliate_codes_max_order_by,
|
|
107
|
+
affiliate_codes_min_order_by,
|
|
108
|
+
affiliate_codes_order_by,
|
|
109
|
+
affiliate_codes_pk_columns_input,
|
|
110
|
+
affiliate_codes_set_input,
|
|
111
|
+
affiliate_codes_stream_cursor_input,
|
|
112
|
+
affiliate_codes_stream_cursor_value_input,
|
|
113
|
+
affiliate_codes_updates,
|
|
114
|
+
affiliates_bool_exp,
|
|
115
|
+
affiliates_order_by,
|
|
116
|
+
affiliates_stream_cursor_input,
|
|
117
|
+
affiliates_stream_cursor_value_input,
|
|
118
|
+
assets_aggregate_bool_exp,
|
|
119
|
+
assets_aggregate_bool_exp_count,
|
|
120
|
+
assets_aggregate_order_by,
|
|
121
|
+
assets_bool_exp,
|
|
122
|
+
assets_max_order_by,
|
|
123
|
+
assets_min_order_by,
|
|
124
|
+
assets_order_by,
|
|
125
|
+
assets_pk_columns_input,
|
|
126
|
+
assets_set_input,
|
|
127
|
+
assets_stream_cursor_input,
|
|
128
|
+
assets_stream_cursor_value_input,
|
|
129
|
+
assets_updates,
|
|
130
|
+
bpchar_comparison_exp,
|
|
131
|
+
credit_packs_bool_exp,
|
|
132
|
+
credit_packs_order_by,
|
|
133
|
+
credit_packs_stream_cursor_input,
|
|
134
|
+
credit_packs_stream_cursor_value_input,
|
|
135
|
+
executions_visibility_bool_exp,
|
|
136
|
+
executions_visibility_order_by,
|
|
137
|
+
executions_visibility_stream_cursor_input,
|
|
138
|
+
executions_visibility_stream_cursor_value_input,
|
|
139
|
+
jsonb_cast_exp,
|
|
140
|
+
jsonb_comparison_exp,
|
|
141
|
+
personal_access_tokens_bool_exp,
|
|
142
|
+
personal_access_tokens_order_by,
|
|
143
|
+
personal_access_tokens_stream_cursor_input,
|
|
144
|
+
personal_access_tokens_stream_cursor_value_input,
|
|
145
|
+
pipeline_runs_bool_exp,
|
|
146
|
+
pipeline_runs_order_by,
|
|
147
|
+
pipeline_runs_stream_cursor_input,
|
|
148
|
+
pipeline_runs_stream_cursor_value_input,
|
|
149
|
+
pipelines_bool_exp,
|
|
150
|
+
pipelines_order_by,
|
|
151
|
+
pipelines_stream_cursor_input,
|
|
152
|
+
pipelines_stream_cursor_value_input,
|
|
153
|
+
plans_bool_exp,
|
|
154
|
+
plans_order_by,
|
|
155
|
+
plans_stream_cursor_input,
|
|
156
|
+
plans_stream_cursor_value_input,
|
|
157
|
+
subscriptions_bool_exp,
|
|
158
|
+
subscriptions_order_by,
|
|
159
|
+
subscriptions_stream_cursor_input,
|
|
160
|
+
subscriptions_stream_cursor_value_input,
|
|
161
|
+
timestamp_comparison_exp,
|
|
162
|
+
timestamptz_comparison_exp,
|
|
163
|
+
uuid_comparison_exp,
|
|
164
|
+
)
|
|
165
|
+
from .request_upload import RequestUpload, RequestUploadRequestUpload
|
|
166
|
+
from .revoke_personal_access_token import (
|
|
167
|
+
RevokePersonalAccessToken,
|
|
168
|
+
RevokePersonalAccessTokenRevokePersonalAccessToken,
|
|
169
|
+
)
|
|
170
|
+
from .run_pipeline import RunPipeline, RunPipelineRunPipeline
|
|
171
|
+
from .submit_login_flow import SubmitLoginFlow, SubmitLoginFlowSubmitLoginFlow
|
|
172
|
+
from .submit_recovery_flow import (
|
|
173
|
+
SubmitRecoveryFlow,
|
|
174
|
+
SubmitRecoveryFlowSubmitRecoveryFlow,
|
|
175
|
+
)
|
|
176
|
+
from .submit_signup_flow import SubmitSignupFlow, SubmitSignupFlowSubmitSignupFlow
|
|
177
|
+
from .submit_social_login import SubmitSocialLogin, SubmitSocialLoginSubmitSocialLogin
|
|
178
|
+
from .submit_verification_code import (
|
|
179
|
+
SubmitVerificationCode,
|
|
180
|
+
SubmitVerificationCodeSubmitVerificationCode,
|
|
181
|
+
)
|
|
182
|
+
from .update_asset_tags import UpdateAssetTags, UpdateAssetTagsUpdateAssetsByPk
|
|
183
|
+
from .watch_pipeline_run import (
|
|
184
|
+
WatchPipelineRun,
|
|
185
|
+
WatchPipelineRunPipelineRunsByPk,
|
|
186
|
+
WatchPipelineRunPipelineRunsByPkAssets,
|
|
187
|
+
WatchPipelineRunPipelineRunsByPkPipeline,
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
__all__ = [
|
|
191
|
+
"AddAffiliateCode",
|
|
192
|
+
"AddAffiliateCodeAddAffiliateCode",
|
|
193
|
+
"AsyncBaseClient",
|
|
194
|
+
"BaseModel",
|
|
195
|
+
"Boolean_comparison_exp",
|
|
196
|
+
"CreateAsset",
|
|
197
|
+
"CreateAssetCreateAsset",
|
|
198
|
+
"CreatePersonalAccessToken",
|
|
199
|
+
"CreatePersonalAccessTokenCreatePersonalAccessToken",
|
|
200
|
+
"DeleteAssetAction",
|
|
201
|
+
"DeleteAssetActionDeleteAsset",
|
|
202
|
+
"EnsureAffiliate",
|
|
203
|
+
"EnsureAffiliateEnsureAffiliate",
|
|
204
|
+
"GetCreditBalance",
|
|
205
|
+
"GetCreditBalanceGetCreditBalance",
|
|
206
|
+
"GetCreditHistory",
|
|
207
|
+
"GetCreditHistoryGetCreditHistory",
|
|
208
|
+
"GetCreditPacks",
|
|
209
|
+
"GetCreditPacksCreditPacks",
|
|
210
|
+
"GetCurrentUser",
|
|
211
|
+
"GetCurrentUserCurrentUser",
|
|
212
|
+
"GetMyAffiliate",
|
|
213
|
+
"GetMyAffiliateAffiliates",
|
|
214
|
+
"GetMyAffiliateAffiliatesCodes",
|
|
215
|
+
"GetMyAffiliateCodes",
|
|
216
|
+
"GetMyAffiliateCodesAffiliateCodes",
|
|
217
|
+
"GetMyApiKeys",
|
|
218
|
+
"GetMyApiKeysPersonalAccessTokens",
|
|
219
|
+
"GetMyReferrals",
|
|
220
|
+
"GetMyReferralsGetMyReferrals",
|
|
221
|
+
"GetMyReferralsGetMyReferralsReferrals",
|
|
222
|
+
"GetPipelineRun",
|
|
223
|
+
"GetPipelineRunPipelineRunsByPk",
|
|
224
|
+
"GetPipelineRunPipelineRunsByPkAssets",
|
|
225
|
+
"GetPipelineRunPipelineRunsByPkPipeline",
|
|
226
|
+
"GetPipelineRunPipelineRunsByPkWorkflowExecution",
|
|
227
|
+
"GetPipelineRuns",
|
|
228
|
+
"GetPipelineRunsBySlug",
|
|
229
|
+
"GetPipelineRunsBySlugPipelineRuns",
|
|
230
|
+
"GetPipelineRunsBySlugPipelineRunsAggregate",
|
|
231
|
+
"GetPipelineRunsBySlugPipelineRunsAggregateAggregate",
|
|
232
|
+
"GetPipelineRunsBySlugPipelineRunsPipeline",
|
|
233
|
+
"GetPipelineRunsBySlugPipelineRunsWorkflowExecution",
|
|
234
|
+
"GetPipelineRunsCompleted",
|
|
235
|
+
"GetPipelineRunsCompletedAggregate",
|
|
236
|
+
"GetPipelineRunsPipelineRuns",
|
|
237
|
+
"GetPipelineRunsPipelineRunsAggregate",
|
|
238
|
+
"GetPipelineRunsPipelineRunsAggregateAggregate",
|
|
239
|
+
"GetPipelineRunsPipelineRunsAggregateAggregateSum",
|
|
240
|
+
"GetPipelineRunsPipelineRunsPipeline",
|
|
241
|
+
"GetPipelines",
|
|
242
|
+
"GetPipelinesPipelines",
|
|
243
|
+
"GetPlans",
|
|
244
|
+
"GetPlansPlans",
|
|
245
|
+
"GetSubscription",
|
|
246
|
+
"GetSubscriptionSubscriptions",
|
|
247
|
+
"GetSubscriptionSubscriptionsPlan",
|
|
248
|
+
"GetUserAssets",
|
|
249
|
+
"GetUserAssetsAssets",
|
|
250
|
+
"GetUserAssetsAssetsAggregate",
|
|
251
|
+
"GetUserAssetsAssetsAggregateAggregate",
|
|
252
|
+
"GraphQLClientError",
|
|
253
|
+
"GraphQLClientGraphQLError",
|
|
254
|
+
"GraphQLClientGraphQLMultiError",
|
|
255
|
+
"GraphQLClientHttpError",
|
|
256
|
+
"GraphQLClientInvalidResponseError",
|
|
257
|
+
"InitLoginFlow",
|
|
258
|
+
"InitLoginFlowInitLoginFlow",
|
|
259
|
+
"InitRecoveryFlow",
|
|
260
|
+
"InitRecoveryFlowInitRecoveryFlow",
|
|
261
|
+
"InitSignupFlow",
|
|
262
|
+
"InitSignupFlowInitSignupFlow",
|
|
263
|
+
"InitVerificationFlow",
|
|
264
|
+
"InitVerificationFlowInitVerificationFlow",
|
|
265
|
+
"Int_comparison_exp",
|
|
266
|
+
"Pipe2GraphQLClient",
|
|
267
|
+
"RequestUpload",
|
|
268
|
+
"RequestUploadRequestUpload",
|
|
269
|
+
"RevokePersonalAccessToken",
|
|
270
|
+
"RevokePersonalAccessTokenRevokePersonalAccessToken",
|
|
271
|
+
"RunPipeline",
|
|
272
|
+
"RunPipelineRunPipeline",
|
|
273
|
+
"String_array_comparison_exp",
|
|
274
|
+
"String_comparison_exp",
|
|
275
|
+
"SubmitLoginFlow",
|
|
276
|
+
"SubmitLoginFlowSubmitLoginFlow",
|
|
277
|
+
"SubmitRecoveryFlow",
|
|
278
|
+
"SubmitRecoveryFlowSubmitRecoveryFlow",
|
|
279
|
+
"SubmitSignupFlow",
|
|
280
|
+
"SubmitSignupFlowSubmitSignupFlow",
|
|
281
|
+
"SubmitSocialLogin",
|
|
282
|
+
"SubmitSocialLoginSubmitSocialLogin",
|
|
283
|
+
"SubmitVerificationCode",
|
|
284
|
+
"SubmitVerificationCodeSubmitVerificationCode",
|
|
285
|
+
"UpdateAssetTags",
|
|
286
|
+
"UpdateAssetTagsUpdateAssetsByPk",
|
|
287
|
+
"Upload",
|
|
288
|
+
"WatchPipelineRun",
|
|
289
|
+
"WatchPipelineRunPipelineRunsByPk",
|
|
290
|
+
"WatchPipelineRunPipelineRunsByPkAssets",
|
|
291
|
+
"WatchPipelineRunPipelineRunsByPkPipeline",
|
|
292
|
+
"affiliate_codes_aggregate_order_by",
|
|
293
|
+
"affiliate_codes_bool_exp",
|
|
294
|
+
"affiliate_codes_max_order_by",
|
|
295
|
+
"affiliate_codes_min_order_by",
|
|
296
|
+
"affiliate_codes_order_by",
|
|
297
|
+
"affiliate_codes_pk_columns_input",
|
|
298
|
+
"affiliate_codes_select_column",
|
|
299
|
+
"affiliate_codes_set_input",
|
|
300
|
+
"affiliate_codes_stream_cursor_input",
|
|
301
|
+
"affiliate_codes_stream_cursor_value_input",
|
|
302
|
+
"affiliate_codes_updates",
|
|
303
|
+
"affiliates_bool_exp",
|
|
304
|
+
"affiliates_order_by",
|
|
305
|
+
"affiliates_select_column",
|
|
306
|
+
"affiliates_stream_cursor_input",
|
|
307
|
+
"affiliates_stream_cursor_value_input",
|
|
308
|
+
"assets_aggregate_bool_exp",
|
|
309
|
+
"assets_aggregate_bool_exp_count",
|
|
310
|
+
"assets_aggregate_order_by",
|
|
311
|
+
"assets_bool_exp",
|
|
312
|
+
"assets_max_order_by",
|
|
313
|
+
"assets_min_order_by",
|
|
314
|
+
"assets_order_by",
|
|
315
|
+
"assets_pk_columns_input",
|
|
316
|
+
"assets_select_column",
|
|
317
|
+
"assets_set_input",
|
|
318
|
+
"assets_stream_cursor_input",
|
|
319
|
+
"assets_stream_cursor_value_input",
|
|
320
|
+
"assets_updates",
|
|
321
|
+
"bpchar_comparison_exp",
|
|
322
|
+
"credit_packs_bool_exp",
|
|
323
|
+
"credit_packs_order_by",
|
|
324
|
+
"credit_packs_select_column",
|
|
325
|
+
"credit_packs_stream_cursor_input",
|
|
326
|
+
"credit_packs_stream_cursor_value_input",
|
|
327
|
+
"cursor_ordering",
|
|
328
|
+
"executions_visibility_bool_exp",
|
|
329
|
+
"executions_visibility_order_by",
|
|
330
|
+
"executions_visibility_select_column",
|
|
331
|
+
"executions_visibility_stream_cursor_input",
|
|
332
|
+
"executions_visibility_stream_cursor_value_input",
|
|
333
|
+
"jsonb_cast_exp",
|
|
334
|
+
"jsonb_comparison_exp",
|
|
335
|
+
"order_by",
|
|
336
|
+
"personal_access_tokens_bool_exp",
|
|
337
|
+
"personal_access_tokens_order_by",
|
|
338
|
+
"personal_access_tokens_select_column",
|
|
339
|
+
"personal_access_tokens_stream_cursor_input",
|
|
340
|
+
"personal_access_tokens_stream_cursor_value_input",
|
|
341
|
+
"pipeline_runs_bool_exp",
|
|
342
|
+
"pipeline_runs_order_by",
|
|
343
|
+
"pipeline_runs_select_column",
|
|
344
|
+
"pipeline_runs_stream_cursor_input",
|
|
345
|
+
"pipeline_runs_stream_cursor_value_input",
|
|
346
|
+
"pipelines_bool_exp",
|
|
347
|
+
"pipelines_order_by",
|
|
348
|
+
"pipelines_select_column",
|
|
349
|
+
"pipelines_stream_cursor_input",
|
|
350
|
+
"pipelines_stream_cursor_value_input",
|
|
351
|
+
"plans_bool_exp",
|
|
352
|
+
"plans_order_by",
|
|
353
|
+
"plans_select_column",
|
|
354
|
+
"plans_stream_cursor_input",
|
|
355
|
+
"plans_stream_cursor_value_input",
|
|
356
|
+
"subscriptions_bool_exp",
|
|
357
|
+
"subscriptions_order_by",
|
|
358
|
+
"subscriptions_select_column",
|
|
359
|
+
"subscriptions_stream_cursor_input",
|
|
360
|
+
"subscriptions_stream_cursor_value_input",
|
|
361
|
+
"timestamp_comparison_exp",
|
|
362
|
+
"timestamptz_comparison_exp",
|
|
363
|
+
"uuid_comparison_exp",
|
|
364
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: ../graphql/operations/
|
|
3
|
+
|
|
4
|
+
from .base_model import BaseModel
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AddAffiliateCode(BaseModel):
|
|
8
|
+
add_affiliate_code: "AddAffiliateCodeAddAffiliateCode"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AddAffiliateCodeAddAffiliateCode(BaseModel):
|
|
12
|
+
success: bool
|
|
13
|
+
code_id: str
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
AddAffiliateCode.model_rebuild()
|