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
@@ -7,19 +7,17 @@ from datetime import datetime
7
7
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .logistics_remarks_ingest_param import LogisticsRemarksIngestParam
10
11
 
11
12
  __all__ = [
12
13
  "LogisticsSupportCreateParams",
13
14
  "LogisticsDiscrepancyInfo",
14
- "LogisticsRemark",
15
15
  "LogisticsSupportItem",
16
16
  "LogisticsSupportItemLogisticsPart",
17
17
  "LogisticsSupportItemLogisticsPartLogisticsStock",
18
- "LogisticsSupportItemLogisticsRemark",
19
18
  "LogisticsSupportItemLogisticsSpecialty",
20
19
  "LogisticsTransportationPlan",
21
20
  "LogisticsTransportationPlanLogisticsSegment",
22
- "LogisticsTransportationPlanLogisticsTransportationPlansRemark",
23
21
  ]
24
22
 
25
23
 
@@ -107,7 +105,7 @@ class LogisticsSupportCreateParams(TypedDict, total=False):
107
105
  logistics_record_id: Annotated[str, PropertyInfo(alias="logisticsRecordId")]
108
106
  """The identifier that represents a Logistics Master Record."""
109
107
 
110
- logistics_remarks: Annotated[Iterable[LogisticsRemark], PropertyInfo(alias="logisticsRemarks")]
108
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
111
109
  """Remarks associated with this LogisticsSupport record."""
112
110
 
113
111
  logistics_support_items: Annotated[Iterable[LogisticsSupportItem], PropertyInfo(alias="logisticsSupportItems")]
@@ -189,20 +187,6 @@ class LogisticsDiscrepancyInfo(TypedDict, total=False):
189
187
  """The job start time, in ISO 8601 UTC format with millisecond precision."""
190
188
 
191
189
 
192
- class LogisticsRemark(TypedDict, total=False):
193
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
194
- """
195
- Date the remark was published or updated, in ISO 8601 UTC format, with
196
- millisecond precision.
197
- """
198
-
199
- remark: str
200
- """Text of the remark."""
201
-
202
- username: str
203
- """User who published the remark."""
204
-
205
-
206
190
  class LogisticsSupportItemLogisticsPartLogisticsStock(TypedDict, total=False):
207
191
  quantity: int
208
192
  """The quantity of available parts needed from sourceICAO."""
@@ -263,20 +247,6 @@ class LogisticsSupportItemLogisticsPart(TypedDict, total=False):
263
247
  """Work Unit Code (WUC), or for some aircraft types, the Reference Designator."""
264
248
 
265
249
 
266
- class LogisticsSupportItemLogisticsRemark(TypedDict, total=False):
267
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
268
- """
269
- Date the remark was published or updated, in ISO 8601 UTC format, with
270
- millisecond precision.
271
- """
272
-
273
- remark: str
274
- """Text of the remark."""
275
-
276
- username: str
277
- """User who published the remark."""
278
-
279
-
280
250
  class LogisticsSupportItemLogisticsSpecialty(TypedDict, total=False):
281
251
  first_name: Annotated[str, PropertyInfo(alias="firstName")]
282
252
  """The first name of the specialist."""
@@ -344,7 +314,7 @@ class LogisticsSupportItem(TypedDict, total=False):
344
314
  logistics_parts: Annotated[Iterable[LogisticsSupportItemLogisticsPart], PropertyInfo(alias="logisticsParts")]
345
315
  """The parts associated with this support item."""
346
316
 
347
- logistics_remarks: Annotated[Iterable[LogisticsSupportItemLogisticsRemark], PropertyInfo(alias="logisticsRemarks")]
317
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
348
318
  """Remarks associated with this support item."""
349
319
 
