@thelllabs/winehaus-sdk 0.0.28 → 0.0.29

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.
@@ -212,6 +212,8 @@ export interface CreateCaseDto {
212
212
  /** @min 0 */
213
213
  maxItems: number;
214
214
  name: string;
215
+ /** @format uuid */
216
+ planId?: string | null;
215
217
  triggerInvoice?: boolean;
216
218
  }
217
219
  export interface CreateCaseOperationDto {
@@ -851,7 +853,8 @@ export interface UpdateCaseDto {
851
853
  /** @min 0 */
852
854
  maxItems: number;
853
855
  name: string;
854
- triggerInvoice?: boolean;
856
+ /** @format uuid */
857
+ planId?: string | null;
855
858
  }
856
859
  export interface UpdateCaseOperationDto {
857
860
  /** @format uuid */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thelllabs/winehaus-sdk",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Winehaus SDK",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",