@botpress/api 0.30.2 → 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 +47 -3
- package/dist/src/gen/state.d.ts +40 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +47 -3
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
|
-
"
|
|
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",
|
|
@@ -271549,6 +271558,13 @@ var state = {
|
|
|
271549
271558
|
"administrator",
|
|
271550
271559
|
"owner"
|
|
271551
271560
|
]
|
|
271561
|
+
},
|
|
271562
|
+
"profilePicture": {
|
|
271563
|
+
"type": "string"
|
|
271564
|
+
},
|
|
271565
|
+
"displayName": {
|
|
271566
|
+
"type": "string",
|
|
271567
|
+
"maxLength": 100
|
|
271552
271568
|
}
|
|
271553
271569
|
},
|
|
271554
271570
|
"required": [
|
|
@@ -271613,6 +271629,13 @@ var state = {
|
|
|
271613
271629
|
"administrator",
|
|
271614
271630
|
"owner"
|
|
271615
271631
|
]
|
|
271632
|
+
},
|
|
271633
|
+
"profilePicture": {
|
|
271634
|
+
"type": "string"
|
|
271635
|
+
},
|
|
271636
|
+
"displayName": {
|
|
271637
|
+
"type": "string",
|
|
271638
|
+
"maxLength": 100
|
|
271616
271639
|
}
|
|
271617
271640
|
},
|
|
271618
271641
|
"required": [
|
|
@@ -271712,6 +271735,13 @@ var state = {
|
|
|
271712
271735
|
"administrator",
|
|
271713
271736
|
"owner"
|
|
271714
271737
|
]
|
|
271738
|
+
},
|
|
271739
|
+
"profilePicture": {
|
|
271740
|
+
"type": "string"
|
|
271741
|
+
},
|
|
271742
|
+
"displayName": {
|
|
271743
|
+
"type": "string",
|
|
271744
|
+
"maxLength": 100
|
|
271715
271745
|
}
|
|
271716
271746
|
},
|
|
271717
271747
|
"required": [
|
|
@@ -271788,6 +271818,13 @@ var state = {
|
|
|
271788
271818
|
"administrator",
|
|
271789
271819
|
"owner"
|
|
271790
271820
|
]
|
|
271821
|
+
},
|
|
271822
|
+
"profilePicture": {
|
|
271823
|
+
"type": "string"
|
|
271824
|
+
},
|
|
271825
|
+
"displayName": {
|
|
271826
|
+
"type": "string",
|
|
271827
|
+
"maxLength": 100
|
|
271791
271828
|
}
|
|
271792
271829
|
},
|
|
271793
271830
|
"required": [
|
|
@@ -275086,7 +275123,7 @@ var state = {
|
|
|
275086
275123
|
"title": "Botpress API",
|
|
275087
275124
|
"description": "API for Botpress Cloud",
|
|
275088
275125
|
"server": "https://api.botpress.cloud",
|
|
275089
|
-
"version": "0.
|
|
275126
|
+
"version": "0.31.0",
|
|
275090
275127
|
"prefix": "v1"
|
|
275091
275128
|
},
|
|
275092
275129
|
"errors": [
|
|
@@ -276552,6 +276589,13 @@ var state = {
|
|
|
276552
276589
|
"administrator",
|
|
276553
276590
|
"owner"
|
|
276554
276591
|
]
|
|
276592
|
+
},
|
|
276593
|
+
"profilePicture": {
|
|
276594
|
+
"type": "string"
|
|
276595
|
+
},
|
|
276596
|
+
"displayName": {
|
|
276597
|
+
"type": "string",
|
|
276598
|
+
"maxLength": 100
|
|
276555
276599
|
}
|
|
276556
276600
|
},
|
|
276557
276601
|
"required": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -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";
|
|
@@ -5834,6 +5839,13 @@ export declare const state: {
|
|
|
5834
5839
|
type: "string";
|
|
5835
5840
|
enum: string[];
|
|
5836
5841
|
};
|
|
5842
|
+
profilePicture: {
|
|
5843
|
+
type: "string";
|
|
5844
|
+
};
|
|
5845
|
+
displayName: {
|
|
5846
|
+
type: "string";
|
|
5847
|
+
maxLength: number;
|
|
5848
|
+
};
|
|
5837
5849
|
};
|
|
5838
5850
|
required: string[];
|
|
5839
5851
|
};
|
|
@@ -5883,6 +5895,13 @@ export declare const state: {
|
|
|
5883
5895
|
type: "string";
|
|
5884
5896
|
enum: string[];
|
|
5885
5897
|
};
|
|
5898
|
+
profilePicture: {
|
|
5899
|
+
type: "string";
|
|
5900
|
+
};
|
|
5901
|
+
displayName: {
|
|
5902
|
+
type: "string";
|
|
5903
|
+
maxLength: number;
|
|
5904
|
+
};
|
|
5886
5905
|
};
|
|
5887
5906
|
required: string[];
|
|
5888
5907
|
title: string;
|
|
@@ -5960,6 +5979,13 @@ export declare const state: {
|
|
|
5960
5979
|
type: "string";
|
|
5961
5980
|
enum: string[];
|
|
5962
5981
|
};
|
|
5982
|
+
profilePicture: {
|
|
5983
|
+
type: "string";
|
|
5984
|
+
};
|
|
5985
|
+
displayName: {
|
|
5986
|
+
type: "string";
|
|
5987
|
+
maxLength: number;
|
|
5988
|
+
};
|
|
5963
5989
|
};
|
|
5964
5990
|
required: string[];
|
|
5965
5991
|
title: string;
|
|
@@ -6017,6 +6043,13 @@ export declare const state: {
|
|
|
6017
6043
|
type: "string";
|
|
6018
6044
|
enum: string[];
|
|
6019
6045
|
};
|
|
6046
|
+
profilePicture: {
|
|
6047
|
+
type: "string";
|
|
6048
|
+
};
|
|
6049
|
+
displayName: {
|
|
6050
|
+
type: "string";
|
|
6051
|
+
maxLength: number;
|
|
6052
|
+
};
|
|
6020
6053
|
};
|
|
6021
6054
|
required: string[];
|
|
6022
6055
|
title: string;
|
|
@@ -10171,6 +10204,13 @@ export declare const state: {
|
|
|
10171
10204
|
type: "string";
|
|
10172
10205
|
enum: string[];
|
|
10173
10206
|
};
|
|
10207
|
+
profilePicture: {
|
|
10208
|
+
type: "string";
|
|
10209
|
+
};
|
|
10210
|
+
displayName: {
|
|
10211
|
+
type: "string";
|
|
10212
|
+
maxLength: number;
|
|
10213
|
+
};
|
|
10174
10214
|
};
|
|
10175
10215
|
required: string[];
|
|
10176
10216
|
additionalProperties: false;
|