gnaww-sdk 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.
Files changed (126) hide show
  1. gnaww_sdk-0.1.0/LICENSE +21 -0
  2. gnaww_sdk-0.1.0/PKG-INFO +58 -0
  3. gnaww_sdk-0.1.0/README.md +37 -0
  4. gnaww_sdk-0.1.0/gnaww_sdk/__init__.py +259 -0
  5. gnaww_sdk-0.1.0/gnaww_sdk/api/__init__.py +9 -0
  6. gnaww_sdk-0.1.0/gnaww_sdk/api/health_api.py +520 -0
  7. gnaww_sdk-0.1.0/gnaww_sdk/api/interpretation_api.py +610 -0
  8. gnaww_sdk-0.1.0/gnaww_sdk/api/producer_capabilities_api.py +323 -0
  9. gnaww_sdk-0.1.0/gnaww_sdk/api/recipes_api.py +902 -0
  10. gnaww_sdk-0.1.0/gnaww_sdk/api/spec_match_api.py +610 -0
  11. gnaww_sdk-0.1.0/gnaww_sdk/api/transform_api.py +319 -0
  12. gnaww_sdk-0.1.0/gnaww_sdk/api_client.py +802 -0
  13. gnaww_sdk-0.1.0/gnaww_sdk/api_response.py +21 -0
  14. gnaww_sdk-0.1.0/gnaww_sdk/configuration.py +624 -0
  15. gnaww_sdk-0.1.0/gnaww_sdk/convenience.py +247 -0
  16. gnaww_sdk-0.1.0/gnaww_sdk/exceptions.py +216 -0
  17. gnaww_sdk-0.1.0/gnaww_sdk/models/__init__.py +112 -0
  18. gnaww_sdk-0.1.0/gnaww_sdk/models/apparel_decoration_options.py +137 -0
  19. gnaww_sdk-0.1.0/gnaww_sdk/models/apparel_options.py +127 -0
  20. gnaww_sdk-0.1.0/gnaww_sdk/models/artwork_requirements.py +121 -0
  21. gnaww_sdk-0.1.0/gnaww_sdk/models/availability_capability.py +120 -0
  22. gnaww_sdk-0.1.0/gnaww_sdk/models/benchmark_quantity_guidance.py +118 -0
  23. gnaww_sdk-0.1.0/gnaww_sdk/models/book_document_options.py +130 -0
  24. gnaww_sdk-0.1.0/gnaww_sdk/models/capability_evidence.py +121 -0
  25. gnaww_sdk-0.1.0/gnaww_sdk/models/colour_capability.py +104 -0
  26. gnaww_sdk-0.1.0/gnaww_sdk/models/commercial_print_options.py +136 -0
  27. gnaww_sdk-0.1.0/gnaww_sdk/models/continue_print_requirement_interpretation_default_response.py +101 -0
  28. gnaww_sdk-0.1.0/gnaww_sdk/models/continue_print_requirement_interpretation_default_response_error.py +117 -0
  29. gnaww_sdk-0.1.0/gnaww_sdk/models/continue_print_requirement_request.py +146 -0
  30. gnaww_sdk-0.1.0/gnaww_sdk/models/continue_print_requirement_response.py +225 -0
  31. gnaww_sdk-0.1.0/gnaww_sdk/models/controlled_interpretation_state.py +118 -0
  32. gnaww_sdk-0.1.0/gnaww_sdk/models/custom_dimension_capability.py +141 -0
  33. gnaww_sdk-0.1.0/gnaww_sdk/models/decoration_area_capability.py +132 -0
  34. gnaww_sdk-0.1.0/gnaww_sdk/models/delivery_destination.py +123 -0
  35. gnaww_sdk-0.1.0/gnaww_sdk/models/dimension_capability.py +118 -0
  36. gnaww_sdk-0.1.0/gnaww_sdk/models/fabric_homewares_capability_options.py +203 -0
  37. gnaww_sdk-0.1.0/gnaww_sdk/models/fabric_homewares_options.py +188 -0
  38. gnaww_sdk-0.1.0/gnaww_sdk/models/finished_size.py +116 -0
  39. gnaww_sdk-0.1.0/gnaww_sdk/models/finishing.py +120 -0
  40. gnaww_sdk-0.1.0/gnaww_sdk/models/folded_leaflet_options.py +113 -0
  41. gnaww_sdk-0.1.0/gnaww_sdk/models/fulfilment_match_result.py +124 -0
  42. gnaww_sdk-0.1.0/gnaww_sdk/models/fulfilment_requirement.py +96 -0
  43. gnaww_sdk-0.1.0/gnaww_sdk/models/gjs.py +136 -0
  44. gnaww_sdk-0.1.0/gnaww_sdk/models/gjs1.py +130 -0
  45. gnaww_sdk-0.1.0/gnaww_sdk/models/grammage_requirement.py +132 -0
  46. gnaww_sdk-0.1.0/gnaww_sdk/models/grounded_product_meaning.py +153 -0
  47. gnaww_sdk-0.1.0/gnaww_sdk/models/health_response.py +113 -0
  48. gnaww_sdk-0.1.0/gnaww_sdk/models/intent_classification_response.py +192 -0
  49. gnaww_sdk-0.1.0/gnaww_sdk/models/intent_plan_evidence.py +108 -0
  50. gnaww_sdk-0.1.0/gnaww_sdk/models/intent_provider_metadata.py +129 -0
  51. gnaww_sdk-0.1.0/gnaww_sdk/models/interpret_print_requirement_default_response.py +101 -0
  52. gnaww_sdk-0.1.0/gnaww_sdk/models/interpret_print_requirement_default_response_error.py +130 -0
  53. gnaww_sdk-0.1.0/gnaww_sdk/models/interpret_print_requirement_request.py +124 -0
  54. gnaww_sdk-0.1.0/gnaww_sdk/models/interpret_print_requirement_response.py +273 -0
  55. gnaww_sdk-0.1.0/gnaww_sdk/models/issue.py +109 -0
  56. gnaww_sdk-0.1.0/gnaww_sdk/models/issue_set.py +110 -0
  57. gnaww_sdk-0.1.0/gnaww_sdk/models/match_difference.py +106 -0
  58. gnaww_sdk-0.1.0/gnaww_sdk/models/match_print_demand_default_response.py +88 -0
  59. gnaww_sdk-0.1.0/gnaww_sdk/models/match_print_demand_request.py +118 -0
  60. gnaww_sdk-0.1.0/gnaww_sdk/models/match_print_demand_response.py +234 -0
  61. gnaww_sdk-0.1.0/gnaww_sdk/models/match_print_demand_universe_request.py +118 -0
  62. gnaww_sdk-0.1.0/gnaww_sdk/models/match_print_demand_universe_response.py +285 -0
  63. gnaww_sdk-0.1.0/gnaww_sdk/models/match_recipe_request.py +131 -0
  64. gnaww_sdk-0.1.0/gnaww_sdk/models/match_recipe_response.py +237 -0
  65. gnaww_sdk-0.1.0/gnaww_sdk/models/material_capability.py +139 -0
  66. gnaww_sdk-0.1.0/gnaww_sdk/models/material_composition_part.py +92 -0
  67. gnaww_sdk-0.1.0/gnaww_sdk/models/personalisation_capability.py +100 -0
  68. gnaww_sdk-0.1.0/gnaww_sdk/models/physical_requirement_decision.py +140 -0
  69. gnaww_sdk-0.1.0/gnaww_sdk/models/print_component.py +124 -0
  70. gnaww_sdk-0.1.0/gnaww_sdk/models/print_job_specification.py +169 -0
  71. gnaww_sdk-0.1.0/gnaww_sdk/models/print_job_specification_v04.py +202 -0
  72. gnaww_sdk-0.1.0/gnaww_sdk/models/print_spec.py +119 -0
  73. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_book_document_options.py +138 -0
  74. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_capability_resource.py +139 -0
  75. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_component_capability.py +124 -0
  76. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_finishing_capability.py +110 -0
  77. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_folded_leaflet_options.py +116 -0
  78. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_process_capability.py +91 -0
  79. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_product_capability.py +200 -0
  80. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_product_option_capability.py +148 -0
  81. gnaww_sdk-0.1.0/gnaww_sdk/models/producer_product_reference.py +90 -0
  82. gnaww_sdk-0.1.0/gnaww_sdk/models/product_meaning_decision_point.py +91 -0
  83. gnaww_sdk-0.1.0/gnaww_sdk/models/product_meaning_family_context.py +126 -0
  84. gnaww_sdk-0.1.0/gnaww_sdk/models/product_options.py +137 -0
  85. gnaww_sdk-0.1.0/gnaww_sdk/models/product_pack_benchmark_reference.py +126 -0
  86. gnaww_sdk-0.1.0/gnaww_sdk/models/product_pack_clarification.py +125 -0
  87. gnaww_sdk-0.1.0/gnaww_sdk/models/product_pack_recommendation.py +165 -0
  88. gnaww_sdk-0.1.0/gnaww_sdk/models/product_pack_response.py +265 -0
  89. gnaww_sdk-0.1.0/gnaww_sdk/models/promotional_goods_capability_options.py +150 -0
  90. gnaww_sdk-0.1.0/gnaww_sdk/models/promotional_goods_options.py +158 -0
  91. gnaww_sdk-0.1.0/gnaww_sdk/models/public_clarification_answer.py +97 -0
  92. gnaww_sdk-0.1.0/gnaww_sdk/models/public_clarification_option.py +87 -0
  93. gnaww_sdk-0.1.0/gnaww_sdk/models/public_clarification_question.py +151 -0
  94. gnaww_sdk-0.1.0/gnaww_sdk/models/public_fulfilment_state.py +102 -0
  95. gnaww_sdk-0.1.0/gnaww_sdk/models/public_match_target_request.py +94 -0
  96. gnaww_sdk-0.1.0/gnaww_sdk/models/public_match_target_state.py +109 -0
  97. gnaww_sdk-0.1.0/gnaww_sdk/models/public_producer_universe_candidate.py +134 -0
  98. gnaww_sdk-0.1.0/gnaww_sdk/models/public_recipe_state.py +112 -0
  99. gnaww_sdk-0.1.0/gnaww_sdk/models/public_spec_match_readiness.py +97 -0
  100. gnaww_sdk-0.1.0/gnaww_sdk/models/public_use_condition_review.py +136 -0
  101. gnaww_sdk-0.1.0/gnaww_sdk/models/quantity.py +92 -0
  102. gnaww_sdk-0.1.0/gnaww_sdk/models/quantity_range.py +106 -0
  103. gnaww_sdk-0.1.0/gnaww_sdk/models/recipe_resource.py +131 -0
  104. gnaww_sdk-0.1.0/gnaww_sdk/models/repeat_pattern_capability.py +110 -0
  105. gnaww_sdk-0.1.0/gnaww_sdk/models/resolve_recipe_request.py +88 -0
  106. gnaww_sdk-0.1.0/gnaww_sdk/models/resolve_recipe_response.py +111 -0
  107. gnaww_sdk-0.1.0/gnaww_sdk/models/resolved_recipe_match_state.py +113 -0
  108. gnaww_sdk-0.1.0/gnaww_sdk/models/service_requirements.py +104 -0
  109. gnaww_sdk-0.1.0/gnaww_sdk/models/source_input.py +134 -0
  110. gnaww_sdk-0.1.0/gnaww_sdk/models/spec_match_result.py +148 -0
  111. gnaww_sdk-0.1.0/gnaww_sdk/models/substrate.py +139 -0
  112. gnaww_sdk-0.1.0/gnaww_sdk/models/transform_request.py +90 -0
  113. gnaww_sdk-0.1.0/gnaww_sdk/models/transform_response.py +129 -0
  114. gnaww_sdk-0.1.0/gnaww_sdk/models/turnaround_capability.py +115 -0
  115. gnaww_sdk-0.1.0/gnaww_sdk/models/use_requirement.py +113 -0
  116. gnaww_sdk-0.1.0/gnaww_sdk/models/washability_capability.py +110 -0
  117. gnaww_sdk-0.1.0/gnaww_sdk/py.typed +0 -0
  118. gnaww_sdk-0.1.0/gnaww_sdk/rest.py +261 -0
  119. gnaww_sdk-0.1.0/gnaww_sdk.egg-info/PKG-INFO +58 -0
  120. gnaww_sdk-0.1.0/gnaww_sdk.egg-info/SOURCES.txt +125 -0
  121. gnaww_sdk-0.1.0/gnaww_sdk.egg-info/dependency_links.txt +1 -0
  122. gnaww_sdk-0.1.0/gnaww_sdk.egg-info/requires.txt +4 -0
  123. gnaww_sdk-0.1.0/gnaww_sdk.egg-info/top_level.txt +1 -0
  124. gnaww_sdk-0.1.0/pyproject.toml +96 -0
  125. gnaww_sdk-0.1.0/setup.cfg +7 -0
  126. gnaww_sdk-0.1.0/setup.py +46 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Jawwws Ltd
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: gnaww-sdk
3
+ Version: 0.1.0
4
+ Summary: Official Python SDK for the Gnaww print intelligence API.
5
+ Home-page: https://github.com/jawwws/gnaww-sdk-python
6
+ Author: Jawwws Ltd
7
+ Project-URL: Repository, https://github.com/jawwws/gnaww-sdk-python
8
+ Project-URL: Homepage, https://gnaww.io
9
+ Project-URL: Documentation, https://developer.gnaww.io
10
+ Keywords: gnaww,print,sdk,api
11
+ Requires-Python: >= 3.11
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
15
+ Requires-Dist: python-dateutil>=2.8.2
16
+ Requires-Dist: pydantic>=2.11
17
+ Requires-Dist: typing-extensions>=4.7.1
18
+ Dynamic: home-page
19
+ Dynamic: license-file
20
+ Dynamic: requires-python
21
+
22
+ # Gnaww Python SDK
23
+
24
+ Official Python SDK for the Gnaww print intelligence API.
25
+
26
+ ## Install
27
+
28
+ ```bash
29
+ pip install gnaww-sdk
30
+ ```
31
+
32
+ ## Quick start
33
+
34
+ ```python
35
+ import os
36
+
37
+ from gnaww_sdk import GnawwClient
38
+
39
+ with GnawwClient(
40
+ api_key=os.environ["GNAWW_API_KEY"],
41
+ workspace_id=os.environ.get("GNAWW_WORKSPACE_ID"),
42
+ ) as gnaww:
43
+ result = gnaww.consume(
44
+ "500 A5 double-sided flyers on 170gsm silk"
45
+ )
46
+ ```
47
+
48
+ Gnaww may return clarification or review requirements when a print requirement is
49
+ incomplete. It does not guess unresolved physical attributes.
50
+
51
+ Capability matching does not by itself confirm price, live availability, producer
52
+ acceptance or an order.
53
+
54
+ Documentation: https://developer.gnaww.io
55
+
56
+ ## Licence
57
+
58
+ MIT. See `LICENSE`.
@@ -0,0 +1,37 @@
1
+ # Gnaww Python SDK
2
+
3
+ Official Python SDK for the Gnaww print intelligence API.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install gnaww-sdk
9
+ ```
10
+
11
+ ## Quick start
12
+
13
+ ```python
14
+ import os
15
+
16
+ from gnaww_sdk import GnawwClient
17
+
18
+ with GnawwClient(
19
+ api_key=os.environ["GNAWW_API_KEY"],
20
+ workspace_id=os.environ.get("GNAWW_WORKSPACE_ID"),
21
+ ) as gnaww:
22
+ result = gnaww.consume(
23
+ "500 A5 double-sided flyers on 170gsm silk"
24
+ )
25
+ ```
26
+
27
+ Gnaww may return clarification or review requirements when a print requirement is
28
+ incomplete. It does not guess unresolved physical attributes.
29
+
30
+ Capability matching does not by itself confirm price, live availability, producer
31
+ acceptance or an order.
32
+
33
+ Documentation: https://developer.gnaww.io
34
+
35
+ ## Licence
36
+
37
+ MIT. See `LICENSE`.
@@ -0,0 +1,259 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Gnaww Developer API
7
+
8
+ Reviewed public print-intelligence contract for direct HTTP, CLI, SDK and MCP consumers. Capability fit is not price, live availability, producer acceptance or an order.
9
+
10
+ The version of the OpenAPI document: 0.1
11
+
12
+ """ # noqa: E501
13
+
14
+
15
+ __version__ = "0.1.0"
16
+
17
+ # Define package exports
18
+ __all__ = [
19
+ "ProducerCapabilitiesApi",
20
+ "RecipesApi",
21
+ "SpecMatchApi",
22
+ "HealthApi",
23
+ "InterpretationApi",
24
+ "TransformApi",
25
+ "ApiResponse",
26
+ "ApiClient",
27
+ "Configuration",
28
+ "OpenApiException",
29
+ "ApiTypeError",
30
+ "ApiValueError",
31
+ "ApiKeyError",
32
+ "ApiAttributeError",
33
+ "ApiException",
34
+ "ApparelDecorationOptions",
35
+ "ApparelOptions",
36
+ "ArtworkRequirements",
37
+ "AvailabilityCapability",
38
+ "BenchmarkQuantityGuidance",
39
+ "BookDocumentOptions",
40
+ "CapabilityEvidence",
41
+ "ColourCapability",
42
+ "CommercialPrintOptions",
43
+ "ContinuePrintRequirementInterpretationDefaultResponse",
44
+ "ContinuePrintRequirementInterpretationDefaultResponseError",
45
+ "ContinuePrintRequirementRequest",
46
+ "ContinuePrintRequirementResponse",
47
+ "ControlledInterpretationState",
48
+ "CustomDimensionCapability",
49
+ "DecorationAreaCapability",
50
+ "DeliveryDestination",
51
+ "DimensionCapability",
52
+ "FabricHomewaresCapabilityOptions",
53
+ "FabricHomewaresOptions",
54
+ "FinishedSize",
55
+ "Finishing",
56
+ "FoldedLeafletOptions",
57
+ "FulfilmentMatchResult",
58
+ "FulfilmentRequirement",
59
+ "Gjs",
60
+ "Gjs1",
61
+ "GrammageRequirement",
62
+ "GroundedProductMeaning",
63
+ "HealthResponse",
64
+ "IntentClassificationResponse",
65
+ "IntentPlanEvidence",
66
+ "IntentProviderMetadata",
67
+ "InterpretPrintRequirementDefaultResponse",
68
+ "InterpretPrintRequirementDefaultResponseError",
69
+ "InterpretPrintRequirementRequest",
70
+ "InterpretPrintRequirementResponse",
71
+ "Issue",
72
+ "IssueSet",
73
+ "MatchDifference",
74
+ "MatchPrintDemandDefaultResponse",
75
+ "MatchPrintDemandRequest",
76
+ "MatchPrintDemandResponse",
77
+ "MatchPrintDemandUniverseRequest",
78
+ "MatchPrintDemandUniverseResponse",
79
+ "MatchRecipeRequest",
80
+ "MatchRecipeResponse",
81
+ "MaterialCapability",
82
+ "MaterialCompositionPart",
83
+ "PersonalisationCapability",
84
+ "PhysicalRequirementDecision",
85
+ "PrintComponent",
86
+ "PrintJobSpecification",
87
+ "PrintJobSpecificationV04",
88
+ "PrintSpec",
89
+ "ProducerBookDocumentOptions",
90
+ "ProducerCapabilityResource",
91
+ "ProducerComponentCapability",
92
+ "ProducerFinishingCapability",
93
+ "ProducerFoldedLeafletOptions",
94
+ "ProducerProcessCapability",
95
+ "ProducerProductCapability",
96
+ "ProducerProductOptionCapability",
97
+ "ProducerProductReference",
98
+ "ProductMeaningDecisionPoint",
99
+ "ProductMeaningFamilyContext",
100
+ "ProductOptions",
101
+ "ProductPackBenchmarkReference",
102
+ "ProductPackClarification",
103
+ "ProductPackRecommendation",
104
+ "ProductPackResponse",
105
+ "PromotionalGoodsCapabilityOptions",
106
+ "PromotionalGoodsOptions",
107
+ "PublicClarificationAnswer",
108
+ "PublicClarificationOption",
109
+ "PublicClarificationQuestion",
110
+ "PublicFulfilmentState",
111
+ "PublicMatchTargetRequest",
112
+ "PublicMatchTargetState",
113
+ "PublicProducerUniverseCandidate",
114
+ "PublicRecipeState",
115
+ "PublicSpecMatchReadiness",
116
+ "PublicUseConditionReview",
117
+ "Quantity",
118
+ "QuantityRange",
119
+ "RecipeResource",
120
+ "RepeatPatternCapability",
121
+ "ResolveRecipeRequest",
122
+ "ResolveRecipeResponse",
123
+ "ResolvedRecipeMatchState",
124
+ "ServiceRequirements",
125
+ "SourceInput",
126
+ "SpecMatchResult",
127
+ "Substrate",
128
+ "TransformRequest",
129
+ "TransformResponse",
130
+ "TurnaroundCapability",
131
+ "UseRequirement",
132
+ "WashabilityCapability",
133
+ ]
134
+
135
+ # import apis into sdk package
136
+ from gnaww_sdk.api.producer_capabilities_api import ProducerCapabilitiesApi as ProducerCapabilitiesApi
137
+ from gnaww_sdk.api.recipes_api import RecipesApi as RecipesApi
138
+ from gnaww_sdk.api.spec_match_api import SpecMatchApi as SpecMatchApi
139
+ from gnaww_sdk.api.health_api import HealthApi as HealthApi
140
+ from gnaww_sdk.api.interpretation_api import InterpretationApi as InterpretationApi
141
+ from gnaww_sdk.api.transform_api import TransformApi as TransformApi
142
+
143
+ # import ApiClient
144
+ from gnaww_sdk.api_response import ApiResponse as ApiResponse
145
+ from gnaww_sdk.api_client import ApiClient as ApiClient
146
+ from gnaww_sdk.configuration import Configuration as Configuration
147
+ from gnaww_sdk.exceptions import OpenApiException as OpenApiException
148
+ from gnaww_sdk.exceptions import ApiTypeError as ApiTypeError
149
+ from gnaww_sdk.exceptions import ApiValueError as ApiValueError
150
+ from gnaww_sdk.exceptions import ApiKeyError as ApiKeyError
151
+ from gnaww_sdk.exceptions import ApiAttributeError as ApiAttributeError
152
+ from gnaww_sdk.exceptions import ApiException as ApiException
153
+
154
+ # import models into sdk package
155
+ from gnaww_sdk.models.apparel_decoration_options import ApparelDecorationOptions as ApparelDecorationOptions
156
+ from gnaww_sdk.models.apparel_options import ApparelOptions as ApparelOptions
157
+ from gnaww_sdk.models.artwork_requirements import ArtworkRequirements as ArtworkRequirements
158
+ from gnaww_sdk.models.availability_capability import AvailabilityCapability as AvailabilityCapability
159
+ from gnaww_sdk.models.benchmark_quantity_guidance import BenchmarkQuantityGuidance as BenchmarkQuantityGuidance
160
+ from gnaww_sdk.models.book_document_options import BookDocumentOptions as BookDocumentOptions
161
+ from gnaww_sdk.models.capability_evidence import CapabilityEvidence as CapabilityEvidence
162
+ from gnaww_sdk.models.colour_capability import ColourCapability as ColourCapability
163
+ from gnaww_sdk.models.commercial_print_options import CommercialPrintOptions as CommercialPrintOptions
164
+ from gnaww_sdk.models.continue_print_requirement_interpretation_default_response import ContinuePrintRequirementInterpretationDefaultResponse as ContinuePrintRequirementInterpretationDefaultResponse
165
+ from gnaww_sdk.models.continue_print_requirement_interpretation_default_response_error import ContinuePrintRequirementInterpretationDefaultResponseError as ContinuePrintRequirementInterpretationDefaultResponseError
166
+ from gnaww_sdk.models.continue_print_requirement_request import ContinuePrintRequirementRequest as ContinuePrintRequirementRequest
167
+ from gnaww_sdk.models.continue_print_requirement_response import ContinuePrintRequirementResponse as ContinuePrintRequirementResponse
168
+ from gnaww_sdk.models.controlled_interpretation_state import ControlledInterpretationState as ControlledInterpretationState
169
+ from gnaww_sdk.models.custom_dimension_capability import CustomDimensionCapability as CustomDimensionCapability
170
+ from gnaww_sdk.models.decoration_area_capability import DecorationAreaCapability as DecorationAreaCapability
171
+ from gnaww_sdk.models.delivery_destination import DeliveryDestination as DeliveryDestination
172
+ from gnaww_sdk.models.dimension_capability import DimensionCapability as DimensionCapability
173
+ from gnaww_sdk.models.fabric_homewares_capability_options import FabricHomewaresCapabilityOptions as FabricHomewaresCapabilityOptions
174
+ from gnaww_sdk.models.fabric_homewares_options import FabricHomewaresOptions as FabricHomewaresOptions
175
+ from gnaww_sdk.models.finished_size import FinishedSize as FinishedSize
176
+ from gnaww_sdk.models.finishing import Finishing as Finishing
177
+ from gnaww_sdk.models.folded_leaflet_options import FoldedLeafletOptions as FoldedLeafletOptions
178
+ from gnaww_sdk.models.fulfilment_match_result import FulfilmentMatchResult as FulfilmentMatchResult
179
+ from gnaww_sdk.models.fulfilment_requirement import FulfilmentRequirement as FulfilmentRequirement
180
+ from gnaww_sdk.models.gjs import Gjs as Gjs
181
+ from gnaww_sdk.models.gjs1 import Gjs1 as Gjs1
182
+ from gnaww_sdk.models.grammage_requirement import GrammageRequirement as GrammageRequirement
183
+ from gnaww_sdk.models.grounded_product_meaning import GroundedProductMeaning as GroundedProductMeaning
184
+ from gnaww_sdk.models.health_response import HealthResponse as HealthResponse
185
+ from gnaww_sdk.models.intent_classification_response import IntentClassificationResponse as IntentClassificationResponse
186
+ from gnaww_sdk.models.intent_plan_evidence import IntentPlanEvidence as IntentPlanEvidence
187
+ from gnaww_sdk.models.intent_provider_metadata import IntentProviderMetadata as IntentProviderMetadata
188
+ from gnaww_sdk.models.interpret_print_requirement_default_response import InterpretPrintRequirementDefaultResponse as InterpretPrintRequirementDefaultResponse
189
+ from gnaww_sdk.models.interpret_print_requirement_default_response_error import InterpretPrintRequirementDefaultResponseError as InterpretPrintRequirementDefaultResponseError
190
+ from gnaww_sdk.models.interpret_print_requirement_request import InterpretPrintRequirementRequest as InterpretPrintRequirementRequest
191
+ from gnaww_sdk.models.interpret_print_requirement_response import InterpretPrintRequirementResponse as InterpretPrintRequirementResponse
192
+ from gnaww_sdk.models.issue import Issue as Issue
193
+ from gnaww_sdk.models.issue_set import IssueSet as IssueSet
194
+ from gnaww_sdk.models.match_difference import MatchDifference as MatchDifference
195
+ from gnaww_sdk.models.match_print_demand_default_response import MatchPrintDemandDefaultResponse as MatchPrintDemandDefaultResponse
196
+ from gnaww_sdk.models.match_print_demand_request import MatchPrintDemandRequest as MatchPrintDemandRequest
197
+ from gnaww_sdk.models.match_print_demand_response import MatchPrintDemandResponse as MatchPrintDemandResponse
198
+ from gnaww_sdk.models.match_print_demand_universe_request import MatchPrintDemandUniverseRequest as MatchPrintDemandUniverseRequest
199
+ from gnaww_sdk.models.match_print_demand_universe_response import MatchPrintDemandUniverseResponse as MatchPrintDemandUniverseResponse
200
+ from gnaww_sdk.models.match_recipe_request import MatchRecipeRequest as MatchRecipeRequest
201
+ from gnaww_sdk.models.match_recipe_response import MatchRecipeResponse as MatchRecipeResponse
202
+ from gnaww_sdk.models.material_capability import MaterialCapability as MaterialCapability
203
+ from gnaww_sdk.models.material_composition_part import MaterialCompositionPart as MaterialCompositionPart
204
+ from gnaww_sdk.models.personalisation_capability import PersonalisationCapability as PersonalisationCapability
205
+ from gnaww_sdk.models.physical_requirement_decision import PhysicalRequirementDecision as PhysicalRequirementDecision
206
+ from gnaww_sdk.models.print_component import PrintComponent as PrintComponent
207
+ from gnaww_sdk.models.print_job_specification import PrintJobSpecification as PrintJobSpecification
208
+ from gnaww_sdk.models.print_job_specification_v04 import PrintJobSpecificationV04 as PrintJobSpecificationV04
209
+ from gnaww_sdk.models.print_spec import PrintSpec as PrintSpec
210
+ from gnaww_sdk.models.producer_book_document_options import ProducerBookDocumentOptions as ProducerBookDocumentOptions
211
+ from gnaww_sdk.models.producer_capability_resource import ProducerCapabilityResource as ProducerCapabilityResource
212
+ from gnaww_sdk.models.producer_component_capability import ProducerComponentCapability as ProducerComponentCapability
213
+ from gnaww_sdk.models.producer_finishing_capability import ProducerFinishingCapability as ProducerFinishingCapability
214
+ from gnaww_sdk.models.producer_folded_leaflet_options import ProducerFoldedLeafletOptions as ProducerFoldedLeafletOptions
215
+ from gnaww_sdk.models.producer_process_capability import ProducerProcessCapability as ProducerProcessCapability
216
+ from gnaww_sdk.models.producer_product_capability import ProducerProductCapability as ProducerProductCapability
217
+ from gnaww_sdk.models.producer_product_option_capability import ProducerProductOptionCapability as ProducerProductOptionCapability
218
+ from gnaww_sdk.models.producer_product_reference import ProducerProductReference as ProducerProductReference
219
+ from gnaww_sdk.models.product_meaning_decision_point import ProductMeaningDecisionPoint as ProductMeaningDecisionPoint
220
+ from gnaww_sdk.models.product_meaning_family_context import ProductMeaningFamilyContext as ProductMeaningFamilyContext
221
+ from gnaww_sdk.models.product_options import ProductOptions as ProductOptions
222
+ from gnaww_sdk.models.product_pack_benchmark_reference import ProductPackBenchmarkReference as ProductPackBenchmarkReference
223
+ from gnaww_sdk.models.product_pack_clarification import ProductPackClarification as ProductPackClarification
224
+ from gnaww_sdk.models.product_pack_recommendation import ProductPackRecommendation as ProductPackRecommendation
225
+ from gnaww_sdk.models.product_pack_response import ProductPackResponse as ProductPackResponse
226
+ from gnaww_sdk.models.promotional_goods_capability_options import PromotionalGoodsCapabilityOptions as PromotionalGoodsCapabilityOptions
227
+ from gnaww_sdk.models.promotional_goods_options import PromotionalGoodsOptions as PromotionalGoodsOptions
228
+ from gnaww_sdk.models.public_clarification_answer import PublicClarificationAnswer as PublicClarificationAnswer
229
+ from gnaww_sdk.models.public_clarification_option import PublicClarificationOption as PublicClarificationOption
230
+ from gnaww_sdk.models.public_clarification_question import PublicClarificationQuestion as PublicClarificationQuestion
231
+ from gnaww_sdk.models.public_fulfilment_state import PublicFulfilmentState as PublicFulfilmentState
232
+ from gnaww_sdk.models.public_match_target_request import PublicMatchTargetRequest as PublicMatchTargetRequest
233
+ from gnaww_sdk.models.public_match_target_state import PublicMatchTargetState as PublicMatchTargetState
234
+ from gnaww_sdk.models.public_producer_universe_candidate import PublicProducerUniverseCandidate as PublicProducerUniverseCandidate
235
+ from gnaww_sdk.models.public_recipe_state import PublicRecipeState as PublicRecipeState
236
+ from gnaww_sdk.models.public_spec_match_readiness import PublicSpecMatchReadiness as PublicSpecMatchReadiness
237
+ from gnaww_sdk.models.public_use_condition_review import PublicUseConditionReview as PublicUseConditionReview
238
+ from gnaww_sdk.models.quantity import Quantity as Quantity
239
+ from gnaww_sdk.models.quantity_range import QuantityRange as QuantityRange
240
+ from gnaww_sdk.models.recipe_resource import RecipeResource as RecipeResource
241
+ from gnaww_sdk.models.repeat_pattern_capability import RepeatPatternCapability as RepeatPatternCapability
242
+ from gnaww_sdk.models.resolve_recipe_request import ResolveRecipeRequest as ResolveRecipeRequest
243
+ from gnaww_sdk.models.resolve_recipe_response import ResolveRecipeResponse as ResolveRecipeResponse
244
+ from gnaww_sdk.models.resolved_recipe_match_state import ResolvedRecipeMatchState as ResolvedRecipeMatchState
245
+ from gnaww_sdk.models.service_requirements import ServiceRequirements as ServiceRequirements
246
+ from gnaww_sdk.models.source_input import SourceInput as SourceInput
247
+ from gnaww_sdk.models.spec_match_result import SpecMatchResult as SpecMatchResult
248
+ from gnaww_sdk.models.substrate import Substrate as Substrate
249
+ from gnaww_sdk.models.transform_request import TransformRequest as TransformRequest
250
+ from gnaww_sdk.models.transform_response import TransformResponse as TransformResponse
251
+ from gnaww_sdk.models.turnaround_capability import TurnaroundCapability as TurnaroundCapability
252
+ from gnaww_sdk.models.use_requirement import UseRequirement as UseRequirement
253
+ from gnaww_sdk.models.washability_capability import WashabilityCapability as WashabilityCapability
254
+ from gnaww_sdk.convenience import (
255
+ GnawwApiError,
256
+ GnawwClient,
257
+ GnawwPublicError,
258
+ GnawwResponse,
259
+ )
@@ -0,0 +1,9 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from gnaww_sdk.api.producer_capabilities_api import ProducerCapabilitiesApi
5
+ from gnaww_sdk.api.recipes_api import RecipesApi
6
+ from gnaww_sdk.api.spec_match_api import SpecMatchApi
7
+ from gnaww_sdk.api.health_api import HealthApi
8
+ from gnaww_sdk.api.interpretation_api import InterpretationApi
9
+ from gnaww_sdk.api.transform_api import TransformApi