dub 0.2.2.pre.alpha.71 → 0.2.2.pre.alpha.72

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: da1035a14b8dcf725e817d2e35a2220a9bce678cbe8c07222390328be6bf3850
4
- data.tar.gz: 8ffc8f7b2492843c7f22cfb466a32592e55642610dc758ad29f9447f137b0355
3
+ metadata.gz: 78960a4098d8855f9d65b9b4574caf171aaeb2e5b9fe7ab1c8256e9a0f7133bc
4
+ data.tar.gz: ee75cdcf2ad61d04fde62bce9f79b9b1ebabd744761100b331f008eed6326fe1
5
5
  SHA512:
6
- metadata.gz: 92ed664d86d44947f66aefadd3a72250e8d3165fb30ebc137235d0f6674ee147f375116e024220df4e7c7cab1450fbb1680a9ca085a4cbc155c983c6a279f6b4
7
- data.tar.gz: 523da6f4acabb14be76f77dab8c6cb8380ea4072f472be56c301b4561260fbdc308a111dc3ff3725f596ea8d616a42344867174339a204823ecb7654391361ea
6
+ metadata.gz: a74376cc190ab3430a97a45afa1cba9f6094bb7a810b0e175272792680c37239b6ec1ee5dd56edbc37f14945160bfaf621ca42e4f408264e6fd6c514ddc7d23c
7
+ data.tar.gz: 713c87faf6a5245e0e3c654f2ef41becb1a20f606778708dc8205018ab87c7a0bfb04171a629ea707263a229e8c06d5096c289073e5996d721c518b3743b94f7
@@ -32,7 +32,7 @@ module OpenApiSDK
32
32
  # Deprecated. Use `tagIds` instead. The tag ID to filter the links by.
33
33
  field :tag_id, T.nilable(::String), { 'query_param': { 'field_name': 'tagId', 'style': 'form', 'explode': true } }
34
34
  # The tag IDs to filter the links by.
35
- field :tag_ids, T.nilable(::Object), { 'query_param': { 'field_name': 'tagIds', 'style': 'form', 'explode': true } }
35
+ field :tag_ids, T.nilable(::Object), { 'query_param': { 'field_name': 'tagIds', 'style': 'form', 'explode': false } }
36
36
  # The unique name of the tags assigned to the short link (case insensitive).
37
37
  field :tag_names, T.nilable(::Object), { 'query_param': { 'field_name': 'tagNames', 'style': 'form', 'explode': true } }
38
38
  # The ID of the tenant that created the link inside your system. If set, will only return links for the specified tenant.
@@ -24,7 +24,7 @@ module OpenApiSDK
24
24
  # Deprecated. Use `tagIds` instead. The tag ID to filter the links by.
25
25
  field :tag_id, T.nilable(::String), { 'query_param': { 'field_name': 'tagId', 'style': 'form', 'explode': true } }
26
26
  # The tag IDs to filter the links by.
27
- field :tag_ids, T.nilable(::Object), { 'query_param': { 'field_name': 'tagIds', 'style': 'form', 'explode': true } }
27
+ field :tag_ids, T.nilable(::Object), { 'query_param': { 'field_name': 'tagIds', 'style': 'form', 'explode': false } }
28
28
  # The unique name of the tags assigned to the short link (case insensitive).
29
29
  field :tag_names, T.nilable(::Object), { 'query_param': { 'field_name': 'tagNames', 'style': 'form', 'explode': true } }
30
30
  # The ID of the tenant that created the link inside your system. If set, will only return links for the specified tenant.
@@ -11,12 +11,21 @@ module OpenApiSDK
11
11
  class ListFoldersRequest < ::Crystalline::FieldAugmented
12
12
  extend T::Sig
13
13
 
14
+ # Whether to include the link count in the response.
15
+ field :include_link_count, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'includeLinkCount', 'style': 'form', 'explode': true } }
16
+ # The page number for pagination.
17
+ field :page, T.nilable(::Float), { 'query_param': { 'field_name': 'page', 'style': 'form', 'explode': true } }
18
+ # The number of items per page.
19
+ field :page_size, T.nilable(::Float), { 'query_param': { 'field_name': 'pageSize', 'style': 'form', 'explode': true } }
14
20
  # The search term to filter the folders by.
15
21
  field :search, T.nilable(::String), { 'query_param': { 'field_name': 'search', 'style': 'form', 'explode': true } }
16
22
 
17
23
 
18
- sig { params(search: T.nilable(::String)).void }
19
- def initialize(search: nil)
24
+ sig { params(include_link_count: T.nilable(T::Boolean), page: T.nilable(::Float), page_size: T.nilable(::Float), search: T.nilable(::String)).void }
25
+ def initialize(include_link_count: nil, page: nil, page_size: nil, search: nil)
26
+ @include_link_count = include_link_count
27
+ @page = page
28
+ @page_size = page_size
20
29
  @search = search
21
30
  end
22
31
  end
@@ -38,9 +38,9 @@ module OpenApiSDK
38
38
  @security = security
39
39
  @language = 'ruby'
40
40
  @openapi_doc_version = '0.0.1'
41
- @sdk_version = '0.2.2-alpha.71'
42
- @gen_version = '2.531.0'
43
- @user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.71 2.531.0 0.0.1 dub'
41
+ @sdk_version = '0.2.2-alpha.72'
42
+ @gen_version = '2.536.0'
43
+ @user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.72 2.536.0 0.0.1 dub'
44
44
  end
45
45
 
46
46
  sig { returns([String, T::Hash[Symbol, String]]) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2.pre.alpha.71
4
+ version: 0.2.2.pre.alpha.72
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dub
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-27 00:00:00.000000000 Z
11
+ date: 2025-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday