@connectedxm/client 7.2.3 → 7.2.5

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.ts CHANGED
@@ -224,6 +224,7 @@ interface BaseSelf {
224
224
  needsProfileCompletion: boolean;
225
225
  internalRefId: string | null;
226
226
  locale: string;
227
+ tierIds: string[];
227
228
  }
228
229
  interface Self extends Omit<Account, "_count"> {
229
230
  email: string | null;
@@ -3363,12 +3364,13 @@ interface CreateSupportTicketParams extends MutationParams {
3363
3364
  type: string;
3364
3365
  request: string;
3365
3366
  eventId?: string | null;
3367
+ firstMessage?: string | null;
3366
3368
  }
3367
3369
  /**
3368
3370
  * @category Methods
3369
3371
  * @group SupportTickets
3370
3372
  */
3371
- declare const CreateSupportTicket: ({ type, request, eventId, clientApiParams, queryClient, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
3373
+ declare const CreateSupportTicket: ({ type, request, eventId, firstMessage, clientApiParams, queryClient, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
3372
3374
  /**
3373
3375
  * @category Mutations
3374
3376
  * @group SupportTickets
package/dist/index.js CHANGED
@@ -10859,6 +10859,7 @@ var CreateSupportTicket = async ({
10859
10859
  type,
10860
10860
  request,
10861
10861
  eventId,
10862
+ firstMessage,
10862
10863
  clientApiParams,
10863
10864
  queryClient
10864
10865
  }) => {
@@ -10868,7 +10869,8 @@ var CreateSupportTicket = async ({
10868
10869
  {
10869
10870
  type,
10870
10871
  request,
10871
- ...eventId !== void 0 && eventId !== null && { eventId }
10872
+ ...eventId !== void 0 && eventId !== null && { eventId },
10873
+ ...firstMessage !== void 0 && firstMessage !== null && { firstMessage }
10872
10874
  }
10873
10875
  );
10874
10876
  if (queryClient && data.status === "ok") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.2.3",
3
+ "version": "7.2.5",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",