affixapi 1.1.64 → 1.1.66
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/Gemfile.lock +1 -1
- data/docs/Class20230301Api.md +20 -10
- data/docs/TimeOffBalanceResponse.md +2 -2
- data/docs/TimeOffEntryResponse.md +2 -0
- data/docs/TimesheetResponse.md +2 -0
- data/docs/XHRVerticallyIntegratedApi.md +20 -10
- data/lib/openapi_client/api/class20230301_api.rb +34 -6
- data/lib/openapi_client/api/xhr_vertically_integrated_api.rb +34 -6
- data/lib/openapi_client/models/time_off_balance_response.rb +10 -10
- data/lib/openapi_client/models/time_off_entry_response.rb +16 -1
- data/lib/openapi_client/models/timesheet_response.rb +16 -1
- data/lib/openapi_client/version.rb +1 -1
- data/spec/api/class20230301_api_spec.rb +4 -0
- data/spec/api/xhr_vertically_integrated_api_spec.rb +4 -0
- data/spec/models/time_off_balance_response_spec.rb +1 -1
- data/spec/models/time_off_entry_response_spec.rb +6 -0
- data/spec/models/timesheet_response_spec.rb +6 -0
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/byebug-11.1.3/byebug/byebug.so +0 -0
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/ffi-1.16.3/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/ffi-1.16.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/jaro_winkler-1.5.6/jaro_winkler/jaro_winkler_ext.so +0 -0
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/racc-1.7.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.3.0/extensions/x86_64-linux/3.3.0/racc-1.7.3/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/lib/byebug/byebug.so +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/ffi-1.16.3/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/lib/jaro_winkler/jaro_winkler_ext.so +0 -0
- data/vendor/bundle/ruby/3.3.0/gems/racc-1.7.3/lib/racc/cparse.so +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c208a8a5506ba3c87b090dffae114cb81df8b593e8451a97fae61ab5b2e4678c
|
|
4
|
+
data.tar.gz: d60616759249ced6ba3319e192eaf11643c11645b597114973b4ebffb6dec35c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fea7a25c1d9429a655c9cd9633aac4c63a7305ce027b957ca4ce90abe638f94e89c30ead15dcb4c20f6eb4f357614daa39de2ad6cd3f8fff7f0ed24cd2f4035b
|
|
7
|
+
data.tar.gz: 6014bffb298c7946b96d67adaeef7407ce24194ae1a2ab312db4d4d40377d657b7a564e70fcf30f96308c1063d72159040b1e6397792823b3d126aa3ab547e10
|
data/Gemfile.lock
CHANGED
data/docs/Class20230301Api.md
CHANGED
|
@@ -507,7 +507,7 @@ This endpoint does not need any parameter.
|
|
|
507
507
|
|
|
508
508
|
## xhr_time_off_entries20230301
|
|
509
509
|
|
|
510
|
-
> <Array<TimeOffEntryResponse>> xhr_time_off_entries20230301
|
|
510
|
+
> <Array<TimeOffEntryResponse>> xhr_time_off_entries20230301(start_date, end_date)
|
|
511
511
|
|
|
512
512
|
Time off entries
|
|
513
513
|
|
|
@@ -527,10 +527,12 @@ OpenapiClient.configure do |config|
|
|
|
527
527
|
end
|
|
528
528
|
|
|
529
529
|
api_instance = OpenapiClient::Class20230301Api.new
|
|
530
|
+
start_date = Date.parse('2013-10-20') # Date | The start date of the search period
|
|
531
|
+
end_date = Date.parse('2013-10-20') # Date | The end date of the search period
|
|
530
532
|
|
|
531
533
|
begin
|
|
532
534
|
# Time off entries
|
|
533
|
-
result = api_instance.xhr_time_off_entries20230301
|
|
535
|
+
result = api_instance.xhr_time_off_entries20230301(start_date, end_date)
|
|
534
536
|
p result
|
|
535
537
|
rescue OpenapiClient::ApiError => e
|
|
536
538
|
puts "Error when calling Class20230301Api->xhr_time_off_entries20230301: #{e}"
|
|
@@ -541,12 +543,12 @@ end
|
|
|
541
543
|
|
|
542
544
|
This returns an Array which contains the response data, status code and headers.
|
|
543
545
|
|
|
544
|
-
> <Array(<Array<TimeOffEntryResponse>>, Integer, Hash)> xhr_time_off_entries20230301_with_http_info
|
|
546
|
+
> <Array(<Array<TimeOffEntryResponse>>, Integer, Hash)> xhr_time_off_entries20230301_with_http_info(start_date, end_date)
|
|
545
547
|
|
|
546
548
|
```ruby
|
|
547
549
|
begin
|
|
548
550
|
# Time off entries
|
|
549
|
-
data, status_code, headers = api_instance.xhr_time_off_entries20230301_with_http_info
|
|
551
|
+
data, status_code, headers = api_instance.xhr_time_off_entries20230301_with_http_info(start_date, end_date)
|
|
550
552
|
p status_code # => 2xx
|
|
551
553
|
p headers # => { ... }
|
|
552
554
|
p data # => <Array<TimeOffEntryResponse>>
|
|
@@ -557,7 +559,10 @@ end
|
|
|
557
559
|
|
|
558
560
|
### Parameters
|
|
559
561
|
|
|
560
|
-
|
|
562
|
+
| Name | Type | Description | Notes |
|
|
563
|
+
| ---- | ---- | ----------- | ----- |
|
|
564
|
+
| **start_date** | **Date** | The start date of the search period | |
|
|
565
|
+
| **end_date** | **Date** | The end date of the search period | |
|
|
561
566
|
|
|
562
567
|
### Return type
|
|
563
568
|
|
|
@@ -575,7 +580,7 @@ This endpoint does not need any parameter.
|
|
|
575
580
|
|
|
576
581
|
## xhr_timesheets20230301
|
|
577
582
|
|
|
578
|
-
> <Array<TimesheetResponse>> xhr_timesheets20230301
|
|
583
|
+
> <Array<TimesheetResponse>> xhr_timesheets20230301(start_date, end_date)
|
|
579
584
|
|
|
580
585
|
Timesheets
|
|
581
586
|
|
|
@@ -595,10 +600,12 @@ OpenapiClient.configure do |config|
|
|
|
595
600
|
end
|
|
596
601
|
|
|
597
602
|
api_instance = OpenapiClient::Class20230301Api.new
|
|
603
|
+
start_date = Date.parse('2013-10-20') # Date | The start date of the search period
|
|
604
|
+
end_date = Date.parse('2013-10-20') # Date | The end date of the search period
|
|
598
605
|
|
|
599
606
|
begin
|
|
600
607
|
# Timesheets
|
|
601
|
-
result = api_instance.xhr_timesheets20230301
|
|
608
|
+
result = api_instance.xhr_timesheets20230301(start_date, end_date)
|
|
602
609
|
p result
|
|
603
610
|
rescue OpenapiClient::ApiError => e
|
|
604
611
|
puts "Error when calling Class20230301Api->xhr_timesheets20230301: #{e}"
|
|
@@ -609,12 +616,12 @@ end
|
|
|
609
616
|
|
|
610
617
|
This returns an Array which contains the response data, status code and headers.
|
|
611
618
|
|
|
612
|
-
> <Array(<Array<TimesheetResponse>>, Integer, Hash)> xhr_timesheets20230301_with_http_info
|
|
619
|
+
> <Array(<Array<TimesheetResponse>>, Integer, Hash)> xhr_timesheets20230301_with_http_info(start_date, end_date)
|
|
613
620
|
|
|
614
621
|
```ruby
|
|
615
622
|
begin
|
|
616
623
|
# Timesheets
|
|
617
|
-
data, status_code, headers = api_instance.xhr_timesheets20230301_with_http_info
|
|
624
|
+
data, status_code, headers = api_instance.xhr_timesheets20230301_with_http_info(start_date, end_date)
|
|
618
625
|
p status_code # => 2xx
|
|
619
626
|
p headers # => { ... }
|
|
620
627
|
p data # => <Array<TimesheetResponse>>
|
|
@@ -625,7 +632,10 @@ end
|
|
|
625
632
|
|
|
626
633
|
### Parameters
|
|
627
634
|
|
|
628
|
-
|
|
635
|
+
| Name | Type | Description | Notes |
|
|
636
|
+
| ---- | ---- | ----------- | ----- |
|
|
637
|
+
| **start_date** | **Date** | The start date of the search period | |
|
|
638
|
+
| **end_date** | **Date** | The end date of the search period | |
|
|
629
639
|
|
|
630
640
|
### Return type
|
|
631
641
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **employee_id** | **String** | The Affix-assigned id of the individual | |
|
|
8
|
-
| **
|
|
8
|
+
| **remote_employee_id** | **String** | the remote system-assigned id of the individual | |
|
|
9
9
|
| **balance** | **Float** | | |
|
|
10
10
|
| **used** | **Float** | | |
|
|
11
11
|
| **policy_name** | **String** | The name of the policy, as assigned by the remote system | |
|
|
@@ -20,7 +20,7 @@ require 'openapi_client'
|
|
|
20
20
|
|
|
21
21
|
instance = OpenapiClient::TimeOffBalanceResponse.new(
|
|
22
22
|
employee_id: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw,
|
|
23
|
-
|
|
23
|
+
remote_employee_id: 19202938,
|
|
24
24
|
balance: 24.5,
|
|
25
25
|
used: 12,
|
|
26
26
|
policy_name: Comp/In Lieu Time,
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **id** | **String** | The Affix-assigned id of the time off entry | |
|
|
8
8
|
| **remote_id** | **String** | the remote system-assigned id of the time off entry | |
|
|
9
9
|
| **employee_id** | **String** | the Affix-assigned id of the individual | |
|
|
10
|
+
| **remote_employee_id** | **String** | the remote system-assigned id of the individual | |
|
|
10
11
|
| **start_date** | **Date** | | |
|
|
11
12
|
| **end_date** | **Date** | | |
|
|
12
13
|
| **amount** | **Float** | | |
|
|
@@ -26,6 +27,7 @@ instance = OpenapiClient::TimeOffEntryResponse.new(
|
|
|
26
27
|
id: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw,
|
|
27
28
|
remote_id: 19202938,
|
|
28
29
|
employee_id: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw,
|
|
30
|
+
remote_employee_id: 19202938,
|
|
29
31
|
start_date: Sun Oct 11 00:00:00 UTC 2020,
|
|
30
32
|
end_date: Wed Oct 14 00:00:00 UTC 2020,
|
|
31
33
|
amount: 3,
|
data/docs/TimesheetResponse.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **id** | **String** | The Affix-assigned id of the time off entry | |
|
|
8
8
|
| **remote_id** | **String** | the remote system-assigned id of the time off entry | |
|
|
9
9
|
| **employee_id** | **String** | the Affix-assigned id of the individual | |
|
|
10
|
+
| **remote_employee_id** | **String** | the remote system-assigned id of the individual | |
|
|
10
11
|
| **start_time** | **Time** | | |
|
|
11
12
|
| **end_time** | **Time** | | |
|
|
12
13
|
| **hours_worked** | **Float** | | |
|
|
@@ -22,6 +23,7 @@ instance = OpenapiClient::TimesheetResponse.new(
|
|
|
22
23
|
id: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw,
|
|
23
24
|
remote_id: 19202938,
|
|
24
25
|
employee_id: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw,
|
|
26
|
+
remote_employee_id: 19202938,
|
|
25
27
|
start_time: 2020-10-11T08:00Z,
|
|
26
28
|
end_time: 2020-10-11T17:00Z,
|
|
27
29
|
hours_worked: 8,
|
|
@@ -507,7 +507,7 @@ This endpoint does not need any parameter.
|
|
|
507
507
|
|
|
508
508
|
## xhr_time_off_entries20230301
|
|
509
509
|
|
|
510
|
-
> <Array<TimeOffEntryResponse>> xhr_time_off_entries20230301
|
|
510
|
+
> <Array<TimeOffEntryResponse>> xhr_time_off_entries20230301(start_date, end_date)
|
|
511
511
|
|
|
512
512
|
Time off entries
|
|
513
513
|
|
|
@@ -527,10 +527,12 @@ OpenapiClient.configure do |config|
|
|
|
527
527
|
end
|
|
528
528
|
|
|
529
529
|
api_instance = OpenapiClient::XHRVerticallyIntegratedApi.new
|
|
530
|
+
start_date = Date.parse('2013-10-20') # Date | The start date of the search period
|
|
531
|
+
end_date = Date.parse('2013-10-20') # Date | The end date of the search period
|
|
530
532
|
|
|
531
533
|
begin
|
|
532
534
|
# Time off entries
|
|
533
|
-
result = api_instance.xhr_time_off_entries20230301
|
|
535
|
+
result = api_instance.xhr_time_off_entries20230301(start_date, end_date)
|
|
534
536
|
p result
|
|
535
537
|
rescue OpenapiClient::ApiError => e
|
|
536
538
|
puts "Error when calling XHRVerticallyIntegratedApi->xhr_time_off_entries20230301: #{e}"
|
|
@@ -541,12 +543,12 @@ end
|
|
|
541
543
|
|
|
542
544
|
This returns an Array which contains the response data, status code and headers.
|
|
543
545
|
|
|
544
|
-
> <Array(<Array<TimeOffEntryResponse>>, Integer, Hash)> xhr_time_off_entries20230301_with_http_info
|
|
546
|
+
> <Array(<Array<TimeOffEntryResponse>>, Integer, Hash)> xhr_time_off_entries20230301_with_http_info(start_date, end_date)
|
|
545
547
|
|
|
546
548
|
```ruby
|
|
547
549
|
begin
|
|
548
550
|
# Time off entries
|
|
549
|
-
data, status_code, headers = api_instance.xhr_time_off_entries20230301_with_http_info
|
|
551
|
+
data, status_code, headers = api_instance.xhr_time_off_entries20230301_with_http_info(start_date, end_date)
|
|
550
552
|
p status_code # => 2xx
|
|
551
553
|
p headers # => { ... }
|
|
552
554
|
p data # => <Array<TimeOffEntryResponse>>
|
|
@@ -557,7 +559,10 @@ end
|
|
|
557
559
|
|
|
558
560
|
### Parameters
|
|
559
561
|
|
|
560
|
-
|
|
562
|
+
| Name | Type | Description | Notes |
|
|
563
|
+
| ---- | ---- | ----------- | ----- |
|
|
564
|
+
| **start_date** | **Date** | The start date of the search period | |
|
|
565
|
+
| **end_date** | **Date** | The end date of the search period | |
|
|
561
566
|
|
|
562
567
|
### Return type
|
|
563
568
|
|
|
@@ -575,7 +580,7 @@ This endpoint does not need any parameter.
|
|
|
575
580
|
|
|
576
581
|
## xhr_timesheets20230301
|
|
577
582
|
|
|
578
|
-
> <Array<TimesheetResponse>> xhr_timesheets20230301
|
|
583
|
+
> <Array<TimesheetResponse>> xhr_timesheets20230301(start_date, end_date)
|
|
579
584
|
|
|
580
585
|
Timesheets
|
|
581
586
|
|
|
@@ -595,10 +600,12 @@ OpenapiClient.configure do |config|
|
|
|
595
600
|
end
|
|
596
601
|
|
|
597
602
|
api_instance = OpenapiClient::XHRVerticallyIntegratedApi.new
|
|
603
|
+
start_date = Date.parse('2013-10-20') # Date | The start date of the search period
|
|
604
|
+
end_date = Date.parse('2013-10-20') # Date | The end date of the search period
|
|
598
605
|
|
|
599
606
|
begin
|
|
600
607
|
# Timesheets
|
|
601
|
-
result = api_instance.xhr_timesheets20230301
|
|
608
|
+
result = api_instance.xhr_timesheets20230301(start_date, end_date)
|
|
602
609
|
p result
|
|
603
610
|
rescue OpenapiClient::ApiError => e
|
|
604
611
|
puts "Error when calling XHRVerticallyIntegratedApi->xhr_timesheets20230301: #{e}"
|
|
@@ -609,12 +616,12 @@ end
|
|
|
609
616
|
|
|
610
617
|
This returns an Array which contains the response data, status code and headers.
|
|
611
618
|
|
|
612
|
-
> <Array(<Array<TimesheetResponse>>, Integer, Hash)> xhr_timesheets20230301_with_http_info
|
|
619
|
+
> <Array(<Array<TimesheetResponse>>, Integer, Hash)> xhr_timesheets20230301_with_http_info(start_date, end_date)
|
|
613
620
|
|
|
614
621
|
```ruby
|
|
615
622
|
begin
|
|
616
623
|
# Timesheets
|
|
617
|
-
data, status_code, headers = api_instance.xhr_timesheets20230301_with_http_info
|
|
624
|
+
data, status_code, headers = api_instance.xhr_timesheets20230301_with_http_info(start_date, end_date)
|
|
618
625
|
p status_code # => 2xx
|
|
619
626
|
p headers # => { ... }
|
|
620
627
|
p data # => <Array<TimesheetResponse>>
|
|
@@ -625,7 +632,10 @@ end
|
|
|
625
632
|
|
|
626
633
|
### Parameters
|
|
627
634
|
|
|
628
|
-
|
|
635
|
+
| Name | Type | Description | Notes |
|
|
636
|
+
| ---- | ---- | ----------- | ----- |
|
|
637
|
+
| **start_date** | **Date** | The start date of the search period | |
|
|
638
|
+
| **end_date** | **Date** | The end date of the search period | |
|
|
629
639
|
|
|
630
640
|
### Return type
|
|
631
641
|
|
|
@@ -443,26 +443,40 @@ module OpenapiClient
|
|
|
443
443
|
|
|
444
444
|
# Time off entries
|
|
445
445
|
# Retrieve time off / absence entries
|
|
446
|
+
# @param start_date [Date] The start date of the search period
|
|
447
|
+
# @param end_date [Date] The end date of the search period
|
|
446
448
|
# @param [Hash] opts the optional parameters
|
|
447
449
|
# @return [Array<TimeOffEntryResponse>]
|
|
448
|
-
def xhr_time_off_entries20230301(opts = {})
|
|
449
|
-
data, _status_code, _headers = xhr_time_off_entries20230301_with_http_info(opts)
|
|
450
|
+
def xhr_time_off_entries20230301(start_date, end_date, opts = {})
|
|
451
|
+
data, _status_code, _headers = xhr_time_off_entries20230301_with_http_info(start_date, end_date, opts)
|
|
450
452
|
data
|
|
451
453
|
end
|
|
452
454
|
|
|
453
455
|
# Time off entries
|
|
454
456
|
# Retrieve time off / absence entries
|
|
457
|
+
# @param start_date [Date] The start date of the search period
|
|
458
|
+
# @param end_date [Date] The end date of the search period
|
|
455
459
|
# @param [Hash] opts the optional parameters
|
|
456
460
|
# @return [Array<(Array<TimeOffEntryResponse>, Integer, Hash)>] Array<TimeOffEntryResponse> data, response status code and response headers
|
|
457
|
-
def xhr_time_off_entries20230301_with_http_info(opts = {})
|
|
461
|
+
def xhr_time_off_entries20230301_with_http_info(start_date, end_date, opts = {})
|
|
458
462
|
if @api_client.config.debugging
|
|
459
463
|
@api_client.config.logger.debug 'Calling API: Class20230301Api.xhr_time_off_entries20230301 ...'
|
|
460
464
|
end
|
|
465
|
+
# verify the required parameter 'start_date' is set
|
|
466
|
+
if @api_client.config.client_side_validation && start_date.nil?
|
|
467
|
+
fail ArgumentError, "Missing the required parameter 'start_date' when calling Class20230301Api.xhr_time_off_entries20230301"
|
|
468
|
+
end
|
|
469
|
+
# verify the required parameter 'end_date' is set
|
|
470
|
+
if @api_client.config.client_side_validation && end_date.nil?
|
|
471
|
+
fail ArgumentError, "Missing the required parameter 'end_date' when calling Class20230301Api.xhr_time_off_entries20230301"
|
|
472
|
+
end
|
|
461
473
|
# resource path
|
|
462
474
|
local_var_path = '/2023-03-01/xhr/time-off-entries'
|
|
463
475
|
|
|
464
476
|
# query parameters
|
|
465
477
|
query_params = opts[:query_params] || {}
|
|
478
|
+
query_params[:'start_date'] = start_date
|
|
479
|
+
query_params[:'end_date'] = end_date
|
|
466
480
|
|
|
467
481
|
# header parameters
|
|
468
482
|
header_params = opts[:header_params] || {}
|
|
@@ -500,26 +514,40 @@ module OpenapiClient
|
|
|
500
514
|
|
|
501
515
|
# Timesheets
|
|
502
516
|
# Retrieve Timesheets
|
|
517
|
+
# @param start_date [Date] The start date of the search period
|
|
518
|
+
# @param end_date [Date] The end date of the search period
|
|
503
519
|
# @param [Hash] opts the optional parameters
|
|
504
520
|
# @return [Array<TimesheetResponse>]
|
|
505
|
-
def xhr_timesheets20230301(opts = {})
|
|
506
|
-
data, _status_code, _headers = xhr_timesheets20230301_with_http_info(opts)
|
|
521
|
+
def xhr_timesheets20230301(start_date, end_date, opts = {})
|
|
522
|
+
data, _status_code, _headers = xhr_timesheets20230301_with_http_info(start_date, end_date, opts)
|
|
507
523
|
data
|
|
508
524
|
end
|
|
509
525
|
|
|
510
526
|
# Timesheets
|
|
511
527
|
# Retrieve Timesheets
|
|
528
|
+
# @param start_date [Date] The start date of the search period
|
|
529
|
+
# @param end_date [Date] The end date of the search period
|
|
512
530
|
# @param [Hash] opts the optional parameters
|
|
513
531
|
# @return [Array<(Array<TimesheetResponse>, Integer, Hash)>] Array<TimesheetResponse> data, response status code and response headers
|
|
514
|
-
def xhr_timesheets20230301_with_http_info(opts = {})
|
|
532
|
+
def xhr_timesheets20230301_with_http_info(start_date, end_date, opts = {})
|
|
515
533
|
if @api_client.config.debugging
|
|
516
534
|
@api_client.config.logger.debug 'Calling API: Class20230301Api.xhr_timesheets20230301 ...'
|
|
517
535
|
end
|
|
536
|
+
# verify the required parameter 'start_date' is set
|
|
537
|
+
if @api_client.config.client_side_validation && start_date.nil?
|
|
538
|
+
fail ArgumentError, "Missing the required parameter 'start_date' when calling Class20230301Api.xhr_timesheets20230301"
|
|
539
|
+
end
|
|
540
|
+
# verify the required parameter 'end_date' is set
|
|
541
|
+
if @api_client.config.client_side_validation && end_date.nil?
|
|
542
|
+
fail ArgumentError, "Missing the required parameter 'end_date' when calling Class20230301Api.xhr_timesheets20230301"
|
|
543
|
+
end
|
|
518
544
|
# resource path
|
|
519
545
|
local_var_path = '/2023-03-01/xhr/timesheets'
|
|
520
546
|
|
|
521
547
|
# query parameters
|
|
522
548
|
query_params = opts[:query_params] || {}
|
|
549
|
+
query_params[:'start_date'] = start_date
|
|
550
|
+
query_params[:'end_date'] = end_date
|
|
523
551
|
|
|
524
552
|
# header parameters
|
|
525
553
|
header_params = opts[:header_params] || {}
|
|
@@ -443,26 +443,40 @@ module OpenapiClient
|
|
|
443
443
|
|
|
444
444
|
# Time off entries
|
|
445
445
|
# Retrieve time off / absence entries
|
|
446
|
+
# @param start_date [Date] The start date of the search period
|
|
447
|
+
# @param end_date [Date] The end date of the search period
|
|
446
448
|
# @param [Hash] opts the optional parameters
|
|
447
449
|
# @return [Array<TimeOffEntryResponse>]
|
|
448
|
-
def xhr_time_off_entries20230301(opts = {})
|
|
449
|
-
data, _status_code, _headers = xhr_time_off_entries20230301_with_http_info(opts)
|
|
450
|
+
def xhr_time_off_entries20230301(start_date, end_date, opts = {})
|
|
451
|
+
data, _status_code, _headers = xhr_time_off_entries20230301_with_http_info(start_date, end_date, opts)
|
|
450
452
|
data
|
|
451
453
|
end
|
|
452
454
|
|
|
453
455
|
# Time off entries
|
|
454
456
|
# Retrieve time off / absence entries
|
|
457
|
+
# @param start_date [Date] The start date of the search period
|
|
458
|
+
# @param end_date [Date] The end date of the search period
|
|
455
459
|
# @param [Hash] opts the optional parameters
|
|
456
460
|
# @return [Array<(Array<TimeOffEntryResponse>, Integer, Hash)>] Array<TimeOffEntryResponse> data, response status code and response headers
|
|
457
|
-
def xhr_time_off_entries20230301_with_http_info(opts = {})
|
|
461
|
+
def xhr_time_off_entries20230301_with_http_info(start_date, end_date, opts = {})
|
|
458
462
|
if @api_client.config.debugging
|
|
459
463
|
@api_client.config.logger.debug 'Calling API: XHRVerticallyIntegratedApi.xhr_time_off_entries20230301 ...'
|
|
460
464
|
end
|
|
465
|
+
# verify the required parameter 'start_date' is set
|
|
466
|
+
if @api_client.config.client_side_validation && start_date.nil?
|
|
467
|
+
fail ArgumentError, "Missing the required parameter 'start_date' when calling XHRVerticallyIntegratedApi.xhr_time_off_entries20230301"
|
|
468
|
+
end
|
|
469
|
+
# verify the required parameter 'end_date' is set
|
|
470
|
+
if @api_client.config.client_side_validation && end_date.nil?
|
|
471
|
+
fail ArgumentError, "Missing the required parameter 'end_date' when calling XHRVerticallyIntegratedApi.xhr_time_off_entries20230301"
|
|
472
|
+
end
|
|
461
473
|
# resource path
|
|
462
474
|
local_var_path = '/2023-03-01/xhr/time-off-entries'
|
|
463
475
|
|
|
464
476
|
# query parameters
|
|
465
477
|
query_params = opts[:query_params] || {}
|
|
478
|
+
query_params[:'start_date'] = start_date
|
|
479
|
+
query_params[:'end_date'] = end_date
|
|
466
480
|
|
|
467
481
|
# header parameters
|
|
468
482
|
header_params = opts[:header_params] || {}
|
|
@@ -500,26 +514,40 @@ module OpenapiClient
|
|
|
500
514
|
|
|
501
515
|
# Timesheets
|
|
502
516
|
# Retrieve Timesheets
|
|
517
|
+
# @param start_date [Date] The start date of the search period
|
|
518
|
+
# @param end_date [Date] The end date of the search period
|
|
503
519
|
# @param [Hash] opts the optional parameters
|
|
504
520
|
# @return [Array<TimesheetResponse>]
|
|
505
|
-
def xhr_timesheets20230301(opts = {})
|
|
506
|
-
data, _status_code, _headers = xhr_timesheets20230301_with_http_info(opts)
|
|
521
|
+
def xhr_timesheets20230301(start_date, end_date, opts = {})
|
|
522
|
+
data, _status_code, _headers = xhr_timesheets20230301_with_http_info(start_date, end_date, opts)
|
|
507
523
|
data
|
|
508
524
|
end
|
|
509
525
|
|
|
510
526
|
# Timesheets
|
|
511
527
|
# Retrieve Timesheets
|
|
528
|
+
# @param start_date [Date] The start date of the search period
|
|
529
|
+
# @param end_date [Date] The end date of the search period
|
|
512
530
|
# @param [Hash] opts the optional parameters
|
|
513
531
|
# @return [Array<(Array<TimesheetResponse>, Integer, Hash)>] Array<TimesheetResponse> data, response status code and response headers
|
|
514
|
-
def xhr_timesheets20230301_with_http_info(opts = {})
|
|
532
|
+
def xhr_timesheets20230301_with_http_info(start_date, end_date, opts = {})
|
|
515
533
|
if @api_client.config.debugging
|
|
516
534
|
@api_client.config.logger.debug 'Calling API: XHRVerticallyIntegratedApi.xhr_timesheets20230301 ...'
|
|
517
535
|
end
|
|
536
|
+
# verify the required parameter 'start_date' is set
|
|
537
|
+
if @api_client.config.client_side_validation && start_date.nil?
|
|
538
|
+
fail ArgumentError, "Missing the required parameter 'start_date' when calling XHRVerticallyIntegratedApi.xhr_timesheets20230301"
|
|
539
|
+
end
|
|
540
|
+
# verify the required parameter 'end_date' is set
|
|
541
|
+
if @api_client.config.client_side_validation && end_date.nil?
|
|
542
|
+
fail ArgumentError, "Missing the required parameter 'end_date' when calling XHRVerticallyIntegratedApi.xhr_timesheets20230301"
|
|
543
|
+
end
|
|
518
544
|
# resource path
|
|
519
545
|
local_var_path = '/2023-03-01/xhr/timesheets'
|
|
520
546
|
|
|
521
547
|
# query parameters
|
|
522
548
|
query_params = opts[:query_params] || {}
|
|
549
|
+
query_params[:'start_date'] = start_date
|
|
550
|
+
query_params[:'end_date'] = end_date
|
|
523
551
|
|
|
524
552
|
# header parameters
|
|
525
553
|
header_params = opts[:header_params] || {}
|
|
@@ -19,7 +19,7 @@ module OpenapiClient
|
|
|
19
19
|
attr_accessor :employee_id
|
|
20
20
|
|
|
21
21
|
# the remote system-assigned id of the individual
|
|
22
|
-
attr_accessor :
|
|
22
|
+
attr_accessor :remote_employee_id
|
|
23
23
|
|
|
24
24
|
attr_accessor :balance
|
|
25
25
|
|
|
@@ -60,7 +60,7 @@ module OpenapiClient
|
|
|
60
60
|
def self.attribute_map
|
|
61
61
|
{
|
|
62
62
|
:'employee_id' => :'employee_id',
|
|
63
|
-
:'
|
|
63
|
+
:'remote_employee_id' => :'remote_employee_id',
|
|
64
64
|
:'balance' => :'balance',
|
|
65
65
|
:'used' => :'used',
|
|
66
66
|
:'policy_name' => :'policy_name',
|
|
@@ -79,7 +79,7 @@ module OpenapiClient
|
|
|
79
79
|
def self.openapi_types
|
|
80
80
|
{
|
|
81
81
|
:'employee_id' => :'String',
|
|
82
|
-
:'
|
|
82
|
+
:'remote_employee_id' => :'String',
|
|
83
83
|
:'balance' => :'Float',
|
|
84
84
|
:'used' => :'Float',
|
|
85
85
|
:'policy_name' => :'String',
|
|
@@ -120,8 +120,8 @@ module OpenapiClient
|
|
|
120
120
|
self.employee_id = attributes[:'employee_id']
|
|
121
121
|
end
|
|
122
122
|
|
|
123
|
-
if attributes.key?(:'
|
|
124
|
-
self.
|
|
123
|
+
if attributes.key?(:'remote_employee_id')
|
|
124
|
+
self.remote_employee_id = attributes[:'remote_employee_id']
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
if attributes.key?(:'balance')
|
|
@@ -157,8 +157,8 @@ module OpenapiClient
|
|
|
157
157
|
invalid_properties.push('invalid value for "employee_id", employee_id cannot be nil.')
|
|
158
158
|
end
|
|
159
159
|
|
|
160
|
-
if @
|
|
161
|
-
invalid_properties.push('invalid value for "
|
|
160
|
+
if @remote_employee_id.nil?
|
|
161
|
+
invalid_properties.push('invalid value for "remote_employee_id", remote_employee_id cannot be nil.')
|
|
162
162
|
end
|
|
163
163
|
|
|
164
164
|
invalid_properties
|
|
@@ -168,7 +168,7 @@ module OpenapiClient
|
|
|
168
168
|
# @return true if the model is valid
|
|
169
169
|
def valid?
|
|
170
170
|
return false if @employee_id.nil?
|
|
171
|
-
return false if @
|
|
171
|
+
return false if @remote_employee_id.nil?
|
|
172
172
|
policy_type_validator = EnumAttributeValidator.new('String', ["null", "vacation", "sick", "personal", "jury_duty", "volunteer", "bereavement"])
|
|
173
173
|
return false unless policy_type_validator.valid?(@policy_type)
|
|
174
174
|
true
|
|
@@ -190,7 +190,7 @@ module OpenapiClient
|
|
|
190
190
|
return true if self.equal?(o)
|
|
191
191
|
self.class == o.class &&
|
|
192
192
|
employee_id == o.employee_id &&
|
|
193
|
-
|
|
193
|
+
remote_employee_id == o.remote_employee_id &&
|
|
194
194
|
balance == o.balance &&
|
|
195
195
|
used == o.used &&
|
|
196
196
|
policy_name == o.policy_name &&
|
|
@@ -208,7 +208,7 @@ module OpenapiClient
|
|
|
208
208
|
# Calculates hash code according to all attributes.
|
|
209
209
|
# @return [Integer] Hash code
|
|
210
210
|
def hash
|
|
211
|
-
[employee_id,
|
|
211
|
+
[employee_id, remote_employee_id, balance, used, policy_name, policy_type, remote_created_at, remote_modified_at].hash
|
|
212
212
|
end
|
|
213
213
|
|
|
214
214
|
# Builds the object from hash
|
|
@@ -24,6 +24,9 @@ module OpenapiClient
|
|
|
24
24
|
# the Affix-assigned id of the individual
|
|
25
25
|
attr_accessor :employee_id
|
|
26
26
|
|
|
27
|
+
# the remote system-assigned id of the individual
|
|
28
|
+
attr_accessor :remote_employee_id
|
|
29
|
+
|
|
27
30
|
attr_accessor :start_date
|
|
28
31
|
|
|
29
32
|
attr_accessor :end_date
|
|
@@ -70,6 +73,7 @@ module OpenapiClient
|
|
|
70
73
|
:'id' => :'id',
|
|
71
74
|
:'remote_id' => :'remote_id',
|
|
72
75
|
:'employee_id' => :'employee_id',
|
|
76
|
+
:'remote_employee_id' => :'remote_employee_id',
|
|
73
77
|
:'start_date' => :'start_date',
|
|
74
78
|
:'end_date' => :'end_date',
|
|
75
79
|
:'amount' => :'amount',
|
|
@@ -93,6 +97,7 @@ module OpenapiClient
|
|
|
93
97
|
:'id' => :'String',
|
|
94
98
|
:'remote_id' => :'String',
|
|
95
99
|
:'employee_id' => :'String',
|
|
100
|
+
:'remote_employee_id' => :'String',
|
|
96
101
|
:'start_date' => :'Date',
|
|
97
102
|
:'end_date' => :'Date',
|
|
98
103
|
:'amount' => :'Float',
|
|
@@ -145,6 +150,10 @@ module OpenapiClient
|
|
|
145
150
|
self.employee_id = attributes[:'employee_id']
|
|
146
151
|
end
|
|
147
152
|
|
|
153
|
+
if attributes.key?(:'remote_employee_id')
|
|
154
|
+
self.remote_employee_id = attributes[:'remote_employee_id']
|
|
155
|
+
end
|
|
156
|
+
|
|
148
157
|
if attributes.key?(:'start_date')
|
|
149
158
|
self.start_date = attributes[:'start_date']
|
|
150
159
|
end
|
|
@@ -198,6 +207,10 @@ module OpenapiClient
|
|
|
198
207
|
invalid_properties.push('invalid value for "employee_id", employee_id cannot be nil.')
|
|
199
208
|
end
|
|
200
209
|
|
|
210
|
+
if @remote_employee_id.nil?
|
|
211
|
+
invalid_properties.push('invalid value for "remote_employee_id", remote_employee_id cannot be nil.')
|
|
212
|
+
end
|
|
213
|
+
|
|
201
214
|
if @amount.nil?
|
|
202
215
|
invalid_properties.push('invalid value for "amount", amount cannot be nil.')
|
|
203
216
|
end
|
|
@@ -215,6 +228,7 @@ module OpenapiClient
|
|
|
215
228
|
return false if @id.nil?
|
|
216
229
|
return false if @remote_id.nil?
|
|
217
230
|
return false if @employee_id.nil?
|
|
231
|
+
return false if @remote_employee_id.nil?
|
|
218
232
|
return false if @amount.nil?
|
|
219
233
|
return false if @unit.nil?
|
|
220
234
|
unit_validator = EnumAttributeValidator.new('String', ["null", "hours", "days", "months"])
|
|
@@ -262,6 +276,7 @@ module OpenapiClient
|
|
|
262
276
|
id == o.id &&
|
|
263
277
|
remote_id == o.remote_id &&
|
|
264
278
|
employee_id == o.employee_id &&
|
|
279
|
+
remote_employee_id == o.remote_employee_id &&
|
|
265
280
|
start_date == o.start_date &&
|
|
266
281
|
end_date == o.end_date &&
|
|
267
282
|
amount == o.amount &&
|
|
@@ -282,7 +297,7 @@ module OpenapiClient
|
|
|
282
297
|
# Calculates hash code according to all attributes.
|
|
283
298
|
# @return [Integer] Hash code
|
|
284
299
|
def hash
|
|
285
|
-
[id, remote_id, employee_id, start_date, end_date, amount, unit, status, employee_note, request_type, remote_created_at, remote_modified_at].hash
|
|
300
|
+
[id, remote_id, employee_id, remote_employee_id, start_date, end_date, amount, unit, status, employee_note, request_type, remote_created_at, remote_modified_at].hash
|
|
286
301
|
end
|
|
287
302
|
|
|
288
303
|
# Builds the object from hash
|
|
@@ -24,6 +24,9 @@ module OpenapiClient
|
|
|
24
24
|
# the Affix-assigned id of the individual
|
|
25
25
|
attr_accessor :employee_id
|
|
26
26
|
|
|
27
|
+
# the remote system-assigned id of the individual
|
|
28
|
+
attr_accessor :remote_employee_id
|
|
29
|
+
|
|
27
30
|
attr_accessor :start_time
|
|
28
31
|
|
|
29
32
|
attr_accessor :end_time
|
|
@@ -40,6 +43,7 @@ module OpenapiClient
|
|
|
40
43
|
:'id' => :'id',
|
|
41
44
|
:'remote_id' => :'remote_id',
|
|
42
45
|
:'employee_id' => :'employee_id',
|
|
46
|
+
:'remote_employee_id' => :'remote_employee_id',
|
|
43
47
|
:'start_time' => :'start_time',
|
|
44
48
|
:'end_time' => :'end_time',
|
|
45
49
|
:'hours_worked' => :'hours_worked',
|
|
@@ -59,6 +63,7 @@ module OpenapiClient
|
|
|
59
63
|
:'id' => :'String',
|
|
60
64
|
:'remote_id' => :'String',
|
|
61
65
|
:'employee_id' => :'String',
|
|
66
|
+
:'remote_employee_id' => :'String',
|
|
62
67
|
:'start_time' => :'Time',
|
|
63
68
|
:'end_time' => :'Time',
|
|
64
69
|
:'hours_worked' => :'Float',
|
|
@@ -104,6 +109,10 @@ module OpenapiClient
|
|
|
104
109
|
self.employee_id = attributes[:'employee_id']
|
|
105
110
|
end
|
|
106
111
|
|
|
112
|
+
if attributes.key?(:'remote_employee_id')
|
|
113
|
+
self.remote_employee_id = attributes[:'remote_employee_id']
|
|
114
|
+
end
|
|
115
|
+
|
|
107
116
|
if attributes.key?(:'start_time')
|
|
108
117
|
self.start_time = attributes[:'start_time']
|
|
109
118
|
end
|
|
@@ -141,6 +150,10 @@ module OpenapiClient
|
|
|
141
150
|
invalid_properties.push('invalid value for "employee_id", employee_id cannot be nil.')
|
|
142
151
|
end
|
|
143
152
|
|
|
153
|
+
if @remote_employee_id.nil?
|
|
154
|
+
invalid_properties.push('invalid value for "remote_employee_id", remote_employee_id cannot be nil.')
|
|
155
|
+
end
|
|
156
|
+
|
|
144
157
|
if @hours_worked.nil?
|
|
145
158
|
invalid_properties.push('invalid value for "hours_worked", hours_worked cannot be nil.')
|
|
146
159
|
end
|
|
@@ -154,6 +167,7 @@ module OpenapiClient
|
|
|
154
167
|
return false if @id.nil?
|
|
155
168
|
return false if @remote_id.nil?
|
|
156
169
|
return false if @employee_id.nil?
|
|
170
|
+
return false if @remote_employee_id.nil?
|
|
157
171
|
return false if @hours_worked.nil?
|
|
158
172
|
true
|
|
159
173
|
end
|
|
@@ -176,6 +190,7 @@ module OpenapiClient
|
|
|
176
190
|
id == o.id &&
|
|
177
191
|
remote_id == o.remote_id &&
|
|
178
192
|
employee_id == o.employee_id &&
|
|
193
|
+
remote_employee_id == o.remote_employee_id &&
|
|
179
194
|
start_time == o.start_time &&
|
|
180
195
|
end_time == o.end_time &&
|
|
181
196
|
hours_worked == o.hours_worked &&
|
|
@@ -192,7 +207,7 @@ module OpenapiClient
|
|
|
192
207
|
# Calculates hash code according to all attributes.
|
|
193
208
|
# @return [Integer] Hash code
|
|
194
209
|
def hash
|
|
195
|
-
[id, remote_id, employee_id, start_time, end_time, hours_worked, remote_created_at, remote_modified_at].hash
|
|
210
|
+
[id, remote_id, employee_id, remote_employee_id, start_time, end_time, hours_worked, remote_created_at, remote_modified_at].hash
|
|
196
211
|
end
|
|
197
212
|
|
|
198
213
|
# Builds the object from hash
|
|
@@ -116,6 +116,8 @@ describe 'Class20230301Api' do
|
|
|
116
116
|
# unit tests for xhr_time_off_entries20230301
|
|
117
117
|
# Time off entries
|
|
118
118
|
# Retrieve time off / absence entries
|
|
119
|
+
# @param start_date The start date of the search period
|
|
120
|
+
# @param end_date The end date of the search period
|
|
119
121
|
# @param [Hash] opts the optional parameters
|
|
120
122
|
# @return [Array<TimeOffEntryResponse>]
|
|
121
123
|
describe 'xhr_time_off_entries20230301 test' do
|
|
@@ -127,6 +129,8 @@ describe 'Class20230301Api' do
|
|
|
127
129
|
# unit tests for xhr_timesheets20230301
|
|
128
130
|
# Timesheets
|
|
129
131
|
# Retrieve Timesheets
|
|
132
|
+
# @param start_date The start date of the search period
|
|
133
|
+
# @param end_date The end date of the search period
|
|
130
134
|
# @param [Hash] opts the optional parameters
|
|
131
135
|
# @return [Array<TimesheetResponse>]
|
|
132
136
|
describe 'xhr_timesheets20230301 test' do
|
|
@@ -116,6 +116,8 @@ describe 'XHRVerticallyIntegratedApi' do
|
|
|
116
116
|
# unit tests for xhr_time_off_entries20230301
|
|
117
117
|
# Time off entries
|
|
118
118
|
# Retrieve time off / absence entries
|
|
119
|
+
# @param start_date The start date of the search period
|
|
120
|
+
# @param end_date The end date of the search period
|
|
119
121
|
# @param [Hash] opts the optional parameters
|
|
120
122
|
# @return [Array<TimeOffEntryResponse>]
|
|
121
123
|
describe 'xhr_time_off_entries20230301 test' do
|
|
@@ -127,6 +129,8 @@ describe 'XHRVerticallyIntegratedApi' do
|
|
|
127
129
|
# unit tests for xhr_timesheets20230301
|
|
128
130
|
# Timesheets
|
|
129
131
|
# Retrieve Timesheets
|
|
132
|
+
# @param start_date The start date of the search period
|
|
133
|
+
# @param end_date The end date of the search period
|
|
130
134
|
# @param [Hash] opts the optional parameters
|
|
131
135
|
# @return [Array<TimesheetResponse>]
|
|
132
136
|
describe 'xhr_timesheets20230301 test' do
|
|
@@ -31,7 +31,7 @@ describe OpenapiClient::TimeOffBalanceResponse do
|
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
describe 'test attribute "
|
|
34
|
+
describe 'test attribute "remote_employee_id"' do
|
|
35
35
|
it 'should work' do
|
|
36
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
37
37
|
end
|
|
@@ -43,6 +43,12 @@ describe OpenapiClient::TimeOffEntryResponse do
|
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
+
describe 'test attribute "remote_employee_id"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
46
52
|
describe 'test attribute "start_date"' do
|
|
47
53
|
it 'should work' do
|
|
48
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -43,6 +43,12 @@ describe OpenapiClient::TimesheetResponse do
|
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
+
describe 'test attribute "remote_employee_id"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
46
52
|
describe 'test attribute "start_time"' do
|
|
47
53
|
it 'should work' do
|
|
48
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
Binary file
|
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-4rq35 sitelibdir\=./.gem.20240506-1776-4rq35 clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-4rq35 sitelibdir\=./.gem.20240506-1776-4rq35
|
|
10
10
|
compiling breakpoint.c
|
|
11
11
|
compiling byebug.c
|
|
12
12
|
byebug.c: In function ‘check_started’:
|
|
@@ -35,8 +35,8 @@ compiling threads.c
|
|
|
35
35
|
linking shared-object byebug/byebug.so
|
|
36
36
|
|
|
37
37
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug
|
|
38
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
|
38
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-4rq35 sitelibdir\=./.gem.20240506-1776-4rq35 install
|
|
39
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20240506-1776-4rq35/byebug
|
|
40
40
|
|
|
41
41
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/byebug-11.1.3/ext/byebug
|
|
42
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
42
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-4rq35 sitelibdir\=./.gem.20240506-1776-4rq35 clean
|
|
Binary file
|
|
@@ -11,10 +11,10 @@ creating extconf.h
|
|
|
11
11
|
creating Makefile
|
|
12
12
|
|
|
13
13
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/ffi-1.16.3/ext/ffi_c
|
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-633lbd sitelibdir\=./.gem.20240506-1776-633lbd clean
|
|
15
15
|
|
|
16
16
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/ffi-1.16.3/ext/ffi_c
|
|
17
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
17
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-633lbd sitelibdir\=./.gem.20240506-1776-633lbd
|
|
18
18
|
compiling AbstractMemory.c
|
|
19
19
|
compiling ArrayType.c
|
|
20
20
|
compiling Buffer.c
|
|
@@ -41,8 +41,8 @@ compiling ffi.c
|
|
|
41
41
|
linking shared-object ffi_c.so
|
|
42
42
|
|
|
43
43
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/ffi-1.16.3/ext/ffi_c
|
|
44
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
45
|
-
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.
|
|
44
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-633lbd sitelibdir\=./.gem.20240506-1776-633lbd install
|
|
45
|
+
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.20240506-1776-633lbd
|
|
46
46
|
|
|
47
47
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/ffi-1.16.3/ext/ffi_c
|
|
48
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
48
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-633lbd sitelibdir\=./.gem.20240506-1776-633lbd clean
|
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-1704v5 sitelibdir\=./.gem.20240506-1776-1704v5 clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-1704v5 sitelibdir\=./.gem.20240506-1776-1704v5
|
|
10
10
|
compiling adj_matrix.c
|
|
11
11
|
adj_matrix.c: In function ‘adj_matrix_default’:
|
|
12
12
|
adj_matrix.c:82:12: warning: old-style function definition [-Wold-style-definition]
|
|
@@ -22,8 +22,8 @@ compiling jaro_winkler.c
|
|
|
22
22
|
linking shared-object jaro_winkler/jaro_winkler_ext.so
|
|
23
23
|
|
|
24
24
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
25
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-1704v5 sitelibdir\=./.gem.20240506-1776-1704v5 install
|
|
26
|
+
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20240506-1776-1704v5/jaro_winkler
|
|
27
27
|
|
|
28
28
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
29
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
29
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-1704v5 sitelibdir\=./.gem.20240506-1776-1704v5 clean
|
|
Binary file
|
|
@@ -3,16 +3,16 @@ current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/racc-1.7.3/ext/racc/cparse
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-g93q70 sitelibdir\=./.gem.20240506-1776-g93q70 clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/racc-1.7.3/ext/racc/cparse
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-g93q70 sitelibdir\=./.gem.20240506-1776-g93q70
|
|
10
10
|
compiling cparse.c
|
|
11
11
|
linking shared-object racc/cparse.so
|
|
12
12
|
|
|
13
13
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/racc-1.7.3/ext/racc/cparse
|
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-g93q70 sitelibdir\=./.gem.20240506-1776-g93q70 install
|
|
15
|
+
/usr/bin/install -c -m 0755 cparse.so ./.gem.20240506-1776-g93q70/racc
|
|
16
16
|
|
|
17
17
|
current directory: /home/runner/work/ruby-sdk/ruby-sdk/vendor/bundle/ruby/3.3.0/gems/racc-1.7.3/ext/racc/cparse
|
|
18
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20240506-1776-g93q70 sitelibdir\=./.gem.20240506-1776-g93q70 clean
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: affixapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.66
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|