@hubs101/js-api-skd-client 1.0.10665 → 1.0.10666

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.
@@ -117,7 +117,7 @@ export type FeedType = {
117
117
  events: string;
118
118
  portfolios: string;
119
119
  language: string;
120
- webinar_id?: string;
120
+ webinar_id?: string | null;
121
121
  updated_by?: string;
122
122
  updated_at: string;
123
123
  };
@@ -151,7 +151,7 @@ export type FeedDetailsType = {
151
151
  name: string;
152
152
  }[];
153
153
  language: string;
154
- webinar_id?: string;
154
+ webinar_id?: string | null;
155
155
  updated_by?: string;
156
156
  updated_at: string;
157
157
  };
@@ -178,5 +178,5 @@ export type FeedInputType = {
178
178
  events: string;
179
179
  portfolios: string;
180
180
  language: string;
181
- webinar_id?: string;
181
+ webinar_id?: string | null;
182
182
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10665",
3
+ "version": "1.0.10666",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",