@avallon-labs/sdk 24.1.0-staging.600 → 24.2.0-staging.602
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.ts +20 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3238,6 +3238,25 @@ declare const ListCasesSortOrder: {
|
|
|
3238
3238
|
*/
|
|
3239
3239
|
|
|
3240
3240
|
type ListCasesParams = {
|
|
3241
|
+
/**
|
|
3242
|
+
* Filter by exact case id. Values are normalized server-side (trimmed and lowercased) to match how case ids are stored.
|
|
3243
|
+
* @minLength 1
|
|
3244
|
+
*/
|
|
3245
|
+
id?: string;
|
|
3246
|
+
/**
|
|
3247
|
+
* Filter by case subject. Case-insensitive substring match against the case subject.
|
|
3248
|
+
* @minLength 1
|
|
3249
|
+
*/
|
|
3250
|
+
subject?: string;
|
|
3251
|
+
/**
|
|
3252
|
+
* Filter by reporter. Case-insensitive substring match against the case reporter.
|
|
3253
|
+
* @minLength 1
|
|
3254
|
+
*/
|
|
3255
|
+
reporter?: string;
|
|
3256
|
+
/**
|
|
3257
|
+
* Filter by the worker id that created the case.
|
|
3258
|
+
*/
|
|
3259
|
+
created_by?: string;
|
|
3241
3260
|
/**
|
|
3242
3261
|
* @minimum 1
|
|
3243
3262
|
* @maximum 100
|
|
@@ -6211,7 +6230,7 @@ type AwaitedInput$h<T> = PromiseLike<T> | T;
|
|
|
6211
6230
|
type Awaited$h<O> = O extends AwaitedInput$h<infer T> ? T : never;
|
|
6212
6231
|
type SecondParameter$h<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
6213
6232
|
/**
|
|
6214
|
-
* List all cases for the current tenant, paginated and sortable.
|
|
6233
|
+
* List all cases for the current tenant, paginated, filterable, and sortable.
|
|
6215
6234
|
* @summary List cases
|
|
6216
6235
|
*/
|
|
6217
6236
|
declare const getListCasesUrl: (params?: ListCasesParams) => string;
|