colacloud 1.4.0 → 1.4.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/dist/index.d.mts CHANGED
@@ -257,12 +257,12 @@ interface PermitteeSummary {
257
257
  is_active: boolean;
258
258
  /** Reason for active/inactive status */
259
259
  active_reason: string | null;
260
- /** Total number of COLAs */
261
- colas: number;
262
- /** Number of approved COLAs */
263
- colas_approved: number;
264
- /** Date of most recent COLA application (ISO date string) */
265
- last_cola_application_date: string | null;
260
+ /** Total number of COLAs. Paid plans only (starter/pro). */
261
+ colas?: number;
262
+ /** Number of approved COLAs. Paid plans only (starter/pro). */
263
+ colas_approved?: number;
264
+ /** Date of most recent COLA application (ISO date string). Paid plans only (starter/pro). */
265
+ last_cola_application_date?: string | null;
266
266
  }
267
267
  /**
268
268
  * Full details for a permittee including recent COLAs
package/dist/index.d.ts CHANGED
@@ -257,12 +257,12 @@ interface PermitteeSummary {
257
257
  is_active: boolean;
258
258
  /** Reason for active/inactive status */
259
259
  active_reason: string | null;
260
- /** Total number of COLAs */
261
- colas: number;
262
- /** Number of approved COLAs */
263
- colas_approved: number;
264
- /** Date of most recent COLA application (ISO date string) */
265
- last_cola_application_date: string | null;
260
+ /** Total number of COLAs. Paid plans only (starter/pro). */
261
+ colas?: number;
262
+ /** Number of approved COLAs. Paid plans only (starter/pro). */
263
+ colas_approved?: number;
264
+ /** Date of most recent COLA application (ISO date string). Paid plans only (starter/pro). */
265
+ last_cola_application_date?: string | null;
266
266
  }
267
267
  /**
268
268
  * Full details for a permittee including recent COLAs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colacloud",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Official JavaScript/TypeScript SDK for the COLA Cloud API - access the TTB COLA Registry of alcohol product label approvals",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",