@stackone/connect-sdk 2.19.1 → 2.20.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.
- package/dist/index.d.cts +4 -2
- package/dist/index.d.mts +3 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ZodType } from "@stackone/utils";
|
|
2
1
|
import http from "node:http";
|
|
3
2
|
import https from "node:https";
|
|
3
|
+
import { ZodType } from "@stackone/utils";
|
|
4
4
|
|
|
5
5
|
//#region ../core/src/categories/types.d.ts
|
|
6
6
|
type Category = 'hris' | 'crm' | 'ats' | 'lms' | 'marketing' | 'filestorage' | 'internal' | 'action';
|
|
@@ -227,7 +227,7 @@ type APIConfig = Record<string, unknown>;
|
|
|
227
227
|
type RequestContext = {
|
|
228
228
|
accountSecureId?: string;
|
|
229
229
|
projectSecureId?: string;
|
|
230
|
-
organizationId?: number;
|
|
230
|
+
organizationId?: number | string;
|
|
231
231
|
environment?: string;
|
|
232
232
|
authConfigKey?: string;
|
|
233
233
|
provider?: string;
|
|
@@ -275,6 +275,8 @@ declare enum StepFunctionName {
|
|
|
275
275
|
SOAP_REQUEST = "soap_request",
|
|
276
276
|
SOAP_PAGINATED_REQUEST = "soap_paginated_request",
|
|
277
277
|
STATIC_VALUES = "static_values",
|
|
278
|
+
UPLOAD_FILE = "upload_file",
|
|
279
|
+
DOWNLOAD_FILE = "download_file",
|
|
278
280
|
}
|
|
279
281
|
//#endregion
|
|
280
282
|
//#region ../olap/src/olap/olapOptions.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -227,7 +227,7 @@ type APIConfig = Record<string, unknown>;
|
|
|
227
227
|
type RequestContext = {
|
|
228
228
|
accountSecureId?: string;
|
|
229
229
|
projectSecureId?: string;
|
|
230
|
-
organizationId?: number;
|
|
230
|
+
organizationId?: number | string;
|
|
231
231
|
environment?: string;
|
|
232
232
|
authConfigKey?: string;
|
|
233
233
|
provider?: string;
|
|
@@ -275,6 +275,8 @@ declare enum StepFunctionName {
|
|
|
275
275
|
SOAP_REQUEST = "soap_request",
|
|
276
276
|
SOAP_PAGINATED_REQUEST = "soap_paginated_request",
|
|
277
277
|
STATIC_VALUES = "static_values",
|
|
278
|
+
UPLOAD_FILE = "upload_file",
|
|
279
|
+
DOWNLOAD_FILE = "download_file",
|
|
278
280
|
}
|
|
279
281
|
//#endregion
|
|
280
282
|
//#region ../olap/src/olap/olapOptions.d.ts
|