@glissandoo/lib 1.114.0 → 1.114.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.
@@ -4,7 +4,7 @@ import { LanguagesTypes } from '../../lang';
4
4
  import { EventPlayerStatus } from '../Evento/Player/types';
5
5
  import { DocumentModel } from '../Model';
6
6
  import GroupBasic from './basic';
7
- import { AGroupCustomField, AdminPermissions, CustomGroupInstrument, GroupConfigShowAttendanceToMembers, GroupData, GroupStatus, SocialNetwork } from './types';
7
+ import { AGroupCustomField, AGroupInstrument, AdminPermissions, CustomGroupInstrument, GroupConfigShowAttendanceToMembers, GroupData, GroupStatus, SocialNetwork } from './types';
8
8
  export default class Group extends GroupBasic<GroupData> {
9
9
  constructor(doc: DocumentModel, lang?: LanguagesTypes);
10
10
  get owner(): DocumentReference;
@@ -88,11 +88,7 @@ export default class Group extends GroupBasic<GroupData> {
88
88
  get glissandooAdminUrl(): string;
89
89
  get createdOn(): import("../../helpers/types").CreatedOn;
90
90
  get instruments(): import("./types").GroupInstruments;
91
- get instrumentsList(): Pick<(import("./types").DefaultGroupInstrument & {
92
- id: import("../../helpers/instruments").DefaultInstrumentId | `customInstrument-${string}`;
93
- }) | (CustomGroupInstrument & {
94
- id: import("../../helpers/instruments").DefaultInstrumentId | `customInstrument-${string}`;
95
- }), "id">[];
91
+ get instrumentsList(): AGroupInstrument[];
96
92
  get instrumentsIds(): (import("../../helpers/instruments").DefaultInstrumentId | `customInstrument-${string}`)[];
97
93
  get customInstruments(): Record<`customInstrument-${string}`, CustomGroupInstrument>;
98
94
  get customInstrumentsList(): Pick<CustomGroupInstrument & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.114.0",
3
+ "version": "1.114.1",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",