@botpress/api 0.30.3 → 0.31.0

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.js CHANGED
@@ -270088,9 +270088,18 @@ var state = {
270088
270088
  "paymentStatus": {
270089
270089
  "type": "string",
270090
270090
  "enum": [
270091
+ "deleted",
270092
+ "draft",
270093
+ "open",
270091
270094
  "paid",
270092
- "unpaid"
270093
- ]
270095
+ "uncollectible",
270096
+ "void"
270097
+ ],
270098
+ "nullable": true
270099
+ },
270100
+ "dueDate": {
270101
+ "type": "string",
270102
+ "description": "Date on which the invoice is due."
270094
270103
  },
270095
270104
  "paymentAttemptCount": {
270096
270105
  "type": "number",
@@ -275114,7 +275123,7 @@ var state = {
275114
275123
  "title": "Botpress API",
275115
275124
  "description": "API for Botpress Cloud",
275116
275125
  "server": "https://api.botpress.cloud",
275117
- "version": "0.30.3",
275126
+ "version": "0.31.0",
275118
275127
  "prefix": "v1"
275119
275128
  },
275120
275129
  "errors": [
@@ -4636,6 +4636,11 @@ export declare const state: {
4636
4636
  paymentStatus: {
4637
4637
  type: "string";
4638
4638
  enum: string[];
4639
+ nullable: true;
4640
+ };
4641
+ dueDate: {
4642
+ type: "string";
4643
+ description: string;
4639
4644
  };
4640
4645
  paymentAttemptCount: {
4641
4646
  type: "number";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.30.3",
3
+ "version": "0.31.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {