@produce8/analytics-openapi-types 1.0.0-dev.20251229172408 → 1.0.0-dev.20251230165312

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/openapi-types.ts CHANGED
@@ -435,6 +435,36 @@ export interface components {
435
435
  */
436
436
  deletedAt?: string | null;
437
437
  };
438
+ CatalogApplicationDto: {
439
+ /**
440
+ * Format: uuid
441
+ * @description Catalog application ID
442
+ */
443
+ id: string;
444
+ /** @description Catalog application name */
445
+ name: string;
446
+ /** @description Catalog application logo URL */
447
+ logoUrl: string;
448
+ /** @description Catalog application display color */
449
+ displayColor: string;
450
+ /** @description Catalog application logo background color */
451
+ logoBackgroundColor: string;
452
+ /**
453
+ * Format: date-time
454
+ * @description Creation timestamp
455
+ */
456
+ createdAt: string;
457
+ /**
458
+ * Format: date-time
459
+ * @description Last update timestamp
460
+ */
461
+ updatedAt: string;
462
+ /**
463
+ * Format: date-time
464
+ * @description Deletion timestamp
465
+ */
466
+ deletedAt?: string | null;
467
+ };
438
468
  AppDto: {
439
469
  /**
440
470
  * Format: uuid
@@ -443,6 +473,10 @@ export interface components {
443
473
  id: string;
444
474
  /** @description App name */
445
475
  appCategoryId: string;
476
+ /** @description Catalog application ID */
477
+ catalogApplicationId: string;
478
+ /** @description App name */
479
+ name: string;
446
480
  /** @description App display color */
447
481
  displayColor: string;
448
482
  /** @description App logo URL */
@@ -456,6 +490,8 @@ export interface components {
456
490
  status: "ACTIVE" | "PENDING" | "INACTIVE";
457
491
  /** @description App category information */
458
492
  appCategory: components["schemas"]["AppCategoryDto"];
493
+ /** @description Catalog application information */
494
+ catalogApplication: components["schemas"]["CatalogApplicationDto"];
459
495
  /**
460
496
  * Format: date-time
461
497
  * @description Creation timestamp
@@ -529,7 +565,6 @@ export interface components {
529
565
  /** @description Highlights data */
530
566
  data: components["schemas"]["AppUsageMetricsHighlightsDataDto"];
531
567
  };
532
- CatalogApplicationDto: Record<string, never>;
533
568
  };
534
569
  responses: never;
535
570
  parameters: never;
package/openapi.json CHANGED
@@ -1426,6 +1426,57 @@
1426
1426
  "updatedAt"
1427
1427
  ]
1428
1428
  },
1429
+ "CatalogApplicationDto": {
1430
+ "type": "object",
1431
+ "properties": {
1432
+ "id": {
1433
+ "type": "string",
1434
+ "format": "uuid",
1435
+ "description": "Catalog application ID"
1436
+ },
1437
+ "name": {
1438
+ "type": "string",
1439
+ "description": "Catalog application name"
1440
+ },
1441
+ "logoUrl": {
1442
+ "type": "string",
1443
+ "description": "Catalog application logo URL"
1444
+ },
1445
+ "displayColor": {
1446
+ "type": "string",
1447
+ "description": "Catalog application display color"
1448
+ },
1449
+ "logoBackgroundColor": {
1450
+ "type": "string",
1451
+ "description": "Catalog application logo background color"
1452
+ },
1453
+ "createdAt": {
1454
+ "type": "string",
1455
+ "format": "date-time",
1456
+ "description": "Creation timestamp"
1457
+ },
1458
+ "updatedAt": {
1459
+ "type": "string",
1460
+ "format": "date-time",
1461
+ "description": "Last update timestamp"
1462
+ },
1463
+ "deletedAt": {
1464
+ "type": "string",
1465
+ "format": "date-time",
1466
+ "nullable": true,
1467
+ "description": "Deletion timestamp"
1468
+ }
1469
+ },
1470
+ "required": [
1471
+ "id",
1472
+ "name",
1473
+ "logoUrl",
1474
+ "displayColor",
1475
+ "logoBackgroundColor",
1476
+ "createdAt",
1477
+ "updatedAt"
1478
+ ]
1479
+ },
1429
1480
  "AppDto": {
1430
1481
  "type": "object",
1431
1482
  "properties": {
@@ -1438,6 +1489,14 @@
1438
1489
  "type": "string",
1439
1490
  "description": "App name"
1440
1491
  },
1492
+ "catalogApplicationId": {
1493
+ "type": "string",
1494
+ "description": "Catalog application ID"
1495
+ },
1496
+ "name": {
1497
+ "type": "string",
1498
+ "description": "App name"
1499
+ },
1441
1500
  "displayColor": {
1442
1501
  "type": "string",
1443
1502
  "description": "App display color"
@@ -1467,6 +1526,14 @@
1467
1526
  }
1468
1527
  ]
1469
1528
  },
1529
+ "catalogApplication": {
1530
+ "description": "Catalog application information",
1531
+ "allOf": [
1532
+ {
1533
+ "$ref": "#/components/schemas/CatalogApplicationDto"
1534
+ }
1535
+ ]
1536
+ },
1470
1537
  "createdAt": {
1471
1538
  "type": "string",
1472
1539
  "format": "date-time",
@@ -1487,11 +1554,14 @@
1487
1554
  "required": [
1488
1555
  "id",
1489
1556
  "appCategoryId",
1557
+ "catalogApplicationId",
1558
+ "name",
1490
1559
  "displayColor",
1491
1560
  "logoUrl",
1492
1561
  "logoBackgroundColor",
1493
1562
  "status",
1494
1563
  "appCategory",
1564
+ "catalogApplication",
1495
1565
  "createdAt",
1496
1566
  "updatedAt"
1497
1567
  ]
@@ -1673,10 +1743,6 @@
1673
1743
  "metricType",
1674
1744
  "data"
1675
1745
  ]
1676
- },
1677
- "CatalogApplicationDto": {
1678
- "type": "object",
1679
- "properties": {}
1680
1746
  }
1681
1747
  }
1682
1748
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@produce8/analytics-openapi-types",
3
- "version": "1.0.0-dev.20251229172408",
3
+ "version": "1.0.0-dev.20251230165312",
4
4
  "description": "TypeScript types generated from Analytics Service OpenAPI specification",
5
5
  "main": "openapi-types.ts",
6
6
  "types": "openapi-types.ts",