@connectedxm/admin 6.5.11 → 6.5.13

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.cjs CHANGED
@@ -36260,9 +36260,8 @@ var UpsertLinkPreview = async ({
36260
36260
  const adminApi = await GetAdminAPI(adminApiParams);
36261
36261
  const { data } = await adminApi.put(
36262
36262
  `/organization/link-preview`,
36263
- void 0,
36264
36263
  {
36265
- params: { href }
36264
+ href
36266
36265
  }
36267
36266
  );
36268
36267
  return data;
package/dist/index.d.cts CHANGED
@@ -458,10 +458,11 @@ interface BaseActivity {
458
458
  pinned: boolean;
459
459
  giphyId: string | null;
460
460
  imageId: string | null;
461
- image: BaseImage | null;
461
+ videoId: string | null;
462
462
  account: BaseAccount;
463
463
  entities: BaseActivityEntity[];
464
464
  moderation: keyof typeof ModerationStatus | null;
465
+ meetingId: string | null;
465
466
  eventId: string | null;
466
467
  groupId: string | null;
467
468
  contentId: string | null;
@@ -473,7 +474,9 @@ interface BaseActivity {
473
474
  };
474
475
  }
475
476
  interface Activity extends BaseActivity {
477
+ image: BaseImage | null;
476
478
  video: BaseVideo | null;
479
+ meeting: BaseMeeting | null;
477
480
  group: BaseGroup | null;
478
481
  event: BaseEvent | null;
479
482
  content: BaseChannelContent | null;
@@ -1643,6 +1646,8 @@ interface Organization extends BaseOrganization {
1643
1646
  meetingLivestreamAdminPreset: string;
1644
1647
  meetingLivestreamGuestPreset: string;
1645
1648
  options: object | null;
1649
+ autoResolveSupportTickets: boolean;
1650
+ autoResolveSupportTicketMessage: string | null;
1646
1651
  }
1647
1652
  interface OrganizationTrigger {
1648
1653
  id: number;
@@ -2570,6 +2575,10 @@ interface BaseMeeting {
2570
2575
  type: MeetingType;
2571
2576
  }
2572
2577
  interface Meeting extends BaseMeeting {
2578
+ event?: BaseEvent;
2579
+ session?: BaseEventSession;
2580
+ group?: BaseGroup;
2581
+ activity?: BaseActivity;
2573
2582
  updated_at: string;
2574
2583
  created_at: string;
2575
2584
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
@@ -2578,12 +2587,6 @@ interface Meeting extends BaseMeeting {
2578
2587
  live_stream_on_start: boolean;
2579
2588
  persist_chat: boolean;
2580
2589
  summarize_on_end: boolean;
2581
- eventId?: string;
2582
- event?: BaseEvent;
2583
- sessionId?: string;
2584
- session?: BaseEventSession;
2585
- groupId?: string;
2586
- group?: BaseGroup;
2587
2590
  "ai_config.transcription.keywords": string[];
2588
2591
  "ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
2589
2592
  "ai_config.transcription.profanity_filter": boolean;
@@ -4389,6 +4392,7 @@ interface ActivityCreateInputs {
4389
4392
  groupId?: string | null;
4390
4393
  contentId?: string | null;
4391
4394
  commentedId?: string | null;
4395
+ meetingId?: string | null;
4392
4396
  createdAt?: string | null;
4393
4397
  }
4394
4398
  interface ActivityUpdateInputs {
@@ -4400,6 +4404,7 @@ interface ActivityUpdateInputs {
4400
4404
  pinned?: boolean;
4401
4405
  imageId?: string | null;
4402
4406
  videoId?: string | null;
4407
+ meetingId?: string | null;
4403
4408
  createdAt?: string | null;
4404
4409
  }
4405
4410
  interface AdvertisementCreateInputs {
@@ -5428,6 +5433,8 @@ interface OrganizationUpdateInputs {
5428
5433
  meetingLivestreamAdminPreset?: string;
5429
5434
  meetingLivestreamGuestPreset?: string;
5430
5435
  options?: object | null;
5436
+ autoResolveSupportTickets?: boolean;
5437
+ autoResolveSupportTicketMessage?: string | null;
5431
5438
  }
5432
5439
  interface PaymentIntentPurchaseMetadataInputs {
5433
5440
  }
@@ -6443,6 +6450,7 @@ interface MeetingCreateInputs {
6443
6450
  eventId?: string;
6444
6451
  sessionId?: string;
6445
6452
  groupId?: string;
6453
+ activityId?: string;
6446
6454
  title: string | null;
6447
6455
  preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6448
6456
  record_on_start: boolean;
@@ -6461,6 +6469,7 @@ interface MeetingUpdateInputs {
6461
6469
  eventId?: string;
6462
6470
  sessionId?: string;
6463
6471
  groupId?: string;
6472
+ activityId?: string;
6464
6473
  title?: string | null;
6465
6474
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6466
6475
  record_on_start?: boolean;
package/dist/index.d.ts CHANGED
@@ -458,10 +458,11 @@ interface BaseActivity {
458
458
  pinned: boolean;
459
459
  giphyId: string | null;
460
460
  imageId: string | null;
461
- image: BaseImage | null;
461
+ videoId: string | null;
462
462
  account: BaseAccount;
463
463
  entities: BaseActivityEntity[];
464
464
  moderation: keyof typeof ModerationStatus | null;
465
+ meetingId: string | null;
465
466
  eventId: string | null;
466
467
  groupId: string | null;
467
468
  contentId: string | null;
@@ -473,7 +474,9 @@ interface BaseActivity {
473
474
  };
474
475
  }
475
476
  interface Activity extends BaseActivity {
477
+ image: BaseImage | null;
476
478
  video: BaseVideo | null;
479
+ meeting: BaseMeeting | null;
477
480
  group: BaseGroup | null;
478
481
  event: BaseEvent | null;
479
482
  content: BaseChannelContent | null;
@@ -1643,6 +1646,8 @@ interface Organization extends BaseOrganization {
1643
1646
  meetingLivestreamAdminPreset: string;
1644
1647
  meetingLivestreamGuestPreset: string;
1645
1648
  options: object | null;
1649
+ autoResolveSupportTickets: boolean;
1650
+ autoResolveSupportTicketMessage: string | null;
1646
1651
  }
1647
1652
  interface OrganizationTrigger {
1648
1653
  id: number;
@@ -2570,6 +2575,10 @@ interface BaseMeeting {
2570
2575
  type: MeetingType;
2571
2576
  }
2572
2577
  interface Meeting extends BaseMeeting {
2578
+ event?: BaseEvent;
2579
+ session?: BaseEventSession;
2580
+ group?: BaseGroup;
2581
+ activity?: BaseActivity;
2573
2582
  updated_at: string;
2574
2583
  created_at: string;
2575
2584
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
@@ -2578,12 +2587,6 @@ interface Meeting extends BaseMeeting {
2578
2587
  live_stream_on_start: boolean;
2579
2588
  persist_chat: boolean;
2580
2589
  summarize_on_end: boolean;
2581
- eventId?: string;
2582
- event?: BaseEvent;
2583
- sessionId?: string;
2584
- session?: BaseEventSession;
2585
- groupId?: string;
2586
- group?: BaseGroup;
2587
2590
  "ai_config.transcription.keywords": string[];
2588
2591
  "ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
2589
2592
  "ai_config.transcription.profanity_filter": boolean;
@@ -4389,6 +4392,7 @@ interface ActivityCreateInputs {
4389
4392
  groupId?: string | null;
4390
4393
  contentId?: string | null;
4391
4394
  commentedId?: string | null;
4395
+ meetingId?: string | null;
4392
4396
  createdAt?: string | null;
4393
4397
  }
4394
4398
  interface ActivityUpdateInputs {
@@ -4400,6 +4404,7 @@ interface ActivityUpdateInputs {
4400
4404
  pinned?: boolean;
4401
4405
  imageId?: string | null;
4402
4406
  videoId?: string | null;
4407
+ meetingId?: string | null;
4403
4408
  createdAt?: string | null;
4404
4409
  }
4405
4410
  interface AdvertisementCreateInputs {
@@ -5428,6 +5433,8 @@ interface OrganizationUpdateInputs {
5428
5433
  meetingLivestreamAdminPreset?: string;
5429
5434
  meetingLivestreamGuestPreset?: string;
5430
5435
  options?: object | null;
5436
+ autoResolveSupportTickets?: boolean;
5437
+ autoResolveSupportTicketMessage?: string | null;
5431
5438
  }
5432
5439
  interface PaymentIntentPurchaseMetadataInputs {
5433
5440
  }
@@ -6443,6 +6450,7 @@ interface MeetingCreateInputs {
6443
6450
  eventId?: string;
6444
6451
  sessionId?: string;
6445
6452
  groupId?: string;
6453
+ activityId?: string;
6446
6454
  title: string | null;
6447
6455
  preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6448
6456
  record_on_start: boolean;
@@ -6461,6 +6469,7 @@ interface MeetingUpdateInputs {
6461
6469
  eventId?: string;
6462
6470
  sessionId?: string;
6463
6471
  groupId?: string;
6472
+ activityId?: string;
6464
6473
  title?: string | null;
6465
6474
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
6466
6475
  record_on_start?: boolean;
package/dist/index.js CHANGED
@@ -33009,9 +33009,8 @@ var UpsertLinkPreview = async ({
33009
33009
  const adminApi = await GetAdminAPI(adminApiParams);
33010
33010
  const { data } = await adminApi.put(
33011
33011
  `/organization/link-preview`,
33012
- void 0,
33013
33012
  {
33014
- params: { href }
33013
+ href
33015
33014
  }
33016
33015
  );
33017
33016
  return data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.5.11",
3
+ "version": "6.5.13",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",