Skip to content

Commit 4b6f7f7

Browse files
committed
Use more EpochTime<UnitMillis>
1 parent e2894c7 commit 4b6f7f7

File tree

6 files changed

+52
-21
lines changed

6 files changed

+52
-21
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 22 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 22 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/security/_types/ApiKey.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
import { Dictionary } from '@spec_utils/Dictionary'
2121
import { Id, Metadata, Name, Username } from '@_types/common'
22-
import { long } from '@_types/Numeric'
2322
import { SortResults } from '@_types/sort'
2423
import { EpochTime, UnitMillis } from '@_types/Time'
2524
import { Access } from './Access'
@@ -43,11 +42,11 @@ export class ApiKey {
4342
/**
4443
* Creation time for the API key in milliseconds.
4544
*/
46-
creation: long
45+
creation: EpochTime<UnitMillis>
4746
/**
4847
* Expiration time for the API key in milliseconds.
4948
*/
50-
expiration?: long
49+
expiration?: EpochTime<UnitMillis>
5150
/**
5251
* Invalidation status for the API key.
5352
* If the key has been invalidated, it has a value of `true`. Otherwise, it is `false`.

0 commit comments

Comments
 (0)