Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix: Update product component interface (#931)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
  • Loading branch information
petro97 authored May 31, 2024
1 parent c65b2ab commit d584d96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/pcm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export interface PcmJob extends Identifiable, PcmJobBase {
export interface ProductComponents {
[key: string]: {
name: string
min?: number
max?: number
min?: number | null
max?: number | null
sort_order?: number | null
options: ProductComponentOption[]
}
Expand Down

0 comments on commit d584d96

Please sign in to comment.