@bigfootai/bigfoot-types 2.12.4 → 2.12.5
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.
- package/model.js +2 -1
- package/model.ts +3 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -497,7 +497,7 @@ regardless of underpinning system.
|
|
497
497
|
//// CONFERENCE START
|
498
498
|
exports.TranscriptionEntryQL = `
|
499
499
|
type TranscriptionEntry {
|
500
|
-
person:
|
500
|
+
person: PersonReference!
|
501
501
|
text: String!
|
502
502
|
language: String!
|
503
503
|
startDate: Float!
|
@@ -755,6 +755,7 @@ ${exports.ConferenceEntrypointQL}
|
|
755
755
|
${exports.ConferenceQL}
|
756
756
|
${exports.PersonAcceptanceQL}
|
757
757
|
${exports.EventQL}
|
758
|
+
${exports.CalendarQL}
|
758
759
|
${exports.FindArticleInputQL}
|
759
760
|
${exports.FindArticlesInputQL}
|
760
761
|
${exports.FindCalendarInputQL}
|
package/model.ts
CHANGED
@@ -810,14 +810,14 @@ regardless of underpinning system.
|
|
810
810
|
//// CONFERENCE START
|
811
811
|
export const TranscriptionEntryQL = `
|
812
812
|
type TranscriptionEntry {
|
813
|
-
person:
|
813
|
+
person: PersonReference!
|
814
814
|
text: String!
|
815
815
|
language: String!
|
816
816
|
startDate: Float!
|
817
817
|
endDate: Float!
|
818
818
|
}`;
|
819
819
|
export interface TranscriptionEntry {
|
820
|
-
person:
|
820
|
+
person: PersonReference;
|
821
821
|
text: string;
|
822
822
|
language: string;
|
823
823
|
startDate: number;
|
@@ -1442,6 +1442,7 @@ ${ConferenceEntrypointQL}
|
|
1442
1442
|
${ConferenceQL}
|
1443
1443
|
${PersonAcceptanceQL}
|
1444
1444
|
${EventQL}
|
1445
|
+
${CalendarQL}
|
1445
1446
|
${FindArticleInputQL}
|
1446
1447
|
${FindArticlesInputQL}
|
1447
1448
|
${FindCalendarInputQL}
|