@connectedxm/admin 6.5.7 → 6.5.9
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1870,6 +1870,7 @@ interface BasePaymentIntegration {
|
|
|
1870
1870
|
}
|
|
1871
1871
|
interface PaymentIntegration extends BasePaymentIntegration {
|
|
1872
1872
|
connectionId: string;
|
|
1873
|
+
merchantAccountId: string | null;
|
|
1873
1874
|
enabled: boolean;
|
|
1874
1875
|
createdAt: string;
|
|
1875
1876
|
updatedAt: string;
|
|
@@ -5606,14 +5607,13 @@ interface StreamOutputCreateInputs {
|
|
|
5606
5607
|
}
|
|
5607
5608
|
interface SupportTicketCreateInputs {
|
|
5608
5609
|
type: SupportTicketType;
|
|
5609
|
-
subject: string;
|
|
5610
5610
|
request?: string;
|
|
5611
5611
|
eventId?: string | null;
|
|
5612
5612
|
accountId?: string | null;
|
|
5613
|
+
firstMessage?: string | null;
|
|
5613
5614
|
}
|
|
5614
5615
|
interface SupportTicketUpdateInputs {
|
|
5615
5616
|
type?: SupportTicketType;
|
|
5616
|
-
subject?: string;
|
|
5617
5617
|
request?: string;
|
|
5618
5618
|
state?: SupportTicketState;
|
|
5619
5619
|
accountId?: string | null;
|
|
@@ -6707,6 +6707,7 @@ interface OrganizationPaymentIntegrationCreateInputs {
|
|
|
6707
6707
|
name: string;
|
|
6708
6708
|
currencyCode: string;
|
|
6709
6709
|
clientId?: string;
|
|
6710
|
+
merchantAccountId?: string;
|
|
6710
6711
|
clientPublicKey?: string;
|
|
6711
6712
|
clientSecret?: string;
|
|
6712
6713
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1870,6 +1870,7 @@ interface BasePaymentIntegration {
|
|
|
1870
1870
|
}
|
|
1871
1871
|
interface PaymentIntegration extends BasePaymentIntegration {
|
|
1872
1872
|
connectionId: string;
|
|
1873
|
+
merchantAccountId: string | null;
|
|
1873
1874
|
enabled: boolean;
|
|
1874
1875
|
createdAt: string;
|
|
1875
1876
|
updatedAt: string;
|
|
@@ -5606,14 +5607,13 @@ interface StreamOutputCreateInputs {
|
|
|
5606
5607
|
}
|
|
5607
5608
|
interface SupportTicketCreateInputs {
|
|
5608
5609
|
type: SupportTicketType;
|
|
5609
|
-
subject: string;
|
|
5610
5610
|
request?: string;
|
|
5611
5611
|
eventId?: string | null;
|
|
5612
5612
|
accountId?: string | null;
|
|
5613
|
+
firstMessage?: string | null;
|
|
5613
5614
|
}
|
|
5614
5615
|
interface SupportTicketUpdateInputs {
|
|
5615
5616
|
type?: SupportTicketType;
|
|
5616
|
-
subject?: string;
|
|
5617
5617
|
request?: string;
|
|
5618
5618
|
state?: SupportTicketState;
|
|
5619
5619
|
accountId?: string | null;
|
|
@@ -6707,6 +6707,7 @@ interface OrganizationPaymentIntegrationCreateInputs {
|
|
|
6707
6707
|
name: string;
|
|
6708
6708
|
currencyCode: string;
|
|
6709
6709
|
clientId?: string;
|
|
6710
|
+
merchantAccountId?: string;
|
|
6710
6711
|
clientPublicKey?: string;
|
|
6711
6712
|
clientSecret?: string;
|
|
6712
6713
|
}
|