gusto_embedded_client 0.2.9 → 0.2.10
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
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 97ffcda528a2dce68b442f61dc3c2ed9edc274c900491c4c77fd9c41114a0933
         | 
| 4 | 
            +
              data.tar.gz: b60c5be1ff54be9f04c816a3314cf605ab5eb91a69ef9db91c067a394a045d0c
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: f1d8028c3e246a7e22759a3810e02529842582a5d576795efd76ebaa92459006fdb93bea86ad22bea7799e8471f7b88ab1b52156aa93fab35ab7ae043cd89cff
         | 
| 7 | 
            +
              data.tar.gz: 545ea0b0ba1758438d9c0ddaba6379cea67ef09372999fdff7d8bdc4f9845dd598d4daecf317de83832e00f37eb118334d7f96949f676843ef5fa03628a62c02
         | 
| @@ -15,6 +15,8 @@ module GustoEmbedded | |
| 15 15 | 
             
                  field :uuid, ::String, { 'format_json': { 'letter_case': ::GustoEmbedded::Utils.field_name('uuid') } }
         | 
| 16 16 | 
             
                  # Indicates whether a notification requires action or not. If false, the notification provides critical information only.
         | 
| 17 17 | 
             
                  field :actionable, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::GustoEmbedded::Utils.field_name('actionable') } }
         | 
| 18 | 
            +
                  # Indicates whether a notification may block ability to run payroll. If true, we suggest that these notifications are prioritized to your end users.
         | 
| 19 | 
            +
                  field :can_block_payroll, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::GustoEmbedded::Utils.field_name('can_block_payroll') } }
         | 
| 18 20 | 
             
                  # The notification's category.
         | 
| 19 21 | 
             
                  field :category, T.nilable(::String), { 'format_json': { 'letter_case': ::GustoEmbedded::Utils.field_name('category') } }
         | 
| 20 22 | 
             
                  # Unique identifier of the company to which the notification belongs.
         | 
| @@ -31,10 +33,11 @@ module GustoEmbedded | |
| 31 33 | 
             
                  field :title, T.nilable(::String), { 'format_json': { 'letter_case': ::GustoEmbedded::Utils.field_name('title') } }
         | 
| 32 34 |  | 
| 33 35 |  | 
| 34 | 
            -
                  sig { params(uuid: ::String, actionable: T.nilable(T::Boolean), category: T.nilable(::String), company_uuid: T.nilable(::String), due_at: T.nilable(::String), message: T.nilable(::String), published_at: T.nilable(::String), resources: T.nilable(T::Array[::GustoEmbedded::Shared::Resources]), title: T.nilable(::String)).void }
         | 
| 35 | 
            -
                  def initialize(uuid: nil, actionable: nil, category: nil, company_uuid: nil, due_at: nil, message: nil, published_at: nil, resources: nil, title: nil)
         | 
| 36 | 
            +
                  sig { params(uuid: ::String, actionable: T.nilable(T::Boolean), can_block_payroll: T.nilable(T::Boolean), category: T.nilable(::String), company_uuid: T.nilable(::String), due_at: T.nilable(::String), message: T.nilable(::String), published_at: T.nilable(::String), resources: T.nilable(T::Array[::GustoEmbedded::Shared::Resources]), title: T.nilable(::String)).void }
         | 
| 37 | 
            +
                  def initialize(uuid: nil, actionable: nil, can_block_payroll: nil, category: nil, company_uuid: nil, due_at: nil, message: nil, published_at: nil, resources: nil, title: nil)
         | 
| 36 38 | 
             
                    @uuid = uuid
         | 
| 37 39 | 
             
                    @actionable = actionable
         | 
| 40 | 
            +
                    @can_block_payroll = can_block_payroll
         | 
| 38 41 | 
             
                    @category = category
         | 
| 39 42 | 
             
                    @company_uuid = company_uuid
         | 
| 40 43 | 
             
                    @due_at = due_at
         | 
| @@ -196,7 +196,6 @@ module GustoEmbedded | |
| 196 196 | 
             
                  # * Hour and dollar amounts are returned as string representations of numeric decimals.
         | 
| 197 197 | 
             
                  # * Hours are represented to the thousands place; dollar amounts are represented to the cent.
         | 
| 198 198 | 
             
                  # * Every eligible compensation is returned for each employee. If no data has yet be inserted for a given field, it defaults to “0.00” (for fixed amounts) or “0.000” (for hours ).
         | 
| 199 | 
            -
                  # * To return future payrolls, you must include an `end_date` in the future.
         | 
| 200 199 | 
             
                  # * When include parameter with benefits value is passed, employee_benefits:read scope is required to return benefits
         | 
| 201 200 | 
             
                  #   * Benefits containing PHI are only visible with the `employee_benefits:read:phi` scope
         | 
| 202 201 | 
             
                  # 
         | 
| @@ -46,9 +46,9 @@ module GustoEmbedded | |
| 46 46 | 
             
                  end
         | 
| 47 47 | 
             
                  @language = 'ruby'
         | 
| 48 48 | 
             
                  @openapi_doc_version = '2024-04-01'
         | 
| 49 | 
            -
                  @sdk_version = '0.2. | 
| 49 | 
            +
                  @sdk_version = '0.2.10'
         | 
| 50 50 | 
             
                  @gen_version = '2.545.4'
         | 
| 51 | 
            -
                  @user_agent = 'speakeasy-sdk/ruby 0.2. | 
| 51 | 
            +
                  @user_agent = 'speakeasy-sdk/ruby 0.2.10 2.545.4 2024-04-01 gusto_embedded_client'
         | 
| 52 52 | 
             
                end
         | 
| 53 53 |  | 
| 54 54 | 
             
                sig { returns([String, T::Hash[Symbol, String]]) }
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: gusto_embedded_client
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.2. | 
| 4 | 
            +
              version: 0.2.10
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Gusto
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-04- | 
| 11 | 
            +
            date: 2025-04-16 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: faraday
         |