@ibiliaze/global-vars 1.68.0 → 1.70.0

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.
@@ -371,6 +371,7 @@ export interface FixtureBase<Id = string, TDate = string> {
371
371
  typeId?: Id;
372
372
  imgSrc?: string;
373
373
  description?: string;
374
+ minimumReaders?: number;
374
375
  active?: boolean;
375
376
  sectionsCategory?: Record<string, SectionsCategoryBase<Id>>;
376
377
  createdAt?: TDate;
@@ -773,8 +774,8 @@ export interface TicketBase<Id = string, TDate = string> {
773
774
  createdAt?: TDate;
774
775
  updatedAt?: TDate;
775
776
  }
776
- export type TicketTacsMeshBase = {
777
- flags?: FlagType[];
777
+ export type TicketTacsMeshBase<TDate = string> = {
778
+ flags?: FlagBase<TDate>[];
778
779
  ticketCode: string;
779
780
  updatedAt: number;
780
781
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiliaze/global-vars",
3
- "version": "1.68.0",
3
+ "version": "1.70.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -21,7 +21,7 @@
21
21
  "scripts": {
22
22
  "build": "tsc",
23
23
  "pub": "npm publish --access public",
24
- "git": "git add .; git commit -m 'changes'; git tag -a v1.68.0 -m 'v1.68.0'; git push origin v1.68.0; git push",
24
+ "git": "git add .; git commit -m 'changes'; git tag -a v1.70.0 -m 'v1.70.0'; git push origin v1.70.0; git push",
25
25
  "push": "npm run build; npm run git; npm run pub"
26
26
  },
27
27
  "author": "Ibi Hasanli",