whop-sdk 0.0.1__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 whop-sdk might be problematic. Click here for more details.
- whop_sdk/__init__.py +94 -0
- whop_sdk/_base_client.py +1995 -0
- whop_sdk/_client.py +664 -0
- whop_sdk/_compat.py +219 -0
- whop_sdk/_constants.py +14 -0
- whop_sdk/_exceptions.py +112 -0
- whop_sdk/_files.py +123 -0
- whop_sdk/_models.py +835 -0
- whop_sdk/_qs.py +150 -0
- whop_sdk/_resource.py +43 -0
- whop_sdk/_response.py +830 -0
- whop_sdk/_streaming.py +333 -0
- whop_sdk/_types.py +260 -0
- whop_sdk/_utils/__init__.py +64 -0
- whop_sdk/_utils/_compat.py +45 -0
- whop_sdk/_utils/_datetime_parse.py +136 -0
- whop_sdk/_utils/_logs.py +25 -0
- whop_sdk/_utils/_proxy.py +65 -0
- whop_sdk/_utils/_reflection.py +42 -0
- whop_sdk/_utils/_resources_proxy.py +24 -0
- whop_sdk/_utils/_streams.py +12 -0
- whop_sdk/_utils/_sync.py +86 -0
- whop_sdk/_utils/_transform.py +457 -0
- whop_sdk/_utils/_typing.py +156 -0
- whop_sdk/_utils/_utils.py +421 -0
- whop_sdk/_version.py +4 -0
- whop_sdk/lib/.keep +4 -0
- whop_sdk/pagination.py +61 -0
- whop_sdk/py.typed +0 -0
- whop_sdk/resources/__init__.py +316 -0
- whop_sdk/resources/app_builds.py +562 -0
- whop_sdk/resources/apps.py +665 -0
- whop_sdk/resources/authorized_users.py +336 -0
- whop_sdk/resources/chat_channels.py +469 -0
- whop_sdk/resources/checkout_configurations.py +464 -0
- whop_sdk/resources/companies.py +171 -0
- whop_sdk/resources/course_lesson_interactions.py +343 -0
- whop_sdk/resources/entries.py +539 -0
- whop_sdk/resources/experiences.py +859 -0
- whop_sdk/resources/forum_posts.py +512 -0
- whop_sdk/resources/invoices.py +633 -0
- whop_sdk/resources/ledger_accounts.py +171 -0
- whop_sdk/resources/memberships.py +810 -0
- whop_sdk/resources/messages.py +446 -0
- whop_sdk/resources/payments.py +761 -0
- whop_sdk/resources/plans.py +906 -0
- whop_sdk/resources/products.py +969 -0
- whop_sdk/resources/reactions.py +423 -0
- whop_sdk/resources/shipments.py +451 -0
- whop_sdk/resources/support_channels.py +455 -0
- whop_sdk/resources/transfers.py +488 -0
- whop_sdk/resources/users.py +248 -0
- whop_sdk/resources/webhooks.py +69 -0
- whop_sdk/types/__init__.py +135 -0
- whop_sdk/types/app_build_create_params.py +59 -0
- whop_sdk/types/app_build_list_params.py +34 -0
- whop_sdk/types/app_build_list_response.py +50 -0
- whop_sdk/types/app_create_params.py +19 -0
- whop_sdk/types/app_list_params.py +54 -0
- whop_sdk/types/app_list_response.py +91 -0
- whop_sdk/types/app_update_params.py +58 -0
- whop_sdk/types/authorized_user_list_params.py +33 -0
- whop_sdk/types/authorized_user_list_response.py +33 -0
- whop_sdk/types/authorized_user_retrieve_response.py +33 -0
- whop_sdk/types/chat_channel_list_params.py +28 -0
- whop_sdk/types/chat_channel_list_response.py +43 -0
- whop_sdk/types/chat_channel_update_params.py +32 -0
- whop_sdk/types/checkout_configuration_create_params.py +129 -0
- whop_sdk/types/checkout_configuration_list_params.py +33 -0
- whop_sdk/types/checkout_configuration_list_response.py +66 -0
- whop_sdk/types/course_lesson_interaction_list_params.py +34 -0
- whop_sdk/types/entry_approve_response.py +10 -0
- whop_sdk/types/entry_list_params.py +44 -0
- whop_sdk/types/entry_list_response.py +56 -0
- whop_sdk/types/experience_attach_params.py +12 -0
- whop_sdk/types/experience_create_params.py +22 -0
- whop_sdk/types/experience_delete_response.py +7 -0
- whop_sdk/types/experience_detach_params.py +12 -0
- whop_sdk/types/experience_list_params.py +31 -0
- whop_sdk/types/experience_list_response.py +47 -0
- whop_sdk/types/experience_update_params.py +41 -0
- whop_sdk/types/forum_post_create_params.py +85 -0
- whop_sdk/types/forum_post_list_params.py +31 -0
- whop_sdk/types/forum_post_list_response.py +53 -0
- whop_sdk/types/invoice_create_params.py +137 -0
- whop_sdk/types/invoice_create_response.py +16 -0
- whop_sdk/types/invoice_created_webhook_event.py +26 -0
- whop_sdk/types/invoice_list_params.py +50 -0
- whop_sdk/types/invoice_paid_webhook_event.py +26 -0
- whop_sdk/types/invoice_past_due_webhook_event.py +26 -0
- whop_sdk/types/invoice_void_response.py +7 -0
- whop_sdk/types/invoice_voided_webhook_event.py +26 -0
- whop_sdk/types/ledger_account_retrieve_response.py +78 -0
- whop_sdk/types/membership_cancel_params.py +13 -0
- whop_sdk/types/membership_list_params.py +70 -0
- whop_sdk/types/membership_list_response.py +117 -0
- whop_sdk/types/membership_pause_params.py +16 -0
- whop_sdk/types/membership_update_params.py +13 -0
- whop_sdk/types/message_create_params.py +51 -0
- whop_sdk/types/message_list_params.py +30 -0
- whop_sdk/types/message_list_response.py +90 -0
- whop_sdk/types/payment_list_params.py +72 -0
- whop_sdk/types/payment_list_response.py +221 -0
- whop_sdk/types/payment_refund_params.py +13 -0
- whop_sdk/types/plan_create_params.py +106 -0
- whop_sdk/types/plan_delete_response.py +7 -0
- whop_sdk/types/plan_list_params.py +49 -0
- whop_sdk/types/plan_list_response.py +92 -0
- whop_sdk/types/plan_update_params.py +95 -0
- whop_sdk/types/product_create_params.py +170 -0
- whop_sdk/types/product_delete_response.py +7 -0
- whop_sdk/types/product_list_params.py +41 -0
- whop_sdk/types/product_update_params.py +90 -0
- whop_sdk/types/reaction_create_params.py +19 -0
- whop_sdk/types/reaction_list_params.py +25 -0
- whop_sdk/types/reaction_list_response.py +32 -0
- whop_sdk/types/shared/__init__.py +55 -0
- whop_sdk/types/shared/access_pass_type.py +7 -0
- whop_sdk/types/shared/app.py +159 -0
- whop_sdk/types/shared/app_build.py +50 -0
- whop_sdk/types/shared/app_build_platforms.py +7 -0
- whop_sdk/types/shared/app_build_statuses.py +7 -0
- whop_sdk/types/shared/app_statuses.py +7 -0
- whop_sdk/types/shared/app_view_type.py +7 -0
- whop_sdk/types/shared/authorized_user_roles.py +9 -0
- whop_sdk/types/shared/business_types.py +22 -0
- whop_sdk/types/shared/chat_channel.py +43 -0
- whop_sdk/types/shared/checkout_configuration.py +66 -0
- whop_sdk/types/shared/collection_method.py +7 -0
- whop_sdk/types/shared/company.py +71 -0
- whop_sdk/types/shared/course_lesson_interaction.py +44 -0
- whop_sdk/types/shared/course_lesson_interaction_list_item.py +44 -0
- whop_sdk/types/shared/currency.py +92 -0
- whop_sdk/types/shared/custom_cta.py +21 -0
- whop_sdk/types/shared/direction.py +7 -0
- whop_sdk/types/shared/dms_post_types.py +7 -0
- whop_sdk/types/shared/entry.py +70 -0
- whop_sdk/types/shared/entry_status.py +7 -0
- whop_sdk/types/shared/experience.py +66 -0
- whop_sdk/types/shared/forum_post.py +53 -0
- whop_sdk/types/shared/friendly_receipt_status.py +24 -0
- whop_sdk/types/shared/global_affiliate_status.py +7 -0
- whop_sdk/types/shared/industry_types.py +67 -0
- whop_sdk/types/shared/invoice.py +61 -0
- whop_sdk/types/shared/invoice_list_item.py +61 -0
- whop_sdk/types/shared/invoice_status.py +7 -0
- whop_sdk/types/shared/membership.py +117 -0
- whop_sdk/types/shared/membership_status.py +9 -0
- whop_sdk/types/shared/message.py +90 -0
- whop_sdk/types/shared/page_info.py +21 -0
- whop_sdk/types/shared/payment.py +211 -0
- whop_sdk/types/shared/plan.py +123 -0
- whop_sdk/types/shared/plan_type.py +7 -0
- whop_sdk/types/shared/product.py +124 -0
- whop_sdk/types/shared/product_list_item.py +49 -0
- whop_sdk/types/shared/promo_type.py +7 -0
- whop_sdk/types/shared/reaction.py +32 -0
- whop_sdk/types/shared/receipt_status.py +7 -0
- whop_sdk/types/shared/release_method.py +7 -0
- whop_sdk/types/shared/shipment.py +48 -0
- whop_sdk/types/shared/shipment_carrier.py +84 -0
- whop_sdk/types/shared/shipment_status.py +18 -0
- whop_sdk/types/shared/shipment_substatus.py +36 -0
- whop_sdk/types/shared/support_channel.py +39 -0
- whop_sdk/types/shared/tax_type.py +7 -0
- whop_sdk/types/shared/transfer.py +109 -0
- whop_sdk/types/shared/visibility.py +7 -0
- whop_sdk/types/shared/visibility_filter.py +9 -0
- whop_sdk/types/shared/who_can_post.py +7 -0
- whop_sdk/types/shared/who_can_react.py +7 -0
- whop_sdk/types/shared_params/__init__.py +27 -0
- whop_sdk/types/shared_params/access_pass_type.py +9 -0
- whop_sdk/types/shared_params/app_build_platforms.py +9 -0
- whop_sdk/types/shared_params/app_build_statuses.py +9 -0
- whop_sdk/types/shared_params/app_statuses.py +9 -0
- whop_sdk/types/shared_params/app_view_type.py +9 -0
- whop_sdk/types/shared_params/authorized_user_roles.py +11 -0
- whop_sdk/types/shared_params/business_types.py +24 -0
- whop_sdk/types/shared_params/collection_method.py +9 -0
- whop_sdk/types/shared_params/currency.py +94 -0
- whop_sdk/types/shared_params/custom_cta.py +23 -0
- whop_sdk/types/shared_params/direction.py +9 -0
- whop_sdk/types/shared_params/entry_status.py +9 -0
- whop_sdk/types/shared_params/friendly_receipt_status.py +26 -0
- whop_sdk/types/shared_params/global_affiliate_status.py +9 -0
- whop_sdk/types/shared_params/industry_types.py +69 -0
- whop_sdk/types/shared_params/invoice_status.py +9 -0
- whop_sdk/types/shared_params/membership_status.py +11 -0
- whop_sdk/types/shared_params/plan_type.py +9 -0
- whop_sdk/types/shared_params/receipt_status.py +9 -0
- whop_sdk/types/shared_params/release_method.py +9 -0
- whop_sdk/types/shared_params/tax_type.py +9 -0
- whop_sdk/types/shared_params/visibility.py +9 -0
- whop_sdk/types/shared_params/visibility_filter.py +11 -0
- whop_sdk/types/shared_params/who_can_post.py +9 -0
- whop_sdk/types/shared_params/who_can_react.py +9 -0
- whop_sdk/types/shipment_create_params.py +18 -0
- whop_sdk/types/shipment_list_params.py +31 -0
- whop_sdk/types/shipment_list_response.py +48 -0
- whop_sdk/types/support_channel_create_params.py +15 -0
- whop_sdk/types/support_channel_list_params.py +40 -0
- whop_sdk/types/support_channel_list_response.py +39 -0
- whop_sdk/types/transfer_create_params.py +36 -0
- whop_sdk/types/transfer_list_params.py +42 -0
- whop_sdk/types/transfer_list_response.py +35 -0
- whop_sdk/types/unwrap_webhook_event.py +15 -0
- whop_sdk/types/user_check_access_response.py +15 -0
- whop_sdk/types/user_retrieve_response.py +25 -0
- whop_sdk-0.0.1.dist-info/METADATA +522 -0
- whop_sdk-0.0.1.dist-info/RECORD +212 -0
- whop_sdk-0.0.1.dist-info/WHEEL +4 -0
- whop_sdk-0.0.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,859 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Literal
|
|
7
|
+
|
|
8
|
+
import httpx
|
|
9
|
+
|
|
10
|
+
from ..types import (
|
|
11
|
+
experience_list_params,
|
|
12
|
+
experience_attach_params,
|
|
13
|
+
experience_create_params,
|
|
14
|
+
experience_detach_params,
|
|
15
|
+
experience_update_params,
|
|
16
|
+
)
|
|
17
|
+
from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
18
|
+
from .._utils import maybe_transform, async_maybe_transform
|
|
19
|
+
from .._compat import cached_property
|
|
20
|
+
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
21
|
+
from .._response import (
|
|
22
|
+
to_raw_response_wrapper,
|
|
23
|
+
to_streamed_response_wrapper,
|
|
24
|
+
async_to_raw_response_wrapper,
|
|
25
|
+
async_to_streamed_response_wrapper,
|
|
26
|
+
)
|
|
27
|
+
from ..pagination import SyncCursorPage, AsyncCursorPage
|
|
28
|
+
from .._base_client import AsyncPaginator, make_request_options
|
|
29
|
+
from ..types.shared.experience import Experience
|
|
30
|
+
from ..types.experience_list_response import ExperienceListResponse
|
|
31
|
+
from ..types.experience_delete_response import ExperienceDeleteResponse
|
|
32
|
+
|
|
33
|
+
__all__ = ["ExperiencesResource", "AsyncExperiencesResource"]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class ExperiencesResource(SyncAPIResource):
|
|
37
|
+
@cached_property
|
|
38
|
+
def with_raw_response(self) -> ExperiencesResourceWithRawResponse:
|
|
39
|
+
"""
|
|
40
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
41
|
+
the raw response object instead of the parsed content.
|
|
42
|
+
|
|
43
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#accessing-raw-response-data-eg-headers
|
|
44
|
+
"""
|
|
45
|
+
return ExperiencesResourceWithRawResponse(self)
|
|
46
|
+
|
|
47
|
+
@cached_property
|
|
48
|
+
def with_streaming_response(self) -> ExperiencesResourceWithStreamingResponse:
|
|
49
|
+
"""
|
|
50
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
51
|
+
|
|
52
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#with_streaming_response
|
|
53
|
+
"""
|
|
54
|
+
return ExperiencesResourceWithStreamingResponse(self)
|
|
55
|
+
|
|
56
|
+
def create(
|
|
57
|
+
self,
|
|
58
|
+
*,
|
|
59
|
+
app_id: str,
|
|
60
|
+
company_id: str,
|
|
61
|
+
name: Optional[str] | Omit = omit,
|
|
62
|
+
section_id: Optional[str] | Omit = omit,
|
|
63
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
64
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
65
|
+
extra_headers: Headers | None = None,
|
|
66
|
+
extra_query: Query | None = None,
|
|
67
|
+
extra_body: Body | None = None,
|
|
68
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
69
|
+
) -> Experience:
|
|
70
|
+
"""
|
|
71
|
+
Required permissions:
|
|
72
|
+
|
|
73
|
+
- `experience:create`
|
|
74
|
+
|
|
75
|
+
Args:
|
|
76
|
+
app_id: The ID of the app to create the experience for
|
|
77
|
+
|
|
78
|
+
company_id: The ID of the company to create the experience for
|
|
79
|
+
|
|
80
|
+
name: The name of the experience
|
|
81
|
+
|
|
82
|
+
section_id: The ID of the section to create the experience in
|
|
83
|
+
|
|
84
|
+
extra_headers: Send extra headers
|
|
85
|
+
|
|
86
|
+
extra_query: Add additional query parameters to the request
|
|
87
|
+
|
|
88
|
+
extra_body: Add additional JSON properties to the request
|
|
89
|
+
|
|
90
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
91
|
+
"""
|
|
92
|
+
return self._post(
|
|
93
|
+
"/experiences",
|
|
94
|
+
body=maybe_transform(
|
|
95
|
+
{
|
|
96
|
+
"app_id": app_id,
|
|
97
|
+
"company_id": company_id,
|
|
98
|
+
"name": name,
|
|
99
|
+
"section_id": section_id,
|
|
100
|
+
},
|
|
101
|
+
experience_create_params.ExperienceCreateParams,
|
|
102
|
+
),
|
|
103
|
+
options=make_request_options(
|
|
104
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
105
|
+
),
|
|
106
|
+
cast_to=Experience,
|
|
107
|
+
)
|
|
108
|
+
|
|
109
|
+
def retrieve(
|
|
110
|
+
self,
|
|
111
|
+
id: str,
|
|
112
|
+
*,
|
|
113
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
114
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
115
|
+
extra_headers: Headers | None = None,
|
|
116
|
+
extra_query: Query | None = None,
|
|
117
|
+
extra_body: Body | None = None,
|
|
118
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
119
|
+
) -> Experience:
|
|
120
|
+
"""
|
|
121
|
+
Retrieves an experience by ID
|
|
122
|
+
|
|
123
|
+
Args:
|
|
124
|
+
extra_headers: Send extra headers
|
|
125
|
+
|
|
126
|
+
extra_query: Add additional query parameters to the request
|
|
127
|
+
|
|
128
|
+
extra_body: Add additional JSON properties to the request
|
|
129
|
+
|
|
130
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
131
|
+
"""
|
|
132
|
+
if not id:
|
|
133
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
134
|
+
return self._get(
|
|
135
|
+
f"/experiences/{id}",
|
|
136
|
+
options=make_request_options(
|
|
137
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
138
|
+
),
|
|
139
|
+
cast_to=Experience,
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
def update(
|
|
143
|
+
self,
|
|
144
|
+
id: str,
|
|
145
|
+
*,
|
|
146
|
+
access_level: Optional[Literal["public", "private"]] | Omit = omit,
|
|
147
|
+
logo: Optional[experience_update_params.Logo] | Omit = omit,
|
|
148
|
+
name: Optional[str] | Omit = omit,
|
|
149
|
+
order: Optional[str] | Omit = omit,
|
|
150
|
+
section_id: Optional[str] | Omit = omit,
|
|
151
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
152
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
153
|
+
extra_headers: Headers | None = None,
|
|
154
|
+
extra_query: Query | None = None,
|
|
155
|
+
extra_body: Body | None = None,
|
|
156
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
157
|
+
) -> Experience:
|
|
158
|
+
"""
|
|
159
|
+
Required permissions:
|
|
160
|
+
|
|
161
|
+
- `experience:update`
|
|
162
|
+
|
|
163
|
+
Args:
|
|
164
|
+
access_level: The different access levels for experiences (PUBLIC IS NEVER USED ANYMORE).
|
|
165
|
+
|
|
166
|
+
logo: The logo for the experience
|
|
167
|
+
|
|
168
|
+
name: The name of the experience.
|
|
169
|
+
|
|
170
|
+
order: The order of the experience in the section.
|
|
171
|
+
|
|
172
|
+
section_id: The ID of the section to update.
|
|
173
|
+
|
|
174
|
+
extra_headers: Send extra headers
|
|
175
|
+
|
|
176
|
+
extra_query: Add additional query parameters to the request
|
|
177
|
+
|
|
178
|
+
extra_body: Add additional JSON properties to the request
|
|
179
|
+
|
|
180
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
181
|
+
"""
|
|
182
|
+
if not id:
|
|
183
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
184
|
+
return self._patch(
|
|
185
|
+
f"/experiences/{id}",
|
|
186
|
+
body=maybe_transform(
|
|
187
|
+
{
|
|
188
|
+
"access_level": access_level,
|
|
189
|
+
"logo": logo,
|
|
190
|
+
"name": name,
|
|
191
|
+
"order": order,
|
|
192
|
+
"section_id": section_id,
|
|
193
|
+
},
|
|
194
|
+
experience_update_params.ExperienceUpdateParams,
|
|
195
|
+
),
|
|
196
|
+
options=make_request_options(
|
|
197
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
198
|
+
),
|
|
199
|
+
cast_to=Experience,
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
def list(
|
|
203
|
+
self,
|
|
204
|
+
*,
|
|
205
|
+
company_id: str,
|
|
206
|
+
after: Optional[str] | Omit = omit,
|
|
207
|
+
app_id: Optional[str] | Omit = omit,
|
|
208
|
+
before: Optional[str] | Omit = omit,
|
|
209
|
+
first: Optional[int] | Omit = omit,
|
|
210
|
+
last: Optional[int] | Omit = omit,
|
|
211
|
+
product_id: Optional[str] | Omit = omit,
|
|
212
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
213
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
214
|
+
extra_headers: Headers | None = None,
|
|
215
|
+
extra_query: Query | None = None,
|
|
216
|
+
extra_body: Body | None = None,
|
|
217
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
218
|
+
) -> SyncCursorPage[ExperienceListResponse]:
|
|
219
|
+
"""
|
|
220
|
+
Lists experiences for a company
|
|
221
|
+
|
|
222
|
+
Required permissions:
|
|
223
|
+
|
|
224
|
+
- `experience:hidden_experience:read`
|
|
225
|
+
|
|
226
|
+
Args:
|
|
227
|
+
company_id: The ID of the company to filter experiences by
|
|
228
|
+
|
|
229
|
+
after: Returns the elements in the list that come after the specified cursor.
|
|
230
|
+
|
|
231
|
+
app_id: The ID of the app to filter experiences by
|
|
232
|
+
|
|
233
|
+
before: Returns the elements in the list that come before the specified cursor.
|
|
234
|
+
|
|
235
|
+
first: Returns the first _n_ elements from the list.
|
|
236
|
+
|
|
237
|
+
last: Returns the last _n_ elements from the list.
|
|
238
|
+
|
|
239
|
+
product_id: The ID of the product to filter experiences by
|
|
240
|
+
|
|
241
|
+
extra_headers: Send extra headers
|
|
242
|
+
|
|
243
|
+
extra_query: Add additional query parameters to the request
|
|
244
|
+
|
|
245
|
+
extra_body: Add additional JSON properties to the request
|
|
246
|
+
|
|
247
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
248
|
+
"""
|
|
249
|
+
return self._get_api_list(
|
|
250
|
+
"/experiences",
|
|
251
|
+
page=SyncCursorPage[ExperienceListResponse],
|
|
252
|
+
options=make_request_options(
|
|
253
|
+
extra_headers=extra_headers,
|
|
254
|
+
extra_query=extra_query,
|
|
255
|
+
extra_body=extra_body,
|
|
256
|
+
timeout=timeout,
|
|
257
|
+
query=maybe_transform(
|
|
258
|
+
{
|
|
259
|
+
"company_id": company_id,
|
|
260
|
+
"after": after,
|
|
261
|
+
"app_id": app_id,
|
|
262
|
+
"before": before,
|
|
263
|
+
"first": first,
|
|
264
|
+
"last": last,
|
|
265
|
+
"product_id": product_id,
|
|
266
|
+
},
|
|
267
|
+
experience_list_params.ExperienceListParams,
|
|
268
|
+
),
|
|
269
|
+
),
|
|
270
|
+
model=ExperienceListResponse,
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
def delete(
|
|
274
|
+
self,
|
|
275
|
+
id: str,
|
|
276
|
+
*,
|
|
277
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
278
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
279
|
+
extra_headers: Headers | None = None,
|
|
280
|
+
extra_query: Query | None = None,
|
|
281
|
+
extra_body: Body | None = None,
|
|
282
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
283
|
+
) -> ExperienceDeleteResponse:
|
|
284
|
+
"""
|
|
285
|
+
Required permissions:
|
|
286
|
+
|
|
287
|
+
- `experience:delete`
|
|
288
|
+
|
|
289
|
+
Args:
|
|
290
|
+
extra_headers: Send extra headers
|
|
291
|
+
|
|
292
|
+
extra_query: Add additional query parameters to the request
|
|
293
|
+
|
|
294
|
+
extra_body: Add additional JSON properties to the request
|
|
295
|
+
|
|
296
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
297
|
+
"""
|
|
298
|
+
if not id:
|
|
299
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
300
|
+
return self._delete(
|
|
301
|
+
f"/experiences/{id}",
|
|
302
|
+
options=make_request_options(
|
|
303
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
304
|
+
),
|
|
305
|
+
cast_to=ExperienceDeleteResponse,
|
|
306
|
+
)
|
|
307
|
+
|
|
308
|
+
def attach(
|
|
309
|
+
self,
|
|
310
|
+
id: str,
|
|
311
|
+
*,
|
|
312
|
+
product_id: str,
|
|
313
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
314
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
315
|
+
extra_headers: Headers | None = None,
|
|
316
|
+
extra_query: Query | None = None,
|
|
317
|
+
extra_body: Body | None = None,
|
|
318
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
319
|
+
) -> Experience:
|
|
320
|
+
"""
|
|
321
|
+
Adds an experience to an product, making it accessible to the product's
|
|
322
|
+
customers.
|
|
323
|
+
|
|
324
|
+
Required permissions:
|
|
325
|
+
|
|
326
|
+
- `experience:attach`
|
|
327
|
+
|
|
328
|
+
Args:
|
|
329
|
+
product_id: The ID of the Access Pass to add the Experience to.
|
|
330
|
+
|
|
331
|
+
extra_headers: Send extra headers
|
|
332
|
+
|
|
333
|
+
extra_query: Add additional query parameters to the request
|
|
334
|
+
|
|
335
|
+
extra_body: Add additional JSON properties to the request
|
|
336
|
+
|
|
337
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
338
|
+
"""
|
|
339
|
+
if not id:
|
|
340
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
341
|
+
return self._post(
|
|
342
|
+
f"/experiences/{id}/attach",
|
|
343
|
+
body=maybe_transform({"product_id": product_id}, experience_attach_params.ExperienceAttachParams),
|
|
344
|
+
options=make_request_options(
|
|
345
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
346
|
+
),
|
|
347
|
+
cast_to=Experience,
|
|
348
|
+
)
|
|
349
|
+
|
|
350
|
+
def detach(
|
|
351
|
+
self,
|
|
352
|
+
id: str,
|
|
353
|
+
*,
|
|
354
|
+
product_id: str,
|
|
355
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
356
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
357
|
+
extra_headers: Headers | None = None,
|
|
358
|
+
extra_query: Query | None = None,
|
|
359
|
+
extra_body: Body | None = None,
|
|
360
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
361
|
+
) -> Experience:
|
|
362
|
+
"""
|
|
363
|
+
Removes an experience from an product, making it inaccessible to the product's
|
|
364
|
+
customers.
|
|
365
|
+
|
|
366
|
+
Required permissions:
|
|
367
|
+
|
|
368
|
+
- `experience:detach`
|
|
369
|
+
|
|
370
|
+
Args:
|
|
371
|
+
product_id: The ID of the Access Pass to add the Experience to.
|
|
372
|
+
|
|
373
|
+
extra_headers: Send extra headers
|
|
374
|
+
|
|
375
|
+
extra_query: Add additional query parameters to the request
|
|
376
|
+
|
|
377
|
+
extra_body: Add additional JSON properties to the request
|
|
378
|
+
|
|
379
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
380
|
+
"""
|
|
381
|
+
if not id:
|
|
382
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
383
|
+
return self._post(
|
|
384
|
+
f"/experiences/{id}/detach",
|
|
385
|
+
body=maybe_transform({"product_id": product_id}, experience_detach_params.ExperienceDetachParams),
|
|
386
|
+
options=make_request_options(
|
|
387
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
388
|
+
),
|
|
389
|
+
cast_to=Experience,
|
|
390
|
+
)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class AsyncExperiencesResource(AsyncAPIResource):
|
|
394
|
+
@cached_property
|
|
395
|
+
def with_raw_response(self) -> AsyncExperiencesResourceWithRawResponse:
|
|
396
|
+
"""
|
|
397
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
398
|
+
the raw response object instead of the parsed content.
|
|
399
|
+
|
|
400
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#accessing-raw-response-data-eg-headers
|
|
401
|
+
"""
|
|
402
|
+
return AsyncExperiencesResourceWithRawResponse(self)
|
|
403
|
+
|
|
404
|
+
@cached_property
|
|
405
|
+
def with_streaming_response(self) -> AsyncExperiencesResourceWithStreamingResponse:
|
|
406
|
+
"""
|
|
407
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
408
|
+
|
|
409
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#with_streaming_response
|
|
410
|
+
"""
|
|
411
|
+
return AsyncExperiencesResourceWithStreamingResponse(self)
|
|
412
|
+
|
|
413
|
+
async def create(
|
|
414
|
+
self,
|
|
415
|
+
*,
|
|
416
|
+
app_id: str,
|
|
417
|
+
company_id: str,
|
|
418
|
+
name: Optional[str] | Omit = omit,
|
|
419
|
+
section_id: Optional[str] | Omit = omit,
|
|
420
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
421
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
422
|
+
extra_headers: Headers | None = None,
|
|
423
|
+
extra_query: Query | None = None,
|
|
424
|
+
extra_body: Body | None = None,
|
|
425
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
426
|
+
) -> Experience:
|
|
427
|
+
"""
|
|
428
|
+
Required permissions:
|
|
429
|
+
|
|
430
|
+
- `experience:create`
|
|
431
|
+
|
|
432
|
+
Args:
|
|
433
|
+
app_id: The ID of the app to create the experience for
|
|
434
|
+
|
|
435
|
+
company_id: The ID of the company to create the experience for
|
|
436
|
+
|
|
437
|
+
name: The name of the experience
|
|
438
|
+
|
|
439
|
+
section_id: The ID of the section to create the experience in
|
|
440
|
+
|
|
441
|
+
extra_headers: Send extra headers
|
|
442
|
+
|
|
443
|
+
extra_query: Add additional query parameters to the request
|
|
444
|
+
|
|
445
|
+
extra_body: Add additional JSON properties to the request
|
|
446
|
+
|
|
447
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
448
|
+
"""
|
|
449
|
+
return await self._post(
|
|
450
|
+
"/experiences",
|
|
451
|
+
body=await async_maybe_transform(
|
|
452
|
+
{
|
|
453
|
+
"app_id": app_id,
|
|
454
|
+
"company_id": company_id,
|
|
455
|
+
"name": name,
|
|
456
|
+
"section_id": section_id,
|
|
457
|
+
},
|
|
458
|
+
experience_create_params.ExperienceCreateParams,
|
|
459
|
+
),
|
|
460
|
+
options=make_request_options(
|
|
461
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
462
|
+
),
|
|
463
|
+
cast_to=Experience,
|
|
464
|
+
)
|
|
465
|
+
|
|
466
|
+
async def retrieve(
|
|
467
|
+
self,
|
|
468
|
+
id: str,
|
|
469
|
+
*,
|
|
470
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
471
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
472
|
+
extra_headers: Headers | None = None,
|
|
473
|
+
extra_query: Query | None = None,
|
|
474
|
+
extra_body: Body | None = None,
|
|
475
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
476
|
+
) -> Experience:
|
|
477
|
+
"""
|
|
478
|
+
Retrieves an experience by ID
|
|
479
|
+
|
|
480
|
+
Args:
|
|
481
|
+
extra_headers: Send extra headers
|
|
482
|
+
|
|
483
|
+
extra_query: Add additional query parameters to the request
|
|
484
|
+
|
|
485
|
+
extra_body: Add additional JSON properties to the request
|
|
486
|
+
|
|
487
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
488
|
+
"""
|
|
489
|
+
if not id:
|
|
490
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
491
|
+
return await self._get(
|
|
492
|
+
f"/experiences/{id}",
|
|
493
|
+
options=make_request_options(
|
|
494
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
495
|
+
),
|
|
496
|
+
cast_to=Experience,
|
|
497
|
+
)
|
|
498
|
+
|
|
499
|
+
async def update(
|
|
500
|
+
self,
|
|
501
|
+
id: str,
|
|
502
|
+
*,
|
|
503
|
+
access_level: Optional[Literal["public", "private"]] | Omit = omit,
|
|
504
|
+
logo: Optional[experience_update_params.Logo] | Omit = omit,
|
|
505
|
+
name: Optional[str] | Omit = omit,
|
|
506
|
+
order: Optional[str] | Omit = omit,
|
|
507
|
+
section_id: Optional[str] | Omit = omit,
|
|
508
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
509
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
510
|
+
extra_headers: Headers | None = None,
|
|
511
|
+
extra_query: Query | None = None,
|
|
512
|
+
extra_body: Body | None = None,
|
|
513
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
514
|
+
) -> Experience:
|
|
515
|
+
"""
|
|
516
|
+
Required permissions:
|
|
517
|
+
|
|
518
|
+
- `experience:update`
|
|
519
|
+
|
|
520
|
+
Args:
|
|
521
|
+
access_level: The different access levels for experiences (PUBLIC IS NEVER USED ANYMORE).
|
|
522
|
+
|
|
523
|
+
logo: The logo for the experience
|
|
524
|
+
|
|
525
|
+
name: The name of the experience.
|
|
526
|
+
|
|
527
|
+
order: The order of the experience in the section.
|
|
528
|
+
|
|
529
|
+
section_id: The ID of the section to update.
|
|
530
|
+
|
|
531
|
+
extra_headers: Send extra headers
|
|
532
|
+
|
|
533
|
+
extra_query: Add additional query parameters to the request
|
|
534
|
+
|
|
535
|
+
extra_body: Add additional JSON properties to the request
|
|
536
|
+
|
|
537
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
538
|
+
"""
|
|
539
|
+
if not id:
|
|
540
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
541
|
+
return await self._patch(
|
|
542
|
+
f"/experiences/{id}",
|
|
543
|
+
body=await async_maybe_transform(
|
|
544
|
+
{
|
|
545
|
+
"access_level": access_level,
|
|
546
|
+
"logo": logo,
|
|
547
|
+
"name": name,
|
|
548
|
+
"order": order,
|
|
549
|
+
"section_id": section_id,
|
|
550
|
+
},
|
|
551
|
+
experience_update_params.ExperienceUpdateParams,
|
|
552
|
+
),
|
|
553
|
+
options=make_request_options(
|
|
554
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
555
|
+
),
|
|
556
|
+
cast_to=Experience,
|
|
557
|
+
)
|
|
558
|
+
|
|
559
|
+
def list(
|
|
560
|
+
self,
|
|
561
|
+
*,
|
|
562
|
+
company_id: str,
|
|
563
|
+
after: Optional[str] | Omit = omit,
|
|
564
|
+
app_id: Optional[str] | Omit = omit,
|
|
565
|
+
before: Optional[str] | Omit = omit,
|
|
566
|
+
first: Optional[int] | Omit = omit,
|
|
567
|
+
last: Optional[int] | Omit = omit,
|
|
568
|
+
product_id: Optional[str] | Omit = omit,
|
|
569
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
570
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
571
|
+
extra_headers: Headers | None = None,
|
|
572
|
+
extra_query: Query | None = None,
|
|
573
|
+
extra_body: Body | None = None,
|
|
574
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
575
|
+
) -> AsyncPaginator[ExperienceListResponse, AsyncCursorPage[ExperienceListResponse]]:
|
|
576
|
+
"""
|
|
577
|
+
Lists experiences for a company
|
|
578
|
+
|
|
579
|
+
Required permissions:
|
|
580
|
+
|
|
581
|
+
- `experience:hidden_experience:read`
|
|
582
|
+
|
|
583
|
+
Args:
|
|
584
|
+
company_id: The ID of the company to filter experiences by
|
|
585
|
+
|
|
586
|
+
after: Returns the elements in the list that come after the specified cursor.
|
|
587
|
+
|
|
588
|
+
app_id: The ID of the app to filter experiences by
|
|
589
|
+
|
|
590
|
+
before: Returns the elements in the list that come before the specified cursor.
|
|
591
|
+
|
|
592
|
+
first: Returns the first _n_ elements from the list.
|
|
593
|
+
|
|
594
|
+
last: Returns the last _n_ elements from the list.
|
|
595
|
+
|
|
596
|
+
product_id: The ID of the product to filter experiences by
|
|
597
|
+
|
|
598
|
+
extra_headers: Send extra headers
|
|
599
|
+
|
|
600
|
+
extra_query: Add additional query parameters to the request
|
|
601
|
+
|
|
602
|
+
extra_body: Add additional JSON properties to the request
|
|
603
|
+
|
|
604
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
605
|
+
"""
|
|
606
|
+
return self._get_api_list(
|
|
607
|
+
"/experiences",
|
|
608
|
+
page=AsyncCursorPage[ExperienceListResponse],
|
|
609
|
+
options=make_request_options(
|
|
610
|
+
extra_headers=extra_headers,
|
|
611
|
+
extra_query=extra_query,
|
|
612
|
+
extra_body=extra_body,
|
|
613
|
+
timeout=timeout,
|
|
614
|
+
query=maybe_transform(
|
|
615
|
+
{
|
|
616
|
+
"company_id": company_id,
|
|
617
|
+
"after": after,
|
|
618
|
+
"app_id": app_id,
|
|
619
|
+
"before": before,
|
|
620
|
+
"first": first,
|
|
621
|
+
"last": last,
|
|
622
|
+
"product_id": product_id,
|
|
623
|
+
},
|
|
624
|
+
experience_list_params.ExperienceListParams,
|
|
625
|
+
),
|
|
626
|
+
),
|
|
627
|
+
model=ExperienceListResponse,
|
|
628
|
+
)
|
|
629
|
+
|
|
630
|
+
async def delete(
|
|
631
|
+
self,
|
|
632
|
+
id: str,
|
|
633
|
+
*,
|
|
634
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
635
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
636
|
+
extra_headers: Headers | None = None,
|
|
637
|
+
extra_query: Query | None = None,
|
|
638
|
+
extra_body: Body | None = None,
|
|
639
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
640
|
+
) -> ExperienceDeleteResponse:
|
|
641
|
+
"""
|
|
642
|
+
Required permissions:
|
|
643
|
+
|
|
644
|
+
- `experience:delete`
|
|
645
|
+
|
|
646
|
+
Args:
|
|
647
|
+
extra_headers: Send extra headers
|
|
648
|
+
|
|
649
|
+
extra_query: Add additional query parameters to the request
|
|
650
|
+
|
|
651
|
+
extra_body: Add additional JSON properties to the request
|
|
652
|
+
|
|
653
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
654
|
+
"""
|
|
655
|
+
if not id:
|
|
656
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
657
|
+
return await self._delete(
|
|
658
|
+
f"/experiences/{id}",
|
|
659
|
+
options=make_request_options(
|
|
660
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
661
|
+
),
|
|
662
|
+
cast_to=ExperienceDeleteResponse,
|
|
663
|
+
)
|
|
664
|
+
|
|
665
|
+
async def attach(
|
|
666
|
+
self,
|
|
667
|
+
id: str,
|
|
668
|
+
*,
|
|
669
|
+
product_id: str,
|
|
670
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
671
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
672
|
+
extra_headers: Headers | None = None,
|
|
673
|
+
extra_query: Query | None = None,
|
|
674
|
+
extra_body: Body | None = None,
|
|
675
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
676
|
+
) -> Experience:
|
|
677
|
+
"""
|
|
678
|
+
Adds an experience to an product, making it accessible to the product's
|
|
679
|
+
customers.
|
|
680
|
+
|
|
681
|
+
Required permissions:
|
|
682
|
+
|
|
683
|
+
- `experience:attach`
|
|
684
|
+
|
|
685
|
+
Args:
|
|
686
|
+
product_id: The ID of the Access Pass to add the Experience to.
|
|
687
|
+
|
|
688
|
+
extra_headers: Send extra headers
|
|
689
|
+
|
|
690
|
+
extra_query: Add additional query parameters to the request
|
|
691
|
+
|
|
692
|
+
extra_body: Add additional JSON properties to the request
|
|
693
|
+
|
|
694
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
695
|
+
"""
|
|
696
|
+
if not id:
|
|
697
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
698
|
+
return await self._post(
|
|
699
|
+
f"/experiences/{id}/attach",
|
|
700
|
+
body=await async_maybe_transform(
|
|
701
|
+
{"product_id": product_id}, experience_attach_params.ExperienceAttachParams
|
|
702
|
+
),
|
|
703
|
+
options=make_request_options(
|
|
704
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
705
|
+
),
|
|
706
|
+
cast_to=Experience,
|
|
707
|
+
)
|
|
708
|
+
|
|
709
|
+
async def detach(
|
|
710
|
+
self,
|
|
711
|
+
id: str,
|
|
712
|
+
*,
|
|
713
|
+
product_id: str,
|
|
714
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
715
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
716
|
+
extra_headers: Headers | None = None,
|
|
717
|
+
extra_query: Query | None = None,
|
|
718
|
+
extra_body: Body | None = None,
|
|
719
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
720
|
+
) -> Experience:
|
|
721
|
+
"""
|
|
722
|
+
Removes an experience from an product, making it inaccessible to the product's
|
|
723
|
+
customers.
|
|
724
|
+
|
|
725
|
+
Required permissions:
|
|
726
|
+
|
|
727
|
+
- `experience:detach`
|
|
728
|
+
|
|
729
|
+
Args:
|
|
730
|
+
product_id: The ID of the Access Pass to add the Experience to.
|
|
731
|
+
|
|
732
|
+
extra_headers: Send extra headers
|
|
733
|
+
|
|
734
|
+
extra_query: Add additional query parameters to the request
|
|
735
|
+
|
|
736
|
+
extra_body: Add additional JSON properties to the request
|
|
737
|
+
|
|
738
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
739
|
+
"""
|
|
740
|
+
if not id:
|
|
741
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
742
|
+
return await self._post(
|
|
743
|
+
f"/experiences/{id}/detach",
|
|
744
|
+
body=await async_maybe_transform(
|
|
745
|
+
{"product_id": product_id}, experience_detach_params.ExperienceDetachParams
|
|
746
|
+
),
|
|
747
|
+
options=make_request_options(
|
|
748
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
749
|
+
),
|
|
750
|
+
cast_to=Experience,
|
|
751
|
+
)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
class ExperiencesResourceWithRawResponse:
|
|
755
|
+
def __init__(self, experiences: ExperiencesResource) -> None:
|
|
756
|
+
self._experiences = experiences
|
|
757
|
+
|
|
758
|
+
self.create = to_raw_response_wrapper(
|
|
759
|
+
experiences.create,
|
|
760
|
+
)
|
|
761
|
+
self.retrieve = to_raw_response_wrapper(
|
|
762
|
+
experiences.retrieve,
|
|
763
|
+
)
|
|
764
|
+
self.update = to_raw_response_wrapper(
|
|
765
|
+
experiences.update,
|
|
766
|
+
)
|
|
767
|
+
self.list = to_raw_response_wrapper(
|
|
768
|
+
experiences.list,
|
|
769
|
+
)
|
|
770
|
+
self.delete = to_raw_response_wrapper(
|
|
771
|
+
experiences.delete,
|
|
772
|
+
)
|
|
773
|
+
self.attach = to_raw_response_wrapper(
|
|
774
|
+
experiences.attach,
|
|
775
|
+
)
|
|
776
|
+
self.detach = to_raw_response_wrapper(
|
|
777
|
+
experiences.detach,
|
|
778
|
+
)
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
class AsyncExperiencesResourceWithRawResponse:
|
|
782
|
+
def __init__(self, experiences: AsyncExperiencesResource) -> None:
|
|
783
|
+
self._experiences = experiences
|
|
784
|
+
|
|
785
|
+
self.create = async_to_raw_response_wrapper(
|
|
786
|
+
experiences.create,
|
|
787
|
+
)
|
|
788
|
+
self.retrieve = async_to_raw_response_wrapper(
|
|
789
|
+
experiences.retrieve,
|
|
790
|
+
)
|
|
791
|
+
self.update = async_to_raw_response_wrapper(
|
|
792
|
+
experiences.update,
|
|
793
|
+
)
|
|
794
|
+
self.list = async_to_raw_response_wrapper(
|
|
795
|
+
experiences.list,
|
|
796
|
+
)
|
|
797
|
+
self.delete = async_to_raw_response_wrapper(
|
|
798
|
+
experiences.delete,
|
|
799
|
+
)
|
|
800
|
+
self.attach = async_to_raw_response_wrapper(
|
|
801
|
+
experiences.attach,
|
|
802
|
+
)
|
|
803
|
+
self.detach = async_to_raw_response_wrapper(
|
|
804
|
+
experiences.detach,
|
|
805
|
+
)
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
class ExperiencesResourceWithStreamingResponse:
|
|
809
|
+
def __init__(self, experiences: ExperiencesResource) -> None:
|
|
810
|
+
self._experiences = experiences
|
|
811
|
+
|
|
812
|
+
self.create = to_streamed_response_wrapper(
|
|
813
|
+
experiences.create,
|
|
814
|
+
)
|
|
815
|
+
self.retrieve = to_streamed_response_wrapper(
|
|
816
|
+
experiences.retrieve,
|
|
817
|
+
)
|
|
818
|
+
self.update = to_streamed_response_wrapper(
|
|
819
|
+
experiences.update,
|
|
820
|
+
)
|
|
821
|
+
self.list = to_streamed_response_wrapper(
|
|
822
|
+
experiences.list,
|
|
823
|
+
)
|
|
824
|
+
self.delete = to_streamed_response_wrapper(
|
|
825
|
+
experiences.delete,
|
|
826
|
+
)
|
|
827
|
+
self.attach = to_streamed_response_wrapper(
|
|
828
|
+
experiences.attach,
|
|
829
|
+
)
|
|
830
|
+
self.detach = to_streamed_response_wrapper(
|
|
831
|
+
experiences.detach,
|
|
832
|
+
)
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
class AsyncExperiencesResourceWithStreamingResponse:
|
|
836
|
+
def __init__(self, experiences: AsyncExperiencesResource) -> None:
|
|
837
|
+
self._experiences = experiences
|
|
838
|
+
|
|
839
|
+
self.create = async_to_streamed_response_wrapper(
|
|
840
|
+
experiences.create,
|
|
841
|
+
)
|
|
842
|
+
self.retrieve = async_to_streamed_response_wrapper(
|
|
843
|
+
experiences.retrieve,
|
|
844
|
+
)
|
|
845
|
+
self.update = async_to_streamed_response_wrapper(
|
|
846
|
+
experiences.update,
|
|
847
|
+
)
|
|
848
|
+
self.list = async_to_streamed_response_wrapper(
|
|
849
|
+
experiences.list,
|
|
850
|
+
)
|
|
851
|
+
self.delete = async_to_streamed_response_wrapper(
|
|
852
|
+
experiences.delete,
|
|
853
|
+
)
|
|
854
|
+
self.attach = async_to_streamed_response_wrapper(
|
|
855
|
+
experiences.attach,
|
|
856
|
+
)
|
|
857
|
+
self.detach = async_to_streamed_response_wrapper(
|
|
858
|
+
experiences.detach,
|
|
859
|
+
)
|