@connectedxm/admin 3.4.3 → 3.4.6

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/dist/index.d.cts CHANGED
@@ -393,6 +393,7 @@ interface BaseActivity {
393
393
  id: string;
394
394
  message: string;
395
395
  featured: boolean;
396
+ pinned: boolean;
396
397
  giphyId: string | null;
397
398
  imageId: string | null;
398
399
  image: BaseImage | null;
@@ -2087,8 +2088,8 @@ interface BaseSeries {
2087
2088
  name: string;
2088
2089
  description: string | null;
2089
2090
  longDescription: string | null;
2090
- startDate: string;
2091
- endDate: string;
2091
+ startDate: string | null;
2092
+ endDate: string | null;
2092
2093
  imageId: string | null;
2093
2094
  image: BaseImage | null;
2094
2095
  }
@@ -3879,6 +3880,7 @@ interface ActivityUpdateInputs {
3879
3880
  entities?: ActivityEntityInputs[] | null;
3880
3881
  moderation?: keyof typeof ModerationStatus | null;
3881
3882
  featured?: boolean;
3883
+ pinned?: boolean;
3882
3884
  imageId?: string | null;
3883
3885
  videoId?: string | null;
3884
3886
  createdAt?: string | null;
@@ -4999,8 +5001,8 @@ interface SeriesCreateInputs {
4999
5001
  longDescription?: string | null;
5000
5002
  imageId?: string | null;
5001
5003
  templateId: string;
5002
- startDate: string;
5003
- endDate: string;
5004
+ startDate?: string | null;
5005
+ endDate?: string | null;
5004
5006
  }
5005
5007
  interface SeriesUpdateInputs {
5006
5008
  name?: string | null;
package/dist/index.d.ts CHANGED
@@ -393,6 +393,7 @@ interface BaseActivity {
393
393
  id: string;
394
394
  message: string;
395
395
  featured: boolean;
396
+ pinned: boolean;
396
397
  giphyId: string | null;
397
398
  imageId: string | null;
398
399
  image: BaseImage | null;
@@ -2087,8 +2088,8 @@ interface BaseSeries {
2087
2088
  name: string;
2088
2089
  description: string | null;
2089
2090
  longDescription: string | null;
2090
- startDate: string;
2091
- endDate: string;
2091
+ startDate: string | null;
2092
+ endDate: string | null;
2092
2093
  imageId: string | null;
2093
2094
  image: BaseImage | null;
2094
2095
  }
@@ -3879,6 +3880,7 @@ interface ActivityUpdateInputs {
3879
3880
  entities?: ActivityEntityInputs[] | null;
3880
3881
  moderation?: keyof typeof ModerationStatus | null;
3881
3882
  featured?: boolean;
3883
+ pinned?: boolean;
3882
3884
  imageId?: string | null;
3883
3885
  videoId?: string | null;
3884
3886
  createdAt?: string | null;
@@ -4999,8 +5001,8 @@ interface SeriesCreateInputs {
4999
5001
  longDescription?: string | null;
5000
5002
  imageId?: string | null;
5001
5003
  templateId: string;
5002
- startDate: string;
5003
- endDate: string;
5004
+ startDate?: string | null;
5005
+ endDate?: string | null;
5004
5006
  }
5005
5007
  interface SeriesUpdateInputs {
5006
5008
  name?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "3.4.3",
3
+ "version": "3.4.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",