stackone_client 0.27.0 → 0.31.0
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.
- checksums.yaml +4 -4
- data/lib/stack_one/ats.rb +788 -241
- data/lib/stack_one/hris.rb +847 -300
- data/lib/stack_one/models/operations/ats_get_application_document_category_request.rb +49 -0
- data/lib/stack_one/models/operations/ats_get_application_document_category_response.rb +49 -0
- data/lib/stack_one/models/operations/ats_list_application_document_categories_queryparam_filter.rb +33 -0
- data/lib/stack_one/models/operations/ats_list_application_document_categories_request.rb +69 -0
- data/lib/stack_one/models/operations/ats_list_application_document_categories_response.rb +49 -0
- data/lib/stack_one/models/operations/hris_get_shift_request.rb +49 -0
- data/lib/stack_one/models/operations/hris_get_shift_response.rb +49 -0
- data/lib/stack_one/models/operations/hris_list_shifts_queryparam_filter.rb +49 -0
- data/lib/stack_one/models/operations/hris_list_shifts_queryparam_status.rb +23 -0
- data/lib/stack_one/models/operations/hris_list_shifts_request.rb +69 -0
- data/lib/stack_one/models/operations/hris_list_shifts_response.rb +49 -0
- data/lib/stack_one/models/operations/queryparam_filter.rb +26 -18
- data/lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_order_by.rb +23 -0
- data/lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_order_direction.rb +20 -0
- data/lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_request_logs_order_by.rb +23 -0
- data/lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_request_logs_order_direction.rb +20 -0
- data/lib/stack_one/models/operations/stackone_list_platform_logs_request.rb +49 -0
- data/lib/stack_one/models/operations/stackone_list_platform_logs_response.rb +49 -0
- data/lib/stack_one/models/operations/stackone_list_step_logs_queryparam_filter.rb +81 -0
- data/lib/stack_one/models/operations/stackone_list_step_logs_request.rb +2 -2
- data/lib/stack_one/models/operations.rb +18 -0
- data/lib/stack_one/models/shared/approval_status.rb +37 -0
- data/lib/stack_one/models/shared/authormodel.rb +37 -0
- data/lib/stack_one/models/shared/course.rb +6 -2
- data/lib/stack_one/models/shared/data.rb +81 -0
- data/lib/stack_one/models/shared/hrisshift.rb +81 -0
- data/lib/stack_one/models/shared/hrisshift_4.rb +28 -0
- data/lib/stack_one/models/shared/hrisshift_schemas_4.rb +28 -0
- data/lib/stack_one/models/shared/hrisshift_schemas_source_value.rb +28 -0
- data/lib/stack_one/models/shared/hrisshift_schemas_value.rb +23 -0
- data/lib/stack_one/models/shared/hrisshift_source_value.rb +28 -0
- data/lib/stack_one/models/shared/hrisshift_status.rb +37 -0
- data/lib/stack_one/models/shared/hrisshift_value.rb +22 -0
- data/lib/stack_one/models/shared/hrisshiftresult.rb +37 -0
- data/lib/stack_one/models/shared/hrisshiftresult_4.rb +28 -0
- data/lib/stack_one/models/shared/hrisshiftresult_approval_status.rb +37 -0
- data/lib/stack_one/models/shared/hrisshiftresult_schemas_4.rb +28 -0
- data/lib/stack_one/models/shared/hrisshiftresult_schemas_source_value.rb +28 -0
- data/lib/stack_one/models/shared/hrisshiftresult_schemas_value.rb +23 -0
- data/lib/stack_one/models/shared/hrisshiftresult_source_value.rb +28 -0
- data/lib/stack_one/models/shared/hrisshiftresult_status.rb +37 -0
- data/lib/stack_one/models/shared/hrisshiftresult_value.rb +22 -0
- data/lib/stack_one/models/shared/hrisshiftspaginated.rb +41 -0
- data/lib/stack_one/models/shared/lmscreatecontentrequestdto.rb +6 -2
- data/lib/stack_one/models/shared/lmsupsertcontentrequestdto.rb +6 -2
- data/lib/stack_one/models/shared/platformlog.rb +113 -0
- data/lib/stack_one/models/shared/platformlogspaginated.rb +37 -0
- data/lib/stack_one/models/shared/shiftbreak.rb +57 -0
- data/lib/stack_one/models/shared/steplog.rb +6 -2
- data/lib/stack_one/models/shared/unifiedlogs.rb +6 -2
- data/lib/stack_one/models/shared/unifiedlogspartial.rb +6 -2
- data/lib/stack_one/models/shared.rb +24 -0
- data/lib/stack_one/request_logs.rb +258 -0
- data/lib/stack_one/sdkconfiguration.rb +2 -2
- metadata +44 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stackone_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- StackOne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -235,6 +235,8 @@ files:
|
|
235
235
|
- lib/stack_one/models/operations/ats_get_application_custom_field_definition_queryparam_filter.rb
|
236
236
|
- lib/stack_one/models/operations/ats_get_application_custom_field_definition_request.rb
|
237
237
|
- lib/stack_one/models/operations/ats_get_application_custom_field_definition_response.rb
|
238
|
+
- lib/stack_one/models/operations/ats_get_application_document_category_request.rb
|
239
|
+
- lib/stack_one/models/operations/ats_get_application_document_category_response.rb
|
238
240
|
- lib/stack_one/models/operations/ats_get_application_document_request.rb
|
239
241
|
- lib/stack_one/models/operations/ats_get_application_document_response.rb
|
240
242
|
- lib/stack_one/models/operations/ats_get_application_note_request.rb
|
@@ -291,6 +293,9 @@ files:
|
|
291
293
|
- lib/stack_one/models/operations/ats_list_application_custom_field_definitions_queryparam_filter.rb
|
292
294
|
- lib/stack_one/models/operations/ats_list_application_custom_field_definitions_request.rb
|
293
295
|
- lib/stack_one/models/operations/ats_list_application_custom_field_definitions_response.rb
|
296
|
+
- lib/stack_one/models/operations/ats_list_application_document_categories_queryparam_filter.rb
|
297
|
+
- lib/stack_one/models/operations/ats_list_application_document_categories_request.rb
|
298
|
+
- lib/stack_one/models/operations/ats_list_application_document_categories_response.rb
|
294
299
|
- lib/stack_one/models/operations/ats_list_application_documents_queryparam_filter.rb
|
295
300
|
- lib/stack_one/models/operations/ats_list_application_documents_request.rb
|
296
301
|
- lib/stack_one/models/operations/ats_list_application_documents_response.rb
|
@@ -467,6 +472,8 @@ files:
|
|
467
472
|
- lib/stack_one/models/operations/hris_get_location_response.rb
|
468
473
|
- lib/stack_one/models/operations/hris_get_position_request.rb
|
469
474
|
- lib/stack_one/models/operations/hris_get_position_response.rb
|
475
|
+
- lib/stack_one/models/operations/hris_get_shift_request.rb
|
476
|
+
- lib/stack_one/models/operations/hris_get_shift_response.rb
|
470
477
|
- lib/stack_one/models/operations/hris_get_task_request.rb
|
471
478
|
- lib/stack_one/models/operations/hris_get_task_response.rb
|
472
479
|
- lib/stack_one/models/operations/hris_get_team_group_request.rb
|
@@ -547,6 +554,10 @@ files:
|
|
547
554
|
- lib/stack_one/models/operations/hris_list_positions_queryparam_filter.rb
|
548
555
|
- lib/stack_one/models/operations/hris_list_positions_request.rb
|
549
556
|
- lib/stack_one/models/operations/hris_list_positions_response.rb
|
557
|
+
- lib/stack_one/models/operations/hris_list_shifts_queryparam_filter.rb
|
558
|
+
- lib/stack_one/models/operations/hris_list_shifts_queryparam_status.rb
|
559
|
+
- lib/stack_one/models/operations/hris_list_shifts_request.rb
|
560
|
+
- lib/stack_one/models/operations/hris_list_shifts_response.rb
|
550
561
|
- lib/stack_one/models/operations/hris_list_tasks_queryparam_filter.rb
|
551
562
|
- lib/stack_one/models/operations/hris_list_tasks_request.rb
|
552
563
|
- lib/stack_one/models/operations/hris_list_tasks_response.rb
|
@@ -745,6 +756,13 @@ files:
|
|
745
756
|
- lib/stack_one/models/operations/stackone_list_linked_accounts_response.rb
|
746
757
|
- lib/stack_one/models/operations/stackone_list_logs_request.rb
|
747
758
|
- lib/stack_one/models/operations/stackone_list_logs_response.rb
|
759
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_order_by.rb
|
760
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_order_direction.rb
|
761
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_request_logs_order_by.rb
|
762
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_queryparam_request_logs_order_direction.rb
|
763
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_request.rb
|
764
|
+
- lib/stack_one/models/operations/stackone_list_platform_logs_response.rb
|
765
|
+
- lib/stack_one/models/operations/stackone_list_step_logs_queryparam_filter.rb
|
748
766
|
- lib/stack_one/models/operations/stackone_list_step_logs_queryparam_order_by.rb
|
749
767
|
- lib/stack_one/models/operations/stackone_list_step_logs_queryparam_order_direction.rb
|
750
768
|
- lib/stack_one/models/operations/stackone_list_step_logs_request.rb
|
@@ -796,6 +814,7 @@ files:
|
|
796
814
|
- lib/stack_one/models/shared/applicationchangespaginated.rb
|
797
815
|
- lib/stack_one/models/shared/applicationresult.rb
|
798
816
|
- lib/stack_one/models/shared/applicationspaginated.rb
|
817
|
+
- lib/stack_one/models/shared/approval_status.rb
|
799
818
|
- lib/stack_one/models/shared/archived.rb
|
800
819
|
- lib/stack_one/models/shared/assessmentpackage.rb
|
801
820
|
- lib/stack_one/models/shared/assessmentpackagepaginated.rb
|
@@ -911,6 +930,7 @@ files:
|
|
911
930
|
- lib/stack_one/models/shared/attachment_content_type.rb
|
912
931
|
- lib/stack_one/models/shared/attachment_source_value.rb
|
913
932
|
- lib/stack_one/models/shared/attachment_value.rb
|
933
|
+
- lib/stack_one/models/shared/authormodel.rb
|
914
934
|
- lib/stack_one/models/shared/avatar.rb
|
915
935
|
- lib/stack_one/models/shared/backgroundcheckpackage.rb
|
916
936
|
- lib/stack_one/models/shared/backgroundcheckpackagepaginated.rb
|
@@ -1100,6 +1120,7 @@ files:
|
|
1100
1120
|
- lib/stack_one/models/shared/customfields_4.rb
|
1101
1121
|
- lib/stack_one/models/shared/customfields_value.rb
|
1102
1122
|
- lib/stack_one/models/shared/custommappingerror.rb
|
1123
|
+
- lib/stack_one/models/shared/data.rb
|
1103
1124
|
- lib/stack_one/models/shared/deleteresult.rb
|
1104
1125
|
- lib/stack_one/models/shared/department.rb
|
1105
1126
|
- lib/stack_one/models/shared/departmentresult.rb
|
@@ -1467,6 +1488,24 @@ files:
|
|
1467
1488
|
- lib/stack_one/models/shared/hrislocation_value.rb
|
1468
1489
|
- lib/stack_one/models/shared/hrislocationresult.rb
|
1469
1490
|
- lib/stack_one/models/shared/hrislocationspaginated.rb
|
1491
|
+
- lib/stack_one/models/shared/hrisshift.rb
|
1492
|
+
- lib/stack_one/models/shared/hrisshift_4.rb
|
1493
|
+
- lib/stack_one/models/shared/hrisshift_schemas_4.rb
|
1494
|
+
- lib/stack_one/models/shared/hrisshift_schemas_source_value.rb
|
1495
|
+
- lib/stack_one/models/shared/hrisshift_schemas_value.rb
|
1496
|
+
- lib/stack_one/models/shared/hrisshift_source_value.rb
|
1497
|
+
- lib/stack_one/models/shared/hrisshift_status.rb
|
1498
|
+
- lib/stack_one/models/shared/hrisshift_value.rb
|
1499
|
+
- lib/stack_one/models/shared/hrisshiftresult.rb
|
1500
|
+
- lib/stack_one/models/shared/hrisshiftresult_4.rb
|
1501
|
+
- lib/stack_one/models/shared/hrisshiftresult_approval_status.rb
|
1502
|
+
- lib/stack_one/models/shared/hrisshiftresult_schemas_4.rb
|
1503
|
+
- lib/stack_one/models/shared/hrisshiftresult_schemas_source_value.rb
|
1504
|
+
- lib/stack_one/models/shared/hrisshiftresult_schemas_value.rb
|
1505
|
+
- lib/stack_one/models/shared/hrisshiftresult_source_value.rb
|
1506
|
+
- lib/stack_one/models/shared/hrisshiftresult_status.rb
|
1507
|
+
- lib/stack_one/models/shared/hrisshiftresult_value.rb
|
1508
|
+
- lib/stack_one/models/shared/hrisshiftspaginated.rb
|
1470
1509
|
- lib/stack_one/models/shared/hristeam.rb
|
1471
1510
|
- lib/stack_one/models/shared/hristeam_4.rb
|
1472
1511
|
- lib/stack_one/models/shared/hristeam_source_value.rb
|
@@ -1829,6 +1868,8 @@ files:
|
|
1829
1868
|
- lib/stack_one/models/shared/pay_period.rb
|
1830
1869
|
- lib/stack_one/models/shared/phonenumber.rb
|
1831
1870
|
- lib/stack_one/models/shared/phonenumber_type.rb
|
1871
|
+
- lib/stack_one/models/shared/platformlog.rb
|
1872
|
+
- lib/stack_one/models/shared/platformlogspaginated.rb
|
1832
1873
|
- lib/stack_one/models/shared/policy.rb
|
1833
1874
|
- lib/stack_one/models/shared/position.rb
|
1834
1875
|
- lib/stack_one/models/shared/position_4.rb
|
@@ -1908,6 +1949,7 @@ files:
|
|
1908
1949
|
- lib/stack_one/models/shared/secrets.rb
|
1909
1950
|
- lib/stack_one/models/shared/security.rb
|
1910
1951
|
- lib/stack_one/models/shared/setup_information.rb
|
1952
|
+
- lib/stack_one/models/shared/shiftbreak.rb
|
1911
1953
|
- lib/stack_one/models/shared/skillresult.rb
|
1912
1954
|
- lib/stack_one/models/shared/skills.rb
|
1913
1955
|
- lib/stack_one/models/shared/skills_2.rb
|