redrover-api 1.9.1.dev0__tar.gz → 1.9.3.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (241) hide show
  1. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/PKG-INFO +2 -2
  2. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/README.md +74 -58
  3. redrover-api-1.9.3.dev0/pyproject.toml +30 -0
  4. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/__init__.py +32 -29
  5. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/__init__.py +3 -1
  6. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/absence_api.py +8 -8
  7. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/absence_reason_api.py +3 -3
  8. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/absence_reason_balance_api.py +6 -6
  9. redrover-api-1.9.1.dev0/redrover_api/api/vacancy_api.py → redrover-api-1.9.3.dev0/redrover_api/api/assignment_api.py +27 -71
  10. redrover-api-1.9.1.dev0/redrover_api/api/reference_data_api.py → redrover-api-1.9.3.dev0/redrover_api/api/attribute_api.py +45 -45
  11. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/connection_api.py +9 -9
  12. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/organization_api.py +37 -37
  13. redrover-api-1.9.3.dev0/redrover_api/api/pay_code_api.py +661 -0
  14. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/user_api.py +391 -292
  15. redrover-api-1.9.3.dev0/redrover_api/api/vacancy_api.py +578 -0
  16. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api/webhooks_api.py +3 -3
  17. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/api_client.py +2 -2
  18. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/configuration.py +9 -2
  19. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/exceptions.py +1 -1
  20. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/__init__.py +28 -27
  21. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_create_request.py +56 -20
  22. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_detail_create_request.py +4 -12
  23. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_detail_response.py +4 -12
  24. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_balance_create_request.py +86 -93
  25. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_balance_response.py +4 -12
  26. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_balance_update_request.py +4 -12
  27. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_category_response.py +1 -1
  28. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_response.py +1 -1
  29. redrover-api-1.9.1.dev0/redrover_api/models/runtime_field_handle.py → redrover-api-1.9.3.dev0/redrover_api/models/absence_reason_tracking_type_enum.py +16 -34
  30. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_usage_create_request.py +59 -59
  31. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_reason_usage_response.py +1 -1
  32. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_response.py +31 -4
  33. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/absence_update_request.py +40 -4
  34. redrover-api-1.9.3.dev0/redrover_api/models/absence_vacancy_detail_request.py +338 -0
  35. redrover-api-1.9.3.dev0/redrover_api/models/absence_vacancy_request.py +320 -0
  36. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/access_control_request.py +1 -1
  37. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/access_control_response.py +1 -1
  38. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/accounting_code_allocation_request.py +1 -1
  39. redrover-api-1.9.1.dev0/redrover_api/models/accounting_code_allocation.py → redrover-api-1.9.3.dev0/redrover_api/models/accounting_code_allocation_response.py +16 -16
  40. redrover-api-1.9.1.dev0/redrover_api/models/accounting_code.py → redrover-api-1.9.3.dev0/redrover_api/models/accounting_code_response.py +17 -17
  41. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/administrator_request.py +128 -142
  42. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/administrator_response.py +109 -83
  43. redrover-api-1.9.3.dev0/redrover_api/models/approval_status_enum.py +107 -0
  44. redrover-api-1.9.3.dev0/redrover_api/models/assignment_response.py +361 -0
  45. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/attribute_request.py +1 -1
  46. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/attribute_response.py +1 -1
  47. redrover-api-1.9.3.dev0/redrover_api/models/authentication_properties.py +271 -0
  48. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/bad_request_result.py +1 -1
  49. redrover-api-1.9.1.dev0/redrover_api/models/simple_position_type.py → redrover-api-1.9.3.dev0/redrover_api/models/contract_response.py +36 -36
  50. redrover-api-1.9.3.dev0/redrover_api/models/country_enum.py +337 -0
  51. redrover-api-1.9.1.dev0/redrover_api/models/runtime_method_handle.py → redrover-api-1.9.3.dev0/redrover_api/models/day_of_week.py +19 -34
  52. redrover-api-1.9.3.dev0/redrover_api/models/day_part_enum.py +109 -0
  53. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/employee_request.py +209 -249
  54. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/employee_response.py +69 -16
  55. redrover-api-1.9.1.dev0/redrover_api/models/runtime_type_handle.py → redrover-api-1.9.3.dev0/redrover_api/models/file_format.py +14 -34
  56. redrover-api-1.9.3.dev0/redrover_api/models/fill_status_enum.py +104 -0
  57. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/forbid_result.py +1 -1
  58. redrover-api-1.9.1.dev0/redrover_api/models/simple_location.py → redrover-api-1.9.3.dev0/redrover_api/models/int32_id_name_class.py +41 -47
  59. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/int32_locator_request.py +1 -1
  60. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/int32_locator_response.py +1 -1
  61. redrover-api-1.9.3.dev0/redrover_api/models/needs_replacement_enum.py +102 -0
  62. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/not_found_result.py +1 -1
  63. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/ok_object_result.py +5 -6
  64. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/ok_result.py +1 -1
  65. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/org_user_employee_response.py +1 -1
  66. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/organization_response.py +1 -1
  67. redrover-api-1.9.3.dev0/redrover_api/models/pay_code_create_request.py +363 -0
  68. redrover-api-1.9.3.dev0/redrover_api/models/pay_code_response.py +334 -0
  69. redrover-api-1.9.3.dev0/redrover_api/models/pay_code_update_request.py +363 -0
  70. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/position_job_request.py +1 -1
  71. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/position_request.py +9 -24
  72. redrover-api-1.9.3.dev0/redrover_api/models/position_response.py +378 -0
  73. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/position_schedule_custom_variant_request.py +31 -26
  74. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/position_schedule_item_request.py +1 -1
  75. redrover-api-1.9.1.dev0/redrover_api/models/authentication_properties.py → redrover-api-1.9.3.dev0/redrover_api/models/position_schedule_mode_enum.py +16 -33
  76. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/position_schedule_request.py +4 -12
  77. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/reason.py +2 -30
  78. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/school_year_response.py +1 -1
  79. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/simple_absence_detail.py +30 -2
  80. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/simple_person.py +18 -18
  81. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/simple_position.py +87 -57
  82. redrover-api-1.9.1.dev0/redrover_api/models/custom_attribute_typed_argument.py → redrover-api-1.9.3.dev0/redrover_api/models/state_enum.py +85 -59
  83. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_attribute_request.py +1 -1
  84. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_attribute_response.py +1 -1
  85. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_preferences_request.py +1 -1
  86. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_related_org_request.py +1 -1
  87. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_request.py +182 -196
  88. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/substitute_response.py +84 -58
  89. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/time_off_balance_request.py +6 -13
  90. redrover-api-1.9.3.dev0/redrover_api/models/user_roles.py +102 -0
  91. redrover-api-1.9.1.dev0/redrover_api/models/struct_layout_attribute.py → redrover-api-1.9.3.dev0/redrover_api/models/vacancy_accounting_code_allocation_request.py +42 -43
  92. redrover-api-1.9.3.dev0/redrover_api/models/vacancy_create_request.py +429 -0
  93. redrover-api-1.9.3.dev0/redrover_api/models/vacancy_detail_create_request.py +338 -0
  94. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/vacancy_detail_response.py +145 -229
  95. redrover-api-1.9.3.dev0/redrover_api/models/vacancy_detail_search_response.py +825 -0
  96. redrover-api-1.9.3.dev0/redrover_api/models/vacancy_response.py +521 -0
  97. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/webhook_create_request.py +37 -4
  98. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/webhook_response.py +1 -1
  99. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/models/webhook_update_request.py +1 -1
  100. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api/rest.py +1 -1
  101. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api.egg-info/PKG-INFO +2 -2
  102. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api.egg-info/SOURCES.txt +61 -54
  103. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/setup.py +3 -3
  104. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_api.py +1 -1
  105. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_create_request.py +46 -8
  106. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_detail_create_request.py +9 -9
  107. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_detail_response.py +2 -2
  108. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_api.py +1 -1
  109. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_balance_api.py +1 -1
  110. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_balance_create_request.py +12 -9
  111. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_balance_response.py +1 -1
  112. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_balance_update_request.py +1 -1
  113. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_category_response.py +1 -1
  114. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_response.py +1 -1
  115. redrover-api-1.9.3.dev0/test/test_absence_reason_tracking_type_enum.py +52 -0
  116. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_usage_create_request.py +4 -4
  117. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_reason_usage_response.py +1 -1
  118. redrover-api-1.9.3.dev0/test/test_absence_response.py +169 -0
  119. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_absence_update_request.py +46 -8
  120. redrover-api-1.9.3.dev0/test/test_absence_vacancy_detail_request.py +73 -0
  121. redrover-api-1.9.3.dev0/test/test_absence_vacancy_request.py +87 -0
  122. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_access_control_request.py +4 -4
  123. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_access_control_response.py +1 -1
  124. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_accounting_code_allocation_request.py +1 -1
  125. redrover-api-1.9.1.dev0/test/test_accounting_code_allocation.py → redrover-api-1.9.3.dev0/test/test_accounting_code_allocation_response.py +10 -10
  126. redrover-api-1.9.1.dev0/test/test_simple_location.py → redrover-api-1.9.3.dev0/test/test_accounting_code_response.py +11 -11
  127. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_administrator_request.py +29 -29
  128. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_administrator_response.py +20 -19
  129. redrover-api-1.9.3.dev0/test/test_approval_status_enum.py +52 -0
  130. redrover-api-1.9.3.dev0/test/test_assignment_api.py +41 -0
  131. redrover-api-1.9.3.dev0/test/test_assignment_response.py +150 -0
  132. redrover-api-1.9.1.dev0/test/test_reference_data_api.py → redrover-api-1.9.3.dev0/test/test_attribute_api.py +11 -11
  133. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_attribute_request.py +1 -1
  134. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_attribute_response.py +1 -1
  135. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_authentication_properties.py +10 -2
  136. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_bad_request_result.py +1 -1
  137. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_connection_api.py +1 -1
  138. redrover-api-1.9.1.dev0/test/test_simple_position_type.py → redrover-api-1.9.3.dev0/test/test_contract_response.py +11 -11
  139. redrover-api-1.9.1.dev0/test/test_pay_code.py → redrover-api-1.9.3.dev0/test/test_country_enum.py +10 -13
  140. redrover-api-1.9.3.dev0/test/test_day_of_week.py +52 -0
  141. redrover-api-1.9.3.dev0/test/test_day_part_enum.py +52 -0
  142. redrover-api-1.9.3.dev0/test/test_employee_request.py +217 -0
  143. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_employee_response.py +22 -4
  144. redrover-api-1.9.1.dev0/test/test_accounting_code.py → redrover-api-1.9.3.dev0/test/test_file_format.py +10 -13
  145. redrover-api-1.9.3.dev0/test/test_fill_status_enum.py +52 -0
  146. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_forbid_result.py +10 -2
  147. redrover-api-1.9.3.dev0/test/test_int32_id_name_class.py +55 -0
  148. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_int32_locator_request.py +1 -1
  149. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_int32_locator_response.py +1 -1
  150. redrover-api-1.9.3.dev0/test/test_needs_replacement_enum.py +52 -0
  151. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_not_found_result.py +1 -1
  152. redrover-api-1.9.3.dev0/test/test_ok_object_result.py +61 -0
  153. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_ok_result.py +1 -1
  154. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_org_user_employee_response.py +1 -1
  155. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_organization_api.py +5 -5
  156. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_organization_response.py +1 -1
  157. redrover-api-1.9.3.dev0/test/test_pay_code_api.py +69 -0
  158. redrover-api-1.9.3.dev0/test/test_pay_code_create_request.py +66 -0
  159. redrover-api-1.9.3.dev0/test/test_pay_code_response.py +61 -0
  160. redrover-api-1.9.3.dev0/test/test_pay_code_update_request.py +66 -0
  161. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_position_job_request.py +3 -3
  162. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_position_request.py +44 -144
  163. redrover-api-1.9.3.dev0/test/test_position_response.py +66 -0
  164. redrover-api-1.9.3.dev0/test/test_position_schedule_custom_variant_request.py +64 -0
  165. redrover-api-1.9.3.dev0/test/test_position_schedule_item_request.py +111 -0
  166. redrover-api-1.9.3.dev0/test/test_position_schedule_mode_enum.py +52 -0
  167. redrover-api-1.9.3.dev0/test/test_position_schedule_request.py +164 -0
  168. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_reason.py +1 -2
  169. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_school_year_response.py +1 -1
  170. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_simple_absence_detail.py +7 -4
  171. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_simple_person.py +5 -2
  172. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_simple_position.py +7 -6
  173. redrover-api-1.9.1.dev0/test/test_module_handle.py → redrover-api-1.9.3.dev0/test/test_state_enum.py +10 -11
  174. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_attribute_request.py +2 -2
  175. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_attribute_response.py +2 -2
  176. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_preferences_request.py +4 -4
  177. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_related_org_request.py +3 -3
  178. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_request.py +29 -29
  179. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_substitute_response.py +14 -13
  180. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_time_off_balance_request.py +4 -4
  181. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_user_api.py +35 -28
  182. redrover-api-1.9.3.dev0/test/test_user_roles.py +52 -0
  183. redrover-api-1.9.3.dev0/test/test_vacancy_accounting_code_allocation_request.py +60 -0
  184. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_vacancy_api.py +22 -1
  185. redrover-api-1.9.3.dev0/test/test_vacancy_create_request.py +97 -0
  186. redrover-api-1.9.3.dev0/test/test_vacancy_detail_create_request.py +73 -0
  187. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_vacancy_detail_response.py +30 -49
  188. redrover-api-1.9.3.dev0/test/test_vacancy_detail_search_response.py +145 -0
  189. redrover-api-1.9.3.dev0/test/test_vacancy_response.py +132 -0
  190. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_webhook_create_request.py +3 -2
  191. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_webhook_response.py +1 -1
  192. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_webhook_update_request.py +1 -1
  193. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/test/test_webhooks_api.py +1 -1
  194. redrover-api-1.9.1.dev0/redrover_api/models/assembly.py +0 -560
  195. redrover-api-1.9.1.dev0/redrover_api/models/constructor_info.py +0 -949
  196. redrover-api-1.9.1.dev0/redrover_api/models/custom_attribute_data.py +0 -197
  197. redrover-api-1.9.1.dev0/redrover_api/models/custom_attribute_named_argument.py +0 -198
  198. redrover-api-1.9.1.dev0/redrover_api/models/event_info.py +0 -495
  199. redrover-api-1.9.1.dev0/redrover_api/models/field_info.py +0 -781
  200. redrover-api-1.9.1.dev0/redrover_api/models/member_info.py +0 -307
  201. redrover-api-1.9.1.dev0/redrover_api/models/method_base.py +0 -949
  202. redrover-api-1.9.1.dev0/redrover_api/models/method_info.py +0 -1027
  203. redrover-api-1.9.1.dev0/redrover_api/models/module.py +0 -325
  204. redrover-api-1.9.1.dev0/redrover_api/models/module_handle.py +0 -121
  205. redrover-api-1.9.1.dev0/redrover_api/models/parameter_info.py +0 -487
  206. redrover-api-1.9.1.dev0/redrover_api/models/pay_code.py +0 -177
  207. redrover-api-1.9.1.dev0/redrover_api/models/property_info.py +0 -495
  208. redrover-api-1.9.1.dev0/redrover_api/models/time_span.py +0 -381
  209. redrover-api-1.9.1.dev0/redrover_api/models/type.py +0 -1953
  210. redrover-api-1.9.1.dev0/redrover_api/models/type_info.py +0 -2178
  211. redrover-api-1.9.1.dev0/test/test_absence_response.py +0 -87
  212. redrover-api-1.9.1.dev0/test/test_assembly.py +0 -17849
  213. redrover-api-1.9.1.dev0/test/test_constructor_info.py +0 -11039
  214. redrover-api-1.9.1.dev0/test/test_custom_attribute_data.py +0 -11527
  215. redrover-api-1.9.1.dev0/test/test_custom_attribute_named_argument.py +0 -5938
  216. redrover-api-1.9.1.dev0/test/test_custom_attribute_typed_argument.py +0 -3170
  217. redrover-api-1.9.1.dev0/test/test_employee_request.py +0 -426
  218. redrover-api-1.9.1.dev0/test/test_event_info.py +0 -23667
  219. redrover-api-1.9.1.dev0/test/test_field_info.py +0 -15159
  220. redrover-api-1.9.1.dev0/test/test_member_info.py +0 -10887
  221. redrover-api-1.9.1.dev0/test/test_method_base.py +0 -11534
  222. redrover-api-1.9.1.dev0/test/test_method_info.py +0 -16835
  223. redrover-api-1.9.1.dev0/test/test_module.py +0 -5547
  224. redrover-api-1.9.1.dev0/test/test_ok_object_result.py +0 -3243
  225. redrover-api-1.9.1.dev0/test/test_parameter_info.py +0 -8701
  226. redrover-api-1.9.1.dev0/test/test_position_schedule_custom_variant_request.py +0 -119
  227. redrover-api-1.9.1.dev0/test/test_position_schedule_item_request.py +0 -221
  228. redrover-api-1.9.1.dev0/test/test_position_schedule_request.py +0 -264
  229. redrover-api-1.9.1.dev0/test/test_property_info.py +0 -20867
  230. redrover-api-1.9.1.dev0/test/test_runtime_field_handle.py +0 -53
  231. redrover-api-1.9.1.dev0/test/test_runtime_method_handle.py +0 -53
  232. redrover-api-1.9.1.dev0/test/test_runtime_type_handle.py +0 -53
  233. redrover-api-1.9.1.dev0/test/test_struct_layout_attribute.py +0 -54
  234. redrover-api-1.9.1.dev0/test/test_time_span.py +0 -63
  235. redrover-api-1.9.1.dev0/test/test_type.py +0 -27371
  236. redrover-api-1.9.1.dev0/test/test_type_info.py +0 -53680
  237. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/LICENSE +0 -0
  238. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api.egg-info/dependency_links.txt +0 -0
  239. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api.egg-info/requires.txt +0 -0
  240. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/redrover_api.egg-info/top_level.txt +0 -0
  241. {redrover-api-1.9.1.dev0 → redrover-api-1.9.3.dev0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redrover-api
3
- Version: 1.9.1.dev0
3
+ Version: 1.9.3.dev0
4
4
  Summary: Red Rover API
5
5
  Home-page: https://github.com/edustaff/redrover-api
6
6
  Author: Developer
@@ -8,5 +8,5 @@ Author-email: dev@redroverk12.com
8
8
  Keywords: OpenAPI,OpenAPI-Generator,Red Rover API
9
9
  License-File: LICENSE
10
10
 
11
- Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). # noqa: E501
11
+ Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character. # noqa: E501
12
12
 
