@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.
Files changed (3) hide show
  1. package/model.js +1 -7
  2. package/model.ts +2 -14
  3. 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
- entryPointType: String!
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
- entryPointType: String!
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
- entryPointType: string;
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 = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.4.18",
4
+ "version": "5.4.19",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",