@botpress/api 0.12.2 → 0.12.3
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/gen/state.d.ts +35 -0
- package/dist/index.js +37 -2
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +36 -1
package/dist/gen/state.d.ts
CHANGED
|
@@ -706,6 +706,14 @@ export declare const state: {
|
|
|
706
706
|
type: "string";
|
|
707
707
|
description: string;
|
|
708
708
|
};
|
|
709
|
+
name: {
|
|
710
|
+
type: "string";
|
|
711
|
+
description: string;
|
|
712
|
+
};
|
|
713
|
+
pictureUrl: {
|
|
714
|
+
type: "string";
|
|
715
|
+
description: string;
|
|
716
|
+
};
|
|
709
717
|
};
|
|
710
718
|
required: string[];
|
|
711
719
|
title: string;
|
|
@@ -837,6 +845,14 @@ export declare const state: {
|
|
|
837
845
|
type: "string";
|
|
838
846
|
description: string;
|
|
839
847
|
};
|
|
848
|
+
name: {
|
|
849
|
+
type: "string";
|
|
850
|
+
description: string;
|
|
851
|
+
};
|
|
852
|
+
pictureUrl: {
|
|
853
|
+
type: "string";
|
|
854
|
+
description: string;
|
|
855
|
+
};
|
|
840
856
|
};
|
|
841
857
|
required: string[];
|
|
842
858
|
title: string;
|
|
@@ -881,9 +897,20 @@ export declare const state: {
|
|
|
881
897
|
type: "object";
|
|
882
898
|
additionalProperties: {
|
|
883
899
|
type: "string";
|
|
900
|
+
maxLength: number;
|
|
884
901
|
};
|
|
885
902
|
description: string;
|
|
886
903
|
};
|
|
904
|
+
name: {
|
|
905
|
+
type: "string";
|
|
906
|
+
nullable: true;
|
|
907
|
+
description: string;
|
|
908
|
+
};
|
|
909
|
+
pictureUrl: {
|
|
910
|
+
type: "string";
|
|
911
|
+
nullable: true;
|
|
912
|
+
description: string;
|
|
913
|
+
};
|
|
887
914
|
};
|
|
888
915
|
required: string[];
|
|
889
916
|
title: string;
|
|
@@ -5944,6 +5971,14 @@ export declare const state: {
|
|
|
5944
5971
|
};
|
|
5945
5972
|
description: string;
|
|
5946
5973
|
};
|
|
5974
|
+
name: {
|
|
5975
|
+
type: "string";
|
|
5976
|
+
description: string;
|
|
5977
|
+
};
|
|
5978
|
+
pictureUrl: {
|
|
5979
|
+
type: "string";
|
|
5980
|
+
description: string;
|
|
5981
|
+
};
|
|
5947
5982
|
};
|
|
5948
5983
|
required: string[];
|
|
5949
5984
|
description: string;
|
package/dist/index.js
CHANGED
|
@@ -426589,6 +426589,14 @@ var state = {
|
|
|
426589
426589
|
integrationName: {
|
|
426590
426590
|
type: "string",
|
|
426591
426591
|
description: "Name of the integration to which the user creation will be delegated"
|
|
426592
|
+
},
|
|
426593
|
+
name: {
|
|
426594
|
+
type: "string",
|
|
426595
|
+
description: "Name of the user"
|
|
426596
|
+
},
|
|
426597
|
+
pictureUrl: {
|
|
426598
|
+
type: "string",
|
|
426599
|
+
description: "URL of the user picture"
|
|
426592
426600
|
}
|
|
426593
426601
|
},
|
|
426594
426602
|
required: ["tags"],
|
|
@@ -426720,6 +426728,14 @@ var state = {
|
|
|
426720
426728
|
integrationName: {
|
|
426721
426729
|
type: "string",
|
|
426722
426730
|
description: "Name of the integration to which the user creation will be delegated"
|
|
426731
|
+
},
|
|
426732
|
+
name: {
|
|
426733
|
+
type: "string",
|
|
426734
|
+
description: "Name of the user"
|
|
426735
|
+
},
|
|
426736
|
+
pictureUrl: {
|
|
426737
|
+
type: "string",
|
|
426738
|
+
description: "URL of the user picture"
|
|
426723
426739
|
}
|
|
426724
426740
|
},
|
|
426725
426741
|
required: ["tags"],
|
|
@@ -426764,9 +426780,20 @@ var state = {
|
|
|
426764
426780
|
tags: {
|
|
426765
426781
|
type: "object",
|
|
426766
426782
|
additionalProperties: {
|
|
426767
|
-
type: "string"
|
|
426783
|
+
type: "string",
|
|
426784
|
+
maxLength: 500
|
|
426768
426785
|
},
|
|
426769
426786
|
description: "Tags for the [User](#schema_user)"
|
|
426787
|
+
},
|
|
426788
|
+
name: {
|
|
426789
|
+
type: "string",
|
|
426790
|
+
nullable: true,
|
|
426791
|
+
description: "Name of the user"
|
|
426792
|
+
},
|
|
426793
|
+
pictureUrl: {
|
|
426794
|
+
type: "string",
|
|
426795
|
+
nullable: true,
|
|
426796
|
+
description: "URL of the user picture"
|
|
426770
426797
|
}
|
|
426771
426798
|
},
|
|
426772
426799
|
required: ["tags"],
|
|
@@ -431011,7 +431038,7 @@ var state = {
|
|
|
431011
431038
|
title: "Botpress API",
|
|
431012
431039
|
description: "API for Botpress Cloud",
|
|
431013
431040
|
server: "https://api.botpress.cloud",
|
|
431014
|
-
version: "0.12.
|
|
431041
|
+
version: "0.12.3",
|
|
431015
431042
|
prefix: "v1"
|
|
431016
431043
|
},
|
|
431017
431044
|
errors: [
|
|
@@ -432237,6 +432264,14 @@ var state = {
|
|
|
432237
432264
|
type: "string"
|
|
432238
432265
|
},
|
|
432239
432266
|
description: "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [User](#schema_user). The set of [Tags](/docs/developers/concepts/tags) available on a [User](#schema_user) is restricted by the list of [Tags](/docs/developers/concepts/tags) defined previously by the [Bot](#schema_bot). Individual keys can be unset by posting an empty value to them."
|
|
432267
|
+
},
|
|
432268
|
+
name: {
|
|
432269
|
+
type: "string",
|
|
432270
|
+
description: "Name of the [User](#schema_user)"
|
|
432271
|
+
},
|
|
432272
|
+
pictureUrl: {
|
|
432273
|
+
type: "string",
|
|
432274
|
+
description: "Picture URL of the [User](#schema_user)"
|
|
432240
432275
|
}
|
|
432241
432276
|
},
|
|
432242
432277
|
required: ["id", "createdAt", "updatedAt", "tags"],
|