350
320
  logistics_specialties: Annotated[
@@ -488,20 +458,6 @@ class LogisticsTransportationPlanLogisticsSegment(TypedDict, total=False):
488
458
  """The identifier that represents a specific aircraft within an aircraft type."""
489
459
 
490
460
 
491
- class LogisticsTransportationPlanLogisticsTransportationPlansRemark(TypedDict, total=False):
492
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
493
- """
494
- Date the remark was published or updated, in ISO 8601 UTC format, with
495
- millisecond precision.
496
- """
497
-
498
- remark: str
499
- """Text of the remark."""
500
-
501
- username: str
502
- """User who published the remark."""
503
-
504
-
505
461
  class LogisticsTransportationPlan(TypedDict, total=False):
506
462
  act_dep_time: Annotated[Union[str, datetime], PropertyInfo(alias="actDepTime", format="iso8601")]
507
463
  """
@@ -574,8 +530,7 @@ class LogisticsTransportationPlan(TypedDict, total=False):
574
530
  """The transportation segments associated with this transportation plan."""
575
531
 
576
532
  logistics_transportation_plans_remarks: Annotated[
577
- Iterable[LogisticsTransportationPlanLogisticsTransportationPlansRemark],
578
- PropertyInfo(alias="logisticsTransportationPlansRemarks"),
533
+ Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsTransportationPlansRemarks")
579
534
  ]
580
535
  """Remarks associated with this transportation plan."""
581
536
 
@@ -7,20 +7,18 @@ from datetime import datetime
7
7
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .logistics_remarks_ingest_param import LogisticsRemarksIngestParam
10
11
 
11
12
  __all__ = [
12
13
  "LogisticsSupportUnvalidatedPublishParams",
13
14
  "Body",
14
15
  "BodyLogisticsDiscrepancyInfo",
15
- "BodyLogisticsRemark",
16
16
  "BodyLogisticsSupportItem",
17
17
  "BodyLogisticsSupportItemLogisticsPart",
18
18
  "BodyLogisticsSupportItemLogisticsPartLogisticsStock",
19
- "BodyLogisticsSupportItemLogisticsRemark",
20
19
  "BodyLogisticsSupportItemLogisticsSpecialty",
21
20
  "BodyLogisticsTransportationPlan",
22
21
  "BodyLogisticsTransportationPlanLogisticsSegment",
23
- "BodyLogisticsTransportationPlanLogisticsTransportationPlansRemark",
24
22
  ]
25
23
 
26
24
 
@@ -44,20 +42,6 @@ class BodyLogisticsDiscrepancyInfo(TypedDict, total=False):
44
42
  """The job start time, in ISO 8601 UTC format with millisecond precision."""
45
43
 
46
44
 
47
- class BodyLogisticsRemark(TypedDict, total=False):
48
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
49
- """
50
- Date the remark was published or updated, in ISO 8601 UTC format, with
51
- millisecond precision.
52
- """
53
-
54
- remark: str
55
- """Text of the remark."""
56
-
57
- username: str
58
- """User who published the remark."""
59
-
60
-
61
45
  class BodyLogisticsSupportItemLogisticsPartLogisticsStock(TypedDict, total=False):
62
46
  quantity: int
63
47
  """The quantity of available parts needed from sourceICAO."""
@@ -118,20 +102,6 @@ class BodyLogisticsSupportItemLogisticsPart(TypedDict, total=False):
118
102
  """Work Unit Code (WUC), or for some aircraft types, the Reference Designator."""
119
103
 
120
104
 
121
- class BodyLogisticsSupportItemLogisticsRemark(TypedDict, total=False):
122
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
123
- """
124
- Date the remark was published or updated, in ISO 8601 UTC format, with
125
- millisecond precision.
126
- """
127
-
128
- remark: str
129
- """Text of the remark."""
130
-
131
- username: str
132
- """User who published the remark."""
133
-
134
-
135
105
  class BodyLogisticsSupportItemLogisticsSpecialty(TypedDict, total=False):
136
106
  first_name: Annotated[str, PropertyInfo(alias="firstName")]
137
107
  """The first name of the specialist."""
@@ -199,9 +169,7 @@ class BodyLogisticsSupportItem(TypedDict, total=False):
199
169
  logistics_parts: Annotated[Iterable[BodyLogisticsSupportItemLogisticsPart], PropertyInfo(alias="logisticsParts")]
200
170
  """The parts associated with this support item."""
201
171
 
202
- logistics_remarks: Annotated[
203
- Iterable[BodyLogisticsSupportItemLogisticsRemark], PropertyInfo(alias="logisticsRemarks")
204
- ]
172
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
205
173
  """Remarks associated with this support item."""
206
174
 
207
175
  logistics_specialties: Annotated[
@@ -345,20 +313,6 @@ class BodyLogisticsTransportationPlanLogisticsSegment(TypedDict, total=False):
345
313
  """The identifier that represents a specific aircraft within an aircraft type."""
346
314
 
347
315
 
348
- class BodyLogisticsTransportationPlanLogisticsTransportationPlansRemark(TypedDict, total=False):
349
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
350
- """
351
- Date the remark was published or updated, in ISO 8601 UTC format, with
352
- millisecond precision.
353
- """
354
-
355
- remark: str
356
- """Text of the remark."""
357
-
358
- username: str
359
- """User who published the remark."""
360
-
361
-
362
316
  class BodyLogisticsTransportationPlan(TypedDict, total=False):
363
317
  act_dep_time: Annotated[Union[str, datetime], PropertyInfo(alias="actDepTime", format="iso8601")]
364
318
  """
@@ -431,8 +385,7 @@ class BodyLogisticsTransportationPlan(TypedDict, total=False):
431
385
  """The transportation segments associated with this transportation plan."""
432
386
 
433
387
  logistics_transportation_plans_remarks: Annotated[
434
- Iterable[BodyLogisticsTransportationPlanLogisticsTransportationPlansRemark],
435
- PropertyInfo(alias="logisticsTransportationPlansRemarks"),
388
+ Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsTransportationPlansRemarks")
436
389
  ]
437
390
  """Remarks associated with this transportation plan."""
438
391
 
@@ -571,7 +524,7 @@ class Body(TypedDict, total=False):
571
524
  logistics_record_id: Annotated[str, PropertyInfo(alias="logisticsRecordId")]
572
525
  """The identifier that represents a Logistics Master Record."""
573
526
 
574
- logistics_remarks: Annotated[Iterable[BodyLogisticsRemark], PropertyInfo(alias="logisticsRemarks")]
527
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
575
528
  """Remarks associated with this LogisticsSupport record."""
576
529
 
577
530
  logistics_support_items: Annotated[Iterable[BodyLogisticsSupportItem], PropertyInfo(alias="logisticsSupportItems")]
@@ -7,19 +7,17 @@ from datetime import datetime
7
7
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .logistics_remarks_ingest_param import LogisticsRemarksIngestParam
10
11
 
11
12
  __all__ = [
12
13
  "LogisticsSupportUpdateParams",
13
14
  "LogisticsDiscrepancyInfo",
14
- "LogisticsRemark",
15
15
  "LogisticsSupportItem",
16
16
  "LogisticsSupportItemLogisticsPart",
17
17
  "LogisticsSupportItemLogisticsPartLogisticsStock",
18
- "LogisticsSupportItemLogisticsRemark",
19
18
  "LogisticsSupportItemLogisticsSpecialty",
20
19
  "LogisticsTransportationPlan",
21
20
  "LogisticsTransportationPlanLogisticsSegment",
22
- "LogisticsTransportationPlanLogisticsTransportationPlansRemark",
23
21
  ]
24
22
 
25
23
 
@@ -107,7 +105,7 @@ class LogisticsSupportUpdateParams(TypedDict, total=False):
107
105
  logistics_record_id: Annotated[str, PropertyInfo(alias="logisticsRecordId")]
108
106
  """The identifier that represents a Logistics Master Record."""
109
107
 
110
- logistics_remarks: Annotated[Iterable[LogisticsRemark], PropertyInfo(alias="logisticsRemarks")]
108
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
111
109
  """Remarks associated with this LogisticsSupport record."""
112
110
 
113
111
  logistics_support_items: Annotated[Iterable[LogisticsSupportItem], PropertyInfo(alias="logisticsSupportItems")]
@@ -189,20 +187,6 @@ class LogisticsDiscrepancyInfo(TypedDict, total=False):
189
187
  """The job start time, in ISO 8601 UTC format with millisecond precision."""
190
188
 
191
189
 
192
- class LogisticsRemark(TypedDict, total=False):
193
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
194
- """
195
- Date the remark was published or updated, in ISO 8601 UTC format, with
196
- millisecond precision.
197
- """
198
-
199
- remark: str
200
- """Text of the remark."""
201
-
202
- username: str
203
- """User who published the remark."""
204
-
205
-
206
190
  class LogisticsSupportItemLogisticsPartLogisticsStock(TypedDict, total=False):
207
191
  quantity: int
208
192
  """The quantity of available parts needed from sourceICAO."""
@@ -263,20 +247,6 @@ class LogisticsSupportItemLogisticsPart(TypedDict, total=False):
263
247
  """Work Unit Code (WUC), or for some aircraft types, the Reference Designator."""
264
248
 
265
249
 
266
- class LogisticsSupportItemLogisticsRemark(TypedDict, total=False):
267
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
268
- """
269
- Date the remark was published or updated, in ISO 8601 UTC format, with
270
- millisecond precision.
271
- """
272
-
273
- remark: str
274
- """Text of the remark."""
275
-
276
- username: str
277
- """User who published the remark."""
278
-
279
-
280
250
  class LogisticsSupportItemLogisticsSpecialty(TypedDict, total=False):
281
251
  first_name: Annotated[str, PropertyInfo(alias="firstName")]
282
252
  """The first name of the specialist."""
@@ -344,7 +314,7 @@ class LogisticsSupportItem(TypedDict, total=False):
344
314
  logistics_parts: Annotated[Iterable[LogisticsSupportItemLogisticsPart], PropertyInfo(alias="logisticsParts")]
345
315
  """The parts associated with this support item."""
346
316
 
347
- logistics_remarks: Annotated[Iterable[LogisticsSupportItemLogisticsRemark], PropertyInfo(alias="logisticsRemarks")]
317
+ logistics_remarks: Annotated[Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsRemarks")]
348
318
  """Remarks associated with this support item."""
349
319
 
350
320
  logistics_specialties: Annotated[
@@ -488,20 +458,6 @@ class LogisticsTransportationPlanLogisticsSegment(TypedDict, total=False):
488
458
  """The identifier that represents a specific aircraft within an aircraft type."""
489
459
 
490
460
 
491
- class LogisticsTransportationPlanLogisticsTransportationPlansRemark(TypedDict, total=False):
492
- last_changed: Annotated[Union[str, datetime], PropertyInfo(alias="lastChanged", format="iso8601")]
493
- """
494
- Date the remark was published or updated, in ISO 8601 UTC format, with
495
- millisecond precision.
496
- """
497
-
498
- remark: str
499
- """Text of the remark."""
500
-
501
- username: str
502
- """User who published the remark."""
503
-
504
-
505
461
  class LogisticsTransportationPlan(TypedDict, total=False):
506
462
  act_dep_time: Annotated[Union[str, datetime], PropertyInfo(alias="actDepTime", format="iso8601")]
507
463
  """
@@ -574,8 +530,7 @@ class LogisticsTransportationPlan(TypedDict, total=False):
574
530
  """The transportation segments associated with this transportation plan."""
575
531
 
576
532
  logistics_transportation_plans_remarks: Annotated[
577
- Iterable[LogisticsTransportationPlanLogisticsTransportationPlansRemark],
578
- PropertyInfo(alias="logisticsTransportationPlansRemarks"),
533
+ Iterable[LogisticsRemarksIngestParam], PropertyInfo(alias="logisticsTransportationPlansRemarks")
579
534
  ]
580
535
  """Remarks associated with this transportation plan."""
581
536
 
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.antenna_ingest import AntennaIngest
8
9
 
9
- __all__ = ["OnorbitantennaCreateParams", "Antenna"]
10
+ __all__ = ["OnorbitantennaCreateParams"]
10
11
 
11
12
 
12
13
  class OnorbitantennaCreateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitantennaCreateParams(TypedDict, total=False):
42
43
  id: str
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- antenna: Antenna
46
+ antenna: AntennaIngest
46
47
  """
47
48
  Model representation of information on on-orbit/spacecraft communication
48
49
  antennas. A spacecraft may have multiple antennas and each antenna can have
@@ -56,39 +57,3 @@ class OnorbitantennaCreateParams(TypedDict, total=False):
56
57
  mediating system which forwarded the data on behalf of the origin system. If
57
58
  null, the source may be assumed to be the origin.
58
59
  """
59
-
60
-
61
- class Antenna(TypedDict, total=False):
62
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
63
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
64
-
65
- EXERCISE: Data pertaining to a government or military exercise. The data
66
- may include both real and simulated data.
67
-
68
- REAL: Data collected or produced that pertains to real-world objects,
69
- events, and analysis.
70
-
71
- SIMULATED: Synthetic data generated by a model to mimic real-world
72
- datasets.
73
-
74
- TEST: Specific datasets used to evaluate compliance with specifications and
75
- requirements, and for validating technical, functional, and performance
76
- characteristics.
77
- """
78
-
79
- name: Required[str]
80
- """Antenna name."""
81
-
82
- source: Required[str]
83
- """Source of the data."""
84
-
85
- id: str
86
- """Unique identifier of the record, auto-generated by the system."""
87
-
88
- origin: str
89
- """
90
- Originating system or organization which produced the data, if different from
91
- the source. The origin may be different than the source if the source was a
92
- mediating system which forwarded the data on behalf of the origin system. If
93
- null, the source may be assumed to be the origin.
94
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.antenna_ingest import AntennaIngest
8
9
 
9
- __all__ = ["OnorbitantennaUpdateParams", "Antenna"]
10
+ __all__ = ["OnorbitantennaUpdateParams"]
10
11
 
11
12
 
12
13
  class OnorbitantennaUpdateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitantennaUpdateParams(TypedDict, total=False):
42
43
  body_id: Annotated[str, PropertyInfo(alias="id")]
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- antenna: Antenna
46
+ antenna: AntennaIngest
46
47
  """
47
48
  Model representation of information on on-orbit/spacecraft communication
48
49
  antennas. A spacecraft may have multiple antennas and each antenna can have
@@ -56,39 +57,3 @@ class OnorbitantennaUpdateParams(TypedDict, total=False):
56
57
  mediating system which forwarded the data on behalf of the origin system. If
57
58
  null, the source may be assumed to be the origin.
58
59
  """
59
-
60
-
61
- class Antenna(TypedDict, total=False):
62
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
63
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
64
-
65
- EXERCISE: Data pertaining to a government or military exercise. The data
66
- may include both real and simulated data.
67
-
68
- REAL: Data collected or produced that pertains to real-world objects,
69
- events, and analysis.
70
-
71
- SIMULATED: Synthetic data generated by a model to mimic real-world
72
- datasets.
73
-
74
- TEST: Specific datasets used to evaluate compliance with specifications and
75
- requirements, and for validating technical, functional, and performance
76
- characteristics.
77
- """
78
-
79
- name: Required[str]
80
- """Antenna name."""
81
-
82
- source: Required[str]
83
- """Source of the data."""
84
-
85
- id: str
86
- """Unique identifier of the record, auto-generated by the system."""
87
-
88
- origin: str
89
- """
90
- Originating system or organization which produced the data, if different from
91
- the source. The origin may be different than the source if the source was a
92
- mediating system which forwarded the data on behalf of the origin system. If
93
- null, the source may be assumed to be the origin.
94
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.battery_ingest import BatteryIngest
8
9
 
9
- __all__ = ["OnorbitbatteryCreateParams", "Battery"]
10
+ __all__ = ["OnorbitbatteryCreateParams"]
10
11
 
11
12
 
12
13
  class OnorbitbatteryCreateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitbatteryCreateParams(TypedDict, total=False):
42
43
  id: str
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- battery: Battery
46
+ battery: BatteryIngest
46
47
  """Model representation of specific spacecraft battery types."""
47
48
 
48
49
  origin: str
@@ -55,39 +56,3 @@ class OnorbitbatteryCreateParams(TypedDict, total=False):
55
56
 
56
57
  quantity: int
57
58
  """The number of batteries on the spacecraft of the type identified by idBattery."""
58
-
59
-
60
- class Battery(TypedDict, total=False):
61
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
62
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
63
-
64
- EXERCISE: Data pertaining to a government or military exercise. The data
65
- may include both real and simulated data.
66
-
67
- REAL: Data collected or produced that pertains to real-world objects,
68
- events, and analysis.
69
-
70
- SIMULATED: Synthetic data generated by a model to mimic real-world
71
- datasets.
72
-
73
- TEST: Specific datasets used to evaluate compliance with specifications and
74
- requirements, and for validating technical, functional, and performance
75
- characteristics.
76
- """
77
-
78
- name: Required[str]
79
- """Battery name."""
80
-
81
- source: Required[str]
82
- """Source of the data."""
83
-
84
- id: str
85
- """Unique identifier of the record, auto-generated by the system."""
86
-
87
- origin: str
88
- """
89
- Originating system or organization which produced the data, if different from
90
- the source. The origin may be different than the source if the source was a
91
- mediating system which forwarded the data on behalf of the origin system. If
92
- null, the source may be assumed to be the origin.
93
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.battery_ingest import BatteryIngest
8
9
 
9
- __all__ = ["OnorbitbatteryUpdateParams", "Battery"]
10
+ __all__ = ["OnorbitbatteryUpdateParams"]
10
11
 
11
12
 
12
13
  class OnorbitbatteryUpdateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitbatteryUpdateParams(TypedDict, total=False):
42
43
  body_id: Annotated[str, PropertyInfo(alias="id")]
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- battery: Battery
46
+ battery: BatteryIngest
46
47
  """Model representation of specific spacecraft battery types."""
47
48
 
48
49
  origin: str
@@ -55,39 +56,3 @@ class OnorbitbatteryUpdateParams(TypedDict, total=False):
55
56
 
56
57
  quantity: int
57
58
  """The number of batteries on the spacecraft of the type identified by idBattery."""
58
-
59
-
60
- class Battery(TypedDict, total=False):
61
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
62
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
63
-
64
- EXERCISE: Data pertaining to a government or military exercise. The data
65
- may include both real and simulated data.
66
-
67
- REAL: Data collected or produced that pertains to real-world objects,
68
- events, and analysis.
69
-
70
- SIMULATED: Synthetic data generated by a model to mimic real-world
71
- datasets.
72
-
73
- TEST: Specific datasets used to evaluate compliance with specifications and
74
- requirements, and for validating technical, functional, and performance
75
- characteristics.
76
- """
77
-
78
- name: Required[str]
79
- """Battery name."""
80
-
81
- source: Required[str]
82
- """Source of the data."""
83
-
84
- id: str
85
- """Unique identifier of the record, auto-generated by the system."""
86
-
87
- origin: str
88
- """
89
- Originating system or organization which produced the data, if different from
90
- the source. The origin may be different than the source if the source was a
91
- mediating system which forwarded the data on behalf of the origin system. If
92
- null, the source may be assumed to be the origin.
93
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.solar_array_ingest import SolarArrayIngest
8
9
 
9
- __all__ = ["OnorbitsolararrayCreateParams", "SolarArray"]
10
+ __all__ = ["OnorbitsolararrayCreateParams"]
10
11
 
11
12
 
12
13
  class OnorbitsolararrayCreateParams(TypedDict, total=False):
@@ -56,45 +57,9 @@ class OnorbitsolararrayCreateParams(TypedDict, total=False):
56
57
  idSolarArray.
57
58
  """
58
59
 
59
- solar_array: Annotated[SolarArray, PropertyInfo(alias="solarArray")]
60
+ solar_array: Annotated[SolarArrayIngest, PropertyInfo(alias="solarArray")]
60
61
  """Model representation of information on on-orbit/spacecraft solar arrays.
61
62
 
62
63
  A spacecraft may have multiple solar arrays and each solar array can have
63
64
  multiple 'details' records compiled by different sources.
64
65
  """
65
-
66
-
67
- class SolarArray(TypedDict, total=False):
68
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
69
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
70
-
71
- EXERCISE: Data pertaining to a government or military exercise. The data
72
- may include both real and simulated data.
73
-
74
- REAL: Data collected or produced that pertains to real-world objects,
75
- events, and analysis.
76
-
77
- SIMULATED: Synthetic data generated by a model to mimic real-world
78
- datasets.
79
-
80
- TEST: Specific datasets used to evaluate compliance with specifications and
81
- requirements, and for validating technical, functional, and performance
82
- characteristics.
83
- """
84
-
85
- name: Required[str]
86
- """Solar Array name."""
87
-
88
- source: Required[str]
89
- """Source of the data."""
90
-
91
- id: str
92
- """Unique identifier of the record, auto-generated by the system."""
93
-
94
- origin: str
95
- """
96
- Originating system or organization which produced the data, if different from
97
- the source. The origin may be different than the source if the source was a
98
- mediating system which forwarded the data on behalf of the origin system. If
99
- null, the source may be assumed to be the origin.
100
- """