udl-sdk 0.1.0a16__py3-none-any.whl → 0.1.0a18__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.
Files changed (147) hide show
  1. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/METADATA +1 -1
  2. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/RECORD +136 -129
  3. unifieddatalibrary/_client.py +113 -82
  4. unifieddatalibrary/_version.py +1 -1
  5. unifieddatalibrary/resources/__init__.py +28 -84
  6. unifieddatalibrary/resources/air_operations/__init__.py +0 -14
  7. unifieddatalibrary/resources/air_operations/air_operations.py +0 -32
  8. unifieddatalibrary/resources/air_operations/aircraft_sorties.py +1507 -37
  9. unifieddatalibrary/resources/air_operations/crewpapers.py +4 -4
  10. unifieddatalibrary/resources/airload_plans.py +1311 -59
  11. unifieddatalibrary/resources/attitude_sets/attitude_sets.py +106 -0
  12. unifieddatalibrary/resources/conjunctions/conjunctions.py +4 -4
  13. unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +801 -0
  14. unifieddatalibrary/resources/iono_observations/__init__.py +33 -0
  15. unifieddatalibrary/resources/{iono_observation → iono_observations}/history.py +2 -2
  16. unifieddatalibrary/resources/{ion_oobservation.py → iono_observations/iono_observations.py} +123 -91
  17. unifieddatalibrary/resources/logistics_support/logistics_support.py +5 -4
  18. unifieddatalibrary/resources/onorbitantenna.py +5 -4
  19. unifieddatalibrary/resources/onorbitbattery.py +5 -4
  20. unifieddatalibrary/resources/onorbitsolararray.py +5 -4
  21. unifieddatalibrary/resources/onorbitthruster.py +5 -4
  22. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/__init__.py +13 -13
  23. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/history.py +2 -2
  24. unifieddatalibrary/resources/{report_and_activity/report_and_activity.py → report_and_activities/report_and_activities.py} +35 -35
  25. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_h3geo.py +1 -1
  26. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_sigact.py +1 -1
  27. unifieddatalibrary/resources/scs/paths.py +4 -4
  28. unifieddatalibrary/resources/scs/scs.py +4 -4
  29. unifieddatalibrary/resources/scs/v2.py +4 -4
  30. unifieddatalibrary/resources/status.py +5 -4
  31. unifieddatalibrary/resources/supporting_data/__init__.py +0 -42
  32. unifieddatalibrary/resources/supporting_data/dataowner.py +257 -1
  33. unifieddatalibrary/resources/supporting_data/supporting_data.py +0 -96
  34. unifieddatalibrary/resources/track_route/track_route.py +26 -23
  35. unifieddatalibrary/types/__init__.py +40 -30
  36. unifieddatalibrary/types/air_operations/__init__.py +12 -12
  37. unifieddatalibrary/types/air_operations/{aircraft_sortie_list_params.py → aircraft_sorty_count_params.py} +2 -2
  38. unifieddatalibrary/types/air_operations/aircraft_sorty_count_response.py +7 -0
  39. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_bulk_params.py → aircraft_sorty_create_bulk_params.py} +2 -2
  40. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_params.py → aircraft_sorty_create_params.py} +2 -2
  41. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_aodr_params.py → aircraft_sorty_history_aodr_params.py} +2 -2
  42. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_count_params.py → aircraft_sorty_history_count_params.py} +2 -2
  43. unifieddatalibrary/types/{ion_oobservation_count_response.py → air_operations/aircraft_sorty_history_count_response.py} +2 -2
  44. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_params.py → aircraft_sorty_history_query_params.py} +2 -2
  45. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_response.py → aircraft_sorty_history_query_response.py} +2 -2
  46. unifieddatalibrary/types/air_operations/{aircraft_sortie_count_params.py → aircraft_sorty_list_params.py} +2 -2
  47. unifieddatalibrary/types/{air_load_plan_count_params.py → airload_plan_count_params.py} +2 -2
  48. unifieddatalibrary/types/{air_load_plan_count_response.py → airload_plan_count_response.py} +2 -2
  49. unifieddatalibrary/types/{air_load_plan_create_params.py → airload_plan_create_params.py} +2 -2
  50. unifieddatalibrary/types/{air_load_plan_list_params.py → airload_plan_list_params.py} +2 -2
  51. unifieddatalibrary/types/{air_load_plan_queryhelp_response.py → airload_plan_queryhelp_response.py} +2 -2
  52. unifieddatalibrary/types/{air_load_plan_retrieve_params.py → airload_plan_retrieve_params.py} +2 -2
  53. unifieddatalibrary/types/{air_load_plan_tuple_params.py → airload_plan_tuple_params.py} +2 -2
  54. unifieddatalibrary/types/{air_load_plan_tuple_response.py → airload_plan_tuple_response.py} +2 -2
  55. unifieddatalibrary/types/altitude_blocks_ingest_param.py +22 -0
  56. unifieddatalibrary/types/{attitudeset_retrieve_params.py → attitude_set_retrieve_params.py} +2 -2
  57. unifieddatalibrary/types/{gnss_rawif_count_params.py → gnss_raw_if_count_params.py} +2 -2
  58. unifieddatalibrary/types/{gnss_rawif_count_response.py → gnss_raw_if_count_response.py} +2 -2
  59. unifieddatalibrary/types/{gnss_rawif_file_get_params.py → gnss_raw_if_file_get_params.py} +2 -2
  60. unifieddatalibrary/types/{gnss_rawif_get_params.py → gnss_raw_if_get_params.py} +2 -2
  61. unifieddatalibrary/types/{gnss_rawif_get_response.py → gnss_raw_if_get_response.py} +2 -2
  62. unifieddatalibrary/types/{gnss_rawif_list_params.py → gnss_raw_if_list_params.py} +2 -2
  63. unifieddatalibrary/types/{gnss_rawif_list_response.py → gnss_raw_if_list_response.py} +2 -2
  64. unifieddatalibrary/types/{gnss_rawif_queryhelp_response.py → gnss_raw_if_queryhelp_response.py} +2 -2
  65. unifieddatalibrary/types/{gnss_rawif_tuple_params.py → gnss_raw_if_tuple_params.py} +2 -2
  66. unifieddatalibrary/types/{gnss_rawif_tuple_response.py → gnss_raw_if_tuple_response.py} +3 -3
  67. unifieddatalibrary/types/{gnss_rawif_upload_zip_params.py → gnss_raw_if_upload_zip_params.py} +2 -2
  68. unifieddatalibrary/types/{ion_oobservation_count_params.py → iono_observation_count_params.py} +2 -2
  69. unifieddatalibrary/types/{air_operations/aircraft_sortie_count_response.py → iono_observation_count_response.py} +2 -2
  70. unifieddatalibrary/types/{ion_oobservation_create_bulk_params.py → iono_observation_create_bulk_params.py} +2 -2
  71. unifieddatalibrary/types/{ion_oobservation_list_params.py → iono_observation_list_params.py} +2 -2
  72. unifieddatalibrary/types/{ion_oobservation_list_response.py → iono_observation_list_response.py} +2 -2
  73. unifieddatalibrary/types/{ion_oobservation_queryhelp_response.py → iono_observation_queryhelp_response.py} +2 -2
  74. unifieddatalibrary/types/{ion_oobservation_tuple_params.py → iono_observation_tuple_params.py} +2 -2
  75. unifieddatalibrary/types/{ion_oobservation_tuple_response.py → iono_observation_tuple_response.py} +82 -82
  76. unifieddatalibrary/types/{ion_oobservation_unvalidated_publish_params.py → iono_observation_unvalidated_publish_params.py} +2 -2
  77. unifieddatalibrary/types/logistics_remarks_ingest_param.py +25 -0
  78. unifieddatalibrary/types/logistics_support_create_bulk_params.py +4 -51
  79. unifieddatalibrary/types/logistics_support_create_params.py +4 -49
  80. unifieddatalibrary/types/logistics_support_unvalidated_publish_params.py +4 -51
  81. unifieddatalibrary/types/logistics_support_update_params.py +4 -49
  82. unifieddatalibrary/types/onorbitantenna_create_params.py +3 -38
  83. unifieddatalibrary/types/onorbitantenna_update_params.py +3 -38
  84. unifieddatalibrary/types/onorbitbattery_create_params.py +3 -38
  85. unifieddatalibrary/types/onorbitbattery_update_params.py +3 -38
  86. unifieddatalibrary/types/onorbitsolararray_create_params.py +3 -38
  87. unifieddatalibrary/types/onorbitsolararray_update_params.py +3 -38
  88. unifieddatalibrary/types/onorbitthruster_create_params.py +3 -41
  89. unifieddatalibrary/types/onorbitthruster_update_params.py +3 -41
  90. unifieddatalibrary/types/point_of_contact_ingest_param.py +41 -0
  91. unifieddatalibrary/types/route_points_ingest_param.py +82 -0
  92. unifieddatalibrary/types/shared/__init__.py +5 -0
  93. unifieddatalibrary/types/shared/antenna_ingest.py +62 -0
  94. unifieddatalibrary/types/shared/battery_ingest.py +62 -0
  95. unifieddatalibrary/types/shared/engine_ingest.py +65 -0
  96. unifieddatalibrary/types/shared/solar_array_ingest.py +62 -0
  97. unifieddatalibrary/types/shared/sub_status_ingest.py +74 -0
  98. unifieddatalibrary/types/shared_params/__init__.py +5 -0
  99. unifieddatalibrary/types/shared_params/antenna_ingest.py +45 -0
  100. unifieddatalibrary/types/shared_params/battery_ingest.py +45 -0
  101. unifieddatalibrary/types/shared_params/engine_ingest.py +48 -0
  102. unifieddatalibrary/types/shared_params/solar_array_ingest.py +45 -0
  103. unifieddatalibrary/types/shared_params/sub_status_ingest.py +57 -0
  104. unifieddatalibrary/types/status_create_params.py +3 -50
  105. unifieddatalibrary/types/status_update_params.py +3 -50
  106. unifieddatalibrary/types/supporting_data/__init__.py +13 -5
  107. unifieddatalibrary/types/supporting_data/{query_help_retrieve_response.py → dataowner_query_help_response.py} +2 -2
  108. unifieddatalibrary/types/supporting_data/{dataowner_type_list_params.py → dataowner_retrieve_data_owner_types_params.py} +2 -2
  109. unifieddatalibrary/types/supporting_data/dataowner_retrieve_data_owner_types_response.py +8 -0
  110. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_params.py → dataowner_retrieve_provider_metadata_params.py} +2 -2
  111. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_response.py → dataowner_retrieve_provider_metadata_response.py} +2 -2
  112. unifieddatalibrary/types/track_route_create_bulk_params.py +5 -267
  113. unifieddatalibrary/types/track_route_create_params.py +7 -122
  114. unifieddatalibrary/types/track_route_ingest_param.py +157 -0
  115. unifieddatalibrary/types/track_route_unvalidated_publish_params.py +7 -122
  116. unifieddatalibrary/types/track_route_update_params.py +7 -122
  117. unifieddatalibrary/resources/air_load_plans.py +0 -1341
  118. unifieddatalibrary/resources/air_operations/aircraft_sortie.py +0 -1557
  119. unifieddatalibrary/resources/attitudesets.py +0 -191
  120. unifieddatalibrary/resources/gnss_rawif.py +0 -871
  121. unifieddatalibrary/resources/iono_observation/__init__.py +0 -33
  122. unifieddatalibrary/resources/iono_observation/iono_observation.py +0 -102
  123. unifieddatalibrary/resources/supporting_data/dataowner_types.py +0 -186
  124. unifieddatalibrary/resources/supporting_data/provider_metadata.py +0 -179
  125. unifieddatalibrary/resources/supporting_data/query_help.py +0 -141
  126. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_response.py +0 -7
  127. unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +0 -7
  128. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/WHEEL +0 -0
  129. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/licenses/LICENSE +0 -0
  130. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  131. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/poi.py +0 -0
  132. /unifieddatalibrary/types/{iono_observation → iono_observations}/__init__.py +0 -0
  133. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_aodr_params.py +0 -0
  134. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_params.py +0 -0
  135. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_response.py +0 -0
  136. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_params.py +0 -0
  137. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_response.py +0 -0
  138. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/__init__.py +0 -0
  139. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  140. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_aodr_params.py +0 -0
  141. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_params.py +0 -0
  142. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_response.py +0 -0
  143. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_params.py +0 -0
  144. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_response.py +0 -0
  145. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_h3geo_unvalidated_publish_params.py +0 -0
  146. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_file_get_params.py +0 -0
  147. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_unvalidated_publish_params.py +0 -0
