mixpeek 0.81.45 → 0.81.46

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.
@@ -22,7 +22,7 @@ import type { ValidateResult } from '../models';
22
22
  */
23
23
  export declare const ManifestApiAxiosParamCreator: (configuration?: Configuration) => {
24
24
  /**
25
- * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace-Id: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
25
+ * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
26
26
  * @summary Apply Manifest
27
27
  * @param {File} manifestFile YAML manifest file
28
28
  * @param {boolean} [dryRun] Validate only, don\'t create resources
@@ -90,7 +90,7 @@ export declare const ManifestApiAxiosParamCreator: (configuration?: Configuratio
90
90
  */
91
91
  export declare const ManifestApiFp: (configuration?: Configuration) => {
92
92
  /**
93
- * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace-Id: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
93
+ * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
94
94
  * @summary Apply Manifest
95
95
  * @param {File} manifestFile YAML manifest file
96
96
  * @param {boolean} [dryRun] Validate only, don\'t create resources
@@ -158,7 +158,7 @@ export declare const ManifestApiFp: (configuration?: Configuration) => {
158
158
  */
159
159
  export declare const ManifestApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
160
160
  /**
161
- * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace-Id: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
161
+ * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
162
162
  * @summary Apply Manifest
163
163
  * @param {ManifestApiApplyManifestRequest} requestParameters Request parameters.
164
164
  * @param {*} [options] Override http request option.
@@ -349,7 +349,7 @@ export interface ManifestApiValidateManifestRequest {
349
349
  */
350
350
  export declare class ManifestApi extends BaseAPI {
351
351
  /**
352
- * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace-Id: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
352
+ * Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
353
353
  * @summary Apply Manifest
354
354
  * @param {ManifestApiApplyManifestRequest} requestParameters Request parameters.
355
355
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixpeek",
3
- "version": "0.81.45",
3
+ "version": "0.81.46",
4
4
  "description": "Official Mixpeek TypeScript/JavaScript SDK for multimodal data processing and retrieval",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",