@parra/parra-js-sdk 0.3.135 → 0.3.137
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/ParraAPI.d.ts +15 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1690,6 +1690,11 @@ export declare enum ConnectedAppConnectionStatus {
|
|
|
1690
1690
|
error = "error",
|
|
1691
1691
|
disabled = "disabled"
|
|
1692
1692
|
}
|
|
1693
|
+
export interface ConnectedAppAppStoreConnectApiConnectionData {
|
|
1694
|
+
issuer: string;
|
|
1695
|
+
key_id: string;
|
|
1696
|
+
private_key: string;
|
|
1697
|
+
}
|
|
1693
1698
|
export interface ConnectedAppSlackConnectionData {
|
|
1694
1699
|
team_name: string;
|
|
1695
1700
|
team_id: string;
|
|
@@ -1700,7 +1705,7 @@ export interface ConnectedAppXConnectionData {
|
|
|
1700
1705
|
handle: string;
|
|
1701
1706
|
name: string;
|
|
1702
1707
|
}
|
|
1703
|
-
export type ConnectedAppConnectionData = ConnectedAppSlackConnectionData | ConnectedAppXConnectionData;
|
|
1708
|
+
export type ConnectedAppConnectionData = ConnectedAppAppStoreConnectApiConnectionData | ConnectedAppSlackConnectionData | ConnectedAppXConnectionData;
|
|
1704
1709
|
export interface ConnectedAppConnection {
|
|
1705
1710
|
id: string;
|
|
1706
1711
|
created_at: string;
|
|
@@ -1740,6 +1745,14 @@ export interface TenantConnectedApp {
|
|
|
1740
1745
|
}
|
|
1741
1746
|
export interface UpdateConnectedAppConnectionRequestBody {
|
|
1742
1747
|
active?: boolean;
|
|
1748
|
+
app_store_connect_api_issuer?: string;
|
|
1749
|
+
app_store_connect_api_key_id?: string;
|
|
1750
|
+
app_store_connect_api_private_key?: string;
|
|
1751
|
+
}
|
|
1752
|
+
export interface CreateAppStoreConnectConnectedAppConnectionRequestBody {
|
|
1753
|
+
issuer: string;
|
|
1754
|
+
key_id: string;
|
|
1755
|
+
private_key: string;
|
|
1743
1756
|
}
|
|
1744
1757
|
export interface CreateSlackConnectedAppConnectionRequestBody {
|
|
1745
1758
|
code: string;
|
|
@@ -1748,7 +1761,7 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
|
1748
1761
|
code: string;
|
|
1749
1762
|
code_verifier: string;
|
|
1750
1763
|
}
|
|
1751
|
-
export type CreateConnectedAppConnectionRequestBody = CreateSlackConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
1764
|
+
export type CreateConnectedAppConnectionRequestBody = CreateAppStoreConnectConnectedAppConnectionRequestBody | CreateSlackConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
1752
1765
|
export declare enum IntegrationType {
|
|
1753
1766
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
|
1754
1767
|
slackFeedbackForm = "slack-feedback-form",
|