@@ -15,8 +15,20 @@ from ..._response import (
15
15
  async_to_streamed_response_wrapper,
16
16
  )
17
17
  from ..._base_client import make_request_options
18
- from ...types.supporting_data import dataowner_count_params, dataowner_retrieve_params
18
+ from ...types.supporting_data import (
19
+ dataowner_count_params,
20
+ dataowner_retrieve_params,
21
+ dataowner_retrieve_data_owner_types_params,
22
+ dataowner_retrieve_provider_metadata_params,
23
+ )
19
24
  from ...types.supporting_data.dataowner_retrieve_response import DataownerRetrieveResponse
25
+ from ...types.supporting_data.dataowner_query_help_response import DataownerQueryHelpResponse
26
+ from ...types.supporting_data.dataowner_retrieve_data_owner_types_response import (
27
+ DataownerRetrieveDataOwnerTypesResponse,
28
+ )
29
+ from ...types.supporting_data.dataowner_retrieve_provider_metadata_response import (
30
+ DataownerRetrieveProviderMetadataResponse,
31
+ )
20
32
 
21
33
  __all__ = ["DataownerResource", "AsyncDataownerResource"]
22
34
 
@@ -128,6 +140,110 @@ class DataownerResource(SyncAPIResource):
128
140
  cast_to=str,
