@juhuu/sdk-ts 1.2.201 → 1.2.203

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.mts CHANGED
@@ -3593,6 +3593,8 @@ declare namespace JUHUU {
3593
3593
  startNode: FlowBlock;
3594
3594
  nodeArray: FlowBlock[];
3595
3595
  edgeArray: FlowEdge[];
3596
+ propertyId: string;
3597
+ exectionEnvironmentArray: ("dashboard" | "app" | "backend")[];
3596
3598
  status: FlowStatus;
3597
3599
  errorMessage: string | null;
3598
3600
  };
@@ -3618,7 +3620,9 @@ declare namespace JUHUU {
3618
3620
  };
3619
3621
  }
3620
3622
  namespace List {
3621
- type Params = {};
3623
+ type Params = {
3624
+ propertyId?: string;
3625
+ };
3622
3626
  type Options = {
3623
3627
  limit?: number;
3624
3628
  skip?: number;
package/dist/index.d.ts CHANGED
@@ -3593,6 +3593,8 @@ declare namespace JUHUU {
3593
3593
  startNode: FlowBlock;
3594
3594
  nodeArray: FlowBlock[];
3595
3595
  edgeArray: FlowEdge[];
3596
+ propertyId: string;
3597
+ exectionEnvironmentArray: ("dashboard" | "app" | "backend")[];
3596
3598
  status: FlowStatus;
3597
3599
  errorMessage: string | null;
3598
3600
  };
@@ -3618,7 +3620,9 @@ declare namespace JUHUU {
3618
3620
  };
3619
3621
  }
3620
3622
  namespace List {
3621
- type Params = {};
3623
+ type Params = {
3624
+ propertyId?: string;
3625
+ };
3622
3626
  type Options = {
3623
3627
  limit?: number;
3624
3628
  skip?: number;
package/dist/index.js CHANGED
@@ -3370,6 +3370,9 @@ var FlowsService = class extends Service {
3370
3370
  }
3371
3371
  async list(FlowListParams, FlowListOptions) {
3372
3372
  const queryArray = [];
3373
+ if (FlowListParams?.propertyId !== void 0) {
3374
+ queryArray.push("propertyId=" + FlowListParams.propertyId);
3375
+ }
3373
3376
  if (FlowListOptions?.limit !== void 0) {
3374
3377
  queryArray.push("limit=" + FlowListOptions.limit);
3375
3378
  }
package/dist/index.mjs CHANGED
@@ -3326,6 +3326,9 @@ var FlowsService = class extends Service {
3326
3326
  }
3327
3327
  async list(FlowListParams, FlowListOptions) {
3328
3328
  const queryArray = [];
3329
+ if (FlowListParams?.propertyId !== void 0) {
3330
+ queryArray.push("propertyId=" + FlowListParams.propertyId);
3331
+ }
3329
3332
  if (FlowListOptions?.limit !== void 0) {
3330
3333
  queryArray.push("limit=" + FlowListOptions.limit);
3331
3334
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.201",
3
+ "version": "1.2.203",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",