mitra-interactions-sdk 1.0.52 → 1.0.53

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 CHANGED
@@ -176,6 +176,26 @@ interface ExecutePublicServerFunctionOptions {
176
176
  interface ExecutePublicServerFunctionResponse {
177
177
  executionId: string;
178
178
  status: string;
179
+ output: any | null;
180
+ logs: string | null;
181
+ error: string | null;
182
+ durationMs: number | null;
183
+ }
184
+ interface ExecutePublicServerFunctionAsyncResponse {
185
+ executionId: string;
186
+ status: string;
187
+ }
188
+ interface GetPublicServerFunctionExecutionOptions {
189
+ projectId: number;
190
+ executionId: string;
191
+ }
192
+ interface GetPublicServerFunctionExecutionResponse {
193
+ executionId: string;
194
+ status: string;
195
+ output: any | null;
196
+ logs: string | null;
197
+ error: string | null;
198
+ durationMs: number | null;
179
199
  }
180
200
  interface ListRecordsResponse {
181
201
  content: Record<string, any>[];
@@ -490,6 +510,8 @@ interface MitraInstance {
490
510
  executeServerFunction(options: ExecuteServerFunctionOptions): Promise<ExecuteServerFunctionResponse>;
491
511
  executeServerFunctionAsync(options: ExecuteServerFunctionAsyncOptions): Promise<ExecuteServerFunctionAsyncResponse>;
492
512
  executePublicServerFunction(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionResponse>;
513
+ executePublicServerFunctionAsync(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionAsyncResponse>;
514
+ getPublicServerFunctionExecution(options: GetPublicServerFunctionExecutionOptions): Promise<GetPublicServerFunctionExecutionResponse>;
493
515
  stopServerFunctionExecution(options: StopServerFunctionExecutionOptions): Promise<StopServerFunctionExecutionResponse>;
494
516
  uploadFilePublic(options: UploadFileOptions): Promise<UploadFileResponse>;
495
517
  uploadFileLoadable(options: UploadFileOptions): Promise<UploadFileResponse>;
@@ -669,11 +691,21 @@ declare function executeServerFunctionMitra(options: ExecuteServerFunctionOption
669
691
  declare function executeServerFunctionAsyncMitra(options: ExecuteServerFunctionAsyncOptions): Promise<ExecuteServerFunctionAsyncResponse>;
670
692
  /**
671
693
  * POST /public/serverFunction/{projectId}/{serverFunctionId}/execute
672
- * Executa uma Server Function pública (sem autenticação).
673
- * A SF deve ter publicExecution = true no backend.
674
- * Retorna executionId (assíncrono).
694
+ * Executa uma Server Function pública de forma SÍNCRONA (sem autenticação).
695
+ * A SF deve ter publicExecution = true. Timeout 5min.
675
696
  */
676
697
  declare function executePublicServerFunctionMitra(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionResponse>;
698
+ /**
699
+ * POST /public/serverFunction/{projectId}/{serverFunctionId}/executeAsync
700
+ * Executa uma Server Function pública de forma ASSÍNCRONA (sem autenticação).
701
+ * Retorna executionId imediatamente. Use getPublicServerFunctionExecutionMitra para polling.
702
+ */
703
+ declare function executePublicServerFunctionAsyncMitra(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionAsyncResponse>;
704
+ /**
705
+ * GET /public/serverFunction/{projectId}/execution/{executionId}
706
+ * Consulta o status/resultado de uma execução pública de SF (sem autenticação).
707
+ */
708
+ declare function getPublicServerFunctionExecutionMitra(options: GetPublicServerFunctionExecutionOptions): Promise<GetPublicServerFunctionExecutionResponse>;
677
709
  /**
678
710
  * GET /interactions/integrations?projectId=X
679
711
  * Lista integrações configuradas no projeto
@@ -763,4 +795,4 @@ declare function setProfileScreensMitra(options: SetProfileScreensOptions): Prom
763
795
  */
764
796
  declare function setProfileServerFunctionsMitra(options: SetProfileServerFunctionsOptions): Promise<SetProfilePermissionResponse>;
765
797
 
766
- export { type CallIntegrationOptions, type CallIntegrationResponse, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type RunActionOptions, type RunActionResponse, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getConfig, getProfileDetailsMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resolveProjectId, runActionMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, stopTracking, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra };
798
+ export { type CallIntegrationOptions, type CallIntegrationResponse, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type RunActionOptions, type RunActionResponse, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resolveProjectId, runActionMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, stopTracking, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra };
package/dist/index.d.ts CHANGED
@@ -176,6 +176,26 @@ interface ExecutePublicServerFunctionOptions {
176
176
  interface ExecutePublicServerFunctionResponse {
177
177
  executionId: string;
178
178
  status: string;
179
+ output: any | null;
180
+ logs: string | null;
181
+ error: string | null;
182
+ durationMs: number | null;
183
+ }
184
+ interface ExecutePublicServerFunctionAsyncResponse {
185
+ executionId: string;
186
+ status: string;
187
+ }
188
+ interface GetPublicServerFunctionExecutionOptions {
189
+ projectId: number;
190
+ executionId: string;
191
+ }
192
+ interface GetPublicServerFunctionExecutionResponse {
193
+ executionId: string;
194
+ status: string;
195
+ output: any | null;
196
+ logs: string | null;
197
+ error: string | null;
198
+ durationMs: number | null;
179
199
  }
180
200
  interface ListRecordsResponse {
181
201
  content: Record<string, any>[];
@@ -490,6 +510,8 @@ interface MitraInstance {
490
510
  executeServerFunction(options: ExecuteServerFunctionOptions): Promise<ExecuteServerFunctionResponse>;
491
511
  executeServerFunctionAsync(options: ExecuteServerFunctionAsyncOptions): Promise<ExecuteServerFunctionAsyncResponse>;
492
512
  executePublicServerFunction(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionResponse>;
513
+ executePublicServerFunctionAsync(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionAsyncResponse>;
514
+ getPublicServerFunctionExecution(options: GetPublicServerFunctionExecutionOptions): Promise<GetPublicServerFunctionExecutionResponse>;
493
515
  stopServerFunctionExecution(options: StopServerFunctionExecutionOptions): Promise<StopServerFunctionExecutionResponse>;
494
516
  uploadFilePublic(options: UploadFileOptions): Promise<UploadFileResponse>;
495
517
  uploadFileLoadable(options: UploadFileOptions): Promise<UploadFileResponse>;
@@ -669,11 +691,21 @@ declare function executeServerFunctionMitra(options: ExecuteServerFunctionOption
669
691
  declare function executeServerFunctionAsyncMitra(options: ExecuteServerFunctionAsyncOptions): Promise<ExecuteServerFunctionAsyncResponse>;
670
692
  /**
671
693
  * POST /public/serverFunction/{projectId}/{serverFunctionId}/execute
672
- * Executa uma Server Function pública (sem autenticação).
673
- * A SF deve ter publicExecution = true no backend.
674
- * Retorna executionId (assíncrono).
694
+ * Executa uma Server Function pública de forma SÍNCRONA (sem autenticação).
695
+ * A SF deve ter publicExecution = true. Timeout 5min.
675
696
  */
676
697
  declare function executePublicServerFunctionMitra(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionResponse>;
698
+ /**
699
+ * POST /public/serverFunction/{projectId}/{serverFunctionId}/executeAsync
700
+ * Executa uma Server Function pública de forma ASSÍNCRONA (sem autenticação).
701
+ * Retorna executionId imediatamente. Use getPublicServerFunctionExecutionMitra para polling.
702
+ */
703
+ declare function executePublicServerFunctionAsyncMitra(options: ExecutePublicServerFunctionOptions): Promise<ExecutePublicServerFunctionAsyncResponse>;
704
+ /**
705
+ * GET /public/serverFunction/{projectId}/execution/{executionId}
706
+ * Consulta o status/resultado de uma execução pública de SF (sem autenticação).
707
+ */
708
+ declare function getPublicServerFunctionExecutionMitra(options: GetPublicServerFunctionExecutionOptions): Promise<GetPublicServerFunctionExecutionResponse>;
677
709
  /**
678
710
  * GET /interactions/integrations?projectId=X
679
711
  * Lista integrações configuradas no projeto
@@ -763,4 +795,4 @@ declare function setProfileScreensMitra(options: SetProfileScreensOptions): Prom
763
795
  */
764
796
  declare function setProfileServerFunctionsMitra(options: SetProfileServerFunctionsOptions): Promise<SetProfilePermissionResponse>;
765
797
 
766
- export { type CallIntegrationOptions, type CallIntegrationResponse, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type RunActionOptions, type RunActionResponse, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getConfig, getProfileDetailsMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resolveProjectId, runActionMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, stopTracking, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra };
798
+ export { type CallIntegrationOptions, type CallIntegrationResponse, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type RunActionOptions, type RunActionResponse, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resolveProjectId, runActionMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, stopTracking, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra };
package/dist/index.js CHANGED
@@ -460,6 +460,27 @@ function createMitraInstance(initialConfig) {
460
460
  });
461
461
  return handleResponse2(response);
462
462
  },
463
+ async executePublicServerFunctionAsync(options) {
464
+ const { projectId, serverFunctionId, input } = options;
465
+ const url = `${_config.baseURL}/public/serverFunction/${projectId}/${serverFunctionId}/executeAsync`;
466
+ const fetchFn = getFetch();
467
+ const response = await fetchFn(url, {
468
+ method: "POST",
469
+ headers: { "Content-Type": "application/json" },
470
+ body: JSON.stringify(input || {})
471
+ });
472
+ return handleResponse2(response);
473
+ },
474
+ async getPublicServerFunctionExecution(options) {
475
+ const { projectId, executionId } = options;
476
+ const url = `${_config.baseURL}/public/serverFunction/${projectId}/execution/${executionId}`;
477
+ const fetchFn = getFetch();
478
+ const response = await fetchFn(url, {
479
+ method: "GET",
480
+ headers: { "Content-Type": "application/json" }
481
+ });
482
+ return handleResponse2(response);
483
+ },
463
484
  async stopServerFunctionExecution(options) {
464
485
  return request("POST", "/interactions/stopServerFunctionExecution", {
465
486
  body: { projectId: resolveProjectId2(options.projectId), executionId: options.executionId }
@@ -972,6 +993,37 @@ async function executePublicServerFunctionMitra(options) {
972
993
  }
973
994
  return response.json();
974
995
  }
996
+ async function executePublicServerFunctionAsyncMitra(options) {
997
+ const { projectId, serverFunctionId, input } = options;
998
+ const baseURL = getConfig().baseURL;
999
+ const url = `${baseURL}/public/serverFunction/${projectId}/${serverFunctionId}/executeAsync`;
1000
+ const response = await fetch(url, {
1001
+ method: "POST",
1002
+ headers: { "Content-Type": "application/json" },
1003
+ body: JSON.stringify(input || {})
1004
+ });
1005
+ if (!response.ok) {
1006
+ const data = await response.json().catch(() => null);
1007
+ const msg = (data == null ? void 0 : data.message) || (data == null ? void 0 : data.error) || `HTTP ${response.status}`;
1008
+ throw { message: msg, status: response.status, details: data };
1009
+ }
1010
+ return response.json();
1011
+ }
1012
+ async function getPublicServerFunctionExecutionMitra(options) {
1013
+ const { projectId, executionId } = options;
1014
+ const baseURL = getConfig().baseURL;
1015
+ const url = `${baseURL}/public/serverFunction/${projectId}/execution/${executionId}`;
1016
+ const response = await fetch(url, {
1017
+ method: "GET",
1018
+ headers: { "Content-Type": "application/json" }
1019
+ });
1020
+ if (!response.ok) {
1021
+ const data = await response.json().catch(() => null);
1022
+ const msg = (data == null ? void 0 : data.message) || (data == null ? void 0 : data.error) || `HTTP ${response.status}`;
1023
+ throw { message: msg, status: response.status, details: data };
1024
+ }
1025
+ return response.json();
1026
+ }
975
1027
  async function listIntegrationsMitra(options = {}) {
976
1028
  return http.get("/interactions/integrations", {
977
1029
  projectId: resolveProjectId(options.projectId)
@@ -1142,11 +1194,13 @@ exports.emailSignupMitra = emailSignupMitra;
1142
1194
  exports.emailVerifyCodeMitra = emailVerifyCodeMitra;
1143
1195
  exports.executeDataLoaderMitra = executeDataLoaderMitra;
1144
1196
  exports.executeDbActionMitra = executeDbActionMitra;
1197
+ exports.executePublicServerFunctionAsyncMitra = executePublicServerFunctionAsyncMitra;
1145
1198
  exports.executePublicServerFunctionMitra = executePublicServerFunctionMitra;
1146
1199
  exports.executeServerFunctionAsyncMitra = executeServerFunctionAsyncMitra;
1147
1200
  exports.executeServerFunctionMitra = executeServerFunctionMitra;
1148
1201
  exports.getConfig = getConfig;
1149
1202
  exports.getProfileDetailsMitra = getProfileDetailsMitra;
1203
+ exports.getPublicServerFunctionExecutionMitra = getPublicServerFunctionExecutionMitra;
1150
1204
  exports.getRecordMitra = getRecordMitra;
1151
1205
  exports.getVariableMitra = getVariableMitra;
1152
1206
  exports.listIntegrationsMitra = listIntegrationsMitra;