129
141
  )
130
142
 
143
+ def query_help(
144
+ self,
145
+ *,
146
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
147
+ # The extra values given here take precedence over values defined on the client or passed to this method.
148
+ extra_headers: Headers | None = None,
149
+ extra_query: Query | None = None,
150
+ extra_body: Body | None = None,
151
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
152
+ ) -> DataownerQueryHelpResponse:
153
+ """
154
+ Service operation to provide detailed information on available dynamic query
155
+ parameters for a particular data type.
156
+ """
157
+ return self._get(
158
+ "/udl/dataowner/queryhelp",
159
+ options=make_request_options(
160
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
161
+ ),
162
+ cast_to=DataownerQueryHelpResponse,
163
+ )
164
+
165
+ def retrieve_data_owner_types(
166
+ self,
167
+ *,
168
+ first_result: int | NotGiven = NOT_GIVEN,
169
+ max_results: int | NotGiven = NOT_GIVEN,
170
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
171
+ # The extra values given here take precedence over values defined on the client or passed to this method.
172
+ extra_headers: Headers | None = None,
173
+ extra_query: Query | None = None,
174
+ extra_body: Body | None = None,
175
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
176
+ ) -> DataownerRetrieveDataOwnerTypesResponse:
177
+ """
178
+ Retrieves all distinct data owner types.
179
+
180
+ Args:
181
+ extra_headers: Send extra headers
182
+
183
+ extra_query: Add additional query parameters to the request
184
+
185
+ extra_body: Add additional JSON properties to the request
186
+
187
+ timeout: Override the client-level default timeout for this request, in seconds
188
+ """
189
+ return self._get(
190
+ "/udl/dataowner/getDataOwnerTypes",
191
+ options=make_request_options(
192
+ extra_headers=extra_headers,
193
+ extra_query=extra_query,
194
+ extra_body=extra_body,
195
+ timeout=timeout,
196
+ query=maybe_transform(
197
+ {
198
+ "first_result": first_result,
199
+ "max_results": max_results,
200
+ },
201
+ dataowner_retrieve_data_owner_types_params.DataownerRetrieveDataOwnerTypesParams,
202
+ ),
203
+ ),
204
+ cast_to=DataownerRetrieveDataOwnerTypesResponse,
205
+ )
206
+
207
+ def retrieve_provider_metadata(
208
+ self,
209
+ *,
210
+ first_result: int | NotGiven = NOT_GIVEN,
211
+ max_results: int | NotGiven = NOT_GIVEN,
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
+ ) -> DataownerRetrieveProviderMetadataResponse:
219
+ """
220
+ Args:
221
+ extra_headers: Send extra headers
222
+
223
+ extra_query: Add additional query parameters to the request
224
+
225
+ extra_body: Add additional JSON properties to the request
226
+
227
+ timeout: Override the client-level default timeout for this request, in seconds
228
+ """
229
+ return self._get(
230
+ "/udl/dataowner/providerMetadata",
231
+ options=make_request_options(
232
+ extra_headers=extra_headers,
233
+ extra_query=extra_query,
234
+ extra_body=extra_body,
235
+ timeout=timeout,
236
+ query=maybe_transform(
237
+ {
238
+ "first_result": first_result,
239
+ "max_results": max_results,
240
+ },
241
+ dataowner_retrieve_provider_metadata_params.DataownerRetrieveProviderMetadataParams,
242
+ ),
243
+ ),
244
+ cast_to=DataownerRetrieveProviderMetadataResponse,
245
+ )
246
+
131
247
 
