pescheck-client 0.4.1 → 0.4.3

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/docs/AuthenticationApi.md +2 -2
  4. data/docs/CustomTokenObtainPair.md +2 -0
  5. data/docs/V2Document.md +1 -1
  6. data/docs/V2ProfileCheck.md +1 -1
  7. data/docs/V2ProfileCheckEntry.md +1 -1
  8. data/docs/V2ProfileUpdateCheck.md +1 -1
  9. data/docs/V2ScreeningCheck.md +1 -1
  10. data/docs/V2ScreeningCheckEntry.md +1 -1
  11. data/docs/V2ScreeningCheckListItem.md +1 -1
  12. data/docs/V2ScreeningCreate.md +3 -1
  13. data/docs/V2ScreeningDetail.md +2 -0
  14. data/docs/V2ScreeningNote.md +24 -0
  15. data/docs/V2ScreeningNoteInput.md +22 -0
  16. data/lib/pescheck-client/api/authentication_api.rb +4 -4
  17. data/lib/pescheck-client/api/profiles_api.rb +1 -1
  18. data/lib/pescheck-client/models/custom_token_obtain_pair.rb +12 -2
  19. data/lib/pescheck-client/models/v2_document.rb +3 -3
  20. data/lib/pescheck-client/models/v2_profile_check.rb +3 -3
  21. data/lib/pescheck-client/models/v2_profile_check_entry.rb +3 -3
  22. data/lib/pescheck-client/models/v2_profile_update_check.rb +3 -3
  23. data/lib/pescheck-client/models/v2_screening_check.rb +3 -3
  24. data/lib/pescheck-client/models/v2_screening_check_entry.rb +3 -3
  25. data/lib/pescheck-client/models/v2_screening_check_list_item.rb +3 -3
  26. data/lib/pescheck-client/models/v2_screening_create.rb +15 -4
  27. data/lib/pescheck-client/models/v2_screening_detail.rb +29 -1
  28. data/lib/pescheck-client/models/v2_screening_note.rb +229 -0
  29. data/lib/pescheck-client/models/v2_screening_note_input.rb +220 -0
  30. data/lib/pescheck-client/version.rb +1 -1
  31. data/lib/pescheck-client.rb +2 -0
  32. data/spec/models/v2_screening_note_input_spec.rb +52 -0
  33. data/spec/models/v2_screening_note_spec.rb +54 -0
  34. metadata +10 -2
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Pescheck API
3
+
4
+ #Official client library for the Pescheck API (v2), generated from the OpenAPI specification. Authenticate with OAuth2 client credentials and use the checks, profiles, screenings, webhooks and divisions endpoints. See https://github.com/pescheckit/pescheck-clients for installation and usage.
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.23.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Pescheck::V2ScreeningNote
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Pescheck::V2ScreeningNote do
21
+ #let(:instance) { Pescheck::V2ScreeningNote.new }
22
+
23
+ describe 'test an instance of V2ScreeningNote' do
24
+ it 'should create an instance of V2ScreeningNote' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Pescheck::V2ScreeningNote)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "note"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "check_type"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "check_id"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "created_at"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pescheck-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pescheck
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-29 00:00:00.000000000 Z
11
+ date: 2026-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -130,6 +130,8 @@ files:
130
130
  - docs/V2ScreeningDetail.md
131
131
  - docs/V2ScreeningDetailProfile.md
132
132
  - docs/V2ScreeningListItem.md
133
+ - docs/V2ScreeningNote.md
134
+ - docs/V2ScreeningNoteInput.md
133
135
  - docs/VerifyWebhook.md
134
136
  - docs/Webhook.md
135
137
  - docs/WebhookResponse.md
@@ -180,6 +182,8 @@ files:
180
182
  - lib/pescheck-client/models/v2_screening_detail.rb
181
183
  - lib/pescheck-client/models/v2_screening_detail_profile.rb
182
184
  - lib/pescheck-client/models/v2_screening_list_item.rb
185
+ - lib/pescheck-client/models/v2_screening_note.rb
186
+ - lib/pescheck-client/models/v2_screening_note_input.rb
183
187
  - lib/pescheck-client/models/verify_webhook.rb
184
188
  - lib/pescheck-client/models/webhook.rb
185
189
  - lib/pescheck-client/models/webhook_response.rb
@@ -225,6 +229,8 @@ files:
225
229
  - spec/models/v2_screening_detail_profile_spec.rb
226
230
  - spec/models/v2_screening_detail_spec.rb
227
231
  - spec/models/v2_screening_list_item_spec.rb
232
+ - spec/models/v2_screening_note_input_spec.rb
233
+ - spec/models/v2_screening_note_spec.rb
228
234
  - spec/models/verify_webhook_spec.rb
229
235
  - spec/models/webhook_response_spec.rb
230
236
  - spec/models/webhook_spec.rb
@@ -266,8 +272,10 @@ test_files:
266
272
  - spec/models/webhook_spec.rb
267
273
  - spec/models/v2_profile_create_spec.rb
268
274
  - spec/models/v2_profile_check_spec.rb
275
+ - spec/models/v2_screening_note_spec.rb
269
276
  - spec/models/paginated_v2_profile_list_item_list_spec.rb
270
277
  - spec/models/custom_token_obtain_pair_spec.rb
278
+ - spec/models/v2_screening_note_input_spec.rb
271
279
  - spec/models/v2_profile_update_check_spec.rb
272
280
  - spec/models/v2_profile_detail_spec.rb
273
281
  - spec/models/v2_candidate_spec.rb