typia 5.1.0-dev.20230923 → 5.1.0-dev.20230925

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.
Files changed (150) hide show
  1. package/README.md +1 -1
  2. package/lib/functional/$HeadersReader.d.ts +6 -0
  3. package/lib/functional/$HeadersReader.js +35 -0
  4. package/lib/functional/$HeadersReader.js.map +1 -0
  5. package/lib/functional/$ParameterReader.d.ts +6 -0
  6. package/lib/functional/$ParameterReader.js +35 -0
  7. package/lib/functional/$ParameterReader.js.map +1 -0
  8. package/lib/functional/$QueryReader.d.ts +7 -0
  9. package/lib/functional/$QueryReader.js +57 -0
  10. package/lib/functional/$QueryReader.js.map +1 -0
  11. package/lib/functional/Namespace.js +9 -0
  12. package/lib/functional/Namespace.js.map +1 -1
  13. package/lib/http.d.ts +872 -0
  14. package/lib/http.js +112 -0
  15. package/lib/http.js.map +1 -0
  16. package/lib/json.js +2 -2
  17. package/lib/json.js.map +1 -1
  18. package/lib/misc.js +2 -2
  19. package/lib/misc.js.map +1 -1
  20. package/lib/module.d.ts +1 -0
  21. package/lib/module.js +2 -1
  22. package/lib/module.js.map +1 -1
  23. package/lib/programmers/helpers/HttpMetadataUtil.d.ts +5 -0
  24. package/lib/programmers/helpers/HttpMetadataUtil.js +44 -0
  25. package/lib/programmers/helpers/HttpMetadataUtil.js.map +1 -0
  26. package/lib/programmers/http/HttpAssertHeadersProgrammer.d.ts +5 -0
  27. package/lib/programmers/http/HttpAssertHeadersProgrammer.js +41 -0
  28. package/lib/programmers/http/HttpAssertHeadersProgrammer.js.map +1 -0
  29. package/lib/programmers/http/HttpAssertQueryProgrammer.d.ts +5 -0
  30. package/lib/programmers/http/HttpAssertQueryProgrammer.js +41 -0
  31. package/lib/programmers/http/HttpAssertQueryProgrammer.js.map +1 -0
  32. package/lib/programmers/http/HttpHeadersProgrammer.d.ts +6 -0
  33. package/lib/programmers/http/HttpHeadersProgrammer.js +219 -0
  34. package/lib/programmers/http/HttpHeadersProgrammer.js.map +1 -0
  35. package/lib/programmers/http/HttpIsHeadersProgrammer.d.ts +5 -0
  36. package/lib/programmers/http/HttpIsHeadersProgrammer.js +45 -0
  37. package/lib/programmers/http/HttpIsHeadersProgrammer.js.map +1 -0
  38. package/lib/programmers/http/HttpIsQueryProgrammer.d.ts +5 -0
  39. package/lib/programmers/http/HttpIsQueryProgrammer.js +45 -0
  40. package/lib/programmers/http/HttpIsQueryProgrammer.js.map +1 -0
  41. package/lib/programmers/http/HttpParameterProgrammer.d.ts +5 -0
  42. package/lib/programmers/http/HttpParameterProgrammer.js +101 -0
  43. package/lib/programmers/http/HttpParameterProgrammer.js.map +1 -0
  44. package/lib/programmers/http/HttpQueryProgrammer.d.ts +6 -0
  45. package/lib/programmers/http/HttpQueryProgrammer.js +181 -0
  46. package/lib/programmers/http/HttpQueryProgrammer.js.map +1 -0
  47. package/lib/programmers/http/HttpValidateHeadersProgrammer.d.ts +5 -0
  48. package/lib/programmers/http/HttpValidateHeadersProgrammer.js +41 -0
  49. package/lib/programmers/http/HttpValidateHeadersProgrammer.js.map +1 -0
  50. package/lib/programmers/http/HttpValidateQueryProgrammer.d.ts +5 -0
  51. package/lib/programmers/http/HttpValidateQueryProgrammer.js +41 -0
  52. package/lib/programmers/http/HttpValidateQueryProgrammer.js.map +1 -0
  53. package/lib/protobuf.d.ts +24 -24
  54. package/lib/protobuf.js +4 -4
  55. package/lib/protobuf.js.map +1 -1
  56. package/lib/transformers/CallExpressionTransformer.js +40 -0
  57. package/lib/transformers/CallExpressionTransformer.js.map +1 -1
  58. package/lib/transformers/features/http/CreateHttpAssertHeadersTransformer.d.ts +4 -0
  59. package/lib/transformers/features/http/CreateHttpAssertHeadersTransformer.js +12 -0
  60. package/lib/transformers/features/http/CreateHttpAssertHeadersTransformer.js.map +1 -0
  61. package/lib/transformers/features/http/CreateHttpAssertQueryTransformer.d.ts +4 -0
  62. package/lib/transformers/features/http/CreateHttpAssertQueryTransformer.js +12 -0
  63. package/lib/transformers/features/http/CreateHttpAssertQueryTransformer.js.map +1 -0
  64. package/lib/transformers/features/http/CreateHttpHeadersTransformer.d.ts +4 -0
  65. package/lib/transformers/features/http/CreateHttpHeadersTransformer.js +10 -0
  66. package/lib/transformers/features/http/CreateHttpHeadersTransformer.js.map +1 -0
  67. package/lib/transformers/features/http/CreateHttpIsHeadersTransformer.d.ts +4 -0
  68. package/lib/transformers/features/http/CreateHttpIsHeadersTransformer.js +10 -0
  69. package/lib/transformers/features/http/CreateHttpIsHeadersTransformer.js.map +1 -0
  70. package/lib/transformers/features/http/CreateHttpIsQueryTransformer.d.ts +4 -0
  71. package/lib/transformers/features/http/CreateHttpIsQueryTransformer.js +10 -0
  72. package/lib/transformers/features/http/CreateHttpIsQueryTransformer.js.map +1 -0
  73. package/lib/transformers/features/http/CreateHttpParameterTransformer.d.ts +4 -0
  74. package/lib/transformers/features/http/CreateHttpParameterTransformer.js +10 -0
  75. package/lib/transformers/features/http/CreateHttpParameterTransformer.js.map +1 -0
  76. package/lib/transformers/features/http/CreateHttpQueryTransformer.d.ts +4 -0
  77. package/lib/transformers/features/http/CreateHttpQueryTransformer.js +10 -0
  78. package/lib/transformers/features/http/CreateHttpQueryTransformer.js.map +1 -0
  79. package/lib/transformers/features/http/CreateHttpValidateHeadersTransformer copy.d.ts +4 -0
  80. package/lib/transformers/features/http/CreateHttpValidateHeadersTransformer copy.js +12 -0
  81. package/lib/transformers/features/http/CreateHttpValidateHeadersTransformer copy.js.map +1 -0
  82. package/lib/transformers/features/http/CreateHttpValidateQueryTransformer.d.ts +4 -0
  83. package/lib/transformers/features/http/CreateHttpValidateQueryTransformer.js +12 -0
  84. package/lib/transformers/features/http/CreateHttpValidateQueryTransformer.js.map +1 -0
  85. package/lib/transformers/features/http/HttpAssertHeadersTransformer.d.ts +4 -0
  86. package/lib/transformers/features/http/HttpAssertHeadersTransformer.js +12 -0
  87. package/lib/transformers/features/http/HttpAssertHeadersTransformer.js.map +1 -0
  88. package/lib/transformers/features/http/HttpAssertQueryTransformer.d.ts +4 -0
  89. package/lib/transformers/features/http/HttpAssertQueryTransformer.js +12 -0
  90. package/lib/transformers/features/http/HttpAssertQueryTransformer.js.map +1 -0
  91. package/lib/transformers/features/http/HttpHeadersTransformer.d.ts +4 -0
  92. package/lib/transformers/features/http/HttpHeadersTransformer.js +10 -0
  93. package/lib/transformers/features/http/HttpHeadersTransformer.js.map +1 -0
  94. package/lib/transformers/features/http/HttpIsHeadersTransformer.d.ts +4 -0
  95. package/lib/transformers/features/http/HttpIsHeadersTransformer.js +10 -0
  96. package/lib/transformers/features/http/HttpIsHeadersTransformer.js.map +1 -0
  97. package/lib/transformers/features/http/HttpIsQueryTransformer.d.ts +4 -0
  98. package/lib/transformers/features/http/HttpIsQueryTransformer.js +10 -0
  99. package/lib/transformers/features/http/HttpIsQueryTransformer.js.map +1 -0
  100. package/lib/transformers/features/http/HttpParameterTransformer.d.ts +4 -0
  101. package/lib/transformers/features/http/HttpParameterTransformer.js +10 -0
  102. package/lib/transformers/features/http/HttpParameterTransformer.js.map +1 -0
  103. package/lib/transformers/features/http/HttpQueryTransformer.d.ts +4 -0
  104. package/lib/transformers/features/http/HttpQueryTransformer.js +10 -0
  105. package/lib/transformers/features/http/HttpQueryTransformer.js.map +1 -0
  106. package/lib/transformers/features/http/HttpValidateHeadersTransformer.d.ts +4 -0
  107. package/lib/transformers/features/http/HttpValidateHeadersTransformer.js +12 -0
  108. package/lib/transformers/features/http/HttpValidateHeadersTransformer.js.map +1 -0
  109. package/lib/transformers/features/http/HttpValidateQueryTransformer.d.ts +4 -0
  110. package/lib/transformers/features/http/HttpValidateQueryTransformer.js +12 -0
  111. package/lib/transformers/features/http/HttpValidateQueryTransformer.js.map +1 -0
  112. package/package.json +1 -1
  113. package/src/functional/$HeadersReader.ts +28 -0
  114. package/src/functional/$ParameterReader.ts +31 -0
  115. package/src/functional/$QueryReader.ts +53 -0
  116. package/src/functional/Namespace.ts +9 -0
  117. package/src/http.ts +1149 -0
  118. package/src/json.ts +2 -2
  119. package/src/misc.ts +2 -2
  120. package/src/module.ts +1 -0
  121. package/src/programmers/helpers/HttpMetadataUtil.ts +21 -0
  122. package/src/programmers/http/HttpAssertHeadersProgrammer.ts +77 -0
  123. package/src/programmers/http/HttpAssertQueryProgrammer.ts +77 -0
  124. package/src/programmers/http/HttpHeadersProgrammer.ts +328 -0
  125. package/src/programmers/http/HttpIsHeadersProgrammer.ts +87 -0
  126. package/src/programmers/http/HttpIsQueryProgrammer.ts +87 -0
  127. package/src/programmers/http/HttpParameterProgrammer.ts +104 -0
  128. package/src/programmers/http/HttpQueryProgrammer.ts +286 -0
  129. package/src/programmers/http/HttpValidateHeadersProgrammer.ts +77 -0
  130. package/src/programmers/http/HttpValidateQueryProgrammer.ts +77 -0
  131. package/src/protobuf.ts +34 -28
  132. package/src/transformers/CallExpressionTransformer.ts +46 -0
  133. package/src/transformers/features/http/CreateHttpAssertHeadersTransformer.ts +12 -0
  134. package/src/transformers/features/http/CreateHttpAssertQueryTransformer.ts +12 -0
  135. package/src/transformers/features/http/CreateHttpHeadersTransformer.ts +9 -0
  136. package/src/transformers/features/http/CreateHttpIsHeadersTransformer.ts +9 -0
  137. package/src/transformers/features/http/CreateHttpIsQueryTransformer.ts +9 -0
  138. package/src/transformers/features/http/CreateHttpParameterTransformer.ts +9 -0
  139. package/src/transformers/features/http/CreateHttpQueryTransformer.ts +9 -0
  140. package/src/transformers/features/http/CreateHttpValidateHeadersTransformer copy.ts +12 -0
  141. package/src/transformers/features/http/CreateHttpValidateQueryTransformer.ts +12 -0
  142. package/src/transformers/features/http/HttpAssertHeadersTransformer.ts +10 -0
  143. package/src/transformers/features/http/HttpAssertQueryTransformer.ts +10 -0
  144. package/src/transformers/features/http/HttpHeadersTransformer.ts +9 -0
  145. package/src/transformers/features/http/HttpIsHeadersTransformer.ts +9 -0
  146. package/src/transformers/features/http/HttpIsQueryTransformer.ts +9 -0
  147. package/src/transformers/features/http/HttpParameterTransformer.ts +9 -0
  148. package/src/transformers/features/http/HttpQueryTransformer.ts +9 -0
  149. package/src/transformers/features/http/HttpValidateHeadersTransformer.ts +10 -0
  150. package/src/transformers/features/http/HttpValidateQueryTransformer.ts +10 -0
