kombo 1.1.0 → 1.1.1
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: b766eb8608d28908b92ab3310a641652a9b5bf9daea7bf78c38a72b455394272
|
|
4
|
+
data.tar.gz: 81f7b7f5bc399688363dd673069942cf080951c286539ec47826b0b1f82b171b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03b6f478fa958ad31c550c30b5a48185204e11a80aa6427cbb73753f381fb6ce0cd4c8a8a01569cc496b4b48e7c9058757eabb33b1f453e26b1775fe6edc2f0d
|
|
7
|
+
data.tar.gz: 0d08749c2f76af4b17f3cfc904b44672dc0401b105b344a171df0121bb60efaf74219f2ae2d38ed8e577b8a6c2818d915a32e50cb62730b2ebb90d8c69a01b68
|
data/lib/kombo/general.rb
CHANGED
|
@@ -461,6 +461,7 @@ module Kombo
|
|
|
461
461
|
# |Teamtailor|`teamtailor/v1`|We use `https://api.teamtailor.com/v1` as the base URL. Find the official docs [here](https://docs.teamtailor.com/).|
|
|
462
462
|
# |TRAFFIT|`traffit/v2`|Traffit's [v2 API](https://api.traffit.com). We authenticate all requests with the Traffit API key and use the base URL `https://yourdomain.traffit.com/api/integration/v2`.|
|
|
463
463
|
# |TriNet PEO|`trinetpeo/v1`|We use `https://api.trinet.com` as the base URL. Find the official docs [here](https://developers.trinet.com).|
|
|
464
|
+
# |Ubeeo|`ubeeo/api`|Ubeeo ATS API. We automatically authenticate all requests using OAuth client credentials and use `https://api.ats-platform.com` as the base URL (sandbox: `https://api.acc.ats-platform.com`).|
|
|
464
465
|
# |Udemy Business|`udemy/learning`|Udemy Business REST API. We automatically handle authentication and use `https://\{account_name\}.udemy.com/api-2.0/organizations/\{account_id\}/` as the base URL.|
|
|
465
466
|
# |UKG Pro|`ukgpro/default`|[UKG Pro's HRIS API](https://developer.ukg.com/hcm/reference/get_personnel-v1-person-details). We automatically authenticate all requests and use `https://\{hostname\}` as the base URL.|
|
|
466
467
|
# |UKG Pro|`ukgpro/recruting`|[UKG Pro's Recruiting API](https://developer.ukg.com/hcm/reference/retrieveapplications). We automatically authenticate all requests and use `https://\{hostname\}/talent/recruiting/v2/\{tenantalias\}/api` as the base URL.|
|
|
@@ -18,9 +18,11 @@ module Kombo
|
|
|
18
18
|
field :cursor, Crystalline::Nilable.new(::String), { 'query_param': { 'field_name': 'cursor', 'style': 'form', 'explode': true } }
|
|
19
19
|
# Filter by a comma-separated list of IDs such as `222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3`.
|
|
20
20
|
field :ids, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'query_param': { 'field_name': 'ids', 'style': 'form', 'explode': false } }
|
|
21
|
-
# Filter by a comma-separated list of
|
|
21
|
+
# Filter by a comma-separated list of `OPEN`, `COMPLETED`, `CANCELLED`, `REJECTED`.
|
|
22
|
+
#
|
|
23
|
+
# Leave this blank to get results matching all values.
|
|
22
24
|
field :statuses, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'query_param': { 'field_name': 'statuses', 'style': 'form', 'explode': false } }
|
|
23
|
-
# Filter orders by their creation date. Only orders created on or after this date will be returned.
|
|
25
|
+
# Filter orders by their creation date-timestamp in the format: `YYYY-MM-DDTHH:mm:ss.sssZ`. Only orders created on or after this date-timestamp will be returned.
|
|
24
26
|
field :created_after, Crystalline::Nilable.new(::DateTime), { 'query_param': { 'field_name': 'created_after', 'style': 'form', 'explode': true } }
|
|
25
27
|
# The number of results to return per page. Maximum is 250.
|
|
26
28
|
field :page_size, Crystalline::Nilable.new(::Integer), { 'query_param': { 'field_name': 'page_size', 'style': 'form', 'explode': true } }
|
|
@@ -98,9 +98,9 @@ module Kombo
|
|
|
98
98
|
@globals = globals.nil? ? {} : globals
|
|
99
99
|
@language = 'ruby'
|
|
100
100
|
@openapi_doc_version = '1.0.0'
|
|
101
|
-
@sdk_version = '1.1.
|
|
101
|
+
@sdk_version = '1.1.1'
|
|
102
102
|
@gen_version = '2.801.2'
|
|
103
|
-
@user_agent = 'speakeasy-sdk/ruby 1.1.
|
|
103
|
+
@user_agent = 'speakeasy-sdk/ruby 1.1.1 2.801.2 1.0.0 kombo'
|
|
104
104
|
end
|
|
105
105
|
|
|
106
106
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kombo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kombo Technologies GmbH
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|