dub 0.2.2.pre.alpha.77 → 0.2.2.pre.alpha.78
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: a9d0c6fc13ae910b5cfc25832002d5204dd0da7a1f5ce60a480f594107456372
|
4
|
+
data.tar.gz: 245931338bb119060274847dc4438b1b4e368ed63cb61691ea3df0105293113d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcb67a93a385eb338068ec26a40fee0b29426236c4d8ae23b1ed4aa09ecfe1aac233d8e064b490fda5af620f19343c97665c0951e64d9bc55d2a0dc6a341f8ab
|
7
|
+
data.tar.gz: 6fdfa5f82a094263fa293834344605529108556415bfeeba54726465b46edf44b78a94186ba73cf27800797c9b53469fbf3b8bf15af9b130ac64f0592cb0c57e
|
@@ -10,9 +10,11 @@ module OpenApiSDK
|
|
10
10
|
|
11
11
|
class Status < T::Enum
|
12
12
|
enums do
|
13
|
+
INVITED = new('invited')
|
13
14
|
APPROVED = new('approved')
|
14
|
-
PENDING = new('pending')
|
15
15
|
REJECTED = new('rejected')
|
16
|
+
DECLINED = new('declined')
|
17
|
+
PENDING = new('pending')
|
16
18
|
end
|
17
19
|
end
|
18
20
|
end
|
@@ -11,8 +11,12 @@ module OpenApiSDK
|
|
11
11
|
class DomainSchema < ::Crystalline::FieldAugmented
|
12
12
|
extend T::Sig
|
13
13
|
|
14
|
+
# apple-app-site-association configuration file (for deep link support on iOS).
|
15
|
+
field :apple_app_site_association, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('appleAppSiteAssociation') } }
|
14
16
|
# Whether the domain is archived.
|
15
17
|
field :archived, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('archived') } }
|
18
|
+
# assetLinks.json configuration file (for deep link support on Android).
|
19
|
+
field :asset_links, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('assetLinks') } }
|
16
20
|
# The date the domain was created.
|
17
21
|
field :created_at, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('createdAt') } }
|
18
22
|
# The URL to redirect to when a link under this domain has expired.
|
@@ -37,9 +41,11 @@ module OpenApiSDK
|
|
37
41
|
field :verified, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('verified') } }
|
38
42
|
|
39
43
|
|
40
|
-
sig { params(archived: T::Boolean, created_at: ::String, expired_url: ::String, id: ::String, logo: ::String, not_found_url: ::String, placeholder: ::String, primary: T::Boolean, registered_domain: ::OpenApiSDK::Shared::RegisteredDomain, slug: ::String, updated_at: ::String, verified: T::Boolean).void }
|
41
|
-
def initialize(archived: nil, created_at: nil, expired_url: nil, id: nil, logo: nil, not_found_url: nil, placeholder: nil, primary: nil, registered_domain: nil, slug: nil, updated_at: nil, verified: nil)
|
44
|
+
sig { params(apple_app_site_association: ::String, archived: T::Boolean, asset_links: ::String, created_at: ::String, expired_url: ::String, id: ::String, logo: ::String, not_found_url: ::String, placeholder: ::String, primary: T::Boolean, registered_domain: ::OpenApiSDK::Shared::RegisteredDomain, slug: ::String, updated_at: ::String, verified: T::Boolean).void }
|
45
|
+
def initialize(apple_app_site_association: nil, archived: nil, asset_links: nil, created_at: nil, expired_url: nil, id: nil, logo: nil, not_found_url: nil, placeholder: nil, primary: nil, registered_domain: nil, slug: nil, updated_at: nil, verified: nil)
|
46
|
+
@apple_app_site_association = apple_app_site_association
|
42
47
|
@archived = archived
|
48
|
+
@asset_links = asset_links
|
43
49
|
@created_at = created_at
|
44
50
|
@expired_url = expired_url
|
45
51
|
@id = id
|
@@ -54,9 +54,9 @@ module OpenApiSDK
|
|
54
54
|
end
|
55
55
|
@language = 'ruby'
|
56
56
|
@openapi_doc_version = '0.0.1'
|
57
|
-
@sdk_version = '0.2.2-alpha.
|
57
|
+
@sdk_version = '0.2.2-alpha.78'
|
58
58
|
@gen_version = '2.548.6'
|
59
|
-
@user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.
|
59
|
+
@user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.78 2.548.6 0.0.1 dub'
|
60
60
|
end
|
61
61
|
|
62
62
|
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.
|
4
|
+
version: 0.2.2.pre.alpha.78
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|