@agravity/private 10.3.0 → 10.3.1

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/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @agravity/private@10.3.0
1
+ # @agravity/private@10.3.1
2
2
 
3
3
  <p>Agravity is a powerful, enterprise-grade Headless Digital Asset Management (DAM) system designed for organizations that need complete control over how they manage, organize, and distribute their digital assets.</p> <h2>Key Features</h2> <ul> <li>Asset Management - Upload, organize, and manage all types of digital assets (images, videos, documents, etc.)</li> <li>Collections &amp; Hierarchies - Create flexible folder structures and collection types with customizable metadata</li> <li>Advanced Search - Powered by Azure Cognitive Search with AI-enhanced capabilities for intelligent discovery</li> <li>AI Integration - Leverage AI to automatically generate metadata, tags, and descriptions for your assets</li> <li>Versioning - Track and restore previous versions of your assets with complete version history</li> <li>Publishing &amp; Distribution - Publish assets to various channels including Vimeo, CDN, and custom portals</li> <li>Portal System - Create public-facing portals with granular permission controls and custom branding</li> <li>Download Formats - Define custom download formats with image transformations and optimizations</li> <li>Collaboration Features - Share collections, create quick shares, and manage team access with role-based permissions</li> <li>Multi-Language Support - Full translation capabilities for all metadata and UI elements</li> <li>API-First Architecture - Complete REST API for seamless integration with your applications</li> </ul> <h2>Headless DAM Benefits</h2> <p>As a headless DAM solution, Agravity separates content management from presentation. This means:</p> <ul> <li>Flexibility - Use the same assets across multiple channels and applications without duplication</li> <li>API-Driven - Access all functionality through powerful REST APIs for custom integrations</li> <li>Framework Agnostic - Integrate with any frontend framework or technology stack</li> <li>Scalability - Built on cloud-native architecture with Azure infrastructure for unlimited growth</li> <li>Multi-Channel Distribution - Publish to web, mobile, social media, and custom portals from a single source</li> </ul> <h2>Core Entities</h2> <p><strong>Assets</strong> - Your digital content (images, videos, documents). Each asset can have multiple versions, metadata, and be published to various targets.</p> <p><strong>Collections</strong> - Logical groupings of assets organized hierarchically. Support custom metadata through collection types.</p> <p><strong>Collection Types</strong> - Define the structure and metadata fields for collections, similar to database schemas.</p> <p><strong>Workspaces</strong> - Organize collection types into workspaces for multi-project management.</p> <p><strong>Download Formats</strong> - Define transformations and optimizations for assets when downloaded.</p> <p><strong>Portals</strong> - Public-facing interfaces for sharing collections with external stakeholders.</p> <h2>API Endpoints Overview</h2> <p><strong>Asset Management</strong> - Create, read, update, delete, and search assets with full metadata support</p> <p><strong>Collection Management</strong> - Organize assets into collections with hierarchical structures</p> <p><strong>AI Operations</strong> - Automatically generate asset metadata using AI-powered field generation</p> <p><strong>Publishing</strong> - Publish assets to Vimeo, CDN, or custom publishing targets</p> <p><strong>Search &amp; Discovery</strong> - Full-text search with advanced filtering and AI-enhanced similarity search</p> <p><strong>User &amp; Portal Management</strong> - Control access through roles, profiles, and custom portals</p> <p><strong>Content Distribution</strong> - Share collections, create download packages, and generate secure links</p> <h2>Security &amp; Permissions</h2> <ul> <li>OAuth 2.0 authentication with Azure AD integration</li> <li>Role-based access control (RBAC) with custom profiles</li> <li>Entity-level permissions for granular control</li> <li>API key authentication for service-to-service communication</li> <li>Secure sharing with password-protected links and expiration dates</li> </ul> <h2>Use Cases</h2> <ul> <li>E-commerce product image management and distribution</li> <li>Marketing asset management across multiple channels</li> <li>Brand asset library and governance</li> <li>Video content management and publishing</li> <li>Enterprise document management with searchability</li> <li>Multi-tenant content management for agencies</li> <li>AI-powered metadata generation at scale</li> </ul> <h2>Support</h2> <p>For questions or support, contact <a href=\"mailto:support@agravity.io\">support@agravity.io</a> or visit <a href=\"https://agravity.io\">https://agravity.io</a>.</p> < p>Agravity © 2026 - Enterprise Headless Digital Asset Management</p>
