From 20eba13f1d9618e7df8f4a87459a78d9ac74a66a Mon Sep 17 00:00:00 2001 From: Thomas Camargo Date: Thu, 23 Feb 2023 10:09:34 -0700 Subject: [PATCH] [linguist-backend]: update changeset and update api-report Signed-off-by: Thomas Camargo --- .changeset/witty-geckos-design.md | 4 ++++ plugins/linguist-backend/api-report.md | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.changeset/witty-geckos-design.md b/.changeset/witty-geckos-design.md index 41f1a28081..249e5ddb1f 100644 --- a/.changeset/witty-geckos-design.md +++ b/.changeset/witty-geckos-design.md @@ -3,3 +3,7 @@ --- Allow kind to be configurable + +```ts +return createRouter({ schedule: schedule, kind: ['Component'] }, { ...env }); +``` diff --git a/plugins/linguist-backend/api-report.md b/plugins/linguist-backend/api-report.md index 18fcec978e..d3a77bc2d7 100644 --- a/plugins/linguist-backend/api-report.md +++ b/plugins/linguist-backend/api-report.md @@ -34,6 +34,7 @@ export class LinguistBackendApi { age?: HumanDuration, batchSize?: number, useSourceLocation?: boolean, + kind?: string[], ); // (undocumented) getEntityLanguages(entityRef: string): Promise; @@ -79,6 +80,8 @@ export interface PluginOptions { // (undocumented) batchSize?: number; // (undocumented) + kind?: string[]; + // (undocumented) schedule?: TaskScheduleDefinition; // (undocumented) useSourceLocation?: boolean;