@marcoappio/marco-config 2.0.543 → 2.0.544
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.
|
@@ -4,6 +4,7 @@ export declare const getThreads: import("../../../../..").EndpointConfig<"/v1/pv
|
|
|
4
4
|
readonly id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
5
5
|
readonly labelIds: v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
6
6
|
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.TransformAction<string, number>, v.NumberSchema<undefined>, v.FiniteAction<number, undefined>]>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
7
|
+
readonly participants: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
7
8
|
}, undefined>, v.UnionSchema<[v.ObjectSchema<{
|
|
8
9
|
readonly data: v.ObjectSchema<{
|
|
9
10
|
readonly code: v.LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getThreads.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/models/thread/getThreads.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"getThreads.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/models/thread/getThreads.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmB5B,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAarB,CAAA"}
|
|
@@ -8,6 +8,7 @@ const getThreadsQuerySchema = v.object({
|
|
|
8
8
|
id: v.optional(v.string()),
|
|
9
9
|
labelIds: v.pipe(v.array(v.string()), v.minLength(1)),
|
|
10
10
|
limit: v.optional(marcoSchemas.number.positiveIntegerFromString()),
|
|
11
|
+
participants: v.optional(v.array(v.string())),
|
|
11
12
|
});
|
|
12
13
|
export const getThreads = createEndpoint({
|
|
13
14
|
method: 'GET',
|