@eventcatalog/sdk 2.18.3 → 2.18.4
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.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -128,18 +128,20 @@ interface Query extends BaseSchema {
|
|
|
128
128
|
interface Channel extends BaseSchema {
|
|
129
129
|
address?: string;
|
|
130
130
|
protocols?: string[];
|
|
131
|
+
deliveryGuarantee?: 'at-most-once' | 'at-least-once' | 'exactly-once';
|
|
131
132
|
routes?: ChannelPointer[];
|
|
132
133
|
detailsPanel?: {
|
|
133
134
|
producers?: DetailPanelProperty;
|
|
134
135
|
consumers?: DetailPanelProperty;
|
|
135
136
|
messages?: DetailPanelProperty;
|
|
136
137
|
protocols?: DetailPanelProperty;
|
|
138
|
+
parameters?: DetailPanelProperty;
|
|
137
139
|
versions?: DetailPanelProperty;
|
|
138
140
|
repository?: DetailPanelProperty;
|
|
139
141
|
owners?: DetailPanelProperty;
|
|
140
142
|
changelog?: DetailPanelProperty;
|
|
143
|
+
attachments?: DetailPanelProperty;
|
|
141
144
|
};
|
|
142
|
-
// parameters?: Record<string, Parameter>;
|
|
143
145
|
parameters?: {
|
|
144
146
|
[key: string]: {
|
|
145
147
|
enum?: string[];
|
|
@@ -168,6 +170,7 @@ interface Service extends BaseSchema {
|
|
|
168
170
|
entities?: ResourcePointer[];
|
|
169
171
|
writesTo?: ResourcePointer[];
|
|
170
172
|
readsFrom?: ResourcePointer[];
|
|
173
|
+
flows?: ResourcePointer[];
|
|
171
174
|
specifications?: Specifications | Specification[];
|
|
172
175
|
detailsPanel?: {
|
|
173
176
|
domains?: DetailPanelProperty;
|
|
@@ -186,6 +189,7 @@ interface Domain extends BaseSchema {
|
|
|
186
189
|
domains?: ResourcePointer[];
|
|
187
190
|
entities?: ResourcePointer[];
|
|
188
191
|
dataProducts?: ResourcePointer[];
|
|
192
|
+
flows?: ResourcePointer[];
|
|
189
193
|
sends?: SendsPointer[];
|
|
190
194
|
receives?: ReceivesPointer[];
|
|
191
195
|
detailsPanel?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -128,18 +128,20 @@ interface Query extends BaseSchema {
|
|
|
128
128
|
interface Channel extends BaseSchema {
|
|
129
129
|
address?: string;
|
|
130
130
|
protocols?: string[];
|
|
131
|
+
deliveryGuarantee?: 'at-most-once' | 'at-least-once' | 'exactly-once';
|
|
131
132
|
routes?: ChannelPointer[];
|
|
132
133
|
detailsPanel?: {
|
|
133
134
|
producers?: DetailPanelProperty;
|
|
134
135
|
consumers?: DetailPanelProperty;
|
|
135
136
|
messages?: DetailPanelProperty;
|
|
136
137
|
protocols?: DetailPanelProperty;
|
|
138
|
+
parameters?: DetailPanelProperty;
|
|
137
139
|
versions?: DetailPanelProperty;
|
|
138
140
|
repository?: DetailPanelProperty;
|
|
139
141
|
owners?: DetailPanelProperty;
|
|
140
142
|
changelog?: DetailPanelProperty;
|
|
143
|
+
attachments?: DetailPanelProperty;
|
|
141
144
|
};
|
|
142
|
-
// parameters?: Record<string, Parameter>;
|
|
143
145
|
parameters?: {
|
|
144
146
|
[key: string]: {
|
|
145
147
|
enum?: string[];
|
|
@@ -168,6 +170,7 @@ interface Service extends BaseSchema {
|
|
|
168
170
|
entities?: ResourcePointer[];
|
|
169
171
|
writesTo?: ResourcePointer[];
|
|
170
172
|
readsFrom?: ResourcePointer[];
|
|
173
|
+
flows?: ResourcePointer[];
|
|
171
174
|
specifications?: Specifications | Specification[];
|
|
172
175
|
detailsPanel?: {
|
|
173
176
|
domains?: DetailPanelProperty;
|
|
@@ -186,6 +189,7 @@ interface Domain extends BaseSchema {
|
|
|
186
189
|
domains?: ResourcePointer[];
|
|
187
190
|
entities?: ResourcePointer[];
|
|
188
191
|
dataProducts?: ResourcePointer[];
|
|
192
|
+
flows?: ResourcePointer[];
|
|
189
193
|
sends?: SendsPointer[];
|
|
190
194
|
receives?: ReceivesPointer[];
|
|
191
195
|
detailsPanel?: {
|