132
248
  class AsyncDataownerResource(AsyncAPIResource):
133
249
  @cached_property
@@ -236,6 +352,110 @@ class AsyncDataownerResource(AsyncAPIResource):
236
352
  cast_to=str,
237
353
  )
238
354
 
355
+ async def query_help(
356
+ self,
357
+ *,
358
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
359
+ # The extra values given here take precedence over values defined on the client or passed to this method.
360
+ extra_headers: Headers | None = None,
361
+ extra_query: Query | None = None,
362
+ extra_body: Body | None = None,
363
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
364
+ ) -> DataownerQueryHelpResponse:
365
+ """
366
+ Service operation to provide detailed information on available dynamic query
367
+ parameters for a particular data type.
368
+ """
369
+ return await self._get(
370
+ "/udl/dataowner/queryhelp",
371
+ options=make_request_options(
372
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
373
+ ),
374
+ cast_to=DataownerQueryHelpResponse,
375
+ )
376
+
377
+ async def retrieve_data_owner_types(
378
+ self,
379
+ *,
380
+ first_result: int | NotGiven = NOT_GIVEN,
381
+ max_results: int | NotGiven = NOT_GIVEN,
382
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
383
+ # The extra values given here take precedence over values defined on the client or passed to this method.
384
+ extra_headers: Headers | None = None,
385
+ extra_query: Query | None = None,
386
+ extra_body: Body | None = None,
387
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
388
+ ) -> DataownerRetrieveDataOwnerTypesResponse:
389
+ """
390
+ Retrieves all distinct data owner types.
391
+
392
+ Args:
393
+ extra_headers: Send extra headers
394
+
395
+ extra_query: Add additional query parameters to the request
396
+
397
+ extra_body: Add additional JSON properties to the request
398
+
399
+ timeout: Override the client-level default timeout for this request, in seconds
400
+ """
401
+ return await self._get(
402
+ "/udl/dataowner/getDataOwnerTypes",
403
+ options=make_request_options(
404
+ extra_headers=extra_headers,
405
+ extra_query=extra_query,
406
+ extra_body=extra_body,
407
+ timeout=timeout,
408
+ query=await async_maybe_transform(
409
+ {
410
+ "first_result": first_result,
411
+ "max_results": max_results,
412
+ },
413
+ dataowner_retrieve_data_owner_types_params.DataownerRetrieveDataOwnerTypesParams,
414
+ ),
415
+ ),
416
+ cast_to=DataownerRetrieveDataOwnerTypesResponse,
417
+ )
418
+
419
+ async def retrieve_provider_metadata(
420
+ self,
421
+ *,
422
+ first_result: int | NotGiven = NOT_GIVEN,
423
+ max_results: int | NotGiven = NOT_GIVEN,
424
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
425
+ # The extra values given here take precedence over values defined on the client or passed to this method.
426
+ extra_headers: Headers | None = None,
427
+ extra_query: Query | None = None,
428
+ extra_body: Body | None = None,
429
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
430
+ ) -> DataownerRetrieveProviderMetadataResponse:
431
+ """
432
+ Args:
433
+ extra_headers: Send extra headers
434
+
435
+ extra_query: Add additional query parameters to the request
436
+
437
+ extra_body: Add additional JSON properties to the request
438
+
439
+ timeout: Override the client-level default timeout for this request, in seconds
440
+ """
441
+ return await self._get(
442
+ "/udl/dataowner/providerMetadata",
443
+ options=make_request_options(
444
+ extra_headers=extra_headers,
445
+ extra_query=extra_query,
446
+ extra_body=extra_body,
447
+ timeout=timeout,
448
+ query=await async_maybe_transform(
449
+ {
450
+ "first_result": first_result,
451
+ "max_results": max_results,
452
+ },
453
+ dataowner_retrieve_provider_metadata_params.DataownerRetrieveProviderMetadataParams,
454
+ ),
455
+ ),
456
+ cast_to=DataownerRetrieveProviderMetadataResponse,
457
+ )
458
+
239
459
 
240
460
  class DataownerResourceWithRawResponse:
