moovio_sdk 0.17.3__py3-none-any.whl → 0.17.4__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 moovio_sdk might be problematic. Click here for more details.
- moovio_sdk/_version.py +2 -2
- moovio_sdk/models/components/createproductoption.py +5 -4
- moovio_sdk/models/components/productoption.py +5 -4
- moovio_sdk/models/components/productoptionvalidationerror.py +8 -4
- {moovio_sdk-0.17.3.dist-info → moovio_sdk-0.17.4.dist-info}/METADATA +1 -1
- {moovio_sdk-0.17.3.dist-info → moovio_sdk-0.17.4.dist-info}/RECORD +7 -7
- {moovio_sdk-0.17.3.dist-info → moovio_sdk-0.17.4.dist-info}/WHEEL +0 -0
moovio_sdk/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "moovio_sdk"
|
|
6
|
-
__version__: str = "0.17.
|
|
6
|
+
__version__: str = "0.17.4"
|
|
7
7
|
__openapi_doc_version__: str = "latest"
|
|
8
8
|
__gen_version__: str = "2.723.11"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.17.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.17.4 2.723.11 latest moovio_sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .amountdecimal import AmountDecimal, AmountDecimalTypedDict
|
|
4
5
|
from .assignproductimage import AssignProductImage, AssignProductImageTypedDict
|
|
5
6
|
from moovio_sdk.types import BaseModel
|
|
6
7
|
import pydantic
|
|
@@ -18,7 +19,7 @@ class CreateProductOptionTypedDict(TypedDict):
|
|
|
18
19
|
- Supports Markdown for formatting
|
|
19
20
|
- HTML is not permitted and will be rejected
|
|
20
21
|
"""
|
|
21
|
-
price_modifier: NotRequired[
|
|
22
|
+
price_modifier: NotRequired[AmountDecimalTypedDict]
|
|
22
23
|
r"""The adjustment applied to a product's base price by this option. Can be negative, positive, or zero."""
|
|
23
24
|
images: NotRequired[List[AssignProductImageTypedDict]]
|
|
24
25
|
r"""Assign previously uploaded images to a product or option."""
|
|
@@ -36,9 +37,9 @@ class CreateProductOption(BaseModel):
|
|
|
36
37
|
- HTML is not permitted and will be rejected
|
|
37
38
|
"""
|
|
38
39
|
|
|
39
|
-
price_modifier: Annotated[
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
price_modifier: Annotated[
|
|
41
|
+
Optional[AmountDecimal], pydantic.Field(alias="priceModifier")
|
|
42
|
+
] = None
|
|
42
43
|
r"""The adjustment applied to a product's base price by this option. Can be negative, positive, or zero."""
|
|
43
44
|
|
|
44
45
|
images: Optional[List[AssignProductImage]] = None
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .amountdecimal import AmountDecimal, AmountDecimalTypedDict
|
|
4
5
|
from .productimagemetadata import ProductImageMetadata, ProductImageMetadataTypedDict
|
|
5
6
|
from moovio_sdk.types import BaseModel
|
|
6
7
|
import pydantic
|
|
@@ -20,7 +21,7 @@ class ProductOptionTypedDict(TypedDict):
|
|
|
20
21
|
- Supports Markdown for formatting
|
|
21
22
|
- HTML is not permitted and will be rejected
|
|
22
23
|
"""
|
|
23
|
-
price_modifier: NotRequired[
|
|
24
|
+
price_modifier: NotRequired[AmountDecimalTypedDict]
|
|
24
25
|
r"""The adjustment applied to a product's base price by this option. Can be negative, positive, or zero."""
|
|
25
26
|
images: NotRequired[List[ProductImageMetadataTypedDict]]
|
|
26
27
|
r"""The images associated with this option."""
|
|
@@ -40,9 +41,9 @@ class ProductOption(BaseModel):
|
|
|
40
41
|
- HTML is not permitted and will be rejected
|
|
41
42
|
"""
|
|
42
43
|
|
|
43
|
-
price_modifier: Annotated[
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
price_modifier: Annotated[
|
|
45
|
+
Optional[AmountDecimal], pydantic.Field(alias="priceModifier")
|
|
46
|
+
] = None
|
|
46
47
|
r"""The adjustment applied to a product's base price by this option. Can be negative, positive, or zero."""
|
|
47
48
|
|
|
48
49
|
images: Optional[List[ProductImageMetadata]] = None
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
from .amountdecimalvalidationerror import (
|
|
5
|
+
AmountDecimalValidationError,
|
|
6
|
+
AmountDecimalValidationErrorTypedDict,
|
|
7
|
+
)
|
|
4
8
|
from .assignproductimagevalidationerror import (
|
|
5
9
|
AssignProductImageValidationError,
|
|
6
10
|
AssignProductImageValidationErrorTypedDict,
|
|
@@ -14,7 +18,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
14
18
|
class ProductOptionValidationErrorTypedDict(TypedDict):
|
|
15
19
|
name: NotRequired[str]
|
|
16
20
|
description: NotRequired[str]
|
|
17
|
-
price_modifier: NotRequired[
|
|
21
|
+
price_modifier: NotRequired[AmountDecimalValidationErrorTypedDict]
|
|
18
22
|
images: NotRequired[Dict[str, AssignProductImageValidationErrorTypedDict]]
|
|
19
23
|
|
|
20
24
|
|
|
@@ -23,8 +27,8 @@ class ProductOptionValidationError(BaseModel):
|
|
|
23
27
|
|
|
24
28
|
description: Optional[str] = None
|
|
25
29
|
|
|
26
|
-
price_modifier: Annotated[
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
price_modifier: Annotated[
|
|
31
|
+
Optional[AmountDecimalValidationError], pydantic.Field(alias="priceModifier")
|
|
32
|
+
] = None
|
|
29
33
|
|
|
30
34
|
images: Optional[Dict[str, AssignProductImageValidationError]] = None
|
|
@@ -3,7 +3,7 @@ moovio_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c
|
|
|
3
3
|
moovio_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
moovio_sdk/_hooks/sdkhooks.py,sha256=2XuMgiV2N7UE7lN00Is-c3spxVWigYitXS6xSmS_Qow,2560
|
|
5
5
|
moovio_sdk/_hooks/types.py,sha256=Yi9LD8_sd4zG7_idzCZY4MTxTXMhDlmCdpQvU4dXFI4,3049
|
|
6
|
-
moovio_sdk/_version.py,sha256=
|
|
6
|
+
moovio_sdk/_version.py,sha256=p3pydau2EoP6LvddhdCShvpdfSaPJUfhAWnve6VEOYs,468
|
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=P1WRR9YHhtETL3uJkzthEbOVTWYcFwXBYEP2b7vn-v8,38538
|
|
8
8
|
moovio_sdk/accounts.py,sha256=UC-9ywSHR7Ve4av6XC2nrh45qp06zHAiD5msPmOxI0g,100662
|
|
9
9
|
moovio_sdk/adjustments.py,sha256=zQFf-OpN1kIDwlmZN4-j_3WdvRA6xBROylzLlTDoA24,17621
|
|
@@ -169,7 +169,7 @@ moovio_sdk/models/components/createfeeplanagreement.py,sha256=FK4oIE4nZl2JbKRnzX
|
|
|
169
169
|
moovio_sdk/models/components/createindividualerror.py,sha256=UqSGstPAqSqYHsALIk_uCoZbR99X0o_584dBNY2PeX0,2243
|
|
170
170
|
moovio_sdk/models/components/createindividualprofile.py,sha256=vBCwEfgONFxn459gGjhhvVNuIJ0oLfZiiGE8qCMBvXM,1234
|
|
171
171
|
moovio_sdk/models/components/createpaymentlink.py,sha256=OEf4LEYZY4JTq_GZ_wSo3Puxcgogxm-4wWr3pCZkHHg,3546
|
|
172
|
-
moovio_sdk/models/components/createproductoption.py,sha256=
|
|
172
|
+
moovio_sdk/models/components/createproductoption.py,sha256=FiD6DLZXkHdGcxCIXvwdbgC3_WDcvBE0j9U7fiHIDmc,1690
|
|
173
173
|
moovio_sdk/models/components/createproductoptiongroup.py,sha256=ofX4CYm5KlnDs_MibZOM4m4p6JWd0gg5cptN9bcc86c,1748
|
|
174
174
|
moovio_sdk/models/components/createprofile.py,sha256=oK9bys0dVPqNffjNhwdry4U7iLq_nkgCUFm13rzZt3k,733
|
|
175
175
|
moovio_sdk/models/components/createprofileerror.py,sha256=ebywekqEHBAwy9umf8Xxc-6WY5Zw-hvxBoJP_eKqsYI,710
|
|
@@ -351,10 +351,10 @@ moovio_sdk/models/components/platformfees.py,sha256=8b-9aTsIdDUeTUjuB8jzLX2ORLfr
|
|
|
351
351
|
moovio_sdk/models/components/primaryregulator.py,sha256=nx21YAn8kxmXRApHK8rJD_YKzi2ZVm8qqFqgCrrBkSU,381
|
|
352
352
|
moovio_sdk/models/components/product.py,sha256=qs8nPfbCJNbJawkV8GcYU7ygLcurD6xJ2dup5HGuOCU,2932
|
|
353
353
|
moovio_sdk/models/components/productimagemetadata.py,sha256=Pf9djsaflJeSRE2pZsNuQC5LSjb74U0rVEPPc-PD1cE,876
|
|
354
|
-
moovio_sdk/models/components/productoption.py,sha256=
|
|
354
|
+
moovio_sdk/models/components/productoption.py,sha256=_enzoitD8GrMZZG2QqNtFYFSl4nWNnlm5ousDU9Tj0s,1778
|
|
355
355
|
moovio_sdk/models/components/productoptiongroup.py,sha256=ki3P4hbFYwZVMsF0YOAYw3xhzEMfMSAOkekaOnyKJqU,1882
|
|
356
356
|
moovio_sdk/models/components/productoptiongroupvalidationerror.py,sha256=mdJU-8O3uDg2TRvIqrhNDW6Z797Lm7Npn8mkcS5sS7w,1012
|
|
357
|
-
moovio_sdk/models/components/productoptionvalidationerror.py,sha256=
|
|
357
|
+
moovio_sdk/models/components/productoptionvalidationerror.py,sha256=G6BgNbq4WW0C5fXF6_WkvU8DsdGLm93dMBFulcxCWUg,1116
|
|
358
358
|
moovio_sdk/models/components/productrequest.py,sha256=S9BPzr0AAvLweAPfzKaHVToZZ4owWBCvu129vdwOOdY,2014
|
|
359
359
|
moovio_sdk/models/components/profile.py,sha256=-EXX_7LYQ2y1FgWs9Lf45zCYjOz6_J9sA_6zySeBeWk,1292
|
|
360
360
|
moovio_sdk/models/components/pullfromcardpaymentmethod.py,sha256=LVhaRwsPrtQsBqjASPIzzGng3C6TDfdjq0FbjYV2ing,1092
|
|
@@ -764,6 +764,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
|
764
764
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
765
765
|
moovio_sdk/wallet_transactions.py,sha256=YPn4GgAkj1MbcA6PfqI9JCXXvaCmCK_i7LjdT9P-iH8,23903
|
|
766
766
|
moovio_sdk/wallets.py,sha256=probtxxWU4fXD_t6RPiECntgOzQlMZH-tsueH7BfBkU,43262
|
|
767
|
-
moovio_sdk-0.17.
|
|
768
|
-
moovio_sdk-0.17.
|
|
769
|
-
moovio_sdk-0.17.
|
|
767
|
+
moovio_sdk-0.17.4.dist-info/METADATA,sha256=nDgkoJW8oJzZARrfJ_Leo7QXTIfSRn5WtMIJvAifz2Y,116958
|
|
768
|
+
moovio_sdk-0.17.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
769
|
+
moovio_sdk-0.17.4.dist-info/RECORD,,
|
|
File without changes
|