@@ -8,7 +8,7 @@ export type FfiMessageHandle = number;
88// TODO: Replace this pattern of type + const + lint disable with enums
99
1010export type FfiSpecificationVersion = 0 | 1 | 2 | 3 | 4 | 5 ;
11-
11+
1212export const FfiSpecificationVersion : Record < string , FfiSpecificationVersion > =
1313 {
1414 SPECIFICATION_VERSION_UNKNOWN : 0 ,
@@ -20,7 +20,7 @@ export const FfiSpecificationVersion: Record<string, FfiSpecificationVersion> =
2020 } ;
2121
2222export type FfiWritePactResponse = 0 | 1 | 2 | 3 ;
23-
23+
2424export const FfiWritePactResponse : Record < string , FfiWritePactResponse > = {
2525 SUCCESS : 0 ,
2626 GENERAL_PANIC : 1 ,
@@ -29,7 +29,7 @@ export const FfiWritePactResponse: Record<string, FfiWritePactResponse> = {
2929} ;
3030
3131export type FfiWriteMessagePactResponse = 0 | 1 | 2 ;
32-
32+
3333export const FfiWriteMessagePactResponse : Record <
3434 string ,
3535 FfiWriteMessagePactResponse
@@ -40,7 +40,7 @@ export const FfiWriteMessagePactResponse: Record<
4040} ;
4141
4242export type FfiConfigurePluginResponse = 0 | 1 | 2 | 3 ;
43-
43+
4444export const FfiConfigurePluginResponse : Record <
4545 string ,
4646 FfiConfigurePluginResponse
@@ -52,7 +52,7 @@ export const FfiConfigurePluginResponse: Record<
5252} ;
5353
5454export type FfiPluginInteractionResponse = 0 | 1 | 2 | 3 | 4 | 5 | 6 ;
55-
55+
5656export const FfiPluginInteractionResponse : Record <
5757 string ,
5858 FfiPluginInteractionResponse
@@ -87,7 +87,7 @@ export const CREATE_MOCK_SERVER_ERRORS = {
8787-5 The address is not valid
8888-6 Could not create the TLS configuration with the self-signed certificate
8989*/
90-
90+
9191export enum VERIFY_PROVIDER_RESPONSE {
9292 VERIFICATION_SUCCESSFUL = 0 ,
9393 VERIFICATION_FAILED ,
0 commit comments