@wix/auto_sdk_echo_metroinspector 1.0.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.
@@ -0,0 +1,45 @@
1
+ import { b as EchoRequest$1, c as EchoResponse$1 } from './metroinspector-v1-echo-metroinspector.universal-DhQgLYBr.mjs';
2
+
3
+ interface EchoMessage {
4
+ /** message comment from EchoMessage proto def, with special comment */
5
+ message?: string;
6
+ /** messages_list comment from EchoMessage proto def */
7
+ messagesList?: MessageItem[];
8
+ id?: string;
9
+ }
10
+ interface MessageItem {
11
+ /** inner_message comment from EchoMessage proto def */
12
+ innerMessage?: string;
13
+ }
14
+ interface EchoRequest {
15
+ /** 1st part of the message */
16
+ arg1: string;
17
+ /** 2nd part of the message */
18
+ arg2?: string;
19
+ /** this field test translatable annotation */
20
+ titleField?: string;
21
+ someInt32?: number;
22
+ someDate?: Date | null;
23
+ }
24
+ interface EchoResponse {
25
+ /** message result as EchoMessage */
26
+ echoMessage?: EchoMessage;
27
+ /** messge reseult as string */
28
+ message?: string;
29
+ }
30
+
31
+ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
32
+ getUrl: (context: any) => string;
33
+ httpMethod: K;
34
+ path: string;
35
+ pathParams: M;
36
+ __requestType: T;
37
+ __originalRequestType: S;
38
+ __responseType: Q;
39
+ __originalResponseType: R;
40
+ };
41
+ declare function echo(): __PublicMethodMetaInfo<'POST', {
42
+ arg1: string;
43
+ }, EchoRequest$1, EchoRequest, EchoResponse$1, EchoResponse>;
44
+
45
+ export { type __PublicMethodMetaInfo, echo };
@@ -0,0 +1,134 @@
1
+ // src/metroinspector-v1-echo-metroinspector.http.ts
2
+ import { transformSDKTimestampToRESTTimestamp } from "@wix/sdk-runtime/transformations/timestamp";
3
+ import { transformPaths } from "@wix/sdk-runtime/transformations/transform-paths";
4
+ import { resolveUrl } from "@wix/sdk-runtime/rest-modules";
5
+ function resolveWixCoreservicesMetroinspectorV1MetroInspectorServiceUrl(opts) {
6
+ const domainToMappings = {
7
+ "apps._base_domain_": [
8
+ {
9
+ srcPath: "/_api/metro-inspector",
10
+ destPath: "/api"
11
+ }
12
+ ],
13
+ "api._api_base_domain_": [
14
+ {
15
+ srcPath: "/metro-inspector",
16
+ destPath: ""
17
+ }
18
+ ],
19
+ "www._base_domain_": [
20
+ {
21
+ srcPath: "/metro-inspector",
22
+ destPath: "/api"
23
+ }
24
+ ],
25
+ "manage._base_domain_": [
26
+ {
27
+ srcPath: "/metro-inspector",
28
+ destPath: ""
29
+ }
30
+ ],
31
+ "www.wixgateway.com": [
32
+ {
33
+ srcPath: "/_api/metro-inspector",
34
+ destPath: "/api"
35
+ }
36
+ ],
37
+ _: [
38
+ {
39
+ srcPath: "/_api/metro-inspector",
40
+ destPath: "/api"
41
+ }
42
+ ],
43
+ "www.wixapis.com": [
44
+ {
45
+ srcPath: "/_api/metro-inspector",
46
+ destPath: "/api"
47
+ },
48
+ {
49
+ srcPath: "/metro-inspector",
50
+ destPath: ""
51
+ }
52
+ ],
53
+ "editor._base_domain_": [
54
+ {
55
+ srcPath: "/metro-insepctor",
56
+ destPath: ""
57
+ },
58
+ {
59
+ srcPath: "/_api/metro-inspector",
60
+ destPath: "/api"
61
+ }
62
+ ],
63
+ "blocks._base_domain_": [
64
+ {
65
+ srcPath: "/metro-insepctor",
66
+ destPath: ""
67
+ },
68
+ {
69
+ srcPath: "/_api/metro-inspector",
70
+ destPath: "/api"
71
+ }
72
+ ],
73
+ "create.editorx": [
74
+ {
75
+ srcPath: "/metro-insepctor",
76
+ destPath: ""
77
+ },
78
+ {
79
+ srcPath: "/_api/metro-inspector",
80
+ destPath: "/api"
81
+ }
82
+ ]
83
+ };
84
+ return resolveUrl(Object.assign(opts, { domainToMappings }));
85
+ }
86
+ var PACKAGE_NAME = "@wix/auto_sdk_echo_metroinspector";
87
+ function echo(payload) {
88
+ function __echo({ host }) {
89
+ const serializedData = transformPaths(payload, [
90
+ {
91
+ transformFn: transformSDKTimestampToRESTTimestamp,
92
+ paths: [{ path: "someDate" }]
93
+ }
94
+ ]);
95
+ const metadata = {
96
+ entityFqdn: "wix.metroinspector.v1.echo",
97
+ method: "POST",
98
+ methodFqn: "wix.coreservices.metroinspector.v1.MetroInspectorService.Echo",
99
+ packageName: PACKAGE_NAME,
100
+ url: resolveWixCoreservicesMetroinspectorV1MetroInspectorServiceUrl({
101
+ protoPath: "/api/v1/echo/{arg1}",
102
+ data: serializedData,
103
+ host
104
+ }),
105
+ data: serializedData
106
+ };
107
+ return metadata;
108
+ }
109
+ return __echo;
110
+ }
111
+
112
+ // src/metroinspector-v1-echo-metroinspector.meta.ts
113
+ function echo2() {
114
+ const payload = { arg1: ":arg1" };
115
+ const getRequestOptions = echo(payload);
116
+ const getUrl = (context) => {
117
+ const { url } = getRequestOptions(context);
118
+ return url;
119
+ };
120
+ return {
121
+ getUrl,
122
+ httpMethod: "POST",
123
+ path: "/api/v1/echo/{arg1}",
124
+ pathParams: { arg1: "arg1" },
125
+ __requestType: null,
126
+ __originalRequestType: null,
127
+ __responseType: null,
128
+ __originalResponseType: null
129
+ };
130
+ }
131
+ export {
132
+ echo2 as echo
133
+ };
134
+ //# sourceMappingURL=meta.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/metroinspector-v1-echo-metroinspector.http.ts","../../../src/metroinspector-v1-echo-metroinspector.meta.ts"],"sourcesContent":["import { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixCoreservicesMetroinspectorV1MetroInspectorServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'apps._base_domain_': [\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n 'api._api_base_domain_': [\n {\n srcPath: '/metro-inspector',\n destPath: '',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/metro-inspector',\n destPath: '/api',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/metro-inspector',\n destPath: '',\n },\n ],\n 'www.wixgateway.com': [\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n _: [\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n {\n srcPath: '/metro-inspector',\n destPath: '',\n },\n ],\n 'editor._base_domain_': [\n {\n srcPath: '/metro-insepctor',\n destPath: '',\n },\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n 'blocks._base_domain_': [\n {\n srcPath: '/metro-insepctor',\n destPath: '',\n },\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n 'create.editorx': [\n {\n srcPath: '/metro-insepctor',\n destPath: '',\n },\n {\n srcPath: '/_api/metro-inspector',\n destPath: '/api',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_echo_metroinspector';\n\n/** Another override description function 4 */\nexport function echo(payload: object): RequestOptionsFactory<any> {\n function __echo({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [{ path: 'someDate' }],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.metroinspector.v1.echo',\n method: 'POST' as any,\n methodFqn:\n 'wix.coreservices.metroinspector.v1.MetroInspectorService.Echo',\n packageName: PACKAGE_NAME,\n url: resolveWixCoreservicesMetroinspectorV1MetroInspectorServiceUrl({\n protoPath: '/api/v1/echo/{arg1}',\n data: serializedData,\n host,\n }),\n data: serializedData,\n };\n\n return metadata;\n }\n\n return __echo;\n}\n","import * as ambassadorWixMetroinspectorV1Echo from './metroinspector-v1-echo-metroinspector.http.js';\nimport * as ambassadorWixMetroinspectorV1EchoTypes from './metroinspector-v1-echo-metroinspector.types.js';\nimport * as ambassadorWixMetroinspectorV1EchoUniversalTypes from './metroinspector-v1-echo-metroinspector.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function echo(): __PublicMethodMetaInfo<\n 'POST',\n { arg1: string },\n ambassadorWixMetroinspectorV1EchoUniversalTypes.EchoRequest,\n ambassadorWixMetroinspectorV1EchoTypes.EchoRequest,\n ambassadorWixMetroinspectorV1EchoUniversalTypes.EchoResponse,\n ambassadorWixMetroinspectorV1EchoTypes.EchoResponse\n> {\n const payload = { arg1: ':arg1' } as any;\n\n const getRequestOptions = ambassadorWixMetroinspectorV1Echo.echo(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/api/v1/echo/{arg1}',\n pathParams: { arg1: 'arg1' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n"],"mappings":";AAAA,SAAS,4CAA4C;AACrD,SAAS,sBAAsB;AAC/B,SAAS,kBAAkB;AAI3B,SAAS,+DACP,MACA;AACA,QAAM,mBAAmB;AAAA,IACvB,sBAAsB;AAAA,MACpB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,yBAAyB;AAAA,MACvB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,qBAAqB;AAAA,MACnB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,sBAAsB;AAAA,MACpB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,GAAG;AAAA,MACD;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,mBAAmB;AAAA,MACjB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,kBAAkB;AAAA,MAChB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAEA,SAAO,WAAW,OAAO,OAAO,MAAM,EAAE,iBAAiB,CAAC,CAAC;AAC7D;AAEA,IAAM,eAAe;AAGd,SAAS,KAAK,SAA6C;AAChE,WAAS,OAAO,EAAE,KAAK,GAAQ;AAC7B,UAAM,iBAAiB,eAAe,SAAS;AAAA,MAC7C;AAAA,QACE,aAAa;AAAA,QACb,OAAO,CAAC,EAAE,MAAM,WAAW,CAAC;AAAA,MAC9B;AAAA,IACF,CAAC;AACD,UAAM,WAAW;AAAA,MACf,YAAY;AAAA,MACZ,QAAQ;AAAA,MACR,WACE;AAAA,MACF,aAAa;AAAA,MACb,KAAK,+DAA+D;AAAA,QAClE,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,IACR;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;;;AClGO,SAASA,QAOd;AACA,QAAM,UAAU,EAAE,MAAM,QAAQ;AAEhC,QAAM,oBAAsD,KAAK,OAAO;AAExE,QAAM,SAAS,CAAC,YAAyB;AACvC,UAAM,EAAE,IAAI,IAAI,kBAAkB,OAAO;AACzC,WAAO;AAAA,EACT;AAEA,SAAO;AAAA,IACL;AAAA,IACA,YAAY;AAAA,IACZ,MAAM;AAAA,IACN,YAAY,EAAE,MAAM,OAAO;AAAA,IAC3B,eAAe;AAAA,IACf,uBAAuB;AAAA,IACvB,gBAAgB;AAAA,IAChB,wBAAwB;AAAA,EAC1B;AACF;","names":["echo"]}
@@ -0,0 +1,223 @@
1
+ interface MessageItem {
2
+ /** inner_message comment from EchoMessage proto def */
3
+ innerMessage?: string;
4
+ }
5
+ interface EchoRequest {
6
+ /** 1st part of the message */
7
+ arg1: string;
8
+ /** 2nd part of the message */
9
+ arg2?: string;
10
+ /** this field test translatable annotation */
11
+ titleField?: string;
12
+ someInt32?: number;
13
+ someDate?: Date | null;
14
+ }
15
+ interface EchoResponse {
16
+ /**
17
+ * override EchoResponse.echoMessage
18
+ *
19
+ */
20
+ echoMessage?: EchoMessage;
21
+ /** messge reseult as string */
22
+ message?: string;
23
+ }
24
+ interface Dispatched {
25
+ /** the message someone says */
26
+ echo?: EchoMessage;
27
+ }
28
+ interface DomainEvent extends DomainEventBodyOneOf {
29
+ createdEvent?: EntityCreatedEvent;
30
+ updatedEvent?: EntityUpdatedEvent;
31
+ deletedEvent?: EntityDeletedEvent;
32
+ actionEvent?: ActionEvent;
33
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
34
+ _id?: string;
35
+ /**
36
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
37
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
38
+ */
39
+ entityFqdn?: string;
40
+ /**
41
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
42
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
43
+ */
44
+ slug?: string;
45
+ /** ID of the entity associated with the event. */
46
+ entityId?: string;
47
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
48
+ eventTime?: Date | null;
49
+ /**
50
+ * Whether the event was triggered as a result of a privacy regulation application
51
+ * (for example, GDPR).
52
+ */
53
+ triggeredByAnonymizeRequest?: boolean | null;
54
+ /** If present, indicates the action that triggered the event. */
55
+ originatedFrom?: string | null;
56
+ /**
57
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
58
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
59
+ */
60
+ entityEventSequence?: string | null;
61
+ }
62
+ /** @oneof */
63
+ interface DomainEventBodyOneOf {
64
+ createdEvent?: EntityCreatedEvent;
65
+ updatedEvent?: EntityUpdatedEvent;
66
+ deletedEvent?: EntityDeletedEvent;
67
+ actionEvent?: ActionEvent;
68
+ }
69
+ interface EntityCreatedEvent {
70
+ entity?: string;
71
+ }
72
+ interface RestoreInfo {
73
+ deletedDate?: Date | null;
74
+ }
75
+ interface EntityUpdatedEvent {
76
+ /**
77
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
78
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
79
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
80
+ */
81
+ currentEntity?: string;
82
+ }
83
+ interface EntityDeletedEvent {
84
+ /** Entity that was deleted. */
85
+ deletedEntity?: string | null;
86
+ }
87
+ interface ActionEvent {
88
+ body?: string;
89
+ }
90
+ interface MessageEnvelope {
91
+ /**
92
+ * App instance ID.
93
+ * @format GUID
94
+ */
95
+ instanceId?: string | null;
96
+ /**
97
+ * Event type.
98
+ * @maxLength 150
99
+ */
100
+ eventType?: string;
101
+ /** The identification type and identity data. */
102
+ identity?: IdentificationData;
103
+ /** Stringify payload. */
104
+ data?: string;
105
+ }
106
+ interface IdentificationData extends IdentificationDataIdOneOf {
107
+ /**
108
+ * ID of a site visitor that has not logged in to the site.
109
+ * @format GUID
110
+ */
111
+ anonymousVisitorId?: string;
112
+ /**
113
+ * ID of a site visitor that has logged in to the site.
114
+ * @format GUID
115
+ */
116
+ memberId?: string;
117
+ /**
118
+ * ID of a Wix user (site owner, contributor, etc.).
119
+ * @format GUID
120
+ */
121
+ wixUserId?: string;
122
+ /**
123
+ * ID of an app.
124
+ * @format GUID
125
+ */
126
+ appId?: string;
127
+ /** @readonly */
128
+ identityType?: WebhookIdentityTypeWithLiterals;
129
+ }
130
+ /** @oneof */
131
+ interface IdentificationDataIdOneOf {
132
+ /**
133
+ * ID of a site visitor that has not logged in to the site.
134
+ * @format GUID
135
+ */
136
+ anonymousVisitorId?: string;
137
+ /**
138
+ * ID of a site visitor that has logged in to the site.
139
+ * @format GUID
140
+ */
141
+ memberId?: string;
142
+ /**
143
+ * ID of a Wix user (site owner, contributor, etc.).
144
+ * @format GUID
145
+ */
146
+ wixUserId?: string;
147
+ /**
148
+ * ID of an app.
149
+ * @format GUID
150
+ */
151
+ appId?: string;
152
+ }
153
+ declare enum WebhookIdentityType {
154
+ UNKNOWN = "UNKNOWN",
155
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
156
+ MEMBER = "MEMBER",
157
+ WIX_USER = "WIX_USER",
158
+ APP = "APP"
159
+ }
160
+ /** @enumType */
161
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
162
+ interface EchoMessage {
163
+ veloMessage: string;
164
+ id: string;
165
+ }
166
+ interface BaseEventMetadata {
167
+ /**
168
+ * App instance ID.
169
+ * @format GUID
170
+ */
171
+ instanceId?: string | null;
172
+ /**
173
+ * Event type.
174
+ * @maxLength 150
175
+ */
176
+ eventType?: string;
177
+ /** The identification type and identity data. */
178
+ identity?: IdentificationData;
179
+ }
180
+ interface EventMetadata extends BaseEventMetadata {
181
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
182
+ _id?: string;
183
+ /**
184
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
185
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
186
+ */
187
+ entityFqdn?: string;
188
+ /**
189
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
190
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
191
+ */
192
+ slug?: string;
193
+ /** ID of the entity associated with the event. */
194
+ entityId?: string;
195
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
196
+ eventTime?: Date | null;
197
+ /**
198
+ * Whether the event was triggered as a result of a privacy regulation application
199
+ * (for example, GDPR).
200
+ */
201
+ triggeredByAnonymizeRequest?: boolean | null;
202
+ /** If present, indicates the action that triggered the event. */
203
+ originatedFrom?: string | null;
204
+ /**
205
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
206
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
207
+ */
208
+ entityEventSequence?: string | null;
209
+ }
210
+ interface EchoDispatchedEnvelope {
211
+ data: Dispatched;
212
+ metadata: EventMetadata;
213
+ }
214
+ interface EchoOptions {
215
+ /** 2nd part of the message */
216
+ arg2?: string;
217
+ /** this field test translatable annotation */
218
+ titleField?: string;
219
+ someInt32?: number;
220
+ someDate?: Date | null;
221
+ }
222
+
223
+ export { type ActionEvent as A, type BaseEventMetadata as B, type Dispatched as D, type EchoOptions as E, type IdentificationData as I, type MessageItem as M, type RestoreInfo as R, WebhookIdentityType as W, type EchoDispatchedEnvelope as a, type EchoRequest as b, type EchoResponse as c, type DomainEvent as d, type DomainEventBodyOneOf as e, type EntityCreatedEvent as f, type EntityUpdatedEvent as g, type EntityDeletedEvent as h, type MessageEnvelope as i, type IdentificationDataIdOneOf as j, type EchoMessage as k, type EventMetadata as l };
@@ -0,0 +1,3 @@
1
+ {
2
+ "main": "../build/cjs/meta.js"
3
+ }
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@wix/auto_sdk_echo_metroinspector",
3
+ "version": "1.0.0",
4
+ "publishConfig": {
5
+ "registry": "https://registry.npmjs.org/",
6
+ "access": "public"
7
+ },
8
+ "keywords": [],
9
+ "sideEffects": false,
10
+ "main": "./build/cjs/index.js",
11
+ "types": "./build/cjs/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./build/es/index.mjs",
15
+ "require": "./build/cjs/index.js",
16
+ "types": "./build/es/index.d.mts"
17
+ },
18
+ "./package.json": "./package.json",
19
+ "./meta": {
20
+ "import": "./build/es/meta.mjs",
21
+ "require": "./build/cjs/meta.js",
22
+ "types": "./build/es/meta.d.mts"
23
+ }
24
+ },
25
+ "files": [
26
+ "build",
27
+ "meta",
28
+ "service-plugins"
29
+ ],
30
+ "dependencies": {
31
+ "@wix/sdk-runtime": "^0.3.49",
32
+ "@wix/sdk-types": "^1.13.28"
33
+ },
34
+ "devDependencies": {
35
+ "tsup": "^8.4.0",
36
+ "typescript": "^5.3.2"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "test": ":"
41
+ },
42
+ "wix": {
43
+ "artifact": {
44
+ "artifactId": "auto-sdk-echo-metroinspector",
45
+ "groupId": "com.wixpress.public-sdk-dependencies"
46
+ },
47
+ "sdkDependency": {
48
+ "fqdnNamespace": "metroinspector",
49
+ "fqdn": "wix.metroinspector.v1.echo"
50
+ }
51
+ },
52
+ "falconPackageHash": "39a8dea1c2897335d834311859ee835a86d1e512b314d89e1f336656"
53
+ }