@zimic/http 0.1.0-canary.19 → 0.1.0-canary.20
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/LICENSE.md +1 -1
- package/README.md +111 -177
- package/dist/{chunk-7A4JDAZZ.mjs → chunk-C5GWXTO5.mjs} +2 -2
- package/dist/chunk-C5GWXTO5.mjs.map +1 -0
- package/dist/{chunk-VEQ424IU.js → chunk-KDDZRZK6.js} +2 -2
- package/dist/chunk-KDDZRZK6.js.map +1 -0
- package/dist/cli.js +8 -8
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.ts +13 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/typegen.js +2 -2
- package/dist/typegen.mjs +1 -1
- package/package.json +4 -4
- package/src/types/schema.ts +13 -31
- package/dist/chunk-7A4JDAZZ.mjs.map +0 -1
- package/dist/chunk-VEQ424IU.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -642,7 +642,7 @@ type HttpMethod = (typeof HTTP_METHODS)[number];
|
|
|
642
642
|
/**
|
|
643
643
|
* A schema representing the structure of an HTTP request.
|
|
644
644
|
*
|
|
645
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
645
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
646
646
|
*/
|
|
647
647
|
interface HttpRequestSchema {
|
|
648
648
|
headers?: HttpHeadersSchema.Loose;
|
|
@@ -655,7 +655,7 @@ type ConvertToStrictHttpRequestSchema<Schema> = {
|
|
|
655
655
|
/**
|
|
656
656
|
* A schema representing the structure of an HTTP response.
|
|
657
657
|
*
|
|
658
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
658
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
659
659
|
*/
|
|
660
660
|
interface HttpResponseSchema {
|
|
661
661
|
headers?: HttpHeadersSchema.Loose;
|
|
@@ -731,7 +731,7 @@ declare namespace HttpResponseSchemaByStatusCode {
|
|
|
731
731
|
/**
|
|
732
732
|
* A schema representing the structure of HTTP responses by status code.
|
|
733
733
|
*
|
|
734
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
734
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
735
735
|
*/
|
|
736
736
|
type HttpResponseSchemaByStatusCode = HttpResponseSchemaByStatusCode.ConvertToStrict<HttpResponseSchemaByStatusCode.Loose>;
|
|
737
737
|
type ConvertToStrictHttpResponseSchemaByStatusCode<Schema> = {
|
|
@@ -740,13 +740,13 @@ type ConvertToStrictHttpResponseSchemaByStatusCode<Schema> = {
|
|
|
740
740
|
/**
|
|
741
741
|
* Extracts the status codes used in a response schema by status code.
|
|
742
742
|
*
|
|
743
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
743
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
744
744
|
*/
|
|
745
745
|
type HttpResponseSchemaStatusCode<ResponseSchemaByStatusCode extends HttpResponseSchemaByStatusCode> = keyof ResponseSchemaByStatusCode & HttpStatusCode;
|
|
746
746
|
/**
|
|
747
747
|
* A schema representing the structure of an HTTP request and response for a given method.
|
|
748
748
|
*
|
|
749
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
749
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
750
750
|
*/
|
|
751
751
|
interface HttpMethodSchema {
|
|
752
752
|
request?: HttpRequestSchema;
|
|
@@ -773,7 +773,7 @@ type ConvertToStrictMethod<Schema> = {
|
|
|
773
773
|
/**
|
|
774
774
|
* A schema representing the structure of HTTP request and response by method.
|
|
775
775
|
*
|
|
776
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
776
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
777
777
|
*/
|
|
778
778
|
interface HttpMethodsSchema {
|
|
779
779
|
GET?: HttpMethodSchema.NoRequestBody;
|
|
@@ -796,9 +796,6 @@ type ConvertToStrictHttpSchema<Schema extends HttpSchema> = {
|
|
|
796
796
|
/**
|
|
797
797
|
* Declares an HTTP service schema.
|
|
798
798
|
*
|
|
799
|
-
* **IMPORTANT**: the input of `HttpSchema` and all of its internal types, except bodies, must be declared inline or as
|
|
800
|
-
* a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
801
|
-
*
|
|
802
799
|
* @example
|
|
803
800
|
* import { type HttpSchema } from '@zimic/http';
|
|
804
801
|
*
|
|
@@ -829,16 +826,13 @@ type ConvertToStrictHttpSchema<Schema extends HttpSchema> = {
|
|
|
829
826
|
* };
|
|
830
827
|
* }>;
|
|
831
828
|
*
|
|
832
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
829
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
833
830
|
*/
|
|
834
831
|
type HttpSchema<Schema extends BaseHttpSchema = BaseHttpSchema> = ConvertToStrictHttpSchema<Schema>;
|
|
835
832
|
declare namespace HttpSchema {
|
|
836
833
|
/**
|
|
837
834
|
* Declares an HTTP service methods schema.
|
|
838
835
|
*
|
|
839
|
-
* **IMPORTANT**: the input of `HttpSchema.Methods` and all of its internal types, except bodies, must be declared
|
|
840
|
-
* inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
841
|
-
*
|
|
842
836
|
* @example
|
|
843
837
|
* import { type HttpSchema } from '@zimic/http';
|
|
844
838
|
*
|
|
@@ -858,9 +852,6 @@ declare namespace HttpSchema {
|
|
|
858
852
|
/**
|
|
859
853
|
* Declares an HTTP service method schema.
|
|
860
854
|
*
|
|
861
|
-
* **IMPORTANT**: the input of `HttpSchema.Method` and all of its internal types, except bodies, must be declared
|
|
862
|
-
* inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
863
|
-
*
|
|
864
855
|
* @example
|
|
865
856
|
* import { type HttpSchema } from '@zimic/http';
|
|
866
857
|
*
|
|
@@ -880,9 +871,6 @@ declare namespace HttpSchema {
|
|
|
880
871
|
/**
|
|
881
872
|
* Declares an HTTP service request schema.
|
|
882
873
|
*
|
|
883
|
-
* **IMPORTANT**: the input of `HttpSchema.Request` and all of its internal types, except bodies, must be declared
|
|
884
|
-
* inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
885
|
-
*
|
|
886
874
|
* @example
|
|
887
875
|
* import { type HttpSchema } from '@zimic/http';
|
|
888
876
|
*
|
|
@@ -906,9 +894,6 @@ declare namespace HttpSchema {
|
|
|
906
894
|
/**
|
|
907
895
|
* Declares an HTTP service response schema by status code.
|
|
908
896
|
*
|
|
909
|
-
* **IMPORTANT**: the input of `HttpSchema.ResponseByStatusCode` and all of its internal types, except bodies, must be
|
|
910
|
-
* declared inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
911
|
-
*
|
|
912
897
|
* @example
|
|
913
898
|
* import { type HttpSchema } from '@zimic/http';
|
|
914
899
|
*
|
|
@@ -929,9 +914,6 @@ declare namespace HttpSchema {
|
|
|
929
914
|
/**
|
|
930
915
|
* Declares an HTTP service response schema.
|
|
931
916
|
*
|
|
932
|
-
* **IMPORTANT**: the input of `HttpSchema.Response` and all of its internal types, except bodies, must be declared
|
|
933
|
-
* inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.
|
|
934
|
-
*
|
|
935
917
|
* @example
|
|
936
918
|
* import { type HttpSchema } from '@zimic/http';
|
|
937
919
|
*
|
|
@@ -1081,7 +1063,7 @@ declare namespace HttpSchema {
|
|
|
1081
1063
|
/**
|
|
1082
1064
|
* Extracts the methods from an HTTP service schema.
|
|
1083
1065
|
*
|
|
1084
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
1066
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
1085
1067
|
*/
|
|
1086
1068
|
type HttpSchemaMethod<Schema extends HttpSchema> = IfAny<Schema, any, // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
1087
1069
|
// eslint-disable-line @typescript-eslint/no-explicit-any
|
|
@@ -1113,7 +1095,7 @@ type AllowAnyStringInPathParams<Path extends string> = Path extends `${infer Pre
|
|
|
1113
1095
|
* type GetPath = HttpSchemaPath<Schema, 'GET'>;
|
|
1114
1096
|
* // "/users"
|
|
1115
1097
|
*
|
|
1116
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
1098
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
1117
1099
|
*/
|
|
1118
1100
|
declare namespace HttpSchemaPath {
|
|
1119
1101
|
type LooseLiteral<Schema extends HttpSchema, Method extends HttpMethod = HttpMethod> = {
|
|
@@ -1145,7 +1127,7 @@ declare namespace HttpSchemaPath {
|
|
|
1145
1127
|
* type LiteralGetPath = HttpSchemaPath.Literal<Schema, 'GET'>;
|
|
1146
1128
|
* // "/users"
|
|
1147
1129
|
*
|
|
1148
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
1130
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
1149
1131
|
*/
|
|
1150
1132
|
export type Literal<Schema extends HttpSchema, Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>> = LooseLiteral<Schema, Method>;
|
|
1151
1133
|
/**
|
|
@@ -1174,7 +1156,7 @@ declare namespace HttpSchemaPath {
|
|
|
1174
1156
|
* type NonLiteralGetPath = HttpSchemaPath.NonLiteral<Schema, 'GET'>;
|
|
1175
1157
|
* // "/users"
|
|
1176
1158
|
*
|
|
1177
|
-
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐
|
|
1159
|
+
* @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}
|
|
1178
1160
|
*/
|
|
1179
1161
|
export type NonLiteral<Schema extends HttpSchema, Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>> = AllowAnyStringInPathParams<Literal<Schema, Method>>;
|
|
1180
1162
|
export { };
|
|
@@ -1199,7 +1181,7 @@ type RecursiveInferPathParams<Path extends string> = Path extends `${infer _Pref
|
|
|
1199
1181
|
* @example
|
|
1200
1182
|
* import { HttpSchema, InferPathParams } from '@zimic/http';
|
|
1201
1183
|
*
|
|
1202
|
-
* type
|
|
1184
|
+
* type Schema = HttpSchema<{
|
|
1203
1185
|
* '/users/:userId': {
|
|
1204
1186
|
* GET: {
|
|
1205
1187
|
* response: { 200: { body: User } };
|
|
@@ -1208,7 +1190,7 @@ type RecursiveInferPathParams<Path extends string> = Path extends `${infer _Pref
|
|
|
1208
1190
|
* }>;
|
|
1209
1191
|
*
|
|
1210
1192
|
* // Using a schema to validate the path (recommended):
|
|
1211
|
-
* type PathParams = InferPathParams<
|
|
1193
|
+
* type PathParams = InferPathParams<Schema, '/users/:userId'>;
|
|
1212
1194
|
* // { userId: string }
|
|
1213
1195
|
*
|
|
1214
1196
|
* @example
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../zimic-utils/dist/chunk-PAWJFY3S.mjs","../../zimic-utils/src/data/blobEquals.ts","../../zimic-utils/src/data/fileEquals.ts","../src/formData/HttpFormData.ts","../src/headers/HttpHeaders.ts","../src/searchParams/HttpSearchParams.ts","../src/types/schema.ts"],"names":["__defProp","__name","pickPrimitiveProperties"],"mappings":"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","file":"index.js","sourcesContent":["var __defProp = Object.defineProperty;\nvar __name = (target, value) => __defProp(target, \"name\", { value, configurable: true });\n\nexport { __name };\n//# sourceMappingURL=chunk-PAWJFY3S.mjs.map\n//# sourceMappingURL=chunk-PAWJFY3S.mjs.map","async function blobEquals(blob: Blob, otherBlob: Blob) {\n return (\n blob.type === otherBlob.type && blob.size === otherBlob.size && (await blob.text()) === (await otherBlob.text())\n );\n}\n\nexport default blobEquals;\n","import blobEquals from './blobEquals';\n\nasync function fileEquals(file: File, otherFile: File) {\n return file.name === otherFile.name && (await blobEquals(file, otherFile));\n}\n\nexport default fileEquals;\n","import fileEquals from '@zimic/utils/data/fileEquals';\nimport { ArrayItemIfArray, ReplaceBy } from '@zimic/utils/types';\n\nimport { HttpFormDataSchema, HttpFormDataSchemaName } from './types';\n\n/**\n * An extended HTTP form data object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/FormData `FormData`} class.\n *\n * **IMPORTANT**: the input of `HttpFormData` and all of its internal types must be declared inline or as a type aliases\n * (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpFormData } from '@zimic/http';\n *\n * const formData = new HttpFormData<{\n * files: File[];\n * description?: string;\n * }>();\n *\n * formData.append('file', new File(['content'], 'file.txt', { type: 'text/plain' }));\n * formData.append('description', 'My file');\n *\n * const files = formData.getAll('file');\n * console.log(files); // [File { name: 'file.txt', type: 'text/plain' }]\n *\n * const description = formData.get('description');\n * console.log(description); // 'My file'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpformdata `HttpFormData` API reference}\n */\nclass HttpFormData<Schema extends HttpFormDataSchema = HttpFormDataSchema> extends FormData {\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/set MDN Reference} */\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n value: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob>,\n ): void;\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blob: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, string>,\n fileName?: string,\n ): void;\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blobOrValue: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n fileName?: string,\n ): void {\n if (fileName === undefined) {\n super.set(name, blobOrValue as Blob);\n } else {\n super.set(name, blobOrValue as Blob, fileName);\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/append MDN Reference} */\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n value: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob>,\n ): void;\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blob: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, string>,\n fileName?: string,\n ): void;\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blobOrValue: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n fileName?: string,\n ): void {\n if (fileName === undefined) {\n super.append(name, blobOrValue as Blob);\n } else {\n super.append(name, blobOrValue as Blob, fileName);\n }\n }\n\n /**\n * Get the value of the entry associated to a key name.\n *\n * If the key might have multiple values, use {@link HttpFormData#getAll} instead.\n *\n * @param name The name of the key to get the value of.\n * @returns The value associated with the key name, or `null` if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/FormData/get MDN Reference}\n */\n get<Name extends HttpFormDataSchemaName.NonArray<Schema>>(\n name: Name,\n ): ReplaceBy<ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>, Blob, File> {\n return super.get(name) as ReplaceBy<ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>, Blob, File>;\n }\n\n /**\n * Get all the values of the entry associated with a key name.\n *\n * If the key has at most a single value, use {@link HttpFormData#get} instead.\n *\n * @param name The name of the key to get the values of.\n * @returns An array of values associated with the key name, or an empty array if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/FormData/getAll MDN Reference}\n */\n getAll<Name extends HttpFormDataSchemaName.Array<Schema>>(\n name: Name,\n ): ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob, File>[] {\n return super.getAll(name) as ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob, File>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/has MDN Reference} */\n has<Name extends HttpFormDataSchemaName<Schema>>(name: Name): boolean {\n return super.has(name);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/delete MDN Reference} */\n delete<Name extends HttpFormDataSchemaName<Schema>>(name: Name): void {\n super.delete(name);\n }\n\n forEach<This extends HttpFormData<Schema>>(\n callback: <Key extends HttpFormDataSchemaName<Schema>>(\n value: ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Key]>>, Blob, File>,\n key: Key,\n parent: HttpFormData<Schema>,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/keys MDN Reference} */\n keys(): FormDataIterator<HttpFormDataSchemaName<Schema>> {\n return super.keys() as FormDataIterator<HttpFormDataSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/values MDN Reference} */\n values(): FormDataIterator<\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>\n > {\n return super.values() as FormDataIterator<\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>\n >;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/entries MDN Reference} */\n entries(): FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n > {\n return super.entries() as FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n >;\n }\n\n [Symbol.iterator](): FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n > {\n return super[Symbol.iterator]() as FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n >;\n }\n\n /**\n * Checks if the data is equal to the other data. Equality is defined as having the same keys and values, regardless\n * of the order of keys.\n *\n * @param otherData The other data to compare.\n * @returns A promise that resolves with `true` if the data is equal to the other data, or `false` otherwise.\n * Important: both form data might be read while comparing.\n */\n async equals<OtherSchema extends Schema>(otherData: HttpFormData<OtherSchema>): Promise<boolean> {\n for (const [otherKey, otherValue] of otherData.entries()) {\n const values = super.getAll.call(this, otherKey);\n\n const haveSameNumberOfValues = values.length === super.getAll.call(otherData, otherKey).length;\n if (!haveSameNumberOfValues) {\n return false;\n }\n\n let valueExists = false;\n\n for (const value of values) {\n if (\n value === otherValue ||\n (value instanceof Blob && otherValue instanceof Blob && (await fileEquals(value, otherValue)))\n ) {\n valueExists = true;\n break;\n }\n }\n\n if (!valueExists) {\n return false;\n }\n }\n\n for (const key of this.keys()) {\n const otherHasKey = super.has.call(otherData, key);\n if (!otherHasKey) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Checks if the data contains the other data. This method is less strict than {@link HttpFormData#equals} and only\n * requires that all keys and values in the other data are present in this data.\n *\n * @param otherData The other data to compare.\n * @returns A promise that resolves with `true` if this data contains the other data, or `false` otherwise. Important:\n * both form data might be read while comparing.\n */\n async contains<OtherSchema extends Schema>(otherData: HttpFormData<OtherSchema>): Promise<boolean> {\n for (const [otherKey, otherValue] of otherData.entries()) {\n const values = super.getAll.call(this, otherKey);\n\n const haveCompatibleNumberOfValues = values.length >= super.getAll.call(otherData, otherKey).length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n let valueExists = false;\n\n for (const value of values) {\n if (\n value === otherValue ||\n (typeof value === 'string' && typeof otherValue === 'string' && value === otherValue) ||\n (value instanceof Blob && otherValue instanceof Blob && (await fileEquals(value, otherValue)))\n ) {\n valueExists = true;\n break;\n }\n }\n\n if (!valueExists) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Converts this form data into a plain object. This method is useful for serialization and debugging purposes.\n *\n * **NOTE**: If a key has multiple values, the object will contain an array of values for that key. If the key has\n * only one value, the object will contain its value directly, without an array, regardless of how the value was\n * initialized when creating the form data.\n *\n * @example\n * const formData = new HttpFormData<{\n * title: string;\n * descriptions: string[];\n * content: Blob;\n * }>();\n *\n * formData.set('title', 'My title');\n * formData.append('descriptions', 'Description 1');\n * formData.append('descriptions', 'Description 2');\n * formData.set('content', new Blob(['content'], { type: 'text/plain' }));\n *\n * const object = formData.toObject();\n * console.log(object); // { title: 'My title', descriptions: ['Description 1', 'Description 2'], content: Blob { type: 'text/plain' } }\n *\n * @returns A plain object representation of this form data.\n */\n toObject() {\n const object = {} as Schema;\n\n type SchemaValue = Schema[HttpFormDataSchemaName<Schema>];\n\n for (const [key, value] of this.entries()) {\n if (key in object) {\n const existingValue = object[key];\n\n if (Array.isArray<SchemaValue>(existingValue)) {\n existingValue.push(value as SchemaValue);\n } else {\n object[key] = [existingValue, value] as SchemaValue;\n }\n } else {\n object[key] = value as SchemaValue;\n }\n }\n\n return object;\n }\n}\n\nexport default HttpFormData;\n","import { Default, ReplaceBy } from '@zimic/utils/types';\n\nimport { HttpHeadersSchema, HttpHeadersInit, HttpHeadersSchemaName } from './types';\n\nfunction pickPrimitiveProperties<Schema extends HttpHeadersSchema>(schema: Schema) {\n return Object.entries(schema).reduce<Record<string, string>>((accumulated, [key, value]) => {\n if (value !== undefined) {\n accumulated[key] = value;\n }\n return accumulated;\n }, {});\n}\n\n/**\n * An extended HTTP headers object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/Headers `Headers`} class.\n *\n * **IMPORTANT**: the input of `HttpHeaders` and all of its internal types must be declared inline or as a type aliases\n * (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpHeaders } from '@zimic/http';\n *\n * const headers = new HttpHeaders<{\n * accept?: string;\n * 'content-type'?: string;\n * }>({\n * accept: '*',\n * 'content-type': 'application/json',\n * });\n *\n * const contentType = headers.get('content-type');\n * console.log(contentType); // 'application/json'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpheaders `HttpHeaders` API reference}\n */\nclass HttpHeaders<Schema extends HttpHeadersSchema = HttpHeadersSchema> extends Headers {\n constructor(init?: HttpHeadersInit<Schema>) {\n if (init instanceof Headers || Array.isArray(init) || !init) {\n super(init);\n } else {\n super(pickPrimitiveProperties(init));\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/set MDN Reference} */\n set<Name extends HttpHeadersSchemaName<Schema>>(name: Name, value: NonNullable<Schema[Name]> & string): void {\n super.set(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/append MDN Reference} */\n append<Name extends HttpHeadersSchemaName<Schema>>(name: Name, value: NonNullable<Schema[Name]> & string): void {\n super.append(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/get MDN Reference} */\n get<Name extends HttpHeadersSchemaName<Schema>>(name: Name): ReplaceBy<Schema[Name], undefined, null> {\n return super.get(name) as ReplaceBy<Schema[Name], undefined, null>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/has MDN Reference} */\n getSetCookie(): NonNullable<Default<Schema['Set-Cookie'], string>>[] {\n return super.getSetCookie() as NonNullable<Default<Schema['Set-Cookie'], string>>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/has MDN Reference} */\n has<Name extends HttpHeadersSchemaName<Schema>>(name: Name): boolean {\n return super.has(name);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/delete MDN Reference} */\n delete<Name extends HttpHeadersSchemaName<Schema>>(name: Name): void {\n super.delete(name);\n }\n\n forEach<This extends HttpHeaders<Schema>>(\n callback: <Key extends HttpHeadersSchemaName<Schema>>(\n value: NonNullable<Schema[Key]> & string,\n key: Key,\n parent: Headers,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: string, key: string, parent: Headers) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/keys MDN Reference} */\n keys(): HeadersIterator<HttpHeadersSchemaName<Schema>> {\n return super.keys() as HeadersIterator<HttpHeadersSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/values MDN Reference} */\n values(): HeadersIterator<NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string> {\n return super.values() as HeadersIterator<NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/entries MDN Reference} */\n entries(): HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n > {\n return super.entries() as HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n >;\n }\n\n [Symbol.iterator](): HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n > {\n return super[Symbol.iterator]() as HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n >;\n }\n\n /**\n * Checks if this headers object is equal to another set of headers. Equality is defined as having the same keys and\n * values, regardless of the order of keys.\n *\n * @param otherHeaders The other headers object to compare against.\n * @returns `true` if the headers are equal, `false` otherwise.\n */\n equals<OtherSchema extends Schema>(otherHeaders: HttpHeaders<OtherSchema>): boolean {\n for (const [key, otherValue] of otherHeaders.entries()) {\n const value = super.get.call(this, key);\n\n if (value === null) {\n return false;\n }\n\n const valueItems = this.splitHeaderValues(value);\n const otherValueItems = this.splitHeaderValues(otherValue);\n\n const haveCompatibleNumberOfValues = valueItems.length === otherValueItems.length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n for (const otherValueItem of otherValueItems) {\n if (!valueItems.includes(otherValueItem)) {\n return false;\n }\n }\n }\n\n for (const key of this.keys()) {\n const otherHasKey = super.has.call(otherHeaders, key);\n if (!otherHasKey) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Checks if this headers object contains another set of headers. This method is less strict than\n * {@link HttpHeaders#equals} and only requires that all keys and values in the other headers are present in these\n * headers.\n *\n * @param otherHeaders The other headers object to compare against.\n * @returns `true` if these headers contain the other headers, `false` otherwise.\n */\n contains<OtherSchema extends Schema>(otherHeaders: HttpHeaders<OtherSchema>): boolean {\n for (const [key, otherValue] of otherHeaders.entries()) {\n const value = super.get.call(this, key);\n\n if (value === null) {\n return false;\n }\n\n const valueItems = this.splitHeaderValues(value);\n const otherValueItems = this.splitHeaderValues(otherValue);\n\n const haveCompatibleNumberOfValues = valueItems.length >= otherValueItems.length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n for (const otherValueItem of otherValueItems) {\n if (!valueItems.includes(otherValueItem)) {\n return false;\n }\n }\n }\n\n return true;\n }\n\n /**\n * Converts these headers into a plain object. This method is useful for serialization and debugging purposes.\n *\n * @example\n * const headers = new HttpHeaders({\n * accept: 'application/json',\n * 'content-type': 'application/json',\n * });\n * const object = headers.toObject();\n * console.log(object); // { accept: 'application/json', 'content-type': 'application/json' }\n *\n * @returns A plain object representation of these headers.\n */\n toObject(): Schema {\n const object = {} as Schema;\n\n for (const [key, value] of this.entries()) {\n object[key] = value;\n }\n\n return object;\n }\n\n private splitHeaderValues(value: string) {\n return value\n .split(',')\n .map((item) => item.trim())\n .filter((item) => item.length > 0);\n }\n}\n\nexport default HttpHeaders;\n","import { ReplaceBy, ArrayItemIfArray } from '@zimic/utils/types';\n\nimport { HttpSearchParamsSchema, HttpSearchParamsInit, HttpSearchParamsSchemaName } from './types';\n\nfunction pickPrimitiveProperties<Schema extends HttpSearchParamsSchema>(schema: Schema) {\n const schemaWithPrimitiveProperties = Object.entries(schema).reduce<Record<string, string>>(\n (accumulated, [key, value]) => {\n if (value !== undefined && !Array.isArray(value)) {\n accumulated[key] = value;\n }\n return accumulated;\n },\n {},\n );\n return schemaWithPrimitiveProperties;\n}\n\n/**\n * An extended HTTP search params object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams `URLSearchParams`} class.\n *\n * **IMPORTANT**: the input of `HttpSearchParams` and all of its internal types must be declared inline or as a type\n * aliases (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpSearchParams } from '@zimic/http';\n *\n * const searchParams = new HttpSearchParams<{\n * names?: string[];\n * page?: `${number}`;\n * }>({\n * names: ['user 1', 'user 2'],\n * page: '1',\n * });\n *\n * const names = searchParams.getAll('names');\n * console.log(names); // ['user 1', 'user 2']\n *\n * const page = searchParams.get('page');\n * console.log(page); // '1'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpsearchparams `HttpSearchParams` API reference}\n */\nclass HttpSearchParams<Schema extends HttpSearchParamsSchema = HttpSearchParamsSchema> extends URLSearchParams {\n constructor(init?: HttpSearchParamsInit<Schema>) {\n if (init instanceof URLSearchParams || Array.isArray(init) || typeof init === 'string' || !init) {\n super(init);\n } else {\n super(pickPrimitiveProperties(init));\n this.populateInitArrayProperties(init);\n }\n }\n\n private populateInitArrayProperties(init: Schema) {\n for (const [key, value] of Object.entries(init)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n super.append(key, item);\n }\n }\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/set MDN Reference} */\n set<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.set(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/append MDN Reference} */\n append<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.append(name, value);\n }\n\n /**\n * Get the value of the entry associated to a key name.\n *\n * If the key might have multiple values, use {@link HttpSearchParams#getAll} instead.\n *\n * @param name The name of the key to get the value of.\n * @returns The value associated with the key name, or `null` if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/get MDN Reference}\n */\n get<Name extends HttpSearchParamsSchemaName.NonArray<Schema>>(\n name: Name,\n ): ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null> {\n return super.get(name) as ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>;\n }\n\n /**\n * Get all the values of the entry associated with a key name.\n *\n * If the key has at most one value, use {@link HttpSearchParams#get} instead.\n *\n * @param name The name of the key to get the values of.\n * @returns An array of values associated with the key name, or an empty array if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/getAll MDN Reference}\n */\n getAll<Name extends HttpSearchParamsSchemaName.Array<Schema>>(\n name: Name,\n ): ArrayItemIfArray<NonNullable<Schema[Name]>>[] {\n return super.getAll(name) as ArrayItemIfArray<NonNullable<Schema[Name]>>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/has MDN Reference} */\n has<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value?: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): boolean {\n return super.has(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete MDN Reference} */\n delete<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value?: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.delete(name, value);\n }\n\n forEach<This extends HttpSearchParams<Schema>>(\n callback: <Key extends HttpSearchParamsSchemaName<Schema>>(\n value: ArrayItemIfArray<NonNullable<Schema[Key]>>,\n key: Key,\n parent: HttpSearchParams<Schema>,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: string, key: string, parent: URLSearchParams) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/keys MDN Reference} */\n keys(): URLSearchParamsIterator<HttpSearchParamsSchemaName<Schema>> {\n return super.keys() as URLSearchParamsIterator<HttpSearchParamsSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/values MDN Reference} */\n values(): URLSearchParamsIterator<ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>> {\n return super.values() as URLSearchParamsIterator<\n ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>\n >;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/entries MDN Reference} */\n entries(): URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n > {\n return super.entries() as URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n >;\n }\n\n [Symbol.iterator](): URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n > {\n return super[Symbol.iterator]() as URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n >;\n }\n\n /**\n * Checks if these search params are equal to another set of search parameters. Equality is defined as having the same\n * keys and values, regardless of the order of the keys.\n *\n * @param otherParams The other search parameters to compare against.\n * @returns `true` if the search parameters are equal, `false` otherwise.\n */\n equals<OtherSchema extends Schema>(otherParams: HttpSearchParams<OtherSchema>): boolean {\n for (const [key, otherValue] of otherParams.entries()) {\n const values = super.getAll.call(this, key);\n\n const haveSameNumberOfValues = values.length === super.getAll.call(otherParams, key).length;\n if (!haveSameNumberOfValues) {\n return false;\n }\n\n const valueExists = values.includes(otherValue);\n if (!valueExists) {\n return false;\n }\n }\n\n return this.size === otherParams.size;\n }\n\n /**\n * Checks if these search params contain another set of search parameters. This method is less strict than\n * {@link HttpSearchParams#equals} and only requires that all keys and values in the other search parameters are\n * present in these search parameters.\n *\n * @param otherParams The other search parameters to check for containment.\n * @returns `true` if these search parameters contain the other search parameters, `false` otherwise.\n */\n contains<OtherSchema extends Schema>(otherParams: HttpSearchParams<OtherSchema>): boolean {\n for (const [key, otherValue] of otherParams.entries()) {\n const values = super.getAll.call(this, key);\n\n const haveCompatibleNumberOfValues = values.length >= super.getAll.call(otherParams, key).length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n const valueExists = values.includes(otherValue);\n if (!valueExists) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Converts these search params into a plain object. This method is useful for serialization and debugging purposes.\n *\n * **NOTE**: If a key has multiple values, the object will contain an array of values for that key. If the key has\n * only one value, the object will contain its value directly, without an array, regardless of how the value was\n * initialized when creating the search params object.\n *\n * @example\n * const searchParams = new HttpSearchParams({\n * names: ['user 1', 'user 2'],\n * name: ['user 3'],\n * page: '1',\n * });\n * const object = searchParams.toObject();\n * console.log(object); // { names: ['user 1', 'user 2'], name: 'user 3', page: '1' }\n *\n * @returns A plain object representation of these search params.\n */\n toObject() {\n const object = {} as Schema;\n\n type SchemaValue = Schema[HttpSearchParamsSchemaName<Schema>];\n\n for (const [key, value] of this.entries()) {\n if (key in object) {\n const existingValue = object[key];\n\n if (Array.isArray<SchemaValue>(existingValue)) {\n existingValue.push(value as SchemaValue);\n } else {\n object[key] = [existingValue, value] as SchemaValue;\n }\n } else {\n object[key] = value as SchemaValue;\n }\n }\n\n return object;\n }\n}\n\nexport default HttpSearchParams;\n","import { IfAny, UnionToIntersection, UnionHasMoreThanOneType, Prettify, NonEmptyArray } from '@zimic/utils/types';\n\nimport { HttpFormDataSchema, HttpFormDataSerialized } from '../formData/types';\nimport { HttpHeadersSchema, HttpHeadersSerialized } from '../headers/types';\nimport { HttpPathParamsSchema, HttpPathParamsSerialized } from '../pathParams/types';\nimport { HttpSearchParamsSchema, HttpSearchParamsSerialized } from '../searchParams/types';\nimport { HttpBody } from './requests';\n\nexport const HTTP_METHODS_WITH_REQUEST_BODY = Object.freeze(['POST', 'PUT', 'PATCH', 'DELETE'] as const);\nexport type HttpMethodWithRequestBody = (typeof HTTP_METHODS_WITH_REQUEST_BODY)[number];\n\nexport const HTTP_METHODS_WITH_RESPONSE_BODY = Object.freeze([\n 'GET',\n 'POST',\n 'PUT',\n 'PATCH',\n 'DELETE',\n 'OPTIONS',\n] as const);\nexport type HttpMethodWithResponseBody = (typeof HTTP_METHODS_WITH_RESPONSE_BODY)[number];\n\nexport const HTTP_METHODS = Object.freeze(['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS'] as const);\n/**\n * A type representing the currently supported\n * {@link https://developer.mozilla.org/docs/Web/HTTP/Methods `HTTP methods`}.\n */\nexport type HttpMethod = (typeof HTTP_METHODS)[number];\n\n/**\n * A schema representing the structure of an HTTP request.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpRequestSchema {\n headers?: HttpHeadersSchema.Loose;\n searchParams?: HttpSearchParamsSchema.Loose;\n body?: HttpBody.Loose;\n}\n\ntype ConvertToStrictHttpRequestSchema<Schema> = {\n [Key in keyof Schema]: Key extends 'headers'\n ? HttpHeadersSerialized<Schema[Key]>\n : Key extends 'searchParams'\n ? HttpSearchParamsSerialized<Schema[Key]>\n : Key extends 'body'\n ? HttpBody.ConvertToStrict<Schema[Key]>\n : Schema[Key];\n};\n\n/**\n * A schema representing the structure of an HTTP response.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpResponseSchema {\n headers?: HttpHeadersSchema.Loose;\n body?: HttpBody.Loose;\n}\n\nexport namespace HttpResponseSchema {\n /** A schema representing the structure of an HTTP response with no body. */\n export interface NoBody extends Omit<HttpResponseSchema, 'body'> {\n body?: null;\n }\n}\n\ntype ConvertToStrictHttpResponseSchema<Schema> = ConvertToStrictHttpRequestSchema<Schema>;\n\n/**\n * The status codes used in HTTP responses, as defined by\n * {@link https://httpwg.org/specs/rfc9110.html#overview.of.status.codes RFC-9110}.\n *\n * - `HttpStatusCode.Information`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#information_responses `1XX`}\n * - `HttpStatusCode.Success`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#successful_responses `2XX`}\n * - `HttpStatusCode.Redirection`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#redirection_messages `3XX`}\n * - `HttpStatusCode.ClientError`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#client_error_responses `4XX`}\n * - `HttpStatusCode.ServerError`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#server_error_responses `5XX`}\n */\nexport namespace HttpStatusCode {\n /**\n * An HTTP status code in the `1XX` range, representing an informational response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#information_responses `1XX`}\n */\n export type Information =\n | 100 // Continue\n | 101 // Switching Protocols\n | 102 // Processing\n | 103; // Early Hints\n\n /**\n * An HTTP status code in the `2XX` range, representing a successful response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#successful_responses `2XX`}\n */\n export type Success =\n | 200 // OK\n | 201 // Created\n | 202 // Accepted\n | 203 // Non-Authoritative Information\n | 204 // No Content\n | 205 // Reset Content\n | 206 // Partial Content\n | 207 // Multi-Status\n | 208 // Already Reported\n | 226; // IM Used\n\n /**\n * An HTTP status code in the `3XX` range, representing a redirection response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#redirection_messages `3XX`}\n */\n export type Redirection =\n | 300 // Multiple Choices\n | 301 // Moved Permanently\n | 302 // Found\n | 303 // See Other\n | 304 // Not Modified\n | 307 // Temporary Redirect\n | 308; // Permanent Redirect\n\n /**\n * An HTTP status code in the `4XX` range, representing a client error response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#client_error_responses `4XX`}\n */\n export type ClientError =\n | 400 // Bad Request\n | 401 // Unauthorized\n | 402 // Payment Required\n | 403 // Forbidden\n | 404 // Not Found\n | 405 // Method Not Allowed\n | 406 // Not Acceptable\n | 407 // Proxy Authentication Required\n | 408 // Request Timeout\n | 409 // Conflict\n | 410 // Gone\n | 411 // Length Required\n | 412 // Precondition Failed\n | 413 // Content Too Large\n | 414 // URI Too Long\n | 415 // Unsupported Media Type\n | 416 // Range Not Satisfiable\n | 417 // Expectation Failed\n | 418 // I'm a teapot\n | 421 // Misdirected Request\n | 422 // Unprocessable Content\n | 423 // Locked\n | 424 // Failed Dependency\n | 425 // Too Early\n | 426 // Upgrade Required\n | 428 // Precondition Required\n | 429 // Too Many Requests\n | 431 // Request Header Fields Too Large\n | 451; // Unavailable For Legal Reasons\n\n /**\n * An HTTP status code in the `5XX` range, representing a server error response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#server_error_responses `5XX`}\n */\n export type ServerError =\n | 500 // Internal Server Error\n | 501 // Not Implemented\n | 502 // Bad Gateway\n | 503 // Service Unavailable\n | 504 // Gateway Timeout\n | 505 // HTTP Version Not Supported\n | 506 // Variant Also Negotiates\n | 507 // Insufficient Storage\n | 508 // Loop Detected\n | 510 // Not Extended\n | 511; // Network Authentication Required\n}\n\nexport type HttpStatusCode =\n | HttpStatusCode.Information\n | HttpStatusCode.Success\n | HttpStatusCode.Redirection\n | HttpStatusCode.ClientError\n | HttpStatusCode.ServerError;\n\nexport namespace HttpResponseSchemaByStatusCode {\n /** A loose version of HTTP responses by status code. JSON values are not strictly typed. */\n export type Loose = {\n [StatusCode in HttpStatusCode]?: HttpResponseSchema;\n };\n\n /**\n * Converts a possibly loose HTTP response schema by status code to be strictly typed. JSON values are serialized to\n * their strict form.\n */\n export type ConvertToStrict<Schema extends Loose> = {\n [StatusCode in keyof Schema]: StatusCode extends 204 ? HttpResponseSchema.NoBody : Schema[StatusCode];\n };\n\n /** A schema representing the structure of HTTP responses by status code with no body. */\n export type NoBody = {\n [StatusCode in HttpStatusCode]?: HttpResponseSchema.NoBody;\n };\n}\n\n/**\n * A schema representing the structure of HTTP responses by status code.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpResponseSchemaByStatusCode =\n HttpResponseSchemaByStatusCode.ConvertToStrict<HttpResponseSchemaByStatusCode.Loose>;\n\ntype ConvertToStrictHttpResponseSchemaByStatusCode<Schema> = {\n [Key in keyof Schema]: ConvertToStrictHttpResponseSchema<Schema[Key]>;\n};\n\n/**\n * Extracts the status codes used in a response schema by status code.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpResponseSchemaStatusCode<ResponseSchemaByStatusCode extends HttpResponseSchemaByStatusCode> =\n keyof ResponseSchemaByStatusCode & HttpStatusCode;\n\n/**\n * A schema representing the structure of an HTTP request and response for a given method.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpMethodSchema {\n request?: HttpRequestSchema;\n response?: HttpResponseSchemaByStatusCode;\n}\n\nexport namespace HttpMethodSchema {\n /** A schema representing the structure of an HTTP request and response for a given method, having no request body. */\n export interface NoRequestBody extends Omit<HttpMethodSchema, 'request'> {\n request?: Omit<HttpRequestSchema, 'body'> & { body?: null };\n }\n\n /**\n * A schema representing the structure of an HTTP request and response for a given method, having no request and\n * response bodies.\n */\n export interface NoBody extends Omit<NoRequestBody, 'response'> {\n response?: HttpResponseSchemaByStatusCode.NoBody;\n }\n}\n\ntype ConvertToStrictMethod<Schema> = {\n [Key in keyof Schema]: Key extends 'request'\n ? ConvertToStrictHttpRequestSchema<Schema[Key]>\n : Key extends 'response'\n ? ConvertToStrictHttpResponseSchemaByStatusCode<Schema[Key]>\n : Schema[Key];\n};\n\n/**\n * A schema representing the structure of HTTP request and response by method.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpMethodsSchema {\n GET?: HttpMethodSchema.NoRequestBody;\n POST?: HttpMethodSchema;\n PUT?: HttpMethodSchema;\n PATCH?: HttpMethodSchema;\n DELETE?: HttpMethodSchema;\n HEAD?: HttpMethodSchema.NoBody;\n OPTIONS?: HttpMethodSchema.NoRequestBody;\n}\n\ntype ConvertToStrictHttpMethodsSchema<Schema> = {\n [Method in keyof Schema]: ConvertToStrictMethod<Schema[Method]>;\n};\n\ninterface BaseHttpSchema {\n [path: string]: HttpMethodsSchema;\n}\n\nexport type ConvertToStrictHttpSchema<Schema extends HttpSchema> = {\n [Path in keyof Schema]: ConvertToStrictHttpMethodsSchema<Schema[Path]>;\n};\n\n/**\n * Declares an HTTP service schema.\n *\n * **IMPORTANT**: the input of `HttpSchema` and all of its internal types, except bodies, must be declared inline or as\n * a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * interface UserListHeaders {\n * accept: string;\n * }\n *\n * interface UserListSearchParams {\n * name?: string;\n * limit?: `${number}`;\n * }\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * headers: UserListHeaders;\n * searchParams: UserListSearchParams;\n * };\n * response: {\n * 200: {\n * // Inline headers declaration\n * headers: { 'content-type': string };\n * body: User[];\n * };\n * };\n * };\n * };\n * }>;\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpSchema<Schema extends BaseHttpSchema = BaseHttpSchema> = ConvertToStrictHttpSchema<Schema>;\n\nexport namespace HttpSchema {\n /**\n * Declares an HTTP service methods schema.\n *\n * **IMPORTANT**: the input of `HttpSchema.Methods` and all of its internal types, except bodies, must be declared\n * inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserMethods = HttpSchema.Methods<{\n * GET: {\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': UserMethods;\n * }>;\n */\n export type Methods<Schema extends HttpMethodsSchema> = ConvertToStrictHttpMethodsSchema<Schema>;\n\n /**\n * Declares an HTTP service method schema.\n *\n * **IMPORTANT**: the input of `HttpSchema.Method` and all of its internal types, except bodies, must be declared\n * inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListMethod = HttpSchema.Method<{\n * response: {\n * 200: { body: User[] };\n * };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: UserListMethod;\n * };\n * }>;\n */\n export type Method<Schema extends HttpMethodSchema> = ConvertToStrictMethod<Schema>;\n\n /**\n * Declares an HTTP service request schema.\n *\n * **IMPORTANT**: the input of `HttpSchema.Request` and all of its internal types, except bodies, must be declared\n * inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserCreationRequest = HttpSchema.Request<{\n * headers: { 'content-type': 'application/json' };\n * body: User;\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * POST: {\n * request: UserCreationRequest;\n * response: {\n * 201: { body: User };\n * };\n * };\n * };\n * }>;\n */\n export type Request<Schema extends HttpRequestSchema> = ConvertToStrictHttpRequestSchema<Schema>;\n\n /**\n * Declares an HTTP service response schema by status code.\n *\n * **IMPORTANT**: the input of `HttpSchema.ResponseByStatusCode` and all of its internal types, except bodies, must be\n * declared inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListResponseByStatusCode = HttpSchema.ResponseByStatusCode<{\n * 200: { body: User[] };\n * 400: { body: { message: string } };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: UserListResponseByStatusCode;\n * };\n * };\n * }>;\n */\n export type ResponseByStatusCode<Schema extends HttpResponseSchemaByStatusCode> =\n ConvertToStrictHttpResponseSchemaByStatusCode<Schema>;\n\n /**\n * Declares an HTTP service response schema.\n *\n * **IMPORTANT**: the input of `HttpSchema.Response` and all of its internal types, except bodies, must be declared\n * inline or as a type aliases (`type`). Types other than bodies cannot be interfaces.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSuccessResponse = HttpSchema.Response<{\n * body: User[];\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: {\n * 200: UserListSuccessResponse;\n * };\n * };\n * };\n * }>;\n */\n export type Response<Schema extends HttpResponseSchema> = ConvertToStrictHttpResponseSchema<Schema>;\n\n /**\n * Declares an HTTP body schema. JSON values are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic#jsonserialized `JSONSerialized`} if necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSuccessResponseBody = HttpSchema.Body<User[]>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: {\n * 200: { body: UserListSuccessResponseBody };\n * };\n * };\n * };\n * }>;\n */\n export type Body<Schema extends HttpBody.Loose> = HttpBody.ConvertToStrict<Schema>;\n\n /**\n * Declares an HTTP headers schema. Headers are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpheadersserialized `HttpHeadersSerialized`} if\n * necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListHeaders = HttpSchema.Headers<{\n * accept: 'application/json';\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * headers: UserListHeaders;\n * };\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * };\n * }>;\n */\n export type Headers<Schema extends HttpHeadersSchema.Loose> = HttpHeadersSerialized<Schema>;\n\n /**\n * Declares an HTTP search params schema. Search params are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpsearchparamsserialized `HttpSearchParamsSerialized`}\n * if necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSearchParams = HttpSchema.SearchParams<{\n * limit: `${number}`;\n * offset: `${number}`;\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * searchParams: UserListSearchParams;\n * };\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * };\n * }>;\n */\n export type SearchParams<Schema extends HttpSearchParamsSchema.Loose> = HttpSearchParamsSerialized<Schema>;\n\n /**\n * Declares an HTTP path params schema. Path params are serialized to their strict form using\n * {@link HttpPathParamsSerialized} if necessary.\n *\n * @example\n * import { type HttpSchema, InferPathParams } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users/:userId': {\n * GET: {\n * response: {\n * 200: { body: User };\n * };\n * };\n * };\n * }>;\n *\n * type UserByIdPathParams = HttpSchema.PathParams<{\n * userId: string;\n * }>;\n *\n * // Or infer from the path string\n * type UserByIdPathParams = InferPathParams<Schema, '/users/:userId'>;\n */\n export type PathParams<Schema extends HttpPathParamsSchema.Loose> = HttpPathParamsSerialized<Schema>;\n\n /**\n * Declares an HTTP form data schema. Form data is serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpformdataserialized `HttpFormDataSerialized`} if\n * necessary.\n *\n * @example\n * import { HttpFormData, type HttpSchema } from '@zimic/http';\n *\n * type UserCreationFormData = HttpFormData<\n * HttpSchema.FormData<{\n * name: string;\n * email: string;\n * }>\n * >;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * POST: {\n * request: {\n * body: UserCreationFormData;\n * };\n * response: {\n * 201: { body: User };\n * };\n * };\n * };\n * }>;\n */\n export type FormData<Schema extends HttpFormDataSchema.Loose> = HttpFormDataSerialized<Schema>;\n}\n\n/**\n * Extracts the methods from an HTTP service schema.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpSchemaMethod<Schema extends HttpSchema> = IfAny<\n Schema,\n any, // eslint-disable-line @typescript-eslint/no-explicit-any\n keyof UnionToIntersection<Schema[keyof Schema]> & HttpMethod\n>;\n\nexport type AllowAnyStringInPathParams<Path extends string> = Path extends `${infer Prefix}:${string}/${infer Suffix}`\n ? `${Prefix}${string}/${AllowAnyStringInPathParams<Suffix>}`\n : Path extends `${infer Prefix}:${string}`\n ? `${Prefix}${string}`\n : Path;\n\n/**\n * Extracts the paths from an HTTP service schema. Optionally receives a second argument with one or more methods to\n * filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type Path = HttpSchemaPath<Schema>;\n * // \"/users\" | \"/users/:userId\" | \"/users/${string}\"\n *\n * type GetPath = HttpSchemaPath<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport namespace HttpSchemaPath {\n type LooseLiteral<Schema extends HttpSchema, Method extends HttpMethod = HttpMethod> = {\n [Path in keyof Schema & string]: Method extends keyof Schema[Path] ? Path : never;\n }[keyof Schema & string];\n\n /**\n * Extracts the literal paths from an HTTP service schema. Optionally receives a second argument with one or more\n * methods to filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type LiteralPath = HttpSchemaPath.Literal<Schema>;\n * // \"/users\" | \"/users/:userId\"\n *\n * type LiteralGetPath = HttpSchemaPath.Literal<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\n export type Literal<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n > = LooseLiteral<Schema, Method>;\n\n /**\n * Extracts the non-literal paths from an HTTP service schema. Optionally receives a second argument with one or more\n * methods to filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type NonLiteralPath = HttpSchemaPath.NonLiteral<Schema>;\n * // \"/users\" | \"/users/${string}\"\n *\n * type NonLiteralGetPath = HttpSchemaPath.NonLiteral<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐interceptor‐http‐schemas Declaring HTTP interceptor schemas}\n */\n export type NonLiteral<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n > = AllowAnyStringInPathParams<Literal<Schema, Method>>;\n}\n\nexport type HttpSchemaPath<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n> = HttpSchemaPath.Literal<Schema, Method> | HttpSchemaPath.NonLiteral<Schema, Method>;\n\ntype LargestPathPrefix<Path extends string> = Path extends `${infer Prefix}/${infer Suffix}`\n ? `${Prefix}/${Suffix extends `${string}/${string}` ? LargestPathPrefix<Suffix> : ''}`\n : Path;\n\ntype ExcludeNonLiteralPathsSupersededByLiteralPath<Path extends string> =\n Path extends `${LargestPathPrefix<Path>}:${string}` ? never : Path;\n\nexport type PreferMostStaticLiteralPath<Path extends string> =\n UnionHasMoreThanOneType<Path> extends true ? ExcludeNonLiteralPathsSupersededByLiteralPath<Path> : Path;\n\ntype RecursiveInferHttpSchemaPath<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema>,\n NonLiteralPath extends string,\n LiteralPath extends HttpSchemaPath.Literal<Schema, Method>,\n> =\n NonLiteralPath extends AllowAnyStringInPathParams<LiteralPath>\n ? NonLiteralPath extends `${AllowAnyStringInPathParams<LiteralPath>}/${string}`\n ? never\n : LiteralPath\n : never;\n\nexport type LiteralHttpSchemaPathFromNonLiteral<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema>,\n NonLiteralPath extends string,\n LiteralPath extends HttpSchemaPath.Literal<Schema, Method> = HttpSchemaPath.Literal<Schema, Method>,\n> = PreferMostStaticLiteralPath<\n LiteralPath extends LiteralPath ? RecursiveInferHttpSchemaPath<Schema, Method, NonLiteralPath, LiteralPath> : never\n>;\n\ntype RecursiveInferPathParams<Path extends string> = Path extends `${infer _Prefix}:${infer ParamName}/${infer Suffix}`\n ? { [Name in ParamName]: string } & RecursiveInferPathParams<Suffix>\n : Path extends `${infer _Prefix}:${infer ParamName}`\n ? { [Name in ParamName]: string }\n : {};\n\n/**\n * Infers the path parameters schema from a path string, optionally validating it against an {@link HttpSchema}.\n *\n * If the first argument is a {@link HttpSchema} (recommended), the second argument is checked to be a valid path in that\n * schema.\n *\n * @example\n * import { HttpSchema, InferPathParams } from '@zimic/http';\n *\n * type MySchema = HttpSchema<{\n * '/users/:userId': {\n * GET: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * // Using a schema to validate the path (recommended):\n * type PathParams = InferPathParams<MySchema, '/users/:userId'>;\n * // { userId: string }\n *\n * @example\n * import { InferPathParams } from '@zimic/http';\n *\n * // Without using a schema to validate the path (works as `PathParamsSchemaFromPath`):\n * type PathParams = InferPathParams<'/users/:userId'>;\n * // { userId: string }\n */\nexport type InferPathParams<\n PathOrSchema extends string | HttpSchema,\n OptionalPath extends PathOrSchema extends HttpSchema ? HttpSchemaPath.Literal<PathOrSchema> : never = never,\n> = Prettify<\n RecursiveInferPathParams<\n PathOrSchema extends HttpSchema ? OptionalPath : PathOrSchema extends string ? PathOrSchema : never\n >\n>;\n\ntype OmitPastHttpStatusCodes<\n Schema extends HttpResponseSchemaByStatusCode.Loose,\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[],\n> =\n PastSchemas extends NonEmptyArray<HttpResponseSchemaByStatusCode.Loose>\n ? Omit<Schema, keyof UnionToIntersection<PastSchemas[number]>>\n : Schema;\n\ntype RecursiveMergeHttpResponsesByStatusCode<\n Schemas extends HttpResponseSchemaByStatusCode.Loose[],\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[] = [],\n> = Schemas extends [\n infer FirstSchema extends HttpResponseSchemaByStatusCode.Loose,\n ...infer RestSchemas extends HttpResponseSchemaByStatusCode.Loose[],\n]\n ? RestSchemas extends NonEmptyArray<HttpResponseSchemaByStatusCode.Loose>\n ? OmitPastHttpStatusCodes<FirstSchema, PastSchemas> &\n RecursiveMergeHttpResponsesByStatusCode<RestSchemas, [...PastSchemas, FirstSchema]>\n : OmitPastHttpStatusCodes<FirstSchema, PastSchemas>\n : never;\n\n/**\n * Merges multiple HTTP response schemas by status code into a single schema. When there are duplicate status codes, the\n * first declaration takes precedence.\n *\n * @example\n * import { type HttpSchema, type HttpStatusCode, MergeHttpResponsesByStatusCode } from '@zimic/http';\n *\n * // Overriding the 400 status code with a more specific schema\n * // and using a generic schema for all other client errors.\n * type MergedResponseByStatusCode = MergeHttpResponsesByStatusCode<\n * [\n * {\n * 400: { body: { message: string; issues: string[] } };\n * },\n * {\n * [StatusCode in HttpStatusCode.ClientError]: { body: { message: string } };\n * },\n * ]\n * >;\n * // {\n * // 400: { body: { message: string; issues: string[] } };\n * // 401: { body: { message: string}; };\n * // 402: { body: { message: string}; };\n * // 403: { body: { message: string}; };\n * // ...\n * // }\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: { response: MergedResponseByStatusCode };\n * };\n * }>;\n */\nexport type MergeHttpResponsesByStatusCode<\n Schemas extends HttpResponseSchemaByStatusCode.Loose[],\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[] = [],\n> = HttpResponseSchemaByStatusCode.ConvertToStrict<RecursiveMergeHttpResponsesByStatusCode<Schemas, PastSchemas>>;\n"]}
|
|
1
|
+
{"version":3,"sources":["../../zimic-utils/dist/chunk-PAWJFY3S.mjs","../../zimic-utils/src/data/blobEquals.ts","../../zimic-utils/src/data/fileEquals.ts","../src/formData/HttpFormData.ts","../src/headers/HttpHeaders.ts","../src/searchParams/HttpSearchParams.ts","../src/types/schema.ts"],"names":["__defProp","__name","pickPrimitiveProperties"],"mappings":"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","file":"index.js","sourcesContent":["var __defProp = Object.defineProperty;\nvar __name = (target, value) => __defProp(target, \"name\", { value, configurable: true });\n\nexport { __name };\n//# sourceMappingURL=chunk-PAWJFY3S.mjs.map\n//# sourceMappingURL=chunk-PAWJFY3S.mjs.map","async function blobEquals(blob: Blob, otherBlob: Blob) {\n return (\n blob.type === otherBlob.type && blob.size === otherBlob.size && (await blob.text()) === (await otherBlob.text())\n );\n}\n\nexport default blobEquals;\n","import blobEquals from './blobEquals';\n\nasync function fileEquals(file: File, otherFile: File) {\n return file.name === otherFile.name && (await blobEquals(file, otherFile));\n}\n\nexport default fileEquals;\n","import fileEquals from '@zimic/utils/data/fileEquals';\nimport { ArrayItemIfArray, ReplaceBy } from '@zimic/utils/types';\n\nimport { HttpFormDataSchema, HttpFormDataSchemaName } from './types';\n\n/**\n * An extended HTTP form data object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/FormData `FormData`} class.\n *\n * **IMPORTANT**: the input of `HttpFormData` and all of its internal types must be declared inline or as a type aliases\n * (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpFormData } from '@zimic/http';\n *\n * const formData = new HttpFormData<{\n * files: File[];\n * description?: string;\n * }>();\n *\n * formData.append('file', new File(['content'], 'file.txt', { type: 'text/plain' }));\n * formData.append('description', 'My file');\n *\n * const files = formData.getAll('file');\n * console.log(files); // [File { name: 'file.txt', type: 'text/plain' }]\n *\n * const description = formData.get('description');\n * console.log(description); // 'My file'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpformdata `HttpFormData` API reference}\n */\nclass HttpFormData<Schema extends HttpFormDataSchema = HttpFormDataSchema> extends FormData {\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/set MDN Reference} */\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n value: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob>,\n ): void;\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blob: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, string>,\n fileName?: string,\n ): void;\n set<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blobOrValue: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n fileName?: string,\n ): void {\n if (fileName === undefined) {\n super.set(name, blobOrValue as Blob);\n } else {\n super.set(name, blobOrValue as Blob, fileName);\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/append MDN Reference} */\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n value: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob>,\n ): void;\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blob: Exclude<ArrayItemIfArray<NonNullable<Schema[Name]>>, string>,\n fileName?: string,\n ): void;\n append<Name extends HttpFormDataSchemaName<Schema>>(\n name: Name,\n blobOrValue: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n fileName?: string,\n ): void {\n if (fileName === undefined) {\n super.append(name, blobOrValue as Blob);\n } else {\n super.append(name, blobOrValue as Blob, fileName);\n }\n }\n\n /**\n * Get the value of the entry associated to a key name.\n *\n * If the key might have multiple values, use {@link HttpFormData#getAll} instead.\n *\n * @param name The name of the key to get the value of.\n * @returns The value associated with the key name, or `null` if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/FormData/get MDN Reference}\n */\n get<Name extends HttpFormDataSchemaName.NonArray<Schema>>(\n name: Name,\n ): ReplaceBy<ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>, Blob, File> {\n return super.get(name) as ReplaceBy<ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>, Blob, File>;\n }\n\n /**\n * Get all the values of the entry associated with a key name.\n *\n * If the key has at most a single value, use {@link HttpFormData#get} instead.\n *\n * @param name The name of the key to get the values of.\n * @returns An array of values associated with the key name, or an empty array if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/FormData/getAll MDN Reference}\n */\n getAll<Name extends HttpFormDataSchemaName.Array<Schema>>(\n name: Name,\n ): ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob, File>[] {\n return super.getAll(name) as ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Name]>>, Blob, File>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/has MDN Reference} */\n has<Name extends HttpFormDataSchemaName<Schema>>(name: Name): boolean {\n return super.has(name);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/delete MDN Reference} */\n delete<Name extends HttpFormDataSchemaName<Schema>>(name: Name): void {\n super.delete(name);\n }\n\n forEach<This extends HttpFormData<Schema>>(\n callback: <Key extends HttpFormDataSchemaName<Schema>>(\n value: ReplaceBy<ArrayItemIfArray<NonNullable<Schema[Key]>>, Blob, File>,\n key: Key,\n parent: HttpFormData<Schema>,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: FormDataEntryValue, key: string, parent: FormData) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/keys MDN Reference} */\n keys(): FormDataIterator<HttpFormDataSchemaName<Schema>> {\n return super.keys() as FormDataIterator<HttpFormDataSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/values MDN Reference} */\n values(): FormDataIterator<\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>\n > {\n return super.values() as FormDataIterator<\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>\n >;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/FormData/entries MDN Reference} */\n entries(): FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n > {\n return super.entries() as FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n >;\n }\n\n [Symbol.iterator](): FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n > {\n return super[Symbol.iterator]() as FormDataIterator<\n [\n HttpFormDataSchemaName<Schema>,\n ReplaceBy<ArrayItemIfArray<NonNullable<Schema[HttpFormDataSchemaName<Schema>]>>, Blob, File>,\n ]\n >;\n }\n\n /**\n * Checks if the data is equal to the other data. Equality is defined as having the same keys and values, regardless\n * of the order of keys.\n *\n * @param otherData The other data to compare.\n * @returns A promise that resolves with `true` if the data is equal to the other data, or `false` otherwise.\n * Important: both form data might be read while comparing.\n */\n async equals<OtherSchema extends Schema>(otherData: HttpFormData<OtherSchema>): Promise<boolean> {\n for (const [otherKey, otherValue] of otherData.entries()) {\n const values = super.getAll.call(this, otherKey);\n\n const haveSameNumberOfValues = values.length === super.getAll.call(otherData, otherKey).length;\n if (!haveSameNumberOfValues) {\n return false;\n }\n\n let valueExists = false;\n\n for (const value of values) {\n if (\n value === otherValue ||\n (value instanceof Blob && otherValue instanceof Blob && (await fileEquals(value, otherValue)))\n ) {\n valueExists = true;\n break;\n }\n }\n\n if (!valueExists) {\n return false;\n }\n }\n\n for (const key of this.keys()) {\n const otherHasKey = super.has.call(otherData, key);\n if (!otherHasKey) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Checks if the data contains the other data. This method is less strict than {@link HttpFormData#equals} and only\n * requires that all keys and values in the other data are present in this data.\n *\n * @param otherData The other data to compare.\n * @returns A promise that resolves with `true` if this data contains the other data, or `false` otherwise. Important:\n * both form data might be read while comparing.\n */\n async contains<OtherSchema extends Schema>(otherData: HttpFormData<OtherSchema>): Promise<boolean> {\n for (const [otherKey, otherValue] of otherData.entries()) {\n const values = super.getAll.call(this, otherKey);\n\n const haveCompatibleNumberOfValues = values.length >= super.getAll.call(otherData, otherKey).length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n let valueExists = false;\n\n for (const value of values) {\n if (\n value === otherValue ||\n (typeof value === 'string' && typeof otherValue === 'string' && value === otherValue) ||\n (value instanceof Blob && otherValue instanceof Blob && (await fileEquals(value, otherValue)))\n ) {\n valueExists = true;\n break;\n }\n }\n\n if (!valueExists) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Converts this form data into a plain object. This method is useful for serialization and debugging purposes.\n *\n * **NOTE**: If a key has multiple values, the object will contain an array of values for that key. If the key has\n * only one value, the object will contain its value directly, without an array, regardless of how the value was\n * initialized when creating the form data.\n *\n * @example\n * const formData = new HttpFormData<{\n * title: string;\n * descriptions: string[];\n * content: Blob;\n * }>();\n *\n * formData.set('title', 'My title');\n * formData.append('descriptions', 'Description 1');\n * formData.append('descriptions', 'Description 2');\n * formData.set('content', new Blob(['content'], { type: 'text/plain' }));\n *\n * const object = formData.toObject();\n * console.log(object); // { title: 'My title', descriptions: ['Description 1', 'Description 2'], content: Blob { type: 'text/plain' } }\n *\n * @returns A plain object representation of this form data.\n */\n toObject() {\n const object = {} as Schema;\n\n type SchemaValue = Schema[HttpFormDataSchemaName<Schema>];\n\n for (const [key, value] of this.entries()) {\n if (key in object) {\n const existingValue = object[key];\n\n if (Array.isArray<SchemaValue>(existingValue)) {\n existingValue.push(value as SchemaValue);\n } else {\n object[key] = [existingValue, value] as SchemaValue;\n }\n } else {\n object[key] = value as SchemaValue;\n }\n }\n\n return object;\n }\n}\n\nexport default HttpFormData;\n","import { Default, ReplaceBy } from '@zimic/utils/types';\n\nimport { HttpHeadersSchema, HttpHeadersInit, HttpHeadersSchemaName } from './types';\n\nfunction pickPrimitiveProperties<Schema extends HttpHeadersSchema>(schema: Schema) {\n return Object.entries(schema).reduce<Record<string, string>>((accumulated, [key, value]) => {\n if (value !== undefined) {\n accumulated[key] = value;\n }\n return accumulated;\n }, {});\n}\n\n/**\n * An extended HTTP headers object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/Headers `Headers`} class.\n *\n * **IMPORTANT**: the input of `HttpHeaders` and all of its internal types must be declared inline or as a type aliases\n * (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpHeaders } from '@zimic/http';\n *\n * const headers = new HttpHeaders<{\n * accept?: string;\n * 'content-type'?: string;\n * }>({\n * accept: '*',\n * 'content-type': 'application/json',\n * });\n *\n * const contentType = headers.get('content-type');\n * console.log(contentType); // 'application/json'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpheaders `HttpHeaders` API reference}\n */\nclass HttpHeaders<Schema extends HttpHeadersSchema = HttpHeadersSchema> extends Headers {\n constructor(init?: HttpHeadersInit<Schema>) {\n if (init instanceof Headers || Array.isArray(init) || !init) {\n super(init);\n } else {\n super(pickPrimitiveProperties(init));\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/set MDN Reference} */\n set<Name extends HttpHeadersSchemaName<Schema>>(name: Name, value: NonNullable<Schema[Name]> & string): void {\n super.set(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/append MDN Reference} */\n append<Name extends HttpHeadersSchemaName<Schema>>(name: Name, value: NonNullable<Schema[Name]> & string): void {\n super.append(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/get MDN Reference} */\n get<Name extends HttpHeadersSchemaName<Schema>>(name: Name): ReplaceBy<Schema[Name], undefined, null> {\n return super.get(name) as ReplaceBy<Schema[Name], undefined, null>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/has MDN Reference} */\n getSetCookie(): NonNullable<Default<Schema['Set-Cookie'], string>>[] {\n return super.getSetCookie() as NonNullable<Default<Schema['Set-Cookie'], string>>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/has MDN Reference} */\n has<Name extends HttpHeadersSchemaName<Schema>>(name: Name): boolean {\n return super.has(name);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/delete MDN Reference} */\n delete<Name extends HttpHeadersSchemaName<Schema>>(name: Name): void {\n super.delete(name);\n }\n\n forEach<This extends HttpHeaders<Schema>>(\n callback: <Key extends HttpHeadersSchemaName<Schema>>(\n value: NonNullable<Schema[Key]> & string,\n key: Key,\n parent: Headers,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: string, key: string, parent: Headers) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/keys MDN Reference} */\n keys(): HeadersIterator<HttpHeadersSchemaName<Schema>> {\n return super.keys() as HeadersIterator<HttpHeadersSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/values MDN Reference} */\n values(): HeadersIterator<NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string> {\n return super.values() as HeadersIterator<NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/Headers/entries MDN Reference} */\n entries(): HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n > {\n return super.entries() as HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n >;\n }\n\n [Symbol.iterator](): HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n > {\n return super[Symbol.iterator]() as HeadersIterator<\n [HttpHeadersSchemaName<Schema>, NonNullable<Schema[HttpHeadersSchemaName<Schema>]> & string]\n >;\n }\n\n /**\n * Checks if this headers object is equal to another set of headers. Equality is defined as having the same keys and\n * values, regardless of the order of keys.\n *\n * @param otherHeaders The other headers object to compare against.\n * @returns `true` if the headers are equal, `false` otherwise.\n */\n equals<OtherSchema extends Schema>(otherHeaders: HttpHeaders<OtherSchema>): boolean {\n for (const [key, otherValue] of otherHeaders.entries()) {\n const value = super.get.call(this, key);\n\n if (value === null) {\n return false;\n }\n\n const valueItems = this.splitHeaderValues(value);\n const otherValueItems = this.splitHeaderValues(otherValue);\n\n const haveCompatibleNumberOfValues = valueItems.length === otherValueItems.length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n for (const otherValueItem of otherValueItems) {\n if (!valueItems.includes(otherValueItem)) {\n return false;\n }\n }\n }\n\n for (const key of this.keys()) {\n const otherHasKey = super.has.call(otherHeaders, key);\n if (!otherHasKey) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Checks if this headers object contains another set of headers. This method is less strict than\n * {@link HttpHeaders#equals} and only requires that all keys and values in the other headers are present in these\n * headers.\n *\n * @param otherHeaders The other headers object to compare against.\n * @returns `true` if these headers contain the other headers, `false` otherwise.\n */\n contains<OtherSchema extends Schema>(otherHeaders: HttpHeaders<OtherSchema>): boolean {\n for (const [key, otherValue] of otherHeaders.entries()) {\n const value = super.get.call(this, key);\n\n if (value === null) {\n return false;\n }\n\n const valueItems = this.splitHeaderValues(value);\n const otherValueItems = this.splitHeaderValues(otherValue);\n\n const haveCompatibleNumberOfValues = valueItems.length >= otherValueItems.length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n for (const otherValueItem of otherValueItems) {\n if (!valueItems.includes(otherValueItem)) {\n return false;\n }\n }\n }\n\n return true;\n }\n\n /**\n * Converts these headers into a plain object. This method is useful for serialization and debugging purposes.\n *\n * @example\n * const headers = new HttpHeaders({\n * accept: 'application/json',\n * 'content-type': 'application/json',\n * });\n * const object = headers.toObject();\n * console.log(object); // { accept: 'application/json', 'content-type': 'application/json' }\n *\n * @returns A plain object representation of these headers.\n */\n toObject(): Schema {\n const object = {} as Schema;\n\n for (const [key, value] of this.entries()) {\n object[key] = value;\n }\n\n return object;\n }\n\n private splitHeaderValues(value: string) {\n return value\n .split(',')\n .map((item) => item.trim())\n .filter((item) => item.length > 0);\n }\n}\n\nexport default HttpHeaders;\n","import { ReplaceBy, ArrayItemIfArray } from '@zimic/utils/types';\n\nimport { HttpSearchParamsSchema, HttpSearchParamsInit, HttpSearchParamsSchemaName } from './types';\n\nfunction pickPrimitiveProperties<Schema extends HttpSearchParamsSchema>(schema: Schema) {\n const schemaWithPrimitiveProperties = Object.entries(schema).reduce<Record<string, string>>(\n (accumulated, [key, value]) => {\n if (value !== undefined && !Array.isArray(value)) {\n accumulated[key] = value;\n }\n return accumulated;\n },\n {},\n );\n return schemaWithPrimitiveProperties;\n}\n\n/**\n * An extended HTTP search params object with a strictly-typed schema. Fully compatible with the built-in\n * {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams `URLSearchParams`} class.\n *\n * **IMPORTANT**: the input of `HttpSearchParams` and all of its internal types must be declared inline or as a type\n * aliases (`type`). They cannot be interfaces.\n *\n * @example\n * import { HttpSearchParams } from '@zimic/http';\n *\n * const searchParams = new HttpSearchParams<{\n * names?: string[];\n * page?: `${number}`;\n * }>({\n * names: ['user 1', 'user 2'],\n * page: '1',\n * });\n *\n * const names = searchParams.getAll('names');\n * console.log(names); // ['user 1', 'user 2']\n *\n * const page = searchParams.get('page');\n * console.log(page); // '1'\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpsearchparams `HttpSearchParams` API reference}\n */\nclass HttpSearchParams<Schema extends HttpSearchParamsSchema = HttpSearchParamsSchema> extends URLSearchParams {\n constructor(init?: HttpSearchParamsInit<Schema>) {\n if (init instanceof URLSearchParams || Array.isArray(init) || typeof init === 'string' || !init) {\n super(init);\n } else {\n super(pickPrimitiveProperties(init));\n this.populateInitArrayProperties(init);\n }\n }\n\n private populateInitArrayProperties(init: Schema) {\n for (const [key, value] of Object.entries(init)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n super.append(key, item);\n }\n }\n }\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/set MDN Reference} */\n set<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.set(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/append MDN Reference} */\n append<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.append(name, value);\n }\n\n /**\n * Get the value of the entry associated to a key name.\n *\n * If the key might have multiple values, use {@link HttpSearchParams#getAll} instead.\n *\n * @param name The name of the key to get the value of.\n * @returns The value associated with the key name, or `null` if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/get MDN Reference}\n */\n get<Name extends HttpSearchParamsSchemaName.NonArray<Schema>>(\n name: Name,\n ): ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null> {\n return super.get(name) as ReplaceBy<ArrayItemIfArray<Schema[Name]>, undefined, null>;\n }\n\n /**\n * Get all the values of the entry associated with a key name.\n *\n * If the key has at most one value, use {@link HttpSearchParams#get} instead.\n *\n * @param name The name of the key to get the values of.\n * @returns An array of values associated with the key name, or an empty array if the key does not exist.\n * @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/getAll MDN Reference}\n */\n getAll<Name extends HttpSearchParamsSchemaName.Array<Schema>>(\n name: Name,\n ): ArrayItemIfArray<NonNullable<Schema[Name]>>[] {\n return super.getAll(name) as ArrayItemIfArray<NonNullable<Schema[Name]>>[];\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/has MDN Reference} */\n has<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value?: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): boolean {\n return super.has(name, value);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete MDN Reference} */\n delete<Name extends HttpSearchParamsSchemaName<Schema>>(\n name: Name,\n value?: ArrayItemIfArray<NonNullable<Schema[Name]>>,\n ): void {\n super.delete(name, value);\n }\n\n forEach<This extends HttpSearchParams<Schema>>(\n callback: <Key extends HttpSearchParamsSchemaName<Schema>>(\n value: ArrayItemIfArray<NonNullable<Schema[Key]>>,\n key: Key,\n parent: HttpSearchParams<Schema>,\n ) => void,\n thisArg?: This,\n ): void {\n super.forEach(callback as (value: string, key: string, parent: URLSearchParams) => void, thisArg);\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/keys MDN Reference} */\n keys(): URLSearchParamsIterator<HttpSearchParamsSchemaName<Schema>> {\n return super.keys() as URLSearchParamsIterator<HttpSearchParamsSchemaName<Schema>>;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/values MDN Reference} */\n values(): URLSearchParamsIterator<ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>> {\n return super.values() as URLSearchParamsIterator<\n ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>\n >;\n }\n\n /** @see {@link https://developer.mozilla.org/docs/Web/API/URLSearchParams/entries MDN Reference} */\n entries(): URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n > {\n return super.entries() as URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n >;\n }\n\n [Symbol.iterator](): URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n > {\n return super[Symbol.iterator]() as URLSearchParamsIterator<\n [HttpSearchParamsSchemaName<Schema>, ArrayItemIfArray<NonNullable<Schema[HttpSearchParamsSchemaName<Schema>]>>]\n >;\n }\n\n /**\n * Checks if these search params are equal to another set of search parameters. Equality is defined as having the same\n * keys and values, regardless of the order of the keys.\n *\n * @param otherParams The other search parameters to compare against.\n * @returns `true` if the search parameters are equal, `false` otherwise.\n */\n equals<OtherSchema extends Schema>(otherParams: HttpSearchParams<OtherSchema>): boolean {\n for (const [key, otherValue] of otherParams.entries()) {\n const values = super.getAll.call(this, key);\n\n const haveSameNumberOfValues = values.length === super.getAll.call(otherParams, key).length;\n if (!haveSameNumberOfValues) {\n return false;\n }\n\n const valueExists = values.includes(otherValue);\n if (!valueExists) {\n return false;\n }\n }\n\n return this.size === otherParams.size;\n }\n\n /**\n * Checks if these search params contain another set of search parameters. This method is less strict than\n * {@link HttpSearchParams#equals} and only requires that all keys and values in the other search parameters are\n * present in these search parameters.\n *\n * @param otherParams The other search parameters to check for containment.\n * @returns `true` if these search parameters contain the other search parameters, `false` otherwise.\n */\n contains<OtherSchema extends Schema>(otherParams: HttpSearchParams<OtherSchema>): boolean {\n for (const [key, otherValue] of otherParams.entries()) {\n const values = super.getAll.call(this, key);\n\n const haveCompatibleNumberOfValues = values.length >= super.getAll.call(otherParams, key).length;\n if (!haveCompatibleNumberOfValues) {\n return false;\n }\n\n const valueExists = values.includes(otherValue);\n if (!valueExists) {\n return false;\n }\n }\n\n return true;\n }\n\n /**\n * Converts these search params into a plain object. This method is useful for serialization and debugging purposes.\n *\n * **NOTE**: If a key has multiple values, the object will contain an array of values for that key. If the key has\n * only one value, the object will contain its value directly, without an array, regardless of how the value was\n * initialized when creating the search params object.\n *\n * @example\n * const searchParams = new HttpSearchParams({\n * names: ['user 1', 'user 2'],\n * name: ['user 3'],\n * page: '1',\n * });\n * const object = searchParams.toObject();\n * console.log(object); // { names: ['user 1', 'user 2'], name: 'user 3', page: '1' }\n *\n * @returns A plain object representation of these search params.\n */\n toObject() {\n const object = {} as Schema;\n\n type SchemaValue = Schema[HttpSearchParamsSchemaName<Schema>];\n\n for (const [key, value] of this.entries()) {\n if (key in object) {\n const existingValue = object[key];\n\n if (Array.isArray<SchemaValue>(existingValue)) {\n existingValue.push(value as SchemaValue);\n } else {\n object[key] = [existingValue, value] as SchemaValue;\n }\n } else {\n object[key] = value as SchemaValue;\n }\n }\n\n return object;\n }\n}\n\nexport default HttpSearchParams;\n","import { IfAny, UnionToIntersection, UnionHasMoreThanOneType, Prettify, NonEmptyArray } from '@zimic/utils/types';\n\nimport { HttpFormDataSchema, HttpFormDataSerialized } from '../formData/types';\nimport { HttpHeadersSchema, HttpHeadersSerialized } from '../headers/types';\nimport { HttpPathParamsSchema, HttpPathParamsSerialized } from '../pathParams/types';\nimport { HttpSearchParamsSchema, HttpSearchParamsSerialized } from '../searchParams/types';\nimport { HttpBody } from './requests';\n\nexport const HTTP_METHODS_WITH_REQUEST_BODY = Object.freeze(['POST', 'PUT', 'PATCH', 'DELETE'] as const);\nexport type HttpMethodWithRequestBody = (typeof HTTP_METHODS_WITH_REQUEST_BODY)[number];\n\nexport const HTTP_METHODS_WITH_RESPONSE_BODY = Object.freeze([\n 'GET',\n 'POST',\n 'PUT',\n 'PATCH',\n 'DELETE',\n 'OPTIONS',\n] as const);\nexport type HttpMethodWithResponseBody = (typeof HTTP_METHODS_WITH_RESPONSE_BODY)[number];\n\nexport const HTTP_METHODS = Object.freeze(['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS'] as const);\n/**\n * A type representing the currently supported\n * {@link https://developer.mozilla.org/docs/Web/HTTP/Methods `HTTP methods`}.\n */\nexport type HttpMethod = (typeof HTTP_METHODS)[number];\n\n/**\n * A schema representing the structure of an HTTP request.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpRequestSchema {\n headers?: HttpHeadersSchema.Loose;\n searchParams?: HttpSearchParamsSchema.Loose;\n body?: HttpBody.Loose;\n}\n\ntype ConvertToStrictHttpRequestSchema<Schema> = {\n [Key in keyof Schema]: Key extends 'headers'\n ? HttpHeadersSerialized<Schema[Key]>\n : Key extends 'searchParams'\n ? HttpSearchParamsSerialized<Schema[Key]>\n : Key extends 'body'\n ? HttpBody.ConvertToStrict<Schema[Key]>\n : Schema[Key];\n};\n\n/**\n * A schema representing the structure of an HTTP response.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpResponseSchema {\n headers?: HttpHeadersSchema.Loose;\n body?: HttpBody.Loose;\n}\n\nexport namespace HttpResponseSchema {\n /** A schema representing the structure of an HTTP response with no body. */\n export interface NoBody extends Omit<HttpResponseSchema, 'body'> {\n body?: null;\n }\n}\n\ntype ConvertToStrictHttpResponseSchema<Schema> = ConvertToStrictHttpRequestSchema<Schema>;\n\n/**\n * The status codes used in HTTP responses, as defined by\n * {@link https://httpwg.org/specs/rfc9110.html#overview.of.status.codes RFC-9110}.\n *\n * - `HttpStatusCode.Information`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#information_responses `1XX`}\n * - `HttpStatusCode.Success`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#successful_responses `2XX`}\n * - `HttpStatusCode.Redirection`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#redirection_messages `3XX`}\n * - `HttpStatusCode.ClientError`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#client_error_responses `4XX`}\n * - `HttpStatusCode.ServerError`: {@link https://developer.mozilla.org/docs/Web/HTTP/Status#server_error_responses `5XX`}\n */\nexport namespace HttpStatusCode {\n /**\n * An HTTP status code in the `1XX` range, representing an informational response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#information_responses `1XX`}\n */\n export type Information =\n | 100 // Continue\n | 101 // Switching Protocols\n | 102 // Processing\n | 103; // Early Hints\n\n /**\n * An HTTP status code in the `2XX` range, representing a successful response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#successful_responses `2XX`}\n */\n export type Success =\n | 200 // OK\n | 201 // Created\n | 202 // Accepted\n | 203 // Non-Authoritative Information\n | 204 // No Content\n | 205 // Reset Content\n | 206 // Partial Content\n | 207 // Multi-Status\n | 208 // Already Reported\n | 226; // IM Used\n\n /**\n * An HTTP status code in the `3XX` range, representing a redirection response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#redirection_messages `3XX`}\n */\n export type Redirection =\n | 300 // Multiple Choices\n | 301 // Moved Permanently\n | 302 // Found\n | 303 // See Other\n | 304 // Not Modified\n | 307 // Temporary Redirect\n | 308; // Permanent Redirect\n\n /**\n * An HTTP status code in the `4XX` range, representing a client error response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#client_error_responses `4XX`}\n */\n export type ClientError =\n | 400 // Bad Request\n | 401 // Unauthorized\n | 402 // Payment Required\n | 403 // Forbidden\n | 404 // Not Found\n | 405 // Method Not Allowed\n | 406 // Not Acceptable\n | 407 // Proxy Authentication Required\n | 408 // Request Timeout\n | 409 // Conflict\n | 410 // Gone\n | 411 // Length Required\n | 412 // Precondition Failed\n | 413 // Content Too Large\n | 414 // URI Too Long\n | 415 // Unsupported Media Type\n | 416 // Range Not Satisfiable\n | 417 // Expectation Failed\n | 418 // I'm a teapot\n | 421 // Misdirected Request\n | 422 // Unprocessable Content\n | 423 // Locked\n | 424 // Failed Dependency\n | 425 // Too Early\n | 426 // Upgrade Required\n | 428 // Precondition Required\n | 429 // Too Many Requests\n | 431 // Request Header Fields Too Large\n | 451; // Unavailable For Legal Reasons\n\n /**\n * An HTTP status code in the `5XX` range, representing a server error response.\n *\n * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Status#server_error_responses `5XX`}\n */\n export type ServerError =\n | 500 // Internal Server Error\n | 501 // Not Implemented\n | 502 // Bad Gateway\n | 503 // Service Unavailable\n | 504 // Gateway Timeout\n | 505 // HTTP Version Not Supported\n | 506 // Variant Also Negotiates\n | 507 // Insufficient Storage\n | 508 // Loop Detected\n | 510 // Not Extended\n | 511; // Network Authentication Required\n}\n\nexport type HttpStatusCode =\n | HttpStatusCode.Information\n | HttpStatusCode.Success\n | HttpStatusCode.Redirection\n | HttpStatusCode.ClientError\n | HttpStatusCode.ServerError;\n\nexport namespace HttpResponseSchemaByStatusCode {\n /** A loose version of HTTP responses by status code. JSON values are not strictly typed. */\n export type Loose = {\n [StatusCode in HttpStatusCode]?: HttpResponseSchema;\n };\n\n /**\n * Converts a possibly loose HTTP response schema by status code to be strictly typed. JSON values are serialized to\n * their strict form.\n */\n export type ConvertToStrict<Schema extends Loose> = {\n [StatusCode in keyof Schema]: StatusCode extends 204 ? HttpResponseSchema.NoBody : Schema[StatusCode];\n };\n\n /** A schema representing the structure of HTTP responses by status code with no body. */\n export type NoBody = {\n [StatusCode in HttpStatusCode]?: HttpResponseSchema.NoBody;\n };\n}\n\n/**\n * A schema representing the structure of HTTP responses by status code.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpResponseSchemaByStatusCode =\n HttpResponseSchemaByStatusCode.ConvertToStrict<HttpResponseSchemaByStatusCode.Loose>;\n\ntype ConvertToStrictHttpResponseSchemaByStatusCode<Schema> = {\n [Key in keyof Schema]: ConvertToStrictHttpResponseSchema<Schema[Key]>;\n};\n\n/**\n * Extracts the status codes used in a response schema by status code.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpResponseSchemaStatusCode<ResponseSchemaByStatusCode extends HttpResponseSchemaByStatusCode> =\n keyof ResponseSchemaByStatusCode & HttpStatusCode;\n\n/**\n * A schema representing the structure of an HTTP request and response for a given method.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpMethodSchema {\n request?: HttpRequestSchema;\n response?: HttpResponseSchemaByStatusCode;\n}\n\nexport namespace HttpMethodSchema {\n /** A schema representing the structure of an HTTP request and response for a given method, having no request body. */\n export interface NoRequestBody extends Omit<HttpMethodSchema, 'request'> {\n request?: Omit<HttpRequestSchema, 'body'> & { body?: null };\n }\n\n /**\n * A schema representing the structure of an HTTP request and response for a given method, having no request and\n * response bodies.\n */\n export interface NoBody extends Omit<NoRequestBody, 'response'> {\n response?: HttpResponseSchemaByStatusCode.NoBody;\n }\n}\n\ntype ConvertToStrictMethod<Schema> = {\n [Key in keyof Schema]: Key extends 'request'\n ? ConvertToStrictHttpRequestSchema<Schema[Key]>\n : Key extends 'response'\n ? ConvertToStrictHttpResponseSchemaByStatusCode<Schema[Key]>\n : Schema[Key];\n};\n\n/**\n * A schema representing the structure of HTTP request and response by method.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport interface HttpMethodsSchema {\n GET?: HttpMethodSchema.NoRequestBody;\n POST?: HttpMethodSchema;\n PUT?: HttpMethodSchema;\n PATCH?: HttpMethodSchema;\n DELETE?: HttpMethodSchema;\n HEAD?: HttpMethodSchema.NoBody;\n OPTIONS?: HttpMethodSchema.NoRequestBody;\n}\n\ntype ConvertToStrictHttpMethodsSchema<Schema> = {\n [Method in keyof Schema]: ConvertToStrictMethod<Schema[Method]>;\n};\n\ninterface BaseHttpSchema {\n [path: string]: HttpMethodsSchema;\n}\n\nexport type ConvertToStrictHttpSchema<Schema extends HttpSchema> = {\n [Path in keyof Schema]: ConvertToStrictHttpMethodsSchema<Schema[Path]>;\n};\n\n/**\n * Declares an HTTP service schema.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * interface UserListHeaders {\n * accept: string;\n * }\n *\n * interface UserListSearchParams {\n * name?: string;\n * limit?: `${number}`;\n * }\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * headers: UserListHeaders;\n * searchParams: UserListSearchParams;\n * };\n * response: {\n * 200: {\n * // Inline headers declaration\n * headers: { 'content-type': string };\n * body: User[];\n * };\n * };\n * };\n * };\n * }>;\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpSchema<Schema extends BaseHttpSchema = BaseHttpSchema> = ConvertToStrictHttpSchema<Schema>;\n\nexport namespace HttpSchema {\n /**\n * Declares an HTTP service methods schema.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserMethods = HttpSchema.Methods<{\n * GET: {\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': UserMethods;\n * }>;\n */\n export type Methods<Schema extends HttpMethodsSchema> = ConvertToStrictHttpMethodsSchema<Schema>;\n\n /**\n * Declares an HTTP service method schema.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListMethod = HttpSchema.Method<{\n * response: {\n * 200: { body: User[] };\n * };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: UserListMethod;\n * };\n * }>;\n */\n export type Method<Schema extends HttpMethodSchema> = ConvertToStrictMethod<Schema>;\n\n /**\n * Declares an HTTP service request schema.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserCreationRequest = HttpSchema.Request<{\n * headers: { 'content-type': 'application/json' };\n * body: User;\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * POST: {\n * request: UserCreationRequest;\n * response: {\n * 201: { body: User };\n * };\n * };\n * };\n * }>;\n */\n export type Request<Schema extends HttpRequestSchema> = ConvertToStrictHttpRequestSchema<Schema>;\n\n /**\n * Declares an HTTP service response schema by status code.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListResponseByStatusCode = HttpSchema.ResponseByStatusCode<{\n * 200: { body: User[] };\n * 400: { body: { message: string } };\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: UserListResponseByStatusCode;\n * };\n * };\n * }>;\n */\n export type ResponseByStatusCode<Schema extends HttpResponseSchemaByStatusCode> =\n ConvertToStrictHttpResponseSchemaByStatusCode<Schema>;\n\n /**\n * Declares an HTTP service response schema.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSuccessResponse = HttpSchema.Response<{\n * body: User[];\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: {\n * 200: UserListSuccessResponse;\n * };\n * };\n * };\n * }>;\n */\n export type Response<Schema extends HttpResponseSchema> = ConvertToStrictHttpResponseSchema<Schema>;\n\n /**\n * Declares an HTTP body schema. JSON values are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic#jsonserialized `JSONSerialized`} if necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSuccessResponseBody = HttpSchema.Body<User[]>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: {\n * 200: { body: UserListSuccessResponseBody };\n * };\n * };\n * };\n * }>;\n */\n export type Body<Schema extends HttpBody.Loose> = HttpBody.ConvertToStrict<Schema>;\n\n /**\n * Declares an HTTP headers schema. Headers are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpheadersserialized `HttpHeadersSerialized`} if\n * necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListHeaders = HttpSchema.Headers<{\n * accept: 'application/json';\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * headers: UserListHeaders;\n * };\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * };\n * }>;\n */\n export type Headers<Schema extends HttpHeadersSchema.Loose> = HttpHeadersSerialized<Schema>;\n\n /**\n * Declares an HTTP search params schema. Search params are serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpsearchparamsserialized `HttpSearchParamsSerialized`}\n * if necessary.\n *\n * @example\n * import { type HttpSchema } from '@zimic/http';\n *\n * type UserListSearchParams = HttpSchema.SearchParams<{\n * limit: `${number}`;\n * offset: `${number}`;\n * }>;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * request: {\n * searchParams: UserListSearchParams;\n * };\n * response: {\n * 200: { body: User[] };\n * };\n * };\n * };\n * }>;\n */\n export type SearchParams<Schema extends HttpSearchParamsSchema.Loose> = HttpSearchParamsSerialized<Schema>;\n\n /**\n * Declares an HTTP path params schema. Path params are serialized to their strict form using\n * {@link HttpPathParamsSerialized} if necessary.\n *\n * @example\n * import { type HttpSchema, InferPathParams } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users/:userId': {\n * GET: {\n * response: {\n * 200: { body: User };\n * };\n * };\n * };\n * }>;\n *\n * type UserByIdPathParams = HttpSchema.PathParams<{\n * userId: string;\n * }>;\n *\n * // Or infer from the path string\n * type UserByIdPathParams = InferPathParams<Schema, '/users/:userId'>;\n */\n export type PathParams<Schema extends HttpPathParamsSchema.Loose> = HttpPathParamsSerialized<Schema>;\n\n /**\n * Declares an HTTP form data schema. Form data is serialized to their strict form using\n * {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http#httpformdataserialized `HttpFormDataSerialized`} if\n * necessary.\n *\n * @example\n * import { HttpFormData, type HttpSchema } from '@zimic/http';\n *\n * type UserCreationFormData = HttpFormData<\n * HttpSchema.FormData<{\n * name: string;\n * email: string;\n * }>\n * >;\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * POST: {\n * request: {\n * body: UserCreationFormData;\n * };\n * response: {\n * 201: { body: User };\n * };\n * };\n * };\n * }>;\n */\n export type FormData<Schema extends HttpFormDataSchema.Loose> = HttpFormDataSerialized<Schema>;\n}\n\n/**\n * Extracts the methods from an HTTP service schema.\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport type HttpSchemaMethod<Schema extends HttpSchema> = IfAny<\n Schema,\n any, // eslint-disable-line @typescript-eslint/no-explicit-any\n keyof UnionToIntersection<Schema[keyof Schema]> & HttpMethod\n>;\n\nexport type AllowAnyStringInPathParams<Path extends string> = Path extends `${infer Prefix}:${string}/${infer Suffix}`\n ? `${Prefix}${string}/${AllowAnyStringInPathParams<Suffix>}`\n : Path extends `${infer Prefix}:${string}`\n ? `${Prefix}${string}`\n : Path;\n\n/**\n * Extracts the paths from an HTTP service schema. Optionally receives a second argument with one or more methods to\n * filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type Path = HttpSchemaPath<Schema>;\n * // \"/users\" | \"/users/:userId\" | \"/users/${string}\"\n *\n * type GetPath = HttpSchemaPath<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\nexport namespace HttpSchemaPath {\n type LooseLiteral<Schema extends HttpSchema, Method extends HttpMethod = HttpMethod> = {\n [Path in keyof Schema & string]: Method extends keyof Schema[Path] ? Path : never;\n }[keyof Schema & string];\n\n /**\n * Extracts the literal paths from an HTTP service schema. Optionally receives a second argument with one or more\n * methods to filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type LiteralPath = HttpSchemaPath.Literal<Schema>;\n * // \"/users\" | \"/users/:userId\"\n *\n * type LiteralGetPath = HttpSchemaPath.Literal<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\n export type Literal<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n > = LooseLiteral<Schema, Method>;\n\n /**\n * Extracts the non-literal paths from an HTTP service schema. Optionally receives a second argument with one or more\n * methods to filter the paths with. Only the methods defined in the schema are allowed.\n *\n * @example\n * import { type HttpSchema, type HttpSchemaPath } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: {\n * response: { 200: { body: User[] } };\n * };\n * };\n * '/users/:userId': {\n * DELETE: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * type NonLiteralPath = HttpSchemaPath.NonLiteral<Schema>;\n * // \"/users\" | \"/users/${string}\"\n *\n * type NonLiteralGetPath = HttpSchemaPath.NonLiteral<Schema, 'GET'>;\n * // \"/users\"\n *\n * @see {@link https://github.com/zimicjs/zimic/wiki/api‐zimic‐http‐schemas Declaring HTTP interceptor schemas}\n */\n export type NonLiteral<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n > = AllowAnyStringInPathParams<Literal<Schema, Method>>;\n}\n\nexport type HttpSchemaPath<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema> = HttpSchemaMethod<Schema>,\n> = HttpSchemaPath.Literal<Schema, Method> | HttpSchemaPath.NonLiteral<Schema, Method>;\n\ntype LargestPathPrefix<Path extends string> = Path extends `${infer Prefix}/${infer Suffix}`\n ? `${Prefix}/${Suffix extends `${string}/${string}` ? LargestPathPrefix<Suffix> : ''}`\n : Path;\n\ntype ExcludeNonLiteralPathsSupersededByLiteralPath<Path extends string> =\n Path extends `${LargestPathPrefix<Path>}:${string}` ? never : Path;\n\nexport type PreferMostStaticLiteralPath<Path extends string> =\n UnionHasMoreThanOneType<Path> extends true ? ExcludeNonLiteralPathsSupersededByLiteralPath<Path> : Path;\n\ntype RecursiveInferHttpSchemaPath<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema>,\n NonLiteralPath extends string,\n LiteralPath extends HttpSchemaPath.Literal<Schema, Method>,\n> =\n NonLiteralPath extends AllowAnyStringInPathParams<LiteralPath>\n ? NonLiteralPath extends `${AllowAnyStringInPathParams<LiteralPath>}/${string}`\n ? never\n : LiteralPath\n : never;\n\nexport type LiteralHttpSchemaPathFromNonLiteral<\n Schema extends HttpSchema,\n Method extends HttpSchemaMethod<Schema>,\n NonLiteralPath extends string,\n LiteralPath extends HttpSchemaPath.Literal<Schema, Method> = HttpSchemaPath.Literal<Schema, Method>,\n> = PreferMostStaticLiteralPath<\n LiteralPath extends LiteralPath ? RecursiveInferHttpSchemaPath<Schema, Method, NonLiteralPath, LiteralPath> : never\n>;\n\ntype RecursiveInferPathParams<Path extends string> = Path extends `${infer _Prefix}:${infer ParamName}/${infer Suffix}`\n ? { [Name in ParamName]: string } & RecursiveInferPathParams<Suffix>\n : Path extends `${infer _Prefix}:${infer ParamName}`\n ? { [Name in ParamName]: string }\n : {};\n\n/**\n * Infers the path parameters schema from a path string, optionally validating it against an {@link HttpSchema}.\n *\n * If the first argument is a {@link HttpSchema} (recommended), the second argument is checked to be a valid path in that\n * schema.\n *\n * @example\n * import { HttpSchema, InferPathParams } from '@zimic/http';\n *\n * type Schema = HttpSchema<{\n * '/users/:userId': {\n * GET: {\n * response: { 200: { body: User } };\n * };\n * };\n * }>;\n *\n * // Using a schema to validate the path (recommended):\n * type PathParams = InferPathParams<Schema, '/users/:userId'>;\n * // { userId: string }\n *\n * @example\n * import { InferPathParams } from '@zimic/http';\n *\n * // Without using a schema to validate the path (works as `PathParamsSchemaFromPath`):\n * type PathParams = InferPathParams<'/users/:userId'>;\n * // { userId: string }\n */\nexport type InferPathParams<\n PathOrSchema extends string | HttpSchema,\n OptionalPath extends PathOrSchema extends HttpSchema ? HttpSchemaPath.Literal<PathOrSchema> : never = never,\n> = Prettify<\n RecursiveInferPathParams<\n PathOrSchema extends HttpSchema ? OptionalPath : PathOrSchema extends string ? PathOrSchema : never\n >\n>;\n\ntype OmitPastHttpStatusCodes<\n Schema extends HttpResponseSchemaByStatusCode.Loose,\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[],\n> =\n PastSchemas extends NonEmptyArray<HttpResponseSchemaByStatusCode.Loose>\n ? Omit<Schema, keyof UnionToIntersection<PastSchemas[number]>>\n : Schema;\n\ntype RecursiveMergeHttpResponsesByStatusCode<\n Schemas extends HttpResponseSchemaByStatusCode.Loose[],\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[] = [],\n> = Schemas extends [\n infer FirstSchema extends HttpResponseSchemaByStatusCode.Loose,\n ...infer RestSchemas extends HttpResponseSchemaByStatusCode.Loose[],\n]\n ? RestSchemas extends NonEmptyArray<HttpResponseSchemaByStatusCode.Loose>\n ? OmitPastHttpStatusCodes<FirstSchema, PastSchemas> &\n RecursiveMergeHttpResponsesByStatusCode<RestSchemas, [...PastSchemas, FirstSchema]>\n : OmitPastHttpStatusCodes<FirstSchema, PastSchemas>\n : never;\n\n/**\n * Merges multiple HTTP response schemas by status code into a single schema. When there are duplicate status codes, the\n * first declaration takes precedence.\n *\n * @example\n * import { type HttpSchema, type HttpStatusCode, MergeHttpResponsesByStatusCode } from '@zimic/http';\n *\n * // Overriding the 400 status code with a more specific schema\n * // and using a generic schema for all other client errors.\n * type MergedResponseByStatusCode = MergeHttpResponsesByStatusCode<\n * [\n * {\n * 400: { body: { message: string; issues: string[] } };\n * },\n * {\n * [StatusCode in HttpStatusCode.ClientError]: { body: { message: string } };\n * },\n * ]\n * >;\n * // {\n * // 400: { body: { message: string; issues: string[] } };\n * // 401: { body: { message: string}; };\n * // 402: { body: { message: string}; };\n * // 403: { body: { message: string}; };\n * // ...\n * // }\n *\n * type Schema = HttpSchema<{\n * '/users': {\n * GET: { response: MergedResponseByStatusCode };\n * };\n * }>;\n */\nexport type MergeHttpResponsesByStatusCode<\n Schemas extends HttpResponseSchemaByStatusCode.Loose[],\n PastSchemas extends HttpResponseSchemaByStatusCode.Loose[] = [],\n> = HttpResponseSchemaByStatusCode.ConvertToStrict<RecursiveMergeHttpResponsesByStatusCode<Schemas, PastSchemas>>;\n"]}
|