@parra/parra-js-sdk 0.3.79 → 0.3.80
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 +3 -1
- package/dist/ParraAPI.js +2 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1370,7 +1370,9 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
|
1370
1370
|
export type CreateConnectedAppConnectionRequestBody = CreateSlackConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
1371
1371
|
export declare enum IntegrationType {
|
|
1372
1372
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
|
1373
|
-
slackFeedbackForm = "slack-feedback-form"
|
|
1373
|
+
slackFeedbackForm = "slack-feedback-form",
|
|
1374
|
+
slackReleaseCollection = "slack-release-collection",
|
|
1375
|
+
xReleaseCollection = "x-release-collection"
|
|
1374
1376
|
}
|
|
1375
1377
|
export declare enum IntegrationConnectionStatus {
|
|
1376
1378
|
pending = "pending",
|
package/dist/ParraAPI.js
CHANGED
|
@@ -182,6 +182,8 @@ var IntegrationType;
|
|
|
182
182
|
(function (IntegrationType) {
|
|
183
183
|
IntegrationType["parraFeedbackFormBoard"] = "parra-feedback-form-board";
|
|
184
184
|
IntegrationType["slackFeedbackForm"] = "slack-feedback-form";
|
|
185
|
+
IntegrationType["slackReleaseCollection"] = "slack-release-collection";
|
|
186
|
+
IntegrationType["xReleaseCollection"] = "x-release-collection";
|
|
185
187
|
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|
|
186
188
|
var IntegrationConnectionStatus;
|
|
187
189
|
(function (IntegrationConnectionStatus) {
|