@kombo-api/sdk 0.3.3 → 0.4.0
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.
- package/README.md +16 -10
- package/esm/funcs/atsCreateApplication.d.ts +2 -0
- package/esm/funcs/atsCreateApplication.d.ts.map +1 -1
- package/esm/funcs/atsCreateApplication.js +2 -0
- package/esm/funcs/atsCreateApplication.js.map +1 -1
- package/esm/funcs/generalSendPassthroughRequest.d.ts +12 -2
- package/esm/funcs/generalSendPassthroughRequest.d.ts.map +1 -1
- package/esm/funcs/generalSendPassthroughRequest.js +12 -2
- package/esm/funcs/generalSendPassthroughRequest.js.map +1 -1
- package/esm/funcs/generalSetIntegrationEnabled.d.ts +23 -0
- package/esm/funcs/generalSetIntegrationEnabled.d.ts.map +1 -0
- package/esm/funcs/generalSetIntegrationEnabled.js +94 -0
- package/esm/funcs/generalSetIntegrationEnabled.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/lib/sdks.js +2 -2
- package/esm/lib/sdks.js.map +1 -1
- package/esm/models/assessmentorderreceivedwebhookpayload.d.ts +1 -1
- package/esm/models/datachangedwebhookpayload.d.ts +2 -2
- package/esm/models/datachangedwebhookpayload.js +2 -2
- package/esm/models/datachangedwebhookpayload.js.map +1 -1
- package/esm/models/getassessmentordersopenpositiveresponse.d.ts +1 -1
- package/esm/models/getatsinterviewspositiveresponse.d.ts +4 -0
- package/esm/models/getatsinterviewspositiveresponse.d.ts.map +1 -1
- package/esm/models/getatsinterviewspositiveresponse.js +1 -0
- package/esm/models/getatsinterviewspositiveresponse.js.map +1 -1
- package/esm/models/index.d.ts +2 -0
- package/esm/models/index.d.ts.map +1 -1
- package/esm/models/index.js +2 -0
- package/esm/models/index.js.map +1 -1
- package/esm/models/inlineassessmentorderreceivedwebhookpayload.d.ts +1 -1
- package/esm/models/integrationstatechangedwebhookpayload.d.ts +21 -0
- package/esm/models/integrationstatechangedwebhookpayload.d.ts.map +1 -1
- package/esm/models/integrationstatechangedwebhookpayload.js +15 -0
- package/esm/models/integrationstatechangedwebhookpayload.js.map +1 -1
- package/esm/models/komboatserror.d.ts +1 -0
- package/esm/models/komboatserror.d.ts.map +1 -1
- package/esm/models/komboatserror.js +1 -0
- package/esm/models/komboatserror.js.map +1 -1
- package/esm/models/kombogeneralerror.d.ts +1 -0
- package/esm/models/kombogeneralerror.d.ts.map +1 -1
- package/esm/models/kombogeneralerror.js +1 -0
- package/esm/models/kombogeneralerror.js.map +1 -1
- package/esm/models/kombohriserror.d.ts +1 -0
- package/esm/models/kombohriserror.d.ts.map +1 -1
- package/esm/models/kombohriserror.js +1 -0
- package/esm/models/kombohriserror.js.map +1 -1
- package/esm/models/operations/index.d.ts +1 -0
- package/esm/models/operations/index.d.ts.map +1 -1
- package/esm/models/operations/index.js +1 -0
- package/esm/models/operations/index.js.map +1 -1
- package/esm/models/operations/putintegrationsintegrationidenabled.d.ts +21 -0
- package/esm/models/operations/putintegrationsintegrationidenabled.d.ts.map +1 -0
- package/esm/models/operations/putintegrationsintegrationidenabled.js +14 -0
- package/esm/models/operations/putintegrationsintegrationidenabled.js.map +1 -0
- package/esm/models/postconnectcreatelinkrequestbody.d.ts +8 -1
- package/esm/models/postconnectcreatelinkrequestbody.d.ts.map +1 -1
- package/esm/models/postconnectcreatelinkrequestbody.js +8 -1
- package/esm/models/postconnectcreatelinkrequestbody.js.map +1 -1
- package/esm/models/putintegrationsintegrationidenabledpositiveresponse.d.ts +15 -0
- package/esm/models/putintegrationsintegrationidenabledpositiveresponse.d.ts.map +1 -0
- package/esm/models/putintegrationsintegrationidenabledpositiveresponse.js +20 -0
- package/esm/models/putintegrationsintegrationidenabledpositiveresponse.js.map +1 -0
- package/esm/models/putintegrationsintegrationidenabledrequestbody.d.ts +15 -0
- package/esm/models/putintegrationsintegrationidenabledrequestbody.d.ts.map +1 -0
- package/esm/models/putintegrationsintegrationidenabledrequestbody.js +12 -0
- package/esm/models/putintegrationsintegrationidenabledrequestbody.js.map +1 -0
- package/esm/sdk/ats.d.ts +2 -0
- package/esm/sdk/ats.d.ts.map +1 -1
- package/esm/sdk/ats.js +2 -0
- package/esm/sdk/ats.js.map +1 -1
- package/esm/sdk/general.d.ts +23 -2
- package/esm/sdk/general.d.ts.map +1 -1
- package/esm/sdk/general.js +26 -2
- package/esm/sdk/general.js.map +1 -1
- package/examples/package-lock.json +3 -3
- package/jsr.json +1 -1
- package/package.json +3 -3
- package/src/funcs/atsCreateApplication.ts +2 -0
- package/src/funcs/generalSendPassthroughRequest.ts +12 -2
- package/src/funcs/generalSetIntegrationEnabled.ts +184 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +2 -2
- package/src/models/assessmentorderreceivedwebhookpayload.ts +1 -1
- package/src/models/datachangedwebhookpayload.ts +2 -2
- package/src/models/getassessmentordersopenpositiveresponse.ts +1 -1
- package/src/models/getatsinterviewspositiveresponse.ts +5 -0
- package/src/models/index.ts +2 -0
- package/src/models/inlineassessmentorderreceivedwebhookpayload.ts +1 -1
- package/src/models/integrationstatechangedwebhookpayload.ts +32 -0
- package/src/models/komboatserror.ts +1 -0
- package/src/models/kombogeneralerror.ts +1 -0
- package/src/models/kombohriserror.ts +1 -0
- package/src/models/operations/index.ts +1 -0
- package/src/models/operations/putintegrationsintegrationidenabled.ts +45 -0
- package/src/models/postconnectcreatelinkrequestbody.ts +8 -1
- package/src/models/putintegrationsintegrationidenabledpositiveresponse.ts +67 -0
- package/src/models/putintegrationsintegrationidenabledrequestbody.ts +38 -0
- package/src/sdk/ats.ts +2 -0
- package/src/sdk/general.ts +34 -2
- package/tests/basic-behavior.spec.ts +1 -1
- package/tests/job-board.spec.ts +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
|
|
7
|
+
export type PutIntegrationsIntegrationIdEnabledRequestBody = {
|
|
8
|
+
/**
|
|
9
|
+
* The desired state of the integration (e.g., `true` for enabled, `false` for disabled).
|
|
10
|
+
*/
|
|
11
|
+
value: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
/** @internal */
|
|
15
|
+
export type PutIntegrationsIntegrationIdEnabledRequestBody$Outbound = {
|
|
16
|
+
value: boolean;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/** @internal */
|
|
20
|
+
export const PutIntegrationsIntegrationIdEnabledRequestBody$outboundSchema:
|
|
21
|
+
z.ZodType<
|
|
22
|
+
PutIntegrationsIntegrationIdEnabledRequestBody$Outbound,
|
|
23
|
+
z.ZodTypeDef,
|
|
24
|
+
PutIntegrationsIntegrationIdEnabledRequestBody
|
|
25
|
+
> = z.object({
|
|
26
|
+
value: z.boolean(),
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
export function putIntegrationsIntegrationIdEnabledRequestBodyToJSON(
|
|
30
|
+
putIntegrationsIntegrationIdEnabledRequestBody:
|
|
31
|
+
PutIntegrationsIntegrationIdEnabledRequestBody,
|
|
32
|
+
): string {
|
|
33
|
+
return JSON.stringify(
|
|
34
|
+
PutIntegrationsIntegrationIdEnabledRequestBody$outboundSchema.parse(
|
|
35
|
+
putIntegrationsIntegrationIdEnabledRequestBody,
|
|
36
|
+
),
|
|
37
|
+
);
|
|
38
|
+
}
|
package/src/sdk/ats.ts
CHANGED
package/src/sdk/general.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { generalGetIntegrationDetails } from "../funcs/generalGetIntegrationDeta
|
|
|
10
10
|
import { generalGetIntegrationFields } from "../funcs/generalGetIntegrationFields.js";
|
|
11
11
|
import { generalGetTools } from "../funcs/generalGetTools.js";
|
|
12
12
|
import { generalSendPassthroughRequest } from "../funcs/generalSendPassthroughRequest.js";
|
|
13
|
+
import { generalSetIntegrationEnabled } from "../funcs/generalSetIntegrationEnabled.js";
|
|
13
14
|
import { generalTriggerSync } from "../funcs/generalTriggerSync.js";
|
|
14
15
|
import { generalUpdateCustomFieldMapping } from "../funcs/generalUpdateCustomFieldMapping.js";
|
|
15
16
|
import { generalUpdateIntegrationField } from "../funcs/generalUpdateIntegrationField.js";
|
|
@@ -68,6 +69,7 @@ export class General extends ClientSDK {
|
|
|
68
69
|
*
|
|
69
70
|
* |Integration|`{tool}/{api}`|Description|
|
|
70
71
|
* |---|---|---|
|
|
72
|
+
* |360Learning|`360learning/v2`|360Learning [API v2](https://360learning.readme.io/docs). We automatically handle authentication and use `https://app.360learning.com/api/v2/` as the base URL.|
|
|
71
73
|
* |a3innuva Nómina|`a3innuvanomina/laboral`|a3innuva Nómina API [docs](https://a3developers.wolterskluwer.es/). Requests are automatically authenticated using OAuth access tokens (refreshed when needed). Base URL: `https://a3api.wolterskluwer.es/Laboral/api`.|
|
|
72
74
|
* |Abacus Umantis|`abacusumantis/v1`|[Umantis API v1](https://recruitingapp-91005709.umantis.com/api/v1/swagger-ui). We automatically authenticate all requests and use `https://\{subdomain\}.umantis.com/api/v1` as the base URL.|
|
|
73
75
|
* |Abacus|`abacus/api`|Abacus [REST API](https://apihub.abacus.ch/). We automatically authenticate all requests and use `https://\{\{abacusUrl\}\}/api/entity/v1/mandants/\{\{mandantId\}\}` as the base URL.|
|
|
@@ -78,7 +80,7 @@ export class General extends ClientSDK {
|
|
|
78
80
|
* |ApplicantStack|`applicantstack/api`|ApplicantStack's [API](https://helpas.payrollservers.info/s/article/API-Integration-Guide). We automatically authenticate all requests and use `https://\{subdomain\}.applicantstack.com/api/` as the base URL.|
|
|
79
81
|
* |Apploi|`apploi/rest-api`|The [Apploi API](https://integrate.apploi.com/). We automatically authenticate all requests and use `https://partners.apploi.com/` as the base URL.|
|
|
80
82
|
* |Ashby|`ashby/v1`|Ashby's [V1 API](https://developers.ashbyhq.com/reference/introduction). We automatically authenticate all requests with the provided credentials and use `https://api.ashbyhq.com` as the base URL. Please note that Ashby uses an RPC-style API. Please check [the Ashby API documentation](https://developers.ashbyhq.com/reference/introduction) for details on how to use it.|
|
|
81
|
-
* |Asymbl|`asymbl/v63`|We use `https://\{
|
|
83
|
+
* |Asymbl|`asymbl/v63`|We use `https://\{subdomain\}.my.salesforce.com` as the base URL. Find the official docs [here](https://asymblinc.github.io/ats/ats.html).|
|
|
82
84
|
* |Avature|`avature/custom-api`|Avatures's Custom API. Call `Get /openapi` to retrieve the specific custom API schema. We automatically authenticate all requests and use the instance specific custom API URL as the base URL.|
|
|
83
85
|
* |Avionté|`avionte/front-office-v1`|Avionte's API. We automatically authenticate all requests and use `https://api.avionte.com/front-office/v1` as the base URL. Documentation for the BOLD Front Office API: https://developer.avionte.com/reference/get-all-talent-tags|
|
|
84
86
|
* |BambooHR|`bamboohr/v1`|BambooHR's [API](https://documentation.bamboohr.com/reference/get-employee). We automatically authenticate all requests using the customer credentials `https://api.bamboohr.com/api/gateway.php/\{subdomain\}/v1` as the base URL.|
|
|
@@ -86,6 +88,7 @@ export class General extends ClientSDK {
|
|
|
86
88
|
* |BoondManager|`boondmanager/api`|BoondManager [REST API](https://ui.boondmanager.com/administrator/developer/apisandbox). We automatically authenticate all requests and use `https://ui.boondmanager.com/api` as the base URL.|
|
|
87
89
|
* |Breezy HR|`breezyhr/v3`|[BreezyHR's v3 API](https://developer.breezy.hr/reference/overview). We automatically authenticate all requests and use "https://api.breezy.hr/v3/" as the base URL.|
|
|
88
90
|
* |Bullhorn|`bullhorn/default`|[Bullhorn's API](https://bullhorn.github.io/rest-api-docs/index.html). We automatically use the right `https://rest.bullhornstaffing.com/rest-services/\{corpToken\}` base URL.|
|
|
91
|
+
* |Carerix|`carerix/api`|Carerix [REST API](https://docs.carerix.io/rest/introduction). We automatically authenticate all requests and use `https://api.carerix.com` as the base URL. Please note that Carerix uses XML for request and response bodies.|
|
|
89
92
|
* |CEGID TalentSoft Customer|`talentsoftcustomer/v1`|Cegid Talentsoft Recruiting FrontOffice API: [API Documentation](https://developers.cegid.com/api-details#api=cegid-talentsoft-recruiting-frontoffice) We automatically authenticate all requests and use `https://\{customer_subdomain\}.talent-soft.com/api/v1` as the base URL.|
|
|
90
93
|
* |CEGID TalentSoft FrontOffice|`talentsoft/v2`|Cegid Talentsoft Recruiting FrontOffice [API](https://developers.cegid.com/api-details). We automatically authenticate all requests using the provided credentials and use `https://\{domain\}/api/v2` as the base URL.|
|
|
91
94
|
* |Ceipal|`ceipal/v1`|We use `https://api.ceipal.com/v1` as the base URL. Find the official docs [here](https://developer.ceipal.com/ceipal-ats-version-one/ceipal-ats-v1-api-reference).|
|
|
@@ -121,7 +124,8 @@ export class General extends ClientSDK {
|
|
|
121
124
|
* |Google Workspace|`googleworkspace/admin`|[Googles's API](https://developers.google.com/admin-sdk/directory/reference/rest). We automatically authenticate all requests and use 'https://admin.googleapis.com' as the base URL.|
|
|
122
125
|
* |Google Workspace|`googleworkspace/people`|[Googles's API](https://developers.google.com/people/api/rest). We automatically authenticate all requests and use 'https://people.googleapis.com' as the base URL.|
|
|
123
126
|
* |Greenhouse Job Board|`greenhousejobboard/boards-api`|[Greenhouse Job Board API](https://developers.greenhouse.io/job-board). We automatically authenticate all requests and use 'https://boards-api.greenhouse.io/v1/boards/\{job_board_token\}' as the base URL. Optionally, you can provide a custom job_board_token to use a different job board.|
|
|
124
|
-
* |Greenhouse|`greenhouse/harvest`|Greenhouse [Harvest API](https://developers.greenhouse.io/harvest.html). We automatically authenticate all requests using the API key and use `https://harvest.greenhouse.io/
|
|
127
|
+
* |Greenhouse|`greenhouse/harvest-v2`|Greenhouse [Harvest API v2](https://developers.greenhouse.io/harvest.html). We automatically authenticate all requests using the API key and use `https://harvest.greenhouse.io/v2` as the base URL.|
|
|
128
|
+
* |Greenhouse|`greenhouse/harvest`|Greenhouse [Harvest API v1](https://developers.greenhouse.io/harvest.html). We automatically authenticate all requests using the API key and use `https://harvest.greenhouse.io/v1` as the base URL.|
|
|
125
129
|
* |Hailey HR|`haileyhr/api`|Hailey HR's [API](https://api.haileyhr.app/docs/index.html). We automatically authenticate all requests using the provided credentials and use `https://api.haileyhr.app` as the base URL.|
|
|
126
130
|
* |Hansalog|`hansalog/vision`|Hansalog's [Vision API](https://hansalog-vision.document360.io/docs/). We automatically authenticate all requests and use `https://\{subdomain\}.hansalog-cloud.de/vision` as the base URL.|
|
|
127
131
|
* |Haufe Umantis|`umantis/v1`|[Umantis API v1](https://recruitingapp-91005709.umantis.com/api/v1/swagger-ui). We automatically authenticate all requests and use `https://\{subdomain\}.umantis.com/api/v1` as the base URL.|
|
|
@@ -141,16 +145,20 @@ export class General extends ClientSDK {
|
|
|
141
145
|
* |JazzHR|`jazzhr/v1`|[JazzHR's v1 API](https://www.resumatorapi.com/v1/#!`).We automatically authenticate all requests and use "https://api.resumatorapi.com/v1/" as the base URL.|
|
|
142
146
|
* |JobDiva|`jobdiva/api`|We automatically authenticate all requests and use `https://api.jobdiva.com` as the base URL.|
|
|
143
147
|
* |Jobvite|`jobvite/api`|We automatically authenticate all requests and use 'https://api.jobvite.com/api/v2' as the base URL.|
|
|
148
|
+
* |Jobvite|`jobvite/v2`|We use `https://api.jobvite.com/api/v2` as the base URL. Find the official docs [here](https://help.jobvite.com/hc/en-us/articles/8870636608925-Jobvite-API).|
|
|
144
149
|
* |Jobylon|`jobylon/feed`|The [Jobylon Feed API](https://developer.jobylon.com/feed-api/). We automatically authenticate all requests and use `https://\{subdomain\}.jobylon.com/feeds/\{job_hash\}` as the base URL.|
|
|
145
150
|
* |Jobylon|`jobylon/push`|The [Jobylon Push API](https://developer.jobylon.com/push-api-and-webhooks/). We automatically authenticate all requests and use `https://\{subdomain\}.jobylon.com/p1` as the base URL.|
|
|
146
151
|
* |JOIN|`join/v2`|Join's [V2 API](https://docs.join.com/reference/getting-started). We automatically authenticate all requests and use `https://api.join.com/v2` as the base URL.|
|
|
147
152
|
* |Kenjo|`kenjo/api`|Kenjo's [API](https://kenjo.readme.io/reference/generate-the-api-key). We automatically authenticate all requests using the API key and use `https://api.kenjo.io/` as the base URL.|
|
|
153
|
+
* |Lattice Talent|`latticetalent/talent`|Lattice's [Talent API](https://developers.lattice.com/reference/introduction). We automatically authenticate all requests using API key credentials with `https://api.latticehq.com` as the base URL.|
|
|
148
154
|
* |Lattice|`lattice/passthrough`|Lattice's [API](https://developers.lattice.com/v2/docs/base-url-1). We automatically authenticate all requests using OAuth credentials with `https://api.latticehq.com` as the base URL.|
|
|
149
155
|
* |Lattice|`lattice/talent`|Lattice's [Talent API](https://developers.lattice.com/docs/introduction-1). We automatically authenticate all requests using OAuth credentials with `https://api.latticehq.com` as the base URL.|
|
|
150
156
|
* |Laura|`laura/api`|We automatically authenticate all requests and use `https://\{subdomain\}.rekrytointi.com/api/v1.2` as the base URL.|
|
|
151
157
|
* |Leapsome|`leapsome/scim`|Leapsome [SCIM API](https://api.leapsome.com/scim/v1/api-docs/). We automatically authenticate all requests using the credentials supplied by the customer and use `https://api.leapsome.com/scim/v1` as the base URL.|
|
|
152
158
|
* |Leapsome|`leapsome/v1`|Leapsome [API](https://api.leapsome.com/v1/api-docs/). We automatically authenticate all requests using the credentials supplied by the customer and use `https://api.leapsome.com/v1` as the base URL.|
|
|
153
159
|
* |Lever|`lever/v1`|[Lever's v1 API](https://hire.lever.co/developer/documentation). We automatically authenticate all requests using the partner credentials which have been configured in the Lever tool settings (this uses Kombo's partner credentials by default).|
|
|
160
|
+
* |LinkedIn Learning|`linkedinlearning/v2`|LinkedIn Learning [API v2](https://learn.microsoft.com/en-us/linkedin/learning/). We automatically handle authentication and use `https://api.linkedin.com` as the base URL.|
|
|
161
|
+
* |Loxo|`loxo/v1`|[Loxo's API](https://loxo.readme.io/reference/loxo-api). We automatically authenticate all requests and use 'https://app.loxo.co/api/\{agency_slug\}' as base URL.|
|
|
154
162
|
* |Lucca|`lucca/api`|[Luccas's API](https://developers.lucca.fr/api-reference/legacy/introduction). We automatically authenticate all requests and use 'https://\{account\}.\{ilucca|ilucca-demo\}.\{region\}/' as the base URL.|
|
|
155
163
|
* |Manatal|`manatal/career-page`|Manatal's Career Page API. We use `https://api.manatal.com/open/v3/career-page/\{client_slug\}` as the base URL.|
|
|
156
164
|
* |Manatal|`manatal/open-api-v3`|[Manatal's Open API v3](https://developers.manatal.com/reference/getting-started). We automatically authenticate all requests and use `https://api.manatal.com/open/v3` as the base URL.|
|
|
@@ -159,6 +167,7 @@ export class General extends ClientSDK {
|
|
|
159
167
|
* |Microsoft Entra ID|`entraid/v1`|[AzureAD's API](https://learn.microsoft.com/en-us/graph/api/resources/identity-network-access-overview?view=graph-rest-1.0). We automatically authenticate all requests.|
|
|
160
168
|
* |Mysolution|`mysolution/default`|[Mysolution's API](https://swagger.mysolution.nl/). We automatically authenticate all requests and use the customer's domain as base URL.|
|
|
161
169
|
* |Nmbrs|`nmbrs/soap`|[Nmbrs SOAP API](https://api.nmbrs.nl/soap/v3/). We automatically authenticate all requests and use `https://api.nmbrs.nl/soap/v3/` as the base URL. Set `data` to your raw XML string (the content that will be placed inside the `\<soap:Body\>` tag). Use `/` as your `path`, as we will always send requests to `https://api.nmbrs.nl/soap/v3/\{service_name\}.asmx`. Set your `method` to `POST`. You need to specify the `api_options` object and set `service_name` to the name of the service you want to call. Available services include `EmployeeService` and `CompanyService`.|
|
|
170
|
+
* |Odoo|`odoo/json2`|Odoo's [JSON-2 API](https://www.odoo.com/documentation/19.0/developer/reference/external_api.html). We automatically authenticate all requests and use `https://\{domain\}.odoo.com/json/2` as the base URL. Odoo JSON-2 requests are always `POST` requests and use paths like `/\{model\}/\{method\}` (e.g. `/res.partner/search_read`).|
|
|
162
171
|
* |Okta|`okta/v1`|[Okta's API](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/ApiServiceIntegrations/). We automatically authenticate all request ans use 'https://\<your-okta-domain\>/api/v1' as the base URL.|
|
|
163
172
|
* |Onlyfy|`onlyfy/v1`|Onlyfy's [Public v1 REST API](https://onlyfy.io/doc/v1#section/Introduction). We automatically authenticate all requests using the `apikey` header and use `https://api.prescreenapp.io/v1` as the base URL.|
|
|
164
173
|
* |Oracle HCM|`oraclehcm/api`|Oracle HCM Cloud [REST API](https://docs.oracle.com/en/cloud/saas/human-resources/24d/farws/index.html). We automatically authenticate all requests and use `https://\{domain\}/` as the base URL, where domain is your Oracle Cloud domain.|
|
|
@@ -200,6 +209,7 @@ export class General extends ClientSDK {
|
|
|
200
209
|
* |Softgarden|`softgarden/apply-api`|[Softgarden's Apply API](https://dev.softgarden.de/apply-api/). We automatically authenticate all requests and use 'https://jobdb.softgarden.de/jobdb/public' as base URL.|
|
|
201
210
|
* |Softgarden|`softgarden/frontend-v3`|[Softgarden's Frontend API v3](https://dev.softgarden.de/frontend-v3/. We automatically authenticate all requests and use 'https://api.softgarden.io/api/rest' as base URL.|
|
|
202
211
|
* |Spark Hire Recruit|`comeet/api`|[Spark Hire Recruit's API.](https://developers.comeet.com/reference/recruiting-api-overview)We automatically authenticate all requests and use `https://api.comeet.com` as the base URL.|
|
|
212
|
+
* |Spott|`spott/protected`|The [Spott API](https://docs.gospott.com). We automatically authenticate all requests and use `https://api.gospott.com` as the base URL.|
|
|
203
213
|
* |Sympa|`sympa/api`|Sympa's [API](https://documenter.getpostman.com/view/33639379/2sA3kXG1vX#intro). We automatically authenticate all requests and use `https://api.sympahr.net/api/` as the base URL.|
|
|
204
214
|
* |Taleez|`taleez/0`|[Taleez's API](https://api.taleez.com/swagger-ui/index.html). We automatically authenticate all requests and use `https://api.taleez.com/0` as the base URL.|
|
|
205
215
|
* |Talention|`talention/v1`|Talention's API. We automatically authenticate all requests and use `https://\{api_domain\}/tms/\{account_id\}/external/api/1.0` as the base URL. Documentation is provided privately by Talention. Contact Kombo support for assistance with specific endpoints.|
|
|
@@ -207,6 +217,7 @@ export class General extends ClientSDK {
|
|
|
207
217
|
* |Teamtailor Job Boards|`teamtailorjobboards/direct-apply`|Teamtailor's [Job Board Direct Apply API](https://partner.teamtailor.com/job_boards/direct_apply/#direct-apply). We automatically authenticate all requests and use `https://5qbn6o9x4h.execute-api.eu-west-1.amazonaws.com/production` as the base URL. All requests are automatically signed with HMAC-SHA256 signature.|
|
|
208
218
|
* |Teamtailor|`teamtailor/v1`|We use `https://api.teamtailor.com/v1` as the base URL. Find the official docs [here](https://docs.teamtailor.com/).|
|
|
209
219
|
* |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`.|
|
|
220
|
+
* |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.|
|
|
210
221
|
* |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.|
|
|
211
222
|
* |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.|
|
|
212
223
|
* |UKG Ready|`ukgready/api`|UKG Ready [API](https://secure.saashr.com/ta/docs/rest/public/). We automatically authenticate all requests using the provided credentials and use `https://\{api_domain\}` as the base URL.|
|
|
@@ -270,6 +281,27 @@ export class General extends ClientSDK {
|
|
|
270
281
|
));
|
|
271
282
|
}
|
|
272
283
|
|
|
284
|
+
/**
|
|
285
|
+
* Set integration enabled
|
|
286
|
+
*
|
|
287
|
+
* @remarks
|
|
288
|
+
* Enable or disable the specified integration. When disabling, all currently running syncs will be cancelled.
|
|
289
|
+
*
|
|
290
|
+
* All authentication credentials and configuration are preserved. Syncs can be resumed by re-enabling the integration.
|
|
291
|
+
*
|
|
292
|
+
* You may use this to, for example, pause syncing for customers that are temporarily not using the integration.
|
|
293
|
+
*/
|
|
294
|
+
async setIntegrationEnabled(
|
|
295
|
+
request: operations.PutIntegrationsIntegrationIdEnabledRequest,
|
|
296
|
+
options?: RequestOptions,
|
|
297
|
+
): Promise<models.PutIntegrationsIntegrationIdEnabledPositiveResponse> {
|
|
298
|
+
return unwrapAsync(generalSetIntegrationEnabled(
|
|
299
|
+
this,
|
|
300
|
+
request,
|
|
301
|
+
options,
|
|
302
|
+
));
|
|
303
|
+
}
|
|
304
|
+
|
|
273
305
|
/**
|
|
274
306
|
* Create reconnection link
|
|
275
307
|
*
|
|
@@ -105,7 +105,7 @@ describeSdkSuite("Basic SDK Behavior", () => {
|
|
|
105
105
|
// Verify and snapshot the request details
|
|
106
106
|
const request = ctx.getLastRequest();
|
|
107
107
|
expect(request.path).toMatchInlineSnapshot(
|
|
108
|
-
`"/v1/ats/jobs?ids=CPDifhHr7izJhKHmGPkXqknC%2CJ7znt8TJRiwPVA7paC2iCh8u&statuses=OPEN%2CCLOSED&include_deleted=false&page_size=100"`
|
|
108
|
+
`"/v1/ats/jobs?ids=CPDifhHr7izJhKHmGPkXqknC%2CJ7znt8TJRiwPVA7paC2iCh8u&statuses=OPEN%2CCLOSED&ignore_unsupported_filters=false&include_deleted=false&page_size=100"`
|
|
109
109
|
);
|
|
110
110
|
});
|
|
111
111
|
|
package/tests/job-board.spec.ts
CHANGED
|
@@ -26,7 +26,7 @@ describeSdkSuite("Kombo ATS Jobs API", () => {
|
|
|
26
26
|
// Verify and snapshot the request details
|
|
27
27
|
const request = ctx.getLastRequest();
|
|
28
28
|
expect(request.path).toMatchInlineSnapshot(
|
|
29
|
-
`"/v1/ats/jobs?include_deleted=false&page_size=100"`
|
|
29
|
+
`"/v1/ats/jobs?ignore_unsupported_filters=false&include_deleted=false&page_size=100"`
|
|
30
30
|
);
|
|
31
31
|
});
|
|
32
32
|
});
|