stackone_client 0.5.6 → 0.5.7
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/hris.rb +219 -0
- data/lib/stack_one/lms.rb +2 -1
- data/lib/stack_one/models/operations/hris_get_employee_time_off_balance_request.rb +42 -0
- data/lib/stack_one/models/operations/hris_get_employee_time_off_balance_response.rb +36 -0
- data/lib/stack_one/models/operations/hris_get_time_off_policy_request.rb +36 -0
- data/lib/stack_one/models/operations/hris_get_time_off_policy_response.rb +36 -0
- data/lib/stack_one/models/operations/hris_invite_employee_request.rb +30 -0
- data/lib/stack_one/models/operations/hris_invite_employee_response.rb +36 -0
- data/lib/stack_one/models/operations/hris_list_employee_time_off_balances_queryparam_filter.rb +27 -0
- data/lib/stack_one/models/operations/hris_list_employee_time_off_balances_request.rb +58 -0
- data/lib/stack_one/models/operations/hris_list_employee_time_off_balances_response.rb +36 -0
- data/lib/stack_one/models/operations/hris_list_time_off_policies_queryparam_filter.rb +24 -0
- data/lib/stack_one/models/operations/hris_list_time_off_policies_request.rb +52 -0
- data/lib/stack_one/models/operations/hris_list_time_off_policies_response.rb +36 -0
- data/lib/stack_one/models/operations/lms_list_assignments_queryparam_filter.rb +2 -5
- data/lib/stack_one/models/operations/lms_list_completions_queryparam_filter.rb +2 -5
- data/lib/stack_one/models/operations/lms_list_user_assignments_queryparam_filter.rb +2 -5
- data/lib/stack_one/models/operations/lms_list_user_completions_queryparam_filter.rb +2 -5
- data/lib/stack_one/models/operations.rb +12 -4
- data/lib/stack_one/models/shared/balance_unit.rb +27 -0
- data/lib/stack_one/models/shared/hrisinviteemployeerequestdto.rb +24 -0
- data/lib/stack_one/models/shared/inviteemployeeresult.rb +33 -0
- data/lib/stack_one/models/shared/policy.rb +42 -0
- data/lib/stack_one/models/shared/timeoffbalanceresult.rb +27 -0
- data/lib/stack_one/models/shared/timeoffbalances.rb +54 -0
- data/lib/stack_one/models/shared/timeoffbalances_schemas_value.rb +26 -0
- data/lib/stack_one/models/shared/timeoffbalances_type.rb +27 -0
- data/lib/stack_one/models/shared/timeoffbalances_value.rb +22 -0
- data/lib/stack_one/models/shared/timeoffbalancespaginated.rb +30 -0
- data/lib/stack_one/models/shared/timeoffpolicies.rb +42 -0
- data/lib/stack_one/models/shared/timeoffpolicies_type.rb +27 -0
- data/lib/stack_one/models/shared/timeoffpolicies_value.rb +26 -0
- data/lib/stack_one/models/shared/timeoffpoliciespaginated.rb +30 -0
- data/lib/stack_one/models/shared/timeoffpolicyresult.rb +27 -0
- data/lib/stack_one/models/shared.rb +15 -0
- data/lib/stack_one/sdkconfiguration.rb +3 -3
- metadata +29 -6
- data/lib/stack_one/models/operations/learning_object_type.rb +0 -19
- data/lib/stack_one/models/operations/lms_list_user_assignments_queryparam_learning_object_type.rb +0 -19
- data/lib/stack_one/models/operations/lms_list_user_completions_queryparam_learning_object_type.rb +0 -19
- data/lib/stack_one/models/operations/queryparam_learning_object_type.rb +0 -19
@@ -0,0 +1,26 @@
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
+
|
3
|
+
# typed: true
|
4
|
+
# frozen_string_literal: true
|
5
|
+
|
6
|
+
|
7
|
+
module StackOne
|
8
|
+
module Shared
|
9
|
+
|
10
|
+
|
11
|
+
class TimeOffPoliciesValue < T::Enum
|
12
|
+
enums do
|
13
|
+
PAID = new('paid')
|
14
|
+
UNPAID = new('unpaid')
|
15
|
+
HOLIDAY = new('holiday')
|
16
|
+
VACATION = new('vacation')
|
17
|
+
SICK = new('sick')
|
18
|
+
PERSONAL = new('personal')
|
19
|
+
IN_LIEU = new('in_lieu')
|
20
|
+
BEREAVEMENT = new('bereavement')
|
21
|
+
JURY_DUTY = new('jury_duty')
|
22
|
+
UNMAPPED_VALUE = new('unmapped_value')
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
+
|
3
|
+
# typed: true
|
4
|
+
# frozen_string_literal: true
|
5
|
+
|
6
|
+
|
7
|
+
module StackOne
|
8
|
+
module Shared
|
9
|
+
|
10
|
+
|
11
|
+
class TimeOffPoliciesPaginated < ::StackOne::Utils::FieldAugmented
|
12
|
+
extend T::Sig
|
13
|
+
|
14
|
+
|
15
|
+
field :data, T::Array[::StackOne::Shared::TimeOffPolicies], { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('data') } }
|
16
|
+
|
17
|
+
field :next_, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('next') } }
|
18
|
+
|
19
|
+
field :raw, T.nilable(T::Array[::StackOne::Shared::RawResponse]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('raw') } }
|
20
|
+
|
21
|
+
|
22
|
+
sig { params(data: T::Array[::StackOne::Shared::TimeOffPolicies], next_: T.nilable(::String), raw: T.nilable(T::Array[::StackOne::Shared::RawResponse])).void }
|
23
|
+
def initialize(data: nil, next_: nil, raw: nil)
|
24
|
+
@data = data
|
25
|
+
@next_ = next_
|
26
|
+
@raw = raw
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
+
|
3
|
+
# typed: true
|
4
|
+
# frozen_string_literal: true
|
5
|
+
|
6
|
+
|
7
|
+
module StackOne
|
8
|
+
module Shared
|
9
|
+
|
10
|
+
|
11
|
+
class TimeOffPolicyResult < ::StackOne::Utils::FieldAugmented
|
12
|
+
extend T::Sig
|
13
|
+
|
14
|
+
|
15
|
+
field :data, ::StackOne::Shared::TimeOffPolicies, { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('data') } }
|
16
|
+
|
17
|
+
field :raw, T.nilable(T::Array[::StackOne::Shared::RawResponse]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('raw') } }
|
18
|
+
|
19
|
+
|
20
|
+
sig { params(data: ::StackOne::Shared::TimeOffPolicies, raw: T.nilable(T::Array[::StackOne::Shared::RawResponse])).void }
|
21
|
+
def initialize(data: nil, raw: nil)
|
22
|
+
@data = data
|
23
|
+
@raw = raw
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -464,6 +464,13 @@ module StackOne
|
|
464
464
|
autoload :HrisDocumentApiModel, 'stack_one/models/shared/hrisdocumentapimodel.rb'
|
465
465
|
autoload :ReferenceResult, 'stack_one/models/shared/referenceresult.rb'
|
466
466
|
autoload :Reference, 'stack_one/models/shared/reference.rb'
|
467
|
+
autoload :TimeOffBalanceResult, 'stack_one/models/shared/timeoffbalanceresult.rb'
|
468
|
+
autoload :TimeOffBalancesValue, 'stack_one/models/shared/timeoffbalances_value.rb'
|
469
|
+
autoload :BalanceUnit, 'stack_one/models/shared/balance_unit.rb'
|
470
|
+
autoload :TimeOffBalancesSchemasValue, 'stack_one/models/shared/timeoffbalances_schemas_value.rb'
|
471
|
+
autoload :TimeOffBalancesType, 'stack_one/models/shared/timeoffbalances_type.rb'
|
472
|
+
autoload :Policy, 'stack_one/models/shared/policy.rb'
|
473
|
+
autoload :TimeOffBalances, 'stack_one/models/shared/timeoffbalances.rb'
|
467
474
|
autoload :TimeOffResult, 'stack_one/models/shared/timeoffresult.rb'
|
468
475
|
autoload :TimeOffValue, 'stack_one/models/shared/timeoff_value.rb'
|
469
476
|
autoload :TimeOffStatus, 'stack_one/models/shared/timeoff_status.rb'
|
@@ -497,6 +504,12 @@ module StackOne
|
|
497
504
|
autoload :TimeEntriesValue, 'stack_one/models/shared/timeentries_value.rb'
|
498
505
|
autoload :TimeEntriesStatus, 'stack_one/models/shared/timeentries_status.rb'
|
499
506
|
autoload :TimeEntries, 'stack_one/models/shared/timeentries.rb'
|
507
|
+
autoload :TimeOffPolicyResult, 'stack_one/models/shared/timeoffpolicyresult.rb'
|
508
|
+
autoload :TimeOffPoliciesValue, 'stack_one/models/shared/timeoffpolicies_value.rb'
|
509
|
+
autoload :TimeOffPoliciesType, 'stack_one/models/shared/timeoffpolicies_type.rb'
|
510
|
+
autoload :TimeOffPolicies, 'stack_one/models/shared/timeoffpolicies.rb'
|
511
|
+
autoload :InviteEmployeeResult, 'stack_one/models/shared/inviteemployeeresult.rb'
|
512
|
+
autoload :HrisInviteEmployeeRequestDto, 'stack_one/models/shared/hrisinviteemployeerequestdto.rb'
|
500
513
|
autoload :HRISBenefitsPaginated, 'stack_one/models/shared/hrisbenefitspaginated.rb'
|
501
514
|
autoload :CompaniesPaginated, 'stack_one/models/shared/companiespaginated.rb'
|
502
515
|
autoload :HRISCostCenterPaginated, 'stack_one/models/shared/hriscostcenterpaginated.rb'
|
@@ -504,6 +517,7 @@ module StackOne
|
|
504
517
|
autoload :ReferencePaginated, 'stack_one/models/shared/referencepaginated.rb'
|
505
518
|
autoload :HrisDocumentsPaginated, 'stack_one/models/shared/hrisdocumentspaginated.rb'
|
506
519
|
autoload :EmploymentsPaginated, 'stack_one/models/shared/employmentspaginated.rb'
|
520
|
+
autoload :TimeOffBalancesPaginated, 'stack_one/models/shared/timeoffbalancespaginated.rb'
|
507
521
|
autoload :TimeOffPaginated, 'stack_one/models/shared/timeoffpaginated.rb'
|
508
522
|
autoload :WorkEligibilityPaginated, 'stack_one/models/shared/workeligibilitypaginated.rb'
|
509
523
|
autoload :EmployeesPaginated, 'stack_one/models/shared/employeespaginated.rb'
|
@@ -511,6 +525,7 @@ module StackOne
|
|
511
525
|
autoload :HRISLocationsPaginated, 'stack_one/models/shared/hrislocationspaginated.rb'
|
512
526
|
autoload :HRISTeamsPaginated, 'stack_one/models/shared/hristeamspaginated.rb'
|
513
527
|
autoload :TimeEntriesPaginated, 'stack_one/models/shared/timeentriespaginated.rb'
|
528
|
+
autoload :TimeOffPoliciesPaginated, 'stack_one/models/shared/timeoffpoliciespaginated.rb'
|
514
529
|
autoload :UpdateEmployeeApiModelAvatar, 'stack_one/models/shared/updateemployeeapimodel_avatar.rb'
|
515
530
|
autoload :UpdateEmployeeApiModelValue, 'stack_one/models/shared/updateemployeeapimodel_value.rb'
|
516
531
|
autoload :UpdateEmployeeApiModelEmploymentContractType, 'stack_one/models/shared/updateemployeeapimodel_employment_contract_type.rb'
|
@@ -38,9 +38,9 @@ module StackOne
|
|
38
38
|
@security = security
|
39
39
|
@language = 'ruby'
|
40
40
|
@openapi_doc_version = '1.0.0'
|
41
|
-
@sdk_version = '0.5.
|
42
|
-
@gen_version = '2.
|
43
|
-
@user_agent = 'speakeasy-sdk/ruby 0.5.
|
41
|
+
@sdk_version = '0.5.7'
|
42
|
+
@gen_version = '2.512.4'
|
43
|
+
@user_agent = 'speakeasy-sdk/ruby 0.5.7 2.512.4 1.0.0 stackone_client'
|
44
44
|
end
|
45
45
|
|
46
46
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
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.5.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- StackOne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -378,6 +378,8 @@ files:
|
|
378
378
|
- lib/stack_one/models/operations/hris_get_employee_employment_response.rb
|
379
379
|
- lib/stack_one/models/operations/hris_get_employee_request.rb
|
380
380
|
- lib/stack_one/models/operations/hris_get_employee_response.rb
|
381
|
+
- lib/stack_one/models/operations/hris_get_employee_time_off_balance_request.rb
|
382
|
+
- lib/stack_one/models/operations/hris_get_employee_time_off_balance_response.rb
|
381
383
|
- lib/stack_one/models/operations/hris_get_employees_time_off_request_request.rb
|
382
384
|
- lib/stack_one/models/operations/hris_get_employees_time_off_request_response.rb
|
383
385
|
- lib/stack_one/models/operations/hris_get_employees_work_eligibility_request.rb
|
@@ -394,10 +396,14 @@ files:
|
|
394
396
|
- lib/stack_one/models/operations/hris_get_team_group_response.rb
|
395
397
|
- lib/stack_one/models/operations/hris_get_time_entries_request.rb
|
396
398
|
- lib/stack_one/models/operations/hris_get_time_entries_response.rb
|
399
|
+
- lib/stack_one/models/operations/hris_get_time_off_policy_request.rb
|
400
|
+
- lib/stack_one/models/operations/hris_get_time_off_policy_response.rb
|
397
401
|
- lib/stack_one/models/operations/hris_get_time_off_request_request.rb
|
398
402
|
- lib/stack_one/models/operations/hris_get_time_off_request_response.rb
|
399
403
|
- lib/stack_one/models/operations/hris_get_time_off_type_request.rb
|
400
404
|
- lib/stack_one/models/operations/hris_get_time_off_type_response.rb
|
405
|
+
- lib/stack_one/models/operations/hris_invite_employee_request.rb
|
406
|
+
- lib/stack_one/models/operations/hris_invite_employee_response.rb
|
401
407
|
- lib/stack_one/models/operations/hris_list_benefits_queryparam_filter.rb
|
402
408
|
- lib/stack_one/models/operations/hris_list_benefits_request.rb
|
403
409
|
- lib/stack_one/models/operations/hris_list_benefits_response.rb
|
@@ -422,6 +428,9 @@ files:
|
|
422
428
|
- lib/stack_one/models/operations/hris_list_employee_employments_queryparam_filter.rb
|
423
429
|
- lib/stack_one/models/operations/hris_list_employee_employments_request.rb
|
424
430
|
- lib/stack_one/models/operations/hris_list_employee_employments_response.rb
|
431
|
+
- lib/stack_one/models/operations/hris_list_employee_time_off_balances_queryparam_filter.rb
|
432
|
+
- lib/stack_one/models/operations/hris_list_employee_time_off_balances_request.rb
|
433
|
+
- lib/stack_one/models/operations/hris_list_employee_time_off_balances_response.rb
|
425
434
|
- lib/stack_one/models/operations/hris_list_employee_time_off_requests_queryparam_filter.rb
|
426
435
|
- lib/stack_one/models/operations/hris_list_employee_time_off_requests_request.rb
|
427
436
|
- lib/stack_one/models/operations/hris_list_employee_time_off_requests_response.rb
|
@@ -449,6 +458,9 @@ files:
|
|
449
458
|
- lib/stack_one/models/operations/hris_list_time_entries_queryparam_filter.rb
|
450
459
|
- lib/stack_one/models/operations/hris_list_time_entries_request.rb
|
451
460
|
- lib/stack_one/models/operations/hris_list_time_entries_response.rb
|
461
|
+
- lib/stack_one/models/operations/hris_list_time_off_policies_queryparam_filter.rb
|
462
|
+
- lib/stack_one/models/operations/hris_list_time_off_policies_request.rb
|
463
|
+
- lib/stack_one/models/operations/hris_list_time_off_policies_response.rb
|
452
464
|
- lib/stack_one/models/operations/hris_list_time_off_requests_queryparam_filter.rb
|
453
465
|
- lib/stack_one/models/operations/hris_list_time_off_requests_request.rb
|
454
466
|
- lib/stack_one/models/operations/hris_list_time_off_requests_response.rb
|
@@ -486,7 +498,6 @@ files:
|
|
486
498
|
- lib/stack_one/models/operations/iam_list_users_request.rb
|
487
499
|
- lib/stack_one/models/operations/iam_list_users_response.rb
|
488
500
|
- lib/stack_one/models/operations/job_status.rb
|
489
|
-
- lib/stack_one/models/operations/learning_object_type.rb
|
490
501
|
- lib/stack_one/models/operations/lms_batch_upsert_content_request.rb
|
491
502
|
- lib/stack_one/models/operations/lms_batch_upsert_content_response.rb
|
492
503
|
- lib/stack_one/models/operations/lms_batch_upsert_course_request.rb
|
@@ -536,12 +547,10 @@ files:
|
|
536
547
|
- lib/stack_one/models/operations/lms_list_skills_request.rb
|
537
548
|
- lib/stack_one/models/operations/lms_list_skills_response.rb
|
538
549
|
- lib/stack_one/models/operations/lms_list_user_assignments_queryparam_filter.rb
|
539
|
-
- lib/stack_one/models/operations/lms_list_user_assignments_queryparam_learning_object_type.rb
|
540
550
|
- lib/stack_one/models/operations/lms_list_user_assignments_queryparam_status.rb
|
541
551
|
- lib/stack_one/models/operations/lms_list_user_assignments_request.rb
|
542
552
|
- lib/stack_one/models/operations/lms_list_user_assignments_response.rb
|
543
553
|
- lib/stack_one/models/operations/lms_list_user_completions_queryparam_filter.rb
|
544
|
-
- lib/stack_one/models/operations/lms_list_user_completions_queryparam_learning_object_type.rb
|
545
554
|
- lib/stack_one/models/operations/lms_list_user_completions_request.rb
|
546
555
|
- lib/stack_one/models/operations/lms_list_user_completions_response.rb
|
547
556
|
- lib/stack_one/models/operations/lms_list_users_queryparam_filter.rb
|
@@ -613,7 +622,6 @@ files:
|
|
613
622
|
- lib/stack_one/models/operations/marketing_update_sms_template_request.rb
|
614
623
|
- lib/stack_one/models/operations/marketing_update_sms_template_response.rb
|
615
624
|
- lib/stack_one/models/operations/queryparam_filter.rb
|
616
|
-
- lib/stack_one/models/operations/queryparam_learning_object_type.rb
|
617
625
|
- lib/stack_one/models/operations/queryparam_status.rb
|
618
626
|
- lib/stack_one/models/operations/stackone_authenticate_connect_session_response.rb
|
619
627
|
- lib/stack_one/models/operations/stackone_create_connect_session_response.rb
|
@@ -759,6 +767,7 @@ files:
|
|
759
767
|
- lib/stack_one/models/shared/backgroundcheckresult_score.rb
|
760
768
|
- lib/stack_one/models/shared/backgroundcheckresult_value.rb
|
761
769
|
- lib/stack_one/models/shared/backgroundcheckresultsresult.rb
|
770
|
+
- lib/stack_one/models/shared/balance_unit.rb
|
762
771
|
- lib/stack_one/models/shared/batchresultapimodel.rb
|
763
772
|
- lib/stack_one/models/shared/benefit_type.rb
|
764
773
|
- lib/stack_one/models/shared/campaign.rb
|
@@ -1024,6 +1033,7 @@ files:
|
|
1024
1033
|
- lib/stack_one/models/shared/hrisgroup_value.rb
|
1025
1034
|
- lib/stack_one/models/shared/hrisgroupspaginated.rb
|
1026
1035
|
- lib/stack_one/models/shared/hrisgroupsresult.rb
|
1036
|
+
- lib/stack_one/models/shared/hrisinviteemployeerequestdto.rb
|
1027
1037
|
- lib/stack_one/models/shared/hrislocation.rb
|
1028
1038
|
- lib/stack_one/models/shared/hrislocation_country.rb
|
1029
1039
|
- lib/stack_one/models/shared/hrislocation_location_type.rb
|
@@ -1120,6 +1130,7 @@ files:
|
|
1120
1130
|
- lib/stack_one/models/shared/interviewstage.rb
|
1121
1131
|
- lib/stack_one/models/shared/interviewstageresult.rb
|
1122
1132
|
- lib/stack_one/models/shared/interviewstagespaginated.rb
|
1133
|
+
- lib/stack_one/models/shared/inviteemployeeresult.rb
|
1123
1134
|
- lib/stack_one/models/shared/issued_by.rb
|
1124
1135
|
- lib/stack_one/models/shared/job.rb
|
1125
1136
|
- lib/stack_one/models/shared/job_confidential.rb
|
@@ -1226,6 +1237,7 @@ files:
|
|
1226
1237
|
- lib/stack_one/models/shared/pay_period.rb
|
1227
1238
|
- lib/stack_one/models/shared/phonenumber.rb
|
1228
1239
|
- lib/stack_one/models/shared/phonenumber_type.rb
|
1240
|
+
- lib/stack_one/models/shared/policy.rb
|
1229
1241
|
- lib/stack_one/models/shared/preferred_language.rb
|
1230
1242
|
- lib/stack_one/models/shared/proficiency.rb
|
1231
1243
|
- lib/stack_one/models/shared/providererrorapimodel.rb
|
@@ -1311,7 +1323,18 @@ files:
|
|
1311
1323
|
- lib/stack_one/models/shared/timeoff_status.rb
|
1312
1324
|
- lib/stack_one/models/shared/timeoff_type.rb
|
1313
1325
|
- lib/stack_one/models/shared/timeoff_value.rb
|
1326
|
+
- lib/stack_one/models/shared/timeoffbalanceresult.rb
|
1327
|
+
- lib/stack_one/models/shared/timeoffbalances.rb
|
1328
|
+
- lib/stack_one/models/shared/timeoffbalances_schemas_value.rb
|
1329
|
+
- lib/stack_one/models/shared/timeoffbalances_type.rb
|
1330
|
+
- lib/stack_one/models/shared/timeoffbalances_value.rb
|
1331
|
+
- lib/stack_one/models/shared/timeoffbalancespaginated.rb
|
1314
1332
|
- lib/stack_one/models/shared/timeoffpaginated.rb
|
1333
|
+
- lib/stack_one/models/shared/timeoffpolicies.rb
|
1334
|
+
- lib/stack_one/models/shared/timeoffpolicies_type.rb
|
1335
|
+
- lib/stack_one/models/shared/timeoffpolicies_value.rb
|
1336
|
+
- lib/stack_one/models/shared/timeoffpoliciespaginated.rb
|
1337
|
+
- lib/stack_one/models/shared/timeoffpolicyresult.rb
|
1315
1338
|
- lib/stack_one/models/shared/timeoffresult.rb
|
1316
1339
|
- lib/stack_one/models/shared/type.rb
|
1317
1340
|
- lib/stack_one/models/shared/unifieduploadrequestdto.rb
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
-
|
3
|
-
# typed: true
|
4
|
-
# frozen_string_literal: true
|
5
|
-
|
6
|
-
|
7
|
-
module StackOne
|
8
|
-
module Operations
|
9
|
-
|
10
|
-
# LearningObjectType - Filter to select assignment by learning object type.
|
11
|
-
class LearningObjectType < T::Enum
|
12
|
-
enums do
|
13
|
-
CONTENT = new('content')
|
14
|
-
COURSE = new('course')
|
15
|
-
COLLECTION = new('collection')
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
data/lib/stack_one/models/operations/lms_list_user_assignments_queryparam_learning_object_type.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
-
|
3
|
-
# typed: true
|
4
|
-
# frozen_string_literal: true
|
5
|
-
|
6
|
-
|
7
|
-
module StackOne
|
8
|
-
module Operations
|
9
|
-
|
10
|
-
# LmsListUserAssignmentsQueryParamLearningObjectType - Filter to select assignment by learning object type.
|
11
|
-
class LmsListUserAssignmentsQueryParamLearningObjectType < T::Enum
|
12
|
-
enums do
|
13
|
-
CONTENT = new('content')
|
14
|
-
COURSE = new('course')
|
15
|
-
COLLECTION = new('collection')
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
data/lib/stack_one/models/operations/lms_list_user_completions_queryparam_learning_object_type.rb
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
-
|
3
|
-
# typed: true
|
4
|
-
# frozen_string_literal: true
|
5
|
-
|
6
|
-
|
7
|
-
module StackOne
|
8
|
-
module Operations
|
9
|
-
|
10
|
-
# LmsListUserCompletionsQueryParamLearningObjectType - Filter to select completions by learning object type.
|
11
|
-
class LmsListUserCompletionsQueryParamLearningObjectType < T::Enum
|
12
|
-
enums do
|
13
|
-
CONTENT = new('content')
|
14
|
-
COURSE = new('course')
|
15
|
-
COLLECTION = new('collection')
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
2
|
-
|
3
|
-
# typed: true
|
4
|
-
# frozen_string_literal: true
|
5
|
-
|
6
|
-
|
7
|
-
module StackOne
|
8
|
-
module Operations
|
9
|
-
|
10
|
-
# QueryParamLearningObjectType - Filter to select completions by learning object type.
|
11
|
-
class QueryParamLearningObjectType < T::Enum
|
12
|
-
enums do
|
13
|
-
CONTENT = new('content')
|
14
|
-
COURSE = new('course')
|
15
|
-
COLLECTION = new('collection')
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|