Skip to content

Commit 02252a0

Browse files
committed
restore old changes
1 parent e126eab commit 02252a0

File tree

4 files changed

+24
-37
lines changed

4 files changed

+24
-37
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 7 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: 9 additions & 16 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: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/connector/sync_job_update_stats/SyncJobUpdateStatsRequest.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
import { Dictionary } from '@spec_utils/Dictionary'
20-
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2119
import { RequestBase } from '@_types/Base'
22-
import { Id } from '@_types/common'
23-
import { integer } from '@_types/Numeric'
20+
import { Id, Metadata } from '@_types/common'
21+
import { integer, long } from '@_types/Numeric'
22+
import { Duration } from '@_types/Time'
2423

2524
/**
2625
* Set the connector sync job stats.
@@ -48,23 +47,23 @@ export interface Request extends RequestBase {
4847
/**
4948
* The number of documents the sync job deleted.
5049
*/
51-
deleted_document_count: integer
50+
deleted_document_count: long
5251
/**
5352
* The number of documents the sync job indexed.
5453
*/
55-
indexed_document_count: integer
54+
indexed_document_count: long
5655
/**
5756
* The total size of the data (in MiB) the sync job indexed.
5857
*/
59-
indexed_document_volume: integer
58+
indexed_document_volume: long
6059
/**
6160
* The timestamp to use in the `last_seen` property for the connector sync job.
6261
*/
63-
last_seen?: integer
62+
last_seen?: Duration
6463
/**
6564
* The connector-specific metadata.
6665
*/
67-
metadata?: Dictionary<string, UserDefinedValue>
66+
metadata?: Metadata
6867
/**
6968
* The total number of documents in the target index after the sync job finished.
7069
*/

0 commit comments

Comments
 (0)