@uipath/agent-sdk 1.201.0-preview.133 → 1.202.0-preview.134

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.
Files changed (2) hide show
  1. package/dist/index.js +465 -437
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -402,9 +402,9 @@ var init_is_in_ssh = __esm(() => {
402
402
  // ../../node_modules/open/index.js
403
403
  var exports_open = {};
404
404
  __export(exports_open, {
405
- openApp: () => openApp,
405
+ apps: () => apps,
406
406
  default: () => open_default,
407
- apps: () => apps
407
+ openApp: () => openApp
408
408
  });
409
409
  import process8 from "node:process";
410
410
  import path from "node:path";
@@ -1357,7 +1357,7 @@ class TextApiResponse {
1357
1357
  var package_default = {
1358
1358
  name: "@uipath/agent-sdk",
1359
1359
  license: "MIT",
1360
- version: "1.201.0-preview.133",
1360
+ version: "1.202.0-preview.134",
1361
1361
  description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
1362
1362
  repository: {
1363
1363
  type: "git",
@@ -4358,7 +4358,7 @@ class InvalidBaseUrlError extends Error {
4358
4358
  super(`Invalid base URL: "${url}"
4359
4359
  ` + `Reason: ${reason}
4360
4360
 
4361
- ` + `Expected format: an https:// URL, e.g. https://cloud.uipath.com (commercial), https://govcloud.uipath.us (Public Sector), or your Automation Suite host (https://<your-host>).
4361
+ ` + `Expected format: an https:// URL (or bare host — https:// is assumed), e.g. https://cloud.uipath.com (commercial), https://govcloud.uipath.us (Public Sector), or your Automation Suite host (https://<your-host>).
4362
4362
  ` + `You can specify the URL via:
4363
4363
  ` + ` • --authority flag
4364
4364
  ` + ` • UIPATH_URL environment variable
@@ -4379,10 +4379,16 @@ var normalizeAndValidateBaseUrl = (rawUrl) => {
4379
4379
  while (baseUrl.endsWith("/")) {
4380
4380
  baseUrl = baseUrl.slice(0, -1);
4381
4381
  }
4382
+ const hasScheme = /^[a-z][a-z0-9+.-]*:\/\//i.test(baseUrl);
4383
+ const [hostCandidate] = baseUrl.split(/[/?#]/, 1);
4384
+ if (!hasScheme && hostCandidate.includes(".")) {
4385
+ baseUrl = `https://${baseUrl}`;
4386
+ }
4382
4387
  const resolvedBaseUrl = baseUrl;
4383
4388
  const [urlError, url] = catchError(() => new URL(resolvedBaseUrl));
4384
4389
  if (urlError) {
4385
- throw new InvalidBaseUrlError(baseUrl, `Malformed URL. ${urlError instanceof Error ? urlError.message : "Unknown error"}`);
4390
+ const shapeHint = !hasScheme && !hostCandidate.includes(".") ? ` "${rawUrl.trim()}" is not a URL or a host name. Pass the full authority URL — https://<host>, or just <host> (https:// is assumed).` : ` ${urlError instanceof Error ? urlError.message : "Unknown error"}`;
4391
+ throw new InvalidBaseUrlError(baseUrl, `Malformed URL.${shapeHint}`);
4386
4392
  }
4387
4393
  if (url.protocol !== "https:") {
4388
4394
  throw new InvalidBaseUrlError(baseUrl, `Authority must use https:// scheme, got ${url.protocol}//. OIDC token exchange requires TLS end-to-end.`);
@@ -4669,6 +4675,17 @@ var requireEnv = (name) => {
4669
4675
  }
4670
4676
  return value;
4671
4677
  };
4678
+ var OPAQUE_TOKEN_BASE_URL_VAR = "UIPATH_URL";
4679
+ var resolveBaseUrl = (rawUrl, failureContext) => {
4680
+ const [baseUrlError, baseUrl] = catchError(() => normalizeAndValidateBaseUrl(rawUrl));
4681
+ if (baseUrlError) {
4682
+ if (baseUrlError instanceof InvalidBaseUrlError) {
4683
+ throw baseUrlError;
4684
+ }
4685
+ throw new EnvAuthConfigError(`${failureContext}: ` + `${baseUrlError instanceof Error ? baseUrlError.message : String(baseUrlError)}`);
4686
+ }
4687
+ return baseUrl;
4688
+ };
4672
4689
  var readAuthFromEnv = () => {
4673
4690
  const accessToken = requireEnv(ENV_AUTH_VARS.token);
4674
4691
  const organizationName = requireEnv(ENV_AUTH_VARS.organizationName);
@@ -4677,19 +4694,29 @@ var readAuthFromEnv = () => {
4677
4694
  const tenantId = requireEnv(ENV_AUTH_VARS.tenantId);
4678
4695
  const [parseError, payload] = catchError(() => parseJWT(accessToken));
4679
4696
  if (parseError) {
4680
- throw new EnvAuthConfigError(`${ENV_AUTH_VARS.token} is not a valid JWT: ` + `${parseError instanceof Error ? parseError.message : String(parseError)}`);
4697
+ const parseErrorMessage = parseError instanceof Error ? parseError.message : String(parseError);
4698
+ const rawUrl = process.env[OPAQUE_TOKEN_BASE_URL_VAR];
4699
+ if (!rawUrl) {
4700
+ throw new EnvAuthConfigError(`${ENV_AUTH_VARS.token} is not a JWT (treating it as an opaque token, ` + `e.g. a Personal Access Token). Set ${OPAQUE_TOKEN_BASE_URL_VAR} to the ` + `UiPath base URL if this is a PAT, or fix the token if it was meant to ` + `be a JWT (parse error: ${parseErrorMessage}).`);
4701
+ }
4702
+ const baseUrl2 = resolveBaseUrl(rawUrl, `Failed to validate ${OPAQUE_TOKEN_BASE_URL_VAR}`);
4703
+ return {
4704
+ loginStatus: "Logged in",
4705
+ accessToken,
4706
+ baseUrl: baseUrl2,
4707
+ organizationName,
4708
+ organizationId,
4709
+ tenantName,
4710
+ tenantId,
4711
+ source: "env-vars" /* EnvironmentVariables */,
4712
+ hint: "Token is opaque (not a JWT) - expiration and identity cannot be " + "determined locally. Commands will fail with 401 once it is revoked or " + `expired. If this was meant to be a JWT instead of a PAT, note: ${parseErrorMessage}`
4713
+ };
4681
4714
  }
4682
4715
  const iss = payload.iss;
4683
4716
  if (typeof iss !== "string" || iss.length === 0) {
4684
4717
  throw new EnvAuthConfigError(`${ENV_AUTH_VARS.token} has no 'iss' claim; cannot determine ` + `the UiPath server. Ensure the token was issued by a UiPath identity server.`);
4685
4718
  }
4686
- const [baseUrlError, baseUrl] = catchError(() => normalizeAndValidateBaseUrl(iss));
4687
- if (baseUrlError) {
4688
- if (baseUrlError instanceof InvalidBaseUrlError) {
4689
- throw baseUrlError;
4690
- }
4691
- throw new EnvAuthConfigError(`Failed to derive server URL from token 'iss' claim: ` + `${baseUrlError instanceof Error ? baseUrlError.message : String(baseUrlError)}`);
4692
- }
4719
+ const baseUrl = resolveBaseUrl(iss, "Failed to derive server URL from token 'iss' claim");
4693
4720
  const expiration = getTokenExpiration(accessToken);
4694
4721
  const loginStatus = expiration && expiration <= new Date ? "Expired" : "Logged in";
4695
4722
  const identity = resolveSessionIdentity(accessToken);
@@ -5632,6 +5659,7 @@ init_constants();
5632
5659
 
5633
5660
  // ../auth/src/interactive.ts
5634
5661
  init_src();
5662
+ init_constants();
5635
5663
  // ../auth/src/tenantSelection.ts
5636
5664
  var IDENTIFIER_STATUSES = new Set([400, 403, 404]);
5637
5665
 
@@ -5749,430 +5777,430 @@ var ProjectFilesSource3 = {
5749
5777
  Local: 1
5750
5778
  };
5751
5779
  export {
5752
- querystring,
5753
- mapValues,
5754
- instanceOfVsEscalationProperties,
5755
- instanceOfToolType,
5756
- instanceOfToolToSimulate,
5757
- instanceOfToolSettings,
5758
- instanceOfToolDefinition,
5759
- instanceOfTextTokenType,
5760
- instanceOfTextToken,
5761
- instanceOfTaskTitleType,
5762
- instanceOfStartingPrompt,
5763
- instanceOfScoreType,
5764
- instanceOfRuntimeType,
5765
- instanceOfRole,
5766
- instanceOfResourceDefinition,
5767
- instanceOfRecipientType,
5768
- instanceOfRecipient,
5769
- instanceOfPropertyVariant,
5770
- instanceOfPrompt,
5771
- instanceOfProjectFilesSource,
5772
- instanceOfModelSetting,
5773
- instanceOfMockOutputType,
5774
- instanceOfMockOutputItemDefinition,
5775
- instanceOfMockOutputDefinition,
5776
- instanceOfMockDefinition,
5777
- instanceOfMockConditionDefinition,
5778
- instanceOfMessage,
5779
- instanceOfLlmModel,
5780
- instanceOfGuardrailSelector,
5781
- instanceOfGuardrailScope,
5782
- instanceOfFewShotExample,
5783
- instanceOfEvaluator,
5784
- instanceOfEvaluation,
5785
- instanceOfEvalsToolDto,
5786
- instanceOfEvalsEscalationDto,
5787
- instanceOfEvalsContextSettingsDto,
5788
- instanceOfEvalsContextDto,
5789
- instanceOfEvalsAgentSettingsDto,
5790
- instanceOfEvalSetRunStatus,
5791
- instanceOfEvalSetRunDto,
5792
- instanceOfEvalSetMultipleEvaluatorsStartRequest,
5793
- instanceOfEvalScoreDto,
5794
- instanceOfEvalRunStatus,
5795
- instanceOfEvalRunSource,
5796
- instanceOfEvalRunDto,
5797
- instanceOfEvalResultDto,
5798
- instanceOfEvalCompletionMetricsDto,
5799
- instanceOfEscalationType,
5800
- instanceOfEscalationTaskTitle,
5801
- instanceOfEscalationDefinition,
5802
- instanceOfEscalationChannel,
5803
- instanceOfConversationalDisplayMode,
5804
- instanceOfContextType,
5805
- instanceOfContextSettings,
5806
- instanceOfContextRetrievalMode,
5807
- instanceOfContextPropertyWithVariant,
5808
- instanceOfContextProperty,
5809
- instanceOfContextDefinition,
5810
- instanceOfConditionSetDefinition,
5811
- instanceOfConditionOperator,
5812
- instanceOfChannelType,
5813
- instanceOfByomProperties,
5814
- instanceOfBasicConditionDefinition,
5815
- instanceOfAssertionScoreDto,
5816
- instanceOfAssertionRunDtoStatus,
5817
- instanceOfAssertionRunDto,
5818
- instanceOfAssertionResultDto,
5819
- instanceOfAssertionCompletionMetricsDto,
5820
- instanceOfAggregatedEvaluatorScoreDto,
5821
- instanceOfAgentSettings,
5822
- instanceOfAgentMetadata,
5823
- instanceOfAgentMemorySettingsDto,
5824
- instanceOfAgentMemorySetting,
5825
- instanceOfAgentGuardrailPolicy,
5826
- instanceOfAgentEnforcementsDto,
5827
- instanceOfAgentDefinition,
5828
- instanceOfAgentAppearance,
5829
- getGuardrailDefinitions,
5830
- getGuardrailCatalog,
5831
- getAvailableModels,
5832
- getAvailableModelNames,
5833
- getAgentEnforcements,
5834
- exists,
5835
- createApiClient,
5836
- createAgentRuntimeConfig,
5837
- canConsumeForm,
5838
- VsEscalationPropertiesToJSONTyped,
5839
- VsEscalationPropertiesToJSON,
5840
- VsEscalationPropertiesFromJSONTyped,
5841
- VsEscalationPropertiesFromJSON,
5842
- VoidApiResponse,
5843
- ToolTypeToJSONTyped,
5844
- ToolTypeToJSON,
5845
- ToolTypeFromJSONTyped,
5846
- ToolTypeFromJSON,
5847
- ToolType,
5848
- ToolToSimulateToJSONTyped,
5849
- ToolToSimulateToJSON,
5850
- ToolToSimulateFromJSONTyped,
5851
- ToolToSimulateFromJSON,
5852
- ToolSettingsToJSONTyped,
5853
- ToolSettingsToJSON,
5854
- ToolSettingsFromJSONTyped,
5855
- ToolSettingsFromJSON,
5856
- ToolDefinitionToJSONTyped,
5857
- ToolDefinitionToJSON,
5858
- ToolDefinitionFromJSONTyped,
5859
- ToolDefinitionFromJSON,
5860
- TextTokenTypeToJSONTyped,
5861
- TextTokenTypeToJSON,
5862
- TextTokenTypeFromJSONTyped,
5863
- TextTokenTypeFromJSON,
5864
- TextTokenType,
5865
- TextTokenToJSONTyped,
5866
- TextTokenToJSON,
5867
- TextTokenFromJSONTyped,
5868
- TextTokenFromJSON,
5869
- TextApiResponse,
5870
- TaskTitleTypeToJSONTyped,
5871
- TaskTitleTypeToJSON,
5872
- TaskTitleTypeFromJSONTyped,
5873
- TaskTitleTypeFromJSON,
5874
- TaskTitleType,
5875
- StartingPromptToJSONTyped,
5876
- StartingPromptToJSON,
5877
- StartingPromptFromJSONTyped,
5878
- StartingPromptFromJSON,
5879
- ScoreTypeToJSONTyped,
5880
- ScoreTypeToJSON,
5881
- ScoreTypeFromJSONTyped,
5882
- ScoreTypeFromJSON,
5883
- ScoreType,
5884
- SDK_USER_AGENT,
5885
- RuntimeTypeToJSONTyped,
5886
- RuntimeTypeToJSON,
5887
- RuntimeTypeFromJSONTyped,
5888
- RuntimeTypeFromJSON,
5889
- RuntimeType,
5890
- RoleToJSONTyped,
5891
- RoleToJSON,
5892
- RoleFromJSONTyped,
5893
- RoleFromJSON,
5894
- Role,
5895
- ResponseError,
5896
- ResourcesDesignerApi,
5897
- ResourceDefinitionToJSONTyped,
5898
- ResourceDefinitionToJSON,
5899
- ResourceDefinitionFromJSONTyped,
5900
- ResourceDefinitionFromJSON,
5901
- RequiredError,
5902
- RecipientTypeToJSONTyped,
5903
- RecipientTypeToJSON,
5904
- RecipientTypeFromJSONTyped,
5905
- RecipientTypeFromJSON,
5906
- RecipientType,
5907
- RecipientToJSONTyped,
5908
- RecipientToJSON,
5909
- RecipientFromJSONTyped,
5910
- RecipientFromJSON,
5911
- PropertyVariantToJSONTyped,
5912
- PropertyVariantToJSON,
5913
- PropertyVariantFromJSONTyped,
5914
- PropertyVariantFromJSON,
5915
- PropertyVariant,
5916
- PromptToJSONTyped,
5917
- PromptToJSON,
5918
- PromptFromJSONTyped,
5919
- PromptFromJSON,
5920
- ProjectFilesSourceToJSONTyped,
5921
- ProjectFilesSourceToJSON,
5922
- ProjectFilesSourceFromJSONTyped,
5923
- ProjectFilesSourceFromJSON,
5924
- ProjectFilesSource3 as ProjectFilesSource,
5925
- ModelSettingToJSONTyped,
5926
- ModelSettingToJSON,
5927
- ModelSettingFromJSONTyped,
5928
- ModelSettingFromJSON,
5929
- MockOutputTypeToJSONTyped,
5930
- MockOutputTypeToJSON,
5931
- MockOutputTypeFromJSONTyped,
5932
- MockOutputTypeFromJSON,
5933
- MockOutputType,
5934
- MockOutputItemDefinitionToJSONTyped,
5935
- MockOutputItemDefinitionToJSON,
5936
- MockOutputItemDefinitionFromJSONTyped,
5937
- MockOutputItemDefinitionFromJSON,
5938
- MockOutputDefinitionToJSONTyped,
5939
- MockOutputDefinitionToJSON,
5940
- MockOutputDefinitionFromJSONTyped,
5941
- MockOutputDefinitionFromJSON,
5942
- MockDefinitionToJSONTyped,
5943
- MockDefinitionToJSON,
5944
- MockDefinitionFromJSONTyped,
5945
- MockDefinitionFromJSON,
5946
- MockConditionDefinitionToJSONTyped,
5947
- MockConditionDefinitionToJSON,
5948
- MockConditionDefinitionFromJSONTyped,
5949
- MockConditionDefinitionFromJSON,
5950
- MessageToJSONTyped,
5951
- MessageToJSON,
5952
- MessageFromJSONTyped,
5953
- MessageFromJSON,
5954
- LlmModelToJSONTyped,
5955
- LlmModelToJSON,
5956
- LlmModelFromJSONTyped,
5957
- LlmModelFromJSON,
5958
- JSONApiResponse,
5959
- GuardrailSelectorToJSONTyped,
5960
- GuardrailSelectorToJSON,
5961
- GuardrailSelectorFromJSONTyped,
5962
- GuardrailSelectorFromJSON,
5963
- GuardrailScopeToJSONTyped,
5964
- GuardrailScopeToJSON,
5965
- GuardrailScopeFromJSONTyped,
5966
- GuardrailScopeFromJSON,
5967
- GuardrailScope,
5968
- GuardrailCatalogUnavailableError,
5969
- GovernanceDesignerApi,
5970
- FewShotExampleToJSONTyped,
5971
- FewShotExampleToJSON,
5972
- FewShotExampleFromJSONTyped,
5973
- FewShotExampleFromJSON,
5974
- FetchError,
5975
- EvaluatorToJSONTyped,
5976
- EvaluatorToJSON,
5977
- EvaluatorFromJSONTyped,
5978
- EvaluatorFromJSON,
5979
- EvaluationToJSONTyped,
5980
- EvaluationToJSON,
5981
- EvaluationFromJSONTyped,
5982
- EvaluationFromJSON,
5983
- EvalsToolDtoToJSONTyped,
5984
- EvalsToolDtoToJSON,
5985
- EvalsToolDtoFromJSONTyped,
5986
- EvalsToolDtoFromJSON,
5987
- EvalsTenantExecutionApi,
5988
- EvalsEscalationDtoToJSONTyped,
5989
- EvalsEscalationDtoToJSON,
5990
- EvalsEscalationDtoFromJSONTyped,
5991
- EvalsEscalationDtoFromJSON,
5992
- EvalsContextSettingsDtoToJSONTyped,
5993
- EvalsContextSettingsDtoToJSON,
5994
- EvalsContextSettingsDtoFromJSONTyped,
5995
- EvalsContextSettingsDtoFromJSON,
5996
- EvalsContextDtoToJSONTyped,
5997
- EvalsContextDtoToJSON,
5998
- EvalsContextDtoFromJSONTyped,
5999
- EvalsContextDtoFromJSON,
6000
- EvalsAgentSettingsDtoToJSONTyped,
6001
- EvalsAgentSettingsDtoToJSON,
6002
- EvalsAgentSettingsDtoFromJSONTyped,
6003
- EvalsAgentSettingsDtoFromJSON,
6004
- EvalSetRunStatusToJSONTyped,
6005
- EvalSetRunStatusToJSON,
6006
- EvalSetRunStatusFromJSONTyped,
6007
- EvalSetRunStatusFromJSON,
6008
- EvalSetRunStatus,
6009
- EvalSetRunDtoToJSONTyped,
6010
- EvalSetRunDtoToJSON,
6011
- EvalSetRunDtoFromJSONTyped,
6012
- EvalSetRunDtoFromJSON,
6013
- EvalSetMultipleEvaluatorsStartRequestToJSONTyped,
6014
- EvalSetMultipleEvaluatorsStartRequestToJSON,
6015
- EvalSetMultipleEvaluatorsStartRequestFromJSONTyped,
6016
- EvalSetMultipleEvaluatorsStartRequestFromJSON,
6017
- EvalScoreDtoToJSONTyped,
6018
- EvalScoreDtoToJSON,
6019
- EvalScoreDtoFromJSONTyped,
6020
- EvalScoreDtoFromJSON,
6021
- EvalRunStatusToJSONTyped,
6022
- EvalRunStatusToJSON,
6023
- EvalRunStatusFromJSONTyped,
6024
- EvalRunStatusFromJSON,
6025
- EvalRunStatus,
6026
- EvalRunSourceToJSONTyped,
6027
- EvalRunSourceToJSON,
6028
- EvalRunSourceFromJSONTyped,
6029
- EvalRunSourceFromJSON,
6030
- EvalRunSource,
6031
- EvalRunDtoToJSONTyped,
6032
- EvalRunDtoToJSON,
6033
- EvalRunDtoFromJSONTyped,
6034
- EvalRunDtoFromJSON,
6035
- EvalResultDtoToJSONTyped,
6036
- EvalResultDtoToJSON,
6037
- EvalResultDtoFromJSONTyped,
6038
- EvalResultDtoFromJSON,
6039
- EvalCompletionMetricsDtoToJSONTyped,
6040
- EvalCompletionMetricsDtoToJSON,
6041
- EvalCompletionMetricsDtoFromJSONTyped,
6042
- EvalCompletionMetricsDtoFromJSON,
6043
- EscalationTypeToJSONTyped,
6044
- EscalationTypeToJSON,
6045
- EscalationTypeFromJSONTyped,
6046
- EscalationTypeFromJSON,
6047
- EscalationType,
6048
- EscalationTaskTitleToJSONTyped,
6049
- EscalationTaskTitleToJSON,
6050
- EscalationTaskTitleFromJSONTyped,
6051
- EscalationTaskTitleFromJSON,
6052
- EscalationDefinitionToJSONTyped,
6053
- EscalationDefinitionToJSON,
6054
- EscalationDefinitionFromJSONTyped,
6055
- EscalationDefinitionFromJSON,
6056
- EscalationChannelToJSONTyped,
6057
- EscalationChannelToJSON,
6058
- EscalationChannelFromJSONTyped,
6059
- EscalationChannelFromJSON,
6060
- DefaultConfig,
6061
- ConversationalDisplayModeToJSONTyped,
6062
- ConversationalDisplayModeToJSON,
6063
- ConversationalDisplayModeFromJSONTyped,
6064
- ConversationalDisplayModeFromJSON,
6065
- ConversationalDisplayMode,
6066
- ContextTypeToJSONTyped,
6067
- ContextTypeToJSON,
6068
- ContextTypeFromJSONTyped,
6069
- ContextTypeFromJSON,
6070
- ContextType,
6071
- ContextSettingsToJSONTyped,
6072
- ContextSettingsToJSON,
6073
- ContextSettingsFromJSONTyped,
6074
- ContextSettingsFromJSON,
6075
- ContextRetrievalModeToJSONTyped,
6076
- ContextRetrievalModeToJSON,
6077
- ContextRetrievalModeFromJSONTyped,
6078
- ContextRetrievalModeFromJSON,
6079
- ContextRetrievalMode,
6080
- ContextPropertyWithVariantToJSONTyped,
6081
- ContextPropertyWithVariantToJSON,
6082
- ContextPropertyWithVariantFromJSONTyped,
6083
- ContextPropertyWithVariantFromJSON,
6084
- ContextPropertyToJSONTyped,
6085
- ContextPropertyToJSON,
6086
- ContextPropertyFromJSONTyped,
6087
- ContextPropertyFromJSON,
6088
- ContextDefinitionToJSONTyped,
6089
- ContextDefinitionToJSON,
6090
- ContextDefinitionFromJSONTyped,
6091
- ContextDefinitionFromJSON,
6092
- Configuration,
6093
- ConditionSetDefinitionToJSONTyped,
6094
- ConditionSetDefinitionToJSON,
6095
- ConditionSetDefinitionFromJSONTyped,
6096
- ConditionSetDefinitionFromJSON,
6097
- ConditionOperatorToJSONTyped,
6098
- ConditionOperatorToJSON,
6099
- ConditionOperatorFromJSONTyped,
6100
- ConditionOperatorFromJSON,
6101
- ConditionOperator,
6102
- ChannelTypeToJSONTyped,
6103
- ChannelTypeToJSON,
6104
- ChannelTypeFromJSONTyped,
6105
- ChannelTypeFromJSON,
6106
- ChannelType,
6107
- COLLECTION_FORMATS,
6108
- ByomPropertiesToJSONTyped,
6109
- ByomPropertiesToJSON,
6110
- ByomPropertiesFromJSONTyped,
6111
- ByomPropertiesFromJSON,
6112
- BlobApiResponse,
6113
- BasicConditionDefinitionToJSONTyped,
6114
- BasicConditionDefinitionToJSON,
6115
- BasicConditionDefinitionFromJSONTyped,
6116
- BasicConditionDefinitionFromJSON,
6117
- BaseAPI,
6118
- BASE_PATH,
6119
- AssertionScoreDtoToJSONTyped,
6120
- AssertionScoreDtoToJSON,
6121
- AssertionScoreDtoFromJSONTyped,
6122
- AssertionScoreDtoFromJSON,
6123
- AssertionRunDtoToJSONTyped,
6124
- AssertionRunDtoToJSON,
6125
- AssertionRunDtoStatusToJSONTyped,
6126
- AssertionRunDtoStatusToJSON,
6127
- AssertionRunDtoStatusFromJSONTyped,
6128
- AssertionRunDtoStatusFromJSON,
6129
- AssertionRunDtoStatus,
6130
- AssertionRunDtoFromJSONTyped,
6131
- AssertionRunDtoFromJSON,
6132
- AssertionResultDtoToJSONTyped,
6133
- AssertionResultDtoToJSON,
6134
- AssertionResultDtoFromJSONTyped,
6135
- AssertionResultDtoFromJSON,
6136
- AssertionCompletionMetricsDtoToJSONTyped,
6137
- AssertionCompletionMetricsDtoToJSON,
6138
- AssertionCompletionMetricsDtoFromJSONTyped,
6139
- AssertionCompletionMetricsDtoFromJSON,
6140
- AggregatedEvaluatorScoreDtoToJSONTyped,
6141
- AggregatedEvaluatorScoreDtoToJSON,
6142
- AggregatedEvaluatorScoreDtoFromJSONTyped,
6143
- AggregatedEvaluatorScoreDtoFromJSON,
6144
- AgentSettingsToJSONTyped,
6145
- AgentSettingsToJSON,
6146
- AgentSettingsFromJSONTyped,
6147
- AgentSettingsFromJSON,
6148
- AgentMetadataToJSONTyped,
6149
- AgentMetadataToJSON,
6150
- AgentMetadataFromJSONTyped,
6151
- AgentMetadataFromJSON,
6152
- AgentMemorySettingsDtoToJSONTyped,
6153
- AgentMemorySettingsDtoToJSON,
6154
- AgentMemorySettingsDtoFromJSONTyped,
6155
- AgentMemorySettingsDtoFromJSON,
6156
- AgentMemorySettingToJSONTyped,
6157
- AgentMemorySettingToJSON,
6158
- AgentMemorySettingFromJSONTyped,
6159
- AgentMemorySettingFromJSON,
6160
- AgentGuardrailPolicyToJSONTyped,
6161
- AgentGuardrailPolicyToJSON,
6162
- AgentGuardrailPolicyFromJSONTyped,
6163
- AgentGuardrailPolicyFromJSON,
6164
- AgentEnforcementsDtoToJSONTyped,
6165
- AgentEnforcementsDtoToJSON,
6166
- AgentEnforcementsDtoFromJSONTyped,
6167
- AgentEnforcementsDtoFromJSON,
6168
- AgentDefinitionToJSONTyped,
6169
- AgentDefinitionToJSON,
6170
- AgentDefinitionFromJSONTyped,
6171
- AgentDefinitionFromJSON,
6172
- AgentAppearanceToJSONTyped,
6173
- AgentAppearanceToJSON,
5780
+ AgentAppearanceFromJSON,
6174
5781
  AgentAppearanceFromJSONTyped,
6175
- AgentAppearanceFromJSON
5782
+ AgentAppearanceToJSON,
5783
+ AgentAppearanceToJSONTyped,
5784
+ AgentDefinitionFromJSON,
5785
+ AgentDefinitionFromJSONTyped,
5786
+ AgentDefinitionToJSON,
5787
+ AgentDefinitionToJSONTyped,
5788
+ AgentEnforcementsDtoFromJSON,
5789
+ AgentEnforcementsDtoFromJSONTyped,
5790
+ AgentEnforcementsDtoToJSON,
5791
+ AgentEnforcementsDtoToJSONTyped,
5792
+ AgentGuardrailPolicyFromJSON,
5793
+ AgentGuardrailPolicyFromJSONTyped,
5794
+ AgentGuardrailPolicyToJSON,
5795
+ AgentGuardrailPolicyToJSONTyped,
5796
+ AgentMemorySettingFromJSON,
5797
+ AgentMemorySettingFromJSONTyped,
5798
+ AgentMemorySettingToJSON,
5799
+ AgentMemorySettingToJSONTyped,
5800
+ AgentMemorySettingsDtoFromJSON,
5801
+ AgentMemorySettingsDtoFromJSONTyped,
5802
+ AgentMemorySettingsDtoToJSON,
5803
+ AgentMemorySettingsDtoToJSONTyped,
5804
+ AgentMetadataFromJSON,
5805
+ AgentMetadataFromJSONTyped,
5806
+ AgentMetadataToJSON,
5807
+ AgentMetadataToJSONTyped,
5808
+ AgentSettingsFromJSON,
5809
+ AgentSettingsFromJSONTyped,
5810
+ AgentSettingsToJSON,
5811
+ AgentSettingsToJSONTyped,
5812
+ AggregatedEvaluatorScoreDtoFromJSON,
5813
+ AggregatedEvaluatorScoreDtoFromJSONTyped,
5814
+ AggregatedEvaluatorScoreDtoToJSON,
5815
+ AggregatedEvaluatorScoreDtoToJSONTyped,
5816
+ AssertionCompletionMetricsDtoFromJSON,
5817
+ AssertionCompletionMetricsDtoFromJSONTyped,
5818
+ AssertionCompletionMetricsDtoToJSON,
5819
+ AssertionCompletionMetricsDtoToJSONTyped,
5820
+ AssertionResultDtoFromJSON,
5821
+ AssertionResultDtoFromJSONTyped,
5822
+ AssertionResultDtoToJSON,
5823
+ AssertionResultDtoToJSONTyped,
5824
+ AssertionRunDtoFromJSON,
5825
+ AssertionRunDtoFromJSONTyped,
5826
+ AssertionRunDtoStatus,
5827
+ AssertionRunDtoStatusFromJSON,
5828
+ AssertionRunDtoStatusFromJSONTyped,
5829
+ AssertionRunDtoStatusToJSON,
5830
+ AssertionRunDtoStatusToJSONTyped,
5831
+ AssertionRunDtoToJSON,
5832
+ AssertionRunDtoToJSONTyped,
5833
+ AssertionScoreDtoFromJSON,
5834
+ AssertionScoreDtoFromJSONTyped,
5835
+ AssertionScoreDtoToJSON,
5836
+ AssertionScoreDtoToJSONTyped,
5837
+ BASE_PATH,
5838
+ BaseAPI,
5839
+ BasicConditionDefinitionFromJSON,
5840
+ BasicConditionDefinitionFromJSONTyped,
5841
+ BasicConditionDefinitionToJSON,
5842
+ BasicConditionDefinitionToJSONTyped,
5843
+ BlobApiResponse,
5844
+ ByomPropertiesFromJSON,
5845
+ ByomPropertiesFromJSONTyped,
5846
+ ByomPropertiesToJSON,
5847
+ ByomPropertiesToJSONTyped,
5848
+ COLLECTION_FORMATS,
5849
+ ChannelType,
5850
+ ChannelTypeFromJSON,
5851
+ ChannelTypeFromJSONTyped,
5852
+ ChannelTypeToJSON,
5853
+ ChannelTypeToJSONTyped,
5854
+ ConditionOperator,
5855
+ ConditionOperatorFromJSON,
5856
+ ConditionOperatorFromJSONTyped,
5857
+ ConditionOperatorToJSON,
5858
+ ConditionOperatorToJSONTyped,
5859
+ ConditionSetDefinitionFromJSON,
5860
+ ConditionSetDefinitionFromJSONTyped,
5861
+ ConditionSetDefinitionToJSON,
5862
+ ConditionSetDefinitionToJSONTyped,
5863
+ Configuration,
5864
+ ContextDefinitionFromJSON,
5865
+ ContextDefinitionFromJSONTyped,
5866
+ ContextDefinitionToJSON,
5867
+ ContextDefinitionToJSONTyped,
5868
+ ContextPropertyFromJSON,
5869
+ ContextPropertyFromJSONTyped,
5870
+ ContextPropertyToJSON,
5871
+ ContextPropertyToJSONTyped,
5872
+ ContextPropertyWithVariantFromJSON,
5873
+ ContextPropertyWithVariantFromJSONTyped,
5874
+ ContextPropertyWithVariantToJSON,
5875
+ ContextPropertyWithVariantToJSONTyped,
5876
+ ContextRetrievalMode,
5877
+ ContextRetrievalModeFromJSON,
5878
+ ContextRetrievalModeFromJSONTyped,
5879
+ ContextRetrievalModeToJSON,
5880
+ ContextRetrievalModeToJSONTyped,
5881
+ ContextSettingsFromJSON,
5882
+ ContextSettingsFromJSONTyped,
5883
+ ContextSettingsToJSON,
5884
+ ContextSettingsToJSONTyped,
5885
+ ContextType,
5886
+ ContextTypeFromJSON,
5887
+ ContextTypeFromJSONTyped,
5888
+ ContextTypeToJSON,
5889
+ ContextTypeToJSONTyped,
5890
+ ConversationalDisplayMode,
5891
+ ConversationalDisplayModeFromJSON,
5892
+ ConversationalDisplayModeFromJSONTyped,
5893
+ ConversationalDisplayModeToJSON,
5894
+ ConversationalDisplayModeToJSONTyped,
5895
+ DefaultConfig,
5896
+ EscalationChannelFromJSON,
5897
+ EscalationChannelFromJSONTyped,
5898
+ EscalationChannelToJSON,
5899
+ EscalationChannelToJSONTyped,
5900
+ EscalationDefinitionFromJSON,
5901
+ EscalationDefinitionFromJSONTyped,
5902
+ EscalationDefinitionToJSON,
5903
+ EscalationDefinitionToJSONTyped,
5904
+ EscalationTaskTitleFromJSON,
5905
+ EscalationTaskTitleFromJSONTyped,
5906
+ EscalationTaskTitleToJSON,
5907
+ EscalationTaskTitleToJSONTyped,
5908
+ EscalationType,
5909
+ EscalationTypeFromJSON,
5910
+ EscalationTypeFromJSONTyped,
5911
+ EscalationTypeToJSON,
5912
+ EscalationTypeToJSONTyped,
5913
+ EvalCompletionMetricsDtoFromJSON,
5914
+ EvalCompletionMetricsDtoFromJSONTyped,
5915
+ EvalCompletionMetricsDtoToJSON,
5916
+ EvalCompletionMetricsDtoToJSONTyped,
5917
+ EvalResultDtoFromJSON,
5918
+ EvalResultDtoFromJSONTyped,
5919
+ EvalResultDtoToJSON,
5920
+ EvalResultDtoToJSONTyped,
5921
+ EvalRunDtoFromJSON,
5922
+ EvalRunDtoFromJSONTyped,
5923
+ EvalRunDtoToJSON,
5924
+ EvalRunDtoToJSONTyped,
5925
+ EvalRunSource,
5926
+ EvalRunSourceFromJSON,
5927
+ EvalRunSourceFromJSONTyped,
5928
+ EvalRunSourceToJSON,
5929
+ EvalRunSourceToJSONTyped,
5930
+ EvalRunStatus,
5931
+ EvalRunStatusFromJSON,
5932
+ EvalRunStatusFromJSONTyped,
5933
+ EvalRunStatusToJSON,
5934
+ EvalRunStatusToJSONTyped,
5935
+ EvalScoreDtoFromJSON,
5936
+ EvalScoreDtoFromJSONTyped,
5937
+ EvalScoreDtoToJSON,
5938
+ EvalScoreDtoToJSONTyped,
5939
+ EvalSetMultipleEvaluatorsStartRequestFromJSON,
5940
+ EvalSetMultipleEvaluatorsStartRequestFromJSONTyped,
5941
+ EvalSetMultipleEvaluatorsStartRequestToJSON,
5942
+ EvalSetMultipleEvaluatorsStartRequestToJSONTyped,
5943
+ EvalSetRunDtoFromJSON,
5944
+ EvalSetRunDtoFromJSONTyped,
5945
+ EvalSetRunDtoToJSON,
5946
+ EvalSetRunDtoToJSONTyped,
5947
+ EvalSetRunStatus,
5948
+ EvalSetRunStatusFromJSON,
5949
+ EvalSetRunStatusFromJSONTyped,
5950
+ EvalSetRunStatusToJSON,
5951
+ EvalSetRunStatusToJSONTyped,
5952
+ EvalsAgentSettingsDtoFromJSON,
5953
+ EvalsAgentSettingsDtoFromJSONTyped,
5954
+ EvalsAgentSettingsDtoToJSON,
5955
+ EvalsAgentSettingsDtoToJSONTyped,
5956
+ EvalsContextDtoFromJSON,
5957
+ EvalsContextDtoFromJSONTyped,
5958
+ EvalsContextDtoToJSON,
5959
+ EvalsContextDtoToJSONTyped,
5960
+ EvalsContextSettingsDtoFromJSON,
5961
+ EvalsContextSettingsDtoFromJSONTyped,
5962
+ EvalsContextSettingsDtoToJSON,
5963
+ EvalsContextSettingsDtoToJSONTyped,
5964
+ EvalsEscalationDtoFromJSON,
5965
+ EvalsEscalationDtoFromJSONTyped,
5966
+ EvalsEscalationDtoToJSON,
5967
+ EvalsEscalationDtoToJSONTyped,
5968
+ EvalsTenantExecutionApi,
5969
+ EvalsToolDtoFromJSON,
5970
+ EvalsToolDtoFromJSONTyped,
5971
+ EvalsToolDtoToJSON,
5972
+ EvalsToolDtoToJSONTyped,
5973
+ EvaluationFromJSON,
5974
+ EvaluationFromJSONTyped,
5975
+ EvaluationToJSON,
5976
+ EvaluationToJSONTyped,
5977
+ EvaluatorFromJSON,
5978
+ EvaluatorFromJSONTyped,
5979
+ EvaluatorToJSON,
5980
+ EvaluatorToJSONTyped,
5981
+ FetchError,
5982
+ FewShotExampleFromJSON,
5983
+ FewShotExampleFromJSONTyped,
5984
+ FewShotExampleToJSON,
5985
+ FewShotExampleToJSONTyped,
5986
+ GovernanceDesignerApi,
5987
+ GuardrailCatalogUnavailableError,
5988
+ GuardrailScope,
5989
+ GuardrailScopeFromJSON,
5990
+ GuardrailScopeFromJSONTyped,
5991
+ GuardrailScopeToJSON,
5992
+ GuardrailScopeToJSONTyped,
5993
+ GuardrailSelectorFromJSON,
5994
+ GuardrailSelectorFromJSONTyped,
5995
+ GuardrailSelectorToJSON,
5996
+ GuardrailSelectorToJSONTyped,
5997
+ JSONApiResponse,
5998
+ LlmModelFromJSON,
5999
+ LlmModelFromJSONTyped,
6000
+ LlmModelToJSON,
6001
+ LlmModelToJSONTyped,
6002
+ MessageFromJSON,
6003
+ MessageFromJSONTyped,
6004
+ MessageToJSON,
6005
+ MessageToJSONTyped,
6006
+ MockConditionDefinitionFromJSON,
6007
+ MockConditionDefinitionFromJSONTyped,
6008
+ MockConditionDefinitionToJSON,
6009
+ MockConditionDefinitionToJSONTyped,
6010
+ MockDefinitionFromJSON,
6011
+ MockDefinitionFromJSONTyped,
6012
+ MockDefinitionToJSON,
6013
+ MockDefinitionToJSONTyped,
6014
+ MockOutputDefinitionFromJSON,
6015
+ MockOutputDefinitionFromJSONTyped,
6016
+ MockOutputDefinitionToJSON,
6017
+ MockOutputDefinitionToJSONTyped,
6018
+ MockOutputItemDefinitionFromJSON,
6019
+ MockOutputItemDefinitionFromJSONTyped,
6020
+ MockOutputItemDefinitionToJSON,
6021
+ MockOutputItemDefinitionToJSONTyped,
6022
+ MockOutputType,
6023
+ MockOutputTypeFromJSON,
6024
+ MockOutputTypeFromJSONTyped,
6025
+ MockOutputTypeToJSON,
6026
+ MockOutputTypeToJSONTyped,
6027
+ ModelSettingFromJSON,
6028
+ ModelSettingFromJSONTyped,
6029
+ ModelSettingToJSON,
6030
+ ModelSettingToJSONTyped,
6031
+ ProjectFilesSource3 as ProjectFilesSource,
6032
+ ProjectFilesSourceFromJSON,
6033
+ ProjectFilesSourceFromJSONTyped,
6034
+ ProjectFilesSourceToJSON,
6035
+ ProjectFilesSourceToJSONTyped,
6036
+ PromptFromJSON,
6037
+ PromptFromJSONTyped,
6038
+ PromptToJSON,
6039
+ PromptToJSONTyped,
6040
+ PropertyVariant,
6041
+ PropertyVariantFromJSON,
6042
+ PropertyVariantFromJSONTyped,
6043
+ PropertyVariantToJSON,
6044
+ PropertyVariantToJSONTyped,
6045
+ RecipientFromJSON,
6046
+ RecipientFromJSONTyped,
6047
+ RecipientToJSON,
6048
+ RecipientToJSONTyped,
6049
+ RecipientType,
6050
+ RecipientTypeFromJSON,
6051
+ RecipientTypeFromJSONTyped,
6052
+ RecipientTypeToJSON,
6053
+ RecipientTypeToJSONTyped,
6054
+ RequiredError,
6055
+ ResourceDefinitionFromJSON,
6056
+ ResourceDefinitionFromJSONTyped,
6057
+ ResourceDefinitionToJSON,
6058
+ ResourceDefinitionToJSONTyped,
6059
+ ResourcesDesignerApi,
6060
+ ResponseError,
6061
+ Role,
6062
+ RoleFromJSON,
6063
+ RoleFromJSONTyped,
6064
+ RoleToJSON,
6065
+ RoleToJSONTyped,
6066
+ RuntimeType,
6067
+ RuntimeTypeFromJSON,
6068
+ RuntimeTypeFromJSONTyped,
6069
+ RuntimeTypeToJSON,
6070
+ RuntimeTypeToJSONTyped,
6071
+ SDK_USER_AGENT,
6072
+ ScoreType,
6073
+ ScoreTypeFromJSON,
6074
+ ScoreTypeFromJSONTyped,
6075
+ ScoreTypeToJSON,
6076
+ ScoreTypeToJSONTyped,
6077
+ StartingPromptFromJSON,
6078
+ StartingPromptFromJSONTyped,
6079
+ StartingPromptToJSON,
6080
+ StartingPromptToJSONTyped,
6081
+ TaskTitleType,
6082
+ TaskTitleTypeFromJSON,
6083
+ TaskTitleTypeFromJSONTyped,
6084
+ TaskTitleTypeToJSON,
6085
+ TaskTitleTypeToJSONTyped,
6086
+ TextApiResponse,
6087
+ TextTokenFromJSON,
6088
+ TextTokenFromJSONTyped,
6089
+ TextTokenToJSON,
6090
+ TextTokenToJSONTyped,
6091
+ TextTokenType,
6092
+ TextTokenTypeFromJSON,
6093
+ TextTokenTypeFromJSONTyped,
6094
+ TextTokenTypeToJSON,
6095
+ TextTokenTypeToJSONTyped,
6096
+ ToolDefinitionFromJSON,
6097
+ ToolDefinitionFromJSONTyped,
6098
+ ToolDefinitionToJSON,
6099
+ ToolDefinitionToJSONTyped,
6100
+ ToolSettingsFromJSON,
6101
+ ToolSettingsFromJSONTyped,
6102
+ ToolSettingsToJSON,
6103
+ ToolSettingsToJSONTyped,
6104
+ ToolToSimulateFromJSON,
6105
+ ToolToSimulateFromJSONTyped,
6106
+ ToolToSimulateToJSON,
6107
+ ToolToSimulateToJSONTyped,
6108
+ ToolType,
6109
+ ToolTypeFromJSON,
6110
+ ToolTypeFromJSONTyped,
6111
+ ToolTypeToJSON,
6112
+ ToolTypeToJSONTyped,
6113
+ VoidApiResponse,
6114
+ VsEscalationPropertiesFromJSON,
6115
+ VsEscalationPropertiesFromJSONTyped,
6116
+ VsEscalationPropertiesToJSON,
6117
+ VsEscalationPropertiesToJSONTyped,
6118
+ canConsumeForm,
6119
+ createAgentRuntimeConfig,
6120
+ createApiClient,
6121
+ exists,
6122
+ getAgentEnforcements,
6123
+ getAvailableModelNames,
6124
+ getAvailableModels,
6125
+ getGuardrailCatalog,
6126
+ getGuardrailDefinitions,
6127
+ instanceOfAgentAppearance,
6128
+ instanceOfAgentDefinition,
6129
+ instanceOfAgentEnforcementsDto,
6130
+ instanceOfAgentGuardrailPolicy,
6131
+ instanceOfAgentMemorySetting,
6132
+ instanceOfAgentMemorySettingsDto,
6133
+ instanceOfAgentMetadata,
6134
+ instanceOfAgentSettings,
6135
+ instanceOfAggregatedEvaluatorScoreDto,
6136
+ instanceOfAssertionCompletionMetricsDto,
6137
+ instanceOfAssertionResultDto,
6138
+ instanceOfAssertionRunDto,
6139
+ instanceOfAssertionRunDtoStatus,
6140
+ instanceOfAssertionScoreDto,
6141
+ instanceOfBasicConditionDefinition,
6142
+ instanceOfByomProperties,
6143
+ instanceOfChannelType,
6144
+ instanceOfConditionOperator,
6145
+ instanceOfConditionSetDefinition,
6146
+ instanceOfContextDefinition,
6147
+ instanceOfContextProperty,
6148
+ instanceOfContextPropertyWithVariant,
6149
+ instanceOfContextRetrievalMode,
6150
+ instanceOfContextSettings,
6151
+ instanceOfContextType,
6152
+ instanceOfConversationalDisplayMode,
6153
+ instanceOfEscalationChannel,
6154
+ instanceOfEscalationDefinition,
6155
+ instanceOfEscalationTaskTitle,
6156
+ instanceOfEscalationType,
6157
+ instanceOfEvalCompletionMetricsDto,
6158
+ instanceOfEvalResultDto,
6159
+ instanceOfEvalRunDto,
6160
+ instanceOfEvalRunSource,
6161
+ instanceOfEvalRunStatus,
6162
+ instanceOfEvalScoreDto,
6163
+ instanceOfEvalSetMultipleEvaluatorsStartRequest,
6164
+ instanceOfEvalSetRunDto,
6165
+ instanceOfEvalSetRunStatus,
6166
+ instanceOfEvalsAgentSettingsDto,
6167
+ instanceOfEvalsContextDto,
6168
+ instanceOfEvalsContextSettingsDto,
6169
+ instanceOfEvalsEscalationDto,
6170
+ instanceOfEvalsToolDto,
6171
+ instanceOfEvaluation,
6172
+ instanceOfEvaluator,
6173
+ instanceOfFewShotExample,
6174
+ instanceOfGuardrailScope,
6175
+ instanceOfGuardrailSelector,
6176
+ instanceOfLlmModel,
6177
+ instanceOfMessage,
6178
+ instanceOfMockConditionDefinition,
6179
+ instanceOfMockDefinition,
6180
+ instanceOfMockOutputDefinition,
6181
+ instanceOfMockOutputItemDefinition,
6182
+ instanceOfMockOutputType,
6183
+ instanceOfModelSetting,
6184
+ instanceOfProjectFilesSource,
6185
+ instanceOfPrompt,
6186
+ instanceOfPropertyVariant,
6187
+ instanceOfRecipient,
6188
+ instanceOfRecipientType,
6189
+ instanceOfResourceDefinition,
6190
+ instanceOfRole,
6191
+ instanceOfRuntimeType,
6192
+ instanceOfScoreType,
6193
+ instanceOfStartingPrompt,
6194
+ instanceOfTaskTitleType,
6195
+ instanceOfTextToken,
6196
+ instanceOfTextTokenType,
6197
+ instanceOfToolDefinition,
6198
+ instanceOfToolSettings,
6199
+ instanceOfToolToSimulate,
6200
+ instanceOfToolType,
6201
+ instanceOfVsEscalationProperties,
6202
+ mapValues,
6203
+ querystring
6176
6204
  };
6177
6205
 
6178
- //# debugId=39A0145C8E595C8364756E2164756E21
6206
+ //# debugId=F6D105E7D0957FD964756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/agent-sdk",
3
3
  "license": "MIT",
4
- "version": "1.201.0-preview.133",
4
+ "version": "1.202.0-preview.134",
5
5
  "description": "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -29,5 +29,5 @@
29
29
  "files": [
30
30
  "dist"
31
31
  ],
32
- "gitHead": "7933378ad5276ac369900293a1447474dcec6826"
32
+ "gitHead": "a335728adbdb02f28308e4f55d8936d0b150444b"
33
33
  }