241
461
  def __init__(self, dataowner: DataownerResource) -> None:
@@ -247,6 +467,15 @@ class DataownerResourceWithRawResponse:
247
467
  self.count = to_raw_response_wrapper(
248
468
  dataowner.count,
249
469
  )
470
+ self.query_help = to_raw_response_wrapper(
471
+ dataowner.query_help,
472
+ )
473
+ self.retrieve_data_owner_types = to_raw_response_wrapper(
474
+ dataowner.retrieve_data_owner_types,
475
+ )
476
+ self.retrieve_provider_metadata = to_raw_response_wrapper(
477
+ dataowner.retrieve_provider_metadata,
478
+ )
250
479
 
251
480
 
252
481
  class AsyncDataownerResourceWithRawResponse:
@@ -259,6 +488,15 @@ class AsyncDataownerResourceWithRawResponse:
259
488
  self.count = async_to_raw_response_wrapper(
260
489
  dataowner.count,
261
490
  )
491
+ self.query_help = async_to_raw_response_wrapper(
492
+ dataowner.query_help,
493
+ )
494
+ self.retrieve_data_owner_types = async_to_raw_response_wrapper(
495
+ dataowner.retrieve_data_owner_types,
496
+ )
497
+ self.retrieve_provider_metadata = async_to_raw_response_wrapper(
498
+ dataowner.retrieve_provider_metadata,
499
+ )
262
500
 
263
501
 
264
502
  class DataownerResourceWithStreamingResponse:
@@ -271,6 +509,15 @@ class DataownerResourceWithStreamingResponse:
271
509
  self.count = to_streamed_response_wrapper(
272
510
  dataowner.count,
273
511
  )
512
+ self.query_help = to_streamed_response_wrapper(
513
+ dataowner.query_help,
514
+ )
515
+ self.retrieve_data_owner_types = to_streamed_response_wrapper(
516
+ dataowner.retrieve_data_owner_types,
517
+ )
518
+ self.retrieve_provider_metadata = to_streamed_response_wrapper(
519
+ dataowner.retrieve_provider_metadata,
520
+ )
274
521
 
275
522
 
276
523
  class AsyncDataownerResourceWithStreamingResponse:
@@ -283,3 +530,12 @@ class AsyncDataownerResourceWithStreamingResponse:
283
530
  self.count = async_to_streamed_response_wrapper(
284
531
  dataowner.count,
285
532
  )
533
+ self.query_help = async_to_streamed_response_wrapper(
534
+ dataowner.query_help,
535
+ )
536
+ self.retrieve_data_owner_types = async_to_streamed_response_wrapper(
537
+ dataowner.retrieve_data_owner_types,
538
+ )
539
+ self.retrieve_provider_metadata = async_to_streamed_response_wrapper(
540
+ dataowner.retrieve_provider_metadata,
541
+ )
@@ -19,31 +19,7 @@ from .data_types import (
19
19
  DataTypesResourceWithStreamingResponse,
20
20
  AsyncDataTypesResourceWithStreamingResponse,
21
21
  )
22
- from .query_help import (
23
- QueryHelpResource,
24
- AsyncQueryHelpResource,
25
- QueryHelpResourceWithRawResponse,
26
- AsyncQueryHelpResourceWithRawResponse,
27
- QueryHelpResourceWithStreamingResponse,
28
- AsyncQueryHelpResourceWithStreamingResponse,
29
- )
30
22
  from ..._resource import SyncAPIResource, AsyncAPIResource
31
- from .dataowner_types import (
32
- DataownerTypesResource,
33
- AsyncDataownerTypesResource,
34
- DataownerTypesResourceWithRawResponse,
35
- AsyncDataownerTypesResourceWithRawResponse,
36
- DataownerTypesResourceWithStreamingResponse,
37
- AsyncDataownerTypesResourceWithStreamingResponse,
38
- )
39
- from .provider_metadata import (
40
- ProviderMetadataResource,
41
- AsyncProviderMetadataResource,
42
- ProviderMetadataResourceWithRawResponse,
43
- AsyncProviderMetadataResourceWithRawResponse,
44
- ProviderMetadataResourceWithStreamingResponse,
45
- AsyncProviderMetadataResourceWithStreamingResponse,
46
- )
47
23
 
48
24
  __all__ = ["SupportingDataResource", "AsyncSupportingDataResource"]
49
25
 
@@ -57,18 +33,6 @@ class SupportingDataResource(SyncAPIResource):
57
33
  def dataowner(self) -> DataownerResource:
58
34
  return DataownerResource(self._client)
59
35
 
60
- @cached_property
61
- def dataowner_types(self) -> DataownerTypesResource:
62
- return DataownerTypesResource(self._client)
63
-
64
- @cached_property
65
- def provider_metadata(self) -> ProviderMetadataResource:
66
- return ProviderMetadataResource(self._client)
67
-
68
- @cached_property
69
- def query_help(self) -> QueryHelpResource:
70
- return QueryHelpResource(self._client)
71
-
72
36
  @cached_property
73
37
  def with_raw_response(self) -> SupportingDataResourceWithRawResponse:
