@juhuu/sdk-ts 1.2.198 → 1.2.199

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
@@ -2547,7 +2547,7 @@ declare namespace JUHUU {
2547
2547
  capturedAt: Date | null;
2548
2548
  capturedBy: "system" | "propertyAdmin" | null;
2549
2549
  capturedByUserId: string | null;
2550
- isPartiallyOrFullyRefunded: boolean;
2550
+ refundLevel: boolean;
2551
2551
  };
2552
2552
  namespace Retrieve {
2553
2553
  type Params = {
@@ -3582,15 +3582,15 @@ declare namespace JUHUU {
3582
3582
  readonly object: "flow";
3583
3583
  name: string;
3584
3584
  startBlock: FlowBlock;
3585
- blocks: FlowBlock[];
3586
- edges: FlowEdge[];
3585
+ nodeArray: FlowBlock[];
3586
+ edgeArray: FlowEdge[];
3587
3587
  };
3588
3588
  namespace Create {
3589
3589
  type Params = {
3590
3590
  name: string;
3591
3591
  startBlock: FlowBlock;
3592
- blocks: FlowBlock[];
3593
- edges: FlowEdge[];
3592
+ nodeArray: FlowBlock[];
3593
+ edgeArray: FlowEdge[];
3594
3594
  };
3595
3595
  type Options = JUHUU.RequestOptions;
3596
3596
  type Response = {
@@ -3623,8 +3623,8 @@ declare namespace JUHUU {
3623
3623
  flowId: string;
3624
3624
  name?: string;
3625
3625
  startBlock?: FlowBlock;
3626
- blocks?: FlowBlock[];
3627
- edges?: FlowEdge[];
3626
+ nodeArray?: FlowBlock[];
3627
+ edgeArray?: FlowEdge[];
3628
3628
  };
3629
3629
  type Options = JUHUU.RequestOptions;
3630
3630
  type Response = {
package/dist/index.d.ts CHANGED
@@ -2547,7 +2547,7 @@ declare namespace JUHUU {
2547
2547
  capturedAt: Date | null;
2548
2548
  capturedBy: "system" | "propertyAdmin" | null;
2549
2549
  capturedByUserId: string | null;
2550
- isPartiallyOrFullyRefunded: boolean;
2550
+ refundLevel: boolean;
2551
2551
  };
2552
2552
  namespace Retrieve {
2553
2553
  type Params = {
@@ -3582,15 +3582,15 @@ declare namespace JUHUU {
3582
3582
  readonly object: "flow";
3583
3583
  name: string;
3584
3584
  startBlock: FlowBlock;
3585
- blocks: FlowBlock[];
3586
- edges: FlowEdge[];
3585
+ nodeArray: FlowBlock[];
3586
+ edgeArray: FlowEdge[];
3587
3587
  };
3588
3588
  namespace Create {
3589
3589
  type Params = {
3590
3590
  name: string;
3591
3591
  startBlock: FlowBlock;
3592
- blocks: FlowBlock[];
3593
- edges: FlowEdge[];
3592
+ nodeArray: FlowBlock[];
3593
+ edgeArray: FlowEdge[];
3594
3594
  };
3595
3595
  type Options = JUHUU.RequestOptions;
3596
3596
  type Response = {
@@ -3623,8 +3623,8 @@ declare namespace JUHUU {
3623
3623
  flowId: string;
3624
3624
  name?: string;
3625
3625
  startBlock?: FlowBlock;
3626
- blocks?: FlowBlock[];
3627
- edges?: FlowEdge[];
3626
+ nodeArray?: FlowBlock[];
3627
+ edgeArray?: FlowEdge[];
3628
3628
  };
3629
3629
  type Options = JUHUU.RequestOptions;
3630
3630
  type Response = {
package/dist/index.js CHANGED
@@ -3360,8 +3360,8 @@ var FlowsService = class extends Service {
3360
3360
  body: {
3361
3361
  name: FlowCreateParams.name,
3362
3362
  startBlock: FlowCreateParams.startBlock,
3363
- blocks: FlowCreateParams.blocks,
3364
- edges: FlowCreateParams.edges
3363
+ nodeArray: FlowCreateParams.nodeArray,
3364
+ edgeArray: FlowCreateParams.edgeArray
3365
3365
  },
3366
3366
  authenticationNotOptional: true
3367
3367
  },
@@ -3405,8 +3405,8 @@ var FlowsService = class extends Service {
3405
3405
  body: {
3406
3406
  name: FlowUpdateParams.name,
3407
3407
  startBlock: FlowUpdateParams.startBlock,
3408
- blocks: FlowUpdateParams.blocks,
3409
- edges: FlowUpdateParams.edges
3408
+ nodeArray: FlowUpdateParams.nodeArray,
3409
+ edgeArray: FlowUpdateParams.edgeArray
3410
3410
  },
3411
3411
  authenticationNotOptional: true
3412
3412
  },
package/dist/index.mjs CHANGED
@@ -3316,8 +3316,8 @@ var FlowsService = class extends Service {
3316
3316
  body: {
3317
3317
  name: FlowCreateParams.name,
3318
3318
  startBlock: FlowCreateParams.startBlock,
3319
- blocks: FlowCreateParams.blocks,
3320
- edges: FlowCreateParams.edges
3319
+ nodeArray: FlowCreateParams.nodeArray,
3320
+ edgeArray: FlowCreateParams.edgeArray
3321
3321
  },
3322
3322
  authenticationNotOptional: true
3323
3323
  },
@@ -3361,8 +3361,8 @@ var FlowsService = class extends Service {
3361
3361
  body: {
3362
3362
  name: FlowUpdateParams.name,
3363
3363
  startBlock: FlowUpdateParams.startBlock,
3364
- blocks: FlowUpdateParams.blocks,
3365
- edges: FlowUpdateParams.edges
3364
+ nodeArray: FlowUpdateParams.nodeArray,
3365
+ edgeArray: FlowUpdateParams.edgeArray
3366
3366
  },
3367
3367
  authenticationNotOptional: true
3368
3368
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.198",
3
+ "version": "1.2.199",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",