@redotech/redo-api-schema 2.2.122 → 2.2.128
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/lib/openapi.d.ts +17 -1
- package/lib/openapi.yaml +16 -1
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -948,12 +948,23 @@ export interface components {
|
|
|
948
948
|
* @default null
|
|
949
949
|
*/
|
|
950
950
|
externalId?: string | null;
|
|
951
|
+
/**
|
|
952
|
+
* Kind
|
|
953
|
+
* @description Kind.
|
|
954
|
+
*/
|
|
955
|
+
kind?: components["schemas"]["webhook-kind.schema"];
|
|
951
956
|
/**
|
|
952
957
|
* Topic
|
|
953
958
|
* @description Topic.
|
|
954
959
|
*/
|
|
955
960
|
topic: components["schemas"]["webhook-topic.schema"];
|
|
956
961
|
};
|
|
962
|
+
/**
|
|
963
|
+
* Webhook kind
|
|
964
|
+
* @description Webhook kind.
|
|
965
|
+
* @enum {string}
|
|
966
|
+
*/
|
|
967
|
+
"webhook-kind.schema": "redo" | "loop";
|
|
957
968
|
/**
|
|
958
969
|
* Webhook read
|
|
959
970
|
* @description Webhook read.
|
|
@@ -981,6 +992,11 @@ export interface components {
|
|
|
981
992
|
* @description Webhook ID.
|
|
982
993
|
*/
|
|
983
994
|
id?: string;
|
|
995
|
+
/**
|
|
996
|
+
* Kind
|
|
997
|
+
* @description Kind.
|
|
998
|
+
*/
|
|
999
|
+
kind?: components["schemas"]["webhook-kind.schema"];
|
|
984
1000
|
/**
|
|
985
1001
|
* Topic
|
|
986
1002
|
* @description Topic.
|
|
@@ -1676,7 +1692,7 @@ export interface operations {
|
|
|
1676
1692
|
requestBody: {
|
|
1677
1693
|
content: {
|
|
1678
1694
|
"application/json": {
|
|
1679
|
-
webhook
|
|
1695
|
+
webhook: components["schemas"]["webhook-update.schema"];
|
|
1680
1696
|
};
|
|
1681
1697
|
};
|
|
1682
1698
|
};
|
package/lib/openapi.yaml
CHANGED
|
@@ -1025,6 +1025,10 @@ components:
|
|
|
1025
1025
|
type:
|
|
1026
1026
|
- string
|
|
1027
1027
|
- 'null'
|
|
1028
|
+
kind:
|
|
1029
|
+
$ref: '#/components/schemas/webhook-kind.schema'
|
|
1030
|
+
description: Kind.
|
|
1031
|
+
title: Kind
|
|
1028
1032
|
topic:
|
|
1029
1033
|
$ref: '#/components/schemas/webhook-topic.schema'
|
|
1030
1034
|
description: Topic.
|
|
@@ -1034,6 +1038,13 @@ components:
|
|
|
1034
1038
|
- topic
|
|
1035
1039
|
title: Webhook create
|
|
1036
1040
|
type: object
|
|
1041
|
+
webhook-kind.schema:
|
|
1042
|
+
description: Webhook kind.
|
|
1043
|
+
enum:
|
|
1044
|
+
- redo
|
|
1045
|
+
- loop
|
|
1046
|
+
title: Webhook kind
|
|
1047
|
+
type: string
|
|
1037
1048
|
webhook-read.schema:
|
|
1038
1049
|
description: Webhook read.
|
|
1039
1050
|
properties:
|
|
@@ -1058,6 +1069,10 @@ components:
|
|
|
1058
1069
|
readonly: true
|
|
1059
1070
|
title: ID
|
|
1060
1071
|
type: string
|
|
1072
|
+
kind:
|
|
1073
|
+
$ref: '#/components/schemas/webhook-kind.schema'
|
|
1074
|
+
description: Kind.
|
|
1075
|
+
title: Kind
|
|
1061
1076
|
topic:
|
|
1062
1077
|
$ref: '#/components/schemas/webhook-topic.schema'
|
|
1063
1078
|
description: Topic.
|
|
@@ -1849,7 +1864,7 @@ paths:
|
|
|
1849
1864
|
webhook:
|
|
1850
1865
|
$ref: '#/components/schemas/webhook-update.schema'
|
|
1851
1866
|
required:
|
|
1852
|
-
-
|
|
1867
|
+
- webhook
|
|
1853
1868
|
type: object
|
|
1854
1869
|
required: true
|
|
1855
1870
|
responses:
|
package/package.json
CHANGED