opticedge-types 1.0.48 → 1.0.49

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,3 @@
1
1
  import { CardGradingType } from '../enums/card';
2
- export declare const SERVICE_ELIGIBLE_GRADING_TYPES: CardGradingType[];
2
+ export declare const ON_DEMAND_ELIGIBLE_GRADING_TYPES: CardGradingType[];
3
+ export declare const POST_GRADING_ELIGIBLE_GRADING_TYPES: CardGradingType[];
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SERVICE_ELIGIBLE_GRADING_TYPES = void 0;
3
+ exports.POST_GRADING_ELIGIBLE_GRADING_TYPES = exports.ON_DEMAND_ELIGIBLE_GRADING_TYPES = void 0;
4
4
  const card_1 = require("../enums/card");
5
- exports.SERVICE_ELIGIBLE_GRADING_TYPES = [
5
+ exports.ON_DEMAND_ELIGIBLE_GRADING_TYPES = [
6
6
  card_1.CardGradingType.COLLECTION_2024,
7
7
  card_1.CardGradingType.COLLECTION,
8
8
  card_1.CardGradingType.INSTANT
9
9
  ];
10
+ exports.POST_GRADING_ELIGIBLE_GRADING_TYPES = [
11
+ card_1.CardGradingType.COLLECTION,
12
+ card_1.CardGradingType.INSTANT
13
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,12 @@
1
1
  import { CardGradingType } from '../enums/card'
2
2
 
3
- export const SERVICE_ELIGIBLE_GRADING_TYPES: CardGradingType[] = [
3
+ export const ON_DEMAND_ELIGIBLE_GRADING_TYPES: CardGradingType[] = [
4
4
  CardGradingType.COLLECTION_2024,
5
5
  CardGradingType.COLLECTION,
6
6
  CardGradingType.INSTANT
7
7
  ]
8
+
9
+ export const POST_GRADING_ELIGIBLE_GRADING_TYPES: CardGradingType[] = [
10
+ CardGradingType.COLLECTION,
11
+ CardGradingType.INSTANT
12
+ ]