package/lib/protobuf.d.ts CHANGED
@@ -12,7 +12,7 @@ import { Resolved } from "./Resolved";
12
12
  * For reference, Protocol Buffer has lots of restrictions, so that expression power
13
13
  * of Protocol Buffer is not enough strong to fully meet the TypeScript type specs.
14
14
  * In such reason, if you put a TypeScript type that is not compatible with Protocol
15
- * Buffer, this function would throw a compilation error.
15
+ * Buffer, this function would throw compilation errors.
16
16
  *
17
17
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
18
18
  *
@@ -32,7 +32,7 @@ export declare function message(): never;
32
32
  * For reference, Protocol Buffer has lots of restrictions, so that expression power
33
33
  * of Protocol Buffer is not enough strong to fully meet the TypeScript type specs.
34
34
  * In such reason, if you put a TypeScript type that is not compatible with Protocol
35
- * Buffer, this function would throw a compilation error.
35
+ * Buffer, this function would throw compilation errors.
36
36
  *
37
37
  * @template T Target type
38
38
  * @returns Protocol Buffer Message Schema.
@@ -64,7 +64,7 @@ export declare function message<T>(): string;
64
64
  * [custom tags](https://typia.io/docs/validators/tags). Thus, I repeat that,
65
65
  * you've to ensure the type safety when using decoder functions.
66
66
  *
67
- * @tempate Expected type of decoded value
67
+ * @template T Expected type of decoded value
68
68
  * @param input Protobuf Buffer binary data
69
69
  * @returns Decoded value
70
70
  *
@@ -93,7 +93,7 @@ export declare function decode(input: Uint8Array): never;
93
93
  * [custom tags](https://typia.io/docs/validators/tags). Thus, I repeat that,
94
94
  * you've to ensure the type safety when using decoder functions.
95
95
  *
96
- * @tempate Expected type of decoded value
96
+ * @template T Expected type of decoded value
97
97
  * @param input Protobuf Buffer binary data
98
98
  * @returns Decoded value
99
99
  *
@@ -123,7 +123,7 @@ export declare function decode<T>(input: Uint8Array): Resolved<T>;
123
123
  * - {@link isEncode}
124
124
  * - {@link validateEncode}
125
125
  *
126
- * @tempate Expected type of decoded value
126
+ * @template T Expected type of decoded value
127
127
  * @param input Protobuf Buffer binary data
128
128
  * @returns Decoded value
129
129
  *
@@ -151,7 +151,7 @@ export declare function assertDecode(input: Uint8Array): never;
151
151
  * - {@link isEncode}
152
152
  * - {@link validateEncode}
153
153
  *
154
- * @tempate Expected type of decoded value
154
+ * @template T Expected type of decoded value
155
155
  * @param input Protobuf Buffer binary data
156
156
  * @returns Decoded value
157
157
  *
@@ -181,7 +181,7 @@ export declare function assertDecode<T>(input: Uint8Array): Resolved<T>;
181
181
  * - {@link isEncode}
182
182
  * - {@link validateEncode}
183
183
  *
184
- * @tempate Expected type of decoded value
184
+ * @template T Expected type of decoded value
185
185
  * @param input Protobuf Buffer binary data
186
186
  * @returns Decoded value
187
187
  *
@@ -209,7 +209,7 @@ export declare function isDecode(input: Uint8Array): never;
209
209
  * - {@link isEncode}
210
210
  * - {@link validateEncode}
211
211
  *
212
- * @tempate Expected type of decoded value
212
+ * @template T Expected type of decoded value
213
213
  * @param input Protobuf Buffer binary data
214
214
  * @returns Decoded value
215
215
  *
@@ -240,7 +240,7 @@ export declare function isDecode<T>(input: Uint8Array): Resolved<T> | null;
240
240
  * - {@link isEncode}
241
241
  * - {@link validateEncode}
242
242
  *
243
- * @tempate Expected type of decoded value
243
+ * @template T Expected type of decoded value
244
244
  * @param input Protobuf Buffer binary data
245
245
  * @returns Decoded value
246
246
  *
@@ -269,7 +269,7 @@ export declare function validateDecode(input: Uint8Array): never;
269
269
  * - {@link isEncode}
270
270
  * - {@link validateEncode}
271
271
  *
272
- * @tempate Expected type of decoded value
272
+ * @template T Expected type of decoded value
273
273
  * @param input Protobuf Buffer binary data
274
274
  * @returns Decoded value
275
275
  *
@@ -292,8 +292,8 @@ export declare function validateDecode<T>(input: Uint8Array): IValidation<Resolv
292
292
  *
293
293
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
294
294
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
295
- * type that is not compatible with Protocol Buffer, this function would throw a
296
- * compilation error.
295
+ * type that is not compatible with Protocol Buffer, this function would throw
296
+ * compilation errors.
297
297
  *
298
298
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
299
299
  *
@@ -324,8 +324,8 @@ export declare function encode<T>(input: T): Uint8Array;
324
324
  *
325
325
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
326
326
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
327
- * type that is not compatible with Protocol Buffer, this function would throw a
328
- * compilation error.
327
+ * type that is not compatible with Protocol Buffer, this function would throw
328
+ * compilation errors.
329
329
  *
330
330
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
331
331
  *
@@ -356,8 +356,8 @@ export declare function assertEncode<T>(input: T): Uint8Array;
356
356
  *
357
357
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
358
358
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
359
- * type that is not compatible with Protocol Buffer, this function would throw a
360
- * compilation error.
359
+ * type that is not compatible with Protocol Buffer, this function would throw
360
+ * compilation errors.
361
361
  *
362
362
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
363
363
  *
@@ -388,8 +388,8 @@ export declare function assertEncode<T>(input: unknown): Uint8Array;
388
388
  *
389
389
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
390
390
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
391
- * type that is not compatible with Protocol Buffer, this function would throw a
392
- * compilation error.
391
+ * type that is not compatible with Protocol Buffer, this function would throw
392
+ * compilation errors.
393
393
  *
394
394
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
395
395
  *
@@ -420,8 +420,8 @@ export declare function isEncode<T>(input: T): Uint8Array | null;
420
420
  *
421
421
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
422
422
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
423
- * type that is not compatible with Protocol Buffer, this function would throw a
424
- * compilation error.
423
+ * type that is not compatible with Protocol Buffer, this function would throw
424
+ * compilation errors.
425
425
  *
426
426
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
427
427
  *
@@ -453,8 +453,8 @@ export declare function isEncode<T>(input: unknown): Uint8Array | null;
453
453
  *
454
454
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
455
455
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
456
- * type that is not compatible with Protocol Buffer, this function would throw a
457
- * compilation error.
456
+ * type that is not compatible with Protocol Buffer, this function would throw
457
+ * compilation errors.
458
458
  *
459
459
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
460
460
  *
@@ -486,8 +486,8 @@ export declare function validateEncode<T>(input: T): IValidation<Uint8Array>;
486
486
  *
487
487
  * By the way, you know what? Expression power of Protocol Buffer is not enough strong
488
488
  * to fully meet the TypeScript type specs. In such reason, if you put a TypeScript
489
- * type that is not compatible with Protocol Buffer, this function would throw a
490
- * compilation error.
489
+ * type that is not compatible with Protocol Buffer, this function would throw
490
+ * compilation errors.
491
491
  *
492
492
  * - [Restrictions of Protocol Buffer](https://typia.io/docs/protobuf/message/#restrictions)
493
493
  *
package/lib/protobuf.js CHANGED
@@ -15,7 +15,7 @@ function assertDecode() {
15
15
  halt("assertDecode");
16
16
  }
17
17
  exports.assertDecode = assertDecode;
18
- Object.assign(assertDecode, Namespace_1.Namespace.assert("assertDecode"));
18
+ Object.assign(assertDecode, Namespace_1.Namespace.assert("protobuf.assertDecode"));
19
19
  Object.assign(assertDecode, Namespace_1.Namespace.protobuf.decode("assertDecode"));
20
20
  function isDecode() {
21
21
  halt("isDecode");
@@ -38,7 +38,7 @@ function assertEncode() {
38
38
  halt("assertEncode");
39
39
  }
40
40
  exports.assertEncode = assertEncode;
41
- Object.assign(assertEncode, Namespace_1.Namespace.assert("assertEncode"));
41
+ Object.assign(assertEncode, Namespace_1.Namespace.assert("protobuf.assertEncode"));
42
42
  Object.assign(assertEncode, Namespace_1.Namespace.protobuf.encode("assertEncode"));
43
43
  function isEncode() {
44
44
  halt("isEncode");
@@ -67,7 +67,7 @@ function createAssertDecode() {
67
67
  halt("createAssertDecode");
68
68
  }
69
69
  exports.createAssertDecode = createAssertDecode;
70
- Object.assign(createAssertDecode, Namespace_1.Namespace.assert("createAssertDecode"));
70
+ Object.assign(createAssertDecode, Namespace_1.Namespace.assert("protobuf.createAssertDecode"));
71
71
  Object.assign(createAssertDecode, Namespace_1.Namespace.protobuf.decode("createAssertDecode"));
72
72
  function createValidateDecode() {
73
73
  halt("createValidateDecode");
@@ -90,7 +90,7 @@ function createAssertEncode() {
90
90
  halt("createAssertEncode");
91
91
  }
92
92
  exports.createAssertEncode = createAssertEncode;
93
- Object.assign(createAssertEncode, Namespace_1.Namespace.assert("createAssertEncode"));
93
+ Object.assign(createAssertEncode, Namespace_1.Namespace.assert("protobuf.createAssertEncode"));
94
94
  Object.assign(createAssertEncode, Namespace_1.Namespace.protobuf.encode("createAssertEncode"));
95
95
  function createValidateEncode() {
96
96
  halt("createValidateEncode");
@@ -1 +1 @@
1
- {"version":3,"file":"protobuf.js","sourceRoot":"","sources":["../src/protobuf.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"protobuf.js","sourceRoot":"","sources":["../src/protobuf.ts"],"names":[],"mappings":"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"}
@@ -13,6 +13,24 @@ var CreateValidateTransformer_1 = require("./features/CreateValidateTransformer"
13
13
  var IsTransformer_1 = require("./features/IsTransformer");
14
14
  var RandomTransformer_1 = require("./features/RandomTransformer");
15
15
  var ValidateTransformer_1 = require("./features/ValidateTransformer");
16
+ var CreateHttpAssertHeadersTransformer_1 = require("./features/http/CreateHttpAssertHeadersTransformer");
17
+ var CreateHttpAssertQueryTransformer_1 = require("./features/http/CreateHttpAssertQueryTransformer");
18
+ var CreateHttpHeadersTransformer_1 = require("./features/http/CreateHttpHeadersTransformer");
19
+ var CreateHttpIsHeadersTransformer_1 = require("./features/http/CreateHttpIsHeadersTransformer");
20
+ var CreateHttpIsQueryTransformer_1 = require("./features/http/CreateHttpIsQueryTransformer");
21
+ var CreateHttpParameterTransformer_1 = require("./features/http/CreateHttpParameterTransformer");
22
+ var CreateHttpQueryTransformer_1 = require("./features/http/CreateHttpQueryTransformer");
23
+ var CreateHttpValidateHeadersTransformer_copy_1 = require("./features/http/CreateHttpValidateHeadersTransformer copy");
24
+ var CreateHttpValidateQueryTransformer_1 = require("./features/http/CreateHttpValidateQueryTransformer");
25
+ var HttpAssertHeadersTransformer_1 = require("./features/http/HttpAssertHeadersTransformer");
26
+ var HttpAssertQueryTransformer_1 = require("./features/http/HttpAssertQueryTransformer");
27
+ var HttpHeadersTransformer_1 = require("./features/http/HttpHeadersTransformer");
28
+ var HttpIsHeadersTransformer_1 = require("./features/http/HttpIsHeadersTransformer");
29
+ var HttpIsQueryTransformer_1 = require("./features/http/HttpIsQueryTransformer");
30
+ var HttpParameterTransformer_1 = require("./features/http/HttpParameterTransformer");
31
+ var HttpQueryTransformer_1 = require("./features/http/HttpQueryTransformer");
32
+ var HttpValidateHeadersTransformer_1 = require("./features/http/HttpValidateHeadersTransformer");
33
+ var HttpValidateQueryTransformer_1 = require("./features/http/HttpValidateQueryTransformer");
16
34
  var JsonApplicationTransformer_1 = require("./features/json/JsonApplicationTransformer");
17
35
  var JsonAssertParseTransformer_1 = require("./features/json/JsonAssertParseTransformer");
18
36
  var JsonAssertStringifyTransformer_1 = require("./features/json/JsonAssertStringifyTransformer");
@@ -117,6 +135,28 @@ var FUNCTORS = {
117
135
  createValidateEquals: function () { return CreateValidateTransformer_1.CreateValidateTransformer.transform(true); },
118
136
  createRandom: function () { return CreateRandomTransformer_1.CreateRandomTransformer.transform; },
119
137
  },
138
+ http: {
139
+ headers: function () { return HttpHeadersTransformer_1.HttpHeadersTransformer.transform; },
140
+ isHeaders: function () { return HttpIsHeadersTransformer_1.HttpIsHeadersTransformer.transform; },
141
+ assertHeaders: function () { return HttpAssertHeadersTransformer_1.HttpAssertHeadersTransformer.transform; },
142
+ validateHeaders: function () { return HttpValidateHeadersTransformer_1.HttpValidateHeadersTransformer.transform; },
143
+ parameter: function () { return HttpParameterTransformer_1.HttpParameterTransformer.transform; },
144
+ query: function () { return HttpQueryTransformer_1.HttpQueryTransformer.transform; },
145
+ isQuery: function () { return HttpIsQueryTransformer_1.HttpIsQueryTransformer.transform; },
146
+ assertQuery: function () { return HttpAssertQueryTransformer_1.HttpAssertQueryTransformer.transform; },
147
+ validateQuery: function () { return HttpValidateQueryTransformer_1.HttpValidateQueryTransformer.transform; },
148
+ createHeaders: function () { return CreateHttpHeadersTransformer_1.CreateHttpHeadersTransformer.transform; },
149
+ createIsHeaders: function () { return CreateHttpIsHeadersTransformer_1.CreateHttpIsHeadersTransformer.transform; },
150
+ createAssertHeaders: function () { return CreateHttpAssertHeadersTransformer_1.CreateHttpAssertHeadersTransformer.transform; },
151
+ createValidateHeaders: function () {
152
+ return CreateHttpValidateHeadersTransformer_copy_1.CreateHttpValidateHeadersTransformer.transform;
153
+ },
154
+ createParameter: function () { return CreateHttpParameterTransformer_1.CreateHttpParameterTransformer.transform; },
155
+ createQuery: function () { return CreateHttpQueryTransformer_1.CreateHttpQueryTransformer.transform; },
156
+ createIsQuery: function () { return CreateHttpIsQueryTransformer_1.CreateHttpIsQueryTransformer.transform; },
157
+ createAssertQuery: function () { return CreateHttpAssertQueryTransformer_1.CreateHttpAssertQueryTransformer.transform; },
158
+ createValidateQuery: function () { return CreateHttpValidateQueryTransformer_1.CreateHttpValidateQueryTransformer.transform; },
159
+ },
120
160
  json: {
121
161
  application: function () { return function (P) { return function () { return JsonApplicationTransformer_1.JsonApplicationTransformer.transform(P); }; }; },
122
162
  isParse: function () { return JsonIsParseTransformer_1.JsonIsParseTransformer.transform; },
@@ -1 +1 @@
1
- {"version":3,"file":"CallExpressionTransformer.js","sourceRoot":"","sources":["../../src/transformers/CallExpressionTransformer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CallExpressionTransformer.js","sourceRoot":"","sources":["../../src/transformers/CallExpressionTransformer.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAwB;AAIxB,kEAAiE;AACjE,8EAA6E;AAC7E,sEAAqE;AACrE,8EAA6E;AAC7E,kFAAiF;AACjF,0DAAyD;AACzD,kEAAiE;AACjE,sEAAqE;AACrE,yGAAwG;AACxG,qGAAoG;AACpG,6FAA4F;AAC5F,iGAAgG;AAChG,6FAA4F;AAC5F,iGAAgG;AAChG,yFAAwF;AACxF,uHAAiH;AACjH,yGAAwG;AACxG,6FAA4F;AAC5F,yFAAwF;AACxF,iFAAgF;AAChF,qFAAoF;AACpF,iFAAgF;AAChF,qFAAoF;AACpF,6EAA4E;AAC5E,iGAAgG;AAChG,6FAA4F;AAC5F,yFAAwF;AACxF,yFAAwF;AACxF,iGAAgG;AAChG,qGAAoG;AACpG,6GAA4G;AAC5G,6FAA4F;AAC5F,qGAAoG;AACpG,iGAAgG;AAChG,yGAAwG;AACxG,+GAA+G;AAC/G,iFAAgF;AAChF,yFAAwF;AACxF,qFAAoF;AACpF,6FAA4F;AAC5F,qGAAoG;AACpG,2EAA0E;AAC1E,yFAAwF;AACxF,yFAAwF;AACxF,6EAA4E;AAC5E,qGAAoG;AACpG,qGAAoG;AACpG,yFAAwF;AACxF,6FAA4F;AAC5F,6FAA4F;AAC5F,yFAAwF;AACxF,yGAAwG;AACxG,yGAAwG;AACxG,iFAAgF;AAChF,iFAAgF;AAChF,mFAAkF;AAClF,6EAA4E;AAC5E,6FAA4F;AAC5F,6FAA4F;AAC5F,mHAAkH;AAClH,mHAAkH;AAClH,uGAAsG;AACtG,uGAAsG;AACtG,2GAA0G;AAC1G,2GAA0G;AAC1G,uHAAsH;AACtH,uHAAsH;AACtH,uGAAsG;AACtG,uGAAsG;AACtG,2FAA0F;AAC1F,2FAA0F;AAC1F,+FAA8F;AAC9F,+FAA8F;AAC9F,6FAA4F;AAC5F,2GAA0G;AAC1G,2GAA0G;AAE1G,IAAiB,yBAAyB,CA8DzC;AA9DD,WAAiB,yBAAyB;IACzB,mCAAS,GAClB,UAAC,OAAiB;QAClB,OAAA,UAAC,UAA6B;;YAK1B,IAAM,WAAW,GACb,MAAA,OAAO,CAAC,OAAO,CAAC,oBAAoB,CAAC,UAAU,CAAC,0CAAE,WAAW,CAAC;YAClE,IAAI,CAAC,WAAW;gBAAE,OAAO,UAAU,CAAC;YAGpC,IAAM,QAAQ,GAAW,cAAI,CAAC,OAAO,CACjC,WAAW,CAAC,aAAa,EAAE,CAAC,QAAQ,CACvC,CAAC;YACF,IAAI,QAAQ,CAAC,QAAQ,CAAC,KAAK,KAAK;gBAAE,OAAO,UAAU,CAAC;YAMpD,IAAM,MAAM,GAAW,QAAQ;iBAC1B,KAAK,CAAC,cAAI,CAAC,GAAG,CAAC;iBACf,EAAE,CAAC,CAAC,CAAC,CAAE;iBACP,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAE,CAAC;YACZ,IAAA,IAAI,GACR,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,MAAM,KAD7C,CAC8C;YAG1D,IAAM,OAAO,GAA6B,MAAA,QAAQ,CAAC,MAAM,CAAC,0CAAG,IAAI,CAAC,CAAC;YACnE,IAAI,OAAO,KAAK,SAAS;gBAAE,OAAO,UAAU,CAAC;YAG7C,IAAM,MAAM,GAAyB,OAAO,EAAE,CAAC,OAAO,CAAC,CACnD,UAAU,CAAC,UAAU,CACxB,CAAC,UAAU,CAAC,CAAC;YACd,OAAO,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,UAAU,CAAC;QAChC,CAAC;IAnCD,CAmCC,CAAC;IAEN,IAAM,QAAQ,GAAG,UAAC,QAAgB;QAC9B,IAAM,KAAK,GAAa,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC9C,OAAO,KAAK,CAAC,IAAI,CACb,UAAC,CAAC;YACE,OAAA,QAAQ,CAAC,QAAQ,CACb,cAAI,CAAC,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,KAAK,EAAE,UAAG,CAAC,UAAO,CAAC,CACzD;gBACD,QAAQ;oBACJ,cAAI,CAAC,OAAO,CAAC,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,UAAG,CAAC,QAAK,CAAC,CAAC;gBACvD,QAAQ;oBACJ,cAAI,CAAC,OAAO,CACR,cAAI,CAAC,IAAI,CACL,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,KAAK,EACL,UAAG,CAAC,QAAK,CACZ,CACJ;QAfL,CAeK,CACZ,CAAC;IACN,CAAC,CAAC;AACN,CAAC,EA9DgB,yBAAyB,yCAAzB,yBAAyB,QA8DzC;AAQD,IAAM,QAAQ,GAA+C;IACzD,MAAM,EAAE;QAEJ,MAAM,EAAE,cAAM,OAAA,qCAAiB,CAAC,SAAS,CAAC,KAAK,CAAC,EAAlC,CAAkC;QAChD,UAAU,EAAE,cAAM,OAAA,qCAAiB,CAAC,SAAS,CAAC,KAAK,CAAC,EAAlC,CAAkC;QACpD,EAAE,EAAE,cAAM,OAAA,6BAAa,CAAC,SAAS,CAAC,KAAK,CAAC,EAA9B,CAA8B;QACxC,QAAQ,EAAE,cAAM,OAAA,yCAAmB,CAAC,SAAS,CAAC,KAAK,CAAC,EAApC,CAAoC;QAGpD,YAAY,EAAE,cAAM,OAAA,qCAAiB,CAAC,SAAS,CAAC,IAAI,CAAC,EAAjC,CAAiC;QACrD,MAAM,EAAE,cAAM,OAAA,6BAAa,CAAC,SAAS,CAAC,IAAI,CAAC,EAA7B,CAA6B;QAC3C,cAAc,EAAE,cAAM,OAAA,yCAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,EAAnC,CAAmC;QAGzD,MAAM,EAAE,cAAM,OAAA,qCAAiB,CAAC,SAAS,EAA3B,CAA2B;QACzC,QAAQ,EAAE,cAAM,OAAA,UAAC,CAAC,IAAK,OAAA,cAAM,OAAA,yCAAmB,CAAC,SAAS,CAAC,CAAC,CAAC,EAAhC,CAAgC,EAAtC,CAAsC,EAA7C,CAA6C;QAG7D,YAAY,EAAE,cAAM,OAAA,iDAAuB,CAAC,SAAS,CAAC,KAAK,CAAC,EAAxC,CAAwC;QAC5D,gBAAgB,EAAE,cAAM,OAAA,iDAAuB,CAAC,SAAS,CAAC,KAAK,CAAC,EAAxC,CAAwC;QAChE,QAAQ,EAAE,cAAM,OAAA,yCAAmB,CAAC,SAAS,CAAC,KAAK,CAAC,EAApC,CAAoC;QACpD,cAAc,EAAE,cAAM,OAAA,qDAAyB,CAAC,SAAS,CAAC,KAAK,CAAC,EAA1C,CAA0C;QAChE,kBAAkB,EAAE,cAAM,OAAA,iDAAuB,CAAC,SAAS,CAAC,IAAI,CAAC,EAAvC,CAAuC;QACjE,YAAY,EAAE,cAAM,OAAA,yCAAmB,CAAC,SAAS,CAAC,IAAI,CAAC,EAAnC,CAAmC;QACvD,oBAAoB,EAAE,cAAM,OAAA,qDAAyB,CAAC,SAAS,CAAC,IAAI,CAAC,EAAzC,CAAyC;QACrE,YAAY,EAAE,cAAM,OAAA,iDAAuB,CAAC,SAAS,EAAjC,CAAiC;KACxD;IACD,IAAI,EAAE;QAEF,OAAO,EAAE,cAAM,OAAA,+CAAsB,CAAC,SAAS,EAAhC,CAAgC;QAC/C,SAAS,EAAE,cAAM,OAAA,mDAAwB,CAAC,SAAS,EAAlC,CAAkC;QACnD,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,eAAe,EAAE,cAAM,OAAA,+DAA8B,CAAC,SAAS,EAAxC,CAAwC;QAG/D,SAAS,EAAE,cAAM,OAAA,mDAAwB,CAAC,SAAS,EAAlC,CAAkC;QAGnD,KAAK,EAAE,cAAM,OAAA,2CAAoB,CAAC,SAAS,EAA9B,CAA8B;QAC3C,OAAO,EAAE,cAAM,OAAA,+CAAsB,CAAC,SAAS,EAAhC,CAAgC;QAC/C,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAG3D,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,eAAe,EAAE,cAAM,OAAA,+DAA8B,CAAC,SAAS,EAAxC,CAAwC;QAC/D,mBAAmB,EAAE,cAAM,OAAA,uEAAkC,CAAC,SAAS,EAA5C,CAA4C;QACvE,qBAAqB,EAAE;YACnB,OAAA,gFAAoC,CAAC,SAAS;QAA9C,CAA8C;QAClD,eAAe,EAAE,cAAM,OAAA,+DAA8B,CAAC,SAAS,EAAxC,CAAwC;QAC/D,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QACnE,mBAAmB,EAAE,cAAM,OAAA,uEAAkC,CAAC,SAAS,EAA5C,CAA4C;KAC1E;IACD,IAAI,EAAE;QAEF,WAAW,EAAE,cAAM,OAAA,UAAC,CAAC,IAAK,OAAA,cAAM,OAAA,uDAA0B,CAAC,SAAS,CAAC,CAAC,CAAC,EAAvC,CAAuC,EAA7C,CAA6C,EAApD,CAAoD;QAGvE,OAAO,EAAE,cAAM,OAAA,+CAAsB,CAAC,SAAS,EAAhC,CAAgC;QAC/C,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAG3D,SAAS,EAAE,cAAM,OAAA,mDAAwB,CAAC,SAAS,EAAlC,CAAkC;QACnD,eAAe,EAAE,cAAM,OAAA,+DAA8B,CAAC,SAAS,EAAxC,CAAwC;QAC/D,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QAGnE,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QACnE,mBAAmB,EAAE,cAAM,OAAA,uEAAkC,CAAC,SAAS,EAA5C,CAA4C;QACvE,eAAe,EAAE,cAAM,OAAA,+DAA8B,CAAC,SAAS,EAAxC,CAAwC;QAC/D,qBAAqB,EAAE;YACnB,OAAA,2EAAoC,CAAC,SAAS;QAA9C,CAA8C;QAClD,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QACnE,uBAAuB,EAAE;YACrB,OAAA,8EAAsC,CAAC,SAAS;QAAhD,CAAgD;KACvD;IACD,QAAQ,EAAE;QAEN,OAAO,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QAGnD,MAAM,EAAE,cAAM,OAAA,qDAAyB,CAAC,SAAS,EAAnC,CAAmC;QACjD,YAAY,EAAE,cAAM,OAAA,iEAA+B,CAAC,SAAS,EAAzC,CAAyC;QAC7D,QAAQ,EAAE,cAAM,OAAA,yDAA2B,CAAC,SAAS,EAArC,CAAqC;QACrD,cAAc,EAAE,cAAM,OAAA,qEAAiC,CAAC,SAAS,EAA3C,CAA2C;QAGjE,MAAM,EAAE,cAAM,OAAA,qDAAyB,CAAC,SAAS,EAAnC,CAAmC;QACjD,YAAY,EAAE,cAAM,OAAA,iEAA+B,CAAC,SAAS,EAAzC,CAAyC;QAC7D,QAAQ,EAAE,cAAM,OAAA,yDAA2B,CAAC,SAAS,EAArC,CAAqC;QACrD,cAAc,EAAE,cAAM,OAAA,qEAAiC,CAAC,SAAS,EAA3C,CAA2C;QAGjE,YAAY,EAAE,cAAM,OAAA,iEAA+B,CAAC,SAAS,EAAzC,CAAyC;QAC7D,kBAAkB,EAAE;YAChB,OAAA,6EAAqC,CAAC,SAAS;QAA/C,CAA+C;QACnD,cAAc,EAAE,cAAM,OAAA,qEAAiC,CAAC,SAAS,EAA3C,CAA2C;QACjE,oBAAoB,EAAE;YAClB,OAAA,iFAAuC,CAAC,SAAS;QAAjD,CAAiD;QACrD,YAAY,EAAE,cAAM,OAAA,iEAA+B,CAAC,SAAS,EAAzC,CAAyC;QAC7D,kBAAkB,EAAE;YAChB,OAAA,6EAAqC,CAAC,SAAS;QAA/C,CAA+C;QACnD,cAAc,EAAE,cAAM,OAAA,qEAAiC,CAAC,SAAS,EAA3C,CAA2C;QACjE,oBAAoB,EAAE;YAClB,OAAA,iFAAuC,CAAC,SAAS;QAAjD,CAAiD;KACxD;IACD,IAAI,EAAE;QACF,QAAQ,EAAE,cAAM,OAAA,UAAC,OAAO,IAAK,OAAA;YACzB,OAAA,iDAAuB,CAAC,SAAS,CAAC,OAAO,CAAC;QAA1C,CAA0C,EADjB,CACiB,EAD9B,CAC8B;QAG9C,KAAK,EAAE,cAAM,OAAA,2CAAoB,CAAC,SAAS,EAA9B,CAA8B;QAC3C,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,OAAO,EAAE,cAAM,OAAA,+CAAsB,CAAC,SAAS,EAAhC,CAAgC;QAC/C,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAG3D,KAAK,EAAE,cAAM,OAAA,2CAAoB,CAAC,SAAS,EAA9B,CAA8B;QAC3C,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,OAAO,EAAE,cAAM,OAAA,+CAAsB,CAAC,SAAS,EAAhC,CAAgC;QAC/C,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAG3D,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QACnE,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,mBAAmB,EAAE,cAAM,OAAA,uEAAkC,CAAC,SAAS,EAA5C,CAA4C;QACvE,WAAW,EAAE,cAAM,OAAA,uDAA0B,CAAC,SAAS,EAApC,CAAoC;QACvD,iBAAiB,EAAE,cAAM,OAAA,mEAAgC,CAAC,SAAS,EAA1C,CAA0C;QACnE,aAAa,EAAE,cAAM,OAAA,2DAA4B,CAAC,SAAS,EAAtC,CAAsC;QAC3D,mBAAmB,EAAE,cAAM,OAAA,uEAAkC,CAAC,SAAS,EAA5C,CAA4C;KAC1E;CACJ,CAAC"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpAssertHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpAssertHeadersTransformer = void 0;
4
+ var HttpAssertHeadersProgrammer_1 = require("../../../programmers/http/HttpAssertHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpAssertHeadersTransformer;
7
+ (function (CreateHttpAssertHeadersTransformer) {
8
+ CreateHttpAssertHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createAssertHeaders")(function (project) { return function (modulo) {
9
+ return HttpAssertHeadersProgrammer_1.HttpAssertHeadersProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(CreateHttpAssertHeadersTransformer || (exports.CreateHttpAssertHeadersTransformer = CreateHttpAssertHeadersTransformer = {}));
12
+ //# sourceMappingURL=CreateHttpAssertHeadersTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpAssertHeadersTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpAssertHeadersTransformer.ts"],"names":[],"mappings":";;;AAAA,qGAAoG;AAEpG,wEAAuE;AAEvE,IAAiB,kCAAkC,CAOlD;AAPD,WAAiB,kCAAkC;IAClC,4CAAS,GAAG,uCAAkB,CAAC,OAAO,CAC/C,0BAA0B,CAC7B,CACG,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,yDAA2B,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAAlD,CAAkD,EADzC,CACyC,CACzD,CAAC;AACN,CAAC,EAPgB,kCAAkC,kDAAlC,kCAAkC,QAOlD"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpAssertQueryTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpAssertQueryTransformer = void 0;
4
+ var HttpAssertQueryProgrammer_1 = require("../../../programmers/http/HttpAssertQueryProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpAssertQueryTransformer;
7
+ (function (CreateHttpAssertQueryTransformer) {
8
+ CreateHttpAssertQueryTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createAssertQuery")(function (project) { return function (modulo) {
9
+ return HttpAssertQueryProgrammer_1.HttpAssertQueryProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(CreateHttpAssertQueryTransformer || (exports.CreateHttpAssertQueryTransformer = CreateHttpAssertQueryTransformer = {}));
12
+ //# sourceMappingURL=CreateHttpAssertQueryTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpAssertQueryTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpAssertQueryTransformer.ts"],"names":[],"mappings":";;;AAAA,iGAAgG;AAEhG,wEAAuE;AAEvE,IAAiB,gCAAgC,CAOhD;AAPD,WAAiB,gCAAgC;IAChC,0CAAS,GAAG,uCAAkB,CAAC,OAAO,CAC/C,wBAAwB,CAC3B,CACG,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,qDAAyB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAAhD,CAAgD,EADvC,CACuC,CACvD,CAAC;AACN,CAAC,EAPgB,gCAAgC,gDAAhC,gCAAgC,QAOhD"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpHeadersTransformer = void 0;
4
+ var HttpHeadersProgrammer_1 = require("../../../programmers/http/HttpHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpHeadersTransformer;
7
+ (function (CreateHttpHeadersTransformer) {
8
+ CreateHttpHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createHeaders")(function (project) { return function (modulo) { return HttpHeadersProgrammer_1.HttpHeadersProgrammer.write(project)(modulo); }; });
9
+ })(CreateHttpHeadersTransformer || (exports.CreateHttpHeadersTransformer = CreateHttpHeadersTransformer = {}));
10
+ //# sourceMappingURL=CreateHttpHeadersTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpHeadersTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpHeadersTransformer.ts"],"names":[],"mappings":";;;AAAA,yFAAwF;AAExF,wEAAuE;AAEvE,IAAiB,4BAA4B,CAI5C;AAJD,WAAiB,4BAA4B;IAC5B,sCAAS,GAAG,uCAAkB,CAAC,OAAO,CAAC,oBAAoB,CAAC,CACrE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,6CAAqB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA5C,CAA4C,EAAxD,CAAwD,CACxE,CAAC;AACN,CAAC,EAJgB,4BAA4B,4CAA5B,4BAA4B,QAI5C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpIsHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpIsHeadersTransformer = void 0;
4
+ var HttpIsHeadersProgrammer_1 = require("../../../programmers/http/HttpIsHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpIsHeadersTransformer;
7
+ (function (CreateHttpIsHeadersTransformer) {
8
+ CreateHttpIsHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createIsHeaders")(function (project) { return function (modulo) { return HttpIsHeadersProgrammer_1.HttpIsHeadersProgrammer.write(project)(modulo); }; });
9
+ })(CreateHttpIsHeadersTransformer || (exports.CreateHttpIsHeadersTransformer = CreateHttpIsHeadersTransformer = {}));
10
+ //# sourceMappingURL=CreateHttpIsHeadersTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpIsHeadersTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpIsHeadersTransformer.ts"],"names":[],"mappings":";;;AAAA,6FAA4F;AAE5F,wEAAuE;AAEvE,IAAiB,8BAA8B,CAI9C;AAJD,WAAiB,8BAA8B;IAC9B,wCAAS,GAAG,uCAAkB,CAAC,OAAO,CAAC,sBAAsB,CAAC,CACvE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,iDAAuB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA9C,CAA8C,EAA1D,CAA0D,CAC1E,CAAC;AACN,CAAC,EAJgB,8BAA8B,8CAA9B,8BAA8B,QAI9C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpIsQueryTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpIsQueryTransformer = void 0;
4
+ var HttpIsQueryProgrammer_1 = require("../../../programmers/http/HttpIsQueryProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpIsQueryTransformer;
7
+ (function (CreateHttpIsQueryTransformer) {
8
+ CreateHttpIsQueryTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createIsQuery")(function (project) { return function (modulo) { return HttpIsQueryProgrammer_1.HttpIsQueryProgrammer.write(project)(modulo); }; });
9
+ })(CreateHttpIsQueryTransformer || (exports.CreateHttpIsQueryTransformer = CreateHttpIsQueryTransformer = {}));
10
+ //# sourceMappingURL=CreateHttpIsQueryTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpIsQueryTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpIsQueryTransformer.ts"],"names":[],"mappings":";;;AAAA,yFAAwF;AAExF,wEAAuE;AAEvE,IAAiB,4BAA4B,CAI5C;AAJD,WAAiB,4BAA4B;IAC5B,sCAAS,GAAG,uCAAkB,CAAC,OAAO,CAAC,oBAAoB,CAAC,CACrE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,6CAAqB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA5C,CAA4C,EAAxD,CAAwD,CACxE,CAAC;AACN,CAAC,EAJgB,4BAA4B,4CAA5B,4BAA4B,QAI5C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpParameterTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpParameterTransformer = void 0;
4
+ var HttpParameterProgrammer_1 = require("../../../programmers/http/HttpParameterProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpParameterTransformer;
7
+ (function (CreateHttpParameterTransformer) {
8
+ CreateHttpParameterTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createParameter")(function (project) { return function (modulo) { return HttpParameterProgrammer_1.HttpParameterProgrammer.write(project)(modulo); }; });
9
+ })(CreateHttpParameterTransformer || (exports.CreateHttpParameterTransformer = CreateHttpParameterTransformer = {}));
10
+ //# sourceMappingURL=CreateHttpParameterTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpParameterTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpParameterTransformer.ts"],"names":[],"mappings":";;;AAAA,6FAA4F;AAE5F,wEAAuE;AAEvE,IAAiB,8BAA8B,CAI9C;AAJD,WAAiB,8BAA8B;IAC9B,wCAAS,GAAG,uCAAkB,CAAC,OAAO,CAAC,sBAAsB,CAAC,CACvE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,iDAAuB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA9C,CAA8C,EAA1D,CAA0D,CAC1E,CAAC;AACN,CAAC,EAJgB,8BAA8B,8CAA9B,8BAA8B,QAI9C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpQueryTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpQueryTransformer = void 0;
4
+ var HttpQueryProgrammer_1 = require("../../../programmers/http/HttpQueryProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpQueryTransformer;
7
+ (function (CreateHttpQueryTransformer) {
8
+ CreateHttpQueryTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createQuery")(function (project) { return function (modulo) { return HttpQueryProgrammer_1.HttpQueryProgrammer.write(project)(modulo); }; });
9
+ })(CreateHttpQueryTransformer || (exports.CreateHttpQueryTransformer = CreateHttpQueryTransformer = {}));
10
+ //# sourceMappingURL=CreateHttpQueryTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpQueryTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpQueryTransformer.ts"],"names":[],"mappings":";;;AAAA,qFAAoF;AAEpF,wEAAuE;AAEvE,IAAiB,0BAA0B,CAI1C;AAJD,WAAiB,0BAA0B;IAC1B,oCAAS,GAAG,uCAAkB,CAAC,OAAO,CAAC,kBAAkB,CAAC,CACnE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,yCAAmB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA1C,CAA0C,EAAtD,CAAsD,CACtE,CAAC;AACN,CAAC,EAJgB,0BAA0B,0CAA1B,0BAA0B,QAI1C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpValidateHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpValidateHeadersTransformer = void 0;
4
+ var HttpValidateHeadersProgrammer_1 = require("../../../programmers/http/HttpValidateHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpValidateHeadersTransformer;
7
+ (function (CreateHttpValidateHeadersTransformer) {
8
+ CreateHttpValidateHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createValidateHeaders")(function (project) { return function (modulo) {
9
+ return HttpValidateHeadersProgrammer_1.HttpValidateHeadersProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(CreateHttpValidateHeadersTransformer || (exports.CreateHttpValidateHeadersTransformer = CreateHttpValidateHeadersTransformer = {}));
12
+ //# sourceMappingURL=CreateHttpValidateHeadersTransformer%20copy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpValidateHeadersTransformer copy.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpValidateHeadersTransformer copy.ts"],"names":[],"mappings":";;;AAAA,yGAAwG;AAExG,wEAAuE;AAEvE,IAAiB,oCAAoC,CAOpD;AAPD,WAAiB,oCAAoC;IACpC,8CAAS,GAAG,uCAAkB,CAAC,OAAO,CAC/C,4BAA4B,CAC/B,CACG,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,6DAA6B,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAApD,CAAoD,EAD3C,CAC2C,CAC3D,CAAC;AACN,CAAC,EAPgB,oCAAoC,oDAApC,oCAAoC,QAOpD"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace CreateHttpValidateQueryTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").ArrowFunction;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateHttpValidateQueryTransformer = void 0;
4
+ var HttpValidateQueryProgrammer_1 = require("../../../programmers/http/HttpValidateQueryProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var CreateHttpValidateQueryTransformer;
7
+ (function (CreateHttpValidateQueryTransformer) {
8
+ CreateHttpValidateQueryTransformer.transform = GenericTransformer_1.GenericTransformer.factory("http.createValidateQuery")(function (project) { return function (modulo) {
9
+ return HttpValidateQueryProgrammer_1.HttpValidateQueryProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(CreateHttpValidateQueryTransformer || (exports.CreateHttpValidateQueryTransformer = CreateHttpValidateQueryTransformer = {}));
12
+ //# sourceMappingURL=CreateHttpValidateQueryTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateHttpValidateQueryTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/CreateHttpValidateQueryTransformer.ts"],"names":[],"mappings":";;;AAAA,qGAAoG;AAEpG,wEAAuE;AAEvE,IAAiB,kCAAkC,CAOlD;AAPD,WAAiB,kCAAkC;IAClC,4CAAS,GAAG,uCAAkB,CAAC,OAAO,CAC/C,0BAA0B,CAC7B,CACG,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,yDAA2B,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAAlD,CAAkD,EADzC,CACyC,CACzD,CAAC;AACN,CAAC,EAPgB,kCAAkC,kDAAlC,kCAAkC,QAOlD"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace HttpAssertHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").CallExpression;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HttpAssertHeadersTransformer = void 0;
4
+ var HttpAssertHeadersProgrammer_1 = require("../../../programmers/http/HttpAssertHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var HttpAssertHeadersTransformer;
7
+ (function (HttpAssertHeadersTransformer) {
8
+ HttpAssertHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.scalar("http.assertHeaders")(function (project) { return function (modulo) {
9
+ return HttpAssertHeadersProgrammer_1.HttpAssertHeadersProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(HttpAssertHeadersTransformer || (exports.HttpAssertHeadersTransformer = HttpAssertHeadersTransformer = {}));
12
+ //# sourceMappingURL=HttpAssertHeadersTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HttpAssertHeadersTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/HttpAssertHeadersTransformer.ts"],"names":[],"mappings":";;;AAAA,qGAAoG;AAEpG,wEAAuE;AAEvE,IAAiB,4BAA4B,CAK5C;AALD,WAAiB,4BAA4B;IAC5B,sCAAS,GAAG,uCAAkB,CAAC,MAAM,CAAC,oBAAoB,CAAC,CACpE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,yDAA2B,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAAlD,CAAkD,EADzC,CACyC,CACzD,CAAC;AACN,CAAC,EALgB,4BAA4B,4CAA5B,4BAA4B,QAK5C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace HttpAssertQueryTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").CallExpression;
4
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HttpAssertQueryTransformer = void 0;
4
+ var HttpAssertQueryProgrammer_1 = require("../../../programmers/http/HttpAssertQueryProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var HttpAssertQueryTransformer;
7
+ (function (HttpAssertQueryTransformer) {
8
+ HttpAssertQueryTransformer.transform = GenericTransformer_1.GenericTransformer.scalar("http.assertQuery")(function (project) { return function (modulo) {
9
+ return HttpAssertQueryProgrammer_1.HttpAssertQueryProgrammer.write(project)(modulo);
10
+ }; });
11
+ })(HttpAssertQueryTransformer || (exports.HttpAssertQueryTransformer = HttpAssertQueryTransformer = {}));
12
+ //# sourceMappingURL=HttpAssertQueryTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HttpAssertQueryTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/HttpAssertQueryTransformer.ts"],"names":[],"mappings":";;;AAAA,iGAAgG;AAEhG,wEAAuE;AAEvE,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IAC1B,oCAAS,GAAG,uCAAkB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAClE,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM;QAChB,OAAA,qDAAyB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;IAAhD,CAAgD,EADvC,CACuC,CACvD,CAAC;AACN,CAAC,EALgB,0BAA0B,0CAA1B,0BAA0B,QAK1C"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace HttpHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").CallExpression;
4
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HttpHeadersTransformer = void 0;
4
+ var HttpHeadersProgrammer_1 = require("../../../programmers/http/HttpHeadersProgrammer");
5
+ var GenericTransformer_1 = require("../../internal/GenericTransformer");
6
+ var HttpHeadersTransformer;
7
+ (function (HttpHeadersTransformer) {
8
+ HttpHeadersTransformer.transform = GenericTransformer_1.GenericTransformer.scalar("http.headers")(function (project) { return function (modulo) { return HttpHeadersProgrammer_1.HttpHeadersProgrammer.write(project)(modulo); }; });
9
+ })(HttpHeadersTransformer || (exports.HttpHeadersTransformer = HttpHeadersTransformer = {}));
10
+ //# sourceMappingURL=HttpHeadersTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HttpHeadersTransformer.js","sourceRoot":"","sources":["../../../../src/transformers/features/http/HttpHeadersTransformer.ts"],"names":[],"mappings":";;;AAAA,yFAAwF;AAExF,wEAAuE;AAEvE,IAAiB,sBAAsB,CAItC;AAJD,WAAiB,sBAAsB;IACtB,gCAAS,GAAG,uCAAkB,CAAC,MAAM,CAAC,cAAc,CAAC,CAC9D,UAAC,OAAO,IAAK,OAAA,UAAC,MAAM,IAAK,OAAA,6CAAqB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,EAA5C,CAA4C,EAAxD,CAAwD,CACxE,CAAC;AACN,CAAC,EAJgB,sBAAsB,sCAAtB,sBAAsB,QAItC"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="ts-expose-internals/typescript" />
2
+ export declare namespace HttpIsHeadersTransformer {
3
+ const transform: (project: import("../../IProject").IProject) => (modulo: import("typescript").LeftHandSideExpression) => (expression: import("typescript").CallExpression) => import("typescript").CallExpression;
4
+ }