diff --git a/api-report/genai-node.api.md b/api-report/genai-node.api.md index de79e4c6ba..8c7b1e7c55 100644 --- a/api-report/genai-node.api.md +++ b/api-report/genai-node.api.md @@ -2947,6 +2947,8 @@ export enum PagedItem { // (undocumented) PAGED_ITEM_MODELS = "models", // (undocumented) + PAGED_ITEM_SKILLS = "skills", + // (undocumented) PAGED_ITEM_TUNING_JOBS = "tuningJobs" } diff --git a/api-report/genai-web.api.md b/api-report/genai-web.api.md index de79e4c6ba..8c7b1e7c55 100644 --- a/api-report/genai-web.api.md +++ b/api-report/genai-web.api.md @@ -2947,6 +2947,8 @@ export enum PagedItem { // (undocumented) PAGED_ITEM_MODELS = "models", // (undocumented) + PAGED_ITEM_SKILLS = "skills", + // (undocumented) PAGED_ITEM_TUNING_JOBS = "tuningJobs" } diff --git a/api-report/genai.api.md b/api-report/genai.api.md index de79e4c6ba..8c7b1e7c55 100644 --- a/api-report/genai.api.md +++ b/api-report/genai.api.md @@ -2947,6 +2947,8 @@ export enum PagedItem { // (undocumented) PAGED_ITEM_MODELS = "models", // (undocumented) + PAGED_ITEM_SKILLS = "skills", + // (undocumented) PAGED_ITEM_TUNING_JOBS = "tuningJobs" } diff --git a/src/pagers.ts b/src/pagers.ts index 195003231f..3a8cf2eb9b 100644 --- a/src/pagers.ts +++ b/src/pagers.ts @@ -18,6 +18,7 @@ export enum PagedItem { PAGED_ITEM_CACHED_CONTENTS = 'cachedContents', PAGED_ITEM_FILE_SEARCH_STORES = 'fileSearchStores', PAGED_ITEM_DOCUMENTS = 'documents', + PAGED_ITEM_SKILLS = 'skills', } export interface PagedItemConfig { @@ -38,6 +39,7 @@ interface PagedItemResponse { cachedContents?: T[]; fileSearchStores?: T[]; documents?: T[]; + skills?: T[]; } /**