@parra/parra-js-sdk 0.3.78 → 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.
@@ -1330,7 +1330,7 @@ export interface ConnectedAppConnection {
1330
1330
  type: ConnectedAppType;
1331
1331
  status: ConnectedAppConnectionStatus;
1332
1332
  data?: ConnectedAppConnectionData;
1333
- integration_count: number;
1333
+ integration_count?: number;
1334
1334
  }
1335
1335
  export interface ConnectedAppLink {
1336
1336
  title: string;
@@ -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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.78",
3
+ "version": "0.3.80",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",