4
4
 
5
- The version of the OpenAPI document: 10.3.0
5
+ The version of the OpenAPI document: 10.3.1
6
6
 
7
7
  ## Building
8
8
 
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
24
24
  _published:_
25
25
 
26
26
  ```console
27
- npm install @agravity/private@10.3.0 --save
27
+ npm install @agravity/private@10.3.1 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -54,7 +54,7 @@ export interface HttpAssetBulkCheckoutToggleRequestParams {
54
54
  /** The list of asset IDs to checkout or checkin. */
55
55
  assetBulkCheckoutBody: AssetBulkCheckoutBody;
56
56
  /** Optional action for synced assets when FileShare MD5 metadata is missing. Allowed: keep, overwrite. If the synced FileShare file is missing, only overwrite is allowed. */
57
- fsMissingMd5Action?: string;
57
+ fsMissingETagAction?: string;
58
58
  }
59
59
 
60
60
  export interface HttpAssetCheckoutToggleRequestParams {
@@ -63,7 +63,7 @@ export interface HttpAssetCheckoutToggleRequestParams {
63
63
  /** Set to \&#39;true\&#39; to checkout the asset, \&#39;false\&#39; to checkin the asset. */
64
64
  checkout: boolean;
65
65
  /** Optional action for synced assets when FileShare MD5 metadata is missing. Allowed: keep, overwrite. If the synced FileShare file is missing, only overwrite is allowed. */
66
- fsMissingMd5Action?: string;
66
+ fsMissingETagAction?: string;
67
67
  }
68
68
 
69
69
  export interface HttpAssetImageEditRequestParams {
@@ -299,11 +299,11 @@ export class AssetOperationsService extends BaseService {
299
299
  if (assetBulkCheckoutBody === null || assetBulkCheckoutBody === undefined) {
300
300
  throw new Error('Required parameter assetBulkCheckoutBody was null or undefined when calling httpAssetBulkCheckoutToggle.');
301
301
  }
302
- const fsMissingMd5Action = requestParameters?.fsMissingMd5Action;
302
+ const fsMissingETagAction = requestParameters?.fsMissingETagAction;
303
303
 
304
304
  let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
305
305
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>checkout, 'checkout');
306
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>fsMissingMd5Action, 'fsMissingMd5Action');
306
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>fsMissingETagAction, 'fsMissingETagAction');
307
307
 
308
308
  let localVarHeaders = this.defaultHeaders;
309
309
 
@@ -390,11 +390,11 @@ export class AssetOperationsService extends BaseService {
390
390
  if (checkout === null || checkout === undefined) {
391
391
  throw new Error('Required parameter checkout was null or undefined when calling httpAssetCheckoutToggle.');
392
392
  }
393
- const fsMissingMd5Action = requestParameters?.fsMissingMd5Action;
393
+ const fsMissingETagAction = requestParameters?.fsMissingETagAction;
394
394
 
395
395
  let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
396
396
  localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>checkout, 'checkout');
397
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>fsMissingMd5Action, 'fsMissingMd5Action');
397
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, <any>fsMissingETagAction, 'fsMissingETagAction');
398
398
 
399
399
  let localVarHeaders = this.defaultHeaders;
400
400
 
@@ -28,7 +28,7 @@ export interface Asset {
28
28
  available_from?: string | null;
29
29
  available_to?: string | null;
30
30
  checkout?: AssetCheckout | null;
31
- fs_synced?: boolean | null;
31
+ fs_synced?: string | null;
32
32
  custom?: any | null;
33
33
  items?: Array<CollTypeItem> | null;
34
34
  translations?: { [key: string]: { [key: string]: any } } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agravity/private",
3
- "version": "10.3.0",
3
+ "version": "10.3.1",
4
4
  "description": "The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend",
5
5
  "author": "Philipp Losbichler",
6
6
  "repository": {