@stackone/connect-sdk 2.19.1 → 2.20.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/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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackone/connect-sdk",
3
- "version": "2.19.1",
3
+ "version": "2.20.0",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",