@tsonic/express 10.0.30 → 10.0.32

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.
@@ -120,9 +120,11 @@ export interface CookieOptions$instance {
120
120
  set domain(value: string | undefined);
121
121
  get encode(): CookieEncoder | undefined;
122
122
  set encode(value: CookieEncoder | undefined);
123
- expires: Nullable_1<DateTime>;
123
+ get expires(): Nullable_1<DateTime>;
124
+ set expires(value: Nullable_1<DateTime> | DateTime);
124
125
  httpOnly: boolean;
125
- maxAge: Nullable_1<System_Internal.Int64>;
126
+ get maxAge(): Nullable_1<System_Internal.Int64>;
127
+ set maxAge(value: Nullable_1<System_Internal.Int64> | long);
126
128
  partitioned: boolean;
127
129
  path: string;
128
130
  get priority(): string | undefined;
@@ -162,7 +164,8 @@ export interface CorsOptions$instance {
162
164
  credentials: boolean;
163
165
  get exposedHeaders(): string[] | undefined;
164
166
  set exposedHeaders(value: string[] | undefined);
165
- maxAgeSeconds: Nullable_1<System_Internal.Int32>;
167
+ get maxAgeSeconds(): Nullable_1<System_Internal.Int32>;
168
+ set maxAgeSeconds(value: Nullable_1<System_Internal.Int32> | int);
166
169
  get methods(): string[] | undefined;
167
170
  set methods(value: string[] | undefined);
168
171
  optionsSuccessStatus: int;
@@ -273,7 +276,8 @@ export type Multipart = Multipart$instance;
273
276
  export interface MultipartField$instance {
274
277
  readonly __tsonic_type_express_MultipartField: never;
275
278
 
276
- maxCount: Nullable_1<System_Internal.Int32>;
279
+ get maxCount(): Nullable_1<System_Internal.Int32>;
280
+ set maxCount(value: Nullable_1<System_Internal.Int32> | int);
277
281
  name: string;
278
282
  }
279
283
 
@@ -288,8 +292,10 @@ export type MultipartField = MultipartField$instance;
288
292
  export interface MultipartOptions$instance {
289
293
  readonly __tsonic_type_express_MultipartOptions: never;
290
294
 
291
- maxFileCount: Nullable_1<System_Internal.Int32>;
292
- maxFileSizeBytes: Nullable_1<System_Internal.Int64>;
295
+ get maxFileCount(): Nullable_1<System_Internal.Int32>;
296
+ set maxFileCount(value: Nullable_1<System_Internal.Int32> | int);
297
+ get maxFileSizeBytes(): Nullable_1<System_Internal.Int64>;
298
+ set maxFileSizeBytes(value: Nullable_1<System_Internal.Int64> | long);
293
299
  type: string;
294
300
  }
295
301
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/express",
3
- "version": "10.0.30",
3
+ "version": "10.0.32",
4
4
  "description": "TypeScript type definitions for Express.js style API on ASP.NET Core",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/tsoniclang/express.git"
20
20
  },
21
21
  "peerDependencies": {
22
- "@tsonic/dotnet": "10.0.27",
23
- "@tsonic/core": "10.0.27"
22
+ "@tsonic/dotnet": "10.0.32",
23
+ "@tsonic/core": "10.0.32"
24
24
  }
25
25
  }