Sha256: eba7915f021cbbc7a65d9793db2ab10c797cc833ef15a42fc8d7d01bc5c8ba1f

Contents?: true

Size: 1.4 KB

Versions: 6

Compression:

Stored size: 1.4 KB

Contents

module PgEventstore
  module Web
    module Subscriptions
      module Helpers
        # _@param_ `set_name`
        def subscriptions_url: (?set_name: String?) -> String

        def subscriptions_state_url: (state: String, **untyped params) -> String

        def subscriptions_state: -> String?

        # _@param_ `set_id`
        #
        # _@param_ `id`
        #
        # _@param_ `cmd`
        def subscription_cmd_url: (Integer set_id, Integer id, String cmd) -> String

        # _@param_ `id`
        #
        # _@param_ `cmd`
        def subscriptions_set_cmd_url: (Integer id, String cmd) -> String

        # _@param_ `cmd_name` — command name
        #
        # _@return_ — command name
        def subscriptions_set_cmd: (String cmd_name) -> String

        # _@param_ `cmd_name`
        def validate_subscriptions_set_cmd: (String cmd_name) -> void

        # _@param_ `cmd_name` — command name
        #
        # _@return_ — command name
        def subscription_cmd: (String cmd_name) -> String

        # _@param_ `cmd_name`
        def validate_subscription_cmd: (String cmd_name) -> void

        # _@param_ `state`
        #
        # _@param_ `updated_at`
        #
        # _@return_ — html status
        def colored_state: (String state, Time updated_at) -> String

        # _@param_ `ids`
        def delete_all_subscriptions_url: (::Array[Integer] ids) -> String
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pg_eventstore-1.4.0 sig/pg_eventstore/web/subscriptions/helpers.rbs
pg_eventstore-1.3.4 sig/pg_eventstore/web/subscriptions/helpers.rbs
pg_eventstore-1.3.3 sig/pg_eventstore/web/subscriptions/helpers.rbs
pg_eventstore-1.3.2 sig/pg_eventstore/web/subscriptions/helpers.rbs
pg_eventstore-1.3.1 sig/pg_eventstore/web/subscriptions/helpers.rbs
pg_eventstore-1.3.0 sig/pg_eventstore/web/subscriptions/helpers.rbs