@or-sdk/library-types-v1 6.0.9 → 6.0.10
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/CHANGELOG.md +6 -0
- package/dist/cjs/index.js +272 -552
- package/dist/cjs/index.js.map +4 -4
- package/dist/esm/index.js +272 -552
- package/dist/esm/index.js.map +4 -4
- package/dist/types/Packages/param.d.ts +3 -0
- package/package.json +1 -1
|
@@ -138,6 +138,7 @@ export declare const GetPackagesQuery: z.ZodIntersection<z.ZodObject<{
|
|
|
138
138
|
}>>;
|
|
139
139
|
categories: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>, unknown[], string | string[]>>>;
|
|
140
140
|
includeDeprecated: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
|
|
141
|
+
includePrerelease: z.ZodDefault<z.ZodUnion<[z.ZodEffects<z.ZodString, boolean, string>, z.ZodBoolean]>>;
|
|
141
142
|
}, "strip", z.ZodTypeAny, {
|
|
142
143
|
id?: unknown[];
|
|
143
144
|
type?: "TEST_ONLY" | "UNKNOWN" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "FLOW_TEMPLATE" | "BOT_TEMPLATE" | "TICKET_INPUT" | "CONTENT_INPUT" | "CONTENT" | "NPM_UNPACKED" | "S3_BUCKET" | "RWC_INPUT";
|
|
@@ -154,6 +155,7 @@ export declare const GetPackagesQuery: z.ZodIntersection<z.ZodObject<{
|
|
|
154
155
|
order?: "asc" | "desc";
|
|
155
156
|
categories?: unknown[];
|
|
156
157
|
includeDeprecated?: boolean;
|
|
158
|
+
includePrerelease?: boolean;
|
|
157
159
|
}, {
|
|
158
160
|
id?: string | string[];
|
|
159
161
|
type?: "TEST_ONLY" | "UNKNOWN" | "STEP" | "STEP_INPUT" | "STEP_TEMPLATE" | "FLOW_TEMPLATE" | "BOT_TEMPLATE" | "TICKET_INPUT" | "CONTENT_INPUT" | "CONTENT" | "NPM_UNPACKED" | "S3_BUCKET" | "RWC_INPUT";
|
|
@@ -168,6 +170,7 @@ export declare const GetPackagesQuery: z.ZodIntersection<z.ZodObject<{
|
|
|
168
170
|
order?: "asc" | "desc";
|
|
169
171
|
categories?: string | string[];
|
|
170
172
|
includeDeprecated?: string | boolean;
|
|
173
|
+
includePrerelease?: string | boolean;
|
|
171
174
|
}>>>;
|
|
172
175
|
export declare const PackageParamUniversal: z.ZodObject<{
|
|
173
176
|
type: z.ZodNativeEnum<{
|