@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.
- package/dist/types/api/api.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/api/api.d.ts
CHANGED
|
@@ -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
|
-
|
|
856
|
+
/** @format uuid */
|
|
857
|
+
planId?: string | null;
|
|
855
858
|
}
|
|
856
859
|
export interface UpdateCaseOperationDto {
|
|
857
860
|
/** @format uuid */
|