@@ -1,26 +1,26 @@
1
1
  # redrover-api
2
- Access Red Rover data via this REST API for Organizations that have granted you access.
3
-
4
- # Authentication
5
- The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request.
6
-
7
- This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded.
8
-
9
- Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned.
10
-
11
- # API Information
12
- ## Api Key
13
- Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization.
14
-
15
- You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'.
16
-
17
- ## Identifier
18
- Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`).
2
+ Access Red Rover data via this REST API for Organizations that have granted you access.
3
+
4
+ # Authentication
5
+ The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request.
6
+
7
+ This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded.
8
+
9
+ Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned.
10
+
11
+ # API Information
12
+ ## Api Key
13
+ Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization.
14
+
15
+ You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'.
16
+
17
+ ## Identifier
18
+ Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character.
19
19
 
20
20
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
21
21
 
22
22
  - API version: v1
23
- - Package version: 1.9.1.dev0
23
+ - Package version: 1.9.3.dev0
24
24
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
25
25
 
26
26
  ## Requirements.
@@ -120,28 +120,38 @@ Class | Method | HTTP request | Description
120
120
  *AbsenceReasonBalanceApi* | [**get_absence_reason_balance**](docs/AbsenceReasonBalanceApi.md#get_absence_reason_balance) | **GET** /api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances/{id} | Get Absence Reason Balance
121
121
  *AbsenceReasonBalanceApi* | [**get_absence_reason_balances**](docs/AbsenceReasonBalanceApi.md#get_absence_reason_balances) | **GET** /api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances | Get Absence Reason Balances
122
122
  *AbsenceReasonBalanceApi* | [**update_absence_reason_balance**](docs/AbsenceReasonBalanceApi.md#update_absence_reason_balance) | **PUT** /api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances/{id} | Update Absence Reason Balance
123
+ *AssignmentApi* | [**get_assignment**](docs/AssignmentApi.md#get_assignment) | **GET** /api/v1/{orgId}/Assignment/{identifier} | Get Assignment
124
+ *AttributeApi* | [**create_attributes**](docs/AttributeApi.md#create_attributes) | **POST** /api/v1/{orgId}/ReferenceData/attribute | Create attribute
125
+ *AttributeApi* | [**gets_attributes**](docs/AttributeApi.md#gets_attributes) | **GET** /api/v1/{orgId}/ReferenceData/attribute | Get Attributes
123
126
  *ConnectionApi* | [**download_report**](docs/ConnectionApi.md#download_report) | **GET** /api/v1/{orgId}/Connection/{id}/download | Download Report
124
127
  *ConnectionApi* | [**download_report_0**](docs/ConnectionApi.md#download_report_0) | **POST** /api/v1/{orgId}/Connection/{id}/download | Download Report
125
128
  *ConnectionApi* | [**post_report_data**](docs/ConnectionApi.md#post_report_data) | **POST** /api/v1/{orgId}/Connection/{id}/data | Posts Report
126
129
  *ConnectionApi* | [**run_report**](docs/ConnectionApi.md#run_report) | **POST** /api/v1/{orgId}/Connection/{id}/run | Run Report
127
130
  *OrganizationApi* | [**get_current_school_years**](docs/OrganizationApi.md#get_current_school_years) | **GET** /api/v1/Organization/{id}/schoolYear/current | Get current School Year
128
- *OrganizationApi* | [**get_organization**](docs/OrganizationApi.md#get_organization) | **GET** /api/v1/Organization | Get Organizations
129
- *OrganizationApi* | [**get_organization_0**](docs/OrganizationApi.md#get_organization_0) | **GET** /api/v1/Organization/{id} | Get Organization
131
+ *OrganizationApi* | [**get_organization**](docs/OrganizationApi.md#get_organization) | **GET** /api/v1/Organization/{id} | Get Organization
132
+ *OrganizationApi* | [**get_organizations**](docs/OrganizationApi.md#get_organizations) | **GET** /api/v1/Organization | Get Organizations
130
133
  *OrganizationApi* | [**get_school_years**](docs/OrganizationApi.md#get_school_years) | **GET** /api/v1/Organization/{id}/schoolYear | Get School Years
131
- *ReferenceDataApi* | [**gets_attributes**](docs/ReferenceDataApi.md#gets_attributes) | **GET** /api/v1/{orgId}/ReferenceData/attribute | Get Attributes
132
- *ReferenceDataApi* | [**gets_attributes_0**](docs/ReferenceDataApi.md#gets_attributes_0) | **POST** /api/v1/{orgId}/ReferenceData/attribute | Create attribute
133
- *UserApi* | [**create_substitute**](docs/UserApi.md#create_substitute) | **PUT** /api/v1/{orgId}/User/substitute | Creates / Updates Substitute
134
- *UserApi* | [**create_substitute_0**](docs/UserApi.md#create_substitute_0) | **POST** /api/v1/{orgId}/User/substitute | Creates / Updates Substitute
135
- *UserApi* | [**creates_admin**](docs/UserApi.md#creates_admin) | **PUT** /api/v1/{orgId}/User/administrator | Creates / Updates Administrator
136
- *UserApi* | [**creates_admin_0**](docs/UserApi.md#creates_admin_0) | **POST** /api/v1/{orgId}/User/administrator | Creates / Updates Administrator
137
- *UserApi* | [**creates_employee**](docs/UserApi.md#creates_employee) | **PUT** /api/v1/{orgId}/User/employee | Creates / Updates Employee
138
- *UserApi* | [**creates_employee_0**](docs/UserApi.md#creates_employee_0) | **POST** /api/v1/{orgId}/User/employee | Creates / Updates Employee
139
- *UserApi* | [**deletes_user**](docs/UserApi.md#deletes_user) | **DELETE** /api/v1/{orgId}/User/user/{id} | Deletes User
140
- *UserApi* | [**get_substitute**](docs/UserApi.md#get_substitute) | **GET** /api/v1/{orgId}/User/substitute/{id} | Get Substitute by Id
134
+ *PayCodeApi* | [**create_pay_code**](docs/PayCodeApi.md#create_pay_code) | **POST** /api/v1/{orgId}/PayCode | Create new pay code
135
+ *PayCodeApi* | [**delete_pay_code**](docs/PayCodeApi.md#delete_pay_code) | **DELETE** /api/v1/{orgId}/PayCode/{identifier} | Delete an pay code
136
+ *PayCodeApi* | [**get_pay_code**](docs/PayCodeApi.md#get_pay_code) | **GET** /api/v1/{orgId}/PayCode/{identifier} | Get PayCode
137
+ *PayCodeApi* | [**get_pay_codes**](docs/PayCodeApi.md#get_pay_codes) | **GET** /api/v1/{orgId}/PayCode | Get all pay codes
138
+ *PayCodeApi* | [**update_pay_code**](docs/PayCodeApi.md#update_pay_code) | **PUT** /api/v1/{orgId}/PayCode/{identifier} | Update existing pay code
139
+ *UserApi* | [**create_admin**](docs/UserApi.md#create_admin) | **POST** /api/v1/{orgId}/User/administrator | Creates Administrator
140
+ *UserApi* | [**create_employee**](docs/UserApi.md#create_employee) | **POST** /api/v1/{orgId}/User/employee | Creates Employee
141
+ *UserApi* | [**create_substitute**](docs/UserApi.md#create_substitute) | **POST** /api/v1/{orgId}/User/substitute | Creates Substitute
142
+ *UserApi* | [**delete_user**](docs/UserApi.md#delete_user) | **DELETE** /api/v1/{orgId}/User/{identifier} | Deletes User
143
+ *UserApi* | [**delete_user_role**](docs/UserApi.md#delete_user_role) | **DELETE** /api/v1/{orgId}/User/{identifier}/{role} | Deletes User's Role
144
+ *UserApi* | [**get_admin**](docs/UserApi.md#get_admin) | **GET** /api/v1/{orgId}/User/administrator/{identifier} | Gets Administrator
145
+ *UserApi* | [**get_employee**](docs/UserApi.md#get_employee) | **GET** /api/v1/{orgId}/User/employee/{identifier} | Gets Employee
146
+ *UserApi* | [**get_substitute**](docs/UserApi.md#get_substitute) | **GET** /api/v1/{orgId}/User/substitute/{identifier} | Get Substitute by Id
141
147
  *UserApi* | [**get_substitutes**](docs/UserApi.md#get_substitutes) | **GET** /api/v1/{orgId}/User/substitute | Query for Substitutes
142
- *UserApi* | [**gets_admin**](docs/UserApi.md#gets_admin) | **GET** /api/v1/{orgId}/User/administrator/{id} | Gets Administrator
143
- *UserApi* | [**gets_employee**](docs/UserApi.md#gets_employee) | **GET** /api/v1/{orgId}/User/employee/{id} | Gets Employee
148
+ *UserApi* | [**update_admin**](docs/UserApi.md#update_admin) | **PUT** /api/v1/{orgId}/User/administrator/{identifier} | Updates Administrator
149
+ *UserApi* | [**update_employee**](docs/UserApi.md#update_employee) | **PUT** /api/v1/{orgId}/User/employee/{identifier} | Updates Employee
150
+ *UserApi* | [**update_substitute**](docs/UserApi.md#update_substitute) | **PUT** /api/v1/{orgId}/User/substitute/{identifier} | Updates Substitute
151
+ *VacancyApi* | [**delete_vacancy**](docs/VacancyApi.md#delete_vacancy) | **DELETE** /api/v1/{orgId}/Vacancy/{identifier} | Delete Vacancy By Id
152
+ *VacancyApi* | [**get_vacancy**](docs/VacancyApi.md#get_vacancy) | **GET** /api/v1/{orgId}/Vacancy/{identifier} | Get Vacancy By Id
144
153
  *VacancyApi* | [**get_vacancy_details**](docs/VacancyApi.md#get_vacancy_details) | **GET** /api/v1/{orgId}/Vacancy/vacancyDetails | Query Vacancy Details
154
+ *VacancyApi* | [**post_vacancy**](docs/VacancyApi.md#post_vacancy) | **POST** /api/v1/{orgId}/Vacancy | Create a Vacancy
145
155
  *WebhooksApi* | [**create_webhook**](docs/WebhooksApi.md#create_webhook) | **POST** /api/v1/Webhooks | Create Webhook.
146
156
  *WebhooksApi* | [**delete_webhook**](docs/WebhooksApi.md#delete_webhook) | **DELETE** /api/v1/Webhooks/{id} | Delete Webhook
147
157
  *WebhooksApi* | [**get_webhook**](docs/WebhooksApi.md#get_webhook) | **GET** /api/v1/Webhooks | Get Webhooks
@@ -159,62 +169,60 @@ Class | Method | HTTP request | Description
159
169
  - [AbsenceReasonBalanceUpdateRequest](docs/AbsenceReasonBalanceUpdateRequest.md)
160
170
  - [AbsenceReasonCategoryResponse](docs/AbsenceReasonCategoryResponse.md)
161
171
  - [AbsenceReasonResponse](docs/AbsenceReasonResponse.md)
172
+ - [AbsenceReasonTrackingTypeEnum](docs/AbsenceReasonTrackingTypeEnum.md)
162
173
  - [AbsenceReasonUsageCreateRequest](docs/AbsenceReasonUsageCreateRequest.md)
163
174
  - [AbsenceReasonUsageResponse](docs/AbsenceReasonUsageResponse.md)
164
175
  - [AbsenceResponse](docs/AbsenceResponse.md)
165
176
  - [AbsenceUpdateRequest](docs/AbsenceUpdateRequest.md)
177
+ - [AbsenceVacancyDetailRequest](docs/AbsenceVacancyDetailRequest.md)
178
+ - [AbsenceVacancyRequest](docs/AbsenceVacancyRequest.md)
166
179
  - [AccessControlRequest](docs/AccessControlRequest.md)
167
180
  - [AccessControlResponse](docs/AccessControlResponse.md)
168
- - [AccountingCode](docs/AccountingCode.md)
169
- - [AccountingCodeAllocation](docs/AccountingCodeAllocation.md)
170
181
  - [AccountingCodeAllocationRequest](docs/AccountingCodeAllocationRequest.md)
182
+ - [AccountingCodeAllocationResponse](docs/AccountingCodeAllocationResponse.md)
183
+ - [AccountingCodeResponse](docs/AccountingCodeResponse.md)
171
184
  - [AdministratorRequest](docs/AdministratorRequest.md)
172
185
  - [AdministratorResponse](docs/AdministratorResponse.md)
173
- - [Assembly](docs/Assembly.md)
186
+ - [ApprovalStatusEnum](docs/ApprovalStatusEnum.md)
187
+ - [AssignmentResponse](docs/AssignmentResponse.md)
174
188
  - [AttributeRequest](docs/AttributeRequest.md)
175
189
  - [AttributeResponse](docs/AttributeResponse.md)
176
190
  - [AuthenticationProperties](docs/AuthenticationProperties.md)
177
191
  - [BadRequestResult](docs/BadRequestResult.md)
178
- - [ConstructorInfo](docs/ConstructorInfo.md)
179
- - [CustomAttributeData](docs/CustomAttributeData.md)
180
- - [CustomAttributeNamedArgument](docs/CustomAttributeNamedArgument.md)
181
- - [CustomAttributeTypedArgument](docs/CustomAttributeTypedArgument.md)
192
+ - [ContractResponse](docs/ContractResponse.md)
193
+ - [CountryEnum](docs/CountryEnum.md)
194
+ - [DayOfWeek](docs/DayOfWeek.md)
195
+ - [DayPartEnum](docs/DayPartEnum.md)
182
196
  - [EmployeeRequest](docs/EmployeeRequest.md)
183
197
  - [EmployeeResponse](docs/EmployeeResponse.md)
184
- - [EventInfo](docs/EventInfo.md)
185
- - [FieldInfo](docs/FieldInfo.md)
198
+ - [FileFormat](docs/FileFormat.md)
199
+ - [FillStatusEnum](docs/FillStatusEnum.md)
186
200
  - [ForbidResult](docs/ForbidResult.md)
201
+ - [Int32IdNameClass](docs/Int32IdNameClass.md)
187
202
  - [Int32LocatorRequest](docs/Int32LocatorRequest.md)
188
203
  - [Int32LocatorResponse](docs/Int32LocatorResponse.md)
189
- - [MemberInfo](docs/MemberInfo.md)
190
- - [MethodBase](docs/MethodBase.md)
191
- - [MethodInfo](docs/MethodInfo.md)
192
- - [Module](docs/Module.md)
193
- - [ModuleHandle](docs/ModuleHandle.md)
204
+ - [NeedsReplacementEnum](docs/NeedsReplacementEnum.md)
194
205
  - [NotFoundResult](docs/NotFoundResult.md)
195
206
  - [OkObjectResult](docs/OkObjectResult.md)
196
207
  - [OkResult](docs/OkResult.md)
197
208
  - [OrgUserEmployeeResponse](docs/OrgUserEmployeeResponse.md)
198
209
  - [OrganizationResponse](docs/OrganizationResponse.md)
199
- - [ParameterInfo](docs/ParameterInfo.md)
200
- - [PayCode](docs/PayCode.md)
210
+ - [PayCodeCreateRequest](docs/PayCodeCreateRequest.md)
211
+ - [PayCodeResponse](docs/PayCodeResponse.md)
212
+ - [PayCodeUpdateRequest](docs/PayCodeUpdateRequest.md)
201
213
  - [PositionJobRequest](docs/PositionJobRequest.md)
202
214
  - [PositionRequest](docs/PositionRequest.md)
215
+ - [PositionResponse](docs/PositionResponse.md)
203
216
  - [PositionScheduleCustomVariantRequest](docs/PositionScheduleCustomVariantRequest.md)
204
217
  - [PositionScheduleItemRequest](docs/PositionScheduleItemRequest.md)
218
+ - [PositionScheduleModeEnum](docs/PositionScheduleModeEnum.md)
205
219
  - [PositionScheduleRequest](docs/PositionScheduleRequest.md)
206
- - [PropertyInfo](docs/PropertyInfo.md)
207
220
  - [Reason](docs/Reason.md)
208
- - [RuntimeFieldHandle](docs/RuntimeFieldHandle.md)
209
- - [RuntimeMethodHandle](docs/RuntimeMethodHandle.md)
210
- - [RuntimeTypeHandle](docs/RuntimeTypeHandle.md)
211
221
  - [SchoolYearResponse](docs/SchoolYearResponse.md)
212
222
  - [SimpleAbsenceDetail](docs/SimpleAbsenceDetail.md)
213
- - [SimpleLocation](docs/SimpleLocation.md)
214
223
  - [SimplePerson](docs/SimplePerson.md)
215
224
  - [SimplePosition](docs/SimplePosition.md)
216
- - [SimplePositionType](docs/SimplePositionType.md)
217
- - [StructLayoutAttribute](docs/StructLayoutAttribute.md)
225
+ - [StateEnum](docs/StateEnum.md)
218
226
  - [SubstituteAttributeRequest](docs/SubstituteAttributeRequest.md)
219
227
  - [SubstituteAttributeResponse](docs/SubstituteAttributeResponse.md)
220
228
  - [SubstitutePreferencesRequest](docs/SubstitutePreferencesRequest.md)
@@ -222,10 +230,13 @@ Class | Method | HTTP request | Description
222
230
  - [SubstituteRequest](docs/SubstituteRequest.md)
223
231
  - [SubstituteResponse](docs/SubstituteResponse.md)
224
232
  - [TimeOffBalanceRequest](docs/TimeOffBalanceRequest.md)
225
- - [TimeSpan](docs/TimeSpan.md)
226
- - [Type](docs/Type.md)
227
- - [TypeInfo](docs/TypeInfo.md)
233
+ - [UserRoles](docs/UserRoles.md)
234
+ - [VacancyAccountingCodeAllocationRequest](docs/VacancyAccountingCodeAllocationRequest.md)
235
+ - [VacancyCreateRequest](docs/VacancyCreateRequest.md)
236
+ - [VacancyDetailCreateRequest](docs/VacancyDetailCreateRequest.md)
228
237
  - [VacancyDetailResponse](docs/VacancyDetailResponse.md)
238
+ - [VacancyDetailSearchResponse](docs/VacancyDetailSearchResponse.md)
239
+ - [VacancyResponse](docs/VacancyResponse.md)
229
240
  - [WebhookCreateRequest](docs/WebhookCreateRequest.md)
230
241
  - [WebhookResponse](docs/WebhookResponse.md)
231
242
  - [WebhookUpdateRequest](docs/WebhookUpdateRequest.md)
@@ -234,6 +245,11 @@ Class | Method | HTTP request | Description
234
245
  ## Documentation For Authorization
235
246
 
236
247
 
248
+ ## apiKey
249
+
250
+ - **Type**: HTTP basic authentication
251
+
252
+
237
253
  ## basic
238
254
 
239
255
  - **Type**: HTTP basic authentication
@@ -0,0 +1,30 @@
1
+ [tool.poetry]
2
+ name = "redrover_api"
3
+ version = "1.10.1.dev0"
4
+ description = "Red Rover API"
5
+ authors = ["Developer <dev@redroverk12.com>"]
6
+ license = "NoLicense"
7
+ readme = "README.md"
8
+ repository = "https://github.com/edustaff/redrover-api"
9
+ keywords = ["OpenAPI", "OpenAPI-Generator", "Red Rover API"]
10
+ include = ["redrover_api/py.typed"]
11
+
12
+ [tool.poetry.dependencies]
13
+ python = "^3.7"
14
+
15
+ urllib3 = ">= 1.25.3"
16
+ python-dateutil = ">=2.8.2"
17
+ pydantic = ">=2"
18
+ typing-extensions = ">=4.7.1"
19
+
20
+ [tool.poetry.dev-dependencies]
21
+ pytest = ">=7.2.1"
22
+ tox = ">=3.9.0"
23
+ flake8 = ">=4.0.0"
24
+
25
+ [build-system]
26
+ requires = ["setuptools"]
27
+ build-backend = "setuptools.build_meta"
28
+
29
+ [tool.pylint.'MESSAGES CONTROL']
30
+ extension-pkg-whitelist = "pydantic"
@@ -5,7 +5,7 @@
5
5
  """
6
6
  Red Rover API
7
7
 
8
- Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). # noqa: E501
8
+ Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character. # noqa: E501
9
9
 
10
10
  The version of the OpenAPI document: v1
11
11
  Contact: dev@redroverk12.com
@@ -15,15 +15,17 @@
15
15
 
16
16
  from __future__ import absolute_import
17
17
 
18
- __version__ = "1.9.1.dev0"
18
+ __version__ = "1.9.3.dev0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from redrover_api.api.absence_api import AbsenceApi
22
22
  from redrover_api.api.absence_reason_api import AbsenceReasonApi
23
23
  from redrover_api.api.absence_reason_balance_api import AbsenceReasonBalanceApi
24
+ from redrover_api.api.assignment_api import AssignmentApi
25
+ from redrover_api.api.attribute_api import AttributeApi
24
26
  from redrover_api.api.connection_api import ConnectionApi
25
27
  from redrover_api.api.organization_api import OrganizationApi
26
- from redrover_api.api.reference_data_api import ReferenceDataApi
28
+ from redrover_api.api.pay_code_api import PayCodeApi
27
29
  from redrover_api.api.user_api import UserApi
28
30
  from redrover_api.api.vacancy_api import VacancyApi
29
31
  from redrover_api.api.webhooks_api import WebhooksApi
@@ -45,62 +47,60 @@ from redrover_api.models.absence_reason_balance_response import AbsenceReasonBal
45
47
  from redrover_api.models.absence_reason_balance_update_request import AbsenceReasonBalanceUpdateRequest
46
48
  from redrover_api.models.absence_reason_category_response import AbsenceReasonCategoryResponse
47
49
  from redrover_api.models.absence_reason_response import AbsenceReasonResponse
50
+ from redrover_api.models.absence_reason_tracking_type_enum import AbsenceReasonTrackingTypeEnum
48
51
  from redrover_api.models.absence_reason_usage_create_request import AbsenceReasonUsageCreateRequest
49
52
  from redrover_api.models.absence_reason_usage_response import AbsenceReasonUsageResponse
50
53
  from redrover_api.models.absence_response import AbsenceResponse
51
54
  from redrover_api.models.absence_update_request import AbsenceUpdateRequest
55
+ from redrover_api.models.absence_vacancy_detail_request import AbsenceVacancyDetailRequest
56
+ from redrover_api.models.absence_vacancy_request import AbsenceVacancyRequest
52
57
  from redrover_api.models.access_control_request import AccessControlRequest
53
58
  from redrover_api.models.access_control_response import AccessControlResponse
54
- from redrover_api.models.accounting_code import AccountingCode
55
- from redrover_api.models.accounting_code_allocation import AccountingCodeAllocation
56
59
  from redrover_api.models.accounting_code_allocation_request import AccountingCodeAllocationRequest
60
+ from redrover_api.models.accounting_code_allocation_response import AccountingCodeAllocationResponse
61
+ from redrover_api.models.accounting_code_response import AccountingCodeResponse
57
62
  from redrover_api.models.administrator_request import AdministratorRequest
58
63
  from redrover_api.models.administrator_response import AdministratorResponse
59
- from redrover_api.models.assembly import Assembly
64
+ from redrover_api.models.approval_status_enum import ApprovalStatusEnum
65
+ from redrover_api.models.assignment_response import AssignmentResponse
60
66
  from redrover_api.models.attribute_request import AttributeRequest
61
67
  from redrover_api.models.attribute_response import AttributeResponse
62
68
  from redrover_api.models.authentication_properties import AuthenticationProperties
63
69
  from redrover_api.models.bad_request_result import BadRequestResult
64
- from redrover_api.models.constructor_info import ConstructorInfo
65
- from redrover_api.models.custom_attribute_data import CustomAttributeData
66
- from redrover_api.models.custom_attribute_named_argument import CustomAttributeNamedArgument
67
- from redrover_api.models.custom_attribute_typed_argument import CustomAttributeTypedArgument
70
+ from redrover_api.models.contract_response import ContractResponse
71
+ from redrover_api.models.country_enum import CountryEnum
72
+ from redrover_api.models.day_of_week import DayOfWeek
73
+ from redrover_api.models.day_part_enum import DayPartEnum
68
74
  from redrover_api.models.employee_request import EmployeeRequest
69
75
  from redrover_api.models.employee_response import EmployeeResponse
70
- from redrover_api.models.event_info import EventInfo
71
- from redrover_api.models.field_info import FieldInfo
76
+ from redrover_api.models.file_format import FileFormat
77
+ from redrover_api.models.fill_status_enum import FillStatusEnum
72
78
  from redrover_api.models.forbid_result import ForbidResult
79
+ from redrover_api.models.int32_id_name_class import Int32IdNameClass
73
80
  from redrover_api.models.int32_locator_request import Int32LocatorRequest
74
81
  from redrover_api.models.int32_locator_response import Int32LocatorResponse
75
- from redrover_api.models.member_info import MemberInfo
76
- from redrover_api.models.method_base import MethodBase
77
- from redrover_api.models.method_info import MethodInfo
78
- from redrover_api.models.module import Module
79
- from redrover_api.models.module_handle import ModuleHandle
82
+ from redrover_api.models.needs_replacement_enum import NeedsReplacementEnum
80
83
  from redrover_api.models.not_found_result import NotFoundResult
81
84
  from redrover_api.models.ok_object_result import OkObjectResult
82
85
  from redrover_api.models.ok_result import OkResult
83
86
  from redrover_api.models.org_user_employee_response import OrgUserEmployeeResponse
84
87
  from redrover_api.models.organization_response import OrganizationResponse
85
- from redrover_api.models.parameter_info import ParameterInfo
86
- from redrover_api.models.pay_code import PayCode
88
+ from redrover_api.models.pay_code_create_request import PayCodeCreateRequest
89
+ from redrover_api.models.pay_code_response import PayCodeResponse
90
+ from redrover_api.models.pay_code_update_request import PayCodeUpdateRequest
87
91
  from redrover_api.models.position_job_request import PositionJobRequest
88
92
  from redrover_api.models.position_request import PositionRequest
93
+ from redrover_api.models.position_response import PositionResponse
89
94
  from redrover_api.models.position_schedule_custom_variant_request import PositionScheduleCustomVariantRequest
90
95
  from redrover_api.models.position_schedule_item_request import PositionScheduleItemRequest
96
+ from redrover_api.models.position_schedule_mode_enum import PositionScheduleModeEnum
91
97
  from redrover_api.models.position_schedule_request import PositionScheduleRequest
92
- from redrover_api.models.property_info import PropertyInfo
93
98
  from redrover_api.models.reason import Reason
94
- from redrover_api.models.runtime_field_handle import RuntimeFieldHandle
95
- from redrover_api.models.runtime_method_handle import RuntimeMethodHandle
96
- from redrover_api.models.runtime_type_handle import RuntimeTypeHandle
97
99
  from redrover_api.models.school_year_response import SchoolYearResponse
98
100
  from redrover_api.models.simple_absence_detail import SimpleAbsenceDetail
99
- from redrover_api.models.simple_location import SimpleLocation
100
101
  from redrover_api.models.simple_person import SimplePerson
101
102
  from redrover_api.models.simple_position import SimplePosition
102
- from redrover_api.models.simple_position_type import SimplePositionType
103
- from redrover_api.models.struct_layout_attribute import StructLayoutAttribute
103
+ from redrover_api.models.state_enum import StateEnum
104
104
  from redrover_api.models.substitute_attribute_request import SubstituteAttributeRequest
105
105
  from redrover_api.models.substitute_attribute_response import SubstituteAttributeResponse
106
106
  from redrover_api.models.substitute_preferences_request import SubstitutePreferencesRequest
@@ -108,10 +108,13 @@ from redrover_api.models.substitute_related_org_request import SubstituteRelated
108
108
  from redrover_api.models.substitute_request import SubstituteRequest
109
109
  from redrover_api.models.substitute_response import SubstituteResponse
110
110
  from redrover_api.models.time_off_balance_request import TimeOffBalanceRequest
111
- from redrover_api.models.time_span import TimeSpan
112
- from redrover_api.models.type import Type
113
- from redrover_api.models.type_info import TypeInfo
111
+ from redrover_api.models.user_roles import UserRoles
112
+ from redrover_api.models.vacancy_accounting_code_allocation_request import VacancyAccountingCodeAllocationRequest
113
+ from redrover_api.models.vacancy_create_request import VacancyCreateRequest
114
+ from redrover_api.models.vacancy_detail_create_request import VacancyDetailCreateRequest
114
115
  from redrover_api.models.vacancy_detail_response import VacancyDetailResponse
116
+ from redrover_api.models.vacancy_detail_search_response import VacancyDetailSearchResponse
117
+ from redrover_api.models.vacancy_response import VacancyResponse
115
118
  from redrover_api.models.webhook_create_request import WebhookCreateRequest
116
119
  from redrover_api.models.webhook_response import WebhookResponse
117
120
  from redrover_api.models.webhook_update_request import WebhookUpdateRequest
@@ -6,9 +6,11 @@ from __future__ import absolute_import
6
6
  from redrover_api.api.absence_api import AbsenceApi
7
7
  from redrover_api.api.absence_reason_api import AbsenceReasonApi
8
8
  from redrover_api.api.absence_reason_balance_api import AbsenceReasonBalanceApi
9
+ from redrover_api.api.assignment_api import AssignmentApi
10
+ from redrover_api.api.attribute_api import AttributeApi
9
11
  from redrover_api.api.connection_api import ConnectionApi
10
12
  from redrover_api.api.organization_api import OrganizationApi
11
- from redrover_api.api.reference_data_api import ReferenceDataApi
13
+ from redrover_api.api.pay_code_api import PayCodeApi
12
14
  from redrover_api.api.user_api import UserApi
13
15
  from redrover_api.api.vacancy_api import VacancyApi
14
16
  from redrover_api.api.webhooks_api import WebhooksApi
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Red Rover API
5
5
 
6
- Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). # noqa: E501
6
+ Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character. # noqa: E501
7
7
 
8
8
  The version of the OpenAPI document: v1
9
9
  Contact: dev@redroverk12.com
@@ -183,7 +183,7 @@ class AbsenceApi(object):
183
183
  number provided, it will be total request
184
184
  timeout. It can also be a pair (tuple) of
185
185
  (connection, read) timeouts.
186
- :return: AbsenceResponse
186
+ :return: OkResult
187
187
  If the method is called asynchronously,
188
188
  returns the request thread.
189
189
  """
@@ -211,7 +211,7 @@ class AbsenceApi(object):
211
211
  number provided, it will be total request
212
212
  timeout. It can also be a pair (tuple) of
213
213
  (connection, read) timeouts.
214
- :return: tuple(AbsenceResponse, status_code(int), headers(HTTPHeaderDict))
214
+ :return: tuple(OkResult, status_code(int), headers(HTTPHeaderDict))
215
215
  If the method is called asynchronously,
216
216
  returns the request thread.
217
217
  """
@@ -269,7 +269,7 @@ class AbsenceApi(object):
269
269
  ['application/json']) # noqa: E501
270
270
 
271
271
  # Authentication setting
272
- auth_settings = ['basic'] # noqa: E501
272
+ auth_settings = ['apiKey'] # noqa: E501
273
273
 
274
274
  return self.api_client.call_api(
275
275
  '/api/v1/{orgId}/Absence/{identifier}', 'DELETE',
@@ -279,7 +279,7 @@ class AbsenceApi(object):
279
279
  body=body_params,
280
280
  post_params=form_params,
281
281
  files=local_var_files,
282
- response_type='AbsenceResponse', # noqa: E501
282
+ response_type='OkResult', # noqa: E501
283
283
  auth_settings=auth_settings,
284
284
  async_req=local_var_params.get('async_req'),
285
285
  _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
@@ -392,7 +392,7 @@ class AbsenceApi(object):
392
392
  ['application/json']) # noqa: E501
393
393
 
394
394
  # Authentication setting
395
- auth_settings = ['basic'] # noqa: E501
395
+ auth_settings = ['apiKey'] # noqa: E501
396
396
 
397
397
  return self.api_client.call_api(
398
398
  '/api/v1/{orgId}/Absence/{identifier}', 'GET',
@@ -516,7 +516,7 @@ class AbsenceApi(object):
516
516
  ['application/json']) # noqa: E501
517
517
 
518
518
  # Authentication setting
519
- auth_settings = ['basic'] # noqa: E501
519
+ auth_settings = ['apiKey'] # noqa: E501
520
520
 
521
521
  return self.api_client.call_api(
522
522
  '/api/v1/{orgId}/Absence', 'GET',
@@ -652,7 +652,7 @@ class AbsenceApi(object):
652
652
  ['application/json']) # noqa: E501
653
653
 
654
654
  # Authentication setting
655
- auth_settings = ['basic'] # noqa: E501
655
+ auth_settings = ['apiKey'] # noqa: E501
656
656
 
657
657
  return self.api_client.call_api(
658
658
  '/api/v1/{orgId}/Absence/{identifier}', 'PUT',
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Red Rover API
5
5
 
6
- Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). # noqa: E501
6
+ Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character. # noqa: E501
7
7
 
8
8
  The version of the OpenAPI document: v1
9
9
  Contact: dev@redroverk12.com
@@ -142,7 +142,7 @@ class AbsenceReasonApi(object):
142
142
  ['application/json']) # noqa: E501
143
143
 
144
144
  # Authentication setting
145
- auth_settings = ['basic'] # noqa: E501
145
+ auth_settings = ['apiKey'] # noqa: E501
146
146
 
147
147
  return self.api_client.call_api(
148
148
  '/api/v1/{orgId}/AbsenceReason/{identifier}', 'GET',
@@ -266,7 +266,7 @@ class AbsenceReasonApi(object):
266
266
  ['application/json']) # noqa: E501
267
267
 
268
268
  # Authentication setting
269
- auth_settings = ['basic'] # noqa: E501
269
+ auth_settings = ['apiKey'] # noqa: E501
270
270
 
271
271
  return self.api_client.call_api(
272
272
  '/api/v1/{orgId}/AbsenceReason', 'GET',
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Red Rover API
5
5
 
6
- Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). # noqa: E501
6
+ Access Red Rover data via this REST API for Organizations that have granted you access. # Authentication The API is protected by HTTP Basic Authentication. Each application that connects to the API has a unique username and password that it must supply with every request. This value needs to be supplied as an HTTP Header: `Authorization=BASIC [hash]`. The value of [hash] is the string username:password base64 encoded. Endpoints marked for Basic Auth can be used with the Basic Auth username and password that you have been assigned. # API Information ## Api Key Each Red Rover organization that has authorized your application has a unique API Key for your application. To retrieve the API Key, you can use the Organization endpoint (`api/v1/organization`) which returns an ApiKey uniquely used for each Organization. You must supply this as an HTTP Header when accessing that organization: `apiKey=[apiKey]`. The domains that require this `ApiKey` header are labeled as 'Requires an ApiKey'. ## Identifier Where an `Identifier` can be specified in the route, you may either supply the Red Rover Id of the object (numeric) or the External Id (alpha-numeric). When specifying an External Id, you will need to prepend the External Id with the pike character`|` (e.g. `|ABC123`). Please note that this is only the case when the External Id is within the route. If the External Id is contained within the body of the request, do not append the pike character. # noqa: E501
7
7
 
8
8
  The version of the OpenAPI document: v1
9
9
  Contact: dev@redroverk12.com
@@ -151,7 +151,7 @@ class AbsenceReasonBalanceApi(object):
151
151
  ['application/json']) # noqa: E501
152
152
 
153
153
  # Authentication setting
154
- auth_settings = ['basic'] # noqa: E501
154
+ auth_settings = ['apiKey'] # noqa: E501
155
155
 
156
156
  return self.api_client.call_api(
157
157
  '/api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances', 'POST',
@@ -283,7 +283,7 @@ class AbsenceReasonBalanceApi(object):
283
283
  ['application/json']) # noqa: E501
284
284
 
285
285
  # Authentication setting
286
- auth_settings = ['basic'] # noqa: E501
286
+ auth_settings = ['apiKey'] # noqa: E501
287
287
 
288
288
  return self.api_client.call_api(
289
289
  '/api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances/{id}', 'DELETE',
@@ -415,7 +415,7 @@ class AbsenceReasonBalanceApi(object):
415
415
  ['application/json']) # noqa: E501
416
416
 
417
417
  # Authentication setting
418
- auth_settings = ['basic'] # noqa: E501
418
+ auth_settings = ['apiKey'] # noqa: E501
419
419
 
420
420
  return self.api_client.call_api(
421
421
  '/api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances/{id}', 'GET',
@@ -543,7 +543,7 @@ class AbsenceReasonBalanceApi(object):
543
543
  ['application/json']) # noqa: E501
544
544
 
545
545
  # Authentication setting
546
- auth_settings = ['basic'] # noqa: E501
546
+ auth_settings = ['apiKey'] # noqa: E501
547
547
 
548
548
  return self.api_client.call_api(
549
549
  '/api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances', 'GET',
@@ -684,7 +684,7 @@ class AbsenceReasonBalanceApi(object):
684
684
  ['application/json']) # noqa: E501
685
685
 
686
686
  # Authentication setting
687
- auth_settings = ['basic'] # noqa: E501
687
+ auth_settings = ['apiKey'] # noqa: E501
688
688
 
689
689
  return self.api_client.call_api(
690
690
  '/api/v1/{orgId}/Employee/{employeeIdentifier}/absenceReasonBalances/{id}', 'PUT',