74
38
  """
@@ -98,18 +62,6 @@ class AsyncSupportingDataResource(AsyncAPIResource):
98
62
  def dataowner(self) -> AsyncDataownerResource:
99
63
  return AsyncDataownerResource(self._client)
100
64
 
101
- @cached_property
102
- def dataowner_types(self) -> AsyncDataownerTypesResource:
103
- return AsyncDataownerTypesResource(self._client)
104
-
105
- @cached_property
106
- def provider_metadata(self) -> AsyncProviderMetadataResource:
107
- return AsyncProviderMetadataResource(self._client)
108
-
109
- @cached_property
110
- def query_help(self) -> AsyncQueryHelpResource:
111
- return AsyncQueryHelpResource(self._client)
112
-
113
65
  @cached_property
114
66
  def with_raw_response(self) -> AsyncSupportingDataResourceWithRawResponse:
115
67
  """
@@ -142,18 +94,6 @@ class SupportingDataResourceWithRawResponse:
142
94
  def dataowner(self) -> DataownerResourceWithRawResponse:
143
95
  return DataownerResourceWithRawResponse(self._supporting_data.dataowner)
144
96
 
145
- @cached_property
146
- def dataowner_types(self) -> DataownerTypesResourceWithRawResponse:
147
- return DataownerTypesResourceWithRawResponse(self._supporting_data.dataowner_types)
148
-
149
- @cached_property
150
- def provider_metadata(self) -> ProviderMetadataResourceWithRawResponse:
151
- return ProviderMetadataResourceWithRawResponse(self._supporting_data.provider_metadata)
152
-
153
- @cached_property
154
- def query_help(self) -> QueryHelpResourceWithRawResponse:
155
- return QueryHelpResourceWithRawResponse(self._supporting_data.query_help)
156
-
157
97
 
158
98
  class AsyncSupportingDataResourceWithRawResponse:
159
99
  def __init__(self, supporting_data: AsyncSupportingDataResource) -> None:
@@ -167,18 +107,6 @@ class AsyncSupportingDataResourceWithRawResponse:
167
107
  def dataowner(self) -> AsyncDataownerResourceWithRawResponse:
168
108
  return AsyncDataownerResourceWithRawResponse(self._supporting_data.dataowner)
169
109
 
170
- @cached_property
171
- def dataowner_types(self) -> AsyncDataownerTypesResourceWithRawResponse:
172
- return AsyncDataownerTypesResourceWithRawResponse(self._supporting_data.dataowner_types)
173
-
174
- @cached_property
175
- def provider_metadata(self) -> AsyncProviderMetadataResourceWithRawResponse:
176
- return AsyncProviderMetadataResourceWithRawResponse(self._supporting_data.provider_metadata)
177
-
178
- @cached_property
179
- def query_help(self) -> AsyncQueryHelpResourceWithRawResponse:
180
- return AsyncQueryHelpResourceWithRawResponse(self._supporting_data.query_help)
181
-
182
110
 
183
111
  class SupportingDataResourceWithStreamingResponse:
184
112
  def __init__(self, supporting_data: SupportingDataResource) -> None:
@@ -192,18 +120,6 @@ class SupportingDataResourceWithStreamingResponse:
192
120
  def dataowner(self) -> DataownerResourceWithStreamingResponse:
193
121
  return DataownerResourceWithStreamingResponse(self._supporting_data.dataowner)
194
122
 
195
- @cached_property
196
- def dataowner_types(self) -> DataownerTypesResourceWithStreamingResponse:
197
- return DataownerTypesResourceWithStreamingResponse(self._supporting_data.dataowner_types)
198
-
199
- @cached_property
200
- def provider_metadata(self) -> ProviderMetadataResourceWithStreamingResponse:
201
- return ProviderMetadataResourceWithStreamingResponse(self._supporting_data.provider_metadata)
202
-
203
- @cached_property
204
- def query_help(self) -> QueryHelpResourceWithStreamingResponse:
205
- return QueryHelpResourceWithStreamingResponse(self._supporting_data.query_help)
206
-
207
123
 
208
124
  class AsyncSupportingDataResourceWithStreamingResponse:
209
125
  def __init__(self, supporting_data: AsyncSupportingDataResource) -> None:
@@ -216,15 +132,3 @@ class AsyncSupportingDataResourceWithStreamingResponse:
216
132
  @cached_property
217
133
  def dataowner(self) -> AsyncDataownerResourceWithStreamingResponse:
218
134
  return AsyncDataownerResourceWithStreamingResponse(self._supporting_data.dataowner)
219
-
220
- @cached_property
221
- def dataowner_types(self) -> AsyncDataownerTypesResourceWithStreamingResponse:
222
- return AsyncDataownerTypesResourceWithStreamingResponse(self._supporting_data.dataowner_types)
223
-
224
- @cached_property
225
- def provider_metadata(self) -> AsyncProviderMetadataResourceWithStreamingResponse:
226
- return AsyncProviderMetadataResourceWithStreamingResponse(self._supporting_data.provider_metadata)
227
-
228
- @cached_property
229
- def query_help(self) -> AsyncQueryHelpResourceWithStreamingResponse:
230
- return AsyncQueryHelpResourceWithStreamingResponse(self._supporting_data.query_help)
@@ -15,7 +15,6 @@ from ...types import (
15
15
  track_route_tuple_params,
16
16
  track_route_create_params,
17
17
  track_route_update_params,
18
- track_route_create_bulk_params,
19
18
  track_route_unvalidated_publish_params,
20
19
  )
