@bigfootai/bigfoot-types 5.4.18 → 5.4.19
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 +1 -7
- package/model.ts +2 -14
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1106,14 +1106,8 @@ type Transcription {
|
|
1106
1106
|
}`;
|
1107
1107
|
exports.ConferenceEntrypointQL = `
|
1108
1108
|
type ConferenceEntrypoint {
|
1109
|
-
|
1110
|
-
uri: String
|
1111
|
-
label: String
|
1112
|
-
pin: String
|
1113
|
-
accessCode: String
|
1109
|
+
url: String
|
1114
1110
|
meetingCode: String
|
1115
|
-
passcode: String
|
1116
|
-
password: String
|
1117
1111
|
}`;
|
1118
1112
|
exports.ConferenceQL = `
|
1119
1113
|
type Conference {${exports.BusinessObjectFields}
|
package/model.ts
CHANGED
@@ -1779,24 +1779,12 @@ export interface Transcription {
|
|
1779
1779
|
|
1780
1780
|
export const ConferenceEntrypointQL = `
|
1781
1781
|
type ConferenceEntrypoint {
|
1782
|
-
|
1783
|
-
uri: String
|
1784
|
-
label: String
|
1785
|
-
pin: String
|
1786
|
-
accessCode: String
|
1782
|
+
url: String
|
1787
1783
|
meetingCode: String
|
1788
|
-
passcode: String
|
1789
|
-
password: String
|
1790
1784
|
}`;
|
1791
1785
|
export interface ConferenceEntrypoint {
|
1792
|
-
|
1793
|
-
uri?: string | null;
|
1794
|
-
label?: string | null;
|
1795
|
-
pin?: string | null;
|
1796
|
-
accessCode?: string | null;
|
1786
|
+
url?: string | null;
|
1797
1787
|
meetingCode?: string | null;
|
1798
|
-
passcode?: string | null;
|
1799
|
-
password?: string | null;
|
1800
1788
|
}
|
1801
1789
|
|
1802
1790
|
export const ConferenceQL = `
|