dub 0.12.15 → 0.12.16
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: 8ba3ee22815fd119f2fd7e8b2766d2ff6f8436246ca44ddcfe286a1588aab7a1
|
|
4
|
+
data.tar.gz: 87e6bceffaf0bf657829752efe2b3e459f8f240bdd4b3f19a3d0f700fc5bbe6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ff10d1122416f32c3c5d9a7ce326d405a8296ec4c9b49d2cadd8cd2e4def9fb5e4412f88667bc74c58b11c000ef0763699becd18b66f7f9d80e31dd893a3007
|
|
7
|
+
data.tar.gz: e0c77a914ddd49b23eb3469c7c009f22b1e6c7835e59f7698bf6f006cac520a2c12f43a40ed07e876a250895ccb50ce31c2e13bcab550d6517faebc7f8784106
|
|
@@ -14,19 +14,37 @@ module OpenApiSDK
|
|
|
14
14
|
extend T::Sig
|
|
15
15
|
include Crystalline::MetadataFields
|
|
16
16
|
|
|
17
|
-
# Filter the list of commissions by type.
|
|
17
|
+
# Filter the list of commissions by type.
|
|
18
|
+
# Supports advanced filtering: single value, multiple values (comma-separated), or exclusion (prefix with `-`). Examples:
|
|
19
|
+
# - "sale"
|
|
20
|
+
# - "sale,lead"
|
|
21
|
+
# - "-click"
|
|
18
22
|
field :type, Crystalline::Nilable.new(Models::Operations::Type), { 'query_param': { 'field_name': 'type', 'style': 'form', 'explode': true } }
|
|
19
23
|
# Filter the list of commissions by the associated customer.
|
|
20
24
|
field :customer_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'customerId', 'style': 'form', 'explode': true } }
|
|
21
25
|
# Filter the list of commissions by the associated payout.
|
|
22
26
|
field :payout_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'payoutId', 'style': 'form', 'explode': true } }
|
|
23
|
-
# Filter the list of commissions by the associated partner. When specified, takes precedence over `tenantId`.
|
|
27
|
+
# Filter the list of commissions by the associated partner. When specified, takes precedence over `tenantId`.
|
|
28
|
+
# Supports advanced filtering: single value, multiple values (comma-separated), or exclusion (prefix with `-`).
|
|
29
|
+
# Examples:
|
|
30
|
+
# - "partner_abc"
|
|
31
|
+
# - "partner_abc,partner_xyz"
|
|
32
|
+
# - "-partner_abc"
|
|
24
33
|
field :partner_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'partnerId', 'style': 'form', 'explode': true } }
|
|
25
34
|
# Filter the list of commissions by the associated partner's `tenantId` (their unique ID within your database).
|
|
26
35
|
field :tenant_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'tenantId', 'style': 'form', 'explode': true } }
|
|
27
|
-
# Filter the list of commissions by the associated partner group.
|
|
36
|
+
# Filter the list of commissions by the associated partner group.
|
|
37
|
+
# Supports advanced filtering: single value, multiple values (comma-separated), or exclusion (prefix with `-`). Examples:
|
|
38
|
+
# - "group_abc"
|
|
39
|
+
# - "group_abc,group_xyz"
|
|
40
|
+
# - "-group_abc"
|
|
28
41
|
field :group_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'groupId', 'style': 'form', 'explode': true } }
|
|
29
|
-
# Filter the list of commissions by the associated partner tag.
|
|
42
|
+
# Filter the list of commissions by the associated partner tag.
|
|
43
|
+
# Supports advanced filtering: single value, multiple values (comma-separated), or exclusion (prefix with `-`).
|
|
44
|
+
# Examples:
|
|
45
|
+
# - "ptag_abc"
|
|
46
|
+
# - "ptag_abc,ptag_xyz"
|
|
47
|
+
# - "-ptag_abc"
|
|
30
48
|
field :partner_tag_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'partnerTagId', 'style': 'form', 'explode': true } }
|
|
31
49
|
# Filter the list of commissions by the associated invoice. Since invoiceId is unique on a per-program basis, this will only return one commission per invoice.
|
|
32
50
|
field :invoice_id, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'invoiceId', 'style': 'form', 'explode': true } }
|
|
@@ -39,6 +57,9 @@ module OpenApiSDK
|
|
|
39
57
|
|
|
40
58
|
field :timezone, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'timezone', 'style': 'form', 'explode': true } }
|
|
41
59
|
# Filter by lead or sale event metadata. Top-level keys only. Compares string values only — numeric and boolean metadata values are not matched.
|
|
60
|
+
# Examples:
|
|
61
|
+
# - "metadata['key']='value'"
|
|
62
|
+
# - "metadata['key']!='value'"
|
|
42
63
|
field :query, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'query', 'style': 'form', 'explode': true } }
|
|
43
64
|
# If specified, the query only searches for results before this cursor. Mutually exclusive with `startingAfter`.
|
|
44
65
|
field :ending_before, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'endingBefore', 'style': 'form', 'explode': true } }
|
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
module OpenApiSDK
|
|
10
10
|
module Models
|
|
11
11
|
module Operations
|
|
12
|
-
# Type - Filter the list of commissions by type.
|
|
12
|
+
# Type - Filter the list of commissions by type.
|
|
13
|
+
# Supports advanced filtering: single value, multiple values (comma-separated), or exclusion (prefix with `-`). Examples:
|
|
14
|
+
# - "sale"
|
|
15
|
+
# - "sale,lead"
|
|
16
|
+
# - "-click"
|
|
13
17
|
class Type < T::Enum
|
|
14
18
|
enums do
|
|
15
19
|
CLICK = new('click')
|
|
@@ -90,9 +90,9 @@ module OpenApiSDK
|
|
|
90
90
|
end
|
|
91
91
|
@language = 'ruby'
|
|
92
92
|
@openapi_doc_version = '0.0.1'
|
|
93
|
-
@sdk_version = '0.12.
|
|
93
|
+
@sdk_version = '0.12.16'
|
|
94
94
|
@gen_version = '2.933.0'
|
|
95
|
-
@user_agent = 'speakeasy-sdk/ruby 0.12.
|
|
95
|
+
@user_agent = 'speakeasy-sdk/ruby 0.12.16 2.933.0 0.0.1 dub'
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
sig { returns([String, T::Hash[Symbol, String]]) }
|