Skip to content

Commit 63fb877

Browse files
Merge pull request #32 from WFP-VAM/release/v7.0
Bump client to API v7.0
2 parents 21332ae + 8483976 commit 63fb877

File tree

226 files changed

+12070
-3800
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+12070
-3800
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v3

.openapi-generator/FILES

Lines changed: 78 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ data_bridges_client/api/commodities_api.py
99
data_bridges_client/api/commodity_units_api.py
1010
data_bridges_client/api/currency_api.py
1111
data_bridges_client/api/economic_data_api.py
12-
data_bridges_client/api/food_security_api.py
13-
data_bridges_client/api/gorp_api.py
12+
data_bridges_client/api/global_outlook_api.py
13+
data_bridges_client/api/hunger_hotspot_api.py
1414
data_bridges_client/api/incubation_api.py
15+
data_bridges_client/api/ipcch_api.py
1516
data_bridges_client/api/market_prices_api.py
1617
data_bridges_client/api/markets_api.py
1718
data_bridges_client/api/rpme_api.py
@@ -23,6 +24,11 @@ data_bridges_client/configuration.py
2324
data_bridges_client/exceptions.py
2425
data_bridges_client/models/__init__.py
2526
data_bridges_client/models/bad_request_dto.py
27+
data_bridges_client/models/cari_adm0_values_dto.py
28+
data_bridges_client/models/cari_adm0_values_dto_paged_result.py
29+
data_bridges_client/models/cari_adm1_values_dto.py
30+
data_bridges_client/models/cari_adm1_values_dto_paged_result.py
31+
data_bridges_client/models/categories_and_indicators_dto.py
2632
data_bridges_client/models/commodity_dto.py
2733
data_bridges_client/models/commodity_price_dto.py
2834
data_bridges_client/models/commodity_processing_dto.py
@@ -31,16 +37,27 @@ data_bridges_client/models/currency_dto.py
3137
data_bridges_client/models/economic_data_dto.py
3238
data_bridges_client/models/economic_indicator_property.py
3339
data_bridges_client/models/economic_indicator_property_paged_result.py
40+
data_bridges_client/models/extended_alps_value_dto.py
41+
data_bridges_client/models/extended_alps_value_dto_paged_result.py
3442
data_bridges_client/models/feature.py
3543
data_bridges_client/models/geometry.py
36-
data_bridges_client/models/gorp_country_api_dto.py
37-
data_bridges_client/models/gorp_global_api_dto.py
38-
data_bridges_client/models/gorp_regional_api_dto.py
44+
data_bridges_client/models/global_outlook_api_dto.py
45+
data_bridges_client/models/global_outlook_country_api_dto.py
46+
data_bridges_client/models/global_outlook_regional_api_dto.py
3947
data_bridges_client/models/household_survey_list_dto.py
4048
data_bridges_client/models/household_survey_list_dto_paged_result.py
41-
data_bridges_client/models/ipc_value.py
42-
data_bridges_client/models/ipc_value_paged_result.py
49+
data_bridges_client/models/hunger_hot_spot_data_dto.py
50+
data_bridges_client/models/hunger_hot_spot_data_dto_paged_result.py
51+
data_bridges_client/models/ipc_historical_datum_dto.py
52+
data_bridges_client/models/ipc_historical_datum_dto_paged_result.py
53+
data_bridges_client/models/ipcch_and_equivalent_peaks_dto.py
54+
data_bridges_client/models/ipcch_and_equivalent_peaks_dto_paged_result.py
55+
data_bridges_client/models/ipcch_base_dto.py
56+
data_bridges_client/models/ipcch_base_dto_paged_result.py
57+
data_bridges_client/models/ipcch_peaks_dto.py
58+
data_bridges_client/models/ipcch_peaks_dto_paged_result.py
4359
data_bridges_client/models/key_name_dto.py
60+
data_bridges_client/models/list_item_dto.py
4461
data_bridges_client/models/market_dto.py
4562
data_bridges_client/models/market_geo_json_root.py
4663
data_bridges_client/models/mfi_processed_data_dto.py
@@ -65,10 +82,8 @@ data_bridges_client/models/rpme_variable_paged_result.py
6582
data_bridges_client/models/survey_list_dto.py
6683
data_bridges_client/models/usd_indirect_quotation.py
6784
data_bridges_client/models/usd_indirect_quotation_paged_result.py
68-
data_bridges_client/models/view_extended_aggregated_price.py
69-
data_bridges_client/models/view_extended_aggregated_price_paged_result.py
70-
data_bridges_client/models/view_extended_alps_value.py
71-
data_bridges_client/models/view_extended_alps_value_paged_result.py
85+
data_bridges_client/models/view_extended_monthly_aggregated_price.py
86+
data_bridges_client/models/view_extended_monthly_aggregated_price_paged_result.py
7287
data_bridges_client/models/weekly_aggregated_price.py
7388
data_bridges_client/models/xls_form_definition_new_schema_dto.py
7489
data_bridges_client/models/xls_form_dto.py
@@ -78,6 +93,11 @@ data_bridges_client/models/xls_form_list_choices_dto.py
7893
data_bridges_client/py.typed
7994
data_bridges_client/rest.py
8095
docs/BadRequestDTO.md
96+
docs/CariAdm0ValuesDTO.md
97+
docs/CariAdm0ValuesDTOPagedResult.md
98+
docs/CariAdm1ValuesDTO.md
99+
docs/CariAdm1ValuesDTOPagedResult.md
100+
docs/CategoriesAndIndicatorsDTO.md
81101
docs/CommoditiesApi.md
82102
docs/CommodityDTO.md
83103
docs/CommodityPriceDTO.md
@@ -90,19 +110,31 @@ docs/EconomicDataApi.md
90110
docs/EconomicDataDTO.md
91111
docs/EconomicIndicatorProperty.md
92112
docs/EconomicIndicatorPropertyPagedResult.md
113+
docs/ExtendedAlpsValueDto.md
114+
docs/ExtendedAlpsValueDtoPagedResult.md
93115
docs/Feature.md
94-
docs/FoodSecurityApi.md
95116
docs/Geometry.md
96-
docs/GorpApi.md
97-
docs/GorpCountryApiDto.md
98-
docs/GorpGlobalApiDto.md
99-
docs/GorpRegionalApiDto.md
117+
docs/GlobalOutlookApi.md
118+
docs/GlobalOutlookApiDto.md
119+
docs/GlobalOutlookCountryApiDto.md
120+
docs/GlobalOutlookRegionalApiDto.md
100121
docs/HouseholdSurveyListDTO.md
101122
docs/HouseholdSurveyListDTOPagedResult.md
123+
docs/HungerHotSpotDataDTO.md
124+
docs/HungerHotSpotDataDTOPagedResult.md
125+
docs/HungerHotspotApi.md
102126
docs/IncubationApi.md
103-
docs/IpcValue.md
104-
docs/IpcValuePagedResult.md
127+
docs/IpcHistoricalDatumDto.md
128+
docs/IpcHistoricalDatumDtoPagedResult.md
129+
docs/IpcchAndEquivalentPeaksDTO.md
130+
docs/IpcchAndEquivalentPeaksDTOPagedResult.md
131+
docs/IpcchApi.md
132+
docs/IpcchBaseDto.md
133+
docs/IpcchBaseDtoPagedResult.md
134+
docs/IpcchPeaksDto.md
135+
docs/IpcchPeaksDtoPagedResult.md
105136
docs/KeyNameDto.md
137+
docs/ListItemDto.md
106138
docs/MFIProcessedDataDTO.md
107139
docs/MarketDTO.md
108140
docs/MarketGeoJsonRoot.md
@@ -131,10 +163,8 @@ docs/SurveyListDTO.md
131163
docs/SurveysApi.md
132164
docs/UsdIndirectQuotation.md
133165
docs/UsdIndirectQuotationPagedResult.md
134-
docs/ViewExtendedAggregatedPrice.md
135-
docs/ViewExtendedAggregatedPricePagedResult.md
136-
docs/ViewExtendedAlpsValue.md
137-
docs/ViewExtendedAlpsValuePagedResult.md
166+
docs/ViewExtendedMonthlyAggregatedPrice.md
167+
docs/ViewExtendedMonthlyAggregatedPricePagedResult.md
138168
docs/WeeklyAggregatedPrice.md
139169
docs/XlsFormDTO.md
140170
docs/XlsFormDefinitionNewSchemaDTO.md
@@ -150,6 +180,11 @@ setup.py
150180
test-requirements.txt
151181
test/__init__.py
152182
test/test_bad_request_dto.py
183+
test/test_cari_adm0_values_dto.py
184+
test/test_cari_adm0_values_dto_paged_result.py
185+
test/test_cari_adm1_values_dto.py
186+
test/test_cari_adm1_values_dto_paged_result.py
187+
test/test_categories_and_indicators_dto.py
153188
test/test_commodities_api.py
154189
test/test_commodity_dto.py
155190
test/test_commodity_price_dto.py
@@ -162,19 +197,31 @@ test/test_economic_data_api.py
162197
test/test_economic_data_dto.py
163198
test/test_economic_indicator_property.py
164199
test/test_economic_indicator_property_paged_result.py
200+
test/test_extended_alps_value_dto.py
201+
test/test_extended_alps_value_dto_paged_result.py
165202
test/test_feature.py
166-
test/test_food_security_api.py
167203
test/test_geometry.py
168-
test/test_gorp_api.py
169-
test/test_gorp_country_api_dto.py
170-
test/test_gorp_global_api_dto.py
171-
test/test_gorp_regional_api_dto.py
204+
test/test_global_outlook_api.py
205+
test/test_global_outlook_api_dto.py
206+
test/test_global_outlook_country_api_dto.py
207+
test/test_global_outlook_regional_api_dto.py
172208
test/test_household_survey_list_dto.py
173209
test/test_household_survey_list_dto_paged_result.py
210+
test/test_hunger_hot_spot_data_dto.py
211+
test/test_hunger_hot_spot_data_dto_paged_result.py
212+
test/test_hunger_hotspot_api.py
174213
test/test_incubation_api.py
175-
test/test_ipc_value.py
176-
test/test_ipc_value_paged_result.py
214+
test/test_ipc_historical_datum_dto.py
215+
test/test_ipc_historical_datum_dto_paged_result.py
216+
test/test_ipcch_and_equivalent_peaks_dto.py
217+
test/test_ipcch_and_equivalent_peaks_dto_paged_result.py
218+
test/test_ipcch_api.py
219+
test/test_ipcch_base_dto.py
220+
test/test_ipcch_base_dto_paged_result.py
221+
test/test_ipcch_peaks_dto.py
222+
test/test_ipcch_peaks_dto_paged_result.py
177223
test/test_key_name_dto.py
224+
test/test_list_item_dto.py
178225
test/test_market_dto.py
179226
test/test_market_geo_json_root.py
180227
test/test_market_prices_api.py
@@ -203,10 +250,8 @@ test/test_survey_list_dto.py
203250
test/test_surveys_api.py
204251
test/test_usd_indirect_quotation.py
205252
test/test_usd_indirect_quotation_paged_result.py
206-
test/test_view_extended_aggregated_price.py
207-
test/test_view_extended_aggregated_price_paged_result.py
208-
test/test_view_extended_alps_value.py
209-
test/test_view_extended_alps_value_paged_result.py
253+
test/test_view_extended_monthly_aggregated_price.py
254+
test/test_view_extended_monthly_aggregated_price_paged_result.py
210255
test/test_weekly_aggregated_price.py
211256
test/test_xls_form_definition_new_schema_dto.py
212257
test/test_xls_form_dto.py

0 commit comments

Comments
 (0)