opik 2.2.37 → 2.2.38
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.
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2281,7 +2281,7 @@ interface PromptVersionRetrieveDetail {
|
|
|
2281
2281
|
environment?: string;
|
|
2282
2282
|
/** If provided, resolves to the version with this sequential number (e.g. v3); mutually exclusive with commit and environment */
|
|
2283
2283
|
versionNumber?: string;
|
|
2284
|
-
/** If provided, scopes the search to the specified project */
|
|
2284
|
+
/** If provided, scopes the search to the specified project; prompts belonging to other projects are never matched, and an unknown project name returns 404. Legacy prompts that are not scoped to any project are still matched as a deprecated fallback, signalled by the X-Opik-Deprecation response header. */
|
|
2285
2285
|
projectName?: string;
|
|
2286
2286
|
}
|
|
2287
2287
|
|
|
@@ -11592,7 +11592,7 @@ declare class PromptsClient {
|
|
|
11592
11592
|
restorePromptVersion(promptId: string, versionId: string, request?: RestorePromptVersionRequest, requestOptions?: PromptsClient.RequestOptions): HttpResponsePromise<PromptVersionDetail>;
|
|
11593
11593
|
private __restorePromptVersion;
|
|
11594
11594
|
/**
|
|
11595
|
-
* Retrieve prompt version
|
|
11595
|
+
* Retrieve prompt version. When project_name is supplied the lookup is scoped to that project: a prompt belonging to a different project is never matched, and an unknown project name returns 404. Legacy prompts with no project are still resolved as a deprecated fallback, signalled by the X-Opik-Deprecation response header.
|
|
11596
11596
|
*
|
|
11597
11597
|
* @param {OpikApi.PromptVersionRetrieveDetail} request
|
|
11598
11598
|
* @param {PromptsClient.RequestOptions} requestOptions - Request-specific configuration.
|
package/dist/index.d.ts
CHANGED
|
@@ -2281,7 +2281,7 @@ interface PromptVersionRetrieveDetail {
|
|
|
2281
2281
|
environment?: string;
|
|
2282
2282
|
/** If provided, resolves to the version with this sequential number (e.g. v3); mutually exclusive with commit and environment */
|
|
2283
2283
|
versionNumber?: string;
|
|
2284
|
-
/** If provided, scopes the search to the specified project */
|
|
2284
|
+
/** If provided, scopes the search to the specified project; prompts belonging to other projects are never matched, and an unknown project name returns 404. Legacy prompts that are not scoped to any project are still matched as a deprecated fallback, signalled by the X-Opik-Deprecation response header. */
|
|
2285
2285
|
projectName?: string;
|
|
2286
2286
|
}
|
|
2287
2287
|
|
|
@@ -11592,7 +11592,7 @@ declare class PromptsClient {
|
|
|
11592
11592
|
restorePromptVersion(promptId: string, versionId: string, request?: RestorePromptVersionRequest, requestOptions?: PromptsClient.RequestOptions): HttpResponsePromise<PromptVersionDetail>;
|
|
11593
11593
|
private __restorePromptVersion;
|
|
11594
11594
|
/**
|
|
11595
|
-
* Retrieve prompt version
|
|
11595
|
+
* Retrieve prompt version. When project_name is supplied the lookup is scoped to that project: a prompt belonging to a different project is never matched, and an unknown project name returns 404. Legacy prompts with no project are still resolved as a deprecated fallback, signalled by the X-Opik-Deprecation response header.
|
|
11596
11596
|
*
|
|
11597
11597
|
* @param {OpikApi.PromptVersionRetrieveDetail} request
|
|
11598
11598
|
* @param {PromptsClient.RequestOptions} requestOptions - Request-specific configuration.
|