stackone_client 0.2.24 → 0.2.25

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 (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/stack_one/models/shared/atsdocumentapimodel.rb +11 -3
  3. data/lib/stack_one/models/shared/atsdocumentapimodel_schemas_value.rb +32 -0
  4. data/lib/stack_one/models/shared/atsdocumentapimodel_type.rb +2 -2
  5. data/lib/stack_one/models/shared/atsdocumentapimodel_value.rb +1210 -13
  6. data/lib/stack_one/models/shared/content.rb +2 -2
  7. data/lib/stack_one/models/shared/content_file_format.rb +27 -0
  8. data/lib/stack_one/models/shared/document.rb +11 -3
  9. data/lib/stack_one/models/shared/file_format.rb +2 -2
  10. data/lib/stack_one/models/shared/hriscreateworkeligibilityrequestdto_file_format.rb +27 -0
  11. data/lib/stack_one/models/shared/hriscreateworkeligibilityrequestdto_schemas_document_value.rb +1227 -0
  12. data/lib/stack_one/models/shared/hrisdocumentapimodel.rb +11 -3
  13. data/lib/stack_one/models/shared/hrisdocumentapimodel_file_format.rb +27 -0
  14. data/lib/stack_one/models/shared/hrisdocumentapimodel_schemas_type_value.rb +41 -0
  15. data/lib/stack_one/models/shared/hrisdocumentapimodel_schemas_value.rb +1210 -23
  16. data/lib/stack_one/models/shared/hrisdocumentapimodel_type.rb +2 -2
  17. data/lib/stack_one/models/shared/hrisdocumentapimodel_value.rb +1 -0
  18. data/lib/stack_one/models/shared/hrisdocumentsuploadrequestdto_value.rb +1 -0
  19. data/lib/stack_one/models/shared/workeligibility_document.rb +11 -3
  20. data/lib/stack_one/models/shared/workeligibility_file_format.rb +27 -0
  21. data/lib/stack_one/models/shared/workeligibility_schemas_document_value.rb +1227 -0
  22. data/lib/stack_one/models/shared.rb +9 -1
  23. data/lib/stack_one/sdkconfiguration.rb +3 -3
  24. metadata +10 -2
@@ -13,10 +13,14 @@ module StackOne
13
13
 
14
14
  # The category of the the document
15
15
  field :category, T.nilable(::StackOne::Shared::HrisDocumentApiModelCategory), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('category') } }
16
- # The content of the file
16
+ # The content of the file. Deprecated, use `url` and `file_format` one level up instead
17
+ #
18
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
17
19
  field :contents, T.nilable(T::Array[::StackOne::Shared::Content]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('contents') } }
18
20
  # The creation date of the file
19
21
  field :created_at, T.nilable(::DateTime), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
22
+ # The file format of the file
23
+ field :file_format, T.nilable(::StackOne::Shared::HrisDocumentApiModelFileFormat), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('file_format') } }
20
24
  # Unique identifier
21
25
  field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
22
26
  # The name of the file
@@ -25,6 +29,8 @@ module StackOne
25
29
  field :path, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('path') } }
26
30
  # Provider's unique identifier
27
31
  field :remote_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_id') } }
32
+ # URL where the file content is located
33
+ field :remote_url, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_url') } }
28
34
  # The content type of the document
29
35
  #
30
36
  # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
@@ -33,15 +39,17 @@ module StackOne
33
39
  field :updated_at, T.nilable(::DateTime), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('updated_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
34
40
 
35
41
 
36
- sig { params(category: T.nilable(::StackOne::Shared::HrisDocumentApiModelCategory), contents: T.nilable(T::Array[::StackOne::Shared::Content]), created_at: T.nilable(::DateTime), id: T.nilable(::String), name: T.nilable(::String), path: T.nilable(::String), remote_id: T.nilable(::String), type: T.nilable(::StackOne::Shared::HrisDocumentApiModelType), updated_at: T.nilable(::DateTime)).void }
37
- def initialize(category: nil, contents: nil, created_at: nil, id: nil, name: nil, path: nil, remote_id: nil, type: nil, updated_at: nil)
42
+ sig { params(category: T.nilable(::StackOne::Shared::HrisDocumentApiModelCategory), contents: T.nilable(T::Array[::StackOne::Shared::Content]), created_at: T.nilable(::DateTime), file_format: T.nilable(::StackOne::Shared::HrisDocumentApiModelFileFormat), id: T.nilable(::String), name: T.nilable(::String), path: T.nilable(::String), remote_id: T.nilable(::String), remote_url: T.nilable(::String), type: T.nilable(::StackOne::Shared::HrisDocumentApiModelType), updated_at: T.nilable(::DateTime)).void }
43
+ def initialize(category: nil, contents: nil, created_at: nil, file_format: nil, id: nil, name: nil, path: nil, remote_id: nil, remote_url: nil, type: nil, updated_at: nil)
38
44
  @category = category
39
45
  @contents = contents
40
46
  @created_at = created_at
47
+ @file_format = file_format
41
48
  @id = id
42
49
  @name = name
43
50
  @path = path
44
51
  @remote_id = remote_id
52
+ @remote_url = remote_url
45
53
  @type = type
46
54
  @updated_at = updated_at
47
55
  end
@@ -0,0 +1,27 @@
1
+ # Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
2
+
3
+ # typed: true
4
+ # frozen_string_literal: true
5
+
6
+
7
+ module StackOne
8
+ module Shared
9
+
10
+ # The file format of the file
11
+ class HrisDocumentApiModelFileFormat < ::StackOne::Utils::FieldAugmented
12
+ extend T::Sig
13
+
14
+
15
+ field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } }
16
+ # The file format of the file, expressed as a file extension
17
+ field :value, T.nilable(::StackOne::Shared::HrisDocumentApiModelSchemasValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::HrisDocumentApiModelSchemasValue, true) } }
18
+
19
+
20
+ sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::HrisDocumentApiModelSchemasValue)).void }
21
+ def initialize(source_value: nil, value: nil)
22
+ @source_value = source_value
23
+ @value = value
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,41 @@
1
+ # Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
2
+
3
+ # typed: true
4
+ # frozen_string_literal: true
5
+
6
+
7
+ module StackOne
8
+ module Shared
9
+
10
+ # HrisDocumentApiModelSchemasTypeValue - The category of the file
11
+ class HrisDocumentApiModelSchemasTypeValue < T::Enum
12
+ enums do
13
+ APPLICATION = new('application')
14
+ ACADEMIC = new('academic')
15
+ CONTRACT = new('contract')
16
+ CERTIFICATES = new('certificates')
17
+ VISA = new('visa')
18
+ PASSPORT = new('passport')
19
+ DRIVER_LICENSE = new('driver_license')
20
+ PAYSLIP = new('payslip')
21
+ PAYROLL = new('payroll')
22
+ APPRAISAL = new('appraisal')
23
+ RESUME = new('resume')
24
+ POLICY = new('policy')
25
+ COVER_LETTER = new('cover_letter')
26
+ OFFER_LETTER = new('offer_letter')
27
+ POLICY_AGREEMENT = new('policy_agreement')
28
+ HOME_ADDRESS = new('home_address')
29
+ NATIONAL_ID = new('national_id')
30
+ CONFIDENTIAL = new('confidential')
31
+ SIGNED = new('signed')
32
+ SHARED = new('shared')
33
+ OTHER = new('other')
34
+ BENEFIT = new('benefit')
35
+ ID_VERIFICATION = new('id_verification')
36
+ UNMAPPED_VALUE = new('unmapped_value')
37
+ end
38
+ end
39
+
40
+ end
41
+ end