21
20
  from .history import (
@@ -38,9 +37,13 @@ from ..._response import (
38
37
  )
39
38
  from ...pagination import SyncOffsetPage, AsyncOffsetPage
40
39
  from ..._base_client import AsyncPaginator, make_request_options
40
+ from ...types.track_route_ingest_param import TrackRouteIngestParam
41
+ from ...types.route_points_ingest_param import RoutePointsIngestParam
41
42
  from ...types.track_route_list_response import TrackRouteListResponse
42
43
  from ...types.track_route_tuple_response import TrackRouteTupleResponse
44
+ from ...types.altitude_blocks_ingest_param import AltitudeBlocksIngestParam
43
45
  from ...types.track_route.track_route_full import TrackRouteFull
46
+ from ...types.point_of_contact_ingest_param import PointOfContactIngestParam
44
47
  from ...types.track_route_queryhelp_response import TrackRouteQueryhelpResponse
45
48
 
46
49
  __all__ = ["TrackRouteResource", "AsyncTrackRouteResource"]
@@ -79,7 +82,7 @@ class TrackRouteResource(SyncAPIResource):
79
82
  source: str,
80
83
  type: str,
81
84
  id: str | NotGiven = NOT_GIVEN,
82
- altitude_blocks: Iterable[track_route_create_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
85
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
83
86
  apn_setting: str | NotGiven = NOT_GIVEN,
84
87
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
85
88
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -90,13 +93,13 @@ class TrackRouteResource(SyncAPIResource):
90
93
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
91
94
  location_track_id: str | NotGiven = NOT_GIVEN,
92
95
  origin: str | NotGiven = NOT_GIVEN,
93
- poc: Iterable[track_route_create_params.Poc] | NotGiven = NOT_GIVEN,
96
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
94
97
  pri_freq: float | NotGiven = NOT_GIVEN,
95
98
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
96
99
  region_code: str | NotGiven = NOT_GIVEN,
97
100
  region_name: str | NotGiven = NOT_GIVEN,
98
101
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
99
- route_points: Iterable[track_route_create_params.RoutePoint] | NotGiven = NOT_GIVEN,
102
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
100
103
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
101
104
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
102
105
  sec_freq: float | NotGiven = NOT_GIVEN,
@@ -275,7 +278,7 @@ class TrackRouteResource(SyncAPIResource):
275
278
  source: str,
276
279
  type: str,
277
280
  body_id: str | NotGiven = NOT_GIVEN,
278
- altitude_blocks: Iterable[track_route_update_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
281
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
279
282
  apn_setting: str | NotGiven = NOT_GIVEN,
280
283
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
281
284
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -286,13 +289,13 @@ class TrackRouteResource(SyncAPIResource):
286
289
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
287
290
  location_track_id: str | NotGiven = NOT_GIVEN,
288
291
  origin: str | NotGiven = NOT_GIVEN,
289
- poc: Iterable[track_route_update_params.Poc] | NotGiven = NOT_GIVEN,
292
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
290
293
  pri_freq: float | NotGiven = NOT_GIVEN,
291
294
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
292
295
  region_code: str | NotGiven = NOT_GIVEN,
293
296
  region_name: str | NotGiven = NOT_GIVEN,
294
297
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
295
- route_points: Iterable[track_route_update_params.RoutePoint] | NotGiven = NOT_GIVEN,
298
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
296
299
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
297
300
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
298
301
  sec_freq: float | NotGiven = NOT_GIVEN,
@@ -606,7 +609,7 @@ class TrackRouteResource(SyncAPIResource):
606
609
  def create_bulk(
607
610
  self,
608
611
  *,
609
- body: Iterable[track_route_create_bulk_params.Body],
612
+ body: Iterable[TrackRouteIngestParam],
610
613
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
611
614
  # The extra values given here take precedence over values defined on the client or passed to this method.
612
615
  extra_headers: Headers | None = None,
@@ -633,7 +636,7 @@ class TrackRouteResource(SyncAPIResource):
633
636
  extra_headers = {"Accept": "*/*", **(extra_headers or {})}
634
637
  return self._post(
635
638
  "/udl/trackroute/createBulk",
636
- body=maybe_transform(body, Iterable[track_route_create_bulk_params.Body]),
639
+ body=maybe_transform(body, Iterable[TrackRouteIngestParam]),
637
640
  options=make_request_options(
638
641
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
639
642
  ),
@@ -778,7 +781,7 @@ class TrackRouteResource(SyncAPIResource):
778
781
  source: str,
779
782
  type: str,
780
783
  id: str | NotGiven = NOT_GIVEN,
781
- altitude_blocks: Iterable[track_route_unvalidated_publish_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
784
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
782
785
  apn_setting: str | NotGiven = NOT_GIVEN,
783
786
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
784
787
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -789,13 +792,13 @@ class TrackRouteResource(SyncAPIResource):
789
792
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
790
793
  location_track_id: str | NotGiven = NOT_GIVEN,
791
794
  origin: str | NotGiven = NOT_GIVEN,
792
- poc: Iterable[track_route_unvalidated_publish_params.Poc] | NotGiven = NOT_GIVEN,
795
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
793
796
  pri_freq: float | NotGiven = NOT_GIVEN,
794
797
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
795
798
  region_code: str | NotGiven = NOT_GIVEN,
796
799
  region_name: str | NotGiven = NOT_GIVEN,
797
800
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
798
- route_points: Iterable[track_route_unvalidated_publish_params.RoutePoint] | NotGiven = NOT_GIVEN,
801
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
799
802
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
800
803
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
801
804
  sec_freq: float | NotGiven = NOT_GIVEN,
@@ -999,7 +1002,7 @@ class AsyncTrackRouteResource(AsyncAPIResource):
999
1002
  source: str,
1000
1003
  type: str,
1001
1004
  id: str | NotGiven = NOT_GIVEN,
1002
- altitude_blocks: Iterable[track_route_create_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
1005
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
1003
1006
  apn_setting: str | NotGiven = NOT_GIVEN,
1004
1007
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
1005
1008
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -1010,13 +1013,13 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1010
1013
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1011
1014
  location_track_id: str | NotGiven = NOT_GIVEN,
1012
1015
  origin: str | NotGiven = NOT_GIVEN,
1013
- poc: Iterable[track_route_create_params.Poc] | NotGiven = NOT_GIVEN,
1016
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
1014
1017
  pri_freq: float | NotGiven = NOT_GIVEN,
1015
1018
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
1016
1019
  region_code: str | NotGiven = NOT_GIVEN,
1017
1020
  region_name: str | NotGiven = NOT_GIVEN,
1018
1021
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1019
- route_points: Iterable[track_route_create_params.RoutePoint] | NotGiven = NOT_GIVEN,
1022
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
1020
1023
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
1021
1024
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
1022
1025
  sec_freq: float | NotGiven = NOT_GIVEN,
@@ -1195,7 +1198,7 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1195
1198
  source: str,
1196
1199
  type: str,
1197
1200
  body_id: str | NotGiven = NOT_GIVEN,
1198
- altitude_blocks: Iterable[track_route_update_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
1201
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
1199
1202
  apn_setting: str | NotGiven = NOT_GIVEN,
1200
1203
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
1201
1204
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -1206,13 +1209,13 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1206
1209
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1207
1210
  location_track_id: str | NotGiven = NOT_GIVEN,
1208
1211
  origin: str | NotGiven = NOT_GIVEN,
1209
- poc: Iterable[track_route_update_params.Poc] | NotGiven = NOT_GIVEN,
1212
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
1210
1213
  pri_freq: float | NotGiven = NOT_GIVEN,
1211
1214
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
1212
1215
  region_code: str | NotGiven = NOT_GIVEN,
1213
1216
  region_name: str | NotGiven = NOT_GIVEN,
1214
1217
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1215
- route_points: Iterable[track_route_update_params.RoutePoint] | NotGiven = NOT_GIVEN,
1218
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
1216
1219
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
1217
1220
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
1218
1221
  sec_freq: float | NotGiven = NOT_GIVEN,
@@ -1526,7 +1529,7 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1526
1529
  async def create_bulk(
1527
1530
  self,
1528
1531
  *,
1529
- body: Iterable[track_route_create_bulk_params.Body],
1532
+ body: Iterable[TrackRouteIngestParam],
1530
1533
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1531
1534
  # The extra values given here take precedence over values defined on the client or passed to this method.
1532
1535
  extra_headers: Headers | None = None,
@@ -1553,7 +1556,7 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1553
1556
  extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1554
1557
  return await self._post(
1555
1558
  "/udl/trackroute/createBulk",
1556
- body=await async_maybe_transform(body, Iterable[track_route_create_bulk_params.Body]),
1559
+ body=await async_maybe_transform(body, Iterable[TrackRouteIngestParam]),
1557
1560
  options=make_request_options(
1558
1561
  extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1559
1562
  ),
@@ -1698,7 +1701,7 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1698
1701
  source: str,
1699
1702
  type: str,
1700
1703
  id: str | NotGiven = NOT_GIVEN,
1701
- altitude_blocks: Iterable[track_route_unvalidated_publish_params.AltitudeBlock] | NotGiven = NOT_GIVEN,
1704
+ altitude_blocks: Iterable[AltitudeBlocksIngestParam] | NotGiven = NOT_GIVEN,
1702
1705
  apn_setting: str | NotGiven = NOT_GIVEN,
1703
1706
  apx_beacon_code: str | NotGiven = NOT_GIVEN,
1704
1707
  artcc_message: str | NotGiven = NOT_GIVEN,
@@ -1709,13 +1712,13 @@ class AsyncTrackRouteResource(AsyncAPIResource):
1709
1712
  last_used_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1710
1713
  location_track_id: str | NotGiven = NOT_GIVEN,
1711
1714
  origin: str | NotGiven = NOT_GIVEN,
1712
- poc: Iterable[track_route_unvalidated_publish_params.Poc] | NotGiven = NOT_GIVEN,
1715
+ poc: Iterable[PointOfContactIngestParam] | NotGiven = NOT_GIVEN,
1713
1716
  pri_freq: float | NotGiven = NOT_GIVEN,
1714
1717
  receiver_tanker_ch_code: str | NotGiven = NOT_GIVEN,
1715
1718
  region_code: str | NotGiven = NOT_GIVEN,
1716
1719
  region_name: str | NotGiven = NOT_GIVEN,
1717
1720
  review_date: Union[str, datetime] | NotGiven = NOT_GIVEN,
1718
- route_points: Iterable[track_route_unvalidated_publish_params.RoutePoint] | NotGiven = NOT_GIVEN,
1721
+ route_points: Iterable[RoutePointsIngestParam] | NotGiven = NOT_GIVEN,
1719
1722
  scheduler_org_name: str | NotGiven = NOT_GIVEN,
1720
1723
  scheduler_org_unit: str | NotGiven = NOT_GIVEN,
1721
1724
  sec_freq: float | NotGiven = NOT_GIVEN,