opticedge-types 1.0.40 → 1.0.41

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.
@@ -1,2 +1,2 @@
1
1
  import { CardGradingType } from '../enums/card';
2
- export declare const SERVICE_ELIGIBLE_GRADING_TYPES: readonly [CardGradingType.COLLECTION, CardGradingType.INSTANT];
2
+ export declare const SERVICE_ELIGIBLE_GRADING_TYPES: CardGradingType[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  import { CardGradingType } from '../enums/card'
2
2
 
3
- export const SERVICE_ELIGIBLE_GRADING_TYPES = [
3
+ export const SERVICE_ELIGIBLE_GRADING_TYPES: CardGradingType[] = [
4
4
  CardGradingType.COLLECTION,
5
5
  CardGradingType.INSTANT
6
- ] as const
6
+ ]