@parra/parra-js-sdk 0.3.232 → 0.3.233
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 +7 -2
- package/dist/ParraAPI.js +1 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2108,7 +2108,8 @@ export declare enum DashboardChecklistItemType {
|
|
|
2108
2108
|
connectAppStoreConnect = "connect_app_store_connect",
|
|
2109
2109
|
setupExternalDomain = "setup_external_domain",
|
|
2110
2110
|
setupEmail = "setup_email",
|
|
2111
|
-
setupSms = "setup_sms"
|
|
2111
|
+
setupSms = "setup_sms",
|
|
2112
|
+
generateProject = "generate_project"
|
|
2112
2113
|
}
|
|
2113
2114
|
export declare enum DashboardChecklistItemStatus {
|
|
2114
2115
|
pending = "pending",
|
|
@@ -2126,6 +2127,7 @@ export interface DashboardChecklistItem {
|
|
|
2126
2127
|
type: DashboardChecklistItemType;
|
|
2127
2128
|
status: DashboardChecklistItemStatus;
|
|
2128
2129
|
external_domain_id?: string | null;
|
|
2130
|
+
application_id?: string | null;
|
|
2129
2131
|
}
|
|
2130
2132
|
export interface CreateApplicationRequestBody {
|
|
2131
2133
|
context?: string | null;
|
|
@@ -2387,6 +2389,9 @@ export interface CreateSendgridConnectedAppConnectionRequestBody {
|
|
|
2387
2389
|
export interface CreateSlackConnectedAppConnectionRequestBody {
|
|
2388
2390
|
code: string;
|
|
2389
2391
|
}
|
|
2392
|
+
export interface CreateYoutubeConnectedAppConnectionRequestBody {
|
|
2393
|
+
code: string;
|
|
2394
|
+
}
|
|
2390
2395
|
export interface CreateTwilioConnectedAppConnectionRequestBody {
|
|
2391
2396
|
account_sid: string;
|
|
2392
2397
|
auth_token: string;
|
|
@@ -2397,7 +2402,7 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
|
2397
2402
|
code: string;
|
|
2398
2403
|
code_verifier: string;
|
|
2399
2404
|
}
|
|
2400
|
-
export type CreateConnectedAppConnectionRequestBody = CreateAppStoreConnectConnectedAppConnectionRequestBody | CreateResendConnectedAppConnectionRequestBody | CreateSendgridConnectedAppConnectionRequestBody | CreateSlackConnectedAppConnectionRequestBody | CreateTwilioConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
2405
|
+
export type CreateConnectedAppConnectionRequestBody = CreateAppStoreConnectConnectedAppConnectionRequestBody | CreateResendConnectedAppConnectionRequestBody | CreateSendgridConnectedAppConnectionRequestBody | CreateSlackConnectedAppConnectionRequestBody | CreateYoutubeConnectedAppConnectionRequestBody | CreateTwilioConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
2401
2406
|
export declare enum IntegrationType {
|
|
2402
2407
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
|
2403
2408
|
slackFeedbackForm = "slack-feedback-form",
|
package/dist/ParraAPI.js
CHANGED
|
@@ -253,6 +253,7 @@ var DashboardChecklistItemType;
|
|
|
253
253
|
DashboardChecklistItemType["setupExternalDomain"] = "setup_external_domain";
|
|
254
254
|
DashboardChecklistItemType["setupEmail"] = "setup_email";
|
|
255
255
|
DashboardChecklistItemType["setupSms"] = "setup_sms";
|
|
256
|
+
DashboardChecklistItemType["generateProject"] = "generate_project";
|
|
256
257
|
})(DashboardChecklistItemType || (exports.DashboardChecklistItemType = DashboardChecklistItemType = {}));
|
|
257
258
|
var DashboardChecklistItemStatus;
|
|
258
259
|
(function (DashboardChecklistItemStatus) {
|