dub 0.2.2.pre.alpha.9 → 0.2.2.pre.alpha.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 +4 -4
- data/lib/open_api_sdk/links.rb +78 -0
- data/lib/open_api_sdk/models/operations/bulkdeletelinks_request.rb +24 -0
- data/lib/open_api_sdk/models/operations/bulkdeletelinks_response.rb +60 -0
- data/lib/open_api_sdk/models/operations/bulkdeletelinks_responsebody.rb +24 -0
- data/lib/open_api_sdk/models/operations/click.rb +2 -38
- data/lib/open_api_sdk/models/operations/sale.rb +5 -2
- data/lib/open_api_sdk/models/operations/tracklead_responsebody.rb +2 -8
- data/lib/open_api_sdk/models/operations/tracksale_responsebody.rb +2 -8
- data/lib/open_api_sdk/models/operations.rb +4 -6
- data/lib/open_api_sdk/sdkconfiguration.rb +3 -3
- metadata +5 -7
- data/lib/open_api_sdk/models/operations/geo.rb +0 -771
- data/lib/open_api_sdk/models/operations/link.rb +0 -135
- data/lib/open_api_sdk/models/operations/tracksale_click.rb +0 -60
- data/lib/open_api_sdk/models/operations/tracksale_geo.rb +0 -771
- data/lib/open_api_sdk/models/operations/tracksale_link.rb +0 -135
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8db1512c7a4808cd1d15cc2102c22af7553215591429c5bc7aa0488570ef2fc6
|
|
4
|
+
data.tar.gz: eedb5e4d7a9c0df1729e616bbff942ca6e994a31184eb98e48131557e1a98245
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c68d87b183f52ae4b37233c6b84b2dd6a954b6ceffcc23f348b02d967b36c2eed8ab9960d68ecd234608be549ee9d9d559901c917300c10d5d6e8034d5d4b464
|
|
7
|
+
data.tar.gz: 96874b111c1b07203c588bb3ef705e7b9d6dc7d585cec6dee6564e5fd3ea516dd01399158a2dfb288afcd5c83d14b4a5b3f4a270cd3561a18f49d8c675c04f19
|
data/lib/open_api_sdk/links.rb
CHANGED
|
@@ -594,6 +594,84 @@ module OpenApiSDK
|
|
|
594
594
|
end
|
|
595
595
|
|
|
596
596
|
|
|
597
|
+
sig { params(request: T.nilable(::OpenApiSDK::Operations::BulkDeleteLinksRequest)).returns(::OpenApiSDK::Operations::BulkDeleteLinksResponse) }
|
|
598
|
+
def delete_many(request)
|
|
599
|
+
# delete_many - Bulk delete links
|
|
600
|
+
# Bulk delete up to 100 links for the authenticated workspace.
|
|
601
|
+
url, params = @sdk_configuration.get_server_details
|
|
602
|
+
base_url = Utils.template_url(url, params)
|
|
603
|
+
url = "#{base_url}/links/bulk"
|
|
604
|
+
headers = {}
|
|
605
|
+
query_params = Utils.get_query_params(::OpenApiSDK::Operations::BulkDeleteLinksRequest, request)
|
|
606
|
+
headers['Accept'] = 'application/json'
|
|
607
|
+
headers['user-agent'] = @sdk_configuration.user_agent
|
|
608
|
+
|
|
609
|
+
r = @sdk_configuration.client.delete(url) do |req|
|
|
610
|
+
req.headers = headers
|
|
611
|
+
req.params = query_params
|
|
612
|
+
Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
|
|
616
|
+
|
|
617
|
+
res = ::OpenApiSDK::Operations::BulkDeleteLinksResponse.new(
|
|
618
|
+
status_code: r.status, content_type: content_type, raw_response: r
|
|
619
|
+
)
|
|
620
|
+
if r.status == 200
|
|
621
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
622
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::BulkDeleteLinksResponseBody)
|
|
623
|
+
res.object = out
|
|
624
|
+
end
|
|
625
|
+
elsif r.status == 400
|
|
626
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
627
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::BadRequest)
|
|
628
|
+
res.bad_request = out
|
|
629
|
+
end
|
|
630
|
+
elsif r.status == 401
|
|
631
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
632
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::Unauthorized)
|
|
633
|
+
res.unauthorized = out
|
|
634
|
+
end
|
|
635
|
+
elsif r.status == 403
|
|
636
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
637
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::Forbidden)
|
|
638
|
+
res.forbidden = out
|
|
639
|
+
end
|
|
640
|
+
elsif r.status == 404
|
|
641
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
642
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::NotFound)
|
|
643
|
+
res.not_found = out
|
|
644
|
+
end
|
|
645
|
+
elsif r.status == 409
|
|
646
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
647
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::Conflict)
|
|
648
|
+
res.conflict = out
|
|
649
|
+
end
|
|
650
|
+
elsif r.status == 410
|
|
651
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
652
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::InviteExpired)
|
|
653
|
+
res.invite_expired = out
|
|
654
|
+
end
|
|
655
|
+
elsif r.status == 422
|
|
656
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
657
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::UnprocessableEntity)
|
|
658
|
+
res.unprocessable_entity = out
|
|
659
|
+
end
|
|
660
|
+
elsif r.status == 429
|
|
661
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
662
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::RateLimitExceeded)
|
|
663
|
+
res.rate_limit_exceeded = out
|
|
664
|
+
end
|
|
665
|
+
elsif r.status == 500
|
|
666
|
+
if Utils.match_content_type(content_type, 'application/json')
|
|
667
|
+
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Shared::InternalServerError)
|
|
668
|
+
res.internal_server_error = out
|
|
669
|
+
end
|
|
670
|
+
end
|
|
671
|
+
res
|
|
672
|
+
end
|
|
673
|
+
|
|
674
|
+
|
|
597
675
|
sig { params(request: T.nilable(::OpenApiSDK::Operations::BulkUpdateLinksRequestBody)).returns(::OpenApiSDK::Operations::BulkUpdateLinksResponse) }
|
|
598
676
|
def update_many(request)
|
|
599
677
|
# update_many - Bulk update links
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class BulkDeleteLinksRequest < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# Comma-separated list of link IDs to delete. Maximum of 100 IDs. Non-existing IDs will be ignored.
|
|
15
|
+
field :link_ids, ::String, { 'query_param': { 'field_name': 'linkIds', 'style': 'form', 'explode': true } }
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
sig { params(link_ids: ::String).void }
|
|
19
|
+
def initialize(link_ids: nil)
|
|
20
|
+
@link_ids = link_ids
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class BulkDeleteLinksResponse < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# HTTP response content type for this operation
|
|
15
|
+
field :content_type, ::String
|
|
16
|
+
# Raw HTTP response; suitable for custom response parsing
|
|
17
|
+
field :raw_response, ::Faraday::Response
|
|
18
|
+
# HTTP response status code for this operation
|
|
19
|
+
field :status_code, ::Integer
|
|
20
|
+
# The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
|
|
21
|
+
field :bad_request, T.nilable(::OpenApiSDK::Shared::BadRequest)
|
|
22
|
+
# This response is sent when a request conflicts with the current state of the server.
|
|
23
|
+
field :conflict, T.nilable(::OpenApiSDK::Shared::Conflict)
|
|
24
|
+
# The client does not have access rights to the content; that is, it is unauthorized, so the server is refusing to give the requested resource. Unlike 401 Unauthorized, the client's identity is known to the server.
|
|
25
|
+
field :forbidden, T.nilable(::OpenApiSDK::Shared::Forbidden)
|
|
26
|
+
# The server has encountered a situation it does not know how to handle.
|
|
27
|
+
field :internal_server_error, T.nilable(::OpenApiSDK::Shared::InternalServerError)
|
|
28
|
+
# This response is sent when the requested content has been permanently deleted from server, with no forwarding address.
|
|
29
|
+
field :invite_expired, T.nilable(::OpenApiSDK::Shared::InviteExpired)
|
|
30
|
+
# The server cannot find the requested resource.
|
|
31
|
+
field :not_found, T.nilable(::OpenApiSDK::Shared::NotFound)
|
|
32
|
+
# The deleted links count.
|
|
33
|
+
field :object, T.nilable(::OpenApiSDK::Operations::BulkDeleteLinksResponseBody)
|
|
34
|
+
# The user has sent too many requests in a given amount of time ("rate limiting")
|
|
35
|
+
field :rate_limit_exceeded, T.nilable(::OpenApiSDK::Shared::RateLimitExceeded)
|
|
36
|
+
# Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.
|
|
37
|
+
field :unauthorized, T.nilable(::OpenApiSDK::Shared::Unauthorized)
|
|
38
|
+
# The request was well-formed but was unable to be followed due to semantic errors.
|
|
39
|
+
field :unprocessable_entity, T.nilable(::OpenApiSDK::Shared::UnprocessableEntity)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, bad_request: T.nilable(::OpenApiSDK::Shared::BadRequest), conflict: T.nilable(::OpenApiSDK::Shared::Conflict), forbidden: T.nilable(::OpenApiSDK::Shared::Forbidden), internal_server_error: T.nilable(::OpenApiSDK::Shared::InternalServerError), invite_expired: T.nilable(::OpenApiSDK::Shared::InviteExpired), not_found: T.nilable(::OpenApiSDK::Shared::NotFound), object: T.nilable(::OpenApiSDK::Operations::BulkDeleteLinksResponseBody), rate_limit_exceeded: T.nilable(::OpenApiSDK::Shared::RateLimitExceeded), unauthorized: T.nilable(::OpenApiSDK::Shared::Unauthorized), unprocessable_entity: T.nilable(::OpenApiSDK::Shared::UnprocessableEntity)).void }
|
|
43
|
+
def initialize(content_type: nil, raw_response: nil, status_code: nil, bad_request: nil, conflict: nil, forbidden: nil, internal_server_error: nil, invite_expired: nil, not_found: nil, object: nil, rate_limit_exceeded: nil, unauthorized: nil, unprocessable_entity: nil)
|
|
44
|
+
@content_type = content_type
|
|
45
|
+
@raw_response = raw_response
|
|
46
|
+
@status_code = status_code
|
|
47
|
+
@bad_request = bad_request
|
|
48
|
+
@conflict = conflict
|
|
49
|
+
@forbidden = forbidden
|
|
50
|
+
@internal_server_error = internal_server_error
|
|
51
|
+
@invite_expired = invite_expired
|
|
52
|
+
@not_found = not_found
|
|
53
|
+
@object = object
|
|
54
|
+
@rate_limit_exceeded = rate_limit_exceeded
|
|
55
|
+
@unauthorized = unauthorized
|
|
56
|
+
@unprocessable_entity = unprocessable_entity
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
# The deleted links count.
|
|
11
|
+
class BulkDeleteLinksResponseBody < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# The number of links deleted.
|
|
15
|
+
field :deleted_count, ::Float, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('deletedCount') } }
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
sig { params(deleted_count: ::Float).void }
|
|
19
|
+
def initialize(deleted_count: nil)
|
|
20
|
+
@deleted_count = deleted_count
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -12,48 +12,12 @@ module OpenApiSDK
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
field :bot, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('bot') } }
|
|
16
|
-
|
|
17
|
-
field :browser, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('browser') } }
|
|
18
|
-
|
|
19
|
-
field :city, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('city') } }
|
|
20
|
-
|
|
21
|
-
field :continent, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('continent') } }
|
|
22
|
-
|
|
23
|
-
field :country, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('country') } }
|
|
24
|
-
|
|
25
|
-
field :device, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('device') } }
|
|
26
|
-
|
|
27
15
|
field :id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('id') } }
|
|
28
16
|
|
|
29
|
-
field :ip, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('ip') } }
|
|
30
|
-
|
|
31
|
-
field :os, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('os') } }
|
|
32
|
-
|
|
33
|
-
field :qr, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('qr') } }
|
|
34
|
-
|
|
35
|
-
field :referer, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('referer') } }
|
|
36
|
-
|
|
37
|
-
field :ua, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('ua') } }
|
|
38
|
-
|
|
39
|
-
field :url, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('url') } }
|
|
40
|
-
|
|
41
17
|
|
|
42
|
-
sig { params(
|
|
43
|
-
def initialize(
|
|
44
|
-
@bot = bot
|
|
45
|
-
@browser = browser
|
|
46
|
-
@city = city
|
|
47
|
-
@continent = continent
|
|
48
|
-
@country = country
|
|
49
|
-
@device = device
|
|
18
|
+
sig { params(id: ::String).void }
|
|
19
|
+
def initialize(id: nil)
|
|
50
20
|
@id = id
|
|
51
|
-
@ip = ip
|
|
52
|
-
@os = os
|
|
53
|
-
@qr = qr
|
|
54
|
-
@referer = referer
|
|
55
|
-
@ua = ua
|
|
56
|
-
@url = url
|
|
57
21
|
end
|
|
58
22
|
end
|
|
59
23
|
end
|
|
@@ -18,14 +18,17 @@ module OpenApiSDK
|
|
|
18
18
|
|
|
19
19
|
field :invoice_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('invoiceId') } }
|
|
20
20
|
|
|
21
|
+
field :metadata, T::Hash[Symbol, ::Object], { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('metadata') } }
|
|
22
|
+
|
|
21
23
|
field :payment_processor, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('paymentProcessor') } }
|
|
22
24
|
|
|
23
25
|
|
|
24
|
-
sig { params(amount: ::Float, currency: ::String, invoice_id: ::String, payment_processor: ::String).void }
|
|
25
|
-
def initialize(amount: nil, currency: nil, invoice_id: nil, payment_processor: nil)
|
|
26
|
+
sig { params(amount: ::Float, currency: ::String, invoice_id: ::String, metadata: T::Hash[Symbol, ::Object], payment_processor: ::String).void }
|
|
27
|
+
def initialize(amount: nil, currency: nil, invoice_id: nil, metadata: nil, payment_processor: nil)
|
|
26
28
|
@amount = amount
|
|
27
29
|
@currency = currency
|
|
28
30
|
@invoice_id = invoice_id
|
|
31
|
+
@metadata = metadata
|
|
29
32
|
@payment_processor = payment_processor
|
|
30
33
|
end
|
|
31
34
|
end
|
|
@@ -16,17 +16,11 @@ module OpenApiSDK
|
|
|
16
16
|
|
|
17
17
|
field :customer, ::OpenApiSDK::Operations::Customer, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customer') } }
|
|
18
18
|
|
|
19
|
-
field :event_name, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('eventName') } }
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
sig { params(click: ::OpenApiSDK::Operations::Click, customer: ::OpenApiSDK::Operations::Customer, event_name: ::String, link: ::OpenApiSDK::Operations::Link).void }
|
|
25
|
-
def initialize(click: nil, customer: nil, event_name: nil, link: nil)
|
|
20
|
+
sig { params(click: ::OpenApiSDK::Operations::Click, customer: ::OpenApiSDK::Operations::Customer).void }
|
|
21
|
+
def initialize(click: nil, customer: nil)
|
|
26
22
|
@click = click
|
|
27
23
|
@customer = customer
|
|
28
|
-
@event_name = event_name
|
|
29
|
-
@link = link
|
|
30
24
|
end
|
|
31
25
|
end
|
|
32
26
|
end
|
|
@@ -12,23 +12,17 @@ module OpenApiSDK
|
|
|
12
12
|
extend T::Sig
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
field :click, ::OpenApiSDK::Operations::TrackSaleClick, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('click') } }
|
|
16
|
-
|
|
17
15
|
field :customer, ::OpenApiSDK::Operations::TrackSaleCustomer, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('customer') } }
|
|
18
16
|
|
|
19
17
|
field :event_name, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('eventName') } }
|
|
20
18
|
|
|
21
|
-
field :link, ::OpenApiSDK::Operations::TrackSaleLink, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('link') } }
|
|
22
|
-
|
|
23
19
|
field :sale, ::OpenApiSDK::Operations::Sale, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('sale') } }
|
|
24
20
|
|
|
25
21
|
|
|
26
|
-
sig { params(
|
|
27
|
-
def initialize(
|
|
28
|
-
@click = click
|
|
22
|
+
sig { params(customer: ::OpenApiSDK::Operations::TrackSaleCustomer, event_name: ::String, sale: ::OpenApiSDK::Operations::Sale).void }
|
|
23
|
+
def initialize(customer: nil, event_name: nil, sale: nil)
|
|
29
24
|
@customer = customer
|
|
30
25
|
@event_name = event_name
|
|
31
|
-
@link = link
|
|
32
26
|
@sale = sale
|
|
33
27
|
end
|
|
34
28
|
end
|
|
@@ -22,6 +22,9 @@ module OpenApiSDK
|
|
|
22
22
|
autoload :UpdateLinkResponse, 'open_api_sdk/models/operations/updatelink_response.rb'
|
|
23
23
|
autoload :RequestBody, 'open_api_sdk/models/operations/requestbody.rb'
|
|
24
24
|
autoload :BulkCreateLinksResponse, 'open_api_sdk/models/operations/bulkcreatelinks_response.rb'
|
|
25
|
+
autoload :BulkDeleteLinksRequest, 'open_api_sdk/models/operations/bulkdeletelinks_request.rb'
|
|
26
|
+
autoload :BulkDeleteLinksResponseBody, 'open_api_sdk/models/operations/bulkdeletelinks_responsebody.rb'
|
|
27
|
+
autoload :BulkDeleteLinksResponse, 'open_api_sdk/models/operations/bulkdeletelinks_response.rb'
|
|
25
28
|
autoload :Data, 'open_api_sdk/models/operations/data.rb'
|
|
26
29
|
autoload :BulkUpdateLinksRequestBody, 'open_api_sdk/models/operations/bulkupdatelinks_requestbody.rb'
|
|
27
30
|
autoload :BulkUpdateLinksResponse, 'open_api_sdk/models/operations/bulkupdatelinks_response.rb'
|
|
@@ -65,19 +68,14 @@ module OpenApiSDK
|
|
|
65
68
|
autoload :UpdateDomainRequest, 'open_api_sdk/models/operations/updatedomain_request.rb'
|
|
66
69
|
autoload :UpdateDomainResponse, 'open_api_sdk/models/operations/updatedomain_response.rb'
|
|
67
70
|
autoload :TrackLeadRequestBody, 'open_api_sdk/models/operations/tracklead_requestbody.rb'
|
|
68
|
-
autoload :Customer, 'open_api_sdk/models/operations/customer.rb'
|
|
69
71
|
autoload :Click, 'open_api_sdk/models/operations/click.rb'
|
|
70
|
-
autoload :
|
|
71
|
-
autoload :Link, 'open_api_sdk/models/operations/link.rb'
|
|
72
|
+
autoload :Customer, 'open_api_sdk/models/operations/customer.rb'
|
|
72
73
|
autoload :TrackLeadResponseBody, 'open_api_sdk/models/operations/tracklead_responsebody.rb'
|
|
73
74
|
autoload :TrackLeadResponse, 'open_api_sdk/models/operations/tracklead_response.rb'
|
|
74
75
|
autoload :PaymentProcessor, 'open_api_sdk/models/operations/paymentprocessor.rb'
|
|
75
76
|
autoload :TrackSaleRequestBody, 'open_api_sdk/models/operations/tracksale_requestbody.rb'
|
|
76
77
|
autoload :TrackSaleCustomer, 'open_api_sdk/models/operations/tracksale_customer.rb'
|
|
77
78
|
autoload :Sale, 'open_api_sdk/models/operations/sale.rb'
|
|
78
|
-
autoload :TrackSaleClick, 'open_api_sdk/models/operations/tracksale_click.rb'
|
|
79
|
-
autoload :TrackSaleGeo, 'open_api_sdk/models/operations/tracksale_geo.rb'
|
|
80
|
-
autoload :TrackSaleLink, 'open_api_sdk/models/operations/tracksale_link.rb'
|
|
81
79
|
autoload :TrackSaleResponseBody, 'open_api_sdk/models/operations/tracksale_responsebody.rb'
|
|
82
80
|
autoload :TrackSaleResponse, 'open_api_sdk/models/operations/tracksale_response.rb'
|
|
83
81
|
autoload :TrackCustomerRequestBody, 'open_api_sdk/models/operations/trackcustomer_requestbody.rb'
|
|
@@ -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.
|
|
42
|
-
@gen_version = '2.
|
|
43
|
-
@user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.
|
|
41
|
+
@sdk_version = '0.2.2-alpha.10'
|
|
42
|
+
@gen_version = '2.409.0'
|
|
43
|
+
@user_agent = 'speakeasy-sdk/ruby 0.2.2-alpha.10 2.409.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.
|
|
4
|
+
version: 0.2.2.pre.alpha.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -151,6 +151,9 @@ files:
|
|
|
151
151
|
- lib/open_api_sdk/metatags.rb
|
|
152
152
|
- lib/open_api_sdk/models/operations.rb
|
|
153
153
|
- lib/open_api_sdk/models/operations/bulkcreatelinks_response.rb
|
|
154
|
+
- lib/open_api_sdk/models/operations/bulkdeletelinks_request.rb
|
|
155
|
+
- lib/open_api_sdk/models/operations/bulkdeletelinks_response.rb
|
|
156
|
+
- lib/open_api_sdk/models/operations/bulkdeletelinks_responsebody.rb
|
|
154
157
|
- lib/open_api_sdk/models/operations/bulkupdatelinks_requestbody.rb
|
|
155
158
|
- lib/open_api_sdk/models/operations/bulkupdatelinks_response.rb
|
|
156
159
|
- lib/open_api_sdk/models/operations/click.rb
|
|
@@ -170,7 +173,6 @@ files:
|
|
|
170
173
|
- lib/open_api_sdk/models/operations/deletelink_response.rb
|
|
171
174
|
- lib/open_api_sdk/models/operations/deletelink_responsebody.rb
|
|
172
175
|
- lib/open_api_sdk/models/operations/event.rb
|
|
173
|
-
- lib/open_api_sdk/models/operations/geo.rb
|
|
174
176
|
- lib/open_api_sdk/models/operations/getlinkinfo_request.rb
|
|
175
177
|
- lib/open_api_sdk/models/operations/getlinkinfo_response.rb
|
|
176
178
|
- lib/open_api_sdk/models/operations/getlinks_request.rb
|
|
@@ -188,7 +190,6 @@ files:
|
|
|
188
190
|
- lib/open_api_sdk/models/operations/groupby.rb
|
|
189
191
|
- lib/open_api_sdk/models/operations/interval.rb
|
|
190
192
|
- lib/open_api_sdk/models/operations/level.rb
|
|
191
|
-
- lib/open_api_sdk/models/operations/link.rb
|
|
192
193
|
- lib/open_api_sdk/models/operations/listdomains_request.rb
|
|
193
194
|
- lib/open_api_sdk/models/operations/listdomains_response.rb
|
|
194
195
|
- lib/open_api_sdk/models/operations/listevents_request.rb
|
|
@@ -209,10 +210,7 @@ files:
|
|
|
209
210
|
- lib/open_api_sdk/models/operations/tracklead_requestbody.rb
|
|
210
211
|
- lib/open_api_sdk/models/operations/tracklead_response.rb
|
|
211
212
|
- lib/open_api_sdk/models/operations/tracklead_responsebody.rb
|
|
212
|
-
- lib/open_api_sdk/models/operations/tracksale_click.rb
|
|
213
213
|
- lib/open_api_sdk/models/operations/tracksale_customer.rb
|
|
214
|
-
- lib/open_api_sdk/models/operations/tracksale_geo.rb
|
|
215
|
-
- lib/open_api_sdk/models/operations/tracksale_link.rb
|
|
216
214
|
- lib/open_api_sdk/models/operations/tracksale_requestbody.rb
|
|
217
215
|
- lib/open_api_sdk/models/operations/tracksale_response.rb
|
|
218
216
|
- lib/open_api_sdk/models/operations/tracksale_responsebody.rb
|