@tmdjr/backstage-contracts 0.0.15 → 0.0.16

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.
@@ -138,6 +138,7 @@ export interface components {
138
138
  defaultBranch?: string;
139
139
  htmlUrl?: string;
140
140
  languages?: Record<string, never>;
141
+ deviconLanguages?: string[];
141
142
  /** Format: date-time */
142
143
  lastSyncAt?: string;
143
144
  /** @enum {string} */
@@ -155,6 +156,7 @@ export interface components {
155
156
  defaultBranch?: string;
156
157
  htmlUrl?: string;
157
158
  languages?: Record<string, never>;
159
+ deviconLanguages?: string[];
158
160
  /** Format: date-time */
159
161
  lastSyncAt?: string;
160
162
  /** @enum {string} */
@@ -6,6 +6,7 @@ export type ServiceDetailDto = {
6
6
  defaultBranch?: string;
7
7
  htmlUrl?: string;
8
8
  languages?: Record<string, any>;
9
+ deviconLanguages?: Array<string>;
9
10
  lastSyncAt?: string;
10
11
  syncStatus: 'idle' | 'ok' | 'partial' | 'failed' | 'rate_limited';
11
12
  syncError?: string;
@@ -6,6 +6,7 @@ export type ServiceSummaryDto = {
6
6
  defaultBranch?: string;
7
7
  htmlUrl?: string;
8
8
  languages?: Record<string, any>;
9
+ deviconLanguages?: Array<string>;
9
10
  lastSyncAt?: string;
10
11
  syncStatus: 'idle' | 'ok' | 'partial' | 'failed' | 'rate_limited';
11
12
  syncError?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmdjr/backstage-contracts",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Types & runtime enums generated from NGX backstage spec",
5
5
  "license": "MIT",
6
6
  "private": false,